diff --git a/change_log.txt b/change_log.txt index 0ef8e749..0e001147 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,6 @@ +31/05/2010 +- bugfix the parser did not allow some smarty variables with special name like $for, $if, $else and others. + 27/05/2010 - bugfix on object chaining using variable properties - make scope of {counter} and {cycle} tags again global as in Smarty2 diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index e28e6719..bbf3c749 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -87,6 +87,7 @@ class Smarty_Internal_Templatelexer $this->smarty = $compiler->smarty; $this->compiler = $compiler; $this->ldel = preg_quote($this->smarty->left_delimiter,'/'); + $this->ldel_length = strlen($this->smarty->left_delimiter); $this->rdel = preg_quote($this->smarty->right_delimiter,'/'); $this->smarty_token_names['LDEL'] = $this->smarty->left_delimiter; $this->smarty_token_names['RDEL'] = $this->smarty->right_delimiter; @@ -139,16 +140,19 @@ class Smarty_Internal_Templatelexer 8 => 0, 9 => 0, 10 => 0, - 11 => 0, - 12 => 0, + 11 => 1, 13 => 0, - 14 => 2, + 14 => 0, + 15 => 0, + 16 => 0, 17 => 0, + 18 => 2, + 21 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>)))|^([\S\s]+)/"; + $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?(?:php\\w+|=|[a-zA-Z]+)?)|^(\\?>)|^([\t ]*[\r\n]+[\t ]*)|^(".$this->ldel."strip".$this->rdel.")|^(".$this->ldel."\/strip".$this->rdel.")|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(?=([\t ]*[\r\n]+[\t ]*|".$this->ldel."|<\\?|\\?>)))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -266,6 +270,39 @@ class Smarty_Internal_Templatelexer function yy_r1_11($yy_subpatterns) { + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELIF; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r1_13($yy_subpatterns) + { + + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELFOR; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r1_14($yy_subpatterns) + { + + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r1_15($yy_subpatterns) + { + if ($this->smarty->auto_literal) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } else { @@ -274,26 +311,26 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r1_12($yy_subpatterns) + function yy_r1_16($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_13($yy_subpatterns) + function yy_r1_17($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r1_14($yy_subpatterns) + function yy_r1_18($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } - function yy_r1_17($yy_subpatterns) + function yy_r1_21($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; @@ -305,20 +342,21 @@ class Smarty_Internal_Templatelexer $tokenMap = array ( 1 => 0, 2 => 0, - 3 => 0, - 4 => 0, + 3 => 1, 5 => 0, 6 => 0, 7 => 0, 8 => 0, - 9 => 1, - 11 => 1, + 9 => 0, + 10 => 0, + 11 => 0, + 12 => 0, 13 => 1, - 15 => 0, - 16 => 0, - 17 => 0, - 18 => 1, - 20 => 1, + 15 => 1, + 17 => 1, + 19 => 0, + 20 => 0, + 21 => 0, 22 => 1, 24 => 1, 26 => 1, @@ -328,31 +366,29 @@ class Smarty_Internal_Templatelexer 34 => 1, 36 => 1, 38 => 1, - 40 => 0, - 41 => 0, - 42 => 0, - 43 => 0, + 40 => 1, + 42 => 1, 44 => 0, 45 => 0, 46 => 0, 47 => 0, 48 => 0, 49 => 0, - 50 => 3, - 54 => 0, - 55 => 0, - 56 => 0, - 57 => 0, + 50 => 0, + 51 => 0, + 52 => 0, + 53 => 0, + 54 => 3, 58 => 0, 59 => 0, 60 => 0, - 61 => 1, - 63 => 1, + 61 => 0, + 62 => 0, + 63 => 0, + 64 => 0, 65 => 1, - 67 => 0, - 68 => 0, - 69 => 0, - 70 => 0, + 67 => 1, + 69 => 1, 71 => 0, 72 => 0, 73 => 0, @@ -362,7 +398,8 @@ class Smarty_Internal_Templatelexer 77 => 0, 78 => 0, 79 => 0, - 80 => 1, + 80 => 0, + 81 => 0, 82 => 0, 83 => 0, 84 => 0, @@ -373,7 +410,7 @@ class Smarty_Internal_Templatelexer if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|else if|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^('[^'\\\\]*(?:\\\\.[^'\\\\]*)*')|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(\\s*===\\s*)|^(\\s*!==\\s*)|^(\\s*==\\s*|\\s+(EQ|eq)\\s+)|^(\\s*!=\\s*|\\s*<>\\s*|\\s+(NE|NEQ|ne|neq)\\s+)|^(\\s*>=\\s*|\\s+(GE|GTE|ge|gte)\\s+)|^(\\s*<=\\s*|\\s+(LE|LTE|le|lte)\\s+)|^(\\s*>\\s*|\\s+(GT|gt)\\s+)|^(\\s*<\\s*|\\s+(LT|lt)\\s+)|^(\\s+(MOD|mod)\\s+)|^(!\\s*|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s*(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s*(OR|or)\\s+)|^(\\s*(XOR|xor)\\s+)|^(\\s+is\\s+odd\\s+by\\s+)|^(\\s+is\\s+not\\s+odd\\s+by\\s+)|^(\\s+is\\s+odd)|^(\\s+is\\s+not\\s+odd)|^(\\s+is\\s+even\\s+by\\s+)|^(\\s+is\\s+not\\s+even\\s+by\\s+)|^(\\s+is\\s+even)|^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\((int(eger)?|bool(ean)?|float|double|real|string|binary|array|object)\\))|^(\\(\\s*)|^(\\s*\\))|^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -442,6 +479,39 @@ class Smarty_Internal_Templatelexer function yy_r2_3($yy_subpatterns) { + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELIF; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r2_5($yy_subpatterns) + { + + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELFOR; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r2_6($yy_subpatterns) + { + + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r2_7($yy_subpatterns) + { + if ($this->smarty->auto_literal) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } else { @@ -450,7 +520,7 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r2_4($yy_subpatterns) + function yy_r2_8($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -460,302 +530,287 @@ class Smarty_Internal_Templatelexer $this->yypopstate(); } } - function yy_r2_5($yy_subpatterns) + function yy_r2_9($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r2_6($yy_subpatterns) + function yy_r2_10($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r2_7($yy_subpatterns) + function yy_r2_11($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_RDEL; $this->yypopstate(); } - function yy_r2_8($yy_subpatterns) + function yy_r2_12($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISIN; } - function yy_r2_9($yy_subpatterns) + function yy_r2_13($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_AS; } - function yy_r2_11($yy_subpatterns) + function yy_r2_15($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_TO; } - function yy_r2_13($yy_subpatterns) + function yy_r2_17($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_STEP; } - function yy_r2_15($yy_subpatterns) + function yy_r2_19($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INSTANCEOF; } - function yy_r2_16($yy_subpatterns) + function yy_r2_20($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_IDENTITY; } - function yy_r2_17($yy_subpatterns) + function yy_r2_21($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NONEIDENTITY; } - function yy_r2_18($yy_subpatterns) + function yy_r2_22($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_EQUALS; } - function yy_r2_20($yy_subpatterns) + function yy_r2_24($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NOTEQUALS; } - function yy_r2_22($yy_subpatterns) + function yy_r2_26($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_GREATEREQUAL; } - function yy_r2_24($yy_subpatterns) + function yy_r2_28($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LESSEQUAL; } - function yy_r2_26($yy_subpatterns) + function yy_r2_30($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_GREATERTHAN; } - function yy_r2_28($yy_subpatterns) + function yy_r2_32($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LESSTHAN; } - function yy_r2_30($yy_subpatterns) + function yy_r2_34($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_MOD; } - function yy_r2_32($yy_subpatterns) + function yy_r2_36($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_NOT; } - function yy_r2_34($yy_subpatterns) + function yy_r2_38($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LAND; } - function yy_r2_36($yy_subpatterns) + function yy_r2_40($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LOR; } - function yy_r2_38($yy_subpatterns) + function yy_r2_42($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LXOR; } - function yy_r2_40($yy_subpatterns) + function yy_r2_44($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISODDBY; } - function yy_r2_41($yy_subpatterns) + function yy_r2_45($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY; } - function yy_r2_42($yy_subpatterns) + function yy_r2_46($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISODD; } - function yy_r2_43($yy_subpatterns) + function yy_r2_47($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD; } - function yy_r2_44($yy_subpatterns) + function yy_r2_48($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY; } - function yy_r2_45($yy_subpatterns) + function yy_r2_49($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY; } - function yy_r2_46($yy_subpatterns) + function yy_r2_50($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISEVEN; } - function yy_r2_47($yy_subpatterns) + function yy_r2_51($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN; } - function yy_r2_48($yy_subpatterns) + function yy_r2_52($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY; } - function yy_r2_49($yy_subpatterns) + function yy_r2_53($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY; } - function yy_r2_50($yy_subpatterns) + function yy_r2_54($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_TYPECAST; } - function yy_r2_54($yy_subpatterns) + function yy_r2_58($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OPENP; } - function yy_r2_55($yy_subpatterns) + function yy_r2_59($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_CLOSEP; } - function yy_r2_56($yy_subpatterns) + function yy_r2_60($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OPENB; } - function yy_r2_57($yy_subpatterns) + function yy_r2_61($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_CLOSEB; } - function yy_r2_58($yy_subpatterns) + function yy_r2_62($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PTR; } - function yy_r2_59($yy_subpatterns) + function yy_r2_63($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_APTR; } - function yy_r2_60($yy_subpatterns) + function yy_r2_64($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_EQUAL; } - function yy_r2_61($yy_subpatterns) + function yy_r2_65($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INCDEC; } - function yy_r2_63($yy_subpatterns) + function yy_r2_67($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; } - function yy_r2_65($yy_subpatterns) + function yy_r2_69($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_MATH; } - function yy_r2_67($yy_subpatterns) + function yy_r2_71($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; } - function yy_r2_68($yy_subpatterns) + function yy_r2_72($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; } - function yy_r2_69($yy_subpatterns) + function yy_r2_73($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; } - function yy_r2_70($yy_subpatterns) + function yy_r2_74($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COLON; } - function yy_r2_71($yy_subpatterns) + function yy_r2_75($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_AT; } - function yy_r2_72($yy_subpatterns) + function yy_r2_76($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_HATCH; } - function yy_r2_73($yy_subpatterns) + function yy_r2_77($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QUOTE; $this->yypushstate(self::DOUBLEQUOTEDSTRING); } - function yy_r2_74($yy_subpatterns) + function yy_r2_78($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; $this->yypopstate(); } - function yy_r2_75($yy_subpatterns) + function yy_r2_79($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_VERT; } - function yy_r2_76($yy_subpatterns) + function yy_r2_80($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOT; } - function yy_r2_77($yy_subpatterns) + function yy_r2_81($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COMMA; } - function yy_r2_78($yy_subpatterns) + function yy_r2_82($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; - } - function yy_r2_79($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_QMARK; - } - function yy_r2_80($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_IF; - } - function yy_r2_82($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_FOREACH; } function yy_r2_83($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_FOR; + $this->token = Smarty_Internal_Templateparser::TP_QMARK; } function yy_r2_84($yy_subpatterns) { @@ -886,20 +941,23 @@ class Smarty_Internal_Templatelexer { $tokenMap = array ( 1 => 0, - 2 => 0, - 3 => 0, + 2 => 1, 4 => 0, 5 => 0, 6 => 0, 7 => 0, 8 => 0, - 9 => 3, - 13 => 0, + 9 => 0, + 10 => 0, + 11 => 0, + 12 => 0, + 13 => 3, + 17 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$[0-9]*[a-zA-Z_]\\w*)|^(\\$)|^(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|^([\S\s]+)/"; + $yy_global_pattern = "/^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s*(if|elseif|else if|while)(?![^\s]))|^(".$this->ldel."\\s*for(?![^\s]))|^(".$this->ldel."\\s*foreach(?![^\s]))|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(\")|^(`\\$)|^(\\$[0-9]*[a-zA-Z_]\\w*)|^(\\$)|^(([^\"\\\\]*?)((?:\\\\.[^\"\\\\]*?)*?)(?=(".$this->ldel."|\\$|`\\$|\")))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -963,6 +1021,39 @@ class Smarty_Internal_Templatelexer function yy_r4_2($yy_subpatterns) { + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELIF; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r4_4($yy_subpatterns) + { + + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELFOR; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r4_5($yy_subpatterns) + { + + if ($this->smarty->auto_literal && substr($this->value,$this->ldel_length,1) == ' ') { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } else { + $this->token = Smarty_Internal_Templateparser::TP_LDELFOREACH; + $this->yypushstate(self::SMARTY); + $this->taglineno = $this->line; + } + } + function yy_r4_6($yy_subpatterns) + { + if ($this->smarty->auto_literal) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; } else { @@ -971,27 +1062,27 @@ class Smarty_Internal_Templatelexer $this->taglineno = $this->line; } } - function yy_r4_3($yy_subpatterns) + function yy_r4_7($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r4_4($yy_subpatterns) + function yy_r4_8($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r4_5($yy_subpatterns) + function yy_r4_9($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QUOTE; $this->yypopstate(); } - function yy_r4_6($yy_subpatterns) + function yy_r4_10($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; @@ -999,17 +1090,12 @@ class Smarty_Internal_Templatelexer $this->yypushstate(self::SMARTY); $this->taglineno = $this->line; } - function yy_r4_7($yy_subpatterns) + function yy_r4_11($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOLLARID; } - function yy_r4_8($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_OTHER; - } - function yy_r4_9($yy_subpatterns) + function yy_r4_12($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; @@ -1017,6 +1103,11 @@ class Smarty_Internal_Templatelexer function yy_r4_13($yy_subpatterns) { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } + function yy_r4_17($yy_subpatterns) + { + $this->token = Smarty_Internal_Templateparser::TP_OTHER; } diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 01ea9249..63ee64b3 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -150,15 +150,15 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php const TP_DOLLAR = 14; const TP_ID = 15; const TP_EQUAL = 16; - const TP_FOREACH = 17; - const TP_PTR = 18; - const TP_IF = 19; - const TP_SPACE = 20; - const TP_FOR = 21; - const TP_SEMICOLON = 22; - const TP_INCDEC = 23; - const TP_TO = 24; - const TP_STEP = 25; + const TP_PTR = 17; + const TP_LDELIF = 18; + const TP_SPACE = 19; + const TP_LDELFOR = 20; + const TP_SEMICOLON = 21; + const TP_INCDEC = 22; + const TP_TO = 23; + const TP_STEP = 24; + const TP_LDELFOREACH = 25; const TP_AS = 26; const TP_APTR = 27; const TP_LDELSLASH = 28; @@ -206,503 +206,577 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php const TP_QUOTE = 70; const TP_BACKTICK = 71; const TP_DOLLARID = 72; - const YY_NO_ACTION = 549; - const YY_ACCEPT_ACTION = 548; - const YY_ERROR_ACTION = 547; + const YY_NO_ACTION = 540; + const YY_ACCEPT_ACTION = 539; + const YY_ERROR_ACTION = 538; - const YY_SZ_ACTTAB = 1853; + const YY_SZ_ACTTAB = 2225; static public $yy_action = array( - /* 0 */ 177, 299, 6, 20, 155, 100, 344, 101, 51, 123, - /* 10 */ 98, 359, 315, 161, 293, 225, 228, 226, 305, 182, - /* 20 */ 158, 269, 280, 347, 322, 189, 292, 121, 124, 233, - /* 30 */ 43, 42, 44, 39, 32, 26, 286, 290, 25, 28, - /* 40 */ 288, 301, 31, 30, 292, 193, 256, 248, 273, 270, - /* 50 */ 264, 240, 158, 20, 355, 2, 344, 319, 318, 312, - /* 60 */ 311, 327, 308, 309, 310, 307, 306, 303, 304, 177, - /* 70 */ 299, 125, 177, 267, 224, 268, 209, 60, 237, 106, - /* 80 */ 135, 287, 195, 421, 321, 165, 191, 305, 182, 222, - /* 90 */ 421, 182, 347, 322, 331, 292, 253, 252, 249, 43, - /* 100 */ 42, 44, 39, 32, 26, 286, 290, 25, 28, 288, - /* 110 */ 301, 31, 30, 132, 93, 230, 9, 9, 548, 83, - /* 120 */ 254, 252, 249, 104, 104, 329, 319, 318, 312, 311, - /* 130 */ 327, 308, 309, 310, 307, 306, 303, 304, 177, 20, - /* 140 */ 354, 299, 344, 117, 190, 224, 172, 209, 53, 122, - /* 150 */ 106, 13, 20, 360, 216, 344, 20, 182, 305, 344, - /* 160 */ 18, 141, 23, 347, 322, 40, 292, 196, 43, 42, - /* 170 */ 44, 39, 32, 26, 286, 290, 25, 28, 288, 301, - /* 180 */ 31, 30, 177, 182, 87, 20, 162, 293, 344, 18, - /* 190 */ 29, 37, 108, 260, 261, 319, 318, 312, 311, 327, - /* 200 */ 308, 309, 310, 307, 306, 303, 304, 247, 27, 47, - /* 210 */ 107, 154, 43, 42, 44, 39, 32, 26, 286, 290, - /* 220 */ 25, 28, 288, 301, 31, 30, 9, 202, 86, 316, - /* 230 */ 259, 220, 257, 104, 258, 20, 34, 276, 344, 319, - /* 240 */ 318, 312, 311, 327, 308, 309, 310, 307, 306, 303, - /* 250 */ 304, 177, 299, 313, 177, 9, 180, 420, 209, 49, - /* 260 */ 118, 106, 104, 105, 182, 423, 333, 323, 187, 305, - /* 270 */ 182, 212, 423, 182, 347, 322, 298, 292, 203, 218, - /* 280 */ 277, 43, 42, 44, 39, 32, 26, 286, 290, 25, - /* 290 */ 28, 288, 301, 31, 30, 177, 323, 47, 299, 300, - /* 300 */ 20, 356, 241, 344, 209, 177, 182, 106, 319, 318, - /* 310 */ 312, 311, 327, 308, 309, 310, 307, 306, 303, 304, - /* 320 */ 347, 322, 143, 292, 182, 43, 42, 44, 39, 32, - /* 330 */ 26, 286, 290, 25, 28, 288, 301, 31, 30, 177, - /* 340 */ 142, 274, 351, 92, 227, 20, 278, 8, 344, 132, - /* 350 */ 207, 246, 319, 318, 312, 311, 327, 308, 309, 310, - /* 360 */ 307, 306, 303, 304, 10, 20, 157, 293, 194, 43, - /* 370 */ 42, 44, 39, 32, 26, 286, 290, 25, 28, 288, - /* 380 */ 301, 31, 30, 177, 110, 314, 251, 202, 172, 219, - /* 390 */ 184, 237, 182, 13, 136, 334, 319, 318, 312, 311, - /* 400 */ 327, 308, 309, 310, 307, 306, 303, 304, 331, 153, - /* 410 */ 5, 351, 116, 43, 42, 44, 39, 32, 26, 286, - /* 420 */ 290, 25, 28, 288, 301, 31, 30, 20, 263, 345, - /* 430 */ 344, 15, 229, 289, 245, 111, 182, 324, 332, 182, - /* 440 */ 319, 318, 312, 311, 327, 308, 309, 310, 307, 306, - /* 450 */ 303, 304, 177, 299, 217, 215, 250, 100, 11, 97, - /* 460 */ 52, 123, 98, 151, 47, 47, 137, 358, 167, 221, - /* 470 */ 305, 164, 35, 163, 182, 347, 322, 331, 292, 47, - /* 480 */ 331, 89, 43, 42, 44, 39, 32, 26, 286, 290, - /* 490 */ 25, 28, 288, 301, 31, 30, 177, 317, 20, 299, - /* 500 */ 17, 179, 275, 330, 182, 209, 11, 323, 106, 319, - /* 510 */ 318, 312, 311, 327, 308, 309, 310, 307, 306, 303, - /* 520 */ 304, 347, 322, 21, 292, 7, 43, 42, 44, 39, - /* 530 */ 32, 26, 286, 290, 25, 28, 288, 301, 31, 30, - /* 540 */ 177, 223, 336, 238, 340, 323, 102, 12, 231, 182, - /* 550 */ 182, 182, 3, 319, 318, 312, 311, 327, 308, 309, - /* 560 */ 310, 307, 306, 303, 304, 262, 109, 200, 125, 4, - /* 570 */ 43, 42, 44, 39, 32, 26, 286, 290, 25, 28, - /* 580 */ 288, 301, 31, 30, 177, 337, 204, 284, 282, 328, - /* 590 */ 20, 103, 182, 206, 182, 182, 169, 319, 318, 312, - /* 600 */ 311, 327, 308, 309, 310, 307, 306, 303, 304, 207, - /* 610 */ 335, 16, 235, 198, 43, 42, 44, 39, 32, 26, - /* 620 */ 286, 290, 25, 28, 288, 301, 31, 30, 177, 19, - /* 630 */ 353, 299, 295, 242, 239, 281, 38, 209, 21, 182, - /* 640 */ 106, 319, 318, 312, 311, 327, 308, 309, 310, 307, - /* 650 */ 306, 303, 304, 347, 322, 357, 292, 160, 43, 42, - /* 660 */ 44, 39, 32, 26, 286, 290, 25, 28, 288, 301, - /* 670 */ 31, 30, 177, 191, 159, 299, 320, 359, 40, 343, - /* 680 */ 352, 209, 156, 182, 106, 319, 318, 312, 311, 327, - /* 690 */ 308, 309, 310, 307, 306, 303, 304, 347, 322, 150, - /* 700 */ 292, 132, 43, 42, 44, 39, 32, 26, 286, 290, - /* 710 */ 25, 28, 288, 301, 31, 30, 177, 166, 296, 346, - /* 720 */ 211, 351, 182, 325, 112, 182, 182, 24, 33, 319, - /* 730 */ 318, 312, 311, 327, 308, 309, 310, 307, 306, 303, - /* 740 */ 304, 271, 232, 41, 291, 91, 43, 42, 44, 39, - /* 750 */ 32, 26, 286, 290, 25, 28, 288, 301, 31, 30, - /* 760 */ 9, 302, 349, 342, 266, 132, 94, 104, 182, 182, - /* 770 */ 119, 338, 279, 319, 318, 312, 311, 327, 308, 309, - /* 780 */ 310, 307, 306, 303, 304, 177, 299, 88, 129, 294, - /* 790 */ 175, 130, 209, 71, 255, 106, 119, 341, 14, 139, - /* 800 */ 110, 298, 5, 305, 298, 339, 90, 302, 347, 322, - /* 810 */ 214, 292, 461, 331, 302, 43, 42, 44, 39, 32, - /* 820 */ 26, 286, 290, 25, 28, 288, 301, 31, 30, 177, - /* 830 */ 302, 302, 9, 302, 302, 302, 302, 302, 302, 104, - /* 840 */ 152, 168, 319, 318, 312, 311, 327, 308, 309, 310, - /* 850 */ 307, 306, 303, 304, 331, 302, 302, 302, 302, 43, - /* 860 */ 42, 44, 39, 32, 26, 286, 290, 25, 28, 288, - /* 870 */ 301, 31, 30, 177, 302, 302, 302, 302, 302, 302, - /* 880 */ 302, 302, 302, 302, 302, 126, 319, 318, 312, 311, - /* 890 */ 327, 308, 309, 310, 307, 306, 303, 304, 298, 302, - /* 900 */ 302, 302, 302, 43, 42, 44, 39, 32, 26, 286, - /* 910 */ 290, 25, 28, 288, 301, 31, 30, 213, 302, 302, - /* 920 */ 302, 302, 302, 302, 302, 302, 302, 302, 302, 351, - /* 930 */ 319, 318, 312, 311, 327, 308, 309, 310, 307, 306, - /* 940 */ 303, 304, 133, 2, 302, 113, 85, 166, 120, 302, - /* 950 */ 208, 2, 188, 114, 173, 148, 331, 24, 33, 125, - /* 960 */ 192, 127, 99, 48, 302, 302, 96, 125, 192, 331, - /* 970 */ 138, 48, 302, 302, 298, 298, 302, 36, 302, 298, - /* 980 */ 45, 46, 302, 348, 331, 22, 87, 1, 45, 46, - /* 990 */ 2, 348, 117, 185, 87, 1, 272, 145, 134, 302, - /* 1000 */ 302, 84, 2, 166, 114, 185, 125, 192, 302, 84, - /* 1010 */ 48, 331, 331, 24, 33, 140, 302, 144, 125, 192, - /* 1020 */ 302, 302, 48, 302, 22, 325, 302, 45, 46, 331, - /* 1030 */ 348, 331, 302, 87, 1, 2, 22, 114, 185, 45, - /* 1040 */ 46, 131, 348, 325, 128, 87, 1, 2, 84, 115, - /* 1050 */ 185, 125, 192, 95, 298, 48, 302, 298, 302, 302, - /* 1060 */ 84, 302, 302, 125, 192, 302, 298, 48, 302, 36, - /* 1070 */ 302, 302, 45, 46, 149, 348, 302, 302, 87, 1, - /* 1080 */ 2, 22, 114, 174, 45, 46, 302, 348, 331, 302, - /* 1090 */ 87, 1, 2, 84, 114, 171, 125, 192, 302, 302, - /* 1100 */ 48, 302, 325, 302, 302, 84, 302, 302, 125, 192, - /* 1110 */ 302, 302, 48, 302, 22, 302, 302, 45, 46, 302, - /* 1120 */ 348, 302, 302, 87, 1, 2, 36, 117, 170, 45, - /* 1130 */ 46, 302, 348, 302, 302, 87, 1, 2, 84, 117, - /* 1140 */ 185, 125, 183, 302, 302, 48, 302, 302, 302, 302, - /* 1150 */ 84, 302, 302, 125, 192, 302, 302, 48, 302, 22, - /* 1160 */ 302, 302, 45, 46, 302, 348, 302, 302, 87, 1, - /* 1170 */ 2, 22, 117, 186, 45, 46, 302, 348, 302, 302, - /* 1180 */ 87, 302, 302, 84, 302, 302, 125, 192, 302, 302, - /* 1190 */ 48, 302, 299, 302, 302, 84, 181, 302, 209, 68, - /* 1200 */ 302, 106, 302, 302, 22, 302, 302, 45, 46, 305, - /* 1210 */ 348, 302, 302, 87, 347, 322, 299, 292, 302, 302, - /* 1220 */ 224, 302, 209, 58, 302, 106, 176, 234, 84, 302, - /* 1230 */ 302, 302, 302, 305, 302, 302, 302, 302, 347, 322, - /* 1240 */ 299, 292, 302, 302, 224, 302, 209, 58, 210, 106, - /* 1250 */ 302, 302, 299, 302, 302, 302, 224, 305, 209, 58, - /* 1260 */ 302, 106, 347, 322, 299, 292, 302, 302, 224, 305, - /* 1270 */ 209, 58, 205, 106, 347, 322, 299, 292, 302, 302, - /* 1280 */ 181, 305, 209, 68, 265, 106, 347, 322, 302, 292, - /* 1290 */ 302, 302, 302, 305, 302, 302, 199, 302, 347, 322, - /* 1300 */ 299, 292, 302, 302, 224, 302, 209, 79, 302, 106, - /* 1310 */ 302, 236, 302, 302, 302, 302, 302, 305, 302, 302, - /* 1320 */ 302, 302, 347, 322, 299, 292, 302, 302, 224, 302, - /* 1330 */ 209, 62, 302, 106, 302, 302, 299, 302, 302, 302, - /* 1340 */ 224, 305, 209, 64, 302, 106, 347, 322, 299, 292, - /* 1350 */ 302, 302, 224, 305, 209, 82, 302, 106, 347, 322, - /* 1360 */ 299, 292, 302, 302, 224, 305, 209, 67, 302, 106, - /* 1370 */ 347, 322, 302, 292, 302, 302, 302, 305, 302, 302, - /* 1380 */ 302, 147, 347, 322, 299, 292, 166, 302, 224, 302, - /* 1390 */ 209, 73, 302, 106, 302, 331, 24, 33, 302, 302, - /* 1400 */ 302, 305, 302, 302, 302, 302, 347, 322, 299, 292, - /* 1410 */ 302, 302, 224, 302, 209, 78, 302, 106, 302, 302, - /* 1420 */ 299, 302, 302, 302, 224, 305, 209, 61, 302, 106, - /* 1430 */ 347, 322, 299, 292, 302, 302, 224, 305, 209, 63, - /* 1440 */ 302, 106, 347, 322, 299, 292, 302, 302, 224, 305, - /* 1450 */ 209, 54, 302, 106, 347, 322, 302, 292, 302, 302, - /* 1460 */ 302, 305, 302, 302, 302, 146, 347, 322, 299, 292, - /* 1470 */ 166, 302, 224, 302, 209, 76, 302, 106, 302, 331, - /* 1480 */ 24, 33, 302, 302, 302, 305, 302, 302, 302, 302, - /* 1490 */ 347, 322, 299, 292, 302, 302, 224, 302, 178, 59, - /* 1500 */ 302, 106, 302, 302, 299, 302, 302, 302, 224, 305, - /* 1510 */ 209, 50, 302, 106, 347, 322, 299, 292, 302, 302, - /* 1520 */ 224, 305, 209, 77, 302, 106, 347, 322, 299, 292, - /* 1530 */ 302, 302, 224, 305, 209, 65, 302, 106, 347, 322, - /* 1540 */ 302, 292, 302, 302, 302, 305, 302, 302, 302, 302, - /* 1550 */ 347, 322, 299, 292, 302, 302, 224, 302, 209, 56, - /* 1560 */ 302, 106, 302, 302, 302, 302, 302, 302, 302, 305, - /* 1570 */ 302, 302, 302, 302, 347, 322, 299, 292, 302, 302, - /* 1580 */ 224, 302, 209, 75, 302, 106, 302, 302, 299, 302, - /* 1590 */ 302, 302, 224, 305, 209, 57, 302, 106, 347, 322, - /* 1600 */ 299, 292, 302, 302, 224, 305, 209, 74, 302, 106, - /* 1610 */ 347, 322, 299, 292, 302, 302, 224, 305, 209, 70, - /* 1620 */ 302, 106, 347, 322, 302, 292, 302, 302, 302, 305, - /* 1630 */ 302, 302, 302, 302, 347, 322, 299, 292, 302, 302, - /* 1640 */ 224, 302, 209, 69, 302, 106, 302, 302, 302, 302, - /* 1650 */ 302, 302, 302, 305, 302, 302, 302, 302, 347, 322, - /* 1660 */ 299, 292, 302, 302, 224, 302, 209, 80, 302, 106, - /* 1670 */ 302, 302, 299, 302, 302, 302, 224, 305, 209, 81, - /* 1680 */ 302, 106, 347, 322, 299, 292, 302, 302, 224, 305, - /* 1690 */ 209, 72, 302, 106, 347, 322, 299, 292, 302, 302, - /* 1700 */ 224, 305, 209, 55, 302, 106, 347, 322, 302, 292, - /* 1710 */ 302, 302, 302, 305, 302, 302, 302, 302, 347, 322, - /* 1720 */ 299, 292, 302, 302, 224, 302, 209, 66, 302, 106, - /* 1730 */ 302, 302, 302, 302, 302, 302, 302, 305, 302, 302, - /* 1740 */ 302, 302, 347, 322, 299, 292, 302, 302, 243, 302, - /* 1750 */ 209, 302, 302, 106, 299, 302, 302, 302, 283, 302, - /* 1760 */ 209, 244, 302, 106, 302, 302, 347, 322, 302, 292, - /* 1770 */ 302, 285, 302, 302, 299, 302, 347, 322, 201, 292, - /* 1780 */ 209, 299, 302, 106, 302, 297, 302, 209, 231, 302, - /* 1790 */ 106, 197, 3, 302, 302, 302, 347, 322, 302, 292, - /* 1800 */ 302, 302, 302, 347, 322, 299, 292, 302, 125, 350, - /* 1810 */ 302, 209, 302, 302, 106, 299, 302, 302, 302, 326, - /* 1820 */ 302, 209, 302, 302, 106, 302, 302, 347, 322, 302, - /* 1830 */ 292, 302, 302, 302, 302, 302, 302, 347, 322, 302, - /* 1840 */ 292, 302, 302, 302, 302, 302, 302, 302, 302, 302, - /* 1850 */ 361, 16, 235, + /* 0 */ 183, 20, 155, 353, 245, 235, 224, 226, 234, 228, + /* 10 */ 159, 214, 316, 4, 238, 236, 244, 12, 180, 211, + /* 20 */ 12, 202, 198, 334, 105, 10, 122, 105, 229, 197, + /* 30 */ 47, 42, 44, 39, 38, 36, 283, 282, 31, 29, + /* 40 */ 296, 309, 33, 34, 261, 254, 251, 217, 188, 159, + /* 50 */ 274, 268, 539, 83, 239, 236, 244, 304, 301, 300, + /* 60 */ 297, 298, 299, 305, 306, 312, 313, 314, 311, 183, + /* 70 */ 183, 21, 307, 260, 318, 37, 195, 200, 207, 61, + /* 80 */ 118, 111, 351, 12, 218, 326, 208, 180, 180, 310, + /* 90 */ 105, 414, 35, 278, 281, 308, 308, 414, 28, 47, + /* 100 */ 42, 44, 39, 38, 36, 283, 282, 31, 29, 296, + /* 110 */ 309, 33, 34, 223, 21, 12, 45, 318, 25, 412, + /* 120 */ 93, 333, 105, 45, 271, 412, 304, 301, 300, 297, + /* 130 */ 298, 299, 305, 306, 312, 313, 314, 311, 183, 352, + /* 140 */ 307, 127, 183, 32, 100, 180, 98, 52, 124, 99, + /* 150 */ 291, 241, 12, 290, 322, 5, 180, 310, 187, 105, + /* 160 */ 180, 278, 281, 21, 308, 452, 318, 37, 47, 42, + /* 170 */ 44, 39, 38, 36, 283, 282, 31, 29, 296, 309, + /* 180 */ 33, 34, 183, 255, 161, 12, 106, 203, 315, 180, + /* 190 */ 156, 353, 105, 154, 168, 304, 301, 300, 297, 298, + /* 200 */ 299, 305, 306, 312, 313, 314, 311, 21, 253, 8, + /* 210 */ 318, 103, 47, 42, 44, 39, 38, 36, 283, 282, + /* 220 */ 31, 29, 296, 309, 33, 34, 21, 87, 286, 318, + /* 230 */ 21, 335, 16, 318, 180, 119, 332, 355, 128, 304, + /* 240 */ 301, 300, 297, 298, 299, 305, 306, 312, 313, 314, + /* 250 */ 311, 183, 307, 355, 21, 227, 100, 318, 101, 50, + /* 260 */ 124, 99, 151, 11, 128, 147, 9, 167, 223, 310, + /* 270 */ 164, 158, 170, 278, 281, 350, 308, 13, 350, 26, + /* 280 */ 24, 47, 42, 44, 39, 38, 36, 283, 282, 31, + /* 290 */ 29, 296, 309, 33, 34, 15, 215, 114, 139, 225, + /* 300 */ 112, 247, 320, 265, 27, 180, 116, 293, 304, 301, + /* 310 */ 300, 297, 298, 299, 305, 306, 312, 313, 314, 311, + /* 320 */ 183, 292, 307, 206, 21, 345, 173, 318, 207, 68, + /* 330 */ 240, 111, 21, 257, 259, 318, 411, 216, 180, 310, + /* 340 */ 180, 341, 180, 278, 281, 355, 308, 220, 120, 128, + /* 350 */ 47, 42, 44, 39, 38, 36, 283, 282, 31, 29, + /* 360 */ 296, 309, 33, 34, 183, 164, 45, 347, 21, 250, + /* 370 */ 141, 194, 334, 180, 26, 24, 166, 304, 301, 300, + /* 380 */ 297, 298, 299, 305, 306, 312, 313, 314, 311, 144, + /* 390 */ 205, 334, 219, 184, 47, 42, 44, 39, 38, 36, + /* 400 */ 283, 282, 31, 29, 296, 309, 33, 34, 183, 170, + /* 410 */ 349, 339, 336, 288, 13, 183, 180, 180, 180, 180, + /* 420 */ 246, 304, 301, 300, 297, 298, 299, 305, 306, 312, + /* 430 */ 313, 314, 311, 180, 157, 353, 142, 231, 47, 42, + /* 440 */ 44, 39, 38, 36, 283, 282, 31, 29, 296, 309, + /* 450 */ 33, 34, 183, 294, 323, 330, 355, 337, 303, 180, + /* 460 */ 180, 180, 40, 180, 137, 304, 301, 300, 297, 298, + /* 470 */ 299, 305, 306, 312, 313, 314, 311, 350, 21, 180, + /* 480 */ 5, 196, 47, 42, 44, 39, 38, 36, 283, 282, + /* 490 */ 31, 29, 296, 309, 33, 34, 183, 201, 189, 344, + /* 500 */ 342, 324, 180, 2, 199, 180, 180, 180, 264, 304, + /* 510 */ 301, 300, 297, 298, 299, 305, 306, 312, 313, 314, + /* 520 */ 311, 21, 104, 45, 175, 191, 47, 42, 44, 39, + /* 530 */ 38, 36, 283, 282, 31, 29, 296, 309, 33, 34, + /* 540 */ 183, 17, 285, 190, 9, 110, 258, 266, 180, 243, + /* 550 */ 30, 326, 145, 304, 301, 300, 297, 298, 299, 305, + /* 560 */ 306, 312, 313, 314, 311, 350, 109, 14, 222, 287, + /* 570 */ 47, 42, 44, 39, 38, 36, 283, 282, 31, 29, + /* 580 */ 296, 309, 33, 34, 183, 190, 256, 317, 91, 302, + /* 590 */ 107, 356, 128, 232, 338, 30, 143, 304, 301, 300, + /* 600 */ 297, 298, 299, 305, 306, 312, 313, 314, 311, 350, + /* 610 */ 41, 343, 92, 140, 47, 42, 44, 39, 38, 36, + /* 620 */ 283, 282, 31, 29, 296, 309, 33, 34, 112, 315, + /* 630 */ 284, 162, 267, 90, 289, 18, 113, 120, 160, 88, + /* 640 */ 233, 304, 301, 300, 297, 298, 299, 305, 306, 312, + /* 650 */ 313, 314, 311, 183, 307, 150, 89, 152, 195, 192, + /* 660 */ 207, 53, 123, 111, 138, 270, 45, 153, 350, 165, + /* 670 */ 334, 310, 164, 6, 214, 278, 281, 350, 308, 273, + /* 680 */ 350, 26, 24, 47, 42, 44, 39, 38, 36, 283, + /* 690 */ 282, 31, 29, 296, 309, 33, 34, 183, 348, 295, + /* 700 */ 86, 40, 94, 230, 209, 297, 297, 297, 297, 263, + /* 710 */ 304, 301, 300, 297, 298, 299, 305, 306, 312, 313, + /* 720 */ 314, 311, 297, 297, 297, 297, 297, 47, 42, 44, + /* 730 */ 39, 38, 36, 283, 282, 31, 29, 296, 309, 33, + /* 740 */ 34, 183, 297, 297, 297, 297, 297, 297, 297, 297, + /* 750 */ 297, 297, 297, 148, 304, 301, 300, 297, 298, 299, + /* 760 */ 305, 306, 312, 313, 314, 311, 350, 297, 297, 297, + /* 770 */ 3, 47, 42, 44, 39, 38, 36, 283, 282, 31, + /* 780 */ 29, 296, 309, 33, 34, 183, 297, 297, 297, 297, + /* 790 */ 297, 297, 297, 297, 297, 297, 297, 134, 304, 301, + /* 800 */ 300, 297, 298, 299, 305, 306, 312, 313, 314, 311, + /* 810 */ 350, 297, 297, 297, 297, 47, 42, 44, 39, 38, + /* 820 */ 36, 283, 282, 31, 29, 296, 309, 33, 34, 183, + /* 830 */ 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, + /* 840 */ 297, 297, 304, 301, 300, 297, 298, 299, 305, 306, + /* 850 */ 312, 313, 314, 311, 297, 319, 297, 297, 297, 47, + /* 860 */ 42, 44, 39, 38, 36, 283, 282, 31, 29, 296, + /* 870 */ 309, 33, 34, 183, 297, 272, 297, 297, 297, 297, + /* 880 */ 297, 297, 297, 297, 297, 297, 304, 301, 300, 297, + /* 890 */ 298, 299, 305, 306, 312, 313, 314, 311, 297, 297, + /* 900 */ 297, 297, 297, 47, 42, 44, 39, 38, 36, 283, + /* 910 */ 282, 31, 29, 296, 309, 33, 34, 97, 297, 297, + /* 920 */ 297, 297, 297, 297, 297, 297, 297, 297, 297, 290, + /* 930 */ 304, 301, 300, 297, 298, 299, 305, 306, 312, 313, + /* 940 */ 314, 311, 130, 4, 149, 115, 169, 297, 297, 211, + /* 950 */ 297, 202, 21, 331, 290, 318, 122, 350, 297, 197, + /* 960 */ 186, 125, 4, 43, 108, 177, 297, 210, 211, 297, + /* 970 */ 202, 348, 297, 290, 297, 122, 132, 23, 197, 186, + /* 980 */ 46, 48, 43, 280, 297, 129, 87, 1, 262, 350, + /* 990 */ 297, 146, 297, 297, 297, 297, 23, 290, 95, 46, + /* 1000 */ 48, 84, 280, 348, 350, 87, 1, 297, 297, 4, + /* 1010 */ 290, 115, 177, 297, 135, 211, 297, 202, 348, 163, + /* 1020 */ 84, 297, 122, 297, 297, 197, 186, 350, 4, 43, + /* 1030 */ 115, 172, 297, 297, 211, 297, 202, 297, 126, 102, + /* 1040 */ 297, 122, 297, 23, 197, 186, 46, 48, 43, 280, + /* 1050 */ 290, 290, 87, 1, 297, 297, 297, 131, 96, 297, + /* 1060 */ 297, 297, 19, 297, 297, 46, 48, 84, 280, 290, + /* 1070 */ 290, 87, 1, 297, 297, 4, 297, 117, 85, 297, + /* 1080 */ 297, 211, 297, 202, 297, 297, 84, 297, 122, 297, + /* 1090 */ 297, 197, 186, 297, 4, 43, 115, 174, 297, 297, + /* 1100 */ 211, 297, 202, 297, 297, 297, 297, 122, 297, 19, + /* 1110 */ 197, 186, 46, 48, 43, 280, 297, 297, 87, 1, + /* 1120 */ 297, 297, 297, 297, 297, 297, 297, 297, 23, 297, + /* 1130 */ 297, 46, 48, 84, 280, 297, 297, 87, 1, 297, + /* 1140 */ 297, 4, 297, 106, 177, 297, 297, 211, 297, 202, + /* 1150 */ 297, 297, 84, 297, 122, 297, 297, 197, 186, 297, + /* 1160 */ 4, 43, 115, 177, 297, 297, 211, 297, 202, 297, + /* 1170 */ 297, 297, 297, 122, 297, 23, 197, 186, 46, 48, + /* 1180 */ 43, 280, 297, 297, 87, 1, 297, 297, 297, 297, + /* 1190 */ 297, 297, 297, 297, 19, 297, 297, 46, 48, 84, + /* 1200 */ 280, 297, 297, 87, 1, 297, 297, 4, 297, 106, + /* 1210 */ 171, 297, 297, 211, 297, 202, 297, 297, 84, 297, + /* 1220 */ 122, 297, 297, 197, 178, 297, 4, 43, 106, 177, + /* 1230 */ 297, 297, 211, 297, 202, 297, 297, 297, 297, 122, + /* 1240 */ 297, 23, 197, 186, 46, 48, 43, 280, 297, 297, + /* 1250 */ 87, 1, 297, 297, 297, 297, 297, 297, 297, 297, + /* 1260 */ 23, 297, 297, 46, 48, 84, 280, 297, 297, 87, + /* 1270 */ 297, 297, 297, 4, 297, 106, 185, 297, 297, 211, + /* 1280 */ 297, 202, 136, 297, 84, 297, 122, 164, 297, 197, + /* 1290 */ 186, 297, 297, 43, 297, 350, 26, 24, 297, 297, + /* 1300 */ 297, 297, 327, 297, 297, 297, 7, 23, 297, 297, + /* 1310 */ 46, 48, 211, 280, 202, 133, 87, 307, 297, 122, + /* 1320 */ 164, 176, 197, 207, 71, 297, 111, 297, 350, 26, + /* 1330 */ 24, 84, 297, 297, 310, 297, 297, 297, 278, 281, + /* 1340 */ 297, 308, 297, 297, 297, 297, 297, 297, 297, 297, + /* 1350 */ 179, 329, 297, 307, 297, 297, 297, 195, 297, 207, + /* 1360 */ 62, 297, 111, 297, 321, 22, 275, 297, 297, 297, + /* 1370 */ 310, 297, 297, 297, 278, 281, 297, 308, 297, 297, + /* 1380 */ 297, 297, 297, 297, 204, 307, 297, 297, 297, 176, + /* 1390 */ 297, 207, 71, 297, 111, 297, 297, 297, 297, 297, + /* 1400 */ 297, 297, 310, 297, 307, 297, 278, 281, 195, 308, + /* 1410 */ 207, 62, 297, 111, 297, 297, 297, 297, 297, 328, + /* 1420 */ 297, 310, 297, 297, 297, 278, 281, 297, 308, 297, + /* 1430 */ 297, 297, 297, 297, 297, 193, 297, 307, 297, 297, + /* 1440 */ 297, 181, 297, 207, 49, 121, 111, 297, 297, 297, + /* 1450 */ 297, 297, 297, 297, 310, 297, 297, 297, 278, 281, + /* 1460 */ 297, 308, 307, 297, 297, 297, 195, 297, 207, 62, + /* 1470 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 310, + /* 1480 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 195, + /* 1490 */ 297, 207, 62, 213, 111, 297, 297, 297, 297, 297, + /* 1500 */ 297, 297, 310, 297, 307, 297, 278, 281, 195, 308, + /* 1510 */ 207, 70, 297, 111, 297, 297, 237, 297, 297, 297, + /* 1520 */ 297, 310, 297, 307, 297, 278, 281, 195, 308, 207, + /* 1530 */ 60, 297, 111, 297, 297, 297, 297, 297, 297, 327, + /* 1540 */ 310, 297, 297, 7, 278, 281, 307, 308, 297, 211, + /* 1550 */ 195, 202, 207, 73, 297, 111, 122, 297, 297, 197, + /* 1560 */ 297, 297, 297, 310, 297, 297, 297, 278, 281, 307, + /* 1570 */ 308, 297, 297, 195, 297, 207, 82, 297, 111, 297, + /* 1580 */ 297, 297, 297, 297, 297, 297, 310, 297, 307, 297, + /* 1590 */ 278, 281, 195, 308, 207, 78, 297, 111, 297, 297, + /* 1600 */ 297, 325, 22, 275, 297, 310, 297, 307, 297, 278, + /* 1610 */ 281, 195, 308, 207, 79, 297, 111, 297, 297, 297, + /* 1620 */ 297, 297, 297, 297, 310, 297, 297, 297, 278, 281, + /* 1630 */ 307, 308, 297, 297, 195, 297, 207, 58, 297, 111, + /* 1640 */ 297, 297, 297, 297, 297, 297, 297, 310, 297, 297, + /* 1650 */ 297, 278, 281, 307, 308, 297, 297, 195, 297, 207, + /* 1660 */ 66, 297, 111, 297, 297, 297, 297, 297, 297, 297, + /* 1670 */ 310, 297, 307, 297, 278, 281, 195, 308, 207, 64, + /* 1680 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 310, + /* 1690 */ 297, 307, 297, 278, 281, 195, 308, 207, 57, 297, + /* 1700 */ 111, 297, 297, 297, 297, 297, 297, 297, 310, 297, + /* 1710 */ 297, 297, 278, 281, 307, 308, 297, 297, 195, 297, + /* 1720 */ 207, 56, 297, 111, 297, 297, 297, 297, 297, 297, + /* 1730 */ 297, 310, 297, 297, 297, 278, 281, 307, 308, 297, + /* 1740 */ 297, 195, 297, 207, 65, 297, 111, 297, 297, 297, + /* 1750 */ 297, 297, 297, 297, 310, 297, 307, 297, 278, 281, + /* 1760 */ 195, 308, 207, 81, 297, 111, 297, 297, 297, 297, + /* 1770 */ 297, 297, 297, 310, 297, 307, 297, 278, 281, 195, + /* 1780 */ 308, 207, 55, 297, 111, 297, 297, 297, 297, 297, + /* 1790 */ 297, 297, 310, 297, 297, 297, 278, 281, 307, 308, + /* 1800 */ 297, 297, 195, 297, 207, 75, 297, 111, 297, 297, + /* 1810 */ 297, 297, 297, 297, 297, 310, 297, 297, 297, 278, + /* 1820 */ 281, 307, 308, 297, 297, 195, 297, 182, 59, 297, + /* 1830 */ 111, 297, 297, 297, 297, 297, 297, 297, 310, 297, + /* 1840 */ 307, 297, 278, 281, 195, 308, 207, 63, 297, 111, + /* 1850 */ 297, 297, 297, 297, 297, 297, 297, 310, 297, 307, + /* 1860 */ 297, 278, 281, 195, 308, 207, 77, 297, 111, 297, + /* 1870 */ 297, 297, 297, 297, 297, 297, 310, 297, 297, 297, + /* 1880 */ 278, 281, 307, 308, 297, 297, 195, 297, 207, 54, + /* 1890 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 310, + /* 1900 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 195, + /* 1910 */ 297, 207, 69, 297, 111, 297, 297, 297, 297, 297, + /* 1920 */ 297, 297, 310, 297, 307, 297, 278, 281, 195, 308, + /* 1930 */ 207, 76, 297, 111, 297, 297, 297, 297, 297, 297, + /* 1940 */ 297, 310, 297, 307, 297, 278, 281, 195, 308, 207, + /* 1950 */ 51, 297, 111, 297, 297, 297, 297, 297, 297, 297, + /* 1960 */ 310, 297, 297, 297, 278, 281, 307, 308, 297, 297, + /* 1970 */ 195, 297, 207, 80, 297, 111, 297, 297, 297, 297, + /* 1980 */ 297, 297, 297, 310, 297, 297, 297, 278, 281, 307, + /* 1990 */ 308, 297, 297, 195, 297, 207, 67, 297, 111, 297, + /* 2000 */ 297, 297, 297, 297, 297, 297, 310, 297, 307, 297, + /* 2010 */ 278, 281, 195, 308, 207, 74, 297, 111, 297, 297, + /* 2020 */ 297, 297, 297, 297, 297, 310, 297, 307, 297, 278, + /* 2030 */ 281, 195, 308, 207, 72, 297, 111, 297, 297, 297, + /* 2040 */ 297, 297, 297, 297, 310, 297, 297, 297, 278, 281, + /* 2050 */ 307, 308, 297, 297, 276, 297, 207, 297, 297, 111, + /* 2060 */ 297, 297, 297, 297, 297, 297, 297, 277, 297, 297, + /* 2070 */ 297, 278, 281, 307, 308, 297, 297, 248, 297, 207, + /* 2080 */ 297, 297, 111, 297, 297, 297, 297, 297, 297, 297, + /* 2090 */ 249, 297, 307, 297, 278, 281, 212, 308, 207, 297, + /* 2100 */ 297, 111, 297, 297, 297, 297, 297, 297, 297, 221, + /* 2110 */ 297, 307, 297, 278, 281, 252, 308, 207, 297, 297, + /* 2120 */ 111, 297, 307, 297, 297, 297, 354, 297, 207, 297, + /* 2130 */ 297, 111, 278, 281, 297, 308, 297, 297, 297, 297, + /* 2140 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 269, + /* 2150 */ 297, 207, 307, 297, 111, 297, 340, 297, 207, 297, + /* 2160 */ 297, 111, 297, 297, 297, 297, 278, 281, 297, 308, + /* 2170 */ 297, 297, 297, 278, 281, 307, 308, 297, 297, 242, + /* 2180 */ 297, 207, 297, 297, 111, 297, 297, 297, 297, 307, + /* 2190 */ 297, 297, 297, 279, 297, 207, 278, 281, 111, 308, + /* 2200 */ 307, 297, 297, 297, 346, 297, 207, 297, 297, 111, + /* 2210 */ 278, 281, 297, 308, 297, 297, 297, 297, 297, 297, + /* 2220 */ 297, 278, 281, 297, 308, ); static public $yy_lookahead = array( - /* 0 */ 1, 77, 30, 12, 88, 81, 15, 83, 84, 85, - /* 10 */ 86, 104, 13, 106, 107, 4, 5, 6, 94, 20, - /* 20 */ 9, 10, 11, 99, 100, 83, 102, 20, 86, 57, + /* 0 */ 1, 27, 105, 106, 3, 4, 5, 6, 7, 8, + /* 10 */ 9, 2, 13, 12, 76, 77, 78, 46, 19, 18, + /* 20 */ 46, 20, 51, 104, 53, 16, 25, 53, 57, 28, /* 30 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 40 */ 41, 42, 43, 44, 102, 54, 3, 4, 5, 6, - /* 50 */ 7, 8, 9, 12, 13, 12, 15, 58, 59, 60, + /* 40 */ 41, 42, 43, 44, 4, 5, 6, 14, 15, 9, + /* 50 */ 10, 11, 74, 75, 76, 77, 78, 58, 59, 60, /* 60 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 1, - /* 70 */ 77, 28, 1, 78, 81, 80, 83, 84, 77, 86, - /* 80 */ 82, 13, 89, 13, 13, 87, 51, 94, 20, 18, - /* 90 */ 20, 20, 99, 100, 96, 102, 76, 77, 78, 31, + /* 70 */ 1, 12, 77, 47, 15, 16, 81, 83, 83, 84, + /* 80 */ 86, 86, 13, 46, 89, 77, 17, 19, 19, 94, + /* 90 */ 53, 13, 24, 98, 99, 101, 101, 19, 27, 31, /* 100 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - /* 110 */ 42, 43, 44, 18, 113, 114, 46, 46, 74, 75, - /* 120 */ 76, 77, 78, 53, 53, 29, 58, 59, 60, 61, - /* 130 */ 62, 63, 64, 65, 66, 67, 68, 69, 1, 12, - /* 140 */ 13, 77, 15, 14, 15, 81, 51, 83, 84, 85, - /* 150 */ 86, 56, 12, 13, 27, 15, 12, 20, 94, 15, - /* 160 */ 16, 103, 25, 99, 100, 2, 102, 27, 31, 32, + /* 110 */ 42, 43, 44, 54, 12, 46, 45, 15, 16, 13, + /* 120 */ 112, 113, 53, 45, 22, 19, 58, 59, 60, 61, + /* 130 */ 62, 63, 64, 65, 66, 67, 68, 69, 1, 13, + /* 140 */ 77, 92, 1, 23, 81, 19, 83, 84, 85, 86, + /* 150 */ 13, 47, 46, 104, 13, 16, 19, 94, 17, 53, + /* 160 */ 19, 98, 99, 12, 101, 26, 15, 16, 31, 32, /* 170 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 180 */ 43, 44, 1, 20, 55, 12, 106, 107, 15, 16, - /* 190 */ 12, 27, 14, 15, 13, 58, 59, 60, 61, 62, - /* 200 */ 63, 64, 65, 66, 67, 68, 69, 29, 12, 45, - /* 210 */ 14, 15, 31, 32, 33, 34, 35, 36, 37, 38, - /* 220 */ 39, 40, 41, 42, 43, 44, 46, 54, 15, 15, - /* 230 */ 17, 51, 19, 53, 21, 12, 27, 57, 15, 58, + /* 180 */ 43, 44, 1, 13, 21, 46, 14, 15, 103, 19, + /* 190 */ 105, 106, 53, 30, 13, 58, 59, 60, 61, 62, + /* 200 */ 63, 64, 65, 66, 67, 68, 69, 12, 13, 30, + /* 210 */ 15, 14, 31, 32, 33, 34, 35, 36, 37, 38, + /* 220 */ 39, 40, 41, 42, 43, 44, 12, 55, 13, 15, + /* 230 */ 12, 13, 12, 15, 19, 19, 57, 22, 17, 58, /* 240 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 250 */ 69, 1, 77, 15, 1, 46, 81, 13, 83, 84, - /* 260 */ 85, 86, 53, 92, 20, 13, 13, 23, 54, 94, - /* 270 */ 20, 18, 20, 20, 99, 100, 105, 102, 14, 15, - /* 280 */ 55, 31, 32, 33, 34, 35, 36, 37, 38, 39, - /* 290 */ 40, 41, 42, 43, 44, 1, 23, 45, 77, 13, - /* 300 */ 12, 13, 81, 15, 83, 1, 20, 86, 58, 59, + /* 250 */ 69, 1, 77, 22, 12, 55, 81, 15, 83, 84, + /* 260 */ 85, 86, 82, 16, 17, 82, 46, 87, 54, 94, + /* 270 */ 87, 21, 51, 98, 99, 95, 101, 56, 95, 96, + /* 280 */ 97, 31, 32, 33, 34, 35, 36, 37, 38, 39, + /* 290 */ 40, 41, 42, 43, 44, 12, 54, 14, 15, 13, + /* 300 */ 53, 78, 71, 80, 12, 19, 14, 15, 58, 59, /* 310 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, - /* 320 */ 99, 100, 103, 102, 20, 31, 32, 33, 34, 35, - /* 330 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 1, - /* 340 */ 103, 47, 105, 88, 71, 12, 55, 16, 15, 18, - /* 350 */ 2, 13, 58, 59, 60, 61, 62, 63, 64, 65, - /* 360 */ 66, 67, 68, 69, 16, 12, 106, 107, 15, 31, - /* 370 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - /* 380 */ 42, 43, 44, 1, 53, 13, 13, 54, 51, 89, - /* 390 */ 90, 77, 20, 56, 82, 13, 58, 59, 60, 61, - /* 400 */ 62, 63, 64, 65, 66, 67, 68, 69, 96, 103, - /* 410 */ 16, 105, 14, 31, 32, 33, 34, 35, 36, 37, - /* 420 */ 38, 39, 40, 41, 42, 43, 44, 12, 114, 13, - /* 430 */ 15, 16, 13, 13, 47, 14, 20, 13, 23, 20, - /* 440 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - /* 450 */ 68, 69, 1, 77, 15, 15, 13, 81, 46, 83, - /* 460 */ 84, 85, 86, 82, 45, 45, 82, 13, 87, 29, - /* 470 */ 94, 87, 12, 22, 20, 99, 100, 96, 102, 45, - /* 480 */ 96, 15, 31, 32, 33, 34, 35, 36, 37, 38, - /* 490 */ 39, 40, 41, 42, 43, 44, 1, 13, 12, 77, - /* 500 */ 24, 15, 57, 81, 20, 83, 46, 23, 86, 58, + /* 320 */ 1, 29, 77, 15, 12, 15, 81, 15, 83, 84, + /* 330 */ 85, 86, 12, 13, 13, 15, 13, 29, 19, 94, + /* 340 */ 19, 100, 19, 98, 99, 22, 101, 27, 107, 17, + /* 350 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 360 */ 41, 42, 43, 44, 1, 87, 45, 13, 12, 47, + /* 370 */ 102, 15, 104, 19, 96, 97, 13, 58, 59, 60, + /* 380 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 102, + /* 390 */ 26, 104, 89, 90, 31, 32, 33, 34, 35, 36, + /* 400 */ 37, 38, 39, 40, 41, 42, 43, 44, 1, 51, + /* 410 */ 13, 13, 13, 13, 56, 1, 19, 19, 19, 19, + /* 420 */ 13, 58, 59, 60, 61, 62, 63, 64, 65, 66, + /* 430 */ 67, 68, 69, 19, 105, 106, 102, 107, 31, 32, + /* 440 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + /* 450 */ 43, 44, 1, 13, 13, 13, 22, 13, 15, 19, + /* 460 */ 19, 19, 2, 19, 82, 58, 59, 60, 61, 62, + /* 470 */ 63, 64, 65, 66, 67, 68, 69, 95, 12, 19, + /* 480 */ 16, 15, 31, 32, 33, 34, 35, 36, 37, 38, + /* 490 */ 39, 40, 41, 42, 43, 44, 1, 54, 47, 13, + /* 500 */ 13, 13, 19, 46, 15, 19, 19, 19, 13, 58, /* 510 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 520 */ 69, 99, 100, 16, 102, 30, 31, 32, 33, 34, + /* 520 */ 69, 12, 14, 45, 15, 15, 31, 32, 33, 34, /* 530 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 540 */ 1, 15, 13, 13, 13, 23, 14, 20, 8, 20, - /* 550 */ 20, 20, 12, 58, 59, 60, 61, 62, 63, 64, - /* 560 */ 65, 66, 67, 68, 69, 47, 14, 26, 28, 46, + /* 540 */ 1, 2, 13, 51, 46, 14, 13, 57, 19, 13, + /* 550 */ 16, 77, 82, 58, 59, 60, 61, 62, 63, 64, + /* 560 */ 65, 66, 67, 68, 69, 95, 14, 48, 26, 15, /* 570 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 580 */ 41, 42, 43, 44, 1, 13, 47, 13, 13, 13, - /* 590 */ 12, 14, 20, 15, 20, 20, 13, 58, 59, 60, - /* 600 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 2, - /* 610 */ 70, 71, 72, 26, 31, 32, 33, 34, 35, 36, - /* 620 */ 37, 38, 39, 40, 41, 42, 43, 44, 1, 2, - /* 630 */ 15, 77, 13, 47, 96, 81, 48, 83, 16, 20, - /* 640 */ 86, 58, 59, 60, 61, 62, 63, 64, 65, 66, - /* 650 */ 67, 68, 69, 99, 100, 15, 102, 15, 31, 32, - /* 660 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 670 */ 43, 44, 1, 51, 22, 77, 13, 104, 2, 81, - /* 680 */ 15, 83, 30, 20, 86, 58, 59, 60, 61, 62, - /* 690 */ 63, 64, 65, 66, 67, 68, 69, 99, 100, 103, - /* 700 */ 102, 18, 31, 32, 33, 34, 35, 36, 37, 38, - /* 710 */ 39, 40, 41, 42, 43, 44, 1, 87, 13, 13, - /* 720 */ 95, 105, 20, 110, 14, 20, 20, 97, 98, 58, - /* 730 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, - /* 740 */ 69, 108, 71, 20, 107, 88, 31, 32, 33, 34, - /* 750 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, - /* 760 */ 46, 13, 13, 101, 10, 18, 79, 53, 20, 20, - /* 770 */ 108, 20, 57, 58, 59, 60, 61, 62, 63, 64, - /* 780 */ 65, 66, 67, 68, 69, 1, 77, 103, 92, 101, - /* 790 */ 81, 92, 83, 84, 85, 86, 108, 13, 91, 82, - /* 800 */ 53, 105, 16, 94, 105, 89, 88, 115, 99, 100, - /* 810 */ 91, 102, 26, 96, 115, 31, 32, 33, 34, 35, + /* 580 */ 41, 42, 43, 44, 1, 51, 95, 113, 88, 15, + /* 590 */ 14, 13, 17, 55, 29, 16, 82, 58, 59, 60, + /* 600 */ 61, 62, 63, 64, 65, 66, 67, 68, 69, 95, + /* 610 */ 19, 15, 88, 102, 31, 32, 33, 34, 35, 36, + /* 620 */ 37, 38, 39, 40, 41, 42, 43, 44, 53, 103, + /* 630 */ 100, 15, 89, 88, 13, 91, 14, 107, 88, 102, + /* 640 */ 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + /* 650 */ 67, 68, 69, 1, 77, 82, 15, 102, 81, 93, + /* 660 */ 83, 84, 85, 86, 82, 13, 45, 82, 95, 87, + /* 670 */ 104, 94, 87, 19, 2, 98, 99, 95, 101, 19, + /* 680 */ 95, 96, 97, 31, 32, 33, 34, 35, 36, 37, + /* 690 */ 38, 39, 40, 41, 42, 43, 44, 1, 109, 106, + /* 700 */ 15, 2, 79, 10, 91, 114, 114, 114, 114, 13, + /* 710 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, + /* 720 */ 68, 69, 114, 114, 114, 114, 114, 31, 32, 33, + /* 730 */ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, + /* 740 */ 44, 1, 114, 114, 114, 114, 114, 114, 114, 114, + /* 750 */ 114, 114, 114, 82, 58, 59, 60, 61, 62, 63, + /* 760 */ 64, 65, 66, 67, 68, 69, 95, 114, 114, 114, + /* 770 */ 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, + /* 780 */ 40, 41, 42, 43, 44, 1, 114, 114, 114, 114, + /* 790 */ 114, 114, 114, 114, 114, 114, 114, 82, 58, 59, + /* 800 */ 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, + /* 810 */ 95, 114, 114, 114, 114, 31, 32, 33, 34, 35, /* 820 */ 36, 37, 38, 39, 40, 41, 42, 43, 44, 1, - /* 830 */ 115, 115, 46, 115, 115, 115, 115, 115, 115, 53, - /* 840 */ 82, 13, 58, 59, 60, 61, 62, 63, 64, 65, - /* 850 */ 66, 67, 68, 69, 96, 115, 115, 115, 115, 31, + /* 830 */ 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, + /* 840 */ 114, 114, 58, 59, 60, 61, 62, 63, 64, 65, + /* 850 */ 66, 67, 68, 69, 114, 71, 114, 114, 114, 31, /* 860 */ 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, - /* 870 */ 42, 43, 44, 1, 115, 115, 115, 115, 115, 115, - /* 880 */ 115, 115, 115, 115, 115, 92, 58, 59, 60, 61, - /* 890 */ 62, 63, 64, 65, 66, 67, 68, 69, 105, 115, - /* 900 */ 115, 115, 115, 31, 32, 33, 34, 35, 36, 37, - /* 910 */ 38, 39, 40, 41, 42, 43, 44, 93, 115, 115, - /* 920 */ 115, 115, 115, 115, 115, 115, 115, 115, 115, 105, + /* 870 */ 42, 43, 44, 1, 114, 47, 114, 114, 114, 114, + /* 880 */ 114, 114, 114, 114, 114, 114, 58, 59, 60, 61, + /* 890 */ 62, 63, 64, 65, 66, 67, 68, 69, 114, 114, + /* 900 */ 114, 114, 114, 31, 32, 33, 34, 35, 36, 37, + /* 910 */ 38, 39, 40, 41, 42, 43, 44, 92, 114, 114, + /* 920 */ 114, 114, 114, 114, 114, 114, 114, 114, 114, 104, /* 930 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, - /* 940 */ 68, 69, 82, 12, 115, 14, 15, 87, 17, 115, - /* 950 */ 19, 12, 21, 14, 15, 82, 96, 97, 98, 28, - /* 960 */ 29, 92, 92, 32, 115, 115, 92, 28, 29, 96, - /* 970 */ 82, 32, 115, 115, 105, 105, 115, 46, 115, 105, - /* 980 */ 49, 50, 115, 52, 96, 46, 55, 56, 49, 50, - /* 990 */ 12, 52, 14, 15, 55, 56, 57, 82, 82, 115, - /* 1000 */ 115, 70, 12, 87, 14, 15, 28, 29, 115, 70, - /* 1010 */ 32, 96, 96, 97, 98, 82, 115, 82, 28, 29, - /* 1020 */ 115, 115, 32, 115, 46, 110, 115, 49, 50, 96, - /* 1030 */ 52, 96, 115, 55, 56, 12, 46, 14, 15, 49, - /* 1040 */ 50, 92, 52, 110, 92, 55, 56, 12, 70, 14, - /* 1050 */ 15, 28, 29, 92, 105, 32, 115, 105, 115, 115, - /* 1060 */ 70, 115, 115, 28, 29, 115, 105, 32, 115, 46, - /* 1070 */ 115, 115, 49, 50, 82, 52, 115, 115, 55, 56, - /* 1080 */ 12, 46, 14, 15, 49, 50, 115, 52, 96, 115, - /* 1090 */ 55, 56, 12, 70, 14, 15, 28, 29, 115, 115, - /* 1100 */ 32, 115, 110, 115, 115, 70, 115, 115, 28, 29, - /* 1110 */ 115, 115, 32, 115, 46, 115, 115, 49, 50, 115, - /* 1120 */ 52, 115, 115, 55, 56, 12, 46, 14, 15, 49, - /* 1130 */ 50, 115, 52, 115, 115, 55, 56, 12, 70, 14, - /* 1140 */ 15, 28, 29, 115, 115, 32, 115, 115, 115, 115, - /* 1150 */ 70, 115, 115, 28, 29, 115, 115, 32, 115, 46, - /* 1160 */ 115, 115, 49, 50, 115, 52, 115, 115, 55, 56, - /* 1170 */ 12, 46, 14, 15, 49, 50, 115, 52, 115, 115, - /* 1180 */ 55, 115, 115, 70, 115, 115, 28, 29, 115, 115, - /* 1190 */ 32, 115, 77, 115, 115, 70, 81, 115, 83, 84, - /* 1200 */ 115, 86, 115, 115, 46, 115, 115, 49, 50, 94, - /* 1210 */ 52, 115, 115, 55, 99, 100, 77, 102, 115, 115, - /* 1220 */ 81, 115, 83, 84, 115, 86, 111, 112, 70, 115, - /* 1230 */ 115, 115, 115, 94, 115, 115, 115, 115, 99, 100, - /* 1240 */ 77, 102, 115, 115, 81, 115, 83, 84, 109, 86, - /* 1250 */ 115, 115, 77, 115, 115, 115, 81, 94, 83, 84, - /* 1260 */ 115, 86, 99, 100, 77, 102, 115, 115, 81, 94, - /* 1270 */ 83, 84, 109, 86, 99, 100, 77, 102, 115, 115, - /* 1280 */ 81, 94, 83, 84, 109, 86, 99, 100, 115, 102, - /* 1290 */ 115, 115, 115, 94, 115, 115, 109, 115, 99, 100, - /* 1300 */ 77, 102, 115, 115, 81, 115, 83, 84, 115, 86, - /* 1310 */ 115, 112, 115, 115, 115, 115, 115, 94, 115, 115, - /* 1320 */ 115, 115, 99, 100, 77, 102, 115, 115, 81, 115, - /* 1330 */ 83, 84, 115, 86, 115, 115, 77, 115, 115, 115, - /* 1340 */ 81, 94, 83, 84, 115, 86, 99, 100, 77, 102, - /* 1350 */ 115, 115, 81, 94, 83, 84, 115, 86, 99, 100, - /* 1360 */ 77, 102, 115, 115, 81, 94, 83, 84, 115, 86, - /* 1370 */ 99, 100, 115, 102, 115, 115, 115, 94, 115, 115, - /* 1380 */ 115, 82, 99, 100, 77, 102, 87, 115, 81, 115, - /* 1390 */ 83, 84, 115, 86, 115, 96, 97, 98, 115, 115, - /* 1400 */ 115, 94, 115, 115, 115, 115, 99, 100, 77, 102, - /* 1410 */ 115, 115, 81, 115, 83, 84, 115, 86, 115, 115, - /* 1420 */ 77, 115, 115, 115, 81, 94, 83, 84, 115, 86, - /* 1430 */ 99, 100, 77, 102, 115, 115, 81, 94, 83, 84, - /* 1440 */ 115, 86, 99, 100, 77, 102, 115, 115, 81, 94, - /* 1450 */ 83, 84, 115, 86, 99, 100, 115, 102, 115, 115, - /* 1460 */ 115, 94, 115, 115, 115, 82, 99, 100, 77, 102, - /* 1470 */ 87, 115, 81, 115, 83, 84, 115, 86, 115, 96, - /* 1480 */ 97, 98, 115, 115, 115, 94, 115, 115, 115, 115, - /* 1490 */ 99, 100, 77, 102, 115, 115, 81, 115, 83, 84, - /* 1500 */ 115, 86, 115, 115, 77, 115, 115, 115, 81, 94, - /* 1510 */ 83, 84, 115, 86, 99, 100, 77, 102, 115, 115, - /* 1520 */ 81, 94, 83, 84, 115, 86, 99, 100, 77, 102, - /* 1530 */ 115, 115, 81, 94, 83, 84, 115, 86, 99, 100, - /* 1540 */ 115, 102, 115, 115, 115, 94, 115, 115, 115, 115, - /* 1550 */ 99, 100, 77, 102, 115, 115, 81, 115, 83, 84, - /* 1560 */ 115, 86, 115, 115, 115, 115, 115, 115, 115, 94, - /* 1570 */ 115, 115, 115, 115, 99, 100, 77, 102, 115, 115, - /* 1580 */ 81, 115, 83, 84, 115, 86, 115, 115, 77, 115, - /* 1590 */ 115, 115, 81, 94, 83, 84, 115, 86, 99, 100, - /* 1600 */ 77, 102, 115, 115, 81, 94, 83, 84, 115, 86, - /* 1610 */ 99, 100, 77, 102, 115, 115, 81, 94, 83, 84, - /* 1620 */ 115, 86, 99, 100, 115, 102, 115, 115, 115, 94, - /* 1630 */ 115, 115, 115, 115, 99, 100, 77, 102, 115, 115, - /* 1640 */ 81, 115, 83, 84, 115, 86, 115, 115, 115, 115, - /* 1650 */ 115, 115, 115, 94, 115, 115, 115, 115, 99, 100, - /* 1660 */ 77, 102, 115, 115, 81, 115, 83, 84, 115, 86, - /* 1670 */ 115, 115, 77, 115, 115, 115, 81, 94, 83, 84, - /* 1680 */ 115, 86, 99, 100, 77, 102, 115, 115, 81, 94, - /* 1690 */ 83, 84, 115, 86, 99, 100, 77, 102, 115, 115, - /* 1700 */ 81, 94, 83, 84, 115, 86, 99, 100, 115, 102, - /* 1710 */ 115, 115, 115, 94, 115, 115, 115, 115, 99, 100, - /* 1720 */ 77, 102, 115, 115, 81, 115, 83, 84, 115, 86, - /* 1730 */ 115, 115, 115, 115, 115, 115, 115, 94, 115, 115, - /* 1740 */ 115, 115, 99, 100, 77, 102, 115, 115, 81, 115, - /* 1750 */ 83, 115, 115, 86, 77, 115, 115, 115, 81, 115, - /* 1760 */ 83, 94, 115, 86, 115, 115, 99, 100, 115, 102, - /* 1770 */ 115, 94, 115, 115, 77, 115, 99, 100, 81, 102, - /* 1780 */ 83, 77, 115, 86, 115, 81, 115, 83, 8, 115, - /* 1790 */ 86, 94, 12, 115, 115, 115, 99, 100, 115, 102, - /* 1800 */ 115, 115, 115, 99, 100, 77, 102, 115, 28, 81, - /* 1810 */ 115, 83, 115, 115, 86, 77, 115, 115, 115, 81, - /* 1820 */ 115, 83, 115, 115, 86, 115, 115, 99, 100, 115, - /* 1830 */ 102, 115, 115, 115, 115, 115, 115, 99, 100, 115, - /* 1840 */ 102, 115, 115, 115, 115, 115, 115, 115, 115, 115, - /* 1850 */ 70, 71, 72, + /* 940 */ 68, 69, 92, 12, 82, 14, 15, 114, 114, 18, + /* 950 */ 114, 20, 12, 13, 104, 15, 25, 95, 114, 28, + /* 960 */ 29, 92, 12, 32, 14, 15, 114, 27, 18, 114, + /* 970 */ 20, 109, 114, 104, 114, 25, 82, 46, 28, 29, + /* 980 */ 49, 50, 32, 52, 114, 92, 55, 56, 57, 95, + /* 990 */ 114, 82, 114, 114, 114, 114, 46, 104, 92, 49, + /* 1000 */ 50, 70, 52, 109, 95, 55, 56, 114, 114, 12, + /* 1010 */ 104, 14, 15, 114, 82, 18, 114, 20, 109, 87, + /* 1020 */ 70, 114, 25, 114, 114, 28, 29, 95, 12, 32, + /* 1030 */ 14, 15, 114, 114, 18, 114, 20, 114, 92, 92, + /* 1040 */ 114, 25, 114, 46, 28, 29, 49, 50, 32, 52, + /* 1050 */ 104, 104, 55, 56, 114, 114, 114, 92, 92, 114, + /* 1060 */ 114, 114, 46, 114, 114, 49, 50, 70, 52, 104, + /* 1070 */ 104, 55, 56, 114, 114, 12, 114, 14, 15, 114, + /* 1080 */ 114, 18, 114, 20, 114, 114, 70, 114, 25, 114, + /* 1090 */ 114, 28, 29, 114, 12, 32, 14, 15, 114, 114, + /* 1100 */ 18, 114, 20, 114, 114, 114, 114, 25, 114, 46, + /* 1110 */ 28, 29, 49, 50, 32, 52, 114, 114, 55, 56, + /* 1120 */ 114, 114, 114, 114, 114, 114, 114, 114, 46, 114, + /* 1130 */ 114, 49, 50, 70, 52, 114, 114, 55, 56, 114, + /* 1140 */ 114, 12, 114, 14, 15, 114, 114, 18, 114, 20, + /* 1150 */ 114, 114, 70, 114, 25, 114, 114, 28, 29, 114, + /* 1160 */ 12, 32, 14, 15, 114, 114, 18, 114, 20, 114, + /* 1170 */ 114, 114, 114, 25, 114, 46, 28, 29, 49, 50, + /* 1180 */ 32, 52, 114, 114, 55, 56, 114, 114, 114, 114, + /* 1190 */ 114, 114, 114, 114, 46, 114, 114, 49, 50, 70, + /* 1200 */ 52, 114, 114, 55, 56, 114, 114, 12, 114, 14, + /* 1210 */ 15, 114, 114, 18, 114, 20, 114, 114, 70, 114, + /* 1220 */ 25, 114, 114, 28, 29, 114, 12, 32, 14, 15, + /* 1230 */ 114, 114, 18, 114, 20, 114, 114, 114, 114, 25, + /* 1240 */ 114, 46, 28, 29, 49, 50, 32, 52, 114, 114, + /* 1250 */ 55, 56, 114, 114, 114, 114, 114, 114, 114, 114, + /* 1260 */ 46, 114, 114, 49, 50, 70, 52, 114, 114, 55, + /* 1270 */ 114, 114, 114, 12, 114, 14, 15, 114, 114, 18, + /* 1280 */ 114, 20, 82, 114, 70, 114, 25, 87, 114, 28, + /* 1290 */ 29, 114, 114, 32, 114, 95, 96, 97, 114, 114, + /* 1300 */ 114, 114, 8, 114, 114, 114, 12, 46, 114, 114, + /* 1310 */ 49, 50, 18, 52, 20, 82, 55, 77, 114, 25, + /* 1320 */ 87, 81, 28, 83, 84, 114, 86, 114, 95, 96, + /* 1330 */ 97, 70, 114, 114, 94, 114, 114, 114, 98, 99, + /* 1340 */ 114, 101, 114, 114, 114, 114, 114, 114, 114, 114, + /* 1350 */ 110, 111, 114, 77, 114, 114, 114, 81, 114, 83, + /* 1360 */ 84, 114, 86, 114, 70, 71, 72, 114, 114, 114, + /* 1370 */ 94, 114, 114, 114, 98, 99, 114, 101, 114, 114, + /* 1380 */ 114, 114, 114, 114, 108, 77, 114, 114, 114, 81, + /* 1390 */ 114, 83, 84, 114, 86, 114, 114, 114, 114, 114, + /* 1400 */ 114, 114, 94, 114, 77, 114, 98, 99, 81, 101, + /* 1410 */ 83, 84, 114, 86, 114, 114, 114, 114, 114, 111, + /* 1420 */ 114, 94, 114, 114, 114, 98, 99, 114, 101, 114, + /* 1430 */ 114, 114, 114, 114, 114, 108, 114, 77, 114, 114, + /* 1440 */ 114, 81, 114, 83, 84, 85, 86, 114, 114, 114, + /* 1450 */ 114, 114, 114, 114, 94, 114, 114, 114, 98, 99, + /* 1460 */ 114, 101, 77, 114, 114, 114, 81, 114, 83, 84, + /* 1470 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, + /* 1480 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, + /* 1490 */ 114, 83, 84, 108, 86, 114, 114, 114, 114, 114, + /* 1500 */ 114, 114, 94, 114, 77, 114, 98, 99, 81, 101, + /* 1510 */ 83, 84, 114, 86, 114, 114, 108, 114, 114, 114, + /* 1520 */ 114, 94, 114, 77, 114, 98, 99, 81, 101, 83, + /* 1530 */ 84, 114, 86, 114, 114, 114, 114, 114, 114, 8, + /* 1540 */ 94, 114, 114, 12, 98, 99, 77, 101, 114, 18, + /* 1550 */ 81, 20, 83, 84, 114, 86, 25, 114, 114, 28, + /* 1560 */ 114, 114, 114, 94, 114, 114, 114, 98, 99, 77, + /* 1570 */ 101, 114, 114, 81, 114, 83, 84, 114, 86, 114, + /* 1580 */ 114, 114, 114, 114, 114, 114, 94, 114, 77, 114, + /* 1590 */ 98, 99, 81, 101, 83, 84, 114, 86, 114, 114, + /* 1600 */ 114, 70, 71, 72, 114, 94, 114, 77, 114, 98, + /* 1610 */ 99, 81, 101, 83, 84, 114, 86, 114, 114, 114, + /* 1620 */ 114, 114, 114, 114, 94, 114, 114, 114, 98, 99, + /* 1630 */ 77, 101, 114, 114, 81, 114, 83, 84, 114, 86, + /* 1640 */ 114, 114, 114, 114, 114, 114, 114, 94, 114, 114, + /* 1650 */ 114, 98, 99, 77, 101, 114, 114, 81, 114, 83, + /* 1660 */ 84, 114, 86, 114, 114, 114, 114, 114, 114, 114, + /* 1670 */ 94, 114, 77, 114, 98, 99, 81, 101, 83, 84, + /* 1680 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, + /* 1690 */ 114, 77, 114, 98, 99, 81, 101, 83, 84, 114, + /* 1700 */ 86, 114, 114, 114, 114, 114, 114, 114, 94, 114, + /* 1710 */ 114, 114, 98, 99, 77, 101, 114, 114, 81, 114, + /* 1720 */ 83, 84, 114, 86, 114, 114, 114, 114, 114, 114, + /* 1730 */ 114, 94, 114, 114, 114, 98, 99, 77, 101, 114, + /* 1740 */ 114, 81, 114, 83, 84, 114, 86, 114, 114, 114, + /* 1750 */ 114, 114, 114, 114, 94, 114, 77, 114, 98, 99, + /* 1760 */ 81, 101, 83, 84, 114, 86, 114, 114, 114, 114, + /* 1770 */ 114, 114, 114, 94, 114, 77, 114, 98, 99, 81, + /* 1780 */ 101, 83, 84, 114, 86, 114, 114, 114, 114, 114, + /* 1790 */ 114, 114, 94, 114, 114, 114, 98, 99, 77, 101, + /* 1800 */ 114, 114, 81, 114, 83, 84, 114, 86, 114, 114, + /* 1810 */ 114, 114, 114, 114, 114, 94, 114, 114, 114, 98, + /* 1820 */ 99, 77, 101, 114, 114, 81, 114, 83, 84, 114, + /* 1830 */ 86, 114, 114, 114, 114, 114, 114, 114, 94, 114, + /* 1840 */ 77, 114, 98, 99, 81, 101, 83, 84, 114, 86, + /* 1850 */ 114, 114, 114, 114, 114, 114, 114, 94, 114, 77, + /* 1860 */ 114, 98, 99, 81, 101, 83, 84, 114, 86, 114, + /* 1870 */ 114, 114, 114, 114, 114, 114, 94, 114, 114, 114, + /* 1880 */ 98, 99, 77, 101, 114, 114, 81, 114, 83, 84, + /* 1890 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, + /* 1900 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, + /* 1910 */ 114, 83, 84, 114, 86, 114, 114, 114, 114, 114, + /* 1920 */ 114, 114, 94, 114, 77, 114, 98, 99, 81, 101, + /* 1930 */ 83, 84, 114, 86, 114, 114, 114, 114, 114, 114, + /* 1940 */ 114, 94, 114, 77, 114, 98, 99, 81, 101, 83, + /* 1950 */ 84, 114, 86, 114, 114, 114, 114, 114, 114, 114, + /* 1960 */ 94, 114, 114, 114, 98, 99, 77, 101, 114, 114, + /* 1970 */ 81, 114, 83, 84, 114, 86, 114, 114, 114, 114, + /* 1980 */ 114, 114, 114, 94, 114, 114, 114, 98, 99, 77, + /* 1990 */ 101, 114, 114, 81, 114, 83, 84, 114, 86, 114, + /* 2000 */ 114, 114, 114, 114, 114, 114, 94, 114, 77, 114, + /* 2010 */ 98, 99, 81, 101, 83, 84, 114, 86, 114, 114, + /* 2020 */ 114, 114, 114, 114, 114, 94, 114, 77, 114, 98, + /* 2030 */ 99, 81, 101, 83, 84, 114, 86, 114, 114, 114, + /* 2040 */ 114, 114, 114, 114, 94, 114, 114, 114, 98, 99, + /* 2050 */ 77, 101, 114, 114, 81, 114, 83, 114, 114, 86, + /* 2060 */ 114, 114, 114, 114, 114, 114, 114, 94, 114, 114, + /* 2070 */ 114, 98, 99, 77, 101, 114, 114, 81, 114, 83, + /* 2080 */ 114, 114, 86, 114, 114, 114, 114, 114, 114, 114, + /* 2090 */ 94, 114, 77, 114, 98, 99, 81, 101, 83, 114, + /* 2100 */ 114, 86, 114, 114, 114, 114, 114, 114, 114, 94, + /* 2110 */ 114, 77, 114, 98, 99, 81, 101, 83, 114, 114, + /* 2120 */ 86, 114, 77, 114, 114, 114, 81, 114, 83, 114, + /* 2130 */ 114, 86, 98, 99, 114, 101, 114, 114, 114, 114, + /* 2140 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, + /* 2150 */ 114, 83, 77, 114, 86, 114, 81, 114, 83, 114, + /* 2160 */ 114, 86, 114, 114, 114, 114, 98, 99, 114, 101, + /* 2170 */ 114, 114, 114, 98, 99, 77, 101, 114, 114, 81, + /* 2180 */ 114, 83, 114, 114, 86, 114, 114, 114, 114, 77, + /* 2190 */ 114, 114, 114, 81, 114, 83, 98, 99, 86, 101, + /* 2200 */ 77, 114, 114, 114, 81, 114, 83, 114, 114, 86, + /* 2210 */ 98, 99, 114, 101, 114, 114, 114, 114, 114, 114, + /* 2220 */ 114, 98, 99, 114, 101, ); - const YY_SHIFT_USE_DFLT = -29; - const YY_SHIFT_MAX = 224; + const YY_SHIFT_USE_DFLT = -30; + const YY_SHIFT_MAX = 223; static public $yy_shift_ofst = array( - /* 0 */ 43, 1068, 931, 931, 990, 1080, 1068, 990, 1023, 990, - /* 10 */ 1023, 990, 1035, 939, 990, 990, 990, 990, 990, 990, - /* 20 */ 990, 990, 990, 990, 990, 990, 990, 990, 990, 990, - /* 30 */ 990, 990, 990, 990, 990, 990, 990, 990, 990, 978, - /* 40 */ 978, 1113, 1125, 1125, 1125, 1125, 1125, 1158, 1125, 68, - /* 50 */ 137, -1, 250, 250, 828, 627, 539, 583, 495, 671, - /* 60 */ 784, 715, 382, 451, 181, 294, 338, 872, 872, 872, + /* 0 */ 1, 1082, 997, 997, 1063, 1016, 950, 1063, 1082, 997, + /* 10 */ 1148, 1148, 997, 931, 997, 997, 997, 997, 997, 997, + /* 20 */ 997, 997, 997, 997, 997, 997, 997, 997, 997, 997, + /* 30 */ 997, 997, 997, 997, 997, 997, 997, 997, 997, 1129, + /* 40 */ 1129, 1195, 1214, 1214, 1214, 1261, 1214, 1214, 1214, -1, + /* 50 */ 137, 68, 319, 319, 407, 250, 181, 363, 451, 784, + /* 60 */ 828, 696, 740, 652, 583, 495, 539, 872, 872, 872, /* 70 */ 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, - /* 80 */ 872, 872, 872, 43, 540, 71, 253, 129, 95, 304, - /* 90 */ 163, 163, 163, 1780, 11, 415, 173, 244, 331, 333, - /* 100 */ 419, 484, 223, 223, 264, 223, 747, 353, 223, 223, - /* 110 */ 264, 223, 223, 486, 578, 578, 223, 223, 702, 683, - /* 120 */ 723, 710, 702, 702, 683, 213, 127, 140, 144, 288, - /* 130 */ -9, 41, 196, 372, 286, 749, 663, 619, 705, 748, - /* 140 */ 706, 337, 337, 337, 454, 416, 529, 575, 574, 531, - /* 150 */ 337, 572, 530, 337, 460, 676, 710, 683, 754, 751, - /* 160 */ 523, 683, 683, 751, -29, -29, -29, -29, -29, -29, - /* 170 */ 786, 70, 178, 180, 209, 252, -28, 214, 273, 348, - /* 180 */ 420, 164, 440, 622, 652, 714, 714, 238, 7, 291, - /* 190 */ 225, 96, 35, 665, 523, 576, 552, 541, 532, 518, - /* 200 */ 577, 587, 640, 642, 588, 586, 607, 615, 527, 522, - /* 210 */ 387, 373, 439, 424, 421, 394, 398, 443, 412, 476, - /* 220 */ 526, 507, 466, 445, 434, + /* 80 */ 872, 872, 872, 1, 1531, 69, 141, 172, 221, 414, + /* 90 */ 460, 460, 460, 1294, 40, 59, 102, 214, 323, 247, + /* 100 */ 321, 215, 312, 312, 312, 33, 312, 312, 356, 312, + /* 110 */ 312, 575, 33, 312, 466, 356, 312, 509, 332, 576, + /* 120 */ 332, 483, 591, 483, 483, 320, 940, 218, 283, 195, + /* 130 */ 151, 242, 399, 398, 170, 126, 286, 354, 397, 220, + /* 140 */ 358, 358, 358, 442, 358, 400, 444, 486, 529, 488, + /* 150 */ 487, 441, 358, 440, 576, 332, 332, 332, 660, 693, + /* 160 */ 699, 660, 457, -30, -30, -30, -30, -30, -30, -29, + /* 170 */ 292, 139, 106, 78, -26, 9, 71, 37, 534, 179, + /* 180 */ 308, 621, 231, 443, 163, 37, 492, 510, 498, 519, + /* 190 */ 565, 533, 578, 322, 672, 478, 457, 685, 489, 490, + /* 200 */ 538, 574, 216, 200, 104, 197, 464, 434, 641, 622, + /* 210 */ 508, 654, 364, 26, 310, 554, 579, 616, 536, 120, + /* 220 */ 552, 542, 531, 596, ); - const YY_REDUCE_USE_DFLT = -94; - const YY_REDUCE_MAX = 169; + const YY_REDUCE_USE_DFLT = -104; + const YY_REDUCE_MAX = 168; static public $yy_reduce_ofst = array( - /* 0 */ 44, 1115, 376, -76, 1187, 709, 1199, 1175, 64, 1139, - /* 10 */ 175, 1163, -7, 1343, 1355, 1391, 1415, 1427, 1439, 1283, - /* 20 */ 1259, 1223, 1451, 1247, 1331, 1307, 1271, 1367, 1607, 1643, - /* 30 */ 1499, 1523, 1535, 1583, 1559, 1511, 1475, 1595, 1619, 1677, - /* 40 */ 1667, 1697, 1728, 598, 1704, 554, 422, 221, 1738, 1299, - /* 50 */ 1383, 860, 860, 916, 630, 630, 630, 630, 630, 630, - /* 60 */ 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, - /* 70 */ 630, 630, 630, 630, 630, 630, 630, 630, 630, 630, - /* 80 */ 630, 630, 630, 20, 1, 384, 381, -58, -93, -2, - /* 90 */ 933, 915, 992, 314, -5, 824, 306, 312, 80, 306, - /* 100 */ 758, 312, 869, 793, 662, 237, 80, 171, 699, 696, - /* 110 */ 688, 961, 952, 870, 870, 874, 949, 870, 873, 260, - /* 120 */ 935, 300, 888, 717, 80, 625, 616, 616, 616, 616, - /* 130 */ 616, 616, 633, 538, 538, 538, 538, 538, 538, 538, - /* 140 */ 538, 573, 573, 573, 538, 538, 538, 538, 538, 538, - /* 150 */ 573, 538, 538, 573, 596, 613, 716, 637, 687, 707, - /* 160 */ 684, 637, 637, 719, 657, 718, -84, 255, 219, 58, + /* 0 */ -22, 1240, 1276, 1408, 63, 245, -5, 175, 1308, 1327, + /* 10 */ 1360, 577, 1385, 1595, 1576, 1614, 1637, 1721, 1698, 1553, + /* 20 */ 1679, 1660, 1744, 1446, 1427, 1469, 1511, 1763, 1530, 1492, + /* 30 */ 1931, 1950, 1866, 1912, 1828, 1805, 1847, 1889, 1782, 1973, + /* 40 */ 1996, 2015, 2068, 2045, 2112, 2034, 2123, 2098, 2075, 183, + /* 50 */ 585, 1200, 585, 1233, 278, 278, 278, 278, 278, 278, + /* 60 */ 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, + /* 70 */ 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, + /* 80 */ 278, 278, 278, -62, 8, 932, 180, -6, 85, 582, + /* 90 */ 862, 909, 894, 474, 223, 268, 566, 268, 671, 329, + /* 100 */ 715, 671, 287, 946, 49, 241, 825, 850, 906, 893, + /* 110 */ 869, 329, 530, 966, 947, 825, 965, 825, 329, 303, + /* 120 */ -103, 573, 514, 382, 470, -81, -81, -81, 330, -81, + /* 130 */ -81, -81, 491, 491, 491, 491, 491, 491, 491, 511, + /* 140 */ 526, 526, 526, 491, 526, 491, 491, 491, 491, 491, + /* 150 */ 491, 491, 526, 491, 543, 593, 593, 593, 613, 623, + /* 160 */ 589, 544, 537, 545, 550, 524, 555, 500, 334, ); static public $yyExpectedTokens = array( - /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 12, 28, ), - /* 1 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 2 */ array(12, 14, 15, 17, 19, 21, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 3 */ array(12, 14, 15, 17, 19, 21, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 4 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 5 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 6 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 7 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 8 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 9 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 10 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 11 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 12 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 13 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 57, 70, ), - /* 14 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 15 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 16 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 17 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 18 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 19 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 20 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 21 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 22 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 23 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 24 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 25 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 26 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 27 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 28 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 29 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 30 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 31 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 32 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 33 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 34 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 35 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 36 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 37 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 38 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 39 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 40 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 41 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), - /* 42 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 43 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 44 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 45 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 46 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 47 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 48 */ array(12, 14, 15, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), - /* 49 */ array(1, 13, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 50 */ array(1, 20, 25, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 51 */ array(1, 13, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 52 */ array(1, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 53 */ array(1, 20, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 0 */ array(3, 4, 5, 6, 7, 8, 9, 12, 18, 20, 25, 28, ), + /* 1 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 2 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 3 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 4 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 5 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 6 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 7 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 8 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 9 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 10 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 11 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 12 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 13 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 57, 70, ), + /* 14 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 15 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 16 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 17 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 18 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 19 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 20 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 21 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 22 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 23 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 24 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 25 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 26 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 27 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 28 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 29 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 30 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 31 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 32 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 33 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 34 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 35 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 36 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 37 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 38 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 39 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 40 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 41 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 56, 70, ), + /* 42 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), + /* 43 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), + /* 44 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), + /* 45 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), + /* 46 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), + /* 47 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), + /* 48 */ array(12, 14, 15, 18, 20, 25, 28, 29, 32, 46, 49, 50, 52, 55, 70, ), + /* 49 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 50 */ array(1, 13, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 51 */ array(1, 19, 24, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 52 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 53 */ array(1, 19, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 54 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 55 */ array(1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 56 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 55 */ array(1, 21, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 56 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 57 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 58 */ array(1, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 58 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 59 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 71, ), - /* 60 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 61 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 62 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 63 */ array(1, 22, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 64 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 65 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 66 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 60 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 47, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 61 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 62 */ array(1, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 63 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 64 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 65 */ array(1, 13, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), + /* 66 */ array(1, 2, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 67 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 68 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 69 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), @@ -719,148 +793,148 @@ static public $yy_action = array( /* 80 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 81 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), /* 82 */ array(1, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, ), - /* 83 */ array(3, 4, 5, 6, 7, 8, 9, 12, 28, ), - /* 84 */ array(8, 12, 28, 70, 71, 72, ), - /* 85 */ array(1, 13, 18, 20, 46, 53, ), - /* 86 */ array(1, 13, 18, 20, ), + /* 83 */ array(3, 4, 5, 6, 7, 8, 9, 12, 18, 20, 25, 28, ), + /* 84 */ array(8, 12, 18, 20, 25, 28, 70, 71, 72, ), + /* 85 */ array(1, 13, 17, 19, 46, 53, ), + /* 86 */ array(1, 13, 17, 19, ), /* 87 */ array(14, 15, 55, ), - /* 88 */ array(18, 51, 56, ), - /* 89 */ array(1, 20, ), - /* 90 */ array(2, 20, ), - /* 91 */ array(2, 20, ), - /* 92 */ array(2, 20, ), - /* 93 */ array(8, 12, 28, 70, 71, 72, ), + /* 88 */ array(17, 51, 56, ), + /* 89 */ array(1, 19, ), + /* 90 */ array(2, 19, ), + /* 91 */ array(2, 19, ), + /* 92 */ array(2, 19, ), + /* 93 */ array(8, 12, 18, 20, 25, 28, 70, 71, 72, ), /* 94 */ array(4, 5, 6, 9, 10, 11, ), - /* 95 */ array(12, 15, 16, 23, ), - /* 96 */ array(12, 15, 16, 54, ), - /* 97 */ array(13, 20, 23, ), - /* 98 */ array(16, 18, 53, ), - /* 99 */ array(12, 15, 54, ), - /* 100 */ array(13, 20, 45, ), - /* 101 */ array(13, 20, 23, ), + /* 95 */ array(12, 15, 16, 54, ), + /* 96 */ array(12, 15, 16, 22, ), + /* 97 */ array(12, 15, 54, ), + /* 98 */ array(13, 19, 22, ), + /* 99 */ array(16, 17, 53, ), + /* 100 */ array(13, 19, 45, ), + /* 101 */ array(13, 19, 22, ), /* 102 */ array(12, 15, ), /* 103 */ array(12, 15, ), - /* 104 */ array(14, 15, ), - /* 105 */ array(12, 15, ), - /* 106 */ array(18, 53, ), + /* 104 */ array(12, 15, ), + /* 105 */ array(14, 15, ), + /* 106 */ array(12, 15, ), /* 107 */ array(12, 15, ), /* 108 */ array(12, 15, ), /* 109 */ array(12, 15, ), - /* 110 */ array(14, 15, ), - /* 111 */ array(12, 15, ), - /* 112 */ array(12, 15, ), + /* 110 */ array(12, 15, ), + /* 111 */ array(17, 53, ), + /* 112 */ array(14, 15, ), /* 113 */ array(12, 15, ), /* 114 */ array(12, 15, ), /* 115 */ array(12, 15, ), /* 116 */ array(12, 15, ), /* 117 */ array(12, 15, ), - /* 118 */ array(20, ), - /* 119 */ array(18, ), - /* 120 */ array(20, ), - /* 121 */ array(14, ), - /* 122 */ array(20, ), - /* 123 */ array(20, ), - /* 124 */ array(18, ), - /* 125 */ array(15, 17, 19, 21, ), + /* 118 */ array(17, ), + /* 119 */ array(14, ), + /* 120 */ array(17, ), + /* 121 */ array(19, ), + /* 122 */ array(19, ), + /* 123 */ array(19, ), + /* 124 */ array(19, ), + /* 125 */ array(12, 13, 15, 27, ), /* 126 */ array(12, 13, 15, 27, ), - /* 127 */ array(12, 13, 15, 27, ), - /* 128 */ array(12, 15, 16, ), + /* 127 */ array(12, 13, 15, ), + /* 128 */ array(12, 14, 15, ), /* 129 */ array(12, 13, 15, ), - /* 130 */ array(12, 15, 54, ), - /* 131 */ array(12, 13, 15, ), - /* 132 */ array(12, 14, 15, ), - /* 133 */ array(13, 20, ), - /* 134 */ array(13, 20, ), - /* 135 */ array(13, 20, ), - /* 136 */ array(13, 20, ), - /* 137 */ array(13, 20, ), - /* 138 */ array(13, 20, ), - /* 139 */ array(13, 20, ), - /* 140 */ array(13, 20, ), + /* 130 */ array(12, 15, 16, ), + /* 131 */ array(12, 15, 54, ), + /* 132 */ array(13, 19, ), + /* 133 */ array(13, 19, ), + /* 134 */ array(13, 19, ), + /* 135 */ array(13, 19, ), + /* 136 */ array(13, 19, ), + /* 137 */ array(13, 19, ), + /* 138 */ array(13, 19, ), + /* 139 */ array(12, 46, ), + /* 140 */ array(51, 56, ), /* 141 */ array(51, 56, ), /* 142 */ array(51, 56, ), - /* 143 */ array(51, 56, ), - /* 144 */ array(13, 20, ), - /* 145 */ array(13, 20, ), - /* 146 */ array(13, 20, ), - /* 147 */ array(13, 20, ), - /* 148 */ array(13, 20, ), - /* 149 */ array(13, 20, ), - /* 150 */ array(51, 56, ), - /* 151 */ array(13, 20, ), - /* 152 */ array(13, 20, ), - /* 153 */ array(51, 56, ), - /* 154 */ array(12, 46, ), - /* 155 */ array(2, ), - /* 156 */ array(14, ), - /* 157 */ array(18, ), - /* 158 */ array(10, ), - /* 159 */ array(20, ), - /* 160 */ array(46, ), - /* 161 */ array(18, ), - /* 162 */ array(18, ), - /* 163 */ array(20, ), + /* 143 */ array(13, 19, ), + /* 144 */ array(51, 56, ), + /* 145 */ array(13, 19, ), + /* 146 */ array(13, 19, ), + /* 147 */ array(13, 19, ), + /* 148 */ array(13, 19, ), + /* 149 */ array(13, 19, ), + /* 150 */ array(13, 19, ), + /* 151 */ array(13, 19, ), + /* 152 */ array(51, 56, ), + /* 153 */ array(13, 19, ), + /* 154 */ array(14, ), + /* 155 */ array(17, ), + /* 156 */ array(17, ), + /* 157 */ array(17, ), + /* 158 */ array(19, ), + /* 159 */ array(10, ), + /* 160 */ array(2, ), + /* 161 */ array(19, ), + /* 162 */ array(46, ), + /* 163 */ array(), /* 164 */ array(), /* 165 */ array(), /* 166 */ array(), /* 167 */ array(), /* 168 */ array(), - /* 169 */ array(), - /* 170 */ array(16, 26, 46, 53, ), - /* 171 */ array(13, 20, 46, 53, ), - /* 172 */ array(12, 14, 15, 29, ), - /* 173 */ array(46, 51, 53, 57, ), + /* 169 */ array(46, 51, 53, 57, ), + /* 170 */ array(12, 14, 15, 29, ), + /* 171 */ array(16, 26, 46, 53, ), + /* 172 */ array(13, 19, 46, 53, ), + /* 173 */ array(13, 19, 45, ), /* 174 */ array(27, 46, 53, ), - /* 175 */ array(13, 20, 45, ), - /* 176 */ array(30, 57, ), - /* 177 */ array(15, 54, ), - /* 178 */ array(23, 71, ), - /* 179 */ array(2, 16, ), - /* 180 */ array(13, 45, ), - /* 181 */ array(27, 45, ), - /* 182 */ array(15, 29, ), - /* 183 */ array(16, 51, ), - /* 184 */ array(22, 30, ), + /* 175 */ array(2, 16, ), + /* 176 */ array(27, 45, ), + /* 177 */ array(46, 53, ), + /* 178 */ array(16, 51, ), + /* 179 */ array(30, 57, ), + /* 180 */ array(15, 29, ), + /* 181 */ array(13, 45, ), + /* 182 */ array(22, 71, ), + /* 183 */ array(15, 54, ), + /* 184 */ array(21, 30, ), /* 185 */ array(46, 53, ), - /* 186 */ array(46, 53, ), + /* 186 */ array(51, ), /* 187 */ array(15, ), - /* 188 */ array(20, ), - /* 189 */ array(55, ), - /* 190 */ array(55, ), - /* 191 */ array(29, ), - /* 192 */ array(51, ), - /* 193 */ array(15, ), - /* 194 */ array(46, ), - /* 195 */ array(13, ), - /* 196 */ array(14, ), - /* 197 */ array(26, ), - /* 198 */ array(14, ), - /* 199 */ array(47, ), - /* 200 */ array(14, ), - /* 201 */ array(26, ), - /* 202 */ array(15, ), - /* 203 */ array(15, ), - /* 204 */ array(48, ), - /* 205 */ array(47, ), - /* 206 */ array(2, ), - /* 207 */ array(15, ), - /* 208 */ array(20, ), - /* 209 */ array(23, ), - /* 210 */ array(47, ), - /* 211 */ array(13, ), - /* 212 */ array(15, ), - /* 213 */ array(13, ), - /* 214 */ array(14, ), - /* 215 */ array(16, ), - /* 216 */ array(14, ), - /* 217 */ array(13, ), - /* 218 */ array(46, ), - /* 219 */ array(24, ), - /* 220 */ array(15, ), - /* 221 */ array(16, ), - /* 222 */ array(15, ), - /* 223 */ array(57, ), - /* 224 */ array(45, ), + /* 188 */ array(46, ), + /* 189 */ array(48, ), + /* 190 */ array(29, ), + /* 191 */ array(13, ), + /* 192 */ array(13, ), + /* 193 */ array(47, ), + /* 194 */ array(2, ), + /* 195 */ array(45, ), + /* 196 */ array(46, ), + /* 197 */ array(15, ), + /* 198 */ array(15, ), + /* 199 */ array(57, ), + /* 200 */ array(55, ), + /* 201 */ array(15, ), + /* 202 */ array(19, ), + /* 203 */ array(55, ), + /* 204 */ array(47, ), + /* 205 */ array(14, ), + /* 206 */ array(16, ), + /* 207 */ array(22, ), + /* 208 */ array(15, ), + /* 209 */ array(14, ), + /* 210 */ array(14, ), + /* 211 */ array(19, ), + /* 212 */ array(26, ), + /* 213 */ array(47, ), + /* 214 */ array(15, ), + /* 215 */ array(15, ), + /* 216 */ array(16, ), + /* 217 */ array(15, ), + /* 218 */ array(13, ), + /* 219 */ array(23, ), + /* 220 */ array(14, ), + /* 221 */ array(26, ), + /* 222 */ array(14, ), + /* 223 */ array(15, ), + /* 224 */ array(), /* 225 */ array(), /* 226 */ array(), /* 227 */ array(), @@ -993,55 +1067,49 @@ static public $yy_action = array( /* 354 */ array(), /* 355 */ array(), /* 356 */ array(), - /* 357 */ array(), - /* 358 */ array(), - /* 359 */ array(), - /* 360 */ array(), - /* 361 */ array(), ); static public $yy_default = array( - /* 0 */ 547, 530, 547, 547, 503, 547, 547, 503, 547, 503, - /* 10 */ 547, 503, 547, 547, 547, 547, 547, 547, 547, 547, - /* 20 */ 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, - /* 30 */ 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, - /* 40 */ 547, 547, 547, 547, 547, 547, 547, 547, 547, 547, - /* 50 */ 420, 547, 420, 420, 547, 547, 547, 547, 502, 547, - /* 60 */ 547, 547, 547, 547, 547, 547, 547, 453, 533, 532, - /* 70 */ 441, 422, 446, 445, 449, 450, 402, 429, 437, 426, - /* 80 */ 440, 531, 442, 362, 547, 461, 547, 547, 509, 420, - /* 90 */ 420, 420, 420, 547, 547, 547, 476, 454, 469, 476, - /* 100 */ 430, 454, 547, 547, 547, 476, 469, 547, 547, 547, - /* 110 */ 547, 547, 547, 547, 547, 547, 547, 547, 420, 506, - /* 120 */ 420, 547, 420, 420, 469, 547, 547, 547, 547, 547, - /* 130 */ 477, 547, 547, 547, 547, 547, 547, 547, 547, 547, - /* 140 */ 547, 496, 494, 495, 547, 547, 547, 547, 547, 547, - /* 150 */ 493, 547, 547, 474, 476, 436, 547, 507, 376, 546, - /* 160 */ 476, 510, 490, 546, 512, 512, 512, 512, 476, 476, - /* 170 */ 425, 461, 547, 461, 461, 430, 547, 547, 454, 488, - /* 180 */ 430, 430, 547, 459, 547, 461, 451, 547, 547, 547, - /* 190 */ 547, 547, 459, 547, 488, 547, 547, 547, 547, 547, - /* 200 */ 547, 547, 547, 547, 463, 547, 488, 547, 547, 454, - /* 210 */ 547, 547, 547, 547, 547, 425, 547, 547, 508, 427, - /* 220 */ 547, 547, 547, 547, 430, 379, 380, 538, 381, 382, - /* 230 */ 537, 544, 539, 527, 528, 540, 529, 543, 383, 418, - /* 240 */ 372, 452, 499, 513, 514, 498, 481, 480, 368, 367, - /* 250 */ 417, 411, 365, 364, 363, 424, 366, 412, 413, 414, - /* 260 */ 479, 489, 500, 536, 371, 501, 373, 377, 375, 374, - /* 270 */ 370, 497, 485, 369, 463, 483, 482, 472, 473, 484, - /* 280 */ 378, 456, 389, 439, 390, 438, 443, 388, 447, 387, - /* 290 */ 444, 492, 471, 491, 467, 393, 392, 434, 486, 468, - /* 300 */ 391, 448, 386, 525, 526, 435, 524, 523, 520, 521, - /* 310 */ 522, 518, 517, 504, 385, 542, 505, 541, 516, 515, - /* 320 */ 384, 395, 465, 458, 401, 511, 455, 519, 400, 460, - /* 330 */ 457, 419, 403, 410, 405, 534, 404, 415, 545, 428, - /* 340 */ 416, 399, 466, 432, 488, 397, 398, 462, 464, 396, - /* 350 */ 433, 487, 478, 431, 408, 409, 407, 470, 394, 475, - /* 360 */ 406, 535, + /* 0 */ 538, 521, 494, 494, 538, 538, 538, 538, 538, 494, + /* 10 */ 538, 538, 494, 538, 538, 538, 538, 538, 538, 538, + /* 20 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, + /* 30 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, + /* 40 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 538, + /* 50 */ 538, 411, 411, 411, 538, 538, 538, 538, 538, 538, + /* 60 */ 538, 538, 493, 538, 538, 538, 538, 440, 413, 441, + /* 70 */ 431, 524, 436, 396, 417, 444, 433, 432, 428, 522, + /* 80 */ 420, 523, 437, 357, 538, 452, 538, 538, 500, 411, + /* 90 */ 411, 411, 411, 538, 538, 467, 538, 467, 445, 460, + /* 100 */ 421, 445, 467, 538, 538, 538, 538, 538, 538, 538, + /* 110 */ 538, 460, 538, 538, 538, 538, 538, 538, 460, 538, + /* 120 */ 497, 411, 411, 411, 411, 538, 538, 538, 538, 538, + /* 130 */ 538, 468, 538, 538, 538, 538, 538, 538, 538, 467, + /* 140 */ 484, 465, 487, 538, 485, 538, 538, 538, 538, 538, + /* 150 */ 538, 538, 486, 538, 538, 498, 501, 481, 537, 371, + /* 160 */ 427, 537, 467, 503, 503, 503, 467, 503, 467, 452, + /* 170 */ 538, 416, 452, 421, 452, 479, 421, 452, 450, 538, + /* 180 */ 538, 421, 445, 538, 538, 442, 450, 538, 499, 454, + /* 190 */ 538, 538, 538, 538, 479, 421, 479, 538, 538, 538, + /* 200 */ 538, 538, 538, 538, 538, 538, 416, 445, 538, 538, + /* 210 */ 538, 538, 538, 538, 538, 538, 538, 538, 538, 418, + /* 220 */ 538, 538, 538, 538, 364, 398, 365, 463, 367, 473, + /* 230 */ 368, 488, 464, 475, 366, 363, 360, 492, 359, 358, + /* 240 */ 415, 491, 423, 394, 362, 361, 399, 372, 504, 505, + /* 250 */ 490, 375, 443, 404, 376, 378, 409, 403, 408, 377, + /* 260 */ 489, 374, 476, 393, 480, 370, 474, 419, 373, 424, + /* 270 */ 472, 397, 454, 536, 369, 531, 430, 429, 453, 425, + /* 280 */ 455, 456, 435, 434, 458, 379, 532, 469, 381, 382, + /* 290 */ 477, 533, 471, 470, 380, 483, 438, 509, 510, 511, + /* 300 */ 508, 507, 495, 496, 506, 512, 513, 459, 462, 439, + /* 310 */ 426, 517, 514, 515, 516, 466, 383, 527, 479, 530, + /* 320 */ 529, 526, 405, 406, 391, 525, 534, 535, 520, 519, + /* 330 */ 400, 401, 518, 528, 478, 402, 392, 407, 451, 386, + /* 340 */ 448, 457, 385, 461, 384, 422, 447, 387, 502, 390, + /* 350 */ 410, 389, 388, 482, 446, 449, 395, ); - const YYNOCODE = 116; + const YYNOCODE = 115; const YYSTACKDEPTH = 100; - const YYNSTATE = 362; - const YYNRULE = 185; + const YYNSTATE = 357; + const YYNRULE = 181; const YYERRORSYMBOL = 73; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; @@ -1075,9 +1143,9 @@ static public $yy_action = array( 'PHPSTARTTAG', 'PHPENDTAG', 'FAKEPHPSTARTTAG', 'XMLTAG', 'OTHER', 'LITERALSTART', 'LITERALEND', 'LITERAL', 'LDEL', 'RDEL', 'DOLLAR', 'ID', - 'EQUAL', 'FOREACH', 'PTR', 'IF', - 'SPACE', 'FOR', 'SEMICOLON', 'INCDEC', - 'TO', 'STEP', 'AS', 'APTR', + 'EQUAL', 'PTR', 'LDELIF', 'SPACE', + 'LDELFOR', 'SEMICOLON', 'INCDEC', 'TO', + 'STEP', 'LDELFOREACH', 'AS', 'APTR', 'LDELSLASH', 'INTEGER', 'COMMA', 'MATH', 'UNIMATH', 'ANDSYM', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', @@ -1094,12 +1162,12 @@ static public $yy_action = array( 'literal_element', 'value', 'attributes', 'variable', 'expr', 'ternary', 'varindexed', 'modifier', 'modparameters', 'statement', 'statements', 'optspace', - 'varvar', 'foraction', 'array', 'specialclose', - 'attribute', 'ifcond', 'lop', 'function', - 'doublequoted_with_quotes', 'static_class_access', 'object', 'arrayindex', - 'indexdef', 'varvarele', 'objectchain', 'objectelement', - 'method', 'params', 'modparameter', 'arrayelements', - 'arrayelement', 'doublequoted', 'doublequotedcontent', + 'varvar', 'foraction', 'array', 'attribute', + 'ifcond', 'lop', 'function', 'doublequoted_with_quotes', + 'static_class_access', 'object', 'arrayindex', 'indexdef', + 'varvarele', 'objectchain', 'objectelement', 'method', + 'params', 'modparameter', 'arrayelements', 'arrayelement', + 'doublequoted', 'doublequotedcontent', ); static public $yyRuleName = array( @@ -1135,159 +1203,155 @@ static public $yy_action = array( /* 29 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", /* 30 */ "smartytag ::= LDEL varindexed EQUAL ternary attributes RDEL", /* 31 */ "smartytag ::= LDEL ID attributes RDEL", - /* 32 */ "smartytag ::= LDEL FOREACH attributes RDEL", - /* 33 */ "smartytag ::= LDEL ID RDEL", - /* 34 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", - /* 35 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", - /* 36 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", - /* 37 */ "smartytag ::= LDEL IF SPACE expr RDEL", - /* 38 */ "smartytag ::= LDEL IF SPACE statement RDEL", - /* 39 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL", - /* 40 */ "foraction ::= EQUAL expr", - /* 41 */ "foraction ::= INCDEC", - /* 42 */ "smartytag ::= LDEL FOR SPACE statement TO expr attributes RDEL", - /* 43 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL", - /* 44 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", - /* 45 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 46 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", - /* 47 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 32 */ "smartytag ::= LDEL ID RDEL", + /* 33 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", + /* 34 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", + /* 35 */ "smartytag ::= LDEL ID PTR ID modifier modparameters attributes RDEL", + /* 36 */ "smartytag ::= LDELIF SPACE expr RDEL", + /* 37 */ "smartytag ::= LDELIF SPACE statement RDEL", + /* 38 */ "smartytag ::= LDELFOR SPACE statements SEMICOLON optspace expr SEMICOLON optspace DOLLAR varvar foraction RDEL", + /* 39 */ "foraction ::= EQUAL expr", + /* 40 */ "foraction ::= INCDEC", + /* 41 */ "smartytag ::= LDELFOR SPACE statement TO expr attributes RDEL", + /* 42 */ "smartytag ::= LDELFOR SPACE statement TO expr STEP expr RDEL", + /* 43 */ "smartytag ::= LDELFOREACH attributes RDEL", + /* 44 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar RDEL", + /* 45 */ "smartytag ::= LDELFOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 46 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar RDEL", + /* 47 */ "smartytag ::= LDELFOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", /* 48 */ "smartytag ::= LDELSLASH ID RDEL", - /* 49 */ "smartytag ::= LDELSLASH specialclose RDEL", - /* 50 */ "specialclose ::= IF", - /* 51 */ "specialclose ::= FOR", - /* 52 */ "specialclose ::= FOREACH", - /* 53 */ "smartytag ::= LDELSLASH ID attributes RDEL", - /* 54 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", - /* 55 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 56 */ "attributes ::= attributes attribute", - /* 57 */ "attributes ::= attribute", - /* 58 */ "attributes ::=", - /* 59 */ "attribute ::= SPACE ID EQUAL ID", - /* 60 */ "attribute ::= SPACE ID EQUAL expr", - /* 61 */ "attribute ::= SPACE ID EQUAL value", - /* 62 */ "attribute ::= SPACE ID EQUAL ternary", - /* 63 */ "attribute ::= SPACE ID", - /* 64 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 65 */ "statements ::= statement", - /* 66 */ "statements ::= statements COMMA statement", - /* 67 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 68 */ "expr ::= value", - /* 69 */ "expr ::= DOLLAR ID COLON ID", - /* 70 */ "expr ::= expr MATH value", - /* 71 */ "expr ::= expr UNIMATH value", - /* 72 */ "expr ::= expr ANDSYM value", - /* 73 */ "expr ::= array", - /* 74 */ "expr ::= expr modifier modparameters", - /* 75 */ "expr ::= expr ifcond expr", - /* 76 */ "expr ::= expr ISIN array", - /* 77 */ "expr ::= expr ISIN value", - /* 78 */ "expr ::= expr lop expr", - /* 79 */ "expr ::= expr ISDIVBY expr", - /* 80 */ "expr ::= expr ISNOTDIVBY expr", - /* 81 */ "expr ::= expr ISEVEN", - /* 82 */ "expr ::= expr ISNOTEVEN", - /* 83 */ "expr ::= expr ISEVENBY expr", - /* 84 */ "expr ::= expr ISNOTEVENBY expr", - /* 85 */ "expr ::= expr ISODD", - /* 86 */ "expr ::= expr ISNOTODD", - /* 87 */ "expr ::= expr ISODDBY expr", - /* 88 */ "expr ::= expr ISNOTODDBY expr", - /* 89 */ "expr ::= value INSTANCEOF ID", - /* 90 */ "expr ::= value INSTANCEOF value", - /* 91 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 92 */ "value ::= variable", - /* 93 */ "value ::= UNIMATH value", - /* 94 */ "value ::= NOT value", - /* 95 */ "value ::= TYPECAST value", - /* 96 */ "value ::= variable INCDEC", - /* 97 */ "value ::= INTEGER", - /* 98 */ "value ::= INTEGER DOT INTEGER", - /* 99 */ "value ::= ID", - /* 100 */ "value ::= function", - /* 101 */ "value ::= OPENP expr CLOSEP", - /* 102 */ "value ::= SINGLEQUOTESTRING", - /* 103 */ "value ::= doublequoted_with_quotes", - /* 104 */ "value ::= ID DOUBLECOLON static_class_access", - /* 105 */ "value ::= varindexed DOUBLECOLON static_class_access", - /* 106 */ "value ::= smartytag", - /* 107 */ "variable ::= varindexed", - /* 108 */ "variable ::= DOLLAR varvar AT ID", - /* 109 */ "variable ::= object", - /* 110 */ "variable ::= HATCH ID HATCH", - /* 111 */ "variable ::= HATCH variable HATCH", - /* 112 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 113 */ "arrayindex ::= arrayindex indexdef", - /* 114 */ "arrayindex ::=", - /* 115 */ "indexdef ::= DOT DOLLAR varvar", - /* 116 */ "indexdef ::= DOT DOLLAR varvar AT ID", - /* 117 */ "indexdef ::= DOT ID", - /* 118 */ "indexdef ::= DOT INTEGER", - /* 119 */ "indexdef ::= DOT LDEL expr RDEL", - /* 120 */ "indexdef ::= OPENB ID CLOSEB", - /* 121 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 122 */ "indexdef ::= OPENB expr CLOSEB", - /* 123 */ "indexdef ::= OPENB CLOSEB", - /* 124 */ "varvar ::= varvarele", - /* 125 */ "varvar ::= varvar varvarele", - /* 126 */ "varvarele ::= ID", - /* 127 */ "varvarele ::= LDEL expr RDEL", - /* 128 */ "object ::= varindexed objectchain", - /* 129 */ "objectchain ::= objectelement", - /* 130 */ "objectchain ::= objectchain objectelement", - /* 131 */ "objectelement ::= PTR ID arrayindex", - /* 132 */ "objectelement ::= PTR DOLLAR varvar arrayindex", - /* 133 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 134 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 135 */ "objectelement ::= PTR method", - /* 136 */ "function ::= ID OPENP params CLOSEP", - /* 137 */ "method ::= ID OPENP params CLOSEP", - /* 138 */ "method ::= DOLLAR ID OPENP params CLOSEP", - /* 139 */ "params ::= expr COMMA params", - /* 140 */ "params ::= expr", - /* 141 */ "params ::=", - /* 142 */ "modifier ::= VERT AT ID", - /* 143 */ "modifier ::= VERT ID", - /* 144 */ "static_class_access ::= method", - /* 145 */ "static_class_access ::= method objectchain", - /* 146 */ "static_class_access ::= ID", - /* 147 */ "static_class_access ::= DOLLAR ID arrayindex", - /* 148 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", - /* 149 */ "modparameters ::= modparameters modparameter", - /* 150 */ "modparameters ::=", - /* 151 */ "modparameter ::= COLON value", - /* 152 */ "modparameter ::= COLON array", - /* 153 */ "ifcond ::= EQUALS", - /* 154 */ "ifcond ::= NOTEQUALS", - /* 155 */ "ifcond ::= GREATERTHAN", - /* 156 */ "ifcond ::= LESSTHAN", - /* 157 */ "ifcond ::= GREATEREQUAL", - /* 158 */ "ifcond ::= LESSEQUAL", - /* 159 */ "ifcond ::= IDENTITY", - /* 160 */ "ifcond ::= NONEIDENTITY", - /* 161 */ "ifcond ::= MOD", - /* 162 */ "lop ::= LAND", - /* 163 */ "lop ::= LOR", - /* 164 */ "lop ::= LXOR", - /* 165 */ "array ::= OPENB arrayelements CLOSEB", - /* 166 */ "arrayelements ::= arrayelement", - /* 167 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 168 */ "arrayelements ::=", - /* 169 */ "arrayelement ::= value APTR expr", - /* 170 */ "arrayelement ::= ID APTR expr", - /* 171 */ "arrayelement ::= expr", - /* 172 */ "doublequoted_with_quotes ::= QUOTE QUOTE", - /* 173 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", - /* 174 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 175 */ "doublequoted ::= doublequotedcontent", - /* 176 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 177 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", - /* 178 */ "doublequotedcontent ::= DOLLARID", - /* 179 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 180 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 181 */ "doublequotedcontent ::= smartytag", - /* 182 */ "doublequotedcontent ::= OTHER", - /* 183 */ "optspace ::= SPACE", - /* 184 */ "optspace ::=", + /* 49 */ "smartytag ::= LDELSLASH ID attributes RDEL", + /* 50 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", + /* 51 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 52 */ "attributes ::= attributes attribute", + /* 53 */ "attributes ::= attribute", + /* 54 */ "attributes ::=", + /* 55 */ "attribute ::= SPACE ID EQUAL ID", + /* 56 */ "attribute ::= SPACE ID EQUAL expr", + /* 57 */ "attribute ::= SPACE ID EQUAL value", + /* 58 */ "attribute ::= SPACE ID EQUAL ternary", + /* 59 */ "attribute ::= SPACE ID", + /* 60 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 61 */ "statements ::= statement", + /* 62 */ "statements ::= statements COMMA statement", + /* 63 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 64 */ "expr ::= value", + /* 65 */ "expr ::= DOLLAR ID COLON ID", + /* 66 */ "expr ::= expr MATH value", + /* 67 */ "expr ::= expr UNIMATH value", + /* 68 */ "expr ::= expr ANDSYM value", + /* 69 */ "expr ::= array", + /* 70 */ "expr ::= expr modifier modparameters", + /* 71 */ "expr ::= expr ifcond expr", + /* 72 */ "expr ::= expr ISIN array", + /* 73 */ "expr ::= expr ISIN value", + /* 74 */ "expr ::= expr lop expr", + /* 75 */ "expr ::= expr ISDIVBY expr", + /* 76 */ "expr ::= expr ISNOTDIVBY expr", + /* 77 */ "expr ::= expr ISEVEN", + /* 78 */ "expr ::= expr ISNOTEVEN", + /* 79 */ "expr ::= expr ISEVENBY expr", + /* 80 */ "expr ::= expr ISNOTEVENBY expr", + /* 81 */ "expr ::= expr ISODD", + /* 82 */ "expr ::= expr ISNOTODD", + /* 83 */ "expr ::= expr ISODDBY expr", + /* 84 */ "expr ::= expr ISNOTODDBY expr", + /* 85 */ "expr ::= value INSTANCEOF ID", + /* 86 */ "expr ::= value INSTANCEOF value", + /* 87 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 88 */ "value ::= variable", + /* 89 */ "value ::= UNIMATH value", + /* 90 */ "value ::= NOT value", + /* 91 */ "value ::= TYPECAST value", + /* 92 */ "value ::= variable INCDEC", + /* 93 */ "value ::= INTEGER", + /* 94 */ "value ::= INTEGER DOT INTEGER", + /* 95 */ "value ::= ID", + /* 96 */ "value ::= function", + /* 97 */ "value ::= OPENP expr CLOSEP", + /* 98 */ "value ::= SINGLEQUOTESTRING", + /* 99 */ "value ::= doublequoted_with_quotes", + /* 100 */ "value ::= ID DOUBLECOLON static_class_access", + /* 101 */ "value ::= varindexed DOUBLECOLON static_class_access", + /* 102 */ "value ::= smartytag", + /* 103 */ "variable ::= varindexed", + /* 104 */ "variable ::= DOLLAR varvar AT ID", + /* 105 */ "variable ::= object", + /* 106 */ "variable ::= HATCH ID HATCH", + /* 107 */ "variable ::= HATCH variable HATCH", + /* 108 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 109 */ "arrayindex ::= arrayindex indexdef", + /* 110 */ "arrayindex ::=", + /* 111 */ "indexdef ::= DOT DOLLAR varvar", + /* 112 */ "indexdef ::= DOT DOLLAR varvar AT ID", + /* 113 */ "indexdef ::= DOT ID", + /* 114 */ "indexdef ::= DOT INTEGER", + /* 115 */ "indexdef ::= DOT LDEL expr RDEL", + /* 116 */ "indexdef ::= OPENB ID CLOSEB", + /* 117 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 118 */ "indexdef ::= OPENB expr CLOSEB", + /* 119 */ "indexdef ::= OPENB CLOSEB", + /* 120 */ "varvar ::= varvarele", + /* 121 */ "varvar ::= varvar varvarele", + /* 122 */ "varvarele ::= ID", + /* 123 */ "varvarele ::= LDEL expr RDEL", + /* 124 */ "object ::= varindexed objectchain", + /* 125 */ "objectchain ::= objectelement", + /* 126 */ "objectchain ::= objectchain objectelement", + /* 127 */ "objectelement ::= PTR ID arrayindex", + /* 128 */ "objectelement ::= PTR DOLLAR varvar arrayindex", + /* 129 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 130 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 131 */ "objectelement ::= PTR method", + /* 132 */ "function ::= ID OPENP params CLOSEP", + /* 133 */ "method ::= ID OPENP params CLOSEP", + /* 134 */ "method ::= DOLLAR ID OPENP params CLOSEP", + /* 135 */ "params ::= expr COMMA params", + /* 136 */ "params ::= expr", + /* 137 */ "params ::=", + /* 138 */ "modifier ::= VERT AT ID", + /* 139 */ "modifier ::= VERT ID", + /* 140 */ "static_class_access ::= method", + /* 141 */ "static_class_access ::= method objectchain", + /* 142 */ "static_class_access ::= ID", + /* 143 */ "static_class_access ::= DOLLAR ID arrayindex", + /* 144 */ "static_class_access ::= DOLLAR ID arrayindex objectchain", + /* 145 */ "modparameters ::= modparameters modparameter", + /* 146 */ "modparameters ::=", + /* 147 */ "modparameter ::= COLON value", + /* 148 */ "modparameter ::= COLON array", + /* 149 */ "ifcond ::= EQUALS", + /* 150 */ "ifcond ::= NOTEQUALS", + /* 151 */ "ifcond ::= GREATERTHAN", + /* 152 */ "ifcond ::= LESSTHAN", + /* 153 */ "ifcond ::= GREATEREQUAL", + /* 154 */ "ifcond ::= LESSEQUAL", + /* 155 */ "ifcond ::= IDENTITY", + /* 156 */ "ifcond ::= NONEIDENTITY", + /* 157 */ "ifcond ::= MOD", + /* 158 */ "lop ::= LAND", + /* 159 */ "lop ::= LOR", + /* 160 */ "lop ::= LXOR", + /* 161 */ "array ::= OPENB arrayelements CLOSEB", + /* 162 */ "arrayelements ::= arrayelement", + /* 163 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 164 */ "arrayelements ::=", + /* 165 */ "arrayelement ::= value APTR expr", + /* 166 */ "arrayelement ::= ID APTR expr", + /* 167 */ "arrayelement ::= expr", + /* 168 */ "doublequoted_with_quotes ::= QUOTE QUOTE", + /* 169 */ "doublequoted_with_quotes ::= QUOTE doublequoted QUOTE", + /* 170 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 171 */ "doublequoted ::= doublequotedcontent", + /* 172 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 173 */ "doublequotedcontent ::= BACKTICK expr BACKTICK", + /* 174 */ "doublequotedcontent ::= DOLLARID", + /* 175 */ "doublequotedcontent ::= LDEL variable RDEL", + /* 176 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 177 */ "doublequotedcontent ::= smartytag", + /* 178 */ "doublequotedcontent ::= OTHER", + /* 179 */ "optspace ::= SPACE", + /* 180 */ "optspace ::=", ); function tokenName($tokenType) @@ -1547,7 +1611,7 @@ static public $yy_action = array( $this->internalError = true; $this->compiler->trigger_template_error("Stack overflow in template parser"); -#line 1546 "smarty_internal_templateparser.php" +#line 1610 "smarty_internal_templateparser.php" return; } $yytos = new TP_yyStackEntry; @@ -1600,39 +1664,35 @@ static public $yy_action = array( array( 'lhs' => 77, 'rhs' => 6 ), array( 'lhs' => 77, 'rhs' => 6 ), array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 4 ), array( 'lhs' => 77, 'rhs' => 3 ), array( 'lhs' => 77, 'rhs' => 6 ), array( 'lhs' => 77, 'rhs' => 6 ), array( 'lhs' => 77, 'rhs' => 8 ), - array( 'lhs' => 77, 'rhs' => 5 ), - array( 'lhs' => 77, 'rhs' => 5 ), - array( 'lhs' => 77, 'rhs' => 13 ), + array( 'lhs' => 77, 'rhs' => 4 ), + array( 'lhs' => 77, 'rhs' => 4 ), + array( 'lhs' => 77, 'rhs' => 12 ), array( 'lhs' => 93, 'rhs' => 2 ), array( 'lhs' => 93, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 7 ), array( 'lhs' => 77, 'rhs' => 8 ), - array( 'lhs' => 77, 'rhs' => 9 ), - array( 'lhs' => 77, 'rhs' => 8 ), - array( 'lhs' => 77, 'rhs' => 11 ), - array( 'lhs' => 77, 'rhs' => 8 ), - array( 'lhs' => 77, 'rhs' => 11 ), array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 7 ), + array( 'lhs' => 77, 'rhs' => 10 ), + array( 'lhs' => 77, 'rhs' => 7 ), + array( 'lhs' => 77, 'rhs' => 10 ), array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 1 ), array( 'lhs' => 77, 'rhs' => 4 ), array( 'lhs' => 77, 'rhs' => 6 ), array( 'lhs' => 77, 'rhs' => 5 ), array( 'lhs' => 82, 'rhs' => 2 ), array( 'lhs' => 82, 'rhs' => 1 ), array( 'lhs' => 82, 'rhs' => 0 ), - array( 'lhs' => 96, 'rhs' => 4 ), - array( 'lhs' => 96, 'rhs' => 4 ), - array( 'lhs' => 96, 'rhs' => 4 ), - array( 'lhs' => 96, 'rhs' => 4 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 4 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 4 ), array( 'lhs' => 90, 'rhs' => 1 ), array( 'lhs' => 90, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 4 ), @@ -1681,76 +1741,76 @@ static public $yy_action = array( array( 'lhs' => 83, 'rhs' => 3 ), array( 'lhs' => 83, 'rhs' => 3 ), array( 'lhs' => 86, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 0 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 5 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 4 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 5 ), + array( 'lhs' => 103, 'rhs' => 3 ), array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 0 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 5 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 4 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 5 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 2 ), array( 'lhs' => 92, 'rhs' => 1 ), array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), array( 'lhs' => 105, 'rhs' => 1 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 105, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 4 ), + array( 'lhs' => 106, 'rhs' => 5 ), + array( 'lhs' => 106, 'rhs' => 6 ), array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 98, 'rhs' => 4 ), array( 'lhs' => 107, 'rhs' => 4 ), array( 'lhs' => 107, 'rhs' => 5 ), - array( 'lhs' => 107, 'rhs' => 6 ), - array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 4 ), - array( 'lhs' => 108, 'rhs' => 4 ), - array( 'lhs' => 108, 'rhs' => 5 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 108, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 0 ), array( 'lhs' => 87, 'rhs' => 3 ), array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 4 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 2 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 3 ), + array( 'lhs' => 100, 'rhs' => 4 ), array( 'lhs' => 88, 'rhs' => 2 ), array( 'lhs' => 88, 'rhs' => 0 ), - array( 'lhs' => 110, 'rhs' => 2 ), - array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 109, 'rhs' => 2 ), + array( 'lhs' => 109, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 1 ), array( 'lhs' => 97, 'rhs' => 1 ), array( 'lhs' => 97, 'rhs' => 1 ), array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 1 ), array( 'lhs' => 94, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 0 ), array( 'lhs' => 111, 'rhs' => 3 ), - array( 'lhs' => 111, 'rhs' => 0 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 99, 'rhs' => 2 ), + array( 'lhs' => 99, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 2 ), array( 'lhs' => 112, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 100, 'rhs' => 3 ), - array( 'lhs' => 113, 'rhs' => 2 ), + array( 'lhs' => 113, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 1 ), array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 114, 'rhs' => 3 ), - array( 'lhs' => 114, 'rhs' => 3 ), - array( 'lhs' => 114, 'rhs' => 1 ), - array( 'lhs' => 114, 'rhs' => 3 ), - array( 'lhs' => 114, 'rhs' => 3 ), - array( 'lhs' => 114, 'rhs' => 1 ), - array( 'lhs' => 114, 'rhs' => 1 ), array( 'lhs' => 91, 'rhs' => 1 ), array( 'lhs' => 91, 'rhs' => 0 ), ); @@ -1760,18 +1820,15 @@ static public $yy_action = array( 5 => 0, 15 => 0, 16 => 0, - 50 => 0, - 51 => 0, - 52 => 0, - 68 => 0, - 92 => 0, - 97 => 0, - 100 => 0, - 102 => 0, - 103 => 0, - 109 => 0, - 144 => 0, - 166 => 0, + 64 => 0, + 88 => 0, + 93 => 0, + 96 => 0, + 98 => 0, + 99 => 0, + 105 => 0, + 140 => 0, + 162 => 0, 1 => 1, 2 => 2, 3 => 3, @@ -1785,10 +1842,10 @@ static public $yy_action = array( 14 => 11, 12 => 12, 13 => 13, - 93 => 13, - 95 => 13, - 96 => 13, - 145 => 13, + 89 => 13, + 91 => 13, + 92 => 13, + 141 => 13, 17 => 17, 18 => 17, 19 => 19, @@ -1804,20 +1861,20 @@ static public $yy_action = array( 29 => 29, 30 => 29, 31 => 31, - 32 => 31, + 32 => 32, 33 => 33, 34 => 34, 35 => 35, 36 => 36, - 37 => 37, - 38 => 37, + 37 => 36, + 38 => 38, 39 => 39, 40 => 40, + 53 => 40, + 136 => 40, + 142 => 40, + 167 => 40, 41 => 41, - 57 => 41, - 140 => 41, - 146 => 41, - 171 => 41, 42 => 42, 43 => 43, 44 => 44, @@ -1825,71 +1882,74 @@ static public $yy_action = array( 46 => 46, 47 => 47, 48 => 48, - 49 => 48, - 53 => 53, + 49 => 49, + 50 => 50, + 51 => 51, + 52 => 52, 54 => 54, 55 => 55, 56 => 56, - 58 => 58, + 57 => 56, + 58 => 56, 59 => 59, 60 => 60, - 61 => 60, - 62 => 60, + 61 => 61, + 62 => 62, 63 => 63, - 64 => 64, 65 => 65, 66 => 66, - 67 => 67, + 67 => 66, + 68 => 66, 69 => 69, + 120 => 69, + 179 => 69, 70 => 70, - 71 => 70, - 72 => 70, + 71 => 71, + 74 => 71, + 85 => 71, + 72 => 72, 73 => 73, - 124 => 73, - 183 => 73, - 74 => 74, 75 => 75, - 78 => 75, - 89 => 75, 76 => 76, 77 => 77, + 82 => 77, + 78 => 78, + 81 => 78, 79 => 79, + 84 => 79, 80 => 80, - 81 => 81, - 86 => 81, - 82 => 82, - 85 => 82, - 83 => 83, - 88 => 83, - 84 => 84, - 87 => 84, + 83 => 80, + 86 => 86, + 87 => 87, 90 => 90, - 91 => 91, 94 => 94, - 98 => 98, - 99 => 99, + 95 => 95, + 97 => 97, + 100 => 100, 101 => 101, + 102 => 102, + 103 => 103, 104 => 104, - 105 => 105, 106 => 106, 107 => 107, 108 => 108, + 109 => 109, 110 => 110, + 146 => 110, 111 => 111, 112 => 112, 113 => 113, 114 => 114, - 150 => 114, 115 => 115, + 118 => 115, 116 => 116, 117 => 117, - 118 => 118, 119 => 119, - 122 => 119, - 120 => 120, + 180 => 119, 121 => 121, + 122 => 122, 123 => 123, - 184 => 123, + 124 => 124, 125 => 125, 126 => 126, 127 => 127, @@ -1901,18 +1961,18 @@ static public $yy_action = array( 133 => 133, 134 => 134, 135 => 135, - 136 => 136, 137 => 137, 138 => 138, - 139 => 139, - 141 => 141, - 142 => 142, - 143 => 142, + 139 => 138, + 143 => 143, + 144 => 144, + 145 => 145, 147 => 147, - 148 => 148, + 148 => 147, 149 => 149, + 150 => 150, 151 => 151, - 152 => 151, + 152 => 152, 153 => 153, 154 => 154, 155 => 155, @@ -1922,29 +1982,25 @@ static public $yy_action = array( 159 => 159, 160 => 160, 161 => 161, - 162 => 162, 163 => 163, 164 => 164, 165 => 165, - 167 => 167, + 166 => 166, 168 => 168, 169 => 169, 170 => 170, + 171 => 171, 172 => 172, - 173 => 173, + 173 => 172, + 175 => 172, 174 => 174, - 175 => 175, 176 => 176, - 177 => 176, - 179 => 176, + 177 => 177, 178 => 178, - 180 => 180, - 181 => 181, - 182 => 182, ); #line 91 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1943 "smarty_internal_templateparser.php" +#line 1999 "smarty_internal_templateparser.php" #line 97 "smarty_internal_templateparser.y" function yy_r1(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; @@ -1953,7 +2009,7 @@ static public $yy_action = array( $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor; } } -#line 1952 "smarty_internal_templateparser.php" +#line 2008 "smarty_internal_templateparser.php" #line 105 "smarty_internal_templateparser.y" function yy_r2(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; @@ -1963,7 +2019,7 @@ static public $yy_action = array( $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } } -#line 1962 "smarty_internal_templateparser.php" +#line 2018 "smarty_internal_templateparser.php" #line 118 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { @@ -1975,10 +2031,10 @@ static public $yy_action = array( $this->compiler->has_variable_string = false; $this->block_nesting_level = count($this->compiler->_tag_stack); } -#line 1974 "smarty_internal_templateparser.php" +#line 2030 "smarty_internal_templateparser.php" #line 130 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 1977 "smarty_internal_templateparser.php" +#line 2033 "smarty_internal_templateparser.php" #line 136 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { @@ -1991,7 +2047,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 1990 "smarty_internal_templateparser.php" +#line 2046 "smarty_internal_templateparser.php" #line 148 "smarty_internal_templateparser.y" function yy_r7(){if ($this->is_xml) { $this->compiler->tag_nocache = true; @@ -2007,7 +2063,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2006 "smarty_internal_templateparser.php" +#line 2062 "smarty_internal_templateparser.php" #line 163 "smarty_internal_templateparser.y" function yy_r8(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); @@ -2015,10 +2071,10 @@ static public $yy_action = array( $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } } -#line 2014 "smarty_internal_templateparser.php" +#line 2070 "smarty_internal_templateparser.php" #line 171 "smarty_internal_templateparser.y" function yy_r9(){ $this->compiler->tag_nocache = true; $this->is_xml = true; $this->_retvalue = $this->compiler->processNocacheCode("", $this->compiler, true); } -#line 2017 "smarty_internal_templateparser.php" +#line 2073 "smarty_internal_templateparser.php" #line 174 "smarty_internal_templateparser.y" function yy_r10(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); @@ -2026,113 +2082,116 @@ static public $yy_action = array( $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } } -#line 2025 "smarty_internal_templateparser.php" +#line 2081 "smarty_internal_templateparser.php" #line 182 "smarty_internal_templateparser.y" function yy_r11(){ $this->_retvalue = ''; } -#line 2028 "smarty_internal_templateparser.php" +#line 2084 "smarty_internal_templateparser.php" #line 183 "smarty_internal_templateparser.y" function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2031 "smarty_internal_templateparser.php" +#line 2087 "smarty_internal_templateparser.php" #line 185 "smarty_internal_templateparser.y" function yy_r13(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2034 "smarty_internal_templateparser.php" +#line 2090 "smarty_internal_templateparser.php" #line 190 "smarty_internal_templateparser.y" function yy_r17(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2037 "smarty_internal_templateparser.php" +#line 2093 "smarty_internal_templateparser.php" #line 192 "smarty_internal_templateparser.y" function yy_r19(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2040 "smarty_internal_templateparser.php" +#line 2096 "smarty_internal_templateparser.php" #line 200 "smarty_internal_templateparser.y" function yy_r20(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2043 "smarty_internal_templateparser.php" +#line 2099 "smarty_internal_templateparser.php" #line 201 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2046 "smarty_internal_templateparser.php" +#line 2102 "smarty_internal_templateparser.php" #line 212 "smarty_internal_templateparser.y" function yy_r25(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2049 "smarty_internal_templateparser.php" +#line 2105 "smarty_internal_templateparser.php" #line 214 "smarty_internal_templateparser.y" function yy_r27(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2052 "smarty_internal_templateparser.php" +#line 2108 "smarty_internal_templateparser.php" #line 216 "smarty_internal_templateparser.y" function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } -#line 2055 "smarty_internal_templateparser.php" +#line 2111 "smarty_internal_templateparser.php" #line 219 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2058 "smarty_internal_templateparser.php" -#line 221 "smarty_internal_templateparser.y" - function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2061 "smarty_internal_templateparser.php" -#line 223 "smarty_internal_templateparser.y" - function yy_r34(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2064 "smarty_internal_templateparser.php" -#line 225 "smarty_internal_templateparser.y" - function yy_r35(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } +#line 2117 "smarty_internal_templateparser.php" +#line 222 "smarty_internal_templateparser.y" + function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2120 "smarty_internal_templateparser.php" +#line 224 "smarty_internal_templateparser.y" + function yy_r34(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2069 "smarty_internal_templateparser.php" -#line 229 "smarty_internal_templateparser.y" - function yy_r36(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2074 "smarty_internal_templateparser.php" -#line 233 "smarty_internal_templateparser.y" - function yy_r37(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2077 "smarty_internal_templateparser.php" -#line 236 "smarty_internal_templateparser.y" - function yy_r39(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2081 "smarty_internal_templateparser.php" +#line 2130 "smarty_internal_templateparser.php" +#line 232 "smarty_internal_templateparser.y" + function yy_r36(){ $tag = trim(substr($this->yystack[$this->yyidx + -3]->minor,$this->lex->ldel_length)); $this->_retvalue = $this->compiler->compileTag(($tag == 'else if')? 'elseif' : $tag,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2133 "smarty_internal_templateparser.php" +#line 235 "smarty_internal_templateparser.y" + function yy_r38(){ + $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2137 "smarty_internal_templateparser.php" +#line 238 "smarty_internal_templateparser.y" + function yy_r39(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } +#line 2140 "smarty_internal_templateparser.php" #line 239 "smarty_internal_templateparser.y" - function yy_r40(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2084 "smarty_internal_templateparser.php" + function yy_r40(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2143 "smarty_internal_templateparser.php" #line 240 "smarty_internal_templateparser.y" - function yy_r41(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2087 "smarty_internal_templateparser.php" + function yy_r41(){ $this->_retvalue = $this->compiler->compileTag('for',array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 2146 "smarty_internal_templateparser.php" #line 241 "smarty_internal_templateparser.y" - function yy_r42(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2090 "smarty_internal_templateparser.php" -#line 242 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -7]->minor,array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2093 "smarty_internal_templateparser.php" -#line 244 "smarty_internal_templateparser.y" + function yy_r42(){ $this->_retvalue = $this->compiler->compileTag('for',array('start'=>$this->yystack[$this->yyidx + -5]->minor,'to'=>$this->yystack[$this->yyidx + -3]->minor,'step'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2149 "smarty_internal_templateparser.php" +#line 243 "smarty_internal_templateparser.y" + function yy_r43(){ $this->_retvalue = $this->compiler->compileTag('foreach',$this->yystack[$this->yyidx + -1]->minor); } +#line 2152 "smarty_internal_templateparser.php" +#line 245 "smarty_internal_templateparser.y" function yy_r44(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2097 "smarty_internal_templateparser.php" -#line 246 "smarty_internal_templateparser.y" + $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2156 "smarty_internal_templateparser.php" +#line 247 "smarty_internal_templateparser.y" function yy_r45(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2101 "smarty_internal_templateparser.php" -#line 248 "smarty_internal_templateparser.y" + $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2160 "smarty_internal_templateparser.php" +#line 249 "smarty_internal_templateparser.y" function yy_r46(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2105 "smarty_internal_templateparser.php" -#line 250 "smarty_internal_templateparser.y" + $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2164 "smarty_internal_templateparser.php" +#line 251 "smarty_internal_templateparser.y" function yy_r47(){ - $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2109 "smarty_internal_templateparser.php" -#line 254 "smarty_internal_templateparser.y" + $this->_retvalue = $this->compiler->compileTag('foreach',array('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } +#line 2168 "smarty_internal_templateparser.php" +#line 255 "smarty_internal_templateparser.y" function yy_r48(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2112 "smarty_internal_templateparser.php" -#line 259 "smarty_internal_templateparser.y" - function yy_r53(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2115 "smarty_internal_templateparser.php" -#line 260 "smarty_internal_templateparser.y" - function yy_r54(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 2174 "smarty_internal_templateparser.php" +#line 257 "smarty_internal_templateparser.y" + function yy_r50(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2120 "smarty_internal_templateparser.php" -#line 264 "smarty_internal_templateparser.y" - function yy_r55(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2123 "smarty_internal_templateparser.php" -#line 271 "smarty_internal_templateparser.y" - function yy_r56(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[key($this->yystack[$this->yyidx + 0]->minor)] = $this->yystack[$this->yyidx + 0]->minor[key($this->yystack[$this->yyidx + 0]->minor)]; } -#line 2126 "smarty_internal_templateparser.php" +#line 2179 "smarty_internal_templateparser.php" +#line 261 "smarty_internal_templateparser.y" + function yy_r51(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2182 "smarty_internal_templateparser.php" +#line 268 "smarty_internal_templateparser.y" + function yy_r52(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; $this->_retvalue[key($this->yystack[$this->yyidx + 0]->minor)] = $this->yystack[$this->yyidx + 0]->minor[key($this->yystack[$this->yyidx + 0]->minor)]; } +#line 2185 "smarty_internal_templateparser.php" +#line 272 "smarty_internal_templateparser.y" + function yy_r54(){ $this->_retvalue = array(); } +#line 2188 "smarty_internal_templateparser.php" #line 275 "smarty_internal_templateparser.y" - function yy_r58(){ $this->_retvalue = array(); } -#line 2129 "smarty_internal_templateparser.php" -#line 278 "smarty_internal_templateparser.y" - function yy_r59(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { + function yy_r55(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'true'); } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'false'); @@ -2140,78 +2199,78 @@ static public $yy_action = array( $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>'null'); } else $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2139 "smarty_internal_templateparser.php" +#line 2198 "smarty_internal_templateparser.php" +#line 283 "smarty_internal_templateparser.y" + function yy_r56(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2201 "smarty_internal_templateparser.php" #line 286 "smarty_internal_templateparser.y" - function yy_r60(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2142 "smarty_internal_templateparser.php" -#line 289 "smarty_internal_templateparser.y" - function yy_r63(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2145 "smarty_internal_templateparser.php" -#line 290 "smarty_internal_templateparser.y" - function yy_r64(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2148 "smarty_internal_templateparser.php" + function yy_r59(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2204 "smarty_internal_templateparser.php" +#line 287 "smarty_internal_templateparser.y" + function yy_r60(){$this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2207 "smarty_internal_templateparser.php" +#line 293 "smarty_internal_templateparser.y" + function yy_r61(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2210 "smarty_internal_templateparser.php" +#line 294 "smarty_internal_templateparser.y" + function yy_r62(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2213 "smarty_internal_templateparser.php" #line 296 "smarty_internal_templateparser.y" - function yy_r65(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2151 "smarty_internal_templateparser.php" -#line 297 "smarty_internal_templateparser.y" - function yy_r66(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2154 "smarty_internal_templateparser.php" -#line 299 "smarty_internal_templateparser.y" - function yy_r67(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2157 "smarty_internal_templateparser.php" -#line 308 "smarty_internal_templateparser.y" - function yy_r69(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2160 "smarty_internal_templateparser.php" -#line 310 "smarty_internal_templateparser.y" - function yy_r70(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2163 "smarty_internal_templateparser.php" + function yy_r63(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2216 "smarty_internal_templateparser.php" +#line 305 "smarty_internal_templateparser.y" + function yy_r65(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2219 "smarty_internal_templateparser.php" +#line 307 "smarty_internal_templateparser.y" + function yy_r66(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } +#line 2222 "smarty_internal_templateparser.php" +#line 313 "smarty_internal_templateparser.y" + function yy_r69(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2225 "smarty_internal_templateparser.php" #line 316 "smarty_internal_templateparser.y" - function yy_r73(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2166 "smarty_internal_templateparser.php" -#line 319 "smarty_internal_templateparser.y" - function yy_r74(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } -#line 2169 "smarty_internal_templateparser.php" -#line 323 "smarty_internal_templateparser.y" - function yy_r75(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2172 "smarty_internal_templateparser.php" + function yy_r70(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } +#line 2228 "smarty_internal_templateparser.php" +#line 320 "smarty_internal_templateparser.y" + function yy_r71(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2231 "smarty_internal_templateparser.php" +#line 321 "smarty_internal_templateparser.y" + function yy_r72(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2234 "smarty_internal_templateparser.php" +#line 322 "smarty_internal_templateparser.y" + function yy_r73(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2237 "smarty_internal_templateparser.php" #line 324 "smarty_internal_templateparser.y" - function yy_r76(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2175 "smarty_internal_templateparser.php" + function yy_r75(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2240 "smarty_internal_templateparser.php" #line 325 "smarty_internal_templateparser.y" - function yy_r77(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2178 "smarty_internal_templateparser.php" + function yy_r76(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2243 "smarty_internal_templateparser.php" +#line 326 "smarty_internal_templateparser.y" + function yy_r77(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2246 "smarty_internal_templateparser.php" #line 327 "smarty_internal_templateparser.y" - function yy_r79(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2181 "smarty_internal_templateparser.php" + function yy_r78(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2249 "smarty_internal_templateparser.php" #line 328 "smarty_internal_templateparser.y" - function yy_r80(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2184 "smarty_internal_templateparser.php" + function yy_r79(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2252 "smarty_internal_templateparser.php" #line 329 "smarty_internal_templateparser.y" - function yy_r81(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2187 "smarty_internal_templateparser.php" -#line 330 "smarty_internal_templateparser.y" - function yy_r82(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2190 "smarty_internal_templateparser.php" -#line 331 "smarty_internal_templateparser.y" - function yy_r83(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2193 "smarty_internal_templateparser.php" -#line 332 "smarty_internal_templateparser.y" - function yy_r84(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2196 "smarty_internal_templateparser.php" -#line 338 "smarty_internal_templateparser.y" - function yy_r90(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2199 "smarty_internal_templateparser.php" -#line 344 "smarty_internal_templateparser.y" - function yy_r91(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2202 "smarty_internal_templateparser.php" -#line 351 "smarty_internal_templateparser.y" - function yy_r94(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2205 "smarty_internal_templateparser.php" -#line 356 "smarty_internal_templateparser.y" - function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2208 "smarty_internal_templateparser.php" -#line 358 "smarty_internal_templateparser.y" - function yy_r99(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { + function yy_r80(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2255 "smarty_internal_templateparser.php" +#line 335 "smarty_internal_templateparser.y" + function yy_r86(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } +#line 2258 "smarty_internal_templateparser.php" +#line 341 "smarty_internal_templateparser.y" + function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2261 "smarty_internal_templateparser.php" +#line 348 "smarty_internal_templateparser.y" + function yy_r90(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2264 "smarty_internal_templateparser.php" +#line 353 "smarty_internal_templateparser.y" + function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2267 "smarty_internal_templateparser.php" +#line 355 "smarty_internal_templateparser.y" + function yy_r95(){ if (preg_match('~^true$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'true'; } elseif (preg_match('~^false$~i', $this->yystack[$this->yyidx + 0]->minor)) { $this->_retvalue = 'false'; @@ -2219,24 +2278,24 @@ static public $yy_action = array( $this->_retvalue = 'null'; } else $this->_retvalue = "'".$this->yystack[$this->yyidx + 0]->minor."'"; } -#line 2218 "smarty_internal_templateparser.php" -#line 369 "smarty_internal_templateparser.y" - function yy_r101(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2221 "smarty_internal_templateparser.php" -#line 375 "smarty_internal_templateparser.y" - function yy_r104(){if (!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) { +#line 2277 "smarty_internal_templateparser.php" +#line 366 "smarty_internal_templateparser.y" + function yy_r97(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2280 "smarty_internal_templateparser.php" +#line 372 "smarty_internal_templateparser.y" + function yy_r100(){if (!$this->template->security || $this->smarty->security_handler->isTrustedStaticClass($this->yystack[$this->yyidx + -2]->minor, $this->compiler)) { $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } } -#line 2226 "smarty_internal_templateparser.php" -#line 378 "smarty_internal_templateparser.y" - function yy_r105(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else { +#line 2285 "smarty_internal_templateparser.php" +#line 375 "smarty_internal_templateparser.y" + function yy_r101(){ if ($this->yystack[$this->yyidx + -2]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index']).'::'.$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -2]->minor['smarty_internal_index'].'::'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2230 "smarty_internal_templateparser.php" -#line 381 "smarty_internal_templateparser.y" - function yy_r106(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2233 "smarty_internal_templateparser.php" -#line 390 "smarty_internal_templateparser.y" - function yy_r107(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); +#line 2289 "smarty_internal_templateparser.php" +#line 378 "smarty_internal_templateparser.y" + function yy_r102(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } +#line 2292 "smarty_internal_templateparser.php" +#line 387 "smarty_internal_templateparser.y" + function yy_r103(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']); } else { if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + 0]->minor['var']])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + 0]->minor['var'] .']->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; @@ -2244,210 +2303,210 @@ static public $yy_action = array( $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2243 "smarty_internal_templateparser.php" -#line 399 "smarty_internal_templateparser.y" - function yy_r108(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { +#line 2302 "smarty_internal_templateparser.php" +#line 396 "smarty_internal_templateparser.y" + function yy_r104(){if (isset($this->compiler->local_var[$this->yystack[$this->yyidx + -2]->minor])) { $this->_retvalue = '$_smarty_tpl->tpl_vars['. $this->yystack[$this->yyidx + -2]->minor .']->'.$this->yystack[$this->yyidx + 0]->minor; } else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; } $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2251 "smarty_internal_templateparser.php" -#line 408 "smarty_internal_templateparser.y" - function yy_r110(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2254 "smarty_internal_templateparser.php" +#line 2310 "smarty_internal_templateparser.php" +#line 405 "smarty_internal_templateparser.y" + function yy_r106(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2313 "smarty_internal_templateparser.php" +#line 406 "smarty_internal_templateparser.y" + function yy_r107(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2316 "smarty_internal_templateparser.php" #line 409 "smarty_internal_templateparser.y" - function yy_r111(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2257 "smarty_internal_templateparser.php" -#line 412 "smarty_internal_templateparser.y" - function yy_r112(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2260 "smarty_internal_templateparser.php" -#line 418 "smarty_internal_templateparser.y" - function yy_r113(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2263 "smarty_internal_templateparser.php" -#line 420 "smarty_internal_templateparser.y" - function yy_r114(){return; } -#line 2266 "smarty_internal_templateparser.php" + function yy_r108(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2319 "smarty_internal_templateparser.php" +#line 415 "smarty_internal_templateparser.y" + function yy_r109(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2322 "smarty_internal_templateparser.php" +#line 417 "smarty_internal_templateparser.y" + function yy_r110(){return; } +#line 2325 "smarty_internal_templateparser.php" +#line 421 "smarty_internal_templateparser.y" + function yy_r111(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } +#line 2328 "smarty_internal_templateparser.php" +#line 422 "smarty_internal_templateparser.y" + function yy_r112(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } +#line 2331 "smarty_internal_templateparser.php" +#line 423 "smarty_internal_templateparser.y" + function yy_r113(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2334 "smarty_internal_templateparser.php" #line 424 "smarty_internal_templateparser.y" - function yy_r115(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } -#line 2269 "smarty_internal_templateparser.php" + function yy_r114(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2337 "smarty_internal_templateparser.php" #line 425 "smarty_internal_templateparser.y" - function yy_r116(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2272 "smarty_internal_templateparser.php" -#line 426 "smarty_internal_templateparser.y" - function yy_r117(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2275 "smarty_internal_templateparser.php" + function yy_r115(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2340 "smarty_internal_templateparser.php" #line 427 "smarty_internal_templateparser.y" - function yy_r118(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2278 "smarty_internal_templateparser.php" + function yy_r116(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2343 "smarty_internal_templateparser.php" #line 428 "smarty_internal_templateparser.y" - function yy_r119(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2281 "smarty_internal_templateparser.php" -#line 430 "smarty_internal_templateparser.y" - function yy_r120(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2284 "smarty_internal_templateparser.php" -#line 431 "smarty_internal_templateparser.y" - function yy_r121(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2287 "smarty_internal_templateparser.php" -#line 435 "smarty_internal_templateparser.y" - function yy_r123(){$this->_retvalue = ''; } -#line 2290 "smarty_internal_templateparser.php" -#line 443 "smarty_internal_templateparser.y" - function yy_r125(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2293 "smarty_internal_templateparser.php" -#line 445 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2296 "smarty_internal_templateparser.php" -#line 447 "smarty_internal_templateparser.y" - function yy_r127(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2299 "smarty_internal_templateparser.php" -#line 452 "smarty_internal_templateparser.y" - function yy_r128(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { + function yy_r117(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2346 "smarty_internal_templateparser.php" +#line 432 "smarty_internal_templateparser.y" + function yy_r119(){$this->_retvalue = ''; } +#line 2349 "smarty_internal_templateparser.php" +#line 440 "smarty_internal_templateparser.y" + function yy_r121(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2352 "smarty_internal_templateparser.php" +#line 442 "smarty_internal_templateparser.y" + function yy_r122(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2355 "smarty_internal_templateparser.php" +#line 444 "smarty_internal_templateparser.y" + function yy_r123(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2358 "smarty_internal_templateparser.php" +#line 449 "smarty_internal_templateparser.y" + function yy_r124(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2303 "smarty_internal_templateparser.php" -#line 455 "smarty_internal_templateparser.y" - function yy_r129(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2306 "smarty_internal_templateparser.php" +#line 2362 "smarty_internal_templateparser.php" +#line 452 "smarty_internal_templateparser.y" + function yy_r125(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2365 "smarty_internal_templateparser.php" +#line 454 "smarty_internal_templateparser.y" + function yy_r126(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2368 "smarty_internal_templateparser.php" +#line 456 "smarty_internal_templateparser.y" + function yy_r127(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2371 "smarty_internal_templateparser.php" #line 457 "smarty_internal_templateparser.y" - function yy_r130(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2309 "smarty_internal_templateparser.php" + function yy_r128(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; } +#line 2374 "smarty_internal_templateparser.php" +#line 458 "smarty_internal_templateparser.y" + function yy_r129(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2377 "smarty_internal_templateparser.php" #line 459 "smarty_internal_templateparser.y" - function yy_r131(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2312 "smarty_internal_templateparser.php" -#line 460 "smarty_internal_templateparser.y" - function yy_r132(){ $this->_retvalue = '->{$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor .')->value'.$this->yystack[$this->yyidx + 0]->minor.'}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor,"'"), null, true, false)->nocache; } -#line 2315 "smarty_internal_templateparser.php" + function yy_r130(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2380 "smarty_internal_templateparser.php" #line 461 "smarty_internal_templateparser.y" - function yy_r133(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2318 "smarty_internal_templateparser.php" -#line 462 "smarty_internal_templateparser.y" - function yy_r134(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2321 "smarty_internal_templateparser.php" -#line 464 "smarty_internal_templateparser.y" - function yy_r135(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2324 "smarty_internal_templateparser.php" -#line 470 "smarty_internal_templateparser.y" - function yy_r136(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r131(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2383 "smarty_internal_templateparser.php" +#line 467 "smarty_internal_templateparser.y" + function yy_r132(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } else { $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2333 "smarty_internal_templateparser.php" -#line 481 "smarty_internal_templateparser.y" - function yy_r137(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2336 "smarty_internal_templateparser.php" -#line 482 "smarty_internal_templateparser.y" - function yy_r138(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2339 "smarty_internal_templateparser.php" -#line 486 "smarty_internal_templateparser.y" - function yy_r139(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2342 "smarty_internal_templateparser.php" -#line 490 "smarty_internal_templateparser.y" - function yy_r141(){ return; } -#line 2345 "smarty_internal_templateparser.php" -#line 495 "smarty_internal_templateparser.y" - function yy_r142(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2348 "smarty_internal_templateparser.php" -#line 505 "smarty_internal_templateparser.y" - function yy_r147(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2351 "smarty_internal_templateparser.php" -#line 507 "smarty_internal_templateparser.y" - function yy_r148(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2354 "smarty_internal_templateparser.php" -#line 518 "smarty_internal_templateparser.y" - function yy_r149(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2357 "smarty_internal_templateparser.php" -#line 522 "smarty_internal_templateparser.y" - function yy_r151(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2360 "smarty_internal_templateparser.php" +#line 2392 "smarty_internal_templateparser.php" +#line 478 "smarty_internal_templateparser.y" + function yy_r133(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2395 "smarty_internal_templateparser.php" +#line 479 "smarty_internal_templateparser.y" + function yy_r134(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = '$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2398 "smarty_internal_templateparser.php" +#line 483 "smarty_internal_templateparser.y" + function yy_r135(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2401 "smarty_internal_templateparser.php" +#line 487 "smarty_internal_templateparser.y" + function yy_r137(){ return; } +#line 2404 "smarty_internal_templateparser.php" +#line 492 "smarty_internal_templateparser.y" + function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2407 "smarty_internal_templateparser.php" +#line 502 "smarty_internal_templateparser.y" + function yy_r143(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2410 "smarty_internal_templateparser.php" +#line 504 "smarty_internal_templateparser.y" + function yy_r144(){ $this->_retvalue = '$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2413 "smarty_internal_templateparser.php" +#line 515 "smarty_internal_templateparser.y" + function yy_r145(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2416 "smarty_internal_templateparser.php" +#line 519 "smarty_internal_templateparser.y" + function yy_r147(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2419 "smarty_internal_templateparser.php" +#line 523 "smarty_internal_templateparser.y" + function yy_r149(){$this->_retvalue = '=='; } +#line 2422 "smarty_internal_templateparser.php" +#line 524 "smarty_internal_templateparser.y" + function yy_r150(){$this->_retvalue = '!='; } +#line 2425 "smarty_internal_templateparser.php" +#line 525 "smarty_internal_templateparser.y" + function yy_r151(){$this->_retvalue = '>'; } +#line 2428 "smarty_internal_templateparser.php" #line 526 "smarty_internal_templateparser.y" - function yy_r153(){$this->_retvalue = '=='; } -#line 2363 "smarty_internal_templateparser.php" + function yy_r152(){$this->_retvalue = '<'; } +#line 2431 "smarty_internal_templateparser.php" #line 527 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = '!='; } -#line 2366 "smarty_internal_templateparser.php" + function yy_r153(){$this->_retvalue = '>='; } +#line 2434 "smarty_internal_templateparser.php" #line 528 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '>'; } -#line 2369 "smarty_internal_templateparser.php" + function yy_r154(){$this->_retvalue = '<='; } +#line 2437 "smarty_internal_templateparser.php" #line 529 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '<'; } -#line 2372 "smarty_internal_templateparser.php" + function yy_r155(){$this->_retvalue = '==='; } +#line 2440 "smarty_internal_templateparser.php" #line 530 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue = '>='; } -#line 2375 "smarty_internal_templateparser.php" + function yy_r156(){$this->_retvalue = '!=='; } +#line 2443 "smarty_internal_templateparser.php" #line 531 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = '<='; } -#line 2378 "smarty_internal_templateparser.php" -#line 532 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '==='; } -#line 2381 "smarty_internal_templateparser.php" + function yy_r157(){$this->_retvalue = '%'; } +#line 2446 "smarty_internal_templateparser.php" #line 533 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = '!=='; } -#line 2384 "smarty_internal_templateparser.php" + function yy_r158(){$this->_retvalue = '&&'; } +#line 2449 "smarty_internal_templateparser.php" #line 534 "smarty_internal_templateparser.y" - function yy_r161(){$this->_retvalue = '%'; } -#line 2387 "smarty_internal_templateparser.php" -#line 536 "smarty_internal_templateparser.y" - function yy_r162(){$this->_retvalue = '&&'; } -#line 2390 "smarty_internal_templateparser.php" -#line 537 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '||'; } -#line 2393 "smarty_internal_templateparser.php" -#line 538 "smarty_internal_templateparser.y" - function yy_r164(){$this->_retvalue = ' XOR '; } -#line 2396 "smarty_internal_templateparser.php" + function yy_r159(){$this->_retvalue = '||'; } +#line 2452 "smarty_internal_templateparser.php" +#line 535 "smarty_internal_templateparser.y" + function yy_r160(){$this->_retvalue = ' XOR '; } +#line 2455 "smarty_internal_templateparser.php" +#line 540 "smarty_internal_templateparser.y" + function yy_r161(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2458 "smarty_internal_templateparser.php" +#line 542 "smarty_internal_templateparser.y" + function yy_r163(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2461 "smarty_internal_templateparser.php" #line 543 "smarty_internal_templateparser.y" - function yy_r165(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2399 "smarty_internal_templateparser.php" + function yy_r164(){ return; } +#line 2464 "smarty_internal_templateparser.php" +#line 544 "smarty_internal_templateparser.y" + function yy_r165(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2467 "smarty_internal_templateparser.php" #line 545 "smarty_internal_templateparser.y" - function yy_r167(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2402 "smarty_internal_templateparser.php" -#line 546 "smarty_internal_templateparser.y" - function yy_r168(){ return; } -#line 2405 "smarty_internal_templateparser.php" -#line 547 "smarty_internal_templateparser.y" - function yy_r169(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2408 "smarty_internal_templateparser.php" -#line 548 "smarty_internal_templateparser.y" - function yy_r170(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2411 "smarty_internal_templateparser.php" + function yy_r166(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2470 "smarty_internal_templateparser.php" +#line 552 "smarty_internal_templateparser.y" + function yy_r168(){ $this->_retvalue = "''"; } +#line 2473 "smarty_internal_templateparser.php" +#line 553 "smarty_internal_templateparser.y" + function yy_r169(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } +#line 2476 "smarty_internal_templateparser.php" #line 555 "smarty_internal_templateparser.y" - function yy_r172(){ $this->_retvalue = "''"; } -#line 2414 "smarty_internal_templateparser.php" + function yy_r170(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } +#line 2479 "smarty_internal_templateparser.php" #line 556 "smarty_internal_templateparser.y" - function yy_r173(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor->to_smarty_php(); } -#line 2417 "smarty_internal_templateparser.php" + function yy_r171(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2482 "smarty_internal_templateparser.php" #line 558 "smarty_internal_templateparser.y" - function yy_r174(){ $this->yystack[$this->yyidx + -1]->minor->append_subtree($this->yystack[$this->yyidx + 0]->minor); $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2420 "smarty_internal_templateparser.php" -#line 559 "smarty_internal_templateparser.y" - function yy_r175(){ $this->_retvalue = new _smarty_doublequoted($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2423 "smarty_internal_templateparser.php" -#line 561 "smarty_internal_templateparser.y" - function yy_r176(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } -#line 2426 "smarty_internal_templateparser.php" -#line 563 "smarty_internal_templateparser.y" - function yy_r178(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { + function yy_r172(){ $this->_retvalue = new _smarty_code($this, $this->yystack[$this->yyidx + -1]->minor); } +#line 2485 "smarty_internal_templateparser.php" +#line 560 "smarty_internal_templateparser.y" + function yy_r174(){if (isset($this->compiler->local_var["'".substr($this->yystack[$this->yyidx + 0]->minor,1)."'"])) { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->tpl_vars[\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\']->value'); } else { $this->_retvalue = new _smarty_code($this, '$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'); } $this->compiler->tag_nocache = $this->compiler->tag_nocache | $this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; } -#line 2435 "smarty_internal_templateparser.php" -#line 571 "smarty_internal_templateparser.y" - function yy_r180(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } -#line 2438 "smarty_internal_templateparser.php" -#line 572 "smarty_internal_templateparser.y" - function yy_r181(){ +#line 2494 "smarty_internal_templateparser.php" +#line 568 "smarty_internal_templateparser.y" + function yy_r176(){ $this->_retvalue = new _smarty_code($this, '('.$this->yystack[$this->yyidx + -1]->minor.')'); } +#line 2497 "smarty_internal_templateparser.php" +#line 569 "smarty_internal_templateparser.y" + function yy_r177(){ $this->_retvalue = new _smarty_tag($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2443 "smarty_internal_templateparser.php" -#line 575 "smarty_internal_templateparser.y" - function yy_r182(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } -#line 2446 "smarty_internal_templateparser.php" +#line 2502 "smarty_internal_templateparser.php" +#line 572 "smarty_internal_templateparser.y" + function yy_r178(){ $this->_retvalue = new _smarty_dq_content($this, $this->yystack[$this->yyidx + 0]->minor); } +#line 2505 "smarty_internal_templateparser.php" private $_retvalue; @@ -2509,7 +2568,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2509 "smarty_internal_templateparser.php" +#line 2568 "smarty_internal_templateparser.php" } function yy_accept() @@ -2526,7 +2585,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2527 "smarty_internal_templateparser.php" +#line 2586 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)