From 1573bf813ceb082a1b3eeb9d8ecea3722e1ba874 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Thu, 3 Dec 2009 22:39:45 +0000 Subject: [PATCH] - added {for $foo = 1 to 5 step 2} syntax --- change_log.txt | 1 + .../smarty_internal_compile_for.php | 48 +- .../smarty_internal_templatelexer.php | 388 +-- .../smarty_internal_templateparser.php | 2622 +++++++++-------- 4 files changed, 1555 insertions(+), 1504 deletions(-) diff --git a/change_log.txt b/change_log.txt index 34746004..a2ce97a9 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,5 +1,6 @@ 12/03/2009 - template inheritance: child templates can now call functions defined by the {function} tag in the parent template +- added {for $foo = 1 to 5 step 2} syntax 12/01/2009 - fixed parsing of names of special formated tags like if,elseif,while,for,foreach diff --git a/libs/sysplugins/smarty_internal_compile_for.php b/libs/sysplugins/smarty_internal_compile_for.php index 1fe3c4d9..d6e58964 100644 --- a/libs/sysplugins/smarty_internal_compile_for.php +++ b/libs/sysplugins/smarty_internal_compile_for.php @@ -34,20 +34,40 @@ class Smarty_Internal_Compile_For extends Smarty_Internal_CompileBase { { $this->compiler = $compiler; // {for $x=0; $x<$y; $x++} syntax - $this->required_attributes = array('ifexp', 'start', 'loop', 'varloop'); + if (isset($args['ifexp'])) { + $this->required_attributes = array('ifexp', 'start', 'loop', 'varloop'); + } else { + $this->required_attributes = array('start', 'to'); + $this->optional_attributes = array('step'); + } // check and get attributes $_attr = $this->_get_attributes($args); - $this->_open_tag('for', array('for',$this->compiler->nocache)); - // maybe nocache because of nocache variables - $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; + $this->_open_tag('for', array('for', $this->compiler->nocache)); + // maybe nocache because of nocache variables + $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; $output = "tpl_vars[$_statement[var]] = new Smarty_Variable;"; - $output .= " \$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value];\n"; + if (isset($_attr['ifexp'])) { + foreach ($_attr['start'] as $_statement) { + $output .= " \$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;"; + $output .= " \$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value];\n"; + } + $output .= " if ($_attr[ifexp]){ for (\$_foo=true;$_attr[ifexp]; \$_smarty_tpl->tpl_vars[$_attr[varloop]]->value$_attr[loop]){\n"; + } else { + $_statement = $_attr['start']; + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]] = new Smarty_Variable;"; + if (isset($_attr['step'])) { + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = $_attr[step];"; + } else { + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->step = ($_attr[to] - ($_statement[value]) < 0) ? -1 : 1;"; + } + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->total = (int)ceil((\$_smarty_tpl->tpl_vars[$_statement[var]]->step > 0 ? $_attr[to]+1 - $_statement[value] : $_statement[value]-($_attr[to])+1)/abs(\$_smarty_tpl->tpl_vars[$_statement[var]]->step));\n"; + $output .= "if (\$_smarty_tpl->tpl_vars[$_statement[var]]->total > 0){\n"; + $output .= "for (\$_smarty_tpl->tpl_vars[$_statement[var]]->value = $_statement[value], \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration = 1;\$_smarty_tpl->tpl_vars[$_statement[var]]->iteration <= \$_smarty_tpl->tpl_vars[$_statement[var]]->total;\$_smarty_tpl->tpl_vars[$_statement[var]]->value += \$_smarty_tpl->tpl_vars[$_statement[var]]->step, \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration++){\n"; + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->first = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == 1;"; + $output .= "\$_smarty_tpl->tpl_vars[$_statement[var]]->last = \$_smarty_tpl->tpl_vars[$_statement[var]]->iteration == \$_smarty_tpl->tpl_vars[$_statement[var]]->total;"; } - $output .= " if ($_attr[ifexp]){ for (\$_foo=true;$_attr[ifexp]; \$_smarty_tpl->tpl_vars[$_attr[varloop]]->value$_attr[loop]){\n"; $output .= "?>"; // return compiled code return $output; @@ -72,7 +92,7 @@ class Smarty_Internal_Compile_Forelse extends Smarty_Internal_CompileBase { $_attr = $this->_get_attributes($args); list($_open_tag, $nocache) = $this->_close_tag(array('for')); - $this->_open_tag('forelse',array('forelse', $nocache)); + $this->_open_tag('forelse', array('forelse', $nocache)); return ""; } } @@ -92,11 +112,11 @@ class Smarty_Internal_Compile_Forclose extends Smarty_Internal_CompileBase { { $this->compiler = $compiler; // check and get attributes - $_attr = $this->_get_attributes($args); - // must endblock be nocache? - if ($this->compiler->nocache) { - $this->compiler->tag_nocache = true; - } + $_attr = $this->_get_attributes($args); + // must endblock be nocache? + if ($this->compiler->nocache) { + $this->compiler->tag_nocache = true; + } list($_open_tag, $this->compiler->nocache) = $this->_close_tag(array('for', 'forelse')); if ($_open_tag == 'forelse') diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index a36f5f12..d3d25a3b 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -68,6 +68,8 @@ class Smarty_Internal_Templatelexer 'COMMENT' => 'comment', 'LITERALEND' => 'literal close', 'AS' => 'as', + 'TO' => 'to', + 'STEP' => 'step', 'NULL' => 'null', 'BOOLEAN' => 'boolean' ); @@ -390,13 +392,13 @@ class Smarty_Internal_Templatelexer 12 => 0, 13 => 0, 14 => 1, - 16 => 0, - 17 => 0, - 18 => 0, - 19 => 0, + 16 => 1, + 18 => 1, 20 => 0, - 21 => 1, - 23 => 1, + 21 => 0, + 22 => 0, + 23 => 0, + 24 => 0, 25 => 1, 27 => 1, 29 => 1, @@ -406,31 +408,29 @@ class Smarty_Internal_Templatelexer 37 => 1, 39 => 1, 41 => 1, - 43 => 0, - 44 => 0, - 45 => 0, - 46 => 0, + 43 => 1, + 45 => 1, 47 => 0, 48 => 0, 49 => 0, 50 => 0, 51 => 0, 52 => 0, - 53 => 3, - 57 => 0, - 58 => 0, - 59 => 0, - 60 => 0, + 53 => 0, + 54 => 0, + 55 => 0, + 56 => 0, + 57 => 3, 61 => 0, 62 => 0, 63 => 0, - 64 => 1, - 66 => 1, + 64 => 0, + 65 => 0, + 66 => 0, + 67 => 0, 68 => 1, - 70 => 0, - 71 => 0, - 72 => 0, - 73 => 0, + 70 => 1, + 72 => 1, 74 => 0, 75 => 0, 76 => 0, @@ -440,18 +440,22 @@ class Smarty_Internal_Templatelexer 80 => 0, 81 => 0, 82 => 0, - 83 => 1, + 83 => 0, + 84 => 0, 85 => 0, 86 => 0, - 87 => 0, - 88 => 0, + 87 => 1, 89 => 0, 90 => 0, + 91 => 0, + 92 => 0, + 93 => 0, + 94 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^((\\\\\"|\\\\'))|^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -491,75 +495,77 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 3 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 5 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 6 => array(1, "^(".$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+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 7 => array(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+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 8 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 9 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 10 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 14 => array(2, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 16 => array(2, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 17 => array(2, "^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 18 => array(2, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 19 => array(2, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 20 => array(2, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 21 => array(3, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 23 => array(4, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 25 => array(5, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 27 => array(6, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 29 => array(7, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 31 => array(8, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 33 => array(9, "^(!\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 35 => array(10, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 37 => array(11, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 39 => array(12, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 41 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 43 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 44 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 45 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 46 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 47 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 48 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 49 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 50 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 51 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 52 => array(13, "^(\\((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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 53 => array(16, "^(\\(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 57 => array(16, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 58 => array(16, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 59 => array(16, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 60 => array(16, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 61 => array(16, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 62 => array(16, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 63 => array(16, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 64 => array(17, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 66 => array(18, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 68 => array(19, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 70 => array(19, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 71 => array(19, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 72 => array(19, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 73 => array(19, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 74 => array(19, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 75 => array(19, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 76 => array(19, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 77 => array(19, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 78 => array(19, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 79 => array(19, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 80 => array(19, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 81 => array(19, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 82 => array(19, "^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 83 => array(20, "^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 85 => array(20, "^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 86 => array(20, "^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), - 87 => array(20, "^(\\d+)|^(\\s+)|^(.)"), - 88 => array(20, "^(\\s+)|^(.)"), - 89 => array(20, "^(.)"), - 90 => array(20, ""), + 1 => array(0, "^(''|'([\S\s]*?)[^\\\\]')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 3 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 5 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$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+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 6 => array(1, "^(".$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+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 7 => array(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+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 8 => array(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+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 9 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 10 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 11 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 12 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 13 => array(1, "^(\\s+(AS|as)\\s+)|^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 14 => array(2, "^(\\s+(to)\\s+)|^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 16 => array(3, "^(\\s+(step)\\s+)|^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 18 => array(4, "^(\\s+instanceof\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 20 => array(4, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 21 => array(4, "^(null|NULL|Null)|^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 22 => array(4, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 23 => array(4, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 24 => array(4, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 25 => array(5, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 27 => array(6, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 29 => array(7, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 31 => array(8, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 33 => array(9, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 35 => array(10, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 37 => array(11, "^(!\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 39 => array(12, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 41 => array(13, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 43 => array(14, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 45 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 47 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 48 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 49 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 50 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 51 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 52 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 53 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 54 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 55 => array(15, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 56 => array(15, "^(\\((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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 57 => array(18, "^(\\(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 61 => array(18, "^(\\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|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 62 => array(18, "^(\\[\\s*)|^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 63 => array(18, "^(\\s*\\])|^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 64 => array(18, "^(\\s*->\\s*)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 65 => array(18, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 66 => array(18, "^(\\s*=\\s*)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 67 => array(18, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 68 => array(19, "^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 70 => array(20, "^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 72 => array(21, "^(\\$)|^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 74 => array(21, "^(\\s*;)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 75 => array(21, "^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 76 => array(21, "^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 77 => array(21, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 78 => array(21, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 79 => array(21, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 80 => array(21, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 81 => array(21, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 82 => array(21, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 83 => array(21, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 84 => array(21, "^(\\s*&\\s*)|^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 85 => array(21, "^(\\s*\\?\\s*)|^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 86 => array(21, "^((if|elseif|while)(?![^\s]))|^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 87 => array(22, "^(foreach(?![^\s]))|^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 89 => array(22, "^(for(?![^\s]))|^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 90 => array(22, "^([0-9]*[a-zA-Z_]\\w*)|^(\\d+)|^(\\s+)|^(.)"), + 91 => array(22, "^(\\d+)|^(\\s+)|^(.)"), + 92 => array(22, "^(\\s+)|^(.)"), + 93 => array(22, "^(.)"), + 94 => array(22, ""), ); // yymore is needed @@ -702,286 +708,296 @@ class Smarty_Internal_Templatelexer function yy_r2_16($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_INSTANCEOF; - } - function yy_r2_17($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_BOOLEAN; + $this->token = Smarty_Internal_Templateparser::TP_TO; } function yy_r2_18($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_NULL; - } - function yy_r2_19($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_IDENTITY; + $this->token = Smarty_Internal_Templateparser::TP_STEP; } function yy_r2_20($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_NONEIDENTITY; + $this->token = Smarty_Internal_Templateparser::TP_INSTANCEOF; } function yy_r2_21($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_EQUALS; + $this->token = Smarty_Internal_Templateparser::TP_BOOLEAN; + } + function yy_r2_22($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_NULL; } function yy_r2_23($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_NOTEQUALS; + $this->token = Smarty_Internal_Templateparser::TP_IDENTITY; + } + function yy_r2_24($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_NONEIDENTITY; } function yy_r2_25($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_GREATEREQUAL; + $this->token = Smarty_Internal_Templateparser::TP_EQUALS; } function yy_r2_27($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LESSEQUAL; + $this->token = Smarty_Internal_Templateparser::TP_NOTEQUALS; } function yy_r2_29($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_GREATERTHAN; + $this->token = Smarty_Internal_Templateparser::TP_GREATEREQUAL; } function yy_r2_31($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LESSTHAN; + $this->token = Smarty_Internal_Templateparser::TP_LESSEQUAL; } function yy_r2_33($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_MOD; + $this->token = Smarty_Internal_Templateparser::TP_GREATERTHAN; } function yy_r2_35($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_NOT; + $this->token = Smarty_Internal_Templateparser::TP_LESSTHAN; } function yy_r2_37($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LAND; + $this->token = Smarty_Internal_Templateparser::TP_MOD; } function yy_r2_39($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LOR; + $this->token = Smarty_Internal_Templateparser::TP_NOT; } function yy_r2_41($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LXOR; + $this->token = Smarty_Internal_Templateparser::TP_LAND; } function yy_r2_43($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISODDBY; - } - function yy_r2_44($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY; + $this->token = Smarty_Internal_Templateparser::TP_LOR; } function yy_r2_45($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISODD; - } - function yy_r2_46($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD; + $this->token = Smarty_Internal_Templateparser::TP_LXOR; } function yy_r2_47($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY; + $this->token = Smarty_Internal_Templateparser::TP_ISODDBY; } function yy_r2_48($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTODDBY; } function yy_r2_49($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISEVEN; + $this->token = Smarty_Internal_Templateparser::TP_ISODD; } function yy_r2_50($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTODD; } function yy_r2_51($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY; + $this->token = Smarty_Internal_Templateparser::TP_ISEVENBY; } function yy_r2_52($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY; + $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVENBY; } function yy_r2_53($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_TYPECAST; + $this->token = Smarty_Internal_Templateparser::TP_ISEVEN; + } + function yy_r2_54($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_ISNOTEVEN; + } + function yy_r2_55($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_ISDIVBY; + } + function yy_r2_56($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_ISNOTDIVBY; } function yy_r2_57($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_OPENP; - } - function yy_r2_58($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_CLOSEP; - } - function yy_r2_59($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_OPENB; - } - function yy_r2_60($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_CLOSEB; + $this->token = Smarty_Internal_Templateparser::TP_TYPECAST; } function yy_r2_61($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_PTR; + $this->token = Smarty_Internal_Templateparser::TP_OPENP; } function yy_r2_62($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_APTR; + $this->token = Smarty_Internal_Templateparser::TP_CLOSEP; } function yy_r2_63($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_EQUAL; + $this->token = Smarty_Internal_Templateparser::TP_OPENB; } function yy_r2_64($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_INCDEC; + $this->token = Smarty_Internal_Templateparser::TP_CLOSEB; + } + function yy_r2_65($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_PTR; } function yy_r2_66($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; + $this->token = Smarty_Internal_Templateparser::TP_APTR; + } + function yy_r2_67($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_EQUAL; } function yy_r2_68($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_MATH; + $this->token = Smarty_Internal_Templateparser::TP_INCDEC; } function yy_r2_70($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; - } - function yy_r2_71($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; + $this->token = Smarty_Internal_Templateparser::TP_UNIMATH; } function yy_r2_72($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; - } - function yy_r2_73($yy_subpatterns) - { - - $this->token = Smarty_Internal_Templateparser::TP_COLON; + $this->token = Smarty_Internal_Templateparser::TP_MATH; } function yy_r2_74($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_AT; + $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; } function yy_r2_75($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_HATCH; + $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; } function yy_r2_76($yy_subpatterns) { + $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; + } + function yy_r2_77($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_COLON; + } + function yy_r2_78($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_AT; + } + function yy_r2_79($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_HATCH; + } + function yy_r2_80($yy_subpatterns) + { + $this->token = Smarty_Internal_Templateparser::TP_QUOTE; $this->yypushstate(self::DOUBLEQUOTEDSTRING); } - function yy_r2_77($yy_subpatterns) + function yy_r2_81($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; $this->yypopstate(); } - function yy_r2_78($yy_subpatterns) + function yy_r2_82($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_VERT; } - function yy_r2_79($yy_subpatterns) + function yy_r2_83($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_DOT; } - function yy_r2_80($yy_subpatterns) + function yy_r2_84($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_COMMA; } - function yy_r2_81($yy_subpatterns) + function yy_r2_85($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; } - function yy_r2_82($yy_subpatterns) + function yy_r2_86($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_QMARK; } - function yy_r2_83($yy_subpatterns) + function yy_r2_87($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_IF; } - function yy_r2_85($yy_subpatterns) + function yy_r2_89($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_FOREACH; } - function yy_r2_86($yy_subpatterns) + function yy_r2_90($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_FOR; } - function yy_r2_87($yy_subpatterns) + function yy_r2_91($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_ID; } - function yy_r2_88($yy_subpatterns) + function yy_r2_92($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_INTEGER; } - function yy_r2_89($yy_subpatterns) + function yy_r2_93($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SPACE; } - function yy_r2_90($yy_subpatterns) + function yy_r2_94($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 dcdeb3fb..307a1271 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -170,60 +170,62 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_FOR = 16; const TP_SEMICOLON = 17; const TP_INCDEC = 18; - const TP_AS = 19; - const TP_APTR = 20; - const TP_LDELSLASH = 21; - const TP_INTEGER = 22; - const TP_COMMA = 23; - const TP_COLON = 24; - const TP_UNIMATH = 25; - const TP_OPENP = 26; - const TP_CLOSEP = 27; - const TP_QMARK = 28; - const TP_MATH = 29; - const TP_ANDSYM = 30; - const TP_TYPECAST = 31; - const TP_DOT = 32; - const TP_BOOLEAN = 33; - const TP_NULL = 34; - const TP_SINGLEQUOTESTRING = 35; - const TP_QUOTE = 36; - const TP_DOUBLECOLON = 37; - const TP_AT = 38; - const TP_HATCH = 39; - const TP_OPENB = 40; - const TP_CLOSEB = 41; - const TP_VERT = 42; - const TP_NOT = 43; - const TP_ISIN = 44; - const TP_ISDIVBY = 45; - const TP_ISNOTDIVBY = 46; - const TP_ISEVEN = 47; - const TP_ISNOTEVEN = 48; - const TP_ISEVENBY = 49; - const TP_ISNOTEVENBY = 50; - const TP_ISODD = 51; - const TP_ISNOTODD = 52; - const TP_ISODDBY = 53; - const TP_ISNOTODDBY = 54; - const TP_INSTANCEOF = 55; - const TP_EQUALS = 56; - const TP_NOTEQUALS = 57; - const TP_GREATERTHAN = 58; - const TP_LESSTHAN = 59; - const TP_GREATEREQUAL = 60; - const TP_LESSEQUAL = 61; - const TP_IDENTITY = 62; - const TP_NONEIDENTITY = 63; - const TP_MOD = 64; - const TP_LAND = 65; - const TP_LOR = 66; - const TP_LXOR = 67; - const TP_BACKTICK = 68; - const TP_DOLLARID = 69; - const YY_NO_ACTION = 536; - const YY_ACCEPT_ACTION = 535; - const YY_ERROR_ACTION = 534; + const TP_TO = 19; + const TP_STEP = 20; + const TP_AS = 21; + const TP_APTR = 22; + const TP_LDELSLASH = 23; + const TP_INTEGER = 24; + const TP_COMMA = 25; + const TP_COLON = 26; + const TP_UNIMATH = 27; + const TP_OPENP = 28; + const TP_CLOSEP = 29; + const TP_QMARK = 30; + const TP_MATH = 31; + const TP_ANDSYM = 32; + const TP_TYPECAST = 33; + const TP_DOT = 34; + const TP_BOOLEAN = 35; + const TP_NULL = 36; + const TP_SINGLEQUOTESTRING = 37; + const TP_QUOTE = 38; + const TP_DOUBLECOLON = 39; + const TP_AT = 40; + const TP_HATCH = 41; + const TP_OPENB = 42; + const TP_CLOSEB = 43; + const TP_VERT = 44; + const TP_NOT = 45; + const TP_ISIN = 46; + const TP_ISDIVBY = 47; + const TP_ISNOTDIVBY = 48; + const TP_ISEVEN = 49; + const TP_ISNOTEVEN = 50; + const TP_ISEVENBY = 51; + const TP_ISNOTEVENBY = 52; + const TP_ISODD = 53; + const TP_ISNOTODD = 54; + const TP_ISODDBY = 55; + const TP_ISNOTODDBY = 56; + const TP_INSTANCEOF = 57; + const TP_EQUALS = 58; + const TP_NOTEQUALS = 59; + const TP_GREATERTHAN = 60; + const TP_LESSTHAN = 61; + const TP_GREATEREQUAL = 62; + const TP_LESSEQUAL = 63; + const TP_IDENTITY = 64; + const TP_NONEIDENTITY = 65; + const TP_MOD = 66; + const TP_LAND = 67; + const TP_LOR = 68; + const TP_LXOR = 69; + const TP_BACKTICK = 70; + const TP_DOLLARID = 71; + const YY_NO_ACTION = 544; + const YY_ACCEPT_ACTION = 543; + const YY_ERROR_ACTION = 542; /* Next are that tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement @@ -275,561 +277,553 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph ** shifting non-terminals after a reduce. ** self::$yy_default Default action for each state. */ - const YY_SZ_ACTTAB = 1335; + const YY_SZ_ACTTAB = 1288; static public $yy_action = array( - /* 0 */ 15, 20, 73, 48, 50, 87, 259, 210, 257, 216, - /* 10 */ 258, 46, 141, 252, 109, 189, 290, 14, 45, 11, - /* 20 */ 299, 344, 31, 291, 58, 302, 332, 310, 336, 49, - /* 30 */ 47, 109, 54, 13, 15, 218, 75, 183, 38, 269, - /* 40 */ 220, 184, 212, 162, 31, 86, 243, 302, 109, 189, - /* 50 */ 224, 200, 45, 7, 325, 26, 47, 110, 58, 313, - /* 60 */ 332, 310, 336, 49, 38, 300, 54, 13, 277, 15, - /* 70 */ 5, 81, 170, 174, 287, 217, 191, 31, 56, 253, - /* 80 */ 302, 25, 46, 109, 189, 290, 21, 45, 27, 299, - /* 90 */ 344, 31, 343, 58, 302, 332, 310, 336, 49, 227, - /* 100 */ 169, 54, 13, 233, 15, 20, 84, 183, 217, 269, - /* 110 */ 326, 206, 212, 59, 89, 86, 141, 176, 109, 189, - /* 120 */ 238, 347, 45, 7, 325, 225, 40, 110, 58, 313, - /* 130 */ 332, 310, 336, 49, 184, 300, 54, 13, 168, 176, - /* 140 */ 5, 86, 23, 4, 2, 351, 352, 3, 8, 340, - /* 150 */ 342, 9, 10, 15, 290, 75, 183, 273, 299, 344, - /* 160 */ 282, 300, 254, 301, 298, 292, 184, 109, 189, 142, - /* 170 */ 237, 45, 27, 15, 166, 75, 183, 58, 20, 332, - /* 180 */ 310, 336, 49, 67, 330, 54, 13, 109, 189, 141, - /* 190 */ 34, 45, 11, 15, 411, 75, 171, 58, 249, 332, - /* 200 */ 310, 336, 49, 164, 146, 54, 13, 109, 189, 19, - /* 210 */ 31, 45, 27, 302, 25, 31, 322, 58, 302, 332, - /* 220 */ 310, 336, 49, 40, 308, 54, 13, 24, 186, 81, - /* 230 */ 129, 176, 4, 2, 351, 352, 3, 8, 340, 342, - /* 240 */ 9, 10, 15, 159, 81, 177, 321, 31, 318, 57, - /* 250 */ 302, 36, 301, 298, 292, 204, 109, 189, 289, 54, - /* 260 */ 45, 27, 15, 324, 81, 179, 58, 190, 332, 310, - /* 270 */ 336, 49, 113, 323, 54, 13, 109, 189, 184, 252, - /* 280 */ 45, 27, 208, 14, 294, 311, 58, 346, 332, 310, - /* 290 */ 336, 49, 176, 353, 54, 13, 304, 109, 535, 66, - /* 300 */ 267, 268, 4, 2, 351, 352, 3, 8, 340, 342, - /* 310 */ 9, 10, 251, 242, 31, 303, 116, 302, 211, 401, - /* 320 */ 176, 144, 301, 298, 292, 348, 176, 151, 86, 349, - /* 330 */ 4, 2, 351, 352, 3, 8, 340, 342, 9, 10, - /* 340 */ 15, 22, 75, 172, 56, 253, 334, 184, 300, 115, - /* 350 */ 301, 298, 292, 176, 109, 189, 349, 29, 45, 11, - /* 360 */ 184, 81, 194, 20, 58, 329, 332, 310, 336, 49, - /* 370 */ 164, 120, 54, 13, 141, 130, 4, 2, 351, 352, - /* 380 */ 3, 8, 340, 342, 9, 10, 15, 70, 81, 179, - /* 390 */ 330, 54, 295, 222, 157, 35, 301, 298, 292, 176, - /* 400 */ 109, 189, 346, 323, 317, 27, 15, 86, 81, 173, - /* 410 */ 58, 62, 332, 310, 336, 49, 135, 244, 54, 13, - /* 420 */ 109, 178, 69, 191, 176, 27, 15, 300, 81, 179, - /* 430 */ 58, 330, 332, 310, 336, 49, 335, 346, 54, 13, - /* 440 */ 109, 189, 18, 176, 323, 27, 15, 83, 81, 181, - /* 450 */ 58, 184, 332, 310, 336, 49, 126, 20, 54, 31, - /* 460 */ 109, 189, 302, 207, 203, 27, 196, 86, 141, 86, - /* 470 */ 58, 330, 332, 310, 336, 49, 269, 221, 54, 212, - /* 480 */ 65, 270, 86, 324, 323, 96, 198, 300, 176, 300, - /* 490 */ 139, 325, 245, 195, 110, 164, 313, 404, 184, 176, - /* 500 */ 42, 167, 300, 85, 404, 330, 122, 327, 184, 345, - /* 510 */ 42, 163, 250, 234, 235, 236, 231, 229, 230, 255, - /* 520 */ 240, 330, 250, 234, 235, 236, 231, 229, 230, 255, - /* 530 */ 240, 262, 30, 269, 221, 184, 212, 65, 176, 86, - /* 540 */ 161, 39, 97, 81, 296, 318, 31, 125, 325, 175, - /* 550 */ 184, 110, 164, 313, 269, 221, 315, 212, 65, 300, - /* 560 */ 86, 145, 330, 100, 327, 184, 318, 305, 306, 325, - /* 570 */ 246, 182, 110, 54, 313, 269, 221, 68, 212, 65, - /* 580 */ 300, 86, 138, 123, 103, 327, 81, 164, 165, 286, - /* 590 */ 325, 31, 346, 110, 226, 313, 176, 330, 330, 269, - /* 600 */ 221, 300, 212, 65, 354, 86, 327, 254, 102, 269, - /* 610 */ 221, 176, 212, 65, 325, 86, 54, 110, 101, 313, - /* 620 */ 16, 316, 46, 284, 325, 300, 314, 110, 176, 313, - /* 630 */ 327, 32, 108, 176, 320, 300, 184, 339, 42, 265, - /* 640 */ 327, 176, 349, 241, 266, 268, 176, 346, 337, 184, - /* 650 */ 250, 234, 235, 236, 231, 229, 230, 255, 240, 269, - /* 660 */ 221, 133, 212, 65, 304, 86, 331, 155, 104, 239, - /* 670 */ 1, 184, 318, 176, 325, 307, 176, 110, 112, 313, - /* 680 */ 269, 221, 176, 212, 65, 300, 86, 106, 111, 98, - /* 690 */ 327, 213, 256, 346, 33, 325, 187, 134, 110, 176, - /* 700 */ 313, 137, 346, 346, 269, 221, 300, 212, 64, 82, - /* 710 */ 86, 327, 330, 95, 283, 6, 330, 124, 143, 325, - /* 720 */ 227, 341, 110, 118, 313, 269, 221, 153, 212, 63, - /* 730 */ 300, 86, 330, 330, 93, 327, 37, 263, 330, 140, - /* 740 */ 325, 338, 43, 110, 280, 313, 202, 309, 188, 269, - /* 750 */ 221, 300, 212, 65, 330, 86, 327, 260, 94, 269, - /* 760 */ 221, 297, 212, 65, 325, 86, 26, 110, 99, 313, - /* 770 */ 78, 261, 28, 77, 325, 300, 293, 110, 18, 313, - /* 780 */ 327, 248, 19, 269, 326, 300, 212, 117, 232, 86, - /* 790 */ 327, 272, 209, 276, 274, 215, 275, 15, 325, 90, - /* 800 */ 278, 110, 185, 313, 269, 220, 264, 212, 162, 300, - /* 810 */ 86, 109, 350, 61, 76, 269, 319, 60, 212, 325, - /* 820 */ 321, 86, 110, 228, 313, 269, 326, 80, 212, 117, - /* 830 */ 300, 86, 44, 193, 41, 313, 304, 128, 176, 285, - /* 840 */ 325, 300, 92, 110, 53, 313, 17, 333, 205, 269, - /* 850 */ 219, 300, 212, 51, 91, 86, 12, 214, 279, 292, - /* 860 */ 292, 292, 292, 292, 325, 292, 292, 110, 292, 313, - /* 870 */ 292, 292, 292, 269, 180, 300, 212, 154, 271, 86, - /* 880 */ 269, 326, 292, 212, 117, 292, 86, 292, 325, 292, - /* 890 */ 292, 110, 292, 313, 292, 325, 292, 292, 110, 300, - /* 900 */ 313, 292, 292, 223, 269, 79, 300, 71, 55, 88, - /* 910 */ 74, 292, 292, 292, 292, 269, 328, 292, 212, 325, - /* 920 */ 292, 86, 110, 292, 313, 292, 292, 292, 269, 79, - /* 930 */ 300, 72, 52, 88, 74, 313, 292, 292, 292, 292, - /* 940 */ 292, 300, 292, 325, 292, 292, 110, 292, 313, 269, - /* 950 */ 326, 292, 212, 117, 300, 86, 269, 326, 292, 212, - /* 960 */ 158, 292, 86, 292, 325, 292, 292, 110, 292, 313, - /* 970 */ 292, 325, 201, 292, 110, 300, 313, 292, 292, 292, - /* 980 */ 269, 326, 300, 212, 148, 292, 86, 292, 292, 292, - /* 990 */ 292, 269, 247, 292, 212, 325, 292, 86, 110, 292, - /* 1000 */ 313, 292, 292, 292, 269, 326, 300, 212, 132, 292, - /* 1010 */ 86, 313, 292, 292, 292, 292, 292, 300, 292, 325, - /* 1020 */ 292, 292, 110, 292, 313, 269, 326, 292, 212, 119, - /* 1030 */ 300, 86, 269, 326, 292, 212, 136, 292, 86, 292, - /* 1040 */ 325, 292, 292, 110, 292, 313, 292, 325, 292, 292, - /* 1050 */ 110, 300, 313, 292, 292, 292, 269, 326, 300, 212, - /* 1060 */ 147, 292, 86, 292, 292, 292, 292, 292, 292, 292, - /* 1070 */ 292, 325, 292, 292, 110, 292, 313, 292, 292, 292, - /* 1080 */ 269, 326, 300, 212, 149, 292, 86, 292, 292, 292, - /* 1090 */ 292, 292, 292, 292, 292, 325, 292, 292, 110, 292, - /* 1100 */ 313, 269, 326, 292, 212, 121, 300, 86, 269, 326, - /* 1110 */ 292, 212, 152, 292, 86, 292, 325, 292, 292, 110, - /* 1120 */ 292, 313, 292, 325, 292, 292, 110, 300, 313, 292, - /* 1130 */ 292, 292, 269, 326, 300, 212, 156, 292, 86, 292, - /* 1140 */ 292, 292, 292, 292, 292, 292, 292, 325, 292, 292, - /* 1150 */ 110, 292, 313, 292, 292, 292, 269, 326, 300, 212, - /* 1160 */ 160, 292, 86, 292, 292, 292, 292, 292, 292, 292, - /* 1170 */ 292, 325, 292, 292, 110, 292, 313, 269, 326, 292, - /* 1180 */ 212, 150, 300, 86, 269, 326, 292, 212, 127, 292, - /* 1190 */ 86, 292, 325, 292, 292, 110, 292, 313, 292, 325, - /* 1200 */ 292, 292, 110, 300, 313, 292, 292, 292, 269, 326, - /* 1210 */ 300, 212, 131, 292, 86, 292, 292, 292, 292, 292, - /* 1220 */ 292, 292, 292, 325, 292, 292, 110, 292, 313, 292, - /* 1230 */ 292, 292, 269, 326, 300, 212, 292, 292, 86, 292, - /* 1240 */ 292, 292, 292, 292, 292, 292, 292, 325, 292, 292, - /* 1250 */ 107, 292, 313, 269, 326, 292, 212, 292, 300, 86, - /* 1260 */ 269, 326, 292, 212, 292, 292, 86, 292, 325, 292, - /* 1270 */ 292, 114, 292, 313, 292, 325, 292, 292, 105, 300, - /* 1280 */ 313, 292, 292, 292, 269, 192, 300, 212, 312, 292, - /* 1290 */ 86, 292, 292, 199, 292, 176, 292, 292, 292, 197, - /* 1300 */ 292, 292, 292, 292, 313, 292, 20, 292, 269, 288, - /* 1310 */ 300, 212, 292, 292, 86, 292, 292, 141, 292, 292, - /* 1320 */ 292, 292, 184, 281, 292, 292, 292, 292, 313, 292, - /* 1330 */ 292, 292, 292, 292, 300, + /* 0 */ 15, 86, 75, 50, 22, 89, 49, 204, 31, 201, + /* 10 */ 209, 327, 39, 22, 40, 147, 110, 193, 299, 241, + /* 20 */ 45, 11, 126, 203, 147, 182, 58, 167, 273, 274, + /* 30 */ 285, 51, 20, 56, 56, 13, 15, 290, 79, 178, + /* 40 */ 136, 197, 27, 344, 215, 171, 202, 162, 22, 87, + /* 50 */ 347, 23, 110, 193, 180, 290, 45, 6, 284, 147, + /* 60 */ 252, 112, 58, 275, 273, 274, 285, 51, 22, 311, + /* 70 */ 56, 13, 28, 15, 4, 86, 174, 186, 342, 147, + /* 80 */ 344, 292, 256, 202, 63, 93, 87, 276, 31, 110, + /* 90 */ 193, 327, 39, 45, 24, 284, 180, 150, 112, 58, + /* 100 */ 275, 273, 274, 285, 51, 154, 311, 56, 13, 238, + /* 110 */ 15, 35, 80, 178, 169, 325, 168, 87, 180, 52, + /* 120 */ 195, 244, 182, 247, 270, 246, 110, 193, 266, 265, + /* 130 */ 45, 6, 36, 242, 190, 22, 58, 311, 273, 274, + /* 140 */ 285, 51, 237, 269, 56, 13, 147, 15, 4, 79, + /* 150 */ 178, 180, 180, 17, 344, 185, 173, 202, 157, 245, + /* 160 */ 87, 270, 258, 110, 193, 266, 265, 45, 24, 284, + /* 170 */ 86, 194, 112, 58, 275, 273, 274, 285, 51, 180, + /* 180 */ 311, 56, 13, 15, 289, 79, 177, 87, 224, 226, + /* 190 */ 344, 82, 180, 74, 54, 91, 81, 264, 262, 110, + /* 200 */ 193, 230, 56, 45, 11, 284, 208, 311, 112, 58, + /* 210 */ 275, 273, 274, 285, 51, 191, 311, 56, 13, 25, + /* 220 */ 192, 86, 134, 87, 3, 2, 337, 336, 5, 7, + /* 230 */ 321, 322, 10, 9, 15, 12, 86, 188, 234, 31, + /* 240 */ 330, 333, 327, 311, 319, 318, 314, 18, 182, 31, + /* 250 */ 110, 193, 205, 56, 45, 24, 543, 68, 250, 360, + /* 260 */ 58, 277, 273, 274, 285, 51, 180, 316, 56, 13, + /* 270 */ 344, 354, 152, 202, 182, 118, 87, 3, 2, 337, + /* 280 */ 336, 5, 7, 321, 322, 10, 9, 196, 294, 31, + /* 290 */ 275, 231, 327, 29, 315, 182, 311, 319, 318, 314, + /* 300 */ 254, 326, 3, 2, 337, 336, 5, 7, 321, 322, + /* 310 */ 10, 9, 3, 2, 337, 336, 5, 7, 321, 322, + /* 320 */ 10, 9, 319, 318, 314, 15, 119, 86, 181, 326, + /* 330 */ 409, 270, 319, 318, 314, 266, 265, 182, 62, 37, + /* 340 */ 300, 110, 193, 16, 48, 45, 24, 240, 32, 31, + /* 350 */ 329, 58, 327, 273, 274, 285, 51, 180, 221, 56, + /* 360 */ 13, 15, 33, 79, 176, 49, 323, 218, 353, 313, + /* 370 */ 227, 350, 15, 40, 182, 320, 287, 110, 193, 120, + /* 380 */ 180, 45, 24, 182, 171, 159, 300, 58, 110, 273, + /* 390 */ 274, 285, 51, 158, 290, 56, 13, 15, 301, 79, + /* 400 */ 178, 87, 220, 180, 344, 82, 165, 73, 64, 91, + /* 410 */ 81, 271, 31, 110, 193, 327, 232, 45, 11, 284, + /* 420 */ 236, 311, 112, 58, 275, 273, 274, 285, 51, 171, + /* 430 */ 311, 56, 13, 263, 360, 3, 2, 337, 336, 5, + /* 440 */ 7, 321, 322, 10, 9, 15, 17, 86, 175, 259, + /* 450 */ 19, 146, 48, 14, 34, 319, 318, 314, 228, 187, + /* 460 */ 180, 110, 179, 70, 48, 15, 24, 86, 188, 110, + /* 470 */ 122, 58, 207, 273, 274, 285, 51, 351, 268, 56, + /* 480 */ 13, 110, 193, 412, 257, 290, 24, 180, 308, 44, + /* 490 */ 412, 58, 180, 273, 274, 285, 51, 171, 291, 56, + /* 500 */ 13, 340, 341, 348, 349, 356, 357, 358, 359, 355, + /* 510 */ 15, 213, 86, 188, 87, 125, 59, 260, 31, 328, + /* 520 */ 170, 327, 123, 55, 182, 31, 110, 193, 327, 31, + /* 530 */ 290, 24, 183, 219, 311, 41, 58, 290, 273, 274, + /* 540 */ 285, 51, 344, 211, 56, 202, 67, 61, 87, 127, + /* 550 */ 291, 97, 189, 15, 172, 86, 184, 284, 197, 332, + /* 560 */ 112, 351, 275, 132, 290, 72, 182, 60, 311, 110, + /* 570 */ 193, 71, 161, 352, 24, 310, 180, 271, 44, 58, + /* 580 */ 268, 273, 274, 285, 51, 214, 268, 56, 78, 22, + /* 590 */ 340, 341, 348, 349, 356, 357, 358, 359, 355, 221, + /* 600 */ 147, 312, 1, 344, 211, 419, 202, 67, 182, 87, + /* 610 */ 166, 258, 105, 344, 211, 271, 202, 67, 284, 87, + /* 620 */ 281, 112, 106, 275, 307, 142, 306, 182, 284, 311, + /* 630 */ 171, 112, 69, 275, 352, 180, 278, 44, 190, 311, + /* 640 */ 290, 35, 21, 182, 352, 31, 331, 235, 327, 340, + /* 650 */ 341, 348, 349, 356, 357, 358, 359, 355, 344, 211, + /* 660 */ 216, 202, 67, 42, 87, 86, 302, 100, 344, 211, + /* 670 */ 115, 202, 67, 284, 87, 335, 112, 96, 275, 57, + /* 680 */ 305, 199, 182, 284, 311, 268, 112, 90, 275, 352, + /* 690 */ 243, 303, 304, 124, 311, 317, 248, 56, 297, 352, + /* 700 */ 344, 211, 182, 202, 67, 182, 87, 300, 290, 102, + /* 710 */ 344, 211, 114, 202, 65, 284, 87, 324, 112, 95, + /* 720 */ 275, 291, 280, 255, 182, 284, 311, 268, 112, 182, + /* 730 */ 275, 352, 309, 279, 344, 211, 311, 202, 67, 295, + /* 740 */ 87, 352, 117, 99, 344, 211, 182, 202, 67, 284, + /* 750 */ 87, 137, 112, 104, 275, 38, 283, 268, 180, 284, + /* 760 */ 311, 282, 112, 182, 275, 352, 290, 286, 182, 272, + /* 770 */ 311, 334, 346, 84, 182, 352, 344, 211, 182, 202, + /* 780 */ 67, 77, 87, 344, 211, 103, 202, 67, 296, 87, + /* 790 */ 107, 284, 101, 108, 112, 182, 275, 180, 284, 223, + /* 800 */ 76, 112, 311, 275, 128, 268, 155, 352, 268, 311, + /* 810 */ 85, 271, 344, 211, 352, 202, 66, 261, 87, 290, + /* 820 */ 141, 98, 344, 292, 94, 202, 131, 284, 87, 259, + /* 830 */ 112, 233, 275, 14, 210, 290, 143, 284, 311, 130, + /* 840 */ 112, 26, 275, 352, 30, 345, 145, 46, 311, 110, + /* 850 */ 239, 290, 344, 292, 290, 202, 131, 267, 87, 344, + /* 860 */ 292, 290, 202, 131, 249, 87, 23, 284, 310, 182, + /* 870 */ 112, 298, 275, 326, 284, 217, 43, 112, 311, 275, + /* 880 */ 344, 292, 212, 202, 131, 311, 87, 47, 140, 83, + /* 890 */ 291, 198, 251, 8, 253, 284, 59, 260, 112, 41, + /* 900 */ 275, 92, 296, 229, 344, 206, 311, 202, 53, 88, + /* 910 */ 87, 296, 296, 200, 344, 215, 296, 202, 162, 284, + /* 920 */ 87, 296, 112, 296, 275, 296, 296, 296, 296, 284, + /* 930 */ 311, 296, 112, 296, 275, 344, 292, 296, 202, 144, + /* 940 */ 311, 87, 344, 292, 296, 202, 148, 296, 87, 343, + /* 950 */ 284, 296, 296, 112, 296, 275, 296, 284, 296, 296, + /* 960 */ 112, 311, 275, 344, 292, 296, 202, 163, 311, 87, + /* 970 */ 296, 296, 296, 296, 296, 296, 296, 296, 284, 296, + /* 980 */ 296, 112, 296, 275, 344, 292, 296, 202, 113, 311, + /* 990 */ 87, 344, 292, 296, 202, 138, 296, 87, 296, 284, + /* 1000 */ 296, 296, 112, 296, 275, 296, 284, 296, 296, 112, + /* 1010 */ 311, 275, 344, 292, 296, 202, 151, 311, 87, 344, + /* 1020 */ 292, 296, 202, 133, 296, 87, 296, 284, 296, 296, + /* 1030 */ 112, 296, 275, 296, 284, 296, 296, 112, 311, 275, + /* 1040 */ 344, 292, 296, 202, 149, 311, 87, 296, 296, 296, + /* 1050 */ 296, 296, 296, 296, 296, 284, 296, 296, 112, 296, + /* 1060 */ 275, 344, 292, 296, 202, 129, 311, 87, 344, 292, + /* 1070 */ 296, 202, 135, 296, 87, 296, 284, 296, 296, 112, + /* 1080 */ 296, 275, 296, 284, 296, 296, 112, 311, 275, 344, + /* 1090 */ 292, 296, 202, 139, 311, 87, 344, 292, 296, 202, + /* 1100 */ 153, 296, 87, 296, 284, 296, 296, 112, 296, 275, + /* 1110 */ 296, 284, 296, 296, 112, 311, 275, 344, 292, 296, + /* 1120 */ 202, 164, 311, 87, 296, 296, 296, 296, 296, 296, + /* 1130 */ 296, 296, 284, 296, 296, 112, 296, 275, 344, 292, + /* 1140 */ 296, 202, 160, 311, 87, 344, 292, 296, 202, 156, + /* 1150 */ 296, 87, 296, 284, 296, 296, 112, 296, 275, 296, + /* 1160 */ 284, 296, 296, 112, 311, 275, 344, 292, 296, 202, + /* 1170 */ 121, 311, 87, 344, 292, 296, 202, 296, 296, 87, + /* 1180 */ 296, 284, 296, 296, 112, 296, 275, 296, 284, 296, + /* 1190 */ 296, 116, 311, 275, 344, 292, 296, 202, 296, 311, + /* 1200 */ 87, 296, 296, 296, 296, 296, 296, 296, 296, 284, + /* 1210 */ 296, 296, 109, 296, 275, 344, 292, 296, 202, 296, + /* 1220 */ 311, 87, 344, 339, 296, 202, 296, 296, 87, 296, + /* 1230 */ 284, 296, 296, 111, 296, 275, 296, 338, 296, 296, + /* 1240 */ 296, 311, 275, 344, 225, 296, 202, 296, 311, 87, + /* 1250 */ 344, 293, 296, 202, 296, 296, 87, 296, 222, 296, + /* 1260 */ 296, 344, 288, 275, 202, 296, 296, 87, 296, 311, + /* 1270 */ 275, 296, 296, 296, 296, 296, 311, 296, 296, 296, + /* 1280 */ 296, 275, 296, 296, 296, 296, 296, 311, ); static public $yy_lookahead = array( - /* 0 */ 7, 26, 9, 10, 10, 12, 12, 14, 14, 16, - /* 10 */ 16, 13, 37, 3, 21, 22, 25, 7, 25, 26, - /* 20 */ 29, 30, 7, 8, 31, 10, 33, 34, 35, 36, - /* 30 */ 32, 21, 39, 40, 7, 20, 9, 10, 40, 74, - /* 40 */ 75, 42, 77, 78, 7, 80, 36, 10, 21, 22, - /* 50 */ 9, 10, 25, 26, 89, 11, 32, 92, 31, 94, - /* 60 */ 33, 34, 35, 36, 40, 100, 39, 40, 8, 7, - /* 70 */ 43, 9, 10, 108, 109, 38, 32, 7, 68, 69, - /* 80 */ 10, 11, 13, 21, 22, 25, 11, 25, 26, 29, - /* 90 */ 30, 7, 8, 31, 10, 33, 34, 35, 36, 24, - /* 100 */ 8, 39, 40, 41, 7, 26, 9, 10, 38, 74, - /* 110 */ 75, 32, 77, 78, 79, 80, 37, 15, 21, 22, - /* 120 */ 41, 103, 25, 26, 89, 27, 24, 92, 31, 94, - /* 130 */ 33, 34, 35, 36, 42, 100, 39, 40, 77, 15, - /* 140 */ 43, 80, 23, 45, 46, 47, 48, 49, 50, 51, - /* 150 */ 52, 53, 54, 7, 25, 9, 10, 96, 29, 30, - /* 160 */ 41, 100, 74, 65, 66, 67, 42, 21, 22, 76, - /* 170 */ 41, 25, 26, 7, 81, 9, 10, 31, 26, 33, - /* 180 */ 34, 35, 36, 95, 91, 39, 40, 21, 22, 37, - /* 190 */ 7, 25, 26, 7, 42, 9, 10, 31, 110, 33, - /* 200 */ 34, 35, 36, 81, 17, 39, 40, 21, 22, 26, - /* 210 */ 7, 25, 26, 10, 11, 7, 8, 31, 10, 33, - /* 220 */ 34, 35, 36, 24, 8, 39, 40, 7, 20, 9, - /* 230 */ 10, 15, 45, 46, 47, 48, 49, 50, 51, 52, - /* 240 */ 53, 54, 7, 98, 9, 10, 101, 7, 103, 82, - /* 250 */ 10, 11, 65, 66, 67, 10, 21, 22, 18, 39, - /* 260 */ 25, 26, 7, 27, 9, 10, 31, 22, 33, 34, - /* 270 */ 35, 36, 87, 104, 39, 40, 21, 22, 42, 3, - /* 280 */ 25, 26, 88, 7, 27, 8, 31, 102, 33, 34, - /* 290 */ 35, 36, 15, 8, 39, 40, 102, 21, 71, 72, - /* 300 */ 73, 74, 45, 46, 47, 48, 49, 50, 51, 52, - /* 310 */ 53, 54, 36, 8, 7, 8, 99, 10, 13, 8, - /* 320 */ 15, 17, 65, 66, 67, 77, 15, 23, 80, 18, - /* 330 */ 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, - /* 340 */ 7, 23, 9, 10, 68, 69, 8, 42, 100, 99, - /* 350 */ 65, 66, 67, 15, 21, 22, 18, 20, 25, 26, - /* 360 */ 42, 9, 10, 26, 31, 10, 33, 34, 35, 36, - /* 370 */ 81, 99, 39, 40, 37, 76, 45, 46, 47, 48, - /* 380 */ 49, 50, 51, 52, 53, 54, 7, 87, 9, 10, - /* 390 */ 91, 39, 8, 38, 82, 106, 65, 66, 67, 15, - /* 400 */ 21, 22, 102, 104, 77, 26, 7, 80, 9, 10, - /* 410 */ 31, 82, 33, 34, 35, 36, 76, 8, 39, 40, - /* 420 */ 21, 22, 87, 32, 15, 26, 7, 100, 9, 10, - /* 430 */ 31, 91, 33, 34, 35, 36, 8, 102, 39, 40, - /* 440 */ 21, 22, 11, 15, 104, 26, 7, 9, 9, 10, - /* 450 */ 31, 42, 33, 34, 35, 36, 76, 26, 39, 7, - /* 460 */ 21, 22, 10, 3, 77, 26, 77, 80, 37, 80, - /* 470 */ 31, 91, 33, 34, 35, 36, 74, 75, 39, 77, - /* 480 */ 78, 8, 80, 27, 104, 83, 84, 100, 15, 100, - /* 490 */ 76, 89, 8, 27, 92, 81, 94, 8, 42, 15, - /* 500 */ 44, 8, 100, 15, 15, 91, 76, 105, 42, 10, - /* 510 */ 44, 81, 56, 57, 58, 59, 60, 61, 62, 63, - /* 520 */ 64, 91, 56, 57, 58, 59, 60, 61, 62, 63, - /* 530 */ 64, 8, 24, 74, 75, 42, 77, 78, 15, 80, - /* 540 */ 98, 7, 83, 9, 10, 103, 7, 76, 89, 10, - /* 550 */ 42, 92, 81, 94, 74, 75, 22, 77, 78, 100, - /* 560 */ 80, 98, 91, 83, 105, 42, 103, 33, 34, 89, - /* 570 */ 84, 85, 92, 39, 94, 74, 75, 87, 77, 78, - /* 580 */ 100, 80, 76, 76, 83, 105, 9, 81, 81, 8, - /* 590 */ 89, 7, 102, 92, 10, 94, 15, 91, 91, 74, - /* 600 */ 75, 100, 77, 78, 8, 80, 105, 74, 83, 74, - /* 610 */ 75, 15, 77, 78, 89, 80, 39, 92, 83, 94, - /* 620 */ 11, 8, 13, 4, 89, 100, 8, 92, 15, 94, - /* 630 */ 105, 24, 87, 15, 8, 100, 42, 8, 44, 8, - /* 640 */ 105, 15, 18, 110, 73, 74, 15, 102, 8, 42, - /* 650 */ 56, 57, 58, 59, 60, 61, 62, 63, 64, 74, - /* 660 */ 75, 99, 77, 78, 102, 80, 8, 98, 83, 8, - /* 670 */ 15, 42, 103, 15, 89, 8, 15, 92, 87, 94, - /* 680 */ 74, 75, 15, 77, 78, 100, 80, 87, 87, 83, - /* 690 */ 105, 3, 8, 102, 28, 89, 10, 76, 92, 15, - /* 700 */ 94, 76, 102, 102, 74, 75, 100, 77, 78, 9, - /* 710 */ 80, 105, 91, 83, 8, 107, 91, 76, 76, 89, - /* 720 */ 24, 10, 92, 76, 94, 74, 75, 10, 77, 78, - /* 730 */ 100, 80, 91, 91, 83, 105, 20, 27, 91, 76, - /* 740 */ 89, 10, 55, 92, 4, 94, 10, 22, 19, 74, - /* 750 */ 75, 100, 77, 78, 91, 80, 105, 8, 83, 74, - /* 760 */ 75, 39, 77, 78, 89, 80, 11, 92, 83, 94, - /* 770 */ 9, 8, 28, 9, 89, 100, 39, 92, 11, 94, - /* 780 */ 105, 68, 26, 74, 75, 100, 77, 78, 41, 80, - /* 790 */ 105, 1, 2, 3, 4, 5, 6, 7, 89, 27, - /* 800 */ 27, 92, 19, 94, 74, 75, 97, 77, 78, 100, - /* 810 */ 80, 21, 8, 10, 9, 74, 75, 82, 77, 89, - /* 820 */ 101, 80, 92, 91, 94, 74, 75, 9, 77, 78, - /* 830 */ 100, 80, 93, 90, 15, 94, 102, 99, 15, 109, - /* 840 */ 89, 100, 96, 92, 99, 94, 26, 15, 97, 74, - /* 850 */ 75, 100, 77, 78, 79, 80, 86, 86, 84, 111, - /* 860 */ 111, 111, 111, 111, 89, 111, 111, 92, 111, 94, - /* 870 */ 111, 111, 111, 74, 75, 100, 77, 78, 79, 80, - /* 880 */ 74, 75, 111, 77, 78, 111, 80, 111, 89, 111, - /* 890 */ 111, 92, 111, 94, 111, 89, 111, 111, 92, 100, - /* 900 */ 94, 111, 111, 97, 74, 75, 100, 77, 78, 79, - /* 910 */ 80, 111, 111, 111, 111, 74, 75, 111, 77, 89, - /* 920 */ 111, 80, 92, 111, 94, 111, 111, 111, 74, 75, - /* 930 */ 100, 77, 78, 79, 80, 94, 111, 111, 111, 111, - /* 940 */ 111, 100, 111, 89, 111, 111, 92, 111, 94, 74, - /* 950 */ 75, 111, 77, 78, 100, 80, 74, 75, 111, 77, - /* 960 */ 78, 111, 80, 111, 89, 111, 111, 92, 111, 94, - /* 970 */ 111, 89, 97, 111, 92, 100, 94, 111, 111, 111, - /* 980 */ 74, 75, 100, 77, 78, 111, 80, 111, 111, 111, - /* 990 */ 111, 74, 75, 111, 77, 89, 111, 80, 92, 111, - /* 1000 */ 94, 111, 111, 111, 74, 75, 100, 77, 78, 111, - /* 1010 */ 80, 94, 111, 111, 111, 111, 111, 100, 111, 89, - /* 1020 */ 111, 111, 92, 111, 94, 74, 75, 111, 77, 78, - /* 1030 */ 100, 80, 74, 75, 111, 77, 78, 111, 80, 111, - /* 1040 */ 89, 111, 111, 92, 111, 94, 111, 89, 111, 111, - /* 1050 */ 92, 100, 94, 111, 111, 111, 74, 75, 100, 77, - /* 1060 */ 78, 111, 80, 111, 111, 111, 111, 111, 111, 111, - /* 1070 */ 111, 89, 111, 111, 92, 111, 94, 111, 111, 111, - /* 1080 */ 74, 75, 100, 77, 78, 111, 80, 111, 111, 111, - /* 1090 */ 111, 111, 111, 111, 111, 89, 111, 111, 92, 111, - /* 1100 */ 94, 74, 75, 111, 77, 78, 100, 80, 74, 75, - /* 1110 */ 111, 77, 78, 111, 80, 111, 89, 111, 111, 92, - /* 1120 */ 111, 94, 111, 89, 111, 111, 92, 100, 94, 111, - /* 1130 */ 111, 111, 74, 75, 100, 77, 78, 111, 80, 111, - /* 1140 */ 111, 111, 111, 111, 111, 111, 111, 89, 111, 111, - /* 1150 */ 92, 111, 94, 111, 111, 111, 74, 75, 100, 77, - /* 1160 */ 78, 111, 80, 111, 111, 111, 111, 111, 111, 111, - /* 1170 */ 111, 89, 111, 111, 92, 111, 94, 74, 75, 111, - /* 1180 */ 77, 78, 100, 80, 74, 75, 111, 77, 78, 111, - /* 1190 */ 80, 111, 89, 111, 111, 92, 111, 94, 111, 89, - /* 1200 */ 111, 111, 92, 100, 94, 111, 111, 111, 74, 75, - /* 1210 */ 100, 77, 78, 111, 80, 111, 111, 111, 111, 111, - /* 1220 */ 111, 111, 111, 89, 111, 111, 92, 111, 94, 111, - /* 1230 */ 111, 111, 74, 75, 100, 77, 111, 111, 80, 111, - /* 1240 */ 111, 111, 111, 111, 111, 111, 111, 89, 111, 111, - /* 1250 */ 92, 111, 94, 74, 75, 111, 77, 111, 100, 80, - /* 1260 */ 74, 75, 111, 77, 111, 111, 80, 111, 89, 111, - /* 1270 */ 111, 92, 111, 94, 111, 89, 111, 111, 92, 100, - /* 1280 */ 94, 111, 111, 111, 74, 75, 100, 77, 8, 111, - /* 1290 */ 80, 111, 111, 13, 111, 15, 111, 111, 111, 89, - /* 1300 */ 111, 111, 111, 111, 94, 111, 26, 111, 74, 75, - /* 1310 */ 100, 77, 111, 111, 80, 111, 111, 37, 111, 111, - /* 1320 */ 111, 111, 42, 89, 111, 111, 111, 111, 94, 111, - /* 1330 */ 111, 111, 111, 111, 100, + /* 0 */ 7, 9, 9, 10, 28, 12, 34, 14, 7, 16, + /* 10 */ 34, 10, 11, 28, 42, 39, 23, 24, 8, 43, + /* 20 */ 27, 28, 78, 13, 39, 15, 33, 83, 35, 36, + /* 30 */ 37, 38, 25, 41, 41, 42, 7, 93, 9, 10, + /* 40 */ 78, 40, 22, 76, 77, 83, 79, 80, 28, 82, + /* 50 */ 43, 11, 23, 24, 44, 93, 27, 28, 91, 39, + /* 60 */ 8, 94, 33, 96, 35, 36, 37, 38, 28, 102, + /* 70 */ 41, 42, 20, 7, 45, 9, 10, 110, 111, 39, + /* 80 */ 76, 77, 8, 79, 80, 81, 82, 10, 7, 23, + /* 90 */ 24, 10, 11, 27, 28, 91, 44, 17, 94, 33, + /* 100 */ 96, 35, 36, 37, 38, 25, 102, 41, 42, 43, + /* 110 */ 7, 11, 9, 10, 79, 8, 8, 82, 44, 10, + /* 120 */ 13, 12, 15, 14, 27, 16, 23, 24, 31, 32, + /* 130 */ 27, 28, 7, 98, 34, 28, 33, 102, 35, 36, + /* 140 */ 37, 38, 8, 8, 41, 42, 39, 7, 45, 9, + /* 150 */ 10, 44, 44, 28, 76, 77, 8, 79, 80, 81, + /* 160 */ 82, 27, 76, 23, 24, 31, 32, 27, 28, 91, + /* 170 */ 9, 10, 94, 33, 96, 35, 36, 37, 38, 44, + /* 180 */ 102, 41, 42, 7, 79, 9, 10, 82, 9, 10, + /* 190 */ 76, 77, 44, 79, 80, 81, 82, 4, 112, 23, + /* 200 */ 24, 10, 41, 27, 28, 91, 29, 102, 94, 33, + /* 210 */ 96, 35, 36, 37, 38, 24, 102, 41, 42, 7, + /* 220 */ 79, 9, 10, 82, 47, 48, 49, 50, 51, 52, + /* 230 */ 53, 54, 55, 56, 7, 109, 9, 10, 8, 7, + /* 240 */ 8, 8, 10, 102, 67, 68, 69, 25, 15, 7, + /* 250 */ 23, 24, 10, 41, 27, 28, 73, 74, 75, 76, + /* 260 */ 33, 10, 35, 36, 37, 38, 44, 8, 41, 42, + /* 270 */ 76, 77, 17, 79, 15, 101, 82, 47, 48, 49, + /* 280 */ 50, 51, 52, 53, 54, 55, 56, 90, 8, 7, + /* 290 */ 96, 40, 10, 11, 29, 15, 102, 67, 68, 69, + /* 300 */ 18, 104, 47, 48, 49, 50, 51, 52, 53, 54, + /* 310 */ 55, 56, 47, 48, 49, 50, 51, 52, 53, 54, + /* 320 */ 55, 56, 67, 68, 69, 7, 101, 9, 10, 104, + /* 330 */ 8, 27, 67, 68, 69, 31, 32, 15, 84, 26, + /* 340 */ 18, 23, 24, 11, 13, 27, 28, 43, 19, 7, + /* 350 */ 8, 33, 10, 35, 36, 37, 38, 44, 26, 41, + /* 360 */ 42, 7, 26, 9, 10, 34, 1, 2, 3, 4, + /* 370 */ 5, 6, 7, 42, 15, 4, 8, 23, 24, 78, + /* 380 */ 44, 27, 28, 15, 83, 10, 18, 33, 23, 35, + /* 390 */ 36, 37, 38, 84, 93, 41, 42, 7, 79, 9, + /* 400 */ 10, 82, 21, 44, 76, 77, 100, 79, 80, 81, + /* 410 */ 82, 105, 7, 23, 24, 10, 3, 27, 28, 91, + /* 420 */ 29, 102, 94, 33, 96, 35, 36, 37, 38, 83, + /* 430 */ 102, 41, 42, 75, 76, 47, 48, 49, 50, 51, + /* 440 */ 52, 53, 54, 55, 56, 7, 28, 9, 10, 3, + /* 450 */ 11, 101, 13, 7, 108, 67, 68, 69, 86, 87, + /* 460 */ 44, 23, 24, 89, 13, 7, 28, 9, 10, 23, + /* 470 */ 78, 33, 29, 35, 36, 37, 38, 29, 104, 41, + /* 480 */ 42, 23, 24, 8, 38, 93, 28, 44, 105, 46, + /* 490 */ 15, 33, 44, 35, 36, 37, 38, 83, 106, 41, + /* 500 */ 42, 58, 59, 60, 61, 62, 63, 64, 65, 66, + /* 510 */ 7, 79, 9, 10, 82, 78, 70, 71, 7, 8, + /* 520 */ 83, 10, 78, 101, 15, 7, 23, 24, 10, 7, + /* 530 */ 93, 28, 10, 22, 102, 26, 33, 93, 35, 36, + /* 540 */ 37, 38, 76, 77, 41, 79, 80, 84, 82, 78, + /* 550 */ 106, 85, 86, 7, 83, 9, 10, 91, 40, 8, + /* 560 */ 94, 29, 96, 101, 93, 89, 15, 84, 102, 23, + /* 570 */ 24, 89, 100, 107, 28, 103, 44, 105, 46, 33, + /* 580 */ 104, 35, 36, 37, 38, 21, 104, 41, 9, 28, + /* 590 */ 58, 59, 60, 61, 62, 63, 64, 65, 66, 26, + /* 600 */ 39, 8, 15, 76, 77, 44, 79, 80, 15, 82, + /* 610 */ 100, 76, 85, 76, 77, 105, 79, 80, 91, 82, + /* 620 */ 8, 94, 85, 96, 41, 78, 41, 15, 91, 102, + /* 630 */ 83, 94, 97, 96, 107, 44, 8, 46, 34, 102, + /* 640 */ 93, 11, 28, 15, 107, 7, 8, 112, 10, 58, + /* 650 */ 59, 60, 61, 62, 63, 64, 65, 66, 76, 77, + /* 660 */ 22, 79, 80, 7, 82, 9, 10, 85, 76, 77, + /* 670 */ 89, 79, 80, 91, 82, 8, 94, 85, 96, 10, + /* 680 */ 24, 10, 15, 91, 102, 104, 94, 15, 96, 107, + /* 690 */ 8, 35, 36, 78, 102, 8, 8, 41, 8, 107, + /* 700 */ 76, 77, 15, 79, 80, 15, 82, 18, 93, 85, + /* 710 */ 76, 77, 89, 79, 80, 91, 82, 8, 94, 85, + /* 720 */ 96, 106, 8, 8, 15, 91, 102, 104, 94, 15, + /* 730 */ 96, 107, 10, 8, 76, 77, 102, 79, 80, 8, + /* 740 */ 82, 107, 89, 85, 76, 77, 15, 79, 80, 91, + /* 750 */ 82, 78, 94, 85, 96, 22, 8, 104, 44, 91, + /* 760 */ 102, 8, 94, 15, 96, 107, 93, 8, 15, 24, + /* 770 */ 102, 8, 29, 9, 15, 107, 76, 77, 15, 79, + /* 780 */ 80, 9, 82, 76, 77, 85, 79, 80, 8, 82, + /* 790 */ 89, 91, 85, 89, 94, 15, 96, 44, 91, 3, + /* 800 */ 9, 94, 102, 96, 78, 104, 100, 107, 104, 102, + /* 810 */ 9, 105, 76, 77, 107, 79, 80, 70, 82, 93, + /* 820 */ 78, 85, 76, 77, 29, 79, 80, 91, 82, 3, + /* 830 */ 94, 8, 96, 7, 10, 93, 78, 91, 102, 78, + /* 840 */ 94, 30, 96, 107, 30, 99, 78, 57, 102, 23, + /* 850 */ 43, 93, 76, 77, 93, 79, 80, 10, 82, 76, + /* 860 */ 77, 93, 79, 80, 38, 82, 11, 91, 103, 15, + /* 870 */ 94, 93, 96, 104, 91, 99, 15, 94, 102, 96, + /* 880 */ 76, 77, 99, 79, 80, 102, 82, 95, 101, 9, + /* 890 */ 106, 92, 86, 88, 15, 91, 70, 71, 94, 26, + /* 900 */ 96, 98, 113, 99, 76, 77, 102, 79, 80, 81, + /* 910 */ 82, 113, 113, 88, 76, 77, 113, 79, 80, 91, + /* 920 */ 82, 113, 94, 113, 96, 113, 113, 113, 113, 91, + /* 930 */ 102, 113, 94, 113, 96, 76, 77, 113, 79, 80, + /* 940 */ 102, 82, 76, 77, 113, 79, 80, 113, 82, 111, + /* 950 */ 91, 113, 113, 94, 113, 96, 113, 91, 113, 113, + /* 960 */ 94, 102, 96, 76, 77, 113, 79, 80, 102, 82, + /* 970 */ 113, 113, 113, 113, 113, 113, 113, 113, 91, 113, + /* 980 */ 113, 94, 113, 96, 76, 77, 113, 79, 80, 102, + /* 990 */ 82, 76, 77, 113, 79, 80, 113, 82, 113, 91, + /* 1000 */ 113, 113, 94, 113, 96, 113, 91, 113, 113, 94, + /* 1010 */ 102, 96, 76, 77, 113, 79, 80, 102, 82, 76, + /* 1020 */ 77, 113, 79, 80, 113, 82, 113, 91, 113, 113, + /* 1030 */ 94, 113, 96, 113, 91, 113, 113, 94, 102, 96, + /* 1040 */ 76, 77, 113, 79, 80, 102, 82, 113, 113, 113, + /* 1050 */ 113, 113, 113, 113, 113, 91, 113, 113, 94, 113, + /* 1060 */ 96, 76, 77, 113, 79, 80, 102, 82, 76, 77, + /* 1070 */ 113, 79, 80, 113, 82, 113, 91, 113, 113, 94, + /* 1080 */ 113, 96, 113, 91, 113, 113, 94, 102, 96, 76, + /* 1090 */ 77, 113, 79, 80, 102, 82, 76, 77, 113, 79, + /* 1100 */ 80, 113, 82, 113, 91, 113, 113, 94, 113, 96, + /* 1110 */ 113, 91, 113, 113, 94, 102, 96, 76, 77, 113, + /* 1120 */ 79, 80, 102, 82, 113, 113, 113, 113, 113, 113, + /* 1130 */ 113, 113, 91, 113, 113, 94, 113, 96, 76, 77, + /* 1140 */ 113, 79, 80, 102, 82, 76, 77, 113, 79, 80, + /* 1150 */ 113, 82, 113, 91, 113, 113, 94, 113, 96, 113, + /* 1160 */ 91, 113, 113, 94, 102, 96, 76, 77, 113, 79, + /* 1170 */ 80, 102, 82, 76, 77, 113, 79, 113, 113, 82, + /* 1180 */ 113, 91, 113, 113, 94, 113, 96, 113, 91, 113, + /* 1190 */ 113, 94, 102, 96, 76, 77, 113, 79, 113, 102, + /* 1200 */ 82, 113, 113, 113, 113, 113, 113, 113, 113, 91, + /* 1210 */ 113, 113, 94, 113, 96, 76, 77, 113, 79, 113, + /* 1220 */ 102, 82, 76, 77, 113, 79, 113, 113, 82, 113, + /* 1230 */ 91, 113, 113, 94, 113, 96, 113, 91, 113, 113, + /* 1240 */ 113, 102, 96, 76, 77, 113, 79, 113, 102, 82, + /* 1250 */ 76, 77, 113, 79, 113, 113, 82, 113, 91, 113, + /* 1260 */ 113, 76, 77, 96, 79, 113, 113, 82, 113, 102, + /* 1270 */ 96, 113, 113, 113, 113, 113, 102, 113, 113, 113, + /* 1280 */ 113, 96, 113, 113, 113, 113, 113, 102, ); - const YY_SHIFT_USE_DFLT = -26; - const YY_SHIFT_MAX = 227; + const YY_SHIFT_USE_DFLT = -29; + const YY_SHIFT_MAX = 232; static public $yy_shift_ofst = array( - /* 0 */ 790, 97, 27, 27, 27, 27, 27, 27, 27, 27, - /* 10 */ 27, 27, 27, 186, -7, -7, 166, 146, 333, 146, - /* 20 */ 146, 166, 146, 186, 146, 146, 146, 146, 146, 146, - /* 30 */ 146, 146, 146, 146, 146, 146, 146, 146, 62, 255, - /* 40 */ 235, 399, 379, 439, 419, 419, 220, 534, 1280, 276, - /* 50 */ 305, 523, 409, -2, 352, 124, 577, 102, 577, 124, - /* 60 */ 102, 124, 102, 466, 456, 594, 790, 10, 70, 240, - /* 70 */ 37, 311, 338, 539, 609, 584, 452, 452, 452, 684, - /* 80 */ 452, 452, 452, 452, 584, 818, 69, 819, 823, 823, - /* 90 */ 69, 823, 69, 98, 187, 257, 285, 331, 331, 331, - /* 100 */ 331, 331, 331, 331, 331, 60, 15, 129, 208, -6, - /* 110 */ -9, 203, 84, 307, -9, 24, 24, 318, 384, 92, - /* 120 */ 24, 236, 216, 277, 667, 618, 626, 508, 24, 183, - /* 130 */ 613, 493, 607, 24, 661, 658, 629, 428, 631, 596, - /* 140 */ 581, 41, 484, 473, 832, 69, 832, -1, -1, -1, - /* 150 */ -1, 818, -1, 820, -1, 69, -1, 199, -1, 69, - /* 160 */ -1, 69, -1, -26, -26, -26, -26, -26, -26, -26, - /* 170 */ 79, 337, 152, 431, 119, 75, 245, -25, 44, -25, - /* 180 */ 489, -25, 304, -25, 355, 805, 761, 763, 764, 391, - /* 190 */ 755, 725, 729, 749, 722, 744, 737, 783, 804, 803, - /* 200 */ 756, 773, 747, 713, 767, 772, 736, 740, 640, 688, - /* 210 */ 655, 686, 624, 619, 438, 460, 488, 499, 700, 706, - /* 220 */ 716, 687, 731, 710, 717, 666, 696, 711, + /* 0 */ 365, 103, 29, 29, 29, 29, 29, 29, 29, 29, + /* 10 */ 29, 29, 29, 354, -7, -7, 390, 140, 140, 390, + /* 20 */ 354, 140, 140, 176, 140, 140, 140, 140, 140, 140, + /* 30 */ 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, + /* 40 */ 66, 318, 227, 438, 458, 503, 546, 503, 212, 656, + /* 50 */ 107, 826, 10, 714, 753, 331, 161, 359, -8, -8, + /* 60 */ 509, 509, 509, 359, 359, 532, 443, 591, 365, 446, + /* 70 */ 1, 282, 518, 322, 368, 522, 405, 405, 405, 242, + /* 80 */ 242, 439, 780, 405, 405, 405, 405, 451, 854, 861, + /* 90 */ 880, 854, 451, 854, 451, 265, 255, 230, 177, 388, + /* 100 */ 388, 388, 388, 388, 388, 388, 388, 511, 638, 304, + /* 110 */ 109, 134, 97, 52, 81, 232, 97, 342, -28, -28, + /* 120 */ 259, 74, 233, 280, 763, 731, 551, 709, 690, 313, + /* 130 */ 687, 222, -28, 336, 125, 148, 748, 759, 135, 448, + /* 140 */ -28, 628, 612, 593, 108, 667, -28, 179, 416, 416, + /* 150 */ 879, 416, 879, 416, 880, 451, 416, 416, 873, 614, + /* 160 */ 416, 451, 416, 416, 416, 451, 451, -29, -29, -29, + /* 170 */ -29, -29, -29, -29, -24, 40, 20, 561, -15, 100, + /* 180 */ 251, -15, 191, 332, -15, 475, 7, 80, -15, 823, + /* 190 */ 745, 630, 585, 604, 583, 669, 715, 722, 688, 682, + /* 200 */ 801, 672, 689, 671, 587, 573, 725, 811, 814, 824, + /* 210 */ 807, 790, 795, 747, 772, 733, 764, 743, 796, 579, + /* 220 */ 791, 847, 564, 371, 375, 381, 418, 413, 329, 391, + /* 230 */ 855, 77, 193, ); - const YY_REDUCE_USE_DFLT = -36; - const YY_REDUCE_MAX = 169; + const YY_REDUCE_USE_DFLT = -57; + const YY_REDUCE_MAX = 173; static public $yy_reduce_ofst = array( - /* 0 */ 227, 402, 585, 535, 501, 459, 480, 630, 525, 606, - /* 10 */ 685, 651, 675, -35, 854, 830, 35, 751, 799, 875, - /* 20 */ 806, 775, 709, 730, 951, 1006, 882, 1027, 1110, 1082, - /* 30 */ 1058, 958, 906, 930, 1134, 982, 1103, 1034, 1158, 1186, - /* 40 */ 1179, 1210, 1234, 917, 741, 841, 61, 327, 507, 88, - /* 50 */ 93, 506, 414, 145, 389, 414, 387, 340, 248, 471, - /* 60 */ 299, 430, 380, 289, 289, 289, 571, 533, 562, 194, - /* 70 */ 562, 625, 625, 300, 442, 300, 545, 600, 591, 621, - /* 80 */ 601, 300, 185, 335, 490, 486, 442, 647, 663, 641, - /* 90 */ 463, 642, 569, 608, 608, 608, 608, 608, 608, 608, - /* 100 */ 608, 608, 608, 608, 608, 739, 734, 739, 734, 743, - /* 110 */ 739, 734, 734, 734, 739, 719, 719, 122, 732, 122, - /* 120 */ 719, 122, 732, 732, 732, 732, 732, 122, 719, 738, - /* 130 */ 732, 122, 122, 719, 732, 732, 122, 732, 732, 732, - /* 140 */ 732, 746, 732, 732, 770, 18, 771, 122, 122, 122, - /* 150 */ 122, 774, 122, 745, 122, 18, 122, 169, 122, 18, - /* 160 */ 122, 18, 122, 329, 312, 735, 167, 217, 250, 272, + /* 0 */ 183, 466, 700, 668, 537, 658, 634, 582, 592, 624, + /* 10 */ 527, 736, 707, -33, 114, 328, 828, 804, 746, 4, + /* 20 */ 838, 783, 776, 78, 1013, 992, 985, 887, 1090, 936, + /* 30 */ 943, 915, 908, 866, 964, 1062, 859, 1069, 1041, 1020, + /* 40 */ 1118, 1097, 1139, 1167, 1146, 1174, 194, 1185, 35, 105, + /* 50 */ 471, 535, 437, 547, -38, 472, 141, -56, 319, 432, + /* 60 */ 444, 392, 615, 301, -38, 346, 346, 346, 358, 86, + /* 70 */ 225, 197, 225, 673, 673, 476, 704, 701, 653, 476, + /* 80 */ 374, 306, 726, 623, 581, 482, 476, 306, 758, 768, + /* 90 */ 372, 742, 510, 761, 706, 126, 126, 126, 126, 126, + /* 100 */ 126, 126, 126, 126, 126, 126, 126, 769, 769, 792, + /* 110 */ 799, 792, 792, 414, 769, 769, 792, 769, 765, 765, + /* 120 */ 778, 414, 778, 778, 778, 778, 778, 778, 778, 414, + /* 130 */ 778, 414, 765, 414, 787, 414, 778, 778, 414, 414, + /* 140 */ 765, 778, 778, 778, 414, 778, 765, 803, 414, 414, + /* 150 */ 805, 414, 825, 414, 806, 383, 414, 414, 784, 422, + /* 160 */ 414, 383, 414, 414, 414, 383, 383, 463, 462, 350, + /* 170 */ 483, 309, 254, 174, ); static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 21, ), - /* 1 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 2 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 3 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 4 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 5 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 6 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 7 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 8 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 9 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 10 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 11 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 12 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 43, ), - /* 13 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 14 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 15 */ array(7, 9, 10, 12, 14, 16, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 16 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 17 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 18 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 19 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 20 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 21 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 22 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 23 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 24 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 25 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 26 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 27 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 28 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 29 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 30 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 31 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 32 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 33 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 34 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 35 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 36 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 37 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 38 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, 41, ), - /* 39 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 40 */ array(7, 9, 10, 21, 22, 25, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 41 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 42 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, 40, ), - /* 43 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, ), - /* 44 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, ), - /* 45 */ array(7, 9, 10, 21, 22, 26, 31, 33, 34, 35, 36, 39, ), - /* 46 */ array(7, 9, 10, 39, ), - /* 47 */ array(7, 9, 10, 22, 33, 34, 39, ), - /* 48 */ array(8, 13, 15, 26, 37, 42, ), - /* 49 */ array(3, 7, 21, 36, 68, 69, ), - /* 50 */ array(8, 13, 15, 42, ), - /* 51 */ array(8, 15, 42, ), - /* 52 */ array(8, 15, 42, ), - /* 53 */ array(13, 32, 40, ), - /* 54 */ array(9, 10, 39, ), - /* 55 */ array(15, 42, ), - /* 56 */ array(9, 39, ), - /* 57 */ array(15, 24, ), - /* 58 */ array(9, 39, ), - /* 59 */ array(15, 42, ), - /* 60 */ array(15, 24, ), - /* 61 */ array(15, 42, ), - /* 62 */ array(15, 24, ), - /* 63 */ array(27, 42, 44, 56, 57, 58, 59, 60, 61, 62, 63, 64, ), - /* 64 */ array(27, 42, 44, 56, 57, 58, 59, 60, 61, 62, 63, 64, ), - /* 65 */ array(42, 44, 56, 57, 58, 59, 60, 61, 62, 63, 64, ), - /* 66 */ array(1, 2, 3, 4, 5, 6, 7, 21, ), - /* 67 */ array(3, 7, 21, 36, 68, 69, ), - /* 68 */ array(7, 10, 11, 38, ), - /* 69 */ array(7, 10, 11, 18, ), - /* 70 */ array(7, 10, 38, ), - /* 71 */ array(8, 15, 18, ), - /* 72 */ array(8, 15, 18, ), - /* 73 */ array(7, 10, ), - /* 74 */ array(11, 13, ), + /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 23, ), + /* 1 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 2 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 3 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 4 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 5 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 6 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 7 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 8 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 9 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 10 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 11 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 12 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 45, ), + /* 13 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 14 */ array(7, 9, 10, 12, 14, 16, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 15 */ array(7, 9, 10, 12, 14, 16, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 16 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 17 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 18 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 19 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 20 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 21 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 22 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 23 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 24 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 25 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 26 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 27 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 28 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 29 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 30 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 31 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 32 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 33 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 34 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 35 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 36 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 37 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 38 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 39 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 40 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, 43, ), + /* 41 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 42 */ array(7, 9, 10, 23, 24, 27, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 43 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 44 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, 42, ), + /* 45 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, ), + /* 46 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, ), + /* 47 */ array(7, 9, 10, 23, 24, 28, 33, 35, 36, 37, 38, 41, ), + /* 48 */ array(7, 9, 10, 41, ), + /* 49 */ array(7, 9, 10, 24, 35, 36, 41, ), + /* 50 */ array(8, 13, 15, 28, 39, 44, ), + /* 51 */ array(3, 7, 23, 38, 70, 71, ), + /* 52 */ array(8, 13, 15, 44, ), + /* 53 */ array(8, 15, 44, ), + /* 54 */ array(8, 15, 44, ), + /* 55 */ array(13, 34, 42, ), + /* 56 */ array(9, 10, 41, ), + /* 57 */ array(15, 44, ), + /* 58 */ array(9, 41, ), + /* 59 */ array(9, 41, ), + /* 60 */ array(15, 26, ), + /* 61 */ array(15, 26, ), + /* 62 */ array(15, 26, ), + /* 63 */ array(15, 44, ), + /* 64 */ array(15, 44, ), + /* 65 */ array(29, 44, 46, 58, 59, 60, 61, 62, 63, 64, 65, 66, ), + /* 66 */ array(29, 44, 46, 58, 59, 60, 61, 62, 63, 64, 65, 66, ), + /* 67 */ array(44, 46, 58, 59, 60, 61, 62, 63, 64, 65, 66, ), + /* 68 */ array(1, 2, 3, 4, 5, 6, 7, 23, ), + /* 69 */ array(3, 7, 23, 38, 70, 71, ), + /* 70 */ array(7, 10, 11, 40, ), + /* 71 */ array(7, 10, 11, 18, ), + /* 72 */ array(7, 10, 40, ), + /* 73 */ array(8, 15, 18, ), + /* 74 */ array(8, 15, 18, ), /* 75 */ array(7, 10, ), /* 76 */ array(7, 10, ), /* 77 */ array(7, 10, ), /* 78 */ array(7, 10, ), - /* 79 */ array(8, 15, ), + /* 79 */ array(7, 10, ), /* 80 */ array(7, 10, ), - /* 81 */ array(7, 10, ), - /* 82 */ array(7, 10, ), + /* 81 */ array(11, 13, ), + /* 82 */ array(8, 15, ), /* 83 */ array(7, 10, ), /* 84 */ array(7, 10, ), - /* 85 */ array(9, ), - /* 86 */ array(13, ), - /* 87 */ array(15, ), + /* 85 */ array(7, 10, ), + /* 86 */ array(7, 10, ), + /* 87 */ array(13, ), /* 88 */ array(15, ), /* 89 */ array(15, ), - /* 90 */ array(13, ), + /* 90 */ array(9, ), /* 91 */ array(15, ), /* 92 */ array(13, ), - /* 93 */ array(27, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 94 */ array(17, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 95 */ array(27, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 96 */ array(8, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 97 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 98 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 99 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 100 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 101 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 102 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 103 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 104 */ array(45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 65, 66, 67, ), - /* 105 */ array(8, 25, 29, 30, ), - /* 106 */ array(7, 8, 10, 20, ), - /* 107 */ array(25, 29, 30, 41, ), - /* 108 */ array(7, 8, 10, 20, ), - /* 109 */ array(10, 12, 14, 16, ), - /* 110 */ array(25, 29, 30, ), - /* 111 */ array(7, 10, 11, ), - /* 112 */ array(7, 8, 10, ), - /* 113 */ array(7, 8, 10, ), - /* 114 */ array(25, 29, 30, ), - /* 115 */ array(32, 40, ), - /* 116 */ array(32, 40, ), - /* 117 */ array(23, 42, ), - /* 118 */ array(8, 15, ), - /* 119 */ array(8, 42, ), - /* 120 */ array(32, 40, ), - /* 121 */ array(27, 42, ), + /* 93 */ array(15, ), + /* 94 */ array(13, ), + /* 95 */ array(29, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 96 */ array(17, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 97 */ array(8, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 98 */ array(29, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 99 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 100 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 101 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 102 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 103 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 104 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 105 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 106 */ array(47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 67, 68, 69, ), + /* 107 */ array(7, 8, 10, 22, ), + /* 108 */ array(7, 8, 10, 22, ), + /* 109 */ array(27, 31, 32, 43, ), + /* 110 */ array(10, 12, 14, 16, ), + /* 111 */ array(8, 27, 31, 32, ), + /* 112 */ array(27, 31, 32, ), + /* 113 */ array(8, 20, 44, ), + /* 114 */ array(7, 10, 11, ), + /* 115 */ array(7, 8, 10, ), + /* 116 */ array(27, 31, 32, ), + /* 117 */ array(7, 8, 10, ), + /* 118 */ array(34, 42, ), + /* 119 */ array(34, 42, ), + /* 120 */ array(8, 15, ), + /* 121 */ array(8, 44, ), /* 122 */ array(8, 15, ), /* 123 */ array(8, 15, ), /* 124 */ array(8, 15, ), /* 125 */ array(8, 15, ), /* 126 */ array(8, 15, ), - /* 127 */ array(24, 42, ), - /* 128 */ array(32, 40, ), - /* 129 */ array(7, 26, ), + /* 127 */ array(8, 15, ), + /* 128 */ array(8, 15, ), + /* 129 */ array(26, 44, ), /* 130 */ array(8, 15, ), - /* 131 */ array(8, 42, ), - /* 132 */ array(24, 42, ), - /* 133 */ array(32, 40, ), - /* 134 */ array(8, 15, ), - /* 135 */ array(8, 15, ), - /* 136 */ array(8, 42, ), + /* 131 */ array(25, 44, ), + /* 132 */ array(34, 42, ), + /* 133 */ array(26, 44, ), + /* 134 */ array(7, 28, ), + /* 135 */ array(8, 44, ), + /* 136 */ array(8, 15, ), /* 137 */ array(8, 15, ), - /* 138 */ array(8, 15, ), - /* 139 */ array(8, 15, ), - /* 140 */ array(8, 15, ), - /* 141 */ array(9, 10, ), + /* 138 */ array(8, 44, ), + /* 139 */ array(29, 44, ), + /* 140 */ array(34, 42, ), + /* 141 */ array(8, 15, ), /* 142 */ array(8, 15, ), /* 143 */ array(8, 15, ), - /* 144 */ array(15, ), - /* 145 */ array(13, ), - /* 146 */ array(15, ), - /* 147 */ array(42, ), - /* 148 */ array(42, ), - /* 149 */ array(42, ), - /* 150 */ array(42, ), - /* 151 */ array(9, ), - /* 152 */ array(42, ), - /* 153 */ array(26, ), - /* 154 */ array(42, ), + /* 144 */ array(8, 44, ), + /* 145 */ array(8, 15, ), + /* 146 */ array(34, 42, ), + /* 147 */ array(9, 10, ), + /* 148 */ array(44, ), + /* 149 */ array(44, ), + /* 150 */ array(15, ), + /* 151 */ array(44, ), + /* 152 */ array(15, ), + /* 153 */ array(44, ), + /* 154 */ array(9, ), /* 155 */ array(13, ), - /* 156 */ array(42, ), - /* 157 */ array(24, ), - /* 158 */ array(42, ), - /* 159 */ array(13, ), - /* 160 */ array(42, ), + /* 156 */ array(44, ), + /* 157 */ array(44, ), + /* 158 */ array(26, ), + /* 159 */ array(28, ), + /* 160 */ array(44, ), /* 161 */ array(13, ), - /* 162 */ array(42, ), - /* 163 */ array(), - /* 164 */ array(), - /* 165 */ array(), - /* 166 */ array(), + /* 162 */ array(44, ), + /* 163 */ array(44, ), + /* 164 */ array(44, ), + /* 165 */ array(13, ), + /* 166 */ array(13, ), /* 167 */ array(), /* 168 */ array(), /* 169 */ array(), - /* 170 */ array(26, 32, 37, 41, ), - /* 171 */ array(20, 26, 37, ), - /* 172 */ array(26, 37, 42, ), - /* 173 */ array(11, 26, 37, ), - /* 174 */ array(23, 41, ), - /* 175 */ array(11, 24, ), - /* 176 */ array(10, 22, ), - /* 177 */ array(26, 37, ), - /* 178 */ array(11, 32, ), - /* 179 */ array(26, 37, ), - /* 180 */ array(8, 15, ), - /* 181 */ array(26, 37, ), - /* 182 */ array(17, 23, ), - /* 183 */ array(26, 37, ), - /* 184 */ array(10, 38, ), - /* 185 */ array(9, ), - /* 186 */ array(9, ), - /* 187 */ array(8, ), - /* 188 */ array(9, ), - /* 189 */ array(32, ), - /* 190 */ array(11, ), - /* 191 */ array(22, ), - /* 192 */ array(19, ), - /* 193 */ array(8, ), - /* 194 */ array(39, ), - /* 195 */ array(28, ), - /* 196 */ array(39, ), - /* 197 */ array(19, ), + /* 170 */ array(), + /* 171 */ array(), + /* 172 */ array(), + /* 173 */ array(), + /* 174 */ array(28, 34, 39, 43, ), + /* 175 */ array(11, 28, 39, ), + /* 176 */ array(22, 28, 39, ), + /* 177 */ array(28, 39, 44, ), + /* 178 */ array(28, 39, ), + /* 179 */ array(11, 34, ), + /* 180 */ array(10, 40, ), + /* 181 */ array(28, 39, ), + /* 182 */ array(10, 24, ), + /* 183 */ array(11, 26, ), + /* 184 */ array(28, 39, ), + /* 185 */ array(8, 15, ), + /* 186 */ array(25, 43, ), + /* 187 */ array(17, 25, ), + /* 188 */ array(28, 39, ), + /* 189 */ array(8, ), + /* 190 */ array(24, ), + /* 191 */ array(11, ), + /* 192 */ array(41, ), + /* 193 */ array(34, ), + /* 194 */ array(41, ), + /* 195 */ array(10, ), + /* 196 */ array(8, ), + /* 197 */ array(10, ), /* 198 */ array(8, ), - /* 199 */ array(10, ), - /* 200 */ array(26, ), - /* 201 */ array(27, ), - /* 202 */ array(41, ), - /* 203 */ array(68, ), - /* 204 */ array(11, ), - /* 205 */ array(27, ), - /* 206 */ array(10, ), - /* 207 */ array(4, ), - /* 208 */ array(8, ), - /* 209 */ array(3, ), - /* 210 */ array(15, ), - /* 211 */ array(10, ), - /* 212 */ array(18, ), - /* 213 */ array(4, ), + /* 199 */ array(8, ), + /* 200 */ array(9, ), + /* 201 */ array(15, ), + /* 202 */ array(18, ), + /* 203 */ array(10, ), + /* 204 */ array(15, ), + /* 205 */ array(26, ), + /* 206 */ array(8, ), + /* 207 */ array(30, ), + /* 208 */ array(30, ), + /* 209 */ array(10, ), + /* 210 */ array(43, ), + /* 211 */ array(57, ), + /* 212 */ array(29, ), + /* 213 */ array(70, ), /* 214 */ array(9, ), - /* 215 */ array(3, ), - /* 216 */ array(15, ), - /* 217 */ array(10, ), - /* 218 */ array(9, ), - /* 219 */ array(8, ), - /* 220 */ array(20, ), - /* 221 */ array(55, ), - /* 222 */ array(10, ), - /* 223 */ array(27, ), + /* 215 */ array(22, ), + /* 216 */ array(9, ), + /* 217 */ array(29, ), + /* 218 */ array(3, ), + /* 219 */ array(9, ), + /* 220 */ array(9, ), + /* 221 */ array(10, ), + /* 222 */ array(21, ), + /* 223 */ array(4, ), /* 224 */ array(10, ), - /* 225 */ array(28, ), - /* 226 */ array(24, ), - /* 227 */ array(10, ), - /* 228 */ array(), - /* 229 */ array(), - /* 230 */ array(), - /* 231 */ array(), - /* 232 */ array(), + /* 225 */ array(21, ), + /* 226 */ array(28, ), + /* 227 */ array(3, ), + /* 228 */ array(19, ), + /* 229 */ array(29, ), + /* 230 */ array(11, ), + /* 231 */ array(10, ), + /* 232 */ array(4, ), /* 233 */ array(), /* 234 */ array(), /* 235 */ array(), @@ -952,44 +946,51 @@ static public $yy_action = array( /* 352 */ array(), /* 353 */ array(), /* 354 */ array(), + /* 355 */ array(), + /* 356 */ array(), + /* 357 */ array(), + /* 358 */ array(), + /* 359 */ array(), + /* 360 */ array(), ); static public $yy_default = array( - /* 0 */ 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, - /* 10 */ 534, 534, 534, 520, 534, 534, 534, 478, 534, 478, - /* 20 */ 478, 534, 478, 534, 534, 534, 534, 534, 534, 534, - /* 30 */ 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, - /* 40 */ 534, 534, 534, 534, 534, 534, 534, 534, 534, 534, - /* 50 */ 534, 534, 534, 441, 534, 401, 534, 401, 534, 401, - /* 60 */ 401, 401, 401, 488, 488, 488, 355, 534, 451, 534, - /* 70 */ 451, 424, 424, 534, 444, 534, 534, 534, 534, 415, - /* 80 */ 534, 534, 534, 534, 534, 534, 444, 401, 401, 401, - /* 90 */ 437, 401, 436, 534, 534, 534, 534, 486, 501, 502, - /* 100 */ 492, 497, 498, 493, 494, 534, 534, 534, 534, 534, - /* 110 */ 412, 534, 534, 534, 483, 470, 472, 477, 534, 534, - /* 120 */ 471, 534, 534, 534, 534, 534, 534, 534, 469, 451, - /* 130 */ 534, 534, 534, 449, 534, 534, 534, 534, 534, 534, - /* 140 */ 534, 534, 534, 534, 533, 439, 533, 489, 419, 410, - /* 150 */ 385, 534, 521, 451, 403, 438, 420, 414, 407, 442, - /* 160 */ 522, 466, 523, 482, 482, 482, 482, 451, 451, 451, - /* 170 */ 534, 411, 402, 406, 534, 464, 534, 484, 427, 534, - /* 180 */ 415, 503, 534, 411, 534, 534, 534, 534, 534, 427, - /* 190 */ 534, 534, 534, 534, 534, 432, 534, 534, 534, 534, - /* 200 */ 440, 534, 534, 534, 406, 534, 534, 534, 534, 534, - /* 210 */ 534, 534, 424, 534, 534, 534, 534, 534, 534, 415, - /* 220 */ 415, 415, 534, 534, 534, 534, 464, 534, 399, 510, - /* 230 */ 511, 509, 459, 461, 506, 507, 508, 460, 458, 366, - /* 240 */ 513, 524, 391, 434, 529, 396, 408, 504, 526, 525, - /* 250 */ 505, 435, 531, 527, 530, 512, 365, 393, 394, 395, - /* 260 */ 392, 398, 371, 474, 476, 372, 357, 356, 358, 443, - /* 270 */ 373, 405, 359, 473, 363, 362, 364, 457, 475, 409, - /* 280 */ 361, 490, 517, 370, 360, 519, 369, 518, 491, 386, - /* 290 */ 421, 387, 516, 448, 487, 377, 452, 447, 515, 422, - /* 300 */ 446, 514, 464, 388, 463, 453, 454, 375, 379, 428, - /* 310 */ 430, 376, 378, 431, 374, 455, 380, 456, 467, 417, - /* 320 */ 381, 450, 389, 481, 432, 418, 415, 485, 416, 480, - /* 330 */ 400, 397, 429, 532, 528, 367, 433, 384, 479, 465, - /* 340 */ 499, 413, 500, 390, 423, 445, 462, 468, 425, 426, - /* 350 */ 383, 495, 496, 382, 368, + /* 0 */ 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, + /* 10 */ 542, 542, 542, 528, 542, 542, 542, 486, 486, 542, + /* 20 */ 542, 486, 486, 542, 542, 542, 542, 542, 542, 542, + /* 30 */ 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, + /* 40 */ 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, + /* 50 */ 542, 542, 542, 542, 542, 449, 542, 409, 542, 542, + /* 60 */ 409, 409, 409, 409, 409, 496, 496, 496, 361, 542, + /* 70 */ 459, 542, 459, 432, 432, 542, 542, 542, 542, 542, + /* 80 */ 542, 452, 423, 542, 542, 542, 542, 452, 409, 409, + /* 90 */ 542, 409, 444, 409, 445, 542, 542, 542, 542, 505, + /* 100 */ 506, 500, 510, 502, 501, 509, 494, 542, 542, 542, + /* 110 */ 542, 542, 420, 542, 542, 542, 491, 542, 479, 457, + /* 120 */ 542, 542, 542, 542, 542, 542, 542, 542, 542, 542, + /* 130 */ 542, 485, 480, 542, 459, 542, 542, 542, 542, 542, + /* 140 */ 477, 542, 542, 542, 542, 542, 478, 542, 427, 497, + /* 150 */ 541, 391, 541, 418, 542, 447, 428, 411, 422, 459, + /* 160 */ 415, 450, 531, 530, 529, 474, 446, 490, 459, 459, + /* 170 */ 490, 490, 490, 459, 542, 414, 419, 410, 419, 435, + /* 180 */ 542, 492, 542, 472, 511, 423, 542, 542, 542, 542, + /* 190 */ 542, 542, 542, 435, 542, 542, 542, 542, 542, 542, + /* 200 */ 542, 542, 432, 542, 542, 472, 423, 440, 542, 542, + /* 210 */ 542, 423, 542, 542, 542, 423, 542, 542, 542, 542, + /* 220 */ 542, 542, 542, 542, 542, 542, 448, 542, 416, 542, + /* 230 */ 414, 542, 542, 389, 388, 533, 483, 465, 469, 467, + /* 240 */ 468, 466, 481, 406, 403, 413, 402, 401, 400, 443, + /* 250 */ 362, 417, 393, 540, 392, 390, 394, 442, 538, 539, + /* 260 */ 535, 534, 532, 363, 367, 431, 430, 421, 470, 473, + /* 270 */ 429, 475, 436, 437, 438, 439, 487, 488, 375, 376, + /* 280 */ 377, 378, 537, 374, 426, 441, 373, 536, 425, 464, + /* 290 */ 408, 489, 423, 424, 405, 404, 371, 372, 407, 399, + /* 300 */ 434, 433, 460, 461, 462, 463, 456, 455, 476, 453, + /* 310 */ 458, 454, 379, 369, 524, 495, 380, 381, 523, 522, + /* 320 */ 366, 507, 508, 365, 382, 384, 471, 472, 397, 398, + /* 330 */ 396, 395, 385, 387, 386, 383, 504, 503, 498, 499, + /* 340 */ 513, 514, 526, 527, 451, 484, 482, 525, 515, 516, + /* 350 */ 368, 440, 493, 370, 512, 521, 517, 518, 519, 520, + /* 360 */ 364, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -1006,11 +1007,11 @@ static public $yy_action = array( ** self::YYERRORSYMBOL is the code number of the error symbol. If not ** defined, then do no error processing. */ - const YYNOCODE = 112; + const YYNOCODE = 114; const YYSTACKDEPTH = 100; - const YYNSTATE = 355; - const YYNRULE = 179; - const YYERRORSYMBOL = 70; + const YYNSTATE = 361; + const YYNRULE = 181; + const YYERRORSYMBOL = 72; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; /** The next table maps tokens into fallback tokens. If a construct @@ -1096,30 +1097,31 @@ static public $yy_action = array( 'SHORTTAGEND', 'SHORTTAGSTART', 'XML', 'LDEL', 'RDEL', 'DOLLAR', 'ID', 'EQUAL', 'FOREACH', 'PTR', 'IF', 'SPACE', - 'FOR', 'SEMICOLON', 'INCDEC', 'AS', - 'APTR', 'LDELSLASH', 'INTEGER', 'COMMA', - 'COLON', 'UNIMATH', 'OPENP', 'CLOSEP', - 'QMARK', 'MATH', 'ANDSYM', 'TYPECAST', - 'DOT', 'BOOLEAN', 'NULL', 'SINGLEQUOTESTRING', - 'QUOTE', 'DOUBLECOLON', 'AT', 'HATCH', - 'OPENB', 'CLOSEB', 'VERT', 'NOT', - 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN', - 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD', - 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF', - 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', - 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', 'NONEIDENTITY', - 'MOD', 'LAND', 'LOR', 'LXOR', - 'BACKTICK', 'DOLLARID', 'error', 'start', - 'template', 'template_element', 'smartytag', 'value', - 'attributes', 'variable', 'expr', 'ternary', - 'varindexed', 'modifier', 'modparameters', 'ifexprs', - 'statement', 'statements', 'optspace', 'varvar', - 'foraction', 'array', 'specialclose', 'attribute', - 'exprs', 'math', 'function', 'doublequoted', - 'method', 'params', 'objectchain', 'arrayindex', - 'object', 'indexdef', 'varvarele', 'objectelement', - 'modparameter', 'ifexpr', 'ifcond', 'lop', - 'arrayelements', 'arrayelement', 'doublequotedcontent', + 'FOR', 'SEMICOLON', 'INCDEC', 'TO', + 'STEP', 'AS', 'APTR', 'LDELSLASH', + 'INTEGER', 'COMMA', 'COLON', 'UNIMATH', + 'OPENP', 'CLOSEP', 'QMARK', 'MATH', + 'ANDSYM', 'TYPECAST', 'DOT', 'BOOLEAN', + 'NULL', 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', + 'AT', 'HATCH', 'OPENB', 'CLOSEB', + 'VERT', 'NOT', 'ISIN', 'ISDIVBY', + 'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', + 'ISNOTEVENBY', 'ISODD', 'ISNOTODD', 'ISODDBY', + 'ISNOTODDBY', 'INSTANCEOF', 'EQUALS', 'NOTEQUALS', + 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', + 'IDENTITY', 'NONEIDENTITY', 'MOD', 'LAND', + 'LOR', 'LXOR', 'BACKTICK', 'DOLLARID', + 'error', 'start', 'template', 'template_element', + 'smartytag', 'value', 'attributes', 'variable', + 'expr', 'ternary', 'varindexed', 'modifier', + 'modparameters', 'ifexprs', 'statement', 'statements', + 'optspace', 'varvar', 'foraction', 'array', + 'specialclose', 'attribute', 'exprs', 'math', + 'function', 'doublequoted', 'method', 'params', + 'objectchain', 'arrayindex', 'object', 'indexdef', + 'varvarele', 'objectelement', 'modparameter', 'ifexpr', + 'ifcond', 'lop', 'arrayelements', 'arrayelement', + 'doublequotedcontent', ); /** @@ -1159,153 +1161,155 @@ static public $yy_action = array( /* 29 */ "smartytag ::= LDEL FOR SPACE statements SEMICOLON optspace ifexprs SEMICOLON optspace DOLLAR varvar foraction RDEL", /* 30 */ "foraction ::= EQUAL expr", /* 31 */ "foraction ::= INCDEC", - /* 32 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", - /* 33 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 34 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", - /* 35 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", - /* 36 */ "smartytag ::= LDELSLASH ID RDEL", - /* 37 */ "smartytag ::= LDELSLASH specialclose RDEL", - /* 38 */ "specialclose ::= IF", - /* 39 */ "specialclose ::= FOR", - /* 40 */ "specialclose ::= FOREACH", - /* 41 */ "smartytag ::= LDELSLASH ID attributes RDEL", - /* 42 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", - /* 43 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", - /* 44 */ "attributes ::= attributes attribute", - /* 45 */ "attributes ::= attribute", - /* 46 */ "attributes ::=", - /* 47 */ "attribute ::= SPACE ID EQUAL ID", - /* 48 */ "attribute ::= SPACE ID EQUAL expr", - /* 49 */ "attribute ::= SPACE ID EQUAL value", - /* 50 */ "attribute ::= SPACE ID EQUAL ternary", - /* 51 */ "attribute ::= SPACE ID", - /* 52 */ "attribute ::= SPACE INTEGER EQUAL expr", - /* 53 */ "statements ::= statement", - /* 54 */ "statements ::= statements COMMA statement", - /* 55 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 56 */ "expr ::= ID", - /* 57 */ "expr ::= exprs", - /* 58 */ "expr ::= DOLLAR ID COLON ID", - /* 59 */ "expr ::= expr modifier modparameters", - /* 60 */ "exprs ::= value", - /* 61 */ "exprs ::= UNIMATH value", - /* 62 */ "exprs ::= exprs math value", - /* 63 */ "exprs ::= array", - /* 64 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", - /* 65 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 66 */ "math ::= UNIMATH", - /* 67 */ "math ::= MATH", - /* 68 */ "math ::= ANDSYM", - /* 69 */ "value ::= variable", - /* 70 */ "value ::= TYPECAST variable", - /* 71 */ "value ::= variable INCDEC", - /* 72 */ "value ::= INTEGER", - /* 73 */ "value ::= INTEGER DOT INTEGER", - /* 74 */ "value ::= BOOLEAN", - /* 75 */ "value ::= NULL", - /* 76 */ "value ::= function", - /* 77 */ "value ::= OPENP expr CLOSEP", - /* 78 */ "value ::= SINGLEQUOTESTRING", - /* 79 */ "value ::= QUOTE doublequoted QUOTE", - /* 80 */ "value ::= QUOTE QUOTE", - /* 81 */ "value ::= ID DOUBLECOLON method", - /* 82 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 83 */ "value ::= ID DOUBLECOLON method objectchain", - /* 84 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 85 */ "value ::= ID DOUBLECOLON ID", - /* 86 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 87 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 88 */ "value ::= smartytag", - /* 89 */ "variable ::= varindexed", - /* 90 */ "variable ::= DOLLAR varvar AT ID", - /* 91 */ "variable ::= object", - /* 92 */ "variable ::= HATCH ID HATCH", - /* 93 */ "variable ::= HATCH variable HATCH", - /* 94 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 95 */ "arrayindex ::= arrayindex indexdef", - /* 96 */ "arrayindex ::=", - /* 97 */ "indexdef ::= DOT ID", - /* 98 */ "indexdef ::= DOT BOOLEAN", - /* 99 */ "indexdef ::= DOT NULL", - /* 100 */ "indexdef ::= DOT INTEGER", - /* 101 */ "indexdef ::= DOT variable", - /* 102 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 103 */ "indexdef ::= OPENB ID CLOSEB", - /* 104 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 105 */ "indexdef ::= OPENB exprs CLOSEB", - /* 106 */ "indexdef ::= OPENB CLOSEB", - /* 107 */ "varvar ::= varvarele", - /* 108 */ "varvar ::= varvar varvarele", - /* 109 */ "varvarele ::= ID", - /* 110 */ "varvarele ::= LDEL expr RDEL", - /* 111 */ "object ::= varindexed objectchain", - /* 112 */ "objectchain ::= objectelement", - /* 113 */ "objectchain ::= objectchain objectelement", - /* 114 */ "objectelement ::= PTR ID arrayindex", - /* 115 */ "objectelement ::= PTR variable arrayindex", - /* 116 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 117 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 118 */ "objectelement ::= PTR method", - /* 119 */ "function ::= ID OPENP params CLOSEP", - /* 120 */ "method ::= ID OPENP params CLOSEP", - /* 121 */ "params ::= expr COMMA params", - /* 122 */ "params ::= expr", - /* 123 */ "params ::=", - /* 124 */ "modifier ::= VERT AT ID", - /* 125 */ "modifier ::= VERT ID", - /* 126 */ "modparameters ::= modparameters modparameter", - /* 127 */ "modparameters ::=", - /* 128 */ "modparameter ::= COLON exprs", - /* 129 */ "modparameter ::= COLON ID", - /* 130 */ "ifexprs ::= ifexpr", - /* 131 */ "ifexprs ::= NOT ifexprs", - /* 132 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 133 */ "ifexpr ::= expr", - /* 134 */ "ifexpr ::= expr ifcond expr", - /* 135 */ "ifexpr ::= expr ISIN array", - /* 136 */ "ifexpr ::= expr ISIN value", - /* 137 */ "ifexpr ::= ifexprs lop ifexprs", - /* 138 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 139 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 140 */ "ifexpr ::= ifexprs ISEVEN", - /* 141 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 142 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 143 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 144 */ "ifexpr ::= ifexprs ISODD", - /* 145 */ "ifexpr ::= ifexprs ISNOTODD", - /* 146 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 147 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 148 */ "ifexpr ::= value INSTANCEOF ID", - /* 149 */ "ifexpr ::= value INSTANCEOF value", - /* 150 */ "ifcond ::= EQUALS", - /* 151 */ "ifcond ::= NOTEQUALS", - /* 152 */ "ifcond ::= GREATERTHAN", - /* 153 */ "ifcond ::= LESSTHAN", - /* 154 */ "ifcond ::= GREATEREQUAL", - /* 155 */ "ifcond ::= LESSEQUAL", - /* 156 */ "ifcond ::= IDENTITY", - /* 157 */ "ifcond ::= NONEIDENTITY", - /* 158 */ "ifcond ::= MOD", - /* 159 */ "lop ::= LAND", - /* 160 */ "lop ::= LOR", - /* 161 */ "lop ::= LXOR", - /* 162 */ "array ::= OPENB arrayelements CLOSEB", - /* 163 */ "arrayelements ::= arrayelement", - /* 164 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 165 */ "arrayelements ::=", - /* 166 */ "arrayelement ::= value APTR expr", - /* 167 */ "arrayelement ::= ID APTR expr", - /* 168 */ "arrayelement ::= expr", - /* 169 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 170 */ "doublequoted ::= doublequotedcontent", - /* 171 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 172 */ "doublequotedcontent ::= DOLLARID", - /* 173 */ "doublequotedcontent ::= LDEL variable RDEL", - /* 174 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 175 */ "doublequotedcontent ::= smartytag", - /* 176 */ "doublequotedcontent ::= OTHER", - /* 177 */ "optspace ::= SPACE", - /* 178 */ "optspace ::=", + /* 32 */ "smartytag ::= LDEL FOR SPACE statement TO expr RDEL", + /* 33 */ "smartytag ::= LDEL FOR SPACE statement TO expr STEP expr RDEL", + /* 34 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar RDEL", + /* 35 */ "smartytag ::= LDEL FOREACH SPACE value AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 36 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar RDEL", + /* 37 */ "smartytag ::= LDEL FOREACH SPACE array AS DOLLAR varvar APTR DOLLAR varvar RDEL", + /* 38 */ "smartytag ::= LDELSLASH ID RDEL", + /* 39 */ "smartytag ::= LDELSLASH specialclose RDEL", + /* 40 */ "specialclose ::= IF", + /* 41 */ "specialclose ::= FOR", + /* 42 */ "specialclose ::= FOREACH", + /* 43 */ "smartytag ::= LDELSLASH ID attributes RDEL", + /* 44 */ "smartytag ::= LDELSLASH ID modifier modparameters attributes RDEL", + /* 45 */ "smartytag ::= LDELSLASH ID PTR ID RDEL", + /* 46 */ "attributes ::= attributes attribute", + /* 47 */ "attributes ::= attribute", + /* 48 */ "attributes ::=", + /* 49 */ "attribute ::= SPACE ID EQUAL ID", + /* 50 */ "attribute ::= SPACE ID EQUAL expr", + /* 51 */ "attribute ::= SPACE ID EQUAL value", + /* 52 */ "attribute ::= SPACE ID EQUAL ternary", + /* 53 */ "attribute ::= SPACE ID", + /* 54 */ "attribute ::= SPACE INTEGER EQUAL expr", + /* 55 */ "statements ::= statement", + /* 56 */ "statements ::= statements COMMA statement", + /* 57 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 58 */ "expr ::= ID", + /* 59 */ "expr ::= exprs", + /* 60 */ "expr ::= DOLLAR ID COLON ID", + /* 61 */ "expr ::= expr modifier modparameters", + /* 62 */ "exprs ::= value", + /* 63 */ "exprs ::= UNIMATH value", + /* 64 */ "exprs ::= exprs math value", + /* 65 */ "exprs ::= array", + /* 66 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", + /* 67 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 68 */ "math ::= UNIMATH", + /* 69 */ "math ::= MATH", + /* 70 */ "math ::= ANDSYM", + /* 71 */ "value ::= variable", + /* 72 */ "value ::= TYPECAST variable", + /* 73 */ "value ::= variable INCDEC", + /* 74 */ "value ::= INTEGER", + /* 75 */ "value ::= INTEGER DOT INTEGER", + /* 76 */ "value ::= BOOLEAN", + /* 77 */ "value ::= NULL", + /* 78 */ "value ::= function", + /* 79 */ "value ::= OPENP expr CLOSEP", + /* 80 */ "value ::= SINGLEQUOTESTRING", + /* 81 */ "value ::= QUOTE doublequoted QUOTE", + /* 82 */ "value ::= QUOTE QUOTE", + /* 83 */ "value ::= ID DOUBLECOLON method", + /* 84 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 85 */ "value ::= ID DOUBLECOLON method objectchain", + /* 86 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 87 */ "value ::= ID DOUBLECOLON ID", + /* 88 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 89 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 90 */ "value ::= smartytag", + /* 91 */ "variable ::= varindexed", + /* 92 */ "variable ::= DOLLAR varvar AT ID", + /* 93 */ "variable ::= object", + /* 94 */ "variable ::= HATCH ID HATCH", + /* 95 */ "variable ::= HATCH variable HATCH", + /* 96 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 97 */ "arrayindex ::= arrayindex indexdef", + /* 98 */ "arrayindex ::=", + /* 99 */ "indexdef ::= DOT ID", + /* 100 */ "indexdef ::= DOT BOOLEAN", + /* 101 */ "indexdef ::= DOT NULL", + /* 102 */ "indexdef ::= DOT INTEGER", + /* 103 */ "indexdef ::= DOT variable", + /* 104 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 105 */ "indexdef ::= OPENB ID CLOSEB", + /* 106 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 107 */ "indexdef ::= OPENB exprs CLOSEB", + /* 108 */ "indexdef ::= OPENB CLOSEB", + /* 109 */ "varvar ::= varvarele", + /* 110 */ "varvar ::= varvar varvarele", + /* 111 */ "varvarele ::= ID", + /* 112 */ "varvarele ::= LDEL expr RDEL", + /* 113 */ "object ::= varindexed objectchain", + /* 114 */ "objectchain ::= objectelement", + /* 115 */ "objectchain ::= objectchain objectelement", + /* 116 */ "objectelement ::= PTR ID arrayindex", + /* 117 */ "objectelement ::= PTR variable arrayindex", + /* 118 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 119 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 120 */ "objectelement ::= PTR method", + /* 121 */ "function ::= ID OPENP params CLOSEP", + /* 122 */ "method ::= ID OPENP params CLOSEP", + /* 123 */ "params ::= expr COMMA params", + /* 124 */ "params ::= expr", + /* 125 */ "params ::=", + /* 126 */ "modifier ::= VERT AT ID", + /* 127 */ "modifier ::= VERT ID", + /* 128 */ "modparameters ::= modparameters modparameter", + /* 129 */ "modparameters ::=", + /* 130 */ "modparameter ::= COLON exprs", + /* 131 */ "modparameter ::= COLON ID", + /* 132 */ "ifexprs ::= ifexpr", + /* 133 */ "ifexprs ::= NOT ifexprs", + /* 134 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 135 */ "ifexpr ::= expr", + /* 136 */ "ifexpr ::= expr ifcond expr", + /* 137 */ "ifexpr ::= expr ISIN array", + /* 138 */ "ifexpr ::= expr ISIN value", + /* 139 */ "ifexpr ::= ifexprs lop ifexprs", + /* 140 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 141 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 142 */ "ifexpr ::= ifexprs ISEVEN", + /* 143 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 144 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 145 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 146 */ "ifexpr ::= ifexprs ISODD", + /* 147 */ "ifexpr ::= ifexprs ISNOTODD", + /* 148 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 149 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 150 */ "ifexpr ::= value INSTANCEOF ID", + /* 151 */ "ifexpr ::= value INSTANCEOF value", + /* 152 */ "ifcond ::= EQUALS", + /* 153 */ "ifcond ::= NOTEQUALS", + /* 154 */ "ifcond ::= GREATERTHAN", + /* 155 */ "ifcond ::= LESSTHAN", + /* 156 */ "ifcond ::= GREATEREQUAL", + /* 157 */ "ifcond ::= LESSEQUAL", + /* 158 */ "ifcond ::= IDENTITY", + /* 159 */ "ifcond ::= NONEIDENTITY", + /* 160 */ "ifcond ::= MOD", + /* 161 */ "lop ::= LAND", + /* 162 */ "lop ::= LOR", + /* 163 */ "lop ::= LXOR", + /* 164 */ "array ::= OPENB arrayelements CLOSEB", + /* 165 */ "arrayelements ::= arrayelement", + /* 166 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 167 */ "arrayelements ::=", + /* 168 */ "arrayelement ::= value APTR expr", + /* 169 */ "arrayelement ::= ID APTR expr", + /* 170 */ "arrayelement ::= expr", + /* 171 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 172 */ "doublequoted ::= doublequotedcontent", + /* 173 */ "doublequotedcontent ::= BACKTICK variable 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 ::=", ); /** @@ -1670,185 +1674,187 @@ static public $yy_action = array( * */ static public $yyRuleInfo = array( - array( 'lhs' => 71, 'rhs' => 1 ), - array( 'lhs' => 72, 'rhs' => 1 ), - array( 'lhs' => 72, 'rhs' => 2 ), array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 3 ), - array( 'lhs' => 73, 'rhs' => 3 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 73, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 7 ), - array( 'lhs' => 74, 'rhs' => 7 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 8 ), - array( 'lhs' => 74, 'rhs' => 5 ), - array( 'lhs' => 74, 'rhs' => 5 ), - array( 'lhs' => 74, 'rhs' => 13 ), - array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 8 ), - array( 'lhs' => 74, 'rhs' => 11 ), - array( 'lhs' => 74, 'rhs' => 8 ), - array( 'lhs' => 74, 'rhs' => 11 ), - array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 74, 'rhs' => 3 ), + array( 'lhs' => 74, 'rhs' => 1 ), + array( 'lhs' => 74, 'rhs' => 2 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 75, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 7 ), + array( 'lhs' => 76, 'rhs' => 7 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 8 ), + array( 'lhs' => 76, 'rhs' => 5 ), + array( 'lhs' => 76, 'rhs' => 5 ), + array( 'lhs' => 76, 'rhs' => 13 ), + array( 'lhs' => 90, 'rhs' => 2 ), array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 74, 'rhs' => 4 ), - array( 'lhs' => 74, 'rhs' => 6 ), - array( 'lhs' => 74, 'rhs' => 5 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 0 ), - array( 'lhs' => 91, 'rhs' => 4 ), - array( 'lhs' => 91, 'rhs' => 4 ), - array( 'lhs' => 91, 'rhs' => 4 ), - array( 'lhs' => 91, 'rhs' => 4 ), - array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 4 ), - array( 'lhs' => 85, 'rhs' => 1 ), - array( 'lhs' => 85, 'rhs' => 3 ), - array( 'lhs' => 84, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 1 ), - array( 'lhs' => 78, 'rhs' => 4 ), - array( 'lhs' => 78, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 7 ), + array( 'lhs' => 76, 'rhs' => 9 ), + array( 'lhs' => 76, 'rhs' => 8 ), + array( 'lhs' => 76, 'rhs' => 11 ), + array( 'lhs' => 76, 'rhs' => 8 ), + array( 'lhs' => 76, 'rhs' => 11 ), + array( 'lhs' => 76, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 3 ), array( 'lhs' => 92, 'rhs' => 1 ), - array( 'lhs' => 92, 'rhs' => 2 ), - array( 'lhs' => 92, 'rhs' => 3 ), array( 'lhs' => 92, 'rhs' => 1 ), - array( 'lhs' => 79, 'rhs' => 7 ), - array( 'lhs' => 79, 'rhs' => 7 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 2 ), - array( 'lhs' => 75, 'rhs' => 2 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 2 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 7 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 8 ), - array( 'lhs' => 75, 'rhs' => 3 ), - array( 'lhs' => 75, 'rhs' => 5 ), - array( 'lhs' => 75, 'rhs' => 6 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 4 ), - array( 'lhs' => 77, 'rhs' => 1 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 3 ), - array( 'lhs' => 80, 'rhs' => 3 ), - array( 'lhs' => 99, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 0 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 2 ), - array( 'lhs' => 101, 'rhs' => 4 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 5 ), - array( 'lhs' => 101, 'rhs' => 3 ), - array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 6 ), + array( 'lhs' => 76, 'rhs' => 5 ), + array( 'lhs' => 78, 'rhs' => 2 ), + array( 'lhs' => 78, 'rhs' => 1 ), + array( 'lhs' => 78, 'rhs' => 0 ), + array( 'lhs' => 93, 'rhs' => 4 ), + array( 'lhs' => 93, 'rhs' => 4 ), + array( 'lhs' => 93, 'rhs' => 4 ), + array( 'lhs' => 93, 'rhs' => 4 ), + array( 'lhs' => 93, 'rhs' => 2 ), + array( 'lhs' => 93, 'rhs' => 4 ), array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 102, 'rhs' => 1 ), - array( 'lhs' => 102, 'rhs' => 3 ), - array( 'lhs' => 100, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 87, 'rhs' => 3 ), + array( 'lhs' => 86, 'rhs' => 4 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 4 ), + array( 'lhs' => 80, 'rhs' => 3 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 2 ), + array( 'lhs' => 94, 'rhs' => 3 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 81, 'rhs' => 7 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 7 ), + array( 'lhs' => 77, 'rhs' => 4 ), + array( 'lhs' => 77, 'rhs' => 8 ), + array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 77, 'rhs' => 5 ), + array( 'lhs' => 77, 'rhs' => 6 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 4 ), + array( 'lhs' => 79, 'rhs' => 1 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 79, 'rhs' => 3 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 101, 'rhs' => 0 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 2 ), + 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' => 6 ), + array( 'lhs' => 103, 'rhs' => 3 ), array( 'lhs' => 103, 'rhs' => 2 ), - array( 'lhs' => 94, 'rhs' => 4 ), + array( 'lhs' => 89, 'rhs' => 1 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 1 ), + array( 'lhs' => 104, 'rhs' => 3 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 100, 'rhs' => 1 ), + array( 'lhs' => 100, 'rhs' => 2 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 105, 'rhs' => 5 ), + array( 'lhs' => 105, 'rhs' => 6 ), + array( 'lhs' => 105, 'rhs' => 2 ), array( 'lhs' => 96, 'rhs' => 4 ), - array( 'lhs' => 97, 'rhs' => 3 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 0 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 2 ), - array( 'lhs' => 82, 'rhs' => 0 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 99, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 1 ), + array( 'lhs' => 99, 'rhs' => 0 ), array( 'lhs' => 83, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 1 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 105, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 2 ), + array( 'lhs' => 84, 'rhs' => 0 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 106, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 85, 'rhs' => 3 ), array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 107, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 107, 'rhs' => 3 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 108, 'rhs' => 1 ), array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 3 ), - array( 'lhs' => 108, 'rhs' => 0 ), - array( 'lhs' => 109, 'rhs' => 3 ), - array( 'lhs' => 109, 'rhs' => 3 ), array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 95, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 3 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 3 ), array( 'lhs' => 110, 'rhs' => 1 ), array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 3 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 1 ), - array( 'lhs' => 86, 'rhs' => 0 ), + array( 'lhs' => 110, 'rhs' => 0 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 3 ), + array( 'lhs' => 111, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 2 ), + array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 88, 'rhs' => 0 ), ); /** @@ -1859,30 +1865,30 @@ static public $yy_action = array( */ static public $yyReduceMap = array( 0 => 0, - 38 => 0, - 39 => 0, 40 => 0, - 60 => 0, - 69 => 0, - 72 => 0, + 41 => 0, + 42 => 0, + 62 => 0, + 71 => 0, 74 => 0, - 75 => 0, 76 => 0, + 77 => 0, 78 => 0, - 91 => 0, - 163 => 0, + 80 => 0, + 93 => 0, + 165 => 0, 1 => 1, - 57 => 1, - 63 => 1, - 66 => 1, - 67 => 1, - 107 => 1, - 130 => 1, - 170 => 1, - 176 => 1, - 177 => 1, + 59 => 1, + 65 => 1, + 68 => 1, + 69 => 1, + 109 => 1, + 132 => 1, + 172 => 1, + 178 => 1, + 179 => 1, 2 => 2, - 126 => 2, + 128 => 2, 3 => 3, 4 => 4, 5 => 5, @@ -1912,43 +1918,43 @@ static public $yy_action = array( 29 => 29, 30 => 30, 31 => 31, - 45 => 31, - 122 => 31, - 168 => 31, + 47 => 31, + 124 => 31, + 170 => 31, 32 => 32, 33 => 33, 34 => 34, 35 => 35, 36 => 36, - 37 => 36, - 41 => 41, - 42 => 42, + 37 => 37, + 38 => 38, + 39 => 38, 43 => 43, 44 => 44, + 45 => 45, 46 => 46, - 47 => 47, 48 => 48, - 49 => 48, - 50 => 48, - 52 => 48, - 51 => 51, + 49 => 49, + 50 => 50, + 51 => 50, + 52 => 50, + 54 => 50, 53 => 53, - 54 => 54, 55 => 55, 56 => 56, + 57 => 57, 58 => 58, - 59 => 59, + 60 => 60, 61 => 61, - 70 => 61, - 71 => 61, - 62 => 62, + 63 => 63, + 72 => 63, + 73 => 63, 64 => 64, - 65 => 64, - 68 => 68, - 73 => 73, - 77 => 77, + 66 => 66, + 67 => 66, + 70 => 70, + 75 => 75, 79 => 79, - 80 => 80, 81 => 81, 82 => 82, 83 => 83, @@ -1959,30 +1965,30 @@ static public $yy_action = array( 88 => 88, 89 => 89, 90 => 90, + 91 => 91, 92 => 92, - 93 => 93, 94 => 94, 95 => 95, - 169 => 95, 96 => 96, - 127 => 96, 97 => 97, - 98 => 97, - 99 => 97, - 100 => 100, - 101 => 101, + 171 => 97, + 98 => 98, + 129 => 98, + 99 => 99, + 100 => 99, + 101 => 99, 102 => 102, - 105 => 102, 103 => 103, 104 => 104, + 107 => 104, + 105 => 105, 106 => 106, - 178 => 106, 108 => 108, - 109 => 109, + 180 => 108, 110 => 110, - 132 => 110, 111 => 111, 112 => 112, + 134 => 112, 113 => 113, 114 => 114, 115 => 115, @@ -1992,30 +1998,30 @@ static public $yy_action = array( 119 => 119, 120 => 120, 121 => 121, + 122 => 122, 123 => 123, - 124 => 124, 125 => 125, - 128 => 128, - 129 => 129, + 126 => 126, + 127 => 127, + 130 => 130, 131 => 131, 133 => 133, - 134 => 134, - 137 => 134, - 148 => 134, 135 => 135, 136 => 136, + 139 => 136, + 150 => 136, + 137 => 137, 138 => 138, - 139 => 139, 140 => 140, - 145 => 140, 141 => 141, - 144 => 141, 142 => 142, 147 => 142, 143 => 143, 146 => 143, - 149 => 149, - 150 => 150, + 144 => 144, + 149 => 144, + 145 => 145, + 148 => 145, 151 => 151, 152 => 152, 153 => 153, @@ -2028,15 +2034,17 @@ static public $yy_action = array( 160 => 160, 161 => 161, 162 => 162, + 163 => 163, 164 => 164, - 165 => 165, 166 => 166, 167 => 167, - 171 => 171, - 173 => 171, - 172 => 172, + 168 => 168, + 169 => 169, + 173 => 173, + 175 => 173, 174 => 174, - 175 => 175, + 176 => 176, + 177 => 177, ); /* Beginning here are the reduction cases. A typical example ** follows: @@ -2046,23 +2054,23 @@ static public $yy_action = array( */ #line 78 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2054 "smarty_internal_templateparser.php" +#line 2062 "smarty_internal_templateparser.php" #line 84 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2057 "smarty_internal_templateparser.php" +#line 2065 "smarty_internal_templateparser.php" #line 86 "smarty_internal_templateparser.y" function yy_r2(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2060 "smarty_internal_templateparser.php" +#line 2068 "smarty_internal_templateparser.php" #line 92 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->compiler->has_variable_string = false; } -#line 2067 "smarty_internal_templateparser.php" +#line 2075 "smarty_internal_templateparser.php" #line 99 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 2070 "smarty_internal_templateparser.php" +#line 2078 "smarty_internal_templateparser.php" #line 104 "smarty_internal_templateparser.y" function yy_r5(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor)."?>', ENT_QUOTES);?>\n", $this->compiler, false); @@ -2074,7 +2082,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2082 "smarty_internal_templateparser.php" +#line 2090 "smarty_internal_templateparser.php" #line 115 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { @@ -2085,40 +2093,40 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2093 "smarty_internal_templateparser.php" +#line 2101 "smarty_internal_templateparser.php" #line 126 "smarty_internal_templateparser.y" function yy_r7(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } -#line 2096 "smarty_internal_templateparser.php" +#line 2104 "smarty_internal_templateparser.php" #line 127 "smarty_internal_templateparser.y" function yy_r8(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } -#line 2099 "smarty_internal_templateparser.php" +#line 2107 "smarty_internal_templateparser.php" #line 129 "smarty_internal_templateparser.y" function yy_r9(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } -#line 2102 "smarty_internal_templateparser.php" +#line 2110 "smarty_internal_templateparser.php" #line 137 "smarty_internal_templateparser.y" function yy_r10(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2105 "smarty_internal_templateparser.php" +#line 2113 "smarty_internal_templateparser.php" #line 138 "smarty_internal_templateparser.y" function yy_r11(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2108 "smarty_internal_templateparser.php" +#line 2116 "smarty_internal_templateparser.php" #line 149 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2111 "smarty_internal_templateparser.php" +#line 2119 "smarty_internal_templateparser.php" #line 151 "smarty_internal_templateparser.y" function yy_r17(){ $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 2114 "smarty_internal_templateparser.php" +#line 2122 "smarty_internal_templateparser.php" #line 153 "smarty_internal_templateparser.y" function yy_r19(){ $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 2117 "smarty_internal_templateparser.php" +#line 2125 "smarty_internal_templateparser.php" #line 156 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2120 "smarty_internal_templateparser.php" +#line 2128 "smarty_internal_templateparser.php" #line 158 "smarty_internal_templateparser.y" function yy_r23(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2123 "smarty_internal_templateparser.php" +#line 2131 "smarty_internal_templateparser.php" #line 160 "smarty_internal_templateparser.y" function yy_r24(){ $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 2126 "smarty_internal_templateparser.php" +#line 2134 "smarty_internal_templateparser.php" #line 162 "smarty_internal_templateparser.y" function yy_r25(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { @@ -2133,7 +2141,7 @@ static public $yy_action = array( } } } -#line 2141 "smarty_internal_templateparser.php" +#line 2149 "smarty_internal_templateparser.php" #line 176 "smarty_internal_templateparser.y" function yy_r26(){ $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)).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { @@ -2148,44 +2156,50 @@ static public $yy_action = array( } } } -#line 2156 "smarty_internal_templateparser.php" +#line 2164 "smarty_internal_templateparser.php" #line 190 "smarty_internal_templateparser.y" function yy_r27(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2159 "smarty_internal_templateparser.php" +#line 2167 "smarty_internal_templateparser.php" #line 193 "smarty_internal_templateparser.y" function yy_r29(){ $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 2163 "smarty_internal_templateparser.php" +#line 2171 "smarty_internal_templateparser.php" #line 195 "smarty_internal_templateparser.y" function yy_r30(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2166 "smarty_internal_templateparser.php" +#line 2174 "smarty_internal_templateparser.php" #line 196 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2169 "smarty_internal_templateparser.php" -#line 198 "smarty_internal_templateparser.y" - function yy_r32(){ - $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 2173 "smarty_internal_templateparser.php" -#line 200 "smarty_internal_templateparser.y" - function yy_r33(){ - $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 2177 "smarty_internal_templateparser.php" -#line 202 "smarty_internal_templateparser.y" - function yy_r34(){ +#line 197 "smarty_internal_templateparser.y" + function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('start'=>$this->yystack[$this->yyidx + -3]->minor,'to'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2180 "smarty_internal_templateparser.php" +#line 198 "smarty_internal_templateparser.y" + function yy_r33(){ $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 2183 "smarty_internal_templateparser.php" +#line 200 "smarty_internal_templateparser.y" + function yy_r34(){ $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 2181 "smarty_internal_templateparser.php" -#line 204 "smarty_internal_templateparser.y" - function yy_r35(){ +#line 2187 "smarty_internal_templateparser.php" +#line 202 "smarty_internal_templateparser.y" + function yy_r35(){ $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 2185 "smarty_internal_templateparser.php" -#line 208 "smarty_internal_templateparser.y" - function yy_r36(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2188 "smarty_internal_templateparser.php" -#line 213 "smarty_internal_templateparser.y" - function yy_r41(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } #line 2191 "smarty_internal_templateparser.php" -#line 214 "smarty_internal_templateparser.y" - function yy_r42(){ $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 + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2195 "smarty_internal_templateparser.php" +#line 206 "smarty_internal_templateparser.y" + function yy_r37(){ + $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 2199 "smarty_internal_templateparser.php" +#line 210 "smarty_internal_templateparser.y" + function yy_r38(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } +#line 2202 "smarty_internal_templateparser.php" +#line 215 "smarty_internal_templateparser.y" + function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } +#line 2205 "smarty_internal_templateparser.php" +#line 216 "smarty_internal_templateparser.y" + function yy_r44(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -3]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -2]->minor. "),".$this->yystack[$this->yyidx + -3]->minor[1].");?>"; } else { @@ -2198,42 +2212,42 @@ static public $yy_action = array( } } } -#line 2206 "smarty_internal_templateparser.php" -#line 228 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2209 "smarty_internal_templateparser.php" -#line 235 "smarty_internal_templateparser.y" - function yy_r44(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2212 "smarty_internal_templateparser.php" -#line 239 "smarty_internal_templateparser.y" - function yy_r46(){ $this->_retvalue = array(); } -#line 2215 "smarty_internal_templateparser.php" -#line 242 "smarty_internal_templateparser.y" - function yy_r47(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2218 "smarty_internal_templateparser.php" -#line 243 "smarty_internal_templateparser.y" - function yy_r48(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2221 "smarty_internal_templateparser.php" -#line 246 "smarty_internal_templateparser.y" - function yy_r51(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2224 "smarty_internal_templateparser.php" -#line 253 "smarty_internal_templateparser.y" - function yy_r53(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2227 "smarty_internal_templateparser.php" -#line 254 "smarty_internal_templateparser.y" - function yy_r54(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2230 "smarty_internal_templateparser.php" +#line 2220 "smarty_internal_templateparser.php" +#line 230 "smarty_internal_templateparser.y" + function yy_r45(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } +#line 2223 "smarty_internal_templateparser.php" +#line 237 "smarty_internal_templateparser.y" + function yy_r46(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2226 "smarty_internal_templateparser.php" +#line 241 "smarty_internal_templateparser.y" + function yy_r48(){ $this->_retvalue = array(); } +#line 2229 "smarty_internal_templateparser.php" +#line 244 "smarty_internal_templateparser.y" + function yy_r49(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } +#line 2232 "smarty_internal_templateparser.php" +#line 245 "smarty_internal_templateparser.y" + function yy_r50(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2235 "smarty_internal_templateparser.php" +#line 248 "smarty_internal_templateparser.y" + function yy_r53(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } +#line 2238 "smarty_internal_templateparser.php" +#line 255 "smarty_internal_templateparser.y" + function yy_r55(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2241 "smarty_internal_templateparser.php" #line 256 "smarty_internal_templateparser.y" - function yy_r55(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2233 "smarty_internal_templateparser.php" -#line 262 "smarty_internal_templateparser.y" - function yy_r56(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2236 "smarty_internal_templateparser.php" -#line 265 "smarty_internal_templateparser.y" - function yy_r58(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2239 "smarty_internal_templateparser.php" -#line 266 "smarty_internal_templateparser.y" - function yy_r59(){ + function yy_r56(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2244 "smarty_internal_templateparser.php" +#line 258 "smarty_internal_templateparser.y" + function yy_r57(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2247 "smarty_internal_templateparser.php" +#line 264 "smarty_internal_templateparser.y" + function yy_r58(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2250 "smarty_internal_templateparser.php" +#line 267 "smarty_internal_templateparser.y" + function yy_r60(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2253 "smarty_internal_templateparser.php" +#line 268 "smarty_internal_templateparser.y" + function yy_r61(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { $this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")"; } else { @@ -2246,267 +2260,267 @@ static public $yy_action = array( } } } -#line 2254 "smarty_internal_templateparser.php" -#line 283 "smarty_internal_templateparser.y" - function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2257 "smarty_internal_templateparser.php" +#line 2268 "smarty_internal_templateparser.php" #line 285 "smarty_internal_templateparser.y" - function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2260 "smarty_internal_templateparser.php" -#line 292 "smarty_internal_templateparser.y" - function yy_r64(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2263 "smarty_internal_templateparser.php" -#line 306 "smarty_internal_templateparser.y" - function yy_r68(){$this->_retvalue = ' & '; } -#line 2266 "smarty_internal_templateparser.php" -#line 314 "smarty_internal_templateparser.y" - function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2269 "smarty_internal_templateparser.php" -#line 324 "smarty_internal_templateparser.y" - function yy_r77(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2272 "smarty_internal_templateparser.php" -#line 328 "smarty_internal_templateparser.y" - function yy_r79(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); + function yy_r63(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2271 "smarty_internal_templateparser.php" +#line 287 "smarty_internal_templateparser.y" + function yy_r64(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } +#line 2274 "smarty_internal_templateparser.php" +#line 294 "smarty_internal_templateparser.y" + function yy_r66(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2277 "smarty_internal_templateparser.php" +#line 308 "smarty_internal_templateparser.y" + function yy_r70(){$this->_retvalue = ' & '; } +#line 2280 "smarty_internal_templateparser.php" +#line 316 "smarty_internal_templateparser.y" + function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2283 "smarty_internal_templateparser.php" +#line 326 "smarty_internal_templateparser.y" + function yy_r79(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2286 "smarty_internal_templateparser.php" +#line 330 "smarty_internal_templateparser.y" + function yy_r81(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); if (substr($_s,0,3) == '"".') { $this->_retvalue = substr($_s,3); } else { $this->_retvalue = $_s; } } -#line 2281 "smarty_internal_templateparser.php" -#line 335 "smarty_internal_templateparser.y" - function yy_r80(){ $this->_retvalue = "''"; } -#line 2284 "smarty_internal_templateparser.php" +#line 2295 "smarty_internal_templateparser.php" #line 337 "smarty_internal_templateparser.y" - function yy_r81(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2287 "smarty_internal_templateparser.php" -#line 338 "smarty_internal_templateparser.y" - function yy_r82(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2290 "smarty_internal_templateparser.php" + function yy_r82(){ $this->_retvalue = "''"; } +#line 2298 "smarty_internal_templateparser.php" +#line 339 "smarty_internal_templateparser.y" + function yy_r83(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2301 "smarty_internal_templateparser.php" #line 340 "smarty_internal_templateparser.y" - function yy_r83(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2293 "smarty_internal_templateparser.php" -#line 341 "smarty_internal_templateparser.y" - function yy_r84(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2296 "smarty_internal_templateparser.php" + function yy_r84(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2304 "smarty_internal_templateparser.php" +#line 342 "smarty_internal_templateparser.y" + function yy_r85(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2307 "smarty_internal_templateparser.php" #line 343 "smarty_internal_templateparser.y" - function yy_r85(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2299 "smarty_internal_templateparser.php" + function yy_r86(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2310 "smarty_internal_templateparser.php" #line 345 "smarty_internal_templateparser.y" - function yy_r86(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2302 "smarty_internal_templateparser.php" + function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2313 "smarty_internal_templateparser.php" #line 347 "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 + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2305 "smarty_internal_templateparser.php" + function yy_r88(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2316 "smarty_internal_templateparser.php" #line 349 "smarty_internal_templateparser.y" - function yy_r88(){ $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 2308 "smarty_internal_templateparser.php" -#line 358 "smarty_internal_templateparser.y" - function yy_r89(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { + function yy_r89(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2319 "smarty_internal_templateparser.php" +#line 351 "smarty_internal_templateparser.y" + function yy_r90(){ $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 2322 "smarty_internal_templateparser.php" +#line 360 "smarty_internal_templateparser.y" + function yy_r91(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['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 2312 "smarty_internal_templateparser.php" -#line 361 "smarty_internal_templateparser.y" - function yy_r90(){ $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 2315 "smarty_internal_templateparser.php" -#line 365 "smarty_internal_templateparser.y" - function yy_r92(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2318 "smarty_internal_templateparser.php" -#line 366 "smarty_internal_templateparser.y" - function yy_r93(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2321 "smarty_internal_templateparser.php" -#line 369 "smarty_internal_templateparser.y" - function yy_r94(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2324 "smarty_internal_templateparser.php" -#line 375 "smarty_internal_templateparser.y" - function yy_r95(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2327 "smarty_internal_templateparser.php" +#line 2326 "smarty_internal_templateparser.php" +#line 363 "smarty_internal_templateparser.y" + function yy_r92(){ $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 2329 "smarty_internal_templateparser.php" +#line 367 "smarty_internal_templateparser.y" + function yy_r94(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2332 "smarty_internal_templateparser.php" +#line 368 "smarty_internal_templateparser.y" + function yy_r95(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2335 "smarty_internal_templateparser.php" +#line 371 "smarty_internal_templateparser.y" + function yy_r96(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2338 "smarty_internal_templateparser.php" #line 377 "smarty_internal_templateparser.y" - function yy_r96(){return; } -#line 2330 "smarty_internal_templateparser.php" -#line 381 "smarty_internal_templateparser.y" - function yy_r97(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2333 "smarty_internal_templateparser.php" -#line 385 "smarty_internal_templateparser.y" - function yy_r100(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2336 "smarty_internal_templateparser.php" -#line 386 "smarty_internal_templateparser.y" - function yy_r101(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2339 "smarty_internal_templateparser.php" + function yy_r97(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2341 "smarty_internal_templateparser.php" +#line 379 "smarty_internal_templateparser.y" + function yy_r98(){return; } +#line 2344 "smarty_internal_templateparser.php" +#line 383 "smarty_internal_templateparser.y" + function yy_r99(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2347 "smarty_internal_templateparser.php" #line 387 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2342 "smarty_internal_templateparser.php" + function yy_r102(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2350 "smarty_internal_templateparser.php" +#line 388 "smarty_internal_templateparser.y" + function yy_r103(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } +#line 2353 "smarty_internal_templateparser.php" #line 389 "smarty_internal_templateparser.y" - function yy_r103(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2345 "smarty_internal_templateparser.php" -#line 390 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2348 "smarty_internal_templateparser.php" -#line 394 "smarty_internal_templateparser.y" - function yy_r106(){$this->_retvalue = ''; } -#line 2351 "smarty_internal_templateparser.php" -#line 402 "smarty_internal_templateparser.y" - function yy_r108(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2354 "smarty_internal_templateparser.php" + function yy_r104(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2356 "smarty_internal_templateparser.php" +#line 391 "smarty_internal_templateparser.y" + function yy_r105(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2359 "smarty_internal_templateparser.php" +#line 392 "smarty_internal_templateparser.y" + function yy_r106(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2362 "smarty_internal_templateparser.php" +#line 396 "smarty_internal_templateparser.y" + function yy_r108(){$this->_retvalue = ''; } +#line 2365 "smarty_internal_templateparser.php" #line 404 "smarty_internal_templateparser.y" - function yy_r109(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2357 "smarty_internal_templateparser.php" -#line 407 "smarty_internal_templateparser.y" - function yy_r110(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2360 "smarty_internal_templateparser.php" -#line 412 "smarty_internal_templateparser.y" - function yy_r111(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { + function yy_r110(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2368 "smarty_internal_templateparser.php" +#line 406 "smarty_internal_templateparser.y" + function yy_r111(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2371 "smarty_internal_templateparser.php" +#line 409 "smarty_internal_templateparser.y" + function yy_r112(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2374 "smarty_internal_templateparser.php" +#line 414 "smarty_internal_templateparser.y" + function yy_r113(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['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['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 2364 "smarty_internal_templateparser.php" -#line 415 "smarty_internal_templateparser.y" - function yy_r112(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2367 "smarty_internal_templateparser.php" +#line 2378 "smarty_internal_templateparser.php" #line 417 "smarty_internal_templateparser.y" - function yy_r113(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2370 "smarty_internal_templateparser.php" + function yy_r114(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2381 "smarty_internal_templateparser.php" #line 419 "smarty_internal_templateparser.y" - function yy_r114(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2373 "smarty_internal_templateparser.php" -#line 420 "smarty_internal_templateparser.y" - function yy_r115(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2376 "smarty_internal_templateparser.php" + function yy_r115(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2384 "smarty_internal_templateparser.php" #line 421 "smarty_internal_templateparser.y" - function yy_r116(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2379 "smarty_internal_templateparser.php" + function yy_r116(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2387 "smarty_internal_templateparser.php" #line 422 "smarty_internal_templateparser.y" - function yy_r117(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2382 "smarty_internal_templateparser.php" + function yy_r117(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2390 "smarty_internal_templateparser.php" +#line 423 "smarty_internal_templateparser.y" + function yy_r118(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2393 "smarty_internal_templateparser.php" #line 424 "smarty_internal_templateparser.y" - function yy_r118(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2385 "smarty_internal_templateparser.php" -#line 430 "smarty_internal_templateparser.y" - function yy_r119(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r119(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2396 "smarty_internal_templateparser.php" +#line 426 "smarty_internal_templateparser.y" + function yy_r120(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2399 "smarty_internal_templateparser.php" +#line 432 "smarty_internal_templateparser.y" + function yy_r121(){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 2394 "smarty_internal_templateparser.php" -#line 441 "smarty_internal_templateparser.y" - function yy_r120(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2397 "smarty_internal_templateparser.php" -#line 445 "smarty_internal_templateparser.y" - function yy_r121(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2400 "smarty_internal_templateparser.php" -#line 449 "smarty_internal_templateparser.y" - function yy_r123(){ return; } -#line 2403 "smarty_internal_templateparser.php" -#line 454 "smarty_internal_templateparser.y" - function yy_r124(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2406 "smarty_internal_templateparser.php" -#line 455 "smarty_internal_templateparser.y" - function yy_r125(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2409 "smarty_internal_templateparser.php" -#line 471 "smarty_internal_templateparser.y" - function yy_r128(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2412 "smarty_internal_templateparser.php" -#line 472 "smarty_internal_templateparser.y" - function yy_r129(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2415 "smarty_internal_templateparser.php" -#line 479 "smarty_internal_templateparser.y" - function yy_r131(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2418 "smarty_internal_templateparser.php" -#line 484 "smarty_internal_templateparser.y" - function yy_r133(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2421 "smarty_internal_templateparser.php" +#line 2408 "smarty_internal_templateparser.php" +#line 443 "smarty_internal_templateparser.y" + function yy_r122(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2411 "smarty_internal_templateparser.php" +#line 447 "smarty_internal_templateparser.y" + function yy_r123(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2414 "smarty_internal_templateparser.php" +#line 451 "smarty_internal_templateparser.y" + function yy_r125(){ return; } +#line 2417 "smarty_internal_templateparser.php" +#line 456 "smarty_internal_templateparser.y" + function yy_r126(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } +#line 2420 "smarty_internal_templateparser.php" +#line 457 "smarty_internal_templateparser.y" + function yy_r127(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } +#line 2423 "smarty_internal_templateparser.php" +#line 473 "smarty_internal_templateparser.y" + function yy_r130(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2426 "smarty_internal_templateparser.php" +#line 474 "smarty_internal_templateparser.y" + function yy_r131(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2429 "smarty_internal_templateparser.php" +#line 481 "smarty_internal_templateparser.y" + function yy_r133(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2432 "smarty_internal_templateparser.php" #line 486 "smarty_internal_templateparser.y" - function yy_r134(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2424 "smarty_internal_templateparser.php" -#line 487 "smarty_internal_templateparser.y" - function yy_r135(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2427 "smarty_internal_templateparser.php" + function yy_r135(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 2435 "smarty_internal_templateparser.php" #line 488 "smarty_internal_templateparser.y" - function yy_r136(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2430 "smarty_internal_templateparser.php" + function yy_r136(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2438 "smarty_internal_templateparser.php" +#line 489 "smarty_internal_templateparser.y" + function yy_r137(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2441 "smarty_internal_templateparser.php" #line 490 "smarty_internal_templateparser.y" - function yy_r138(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2433 "smarty_internal_templateparser.php" -#line 491 "smarty_internal_templateparser.y" - function yy_r139(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2436 "smarty_internal_templateparser.php" + function yy_r138(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2444 "smarty_internal_templateparser.php" #line 492 "smarty_internal_templateparser.y" - function yy_r140(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2439 "smarty_internal_templateparser.php" + function yy_r140(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2447 "smarty_internal_templateparser.php" #line 493 "smarty_internal_templateparser.y" - function yy_r141(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2442 "smarty_internal_templateparser.php" + function yy_r141(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2450 "smarty_internal_templateparser.php" #line 494 "smarty_internal_templateparser.y" - function yy_r142(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2445 "smarty_internal_templateparser.php" + function yy_r142(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2453 "smarty_internal_templateparser.php" #line 495 "smarty_internal_templateparser.y" - function yy_r143(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2448 "smarty_internal_templateparser.php" -#line 501 "smarty_internal_templateparser.y" - function yy_r149(){$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 2451 "smarty_internal_templateparser.php" + function yy_r143(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2456 "smarty_internal_templateparser.php" +#line 496 "smarty_internal_templateparser.y" + function yy_r144(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2459 "smarty_internal_templateparser.php" +#line 497 "smarty_internal_templateparser.y" + function yy_r145(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2462 "smarty_internal_templateparser.php" #line 503 "smarty_internal_templateparser.y" - function yy_r150(){$this->_retvalue = '=='; } -#line 2454 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r151(){$this->_retvalue = '!='; } -#line 2457 "smarty_internal_templateparser.php" + function yy_r151(){$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 2465 "smarty_internal_templateparser.php" #line 505 "smarty_internal_templateparser.y" - function yy_r152(){$this->_retvalue = '>'; } -#line 2460 "smarty_internal_templateparser.php" + function yy_r152(){$this->_retvalue = '=='; } +#line 2468 "smarty_internal_templateparser.php" #line 506 "smarty_internal_templateparser.y" - function yy_r153(){$this->_retvalue = '<'; } -#line 2463 "smarty_internal_templateparser.php" + function yy_r153(){$this->_retvalue = '!='; } +#line 2471 "smarty_internal_templateparser.php" #line 507 "smarty_internal_templateparser.y" - function yy_r154(){$this->_retvalue = '>='; } -#line 2466 "smarty_internal_templateparser.php" + function yy_r154(){$this->_retvalue = '>'; } +#line 2474 "smarty_internal_templateparser.php" #line 508 "smarty_internal_templateparser.y" - function yy_r155(){$this->_retvalue = '<='; } -#line 2469 "smarty_internal_templateparser.php" + function yy_r155(){$this->_retvalue = '<'; } +#line 2477 "smarty_internal_templateparser.php" #line 509 "smarty_internal_templateparser.y" - function yy_r156(){$this->_retvalue = '==='; } -#line 2472 "smarty_internal_templateparser.php" + function yy_r156(){$this->_retvalue = '>='; } +#line 2480 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" - function yy_r157(){$this->_retvalue = '!=='; } -#line 2475 "smarty_internal_templateparser.php" + function yy_r157(){$this->_retvalue = '<='; } +#line 2483 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = '%'; } -#line 2478 "smarty_internal_templateparser.php" + function yy_r158(){$this->_retvalue = '==='; } +#line 2486 "smarty_internal_templateparser.php" +#line 512 "smarty_internal_templateparser.y" + function yy_r159(){$this->_retvalue = '!=='; } +#line 2489 "smarty_internal_templateparser.php" #line 513 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '&&'; } -#line 2481 "smarty_internal_templateparser.php" -#line 514 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = '||'; } -#line 2484 "smarty_internal_templateparser.php" + function yy_r160(){$this->_retvalue = '%'; } +#line 2492 "smarty_internal_templateparser.php" #line 515 "smarty_internal_templateparser.y" - function yy_r161(){$this->_retvalue = ' XOR '; } -#line 2487 "smarty_internal_templateparser.php" -#line 520 "smarty_internal_templateparser.y" - function yy_r162(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2490 "smarty_internal_templateparser.php" + function yy_r161(){$this->_retvalue = '&&'; } +#line 2495 "smarty_internal_templateparser.php" +#line 516 "smarty_internal_templateparser.y" + function yy_r162(){$this->_retvalue = '||'; } +#line 2498 "smarty_internal_templateparser.php" +#line 517 "smarty_internal_templateparser.y" + function yy_r163(){$this->_retvalue = ' XOR '; } +#line 2501 "smarty_internal_templateparser.php" #line 522 "smarty_internal_templateparser.y" - function yy_r164(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2493 "smarty_internal_templateparser.php" -#line 523 "smarty_internal_templateparser.y" - function yy_r165(){ return; } -#line 2496 "smarty_internal_templateparser.php" + function yy_r164(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2504 "smarty_internal_templateparser.php" #line 524 "smarty_internal_templateparser.y" - function yy_r166(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2499 "smarty_internal_templateparser.php" + function yy_r166(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2507 "smarty_internal_templateparser.php" #line 525 "smarty_internal_templateparser.y" - function yy_r167(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2502 "smarty_internal_templateparser.php" -#line 534 "smarty_internal_templateparser.y" - function yy_r171(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } -#line 2505 "smarty_internal_templateparser.php" -#line 535 "smarty_internal_templateparser.y" - function yy_r172(){$this->_retvalue = '".'.'$_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; $this->compiler->has_variable_string = true; } -#line 2508 "smarty_internal_templateparser.php" + function yy_r167(){ return; } +#line 2510 "smarty_internal_templateparser.php" +#line 526 "smarty_internal_templateparser.y" + function yy_r168(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2513 "smarty_internal_templateparser.php" +#line 527 "smarty_internal_templateparser.y" + function yy_r169(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2516 "smarty_internal_templateparser.php" +#line 536 "smarty_internal_templateparser.y" + function yy_r173(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 2519 "smarty_internal_templateparser.php" #line 537 "smarty_internal_templateparser.y" - function yy_r174(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2511 "smarty_internal_templateparser.php" -#line 538 "smarty_internal_templateparser.y" - function yy_r175(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } -#line 2514 "smarty_internal_templateparser.php" + function yy_r174(){$this->_retvalue = '".'.'$_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; $this->compiler->has_variable_string = true; } +#line 2522 "smarty_internal_templateparser.php" +#line 539 "smarty_internal_templateparser.y" + function yy_r176(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2525 "smarty_internal_templateparser.php" +#line 540 "smarty_internal_templateparser.y" + function yy_r177(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } +#line 2528 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2623,7 +2637,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2632 "smarty_internal_templateparser.php" +#line 2646 "smarty_internal_templateparser.php" } /** @@ -2647,7 +2661,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2657 "smarty_internal_templateparser.php" +#line 2671 "smarty_internal_templateparser.php" } /**