diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index 4cfdaaa7..4fff5342 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -88,7 +88,7 @@ define('SMARTY_PHP_ALLOW', 3); //-> escape tags as entities * register the class autoloader */ spl_autoload_register('smartyAutoload'); - + /** * This is the main Smarty class @@ -527,7 +527,7 @@ class Smarty extends Smarty_Internal_TemplateBase { function smartyAutoload($class) { $_class = strtolower($class); - if (substr($_class, 0, 16) === 'smarty_internal_') { + if (substr($_class, 0, 16) === 'smarty_internal_' || $_class == 'smarty_security') { include SMARTY_SYSPLUGINS_DIR . $_class . '.php'; } } diff --git a/libs/sysplugins/smarty_internal_compilebase.php b/libs/sysplugins/smarty_internal_compilebase.php index d3226d38..61096420 100644 --- a/libs/sysplugins/smarty_internal_compilebase.php +++ b/libs/sysplugins/smarty_internal_compilebase.php @@ -52,7 +52,7 @@ abstract class Smarty_Internal_CompileBase $tmp_array = array_merge($this->required_attributes, $this->optional_attributes); foreach ($args as $key => $dummy) { if (!in_array($key, $tmp_array) && $key !== 0) { - $this->compiler->trigger_template_error("unexspected \"" . $key . "\" attribute"); + $this->compiler->trigger_template_error("unexpected \"" . $key . "\" attribute"); } } } diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index dbbb42f3..250da3b0 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -330,7 +330,7 @@ class Smarty_Internal_Templatelexer if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/"; + $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -370,24 +370,24 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 2 => array(2, "^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 5 => array(3, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 7 => array(3, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 8 => array(3, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 9 => array(3, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 10 => array(3, "^(".$this->ldel."rdelim".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 11 => array(3, "^(".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 12 => array(3, "^(".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 13 => array(3, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 14 => array(3, "^(".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 15 => array(3, "^(".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 16 => array(3, "^(".$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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 17 => array(3, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 18 => array(3, "^(\\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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 19 => 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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 21 => 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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), - 22 => 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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 1 => array(0, "^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 2 => array(2, "^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 5 => array(3, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 7 => array(3, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 8 => array(3, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 9 => array(3, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 10 => array(3, "^(".$this->ldel."rdelim".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 11 => array(3, "^(".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 12 => array(3, "^(".$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|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 13 => array(3, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 14 => array(3, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 15 => array(3, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 16 => array(3, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 17 => array(3, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 18 => array(3, "^(\\s+(AS|as)\\s+)|^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 19 => array(4, "^(\\s+instanceof\\s+)|^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 21 => array(4, "^(true|false)|^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), + 22 => array(4, "^(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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), 23 => 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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), 24 => 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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), 25 => 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*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*(\\*|\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(\\s*:\\s*)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\s*\\?\\s*)|^(([A-Za-z]\\w*\\s+){5,})|^(\\w+)|^(\\s+)|^(.)"), diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index c1121336..ed786baa 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -223,9 +223,9 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_INSTANCEOF = 69; const TP_QMARK = 70; const TP_TYPECAST = 71; - const YY_NO_ACTION = 486; - const YY_ACCEPT_ACTION = 485; - const YY_ERROR_ACTION = 484; + const YY_NO_ACTION = 490; + const YY_ACCEPT_ACTION = 489; + const YY_ERROR_ACTION = 488; /* 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 @@ -277,293 +277,291 @@ 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 = 1182; + const YY_SZ_ACTTAB = 1174; static public $yy_action = array( - /* 0 */ 62, 69, 181, 16, 67, 27, 74, 187, 62, 48, - /* 10 */ 239, 240, 27, 178, 74, 56, 116, 80, 239, 240, - /* 20 */ 84, 5, 166, 286, 244, 199, 251, 1, 102, 36, - /* 30 */ 241, 43, 248, 258, 166, 6, 271, 14, 245, 181, - /* 40 */ 26, 277, 206, 32, 40, 14, 76, 45, 187, 189, - /* 50 */ 206, 48, 59, 224, 67, 52, 189, 285, 159, 48, - /* 60 */ 59, 62, 53, 166, 285, 27, 165, 74, 1, 150, - /* 70 */ 53, 239, 240, 80, 283, 289, 290, 11, 10, 276, - /* 80 */ 282, 9, 13, 274, 275, 4, 7, 178, 211, 123, - /* 90 */ 208, 80, 271, 143, 153, 110, 32, 149, 14, 161, - /* 100 */ 251, 173, 102, 206, 241, 40, 295, 76, 225, 16, - /* 110 */ 271, 176, 48, 59, 34, 62, 55, 285, 349, 44, - /* 120 */ 38, 74, 116, 53, 111, 239, 240, 284, 283, 289, - /* 130 */ 290, 11, 10, 276, 282, 9, 13, 274, 275, 4, - /* 140 */ 7, 166, 291, 101, 298, 237, 234, 227, 353, 128, - /* 150 */ 32, 178, 14, 231, 256, 80, 265, 206, 235, 40, - /* 160 */ 67, 67, 41, 308, 311, 48, 48, 59, 241, 62, - /* 170 */ 181, 244, 264, 155, 271, 74, 16, 53, 272, 239, - /* 180 */ 240, 207, 22, 148, 178, 245, 58, 23, 80, 116, - /* 190 */ 5, 94, 174, 157, 166, 223, 163, 177, 67, 102, - /* 200 */ 353, 241, 201, 48, 6, 16, 14, 271, 220, 15, - /* 210 */ 188, 206, 277, 40, 67, 68, 21, 166, 116, 48, - /* 220 */ 48, 59, 181, 62, 119, 197, 198, 154, 25, 74, - /* 230 */ 166, 53, 243, 239, 240, 152, 283, 289, 290, 11, - /* 240 */ 10, 276, 282, 9, 13, 274, 275, 4, 7, 160, - /* 250 */ 172, 62, 36, 237, 234, 273, 46, 74, 32, 37, - /* 260 */ 14, 239, 240, 209, 244, 206, 235, 40, 67, 76, - /* 270 */ 45, 181, 246, 48, 48, 59, 223, 222, 245, 166, - /* 280 */ 115, 159, 12, 237, 234, 53, 3, 178, 14, 142, - /* 290 */ 15, 80, 166, 206, 17, 40, 235, 76, 30, 253, - /* 300 */ 35, 16, 48, 59, 241, 62, 294, 166, 152, 159, - /* 310 */ 271, 74, 166, 53, 116, 239, 240, 283, 289, 290, - /* 320 */ 11, 10, 276, 282, 9, 13, 274, 275, 4, 7, - /* 330 */ 160, 27, 31, 62, 166, 120, 216, 46, 27, 74, - /* 340 */ 32, 178, 14, 239, 240, 80, 196, 206, 178, 40, - /* 350 */ 80, 67, 80, 281, 228, 24, 48, 59, 241, 61, - /* 360 */ 255, 267, 166, 165, 271, 241, 26, 53, 32, 271, - /* 370 */ 14, 271, 297, 146, 242, 206, 303, 40, 262, 67, - /* 380 */ 27, 103, 80, 285, 48, 59, 295, 62, 203, 96, - /* 390 */ 184, 164, 139, 74, 20, 53, 152, 239, 240, 257, - /* 400 */ 204, 271, 39, 351, 219, 295, 292, 279, 233, 307, - /* 410 */ 306, 293, 304, 305, 280, 28, 272, 287, 485, 95, - /* 420 */ 232, 144, 32, 125, 14, 151, 270, 63, 238, 206, - /* 430 */ 193, 40, 285, 76, 295, 180, 182, 269, 48, 59, - /* 440 */ 140, 62, 242, 250, 152, 156, 266, 74, 166, 53, - /* 450 */ 80, 239, 240, 295, 190, 351, 39, 100, 80, 244, - /* 460 */ 292, 279, 233, 307, 306, 293, 304, 305, 280, 271, - /* 470 */ 29, 118, 242, 245, 137, 136, 3, 271, 14, 238, - /* 480 */ 19, 288, 70, 206, 278, 40, 242, 76, 295, 43, - /* 490 */ 169, 19, 48, 59, 186, 284, 127, 242, 192, 44, - /* 500 */ 72, 257, 166, 53, 215, 221, 191, 179, 217, 295, - /* 510 */ 141, 210, 49, 71, 130, 214, 213, 135, 2, 238, - /* 520 */ 268, 39, 278, 295, 134, 292, 279, 233, 307, 306, - /* 530 */ 293, 304, 305, 280, 145, 62, 60, 295, 62, 109, - /* 540 */ 166, 74, 301, 202, 74, 239, 240, 295, 239, 240, - /* 550 */ 21, 242, 252, 122, 242, 167, 205, 170, 238, 64, - /* 560 */ 218, 51, 82, 66, 132, 41, 22, 166, 338, 212, - /* 570 */ 32, 254, 251, 32, 102, 226, 241, 206, 73, 300, - /* 580 */ 206, 67, 271, 75, 67, 33, 48, 59, 230, 48, - /* 590 */ 59, 77, 312, 165, 261, 65, 158, 53, 175, 178, - /* 600 */ 53, 104, 302, 80, 229, 236, 200, 256, 185, 249, - /* 610 */ 260, 254, 251, 270, 102, 78, 241, 8, 42, 284, - /* 620 */ 121, 43, 271, 81, 299, 178, 259, 58, 257, 80, - /* 630 */ 162, 310, 92, 47, 247, 37, 18, 199, 251, 263, - /* 640 */ 102, 50, 241, 178, 194, 58, 288, 80, 271, 288, - /* 650 */ 85, 288, 288, 277, 288, 199, 251, 178, 102, 58, - /* 660 */ 241, 80, 288, 288, 88, 288, 271, 288, 288, 199, - /* 670 */ 251, 277, 102, 288, 241, 288, 288, 178, 288, 58, - /* 680 */ 271, 80, 288, 288, 90, 277, 288, 288, 288, 199, - /* 690 */ 251, 288, 102, 288, 241, 178, 288, 58, 288, 80, - /* 700 */ 271, 288, 89, 288, 288, 277, 288, 199, 251, 288, - /* 710 */ 102, 288, 241, 178, 288, 58, 288, 80, 271, 288, - /* 720 */ 91, 288, 288, 277, 288, 199, 251, 288, 102, 288, - /* 730 */ 241, 178, 288, 58, 288, 80, 271, 288, 93, 288, - /* 740 */ 288, 277, 288, 199, 251, 178, 102, 57, 241, 80, - /* 750 */ 288, 288, 83, 288, 271, 288, 288, 199, 251, 277, - /* 760 */ 102, 288, 241, 288, 288, 178, 288, 58, 271, 80, - /* 770 */ 288, 288, 87, 277, 288, 288, 288, 199, 251, 288, - /* 780 */ 102, 288, 241, 178, 288, 58, 288, 80, 271, 288, - /* 790 */ 86, 288, 288, 277, 288, 199, 251, 288, 102, 288, - /* 800 */ 241, 178, 288, 107, 288, 80, 271, 288, 288, 288, - /* 810 */ 288, 277, 288, 254, 251, 288, 102, 288, 241, 288, - /* 820 */ 288, 195, 288, 288, 271, 178, 288, 104, 288, 80, - /* 830 */ 288, 288, 288, 288, 288, 288, 288, 254, 251, 178, - /* 840 */ 102, 107, 241, 80, 288, 288, 288, 288, 271, 288, - /* 850 */ 288, 254, 251, 288, 102, 288, 241, 309, 288, 168, - /* 860 */ 288, 178, 271, 54, 79, 80, 288, 288, 178, 288, - /* 870 */ 107, 288, 80, 254, 251, 288, 102, 288, 241, 288, - /* 880 */ 254, 251, 288, 102, 271, 241, 288, 288, 296, 288, - /* 890 */ 171, 271, 288, 288, 178, 288, 112, 288, 66, 288, - /* 900 */ 288, 288, 288, 288, 288, 288, 254, 251, 178, 102, - /* 910 */ 107, 241, 80, 288, 288, 288, 288, 271, 288, 288, - /* 920 */ 254, 251, 178, 102, 108, 241, 80, 288, 183, 288, - /* 930 */ 288, 271, 288, 288, 254, 251, 288, 102, 178, 241, - /* 940 */ 131, 288, 80, 288, 288, 271, 288, 288, 288, 288, - /* 950 */ 254, 251, 288, 102, 178, 241, 129, 288, 80, 288, - /* 960 */ 288, 271, 288, 288, 288, 288, 254, 251, 288, 102, - /* 970 */ 288, 241, 178, 288, 106, 288, 80, 271, 288, 178, - /* 980 */ 288, 126, 288, 80, 254, 251, 288, 102, 288, 241, - /* 990 */ 288, 254, 251, 288, 102, 271, 241, 288, 288, 288, - /* 1000 */ 288, 178, 271, 124, 288, 80, 288, 288, 288, 288, - /* 1010 */ 288, 288, 288, 254, 251, 178, 102, 105, 241, 80, - /* 1020 */ 288, 288, 288, 288, 271, 288, 288, 254, 251, 288, - /* 1030 */ 102, 178, 241, 133, 288, 80, 288, 288, 271, 288, - /* 1040 */ 288, 288, 288, 254, 251, 288, 102, 178, 241, 147, - /* 1050 */ 288, 80, 288, 288, 271, 288, 288, 288, 288, 254, - /* 1060 */ 251, 288, 102, 288, 241, 178, 288, 114, 288, 80, - /* 1070 */ 271, 288, 178, 288, 117, 288, 80, 254, 251, 288, - /* 1080 */ 102, 288, 241, 288, 254, 251, 288, 102, 271, 241, - /* 1090 */ 288, 288, 288, 288, 178, 271, 113, 288, 80, 288, - /* 1100 */ 288, 288, 288, 288, 288, 288, 254, 251, 178, 102, - /* 1110 */ 138, 241, 80, 288, 288, 288, 288, 271, 288, 288, - /* 1120 */ 254, 251, 288, 102, 178, 241, 288, 288, 80, 288, - /* 1130 */ 288, 271, 288, 288, 288, 288, 254, 251, 288, 98, - /* 1140 */ 178, 241, 288, 288, 80, 288, 288, 271, 288, 288, - /* 1150 */ 288, 288, 254, 251, 288, 99, 288, 241, 178, 288, - /* 1160 */ 288, 288, 80, 271, 288, 288, 288, 288, 288, 288, - /* 1170 */ 254, 251, 288, 97, 288, 241, 288, 288, 288, 288, - /* 1180 */ 288, 271, + /* 0 */ 285, 291, 292, 13, 11, 278, 284, 7, 9, 276, + /* 10 */ 277, 4, 3, 63, 293, 122, 63, 25, 36, 69, + /* 20 */ 43, 189, 69, 242, 239, 81, 242, 239, 232, 222, + /* 30 */ 193, 190, 228, 256, 8, 229, 44, 75, 238, 210, + /* 40 */ 212, 134, 2, 16, 272, 25, 216, 23, 5, 174, + /* 50 */ 14, 32, 26, 14, 230, 180, 108, 41, 180, 68, + /* 60 */ 41, 182, 71, 202, 47, 59, 140, 47, 59, 287, + /* 70 */ 151, 159, 116, 200, 155, 54, 21, 81, 54, 298, + /* 80 */ 285, 291, 292, 13, 11, 278, 284, 7, 9, 276, + /* 90 */ 277, 4, 3, 218, 171, 196, 272, 287, 63, 215, + /* 100 */ 42, 63, 25, 246, 69, 235, 236, 69, 242, 239, + /* 110 */ 157, 242, 239, 214, 297, 1, 39, 247, 237, 8, + /* 120 */ 281, 282, 309, 306, 295, 294, 307, 308, 283, 71, + /* 130 */ 489, 95, 207, 5, 47, 14, 32, 34, 14, 289, + /* 140 */ 180, 197, 41, 180, 65, 41, 157, 68, 17, 47, + /* 150 */ 59, 141, 47, 59, 287, 148, 154, 351, 55, 45, + /* 160 */ 54, 311, 157, 54, 298, 285, 291, 292, 13, 11, + /* 170 */ 278, 284, 7, 9, 276, 277, 4, 3, 63, 20, + /* 180 */ 296, 38, 37, 29, 69, 266, 267, 187, 242, 239, + /* 190 */ 157, 81, 169, 257, 176, 285, 291, 292, 13, 11, + /* 200 */ 278, 284, 7, 9, 276, 277, 4, 3, 152, 176, + /* 210 */ 272, 132, 81, 32, 271, 14, 234, 254, 213, 64, + /* 220 */ 180, 71, 41, 299, 68, 114, 47, 208, 25, 47, + /* 230 */ 59, 272, 63, 265, 244, 353, 159, 189, 69, 58, + /* 240 */ 54, 81, 242, 239, 89, 175, 162, 25, 28, 166, + /* 250 */ 177, 52, 102, 144, 238, 235, 236, 250, 189, 16, + /* 260 */ 272, 151, 81, 26, 33, 275, 298, 12, 237, 14, + /* 270 */ 255, 249, 108, 97, 180, 238, 41, 71, 68, 258, + /* 280 */ 287, 272, 47, 47, 59, 31, 63, 353, 71, 186, + /* 290 */ 159, 182, 69, 47, 54, 151, 242, 239, 279, 287, + /* 300 */ 120, 39, 235, 236, 157, 281, 282, 309, 306, 295, + /* 310 */ 294, 307, 308, 283, 16, 237, 157, 246, 36, 112, + /* 320 */ 125, 32, 189, 14, 150, 248, 81, 108, 180, 185, + /* 330 */ 41, 247, 71, 298, 233, 310, 44, 47, 59, 238, + /* 340 */ 63, 224, 30, 25, 161, 272, 69, 157, 54, 253, + /* 350 */ 242, 239, 153, 81, 67, 39, 157, 219, 21, 281, + /* 360 */ 282, 309, 306, 295, 294, 307, 308, 283, 203, 244, + /* 370 */ 263, 15, 272, 246, 81, 32, 143, 14, 27, 149, + /* 380 */ 151, 273, 180, 279, 41, 157, 71, 247, 157, 298, + /* 390 */ 137, 47, 59, 272, 63, 206, 127, 201, 164, 157, + /* 400 */ 69, 157, 54, 298, 242, 239, 172, 219, 170, 183, + /* 410 */ 62, 165, 51, 78, 74, 191, 258, 221, 46, 355, + /* 420 */ 189, 15, 255, 249, 81, 102, 157, 238, 241, 32, + /* 430 */ 157, 14, 240, 272, 10, 176, 180, 238, 41, 66, + /* 440 */ 68, 142, 184, 272, 157, 47, 59, 16, 63, 176, + /* 450 */ 252, 48, 156, 22, 69, 106, 54, 223, 242, 239, + /* 460 */ 108, 165, 107, 117, 157, 286, 63, 301, 46, 63, + /* 470 */ 244, 355, 69, 96, 99, 69, 242, 239, 244, 242, + /* 480 */ 239, 61, 43, 12, 19, 14, 243, 63, 220, 135, + /* 490 */ 180, 290, 41, 69, 68, 100, 244, 242, 239, 47, + /* 500 */ 59, 32, 298, 14, 32, 286, 45, 205, 180, 274, + /* 510 */ 54, 180, 71, 176, 71, 71, 259, 47, 59, 47, + /* 520 */ 47, 59, 32, 126, 164, 60, 178, 158, 54, 180, + /* 530 */ 274, 54, 130, 71, 199, 138, 298, 234, 47, 59, + /* 540 */ 244, 133, 139, 101, 76, 164, 234, 246, 298, 54, + /* 550 */ 189, 288, 58, 268, 81, 298, 16, 87, 244, 270, + /* 560 */ 196, 247, 195, 249, 189, 102, 58, 238, 81, 108, + /* 570 */ 73, 83, 257, 272, 217, 157, 195, 249, 275, 102, + /* 580 */ 1, 238, 189, 123, 58, 181, 81, 272, 234, 90, + /* 590 */ 231, 261, 275, 79, 195, 249, 189, 102, 58, 238, + /* 600 */ 81, 204, 340, 91, 226, 272, 314, 300, 195, 249, + /* 610 */ 275, 102, 167, 238, 189, 269, 58, 168, 81, 272, + /* 620 */ 225, 93, 24, 80, 275, 227, 195, 249, 6, 102, + /* 630 */ 42, 238, 251, 209, 70, 262, 305, 272, 72, 194, + /* 640 */ 35, 82, 275, 189, 303, 57, 22, 81, 19, 286, + /* 650 */ 85, 271, 245, 40, 43, 195, 249, 189, 102, 56, + /* 660 */ 238, 81, 119, 260, 84, 18, 272, 302, 37, 195, + /* 670 */ 249, 275, 102, 264, 238, 189, 50, 58, 49, 81, + /* 680 */ 272, 198, 92, 258, 290, 275, 290, 195, 249, 189, + /* 690 */ 102, 58, 238, 81, 290, 290, 86, 290, 272, 290, + /* 700 */ 290, 195, 249, 275, 102, 290, 238, 189, 290, 58, + /* 710 */ 290, 81, 272, 290, 88, 290, 290, 275, 290, 195, + /* 720 */ 249, 290, 102, 290, 238, 290, 290, 290, 290, 290, + /* 730 */ 272, 290, 290, 290, 290, 275, 189, 290, 58, 290, + /* 740 */ 81, 290, 290, 94, 290, 290, 290, 290, 195, 249, + /* 750 */ 189, 102, 110, 238, 81, 290, 290, 290, 290, 272, + /* 760 */ 290, 290, 255, 249, 275, 102, 290, 238, 290, 290, + /* 770 */ 290, 189, 189, 272, 111, 81, 81, 290, 290, 290, + /* 780 */ 290, 160, 313, 280, 255, 249, 290, 102, 238, 238, + /* 790 */ 290, 290, 304, 290, 272, 272, 290, 290, 189, 290, + /* 800 */ 111, 290, 81, 290, 290, 290, 290, 290, 290, 290, + /* 810 */ 255, 249, 290, 102, 290, 238, 290, 290, 192, 290, + /* 820 */ 290, 272, 290, 290, 189, 290, 111, 290, 81, 290, + /* 830 */ 290, 290, 290, 290, 290, 290, 255, 249, 290, 102, + /* 840 */ 290, 238, 290, 290, 188, 290, 189, 272, 53, 77, + /* 850 */ 81, 290, 290, 189, 290, 110, 290, 81, 255, 249, + /* 860 */ 290, 102, 290, 238, 290, 255, 249, 290, 102, 272, + /* 870 */ 238, 290, 290, 290, 290, 290, 272, 290, 290, 189, + /* 880 */ 290, 129, 211, 81, 290, 312, 290, 290, 290, 290, + /* 890 */ 290, 163, 249, 290, 102, 290, 238, 290, 290, 189, + /* 900 */ 290, 111, 272, 81, 290, 290, 290, 290, 290, 290, + /* 910 */ 290, 255, 249, 290, 102, 290, 238, 290, 290, 179, + /* 920 */ 290, 173, 272, 290, 290, 189, 290, 109, 290, 74, + /* 930 */ 290, 290, 290, 290, 290, 290, 290, 255, 249, 189, + /* 940 */ 102, 118, 238, 81, 290, 290, 290, 290, 272, 290, + /* 950 */ 290, 255, 249, 290, 102, 290, 238, 189, 290, 147, + /* 960 */ 290, 81, 272, 290, 189, 290, 105, 290, 81, 255, + /* 970 */ 249, 290, 102, 290, 238, 290, 255, 249, 290, 102, + /* 980 */ 272, 238, 189, 290, 115, 290, 81, 272, 290, 290, + /* 990 */ 290, 290, 290, 290, 255, 249, 290, 102, 290, 238, + /* 1000 */ 189, 290, 113, 290, 81, 272, 290, 290, 290, 290, + /* 1010 */ 290, 290, 255, 249, 290, 102, 290, 238, 189, 290, + /* 1020 */ 136, 290, 81, 272, 290, 290, 290, 290, 290, 290, + /* 1030 */ 255, 249, 189, 102, 131, 238, 81, 290, 290, 290, + /* 1040 */ 290, 272, 290, 290, 255, 249, 290, 102, 290, 238, + /* 1050 */ 189, 290, 104, 290, 81, 272, 290, 189, 290, 146, + /* 1060 */ 290, 81, 255, 249, 290, 102, 290, 238, 290, 255, + /* 1070 */ 249, 290, 102, 272, 238, 189, 290, 124, 290, 81, + /* 1080 */ 272, 290, 290, 290, 290, 290, 290, 255, 249, 290, + /* 1090 */ 102, 290, 238, 189, 290, 121, 290, 81, 272, 290, + /* 1100 */ 290, 290, 290, 290, 290, 255, 249, 290, 102, 290, + /* 1110 */ 238, 189, 290, 128, 290, 81, 272, 290, 290, 290, + /* 1120 */ 290, 290, 290, 255, 249, 189, 102, 145, 238, 81, + /* 1130 */ 290, 290, 290, 290, 272, 290, 290, 255, 249, 290, + /* 1140 */ 102, 290, 238, 189, 290, 290, 290, 81, 272, 290, + /* 1150 */ 189, 290, 290, 290, 81, 255, 249, 290, 103, 290, + /* 1160 */ 238, 290, 255, 249, 290, 98, 272, 238, 290, 290, + /* 1170 */ 290, 290, 290, 272, ); static public $yy_lookahead = array( - /* 0 */ 9, 55, 68, 44, 55, 15, 15, 48, 9, 60, - /* 10 */ 19, 20, 15, 80, 15, 82, 57, 84, 19, 20, - /* 20 */ 87, 30, 63, 88, 1, 92, 93, 68, 95, 46, - /* 30 */ 97, 48, 9, 94, 63, 44, 103, 46, 15, 68, - /* 40 */ 50, 108, 51, 44, 53, 46, 55, 64, 48, 59, - /* 50 */ 51, 60, 61, 1, 55, 86, 59, 67, 67, 60, - /* 60 */ 61, 9, 71, 63, 67, 15, 67, 15, 68, 80, - /* 70 */ 71, 19, 20, 84, 31, 32, 33, 34, 35, 36, - /* 80 */ 37, 38, 39, 40, 41, 42, 43, 80, 99, 82, - /* 90 */ 83, 84, 103, 81, 16, 102, 44, 85, 46, 92, - /* 100 */ 93, 58, 95, 51, 97, 53, 94, 55, 16, 44, - /* 110 */ 103, 18, 60, 61, 49, 9, 86, 67, 16, 67, - /* 120 */ 15, 15, 57, 71, 102, 19, 20, 105, 31, 32, - /* 130 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 140 */ 43, 63, 45, 79, 1, 53, 54, 16, 16, 86, - /* 150 */ 44, 80, 46, 47, 52, 84, 51, 51, 66, 53, - /* 160 */ 55, 55, 69, 92, 93, 60, 60, 61, 97, 9, - /* 170 */ 68, 1, 67, 67, 103, 15, 44, 71, 114, 19, - /* 180 */ 20, 11, 50, 16, 80, 15, 82, 15, 84, 57, - /* 190 */ 30, 87, 88, 89, 63, 1, 92, 93, 55, 95, - /* 200 */ 68, 97, 48, 60, 44, 44, 46, 103, 47, 15, - /* 210 */ 67, 51, 108, 53, 55, 55, 44, 63, 57, 60, - /* 220 */ 60, 61, 68, 9, 102, 64, 67, 67, 15, 15, - /* 230 */ 63, 71, 16, 19, 20, 85, 31, 32, 33, 34, - /* 240 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 55, - /* 250 */ 45, 9, 46, 53, 54, 61, 62, 15, 44, 56, - /* 260 */ 46, 19, 20, 16, 1, 51, 66, 53, 55, 55, - /* 270 */ 64, 68, 9, 60, 60, 61, 1, 47, 15, 63, - /* 280 */ 67, 67, 58, 53, 54, 71, 44, 80, 46, 65, - /* 290 */ 15, 84, 63, 51, 65, 53, 66, 55, 49, 92, - /* 300 */ 56, 44, 60, 61, 97, 9, 1, 63, 85, 67, - /* 310 */ 103, 15, 63, 71, 57, 19, 20, 31, 32, 33, - /* 320 */ 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, - /* 330 */ 55, 15, 109, 9, 63, 102, 61, 62, 15, 15, - /* 340 */ 44, 80, 46, 19, 20, 84, 80, 51, 80, 53, - /* 350 */ 84, 55, 84, 92, 45, 56, 60, 61, 97, 90, - /* 360 */ 92, 60, 63, 67, 103, 97, 50, 71, 44, 103, - /* 370 */ 46, 103, 67, 81, 105, 51, 47, 53, 80, 55, - /* 380 */ 15, 79, 84, 67, 60, 61, 94, 9, 55, 98, - /* 390 */ 67, 67, 81, 15, 65, 71, 85, 19, 20, 107, - /* 400 */ 67, 103, 17, 16, 113, 94, 21, 22, 23, 24, - /* 410 */ 25, 26, 27, 28, 29, 50, 114, 52, 73, 74, - /* 420 */ 75, 81, 44, 101, 46, 85, 104, 90, 106, 51, - /* 430 */ 45, 53, 67, 55, 94, 59, 56, 67, 60, 61, - /* 440 */ 81, 9, 105, 67, 85, 67, 80, 15, 63, 71, - /* 450 */ 84, 19, 20, 94, 80, 68, 17, 90, 84, 1, - /* 460 */ 21, 22, 23, 24, 25, 26, 27, 28, 29, 103, - /* 470 */ 70, 90, 105, 15, 101, 81, 44, 103, 46, 106, - /* 480 */ 50, 91, 90, 51, 45, 53, 105, 55, 94, 48, - /* 490 */ 76, 50, 60, 61, 1, 105, 81, 105, 84, 67, - /* 500 */ 55, 107, 63, 71, 1, 2, 3, 4, 5, 94, - /* 510 */ 81, 8, 67, 10, 101, 12, 13, 14, 15, 106, - /* 520 */ 60, 17, 45, 94, 81, 21, 22, 23, 24, 25, - /* 530 */ 26, 27, 28, 29, 81, 9, 90, 94, 9, 90, - /* 540 */ 63, 15, 62, 67, 15, 19, 20, 94, 19, 20, - /* 550 */ 44, 105, 51, 101, 105, 76, 64, 78, 106, 80, - /* 560 */ 47, 82, 83, 84, 67, 69, 50, 63, 16, 67, - /* 570 */ 44, 92, 93, 44, 95, 5, 97, 51, 55, 62, - /* 580 */ 51, 55, 103, 55, 55, 70, 60, 61, 16, 60, - /* 590 */ 61, 45, 16, 67, 16, 55, 67, 71, 18, 80, - /* 600 */ 71, 82, 45, 84, 5, 67, 67, 52, 1, 67, - /* 610 */ 16, 92, 93, 104, 95, 67, 97, 110, 96, 105, - /* 620 */ 102, 48, 103, 99, 113, 80, 75, 82, 107, 84, - /* 630 */ 111, 112, 87, 102, 114, 56, 44, 92, 93, 106, - /* 640 */ 95, 67, 97, 80, 77, 82, 115, 84, 103, 115, - /* 650 */ 87, 115, 115, 108, 115, 92, 93, 80, 95, 82, - /* 660 */ 97, 84, 115, 115, 87, 115, 103, 115, 115, 92, - /* 670 */ 93, 108, 95, 115, 97, 115, 115, 80, 115, 82, - /* 680 */ 103, 84, 115, 115, 87, 108, 115, 115, 115, 92, - /* 690 */ 93, 115, 95, 115, 97, 80, 115, 82, 115, 84, - /* 700 */ 103, 115, 87, 115, 115, 108, 115, 92, 93, 115, - /* 710 */ 95, 115, 97, 80, 115, 82, 115, 84, 103, 115, - /* 720 */ 87, 115, 115, 108, 115, 92, 93, 115, 95, 115, - /* 730 */ 97, 80, 115, 82, 115, 84, 103, 115, 87, 115, - /* 740 */ 115, 108, 115, 92, 93, 80, 95, 82, 97, 84, - /* 750 */ 115, 115, 87, 115, 103, 115, 115, 92, 93, 108, - /* 760 */ 95, 115, 97, 115, 115, 80, 115, 82, 103, 84, - /* 770 */ 115, 115, 87, 108, 115, 115, 115, 92, 93, 115, - /* 780 */ 95, 115, 97, 80, 115, 82, 115, 84, 103, 115, - /* 790 */ 87, 115, 115, 108, 115, 92, 93, 115, 95, 115, - /* 800 */ 97, 80, 115, 82, 115, 84, 103, 115, 115, 115, - /* 810 */ 115, 108, 115, 92, 93, 115, 95, 115, 97, 115, - /* 820 */ 115, 100, 115, 115, 103, 80, 115, 82, 115, 84, - /* 830 */ 115, 115, 115, 115, 115, 115, 115, 92, 93, 80, - /* 840 */ 95, 82, 97, 84, 115, 115, 115, 115, 103, 115, - /* 850 */ 115, 92, 93, 115, 95, 115, 97, 112, 115, 100, - /* 860 */ 115, 80, 103, 82, 83, 84, 115, 115, 80, 115, - /* 870 */ 82, 115, 84, 92, 93, 115, 95, 115, 97, 115, - /* 880 */ 92, 93, 115, 95, 103, 97, 115, 115, 100, 115, - /* 890 */ 76, 103, 115, 115, 80, 115, 82, 115, 84, 115, - /* 900 */ 115, 115, 115, 115, 115, 115, 92, 93, 80, 95, - /* 910 */ 82, 97, 84, 115, 115, 115, 115, 103, 115, 115, - /* 920 */ 92, 93, 80, 95, 82, 97, 84, 115, 100, 115, - /* 930 */ 115, 103, 115, 115, 92, 93, 115, 95, 80, 97, - /* 940 */ 82, 115, 84, 115, 115, 103, 115, 115, 115, 115, - /* 950 */ 92, 93, 115, 95, 80, 97, 82, 115, 84, 115, - /* 960 */ 115, 103, 115, 115, 115, 115, 92, 93, 115, 95, - /* 970 */ 115, 97, 80, 115, 82, 115, 84, 103, 115, 80, - /* 980 */ 115, 82, 115, 84, 92, 93, 115, 95, 115, 97, - /* 990 */ 115, 92, 93, 115, 95, 103, 97, 115, 115, 115, - /* 1000 */ 115, 80, 103, 82, 115, 84, 115, 115, 115, 115, - /* 1010 */ 115, 115, 115, 92, 93, 80, 95, 82, 97, 84, - /* 1020 */ 115, 115, 115, 115, 103, 115, 115, 92, 93, 115, - /* 1030 */ 95, 80, 97, 82, 115, 84, 115, 115, 103, 115, - /* 1040 */ 115, 115, 115, 92, 93, 115, 95, 80, 97, 82, - /* 1050 */ 115, 84, 115, 115, 103, 115, 115, 115, 115, 92, - /* 1060 */ 93, 115, 95, 115, 97, 80, 115, 82, 115, 84, - /* 1070 */ 103, 115, 80, 115, 82, 115, 84, 92, 93, 115, - /* 1080 */ 95, 115, 97, 115, 92, 93, 115, 95, 103, 97, - /* 1090 */ 115, 115, 115, 115, 80, 103, 82, 115, 84, 115, - /* 1100 */ 115, 115, 115, 115, 115, 115, 92, 93, 80, 95, - /* 1110 */ 82, 97, 84, 115, 115, 115, 115, 103, 115, 115, - /* 1120 */ 92, 93, 115, 95, 80, 97, 115, 115, 84, 115, - /* 1130 */ 115, 103, 115, 115, 115, 115, 92, 93, 115, 95, - /* 1140 */ 80, 97, 115, 115, 84, 115, 115, 103, 115, 115, - /* 1150 */ 115, 115, 92, 93, 115, 95, 115, 97, 80, 115, - /* 1160 */ 115, 115, 84, 103, 115, 115, 115, 115, 115, 115, - /* 1170 */ 92, 93, 115, 95, 115, 97, 115, 115, 115, 115, - /* 1180 */ 115, 103, + /* 0 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 10 */ 41, 42, 43, 9, 45, 86, 9, 15, 46, 15, + /* 20 */ 48, 80, 15, 19, 20, 84, 19, 20, 1, 2, + /* 30 */ 3, 4, 5, 92, 30, 8, 64, 10, 97, 12, + /* 40 */ 13, 14, 15, 44, 103, 15, 47, 15, 44, 18, + /* 50 */ 46, 44, 50, 46, 47, 51, 57, 53, 51, 55, + /* 60 */ 53, 59, 55, 64, 60, 61, 81, 60, 61, 67, + /* 70 */ 85, 67, 102, 80, 67, 71, 44, 84, 71, 94, + /* 80 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, + /* 90 */ 41, 42, 43, 1, 45, 48, 103, 67, 9, 47, + /* 100 */ 69, 9, 15, 1, 15, 53, 54, 15, 19, 20, + /* 110 */ 63, 19, 20, 11, 1, 68, 17, 15, 66, 30, + /* 120 */ 21, 22, 23, 24, 25, 26, 27, 28, 29, 55, + /* 130 */ 73, 74, 75, 44, 60, 46, 44, 50, 46, 52, + /* 140 */ 51, 67, 53, 51, 55, 53, 63, 55, 65, 60, + /* 150 */ 61, 81, 60, 61, 67, 85, 67, 16, 86, 67, + /* 160 */ 71, 47, 63, 71, 94, 31, 32, 33, 34, 35, + /* 170 */ 36, 37, 38, 39, 40, 41, 42, 43, 9, 65, + /* 180 */ 67, 15, 56, 56, 15, 19, 20, 80, 19, 20, + /* 190 */ 63, 84, 58, 52, 68, 31, 32, 33, 34, 35, + /* 200 */ 36, 37, 38, 39, 40, 41, 42, 43, 80, 68, + /* 210 */ 103, 101, 84, 44, 104, 46, 106, 51, 16, 90, + /* 220 */ 51, 55, 53, 1, 55, 102, 60, 99, 15, 60, + /* 230 */ 61, 103, 9, 67, 105, 16, 67, 80, 15, 82, + /* 240 */ 71, 84, 19, 20, 87, 88, 89, 15, 15, 92, + /* 250 */ 93, 86, 95, 81, 97, 53, 54, 16, 80, 44, + /* 260 */ 103, 85, 84, 50, 49, 108, 94, 44, 66, 46, + /* 270 */ 92, 93, 57, 95, 51, 97, 53, 55, 55, 107, + /* 280 */ 67, 103, 60, 60, 61, 109, 9, 68, 55, 67, + /* 290 */ 67, 59, 15, 60, 71, 85, 19, 20, 45, 67, + /* 300 */ 67, 17, 53, 54, 63, 21, 22, 23, 24, 25, + /* 310 */ 26, 27, 28, 29, 44, 66, 63, 1, 46, 102, + /* 320 */ 81, 44, 80, 46, 85, 9, 84, 57, 51, 45, + /* 330 */ 53, 15, 55, 94, 92, 93, 64, 60, 61, 97, + /* 340 */ 9, 16, 49, 15, 67, 103, 15, 63, 71, 80, + /* 350 */ 19, 20, 16, 84, 90, 17, 63, 1, 44, 21, + /* 360 */ 22, 23, 24, 25, 26, 27, 28, 29, 67, 105, + /* 370 */ 80, 15, 103, 1, 84, 44, 81, 46, 56, 16, + /* 380 */ 85, 9, 51, 45, 53, 63, 55, 15, 63, 94, + /* 390 */ 81, 60, 61, 103, 9, 67, 67, 55, 67, 63, + /* 400 */ 15, 63, 71, 94, 19, 20, 76, 1, 78, 67, + /* 410 */ 80, 55, 82, 83, 84, 48, 107, 61, 62, 16, + /* 420 */ 80, 15, 92, 93, 84, 95, 63, 97, 51, 44, + /* 430 */ 63, 46, 92, 103, 58, 68, 51, 97, 53, 55, + /* 440 */ 55, 65, 59, 103, 63, 60, 61, 44, 9, 68, + /* 450 */ 67, 67, 67, 50, 15, 90, 71, 47, 19, 20, + /* 460 */ 57, 55, 102, 90, 63, 105, 9, 61, 62, 9, + /* 470 */ 105, 68, 15, 98, 79, 15, 19, 20, 105, 19, + /* 480 */ 20, 90, 48, 44, 50, 46, 67, 9, 113, 81, + /* 490 */ 51, 91, 53, 15, 55, 79, 105, 19, 20, 60, + /* 500 */ 61, 44, 94, 46, 44, 105, 67, 56, 51, 114, + /* 510 */ 71, 51, 55, 68, 55, 55, 94, 60, 61, 60, + /* 520 */ 60, 61, 44, 81, 67, 90, 76, 67, 71, 51, + /* 530 */ 114, 71, 101, 55, 84, 81, 94, 106, 60, 61, + /* 540 */ 105, 101, 81, 90, 55, 67, 106, 1, 94, 71, + /* 550 */ 80, 88, 82, 60, 84, 94, 44, 87, 105, 67, + /* 560 */ 48, 15, 92, 93, 80, 95, 82, 97, 84, 57, + /* 570 */ 55, 87, 52, 103, 16, 63, 92, 93, 108, 95, + /* 580 */ 68, 97, 80, 101, 82, 1, 84, 103, 106, 87, + /* 590 */ 5, 16, 108, 45, 92, 93, 80, 95, 82, 97, + /* 600 */ 84, 64, 16, 87, 45, 103, 16, 62, 92, 93, + /* 610 */ 108, 95, 18, 97, 80, 60, 82, 67, 84, 103, + /* 620 */ 67, 87, 70, 67, 108, 5, 92, 93, 110, 95, + /* 630 */ 69, 97, 67, 16, 55, 16, 45, 103, 55, 1, + /* 640 */ 70, 99, 108, 80, 62, 82, 50, 84, 50, 105, + /* 650 */ 87, 104, 114, 96, 48, 92, 93, 80, 95, 82, + /* 660 */ 97, 84, 102, 75, 87, 44, 103, 113, 56, 92, + /* 670 */ 93, 108, 95, 106, 97, 80, 102, 82, 67, 84, + /* 680 */ 103, 77, 87, 107, 115, 108, 115, 92, 93, 80, + /* 690 */ 95, 82, 97, 84, 115, 115, 87, 115, 103, 115, + /* 700 */ 115, 92, 93, 108, 95, 115, 97, 80, 115, 82, + /* 710 */ 115, 84, 103, 115, 87, 115, 115, 108, 115, 92, + /* 720 */ 93, 115, 95, 115, 97, 115, 115, 115, 115, 115, + /* 730 */ 103, 115, 115, 115, 115, 108, 80, 115, 82, 115, + /* 740 */ 84, 115, 115, 87, 115, 115, 115, 115, 92, 93, + /* 750 */ 80, 95, 82, 97, 84, 115, 115, 115, 115, 103, + /* 760 */ 115, 115, 92, 93, 108, 95, 115, 97, 115, 115, + /* 770 */ 115, 80, 80, 103, 82, 84, 84, 115, 115, 115, + /* 780 */ 115, 111, 112, 92, 92, 93, 115, 95, 97, 97, + /* 790 */ 115, 115, 100, 115, 103, 103, 115, 115, 80, 115, + /* 800 */ 82, 115, 84, 115, 115, 115, 115, 115, 115, 115, + /* 810 */ 92, 93, 115, 95, 115, 97, 115, 115, 100, 115, + /* 820 */ 115, 103, 115, 115, 80, 115, 82, 115, 84, 115, + /* 830 */ 115, 115, 115, 115, 115, 115, 92, 93, 115, 95, + /* 840 */ 115, 97, 115, 115, 100, 115, 80, 103, 82, 83, + /* 850 */ 84, 115, 115, 80, 115, 82, 115, 84, 92, 93, + /* 860 */ 115, 95, 115, 97, 115, 92, 93, 115, 95, 103, + /* 870 */ 97, 115, 115, 115, 115, 115, 103, 115, 115, 80, + /* 880 */ 115, 82, 83, 84, 115, 112, 115, 115, 115, 115, + /* 890 */ 115, 92, 93, 115, 95, 115, 97, 115, 115, 80, + /* 900 */ 115, 82, 103, 84, 115, 115, 115, 115, 115, 115, + /* 910 */ 115, 92, 93, 115, 95, 115, 97, 115, 115, 100, + /* 920 */ 115, 76, 103, 115, 115, 80, 115, 82, 115, 84, + /* 930 */ 115, 115, 115, 115, 115, 115, 115, 92, 93, 80, + /* 940 */ 95, 82, 97, 84, 115, 115, 115, 115, 103, 115, + /* 950 */ 115, 92, 93, 115, 95, 115, 97, 80, 115, 82, + /* 960 */ 115, 84, 103, 115, 80, 115, 82, 115, 84, 92, + /* 970 */ 93, 115, 95, 115, 97, 115, 92, 93, 115, 95, + /* 980 */ 103, 97, 80, 115, 82, 115, 84, 103, 115, 115, + /* 990 */ 115, 115, 115, 115, 92, 93, 115, 95, 115, 97, + /* 1000 */ 80, 115, 82, 115, 84, 103, 115, 115, 115, 115, + /* 1010 */ 115, 115, 92, 93, 115, 95, 115, 97, 80, 115, + /* 1020 */ 82, 115, 84, 103, 115, 115, 115, 115, 115, 115, + /* 1030 */ 92, 93, 80, 95, 82, 97, 84, 115, 115, 115, + /* 1040 */ 115, 103, 115, 115, 92, 93, 115, 95, 115, 97, + /* 1050 */ 80, 115, 82, 115, 84, 103, 115, 80, 115, 82, + /* 1060 */ 115, 84, 92, 93, 115, 95, 115, 97, 115, 92, + /* 1070 */ 93, 115, 95, 103, 97, 80, 115, 82, 115, 84, + /* 1080 */ 103, 115, 115, 115, 115, 115, 115, 92, 93, 115, + /* 1090 */ 95, 115, 97, 80, 115, 82, 115, 84, 103, 115, + /* 1100 */ 115, 115, 115, 115, 115, 92, 93, 115, 95, 115, + /* 1110 */ 97, 80, 115, 82, 115, 84, 103, 115, 115, 115, + /* 1120 */ 115, 115, 115, 92, 93, 80, 95, 82, 97, 84, + /* 1130 */ 115, 115, 115, 115, 103, 115, 115, 92, 93, 115, + /* 1140 */ 95, 115, 97, 80, 115, 115, 115, 84, 103, 115, + /* 1150 */ 80, 115, 115, 115, 84, 92, 93, 115, 95, 115, + /* 1160 */ 97, 115, 92, 93, 115, 95, 103, 97, 115, 115, + /* 1170 */ 115, 115, 115, 103, ); - const YY_SHIFT_USE_DFLT = -67; + const YY_SHIFT_USE_DFLT = -32; const YY_SHIFT_MAX = 206; static public $yy_shift_ofst = array( - /* 0 */ 503, 160, 432, -9, -9, -9, -9, -9, -9, -9, - /* 10 */ -9, -9, -9, -9, 378, 52, 214, 214, 214, 242, - /* 20 */ 378, 214, 242, 214, 214, 214, 214, 214, 214, 214, - /* 30 */ 214, 214, 214, 214, 214, 214, 106, 324, 296, -1, - /* 40 */ 526, 529, 526, 213, -41, 105, 143, -17, 159, 0, - /* 50 */ 154, -29, 203, -51, -29, 203, 385, 439, 504, 275, - /* 60 */ 365, -10, 263, -3, 102, 50, 441, 50, 323, 50, - /* 70 */ 50, 458, 50, 50, 445, 50, 323, 573, -66, -66, - /* 80 */ 573, 573, -66, 97, 205, 43, 286, 286, 286, 286, - /* 90 */ 286, 286, 286, 286, 286, 503, 194, 230, 92, 200, - /* 100 */ 316, 170, 200, 23, 249, 244, 477, 229, 299, 50, - /* 110 */ 206, 206, 131, 167, 78, 172, 333, 216, 50, 206, - /* 120 */ 206, 206, 573, 271, 271, 573, 271, -66, 579, 271, - /* 130 */ 573, 271, 592, 271, -66, 574, -66, 573, 271, -66, - /* 140 */ -66, -66, -54, -66, -66, -66, -66, 271, -67, -67, - /* 150 */ -67, -67, -67, -67, 132, 161, 65, 224, 257, 257, - /* 160 */ 305, 387, 329, 93, 257, 257, 376, 594, 546, 576, - /* 170 */ 578, 572, 515, 523, 552, 528, 540, 580, 555, 607, - /* 180 */ 542, 539, 538, 557, 380, 599, 570, 548, 517, 370, - /* 190 */ 480, 493, 430, 400, 247, 309, 301, 476, 460, 496, - /* 200 */ 516, 502, 513, 497, 506, 501, 492, + /* 0 */ 27, 89, 439, 4, 4, 4, 4, 4, 4, 4, + /* 10 */ 4, 4, 4, 4, 385, 92, 169, 169, 169, 223, + /* 20 */ 385, 169, 223, 169, 169, 169, 169, 169, 169, 169, + /* 30 */ 169, 169, 169, 169, 169, 169, 7, 277, 331, 457, + /* 40 */ 478, 478, 460, 233, 166, 512, 222, 74, 47, 367, + /* 50 */ -28, 381, 126, 381, 459, 126, 338, 284, 99, 356, + /* 60 */ 2, 87, 141, 372, 232, 328, 30, 30, 328, 384, + /* 70 */ 30, 30, 30, 30, 434, 546, 30, 445, 445, 606, + /* 80 */ 445, 606, 606, 134, -31, 49, 164, 164, 164, 164, + /* 90 */ 164, 164, 164, 164, 164, 27, 406, 52, 202, 316, + /* 100 */ 102, 213, 249, 249, 127, 241, 30, 272, 342, 325, + /* 110 */ 293, 83, 272, 322, 272, 363, 272, 30, 336, 272, + /* 120 */ 32, 253, 612, 606, 401, 445, 445, 621, 401, 401, + /* 130 */ 606, 401, 606, 606, 611, 445, 401, 445, 445, 445, + /* 140 */ 445, 445, 489, 445, 445, 401, 401, 401, -32, -32, + /* 150 */ -32, -32, -32, -32, 403, -1, 215, 383, 270, 270, + /* 160 */ 114, 270, 376, 219, 270, 113, 31, 579, 596, 583, + /* 170 */ 619, 552, 575, 558, 515, 586, 550, 594, 590, 559, + /* 180 */ 537, 585, 492, 314, 565, 570, 582, 545, 548, 520, + /* 190 */ 584, 553, 591, 638, 620, 561, 556, 555, 617, 598, + /* 200 */ 493, 329, 301, 410, 377, 419, 451, ); - const YY_REDUCE_USE_DFLT = -68; + const YY_REDUCE_USE_DFLT = -72; const YY_REDUCE_MAX = 153; static public $yy_reduce_ofst = array( - /* 0 */ 345, 104, 479, -67, 615, 597, 665, 703, 685, 633, - /* 10 */ 651, 577, 563, 545, 519, 814, 828, 788, 759, 781, - /* 20 */ 745, 721, 7, 985, 1028, 1014, 899, 992, 967, 935, - /* 30 */ 874, 921, 892, 842, 858, 951, 1078, 1060, 1044, 71, - /* 40 */ 268, 261, 207, -11, 12, 366, 374, 322, 266, 12, - /* 50 */ 340, 311, 292, 298, 359, 394, 223, 223, 223, 291, - /* 60 */ 390, 22, 302, 22, 415, 381, 373, 337, 269, 367, - /* 70 */ 22, 64, 392, 446, 414, 449, 337, 452, 453, 429, - /* 80 */ 373, 413, 443, 507, 507, 507, 507, 507, 507, 507, - /* 90 */ 507, 507, 507, 507, 507, 551, 511, 522, 522, 522, - /* 100 */ 514, 520, 522, 520, 150, 150, 150, 150, 150, 514, - /* 110 */ 509, 509, 150, 150, 150, 518, 524, 150, 514, 509, - /* 120 */ 509, 509, 533, 150, 150, 533, 150, -61, 521, 150, - /* 130 */ 533, 150, 531, 150, -61, 567, -61, 533, 150, -61, - /* 140 */ -61, -61, -65, -61, -61, -61, -61, 150, 122, -31, - /* 150 */ -7, 30, 63, 233, + /* 0 */ 57, 157, 330, 534, 516, 577, 609, 502, 595, 627, + /* 10 */ 484, 470, 563, 656, 670, 845, 718, 692, 744, 766, + /* 20 */ 773, 819, 799, 902, 920, 884, 938, 877, 859, 952, + /* 30 */ 1031, 1045, 1013, 995, 977, 970, 178, 1063, 1070, 242, + /* 40 */ 340, -59, 691, 128, 269, 70, 107, -7, 70, 239, + /* 50 */ 110, -15, 172, 295, 290, 309, 176, 176, 176, 375, + /* 60 */ 360, 400, 408, 395, 360, 435, 264, 360, 129, 450, + /* 70 */ 365, 129, 391, 373, 431, 416, 453, 442, 454, 482, + /* 80 */ 461, 431, 440, 518, 518, 518, 518, 518, 518, 518, + /* 90 */ 518, 518, 518, 518, 518, 588, 554, 557, 557, 538, + /* 100 */ 538, 544, 557, 557, 210, 210, 544, 547, 542, 210, + /* 110 */ 210, 210, 547, 210, 547, 210, 547, 544, 210, 547, + /* 120 */ 560, 210, 576, 567, 210, 422, 422, 574, 210, 210, + /* 130 */ 567, 210, 567, 567, 604, 422, 210, 422, 422, 422, + /* 140 */ 422, 422, 463, 422, 422, 210, 210, 210, 165, 123, + /* 150 */ 72, -71, -30, 217, ); static public $yyExpectedTokens = array( /* 0 */ array(1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, ), @@ -610,48 +608,48 @@ static public $yy_action = array( /* 41 */ array(9, 15, 19, 20, 44, 51, 55, 60, 61, 67, 71, ), /* 42 */ array(9, 15, 19, 20, 44, 51, 55, 60, 61, 67, 71, ), /* 43 */ array(15, 55, 60, 67, ), - /* 44 */ array(44, 48, 57, 63, 68, ), - /* 45 */ array(15, 51, 55, 60, 67, ), + /* 44 */ array(15, 19, 20, 51, 55, 60, 67, ), + /* 45 */ array(44, 48, 57, 63, 68, ), /* 46 */ array(1, 55, 60, 67, ), - /* 47 */ array(46, 48, 64, ), - /* 48 */ array(55, 60, 67, ), + /* 47 */ array(55, 60, 67, ), + /* 48 */ array(48, 63, 68, ), /* 49 */ array(48, 63, 68, ), - /* 50 */ array(48, 63, 68, ), + /* 50 */ array(46, 48, 64, ), /* 51 */ array(63, 68, ), /* 52 */ array(56, 68, ), - /* 53 */ array(55, 60, ), - /* 54 */ array(63, 68, ), + /* 53 */ array(63, 68, ), + /* 54 */ array(55, 60, ), /* 55 */ array(56, 68, ), /* 56 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ), /* 57 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 45, 63, ), /* 58 */ array(17, 21, 22, 23, 24, 25, 26, 27, 28, 29, 63, ), /* 59 */ array(1, 15, 55, 61, 62, ), - /* 60 */ array(15, 50, 52, 67, ), - /* 61 */ array(15, 50, 59, 67, ), - /* 62 */ array(1, 9, 15, ), - /* 63 */ array(15, 59, 67, ), - /* 64 */ array(16, 52, 68, ), + /* 60 */ array(15, 50, 59, 67, ), + /* 61 */ array(15, 50, 52, 67, ), + /* 62 */ array(16, 52, 68, ), + /* 63 */ array(1, 9, 15, ), + /* 64 */ array(15, 59, 67, ), /* 65 */ array(15, 67, ), - /* 66 */ array(48, 50, ), + /* 66 */ array(15, 67, ), /* 67 */ array(15, 67, ), /* 68 */ array(15, 67, ), - /* 69 */ array(15, 67, ), + /* 69 */ array(55, 67, ), /* 70 */ array(15, 67, ), - /* 71 */ array(1, 15, ), + /* 71 */ array(15, 67, ), /* 72 */ array(15, 67, ), /* 73 */ array(15, 67, ), - /* 74 */ array(55, 67, ), - /* 75 */ array(15, 67, ), + /* 74 */ array(48, 50, ), + /* 75 */ array(1, 15, ), /* 76 */ array(15, 67, ), - /* 77 */ array(48, ), + /* 77 */ array(68, ), /* 78 */ array(68, ), - /* 79 */ array(68, ), - /* 80 */ array(48, ), + /* 79 */ array(48, ), + /* 80 */ array(68, ), /* 81 */ array(48, ), - /* 82 */ array(68, ), - /* 83 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), + /* 82 */ array(48, ), + /* 83 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ), /* 84 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), - /* 85 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ), + /* 85 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), /* 86 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 87 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 88 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), @@ -665,54 +663,54 @@ static public $yy_action = array( /* 96 */ array(1, 15, 55, 61, 62, ), /* 97 */ array(47, 53, 54, 66, ), /* 98 */ array(16, 53, 54, 66, ), - /* 99 */ array(53, 54, 66, ), - /* 100 */ array(15, 50, 67, ), - /* 101 */ array(1, 11, 15, ), + /* 99 */ array(1, 9, 15, ), + /* 100 */ array(1, 11, 15, ), + /* 101 */ array(15, 50, 67, ), /* 102 */ array(53, 54, 66, ), - /* 103 */ array(1, 9, 15, ), - /* 104 */ array(49, 63, ), - /* 105 */ array(56, 63, ), - /* 106 */ array(45, 63, ), - /* 107 */ array(63, 65, ), - /* 108 */ array(56, 63, ), - /* 109 */ array(15, 67, ), - /* 110 */ array(46, 64, ), - /* 111 */ array(46, 64, ), - /* 112 */ array(16, 63, ), - /* 113 */ array(16, 63, ), - /* 114 */ array(16, 63, ), - /* 115 */ array(15, 44, ), - /* 116 */ array(55, 67, ), - /* 117 */ array(16, 63, ), - /* 118 */ array(15, 67, ), + /* 103 */ array(53, 54, 66, ), + /* 104 */ array(56, 63, ), + /* 105 */ array(16, 63, ), + /* 106 */ array(15, 67, ), + /* 107 */ array(46, 64, ), + /* 108 */ array(55, 67, ), + /* 109 */ array(16, 63, ), + /* 110 */ array(49, 63, ), + /* 111 */ array(63, 65, ), + /* 112 */ array(46, 64, ), + /* 113 */ array(56, 63, ), + /* 114 */ array(46, 64, ), + /* 115 */ array(16, 63, ), + /* 116 */ array(46, 64, ), + /* 117 */ array(15, 67, ), + /* 118 */ array(16, 63, ), /* 119 */ array(46, 64, ), - /* 120 */ array(46, 64, ), - /* 121 */ array(46, 64, ), - /* 122 */ array(48, ), - /* 123 */ array(63, ), + /* 120 */ array(15, 44, ), + /* 121 */ array(45, 63, ), + /* 122 */ array(56, ), + /* 123 */ array(48, ), /* 124 */ array(63, ), - /* 125 */ array(48, ), - /* 126 */ array(63, ), - /* 127 */ array(68, ), - /* 128 */ array(56, ), + /* 125 */ array(68, ), + /* 126 */ array(68, ), + /* 127 */ array(44, ), + /* 128 */ array(63, ), /* 129 */ array(63, ), /* 130 */ array(48, ), /* 131 */ array(63, ), - /* 132 */ array(44, ), - /* 133 */ array(63, ), - /* 134 */ array(68, ), - /* 135 */ array(67, ), - /* 136 */ array(68, ), - /* 137 */ array(48, ), - /* 138 */ array(63, ), + /* 132 */ array(48, ), + /* 133 */ array(48, ), + /* 134 */ array(67, ), + /* 135 */ array(68, ), + /* 136 */ array(63, ), + /* 137 */ array(68, ), + /* 138 */ array(68, ), /* 139 */ array(68, ), /* 140 */ array(68, ), /* 141 */ array(68, ), /* 142 */ array(55, ), /* 143 */ array(68, ), /* 144 */ array(68, ), - /* 145 */ array(68, ), - /* 146 */ array(68, ), + /* 145 */ array(63, ), + /* 146 */ array(63, ), /* 147 */ array(63, ), /* 148 */ array(), /* 149 */ array(), @@ -723,56 +721,56 @@ static public $yy_action = array( /* 154 */ array(16, 44, 50, 57, 68, ), /* 155 */ array(44, 47, 57, 64, ), /* 156 */ array(44, 49, 57, ), - /* 157 */ array(58, 65, ), + /* 157 */ array(59, 67, ), /* 158 */ array(44, 57, ), /* 159 */ array(44, 57, ), - /* 160 */ array(1, 67, ), - /* 161 */ array(16, 68, ), - /* 162 */ array(47, 65, ), - /* 163 */ array(18, 69, ), + /* 160 */ array(47, 65, ), + /* 161 */ array(44, 57, ), + /* 162 */ array(58, 65, ), + /* 163 */ array(16, 68, ), /* 164 */ array(44, 57, ), - /* 165 */ array(44, 57, ), - /* 166 */ array(59, 67, ), - /* 167 */ array(16, ), - /* 168 */ array(45, ), - /* 169 */ array(16, ), + /* 165 */ array(1, 67, ), + /* 166 */ array(18, 69, ), + /* 167 */ array(55, ), + /* 168 */ array(50, ), + /* 169 */ array(55, ), /* 170 */ array(16, ), - /* 171 */ array(16, ), - /* 172 */ array(70, ), - /* 173 */ array(55, ), - /* 174 */ array(16, ), - /* 175 */ array(55, ), - /* 176 */ array(55, ), + /* 171 */ array(70, ), + /* 172 */ array(16, ), + /* 173 */ array(16, ), + /* 174 */ array(55, ), + /* 175 */ array(16, ), + /* 176 */ array(67, ), /* 177 */ array(18, ), - /* 178 */ array(52, ), - /* 179 */ array(1, ), - /* 180 */ array(67, ), - /* 181 */ array(67, ), + /* 178 */ array(16, ), + /* 179 */ array(45, ), + /* 180 */ array(64, ), + /* 181 */ array(5, ), /* 182 */ array(67, ), - /* 183 */ array(45, ), - /* 184 */ array(56, ), - /* 185 */ array(5, ), - /* 186 */ array(5, ), - /* 187 */ array(67, ), - /* 188 */ array(62, ), - /* 189 */ array(67, ), - /* 190 */ array(62, ), - /* 191 */ array(1, ), - /* 192 */ array(50, ), - /* 193 */ array(70, ), - /* 194 */ array(16, ), - /* 195 */ array(45, ), - /* 196 */ array(60, ), - /* 197 */ array(67, ), - /* 198 */ array(60, ), - /* 199 */ array(69, ), - /* 200 */ array(50, ), + /* 183 */ array(44, ), + /* 184 */ array(67, ), + /* 185 */ array(70, ), + /* 186 */ array(62, ), + /* 187 */ array(62, ), + /* 188 */ array(45, ), + /* 189 */ array(52, ), + /* 190 */ array(1, ), + /* 191 */ array(67, ), + /* 192 */ array(45, ), + /* 193 */ array(1, ), + /* 194 */ array(5, ), + /* 195 */ array(69, ), + /* 196 */ array(67, ), + /* 197 */ array(60, ), + /* 198 */ array(16, ), + /* 199 */ array(50, ), + /* 200 */ array(60, ), /* 201 */ array(67, ), - /* 202 */ array(47, ), - /* 203 */ array(67, ), - /* 204 */ array(44, ), - /* 205 */ array(51, ), - /* 206 */ array(64, ), + /* 202 */ array(67, ), + /* 203 */ array(47, ), + /* 204 */ array(51, ), + /* 205 */ array(67, ), + /* 206 */ array(56, ), /* 207 */ array(), /* 208 */ array(), /* 209 */ array(), @@ -879,40 +877,42 @@ static public $yy_action = array( /* 310 */ array(), /* 311 */ array(), /* 312 */ array(), + /* 313 */ array(), + /* 314 */ array(), ); static public $yy_default = array( - /* 0 */ 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, - /* 10 */ 484, 484, 484, 484, 465, 484, 423, 423, 423, 484, - /* 20 */ 484, 423, 484, 484, 484, 484, 484, 484, 484, 484, - /* 30 */ 484, 484, 484, 484, 484, 484, 484, 484, 484, 484, - /* 40 */ 484, 484, 484, 484, 334, 484, 484, 388, 484, 334, - /* 50 */ 349, 349, 349, 484, 349, 349, 433, 433, 433, 484, - /* 60 */ 484, 398, 484, 398, 370, 484, 391, 484, 484, 484, - /* 70 */ 398, 484, 484, 484, 484, 484, 484, 384, 349, 349, - /* 80 */ 391, 383, 349, 484, 484, 484, 439, 437, 446, 438, - /* 90 */ 431, 442, 443, 447, 337, 313, 484, 484, 484, 428, - /* 100 */ 484, 484, 358, 484, 468, 484, 484, 422, 484, 343, - /* 110 */ 415, 396, 484, 484, 484, 398, 484, 484, 342, 416, - /* 120 */ 417, 414, 386, 350, 434, 389, 356, 328, 360, 466, - /* 130 */ 385, 467, 398, 366, 330, 484, 345, 411, 365, 329, - /* 140 */ 331, 332, 484, 333, 344, 335, 336, 340, 398, 427, - /* 150 */ 398, 427, 427, 398, 357, 484, 357, 484, 448, 357, - /* 160 */ 484, 361, 484, 361, 429, 484, 484, 484, 484, 484, - /* 170 */ 484, 484, 484, 484, 354, 484, 484, 364, 370, 484, - /* 180 */ 484, 484, 484, 484, 409, 484, 484, 484, 484, 484, - /* 190 */ 484, 484, 484, 378, 484, 484, 484, 484, 484, 361, - /* 200 */ 353, 484, 484, 484, 387, 484, 373, 320, 352, 317, - /* 210 */ 319, 418, 346, 322, 321, 327, 382, 326, 404, 470, - /* 220 */ 403, 325, 405, 479, 477, 402, 323, 474, 420, 324, - /* 230 */ 475, 406, 314, 450, 368, 369, 359, 367, 412, 375, - /* 240 */ 376, 377, 407, 410, 482, 483, 380, 480, 379, 424, - /* 250 */ 425, 364, 374, 363, 361, 362, 372, 426, 347, 315, - /* 260 */ 316, 318, 371, 413, 399, 400, 401, 395, 394, 392, - /* 270 */ 397, 393, 481, 381, 440, 441, 444, 430, 378, 457, - /* 280 */ 458, 449, 445, 459, 408, 409, 355, 341, 339, 460, - /* 290 */ 461, 432, 456, 455, 476, 348, 421, 473, 478, 469, - /* 300 */ 471, 472, 419, 462, 452, 453, 454, 451, 436, 464, - /* 310 */ 463, 435, 390, + /* 0 */ 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, + /* 10 */ 488, 488, 488, 488, 469, 488, 427, 427, 427, 488, + /* 20 */ 488, 427, 488, 488, 488, 488, 488, 488, 488, 488, + /* 30 */ 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, + /* 40 */ 488, 488, 488, 488, 488, 336, 488, 488, 336, 351, + /* 50 */ 390, 351, 351, 351, 488, 351, 437, 437, 437, 488, + /* 60 */ 400, 488, 372, 488, 400, 488, 488, 400, 488, 488, + /* 70 */ 488, 488, 488, 488, 393, 488, 488, 351, 351, 386, + /* 80 */ 351, 393, 385, 488, 488, 488, 441, 451, 447, 339, + /* 90 */ 446, 442, 435, 443, 450, 315, 488, 488, 488, 488, + /* 100 */ 488, 488, 360, 432, 488, 488, 345, 398, 488, 488, + /* 110 */ 472, 426, 420, 488, 421, 488, 419, 344, 488, 418, + /* 120 */ 400, 488, 362, 388, 471, 346, 334, 400, 470, 352, + /* 130 */ 415, 368, 391, 387, 488, 330, 358, 347, 332, 337, + /* 140 */ 331, 335, 488, 333, 338, 438, 342, 367, 431, 400, + /* 150 */ 431, 431, 400, 400, 359, 488, 359, 488, 452, 359, + /* 160 */ 488, 433, 488, 363, 488, 488, 363, 488, 355, 488, + /* 170 */ 488, 488, 488, 488, 488, 356, 488, 366, 488, 488, + /* 180 */ 375, 488, 488, 389, 488, 380, 488, 488, 488, 372, + /* 190 */ 488, 488, 488, 488, 488, 363, 488, 488, 488, 488, + /* 200 */ 488, 488, 488, 488, 488, 488, 413, 316, 422, 319, + /* 210 */ 323, 354, 324, 406, 322, 409, 407, 479, 481, 483, + /* 220 */ 474, 384, 327, 408, 478, 348, 424, 325, 328, 321, + /* 230 */ 410, 326, 329, 440, 416, 369, 370, 371, 379, 378, + /* 240 */ 365, 376, 377, 361, 411, 484, 486, 487, 381, 366, + /* 250 */ 414, 428, 429, 405, 404, 363, 364, 374, 430, 349, + /* 260 */ 317, 318, 320, 373, 417, 401, 402, 403, 397, 396, + /* 270 */ 394, 399, 395, 382, 485, 434, 444, 445, 448, 380, + /* 280 */ 453, 460, 461, 462, 449, 463, 412, 413, 357, 343, + /* 290 */ 341, 464, 465, 436, 459, 458, 477, 480, 350, 482, + /* 300 */ 476, 383, 473, 475, 425, 423, 455, 456, 457, 454, + /* 310 */ 439, 466, 468, 467, 392, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -931,8 +931,8 @@ static public $yy_action = array( */ const YYNOCODE = 116; const YYSTACKDEPTH = 100; - const YYNSTATE = 313; - const YYNRULE = 171; + const YYNSTATE = 315; + const YYNRULE = 173; const YYERRORSYMBOL = 72; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 1; @@ -1210,90 +1210,92 @@ static public $yy_action = array( /* 84 */ "arrayindex ::= arrayindex indexdef", /* 85 */ "arrayindex ::=", /* 86 */ "indexdef ::= DOT ID", - /* 87 */ "indexdef ::= DOT INTEGER", - /* 88 */ "indexdef ::= DOT variable", - /* 89 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 90 */ "indexdef ::= OPENB ID CLOSEB", - /* 91 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 92 */ "indexdef ::= OPENB exprs CLOSEB", - /* 93 */ "indexdef ::= OPENB CLOSEB", - /* 94 */ "varvar ::= varvarele", - /* 95 */ "varvar ::= varvar varvarele", - /* 96 */ "varvarele ::= ID", - /* 97 */ "varvarele ::= LDEL expr RDEL", - /* 98 */ "object ::= varindexed objectchain", - /* 99 */ "objectchain ::= objectelement", - /* 100 */ "objectchain ::= objectchain objectelement", - /* 101 */ "objectelement ::= PTR ID arrayindex", - /* 102 */ "objectelement ::= PTR variable arrayindex", - /* 103 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 104 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 105 */ "objectelement ::= PTR method", - /* 106 */ "function ::= ID OPENP params CLOSEP", - /* 107 */ "method ::= ID OPENP params CLOSEP", - /* 108 */ "params ::= expr COMMA params", - /* 109 */ "params ::= expr", - /* 110 */ "params ::=", - /* 111 */ "modifier ::= VERT AT ID", - /* 112 */ "modifier ::= VERT ID", - /* 113 */ "modparameters ::= modparameters modparameter", - /* 114 */ "modparameters ::=", - /* 115 */ "modparameter ::= COLON exprs", - /* 116 */ "modparameter ::= COLON ID", - /* 117 */ "ifexprs ::= ifexpr", - /* 118 */ "ifexprs ::= NOT ifexprs", - /* 119 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 120 */ "ifexpr ::= expr", - /* 121 */ "ifexpr ::= expr ifcond expr", - /* 122 */ "ifexpr ::= expr ISIN array", - /* 123 */ "ifexpr ::= expr ISIN value", - /* 124 */ "ifexpr ::= ifexprs lop ifexprs", - /* 125 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 126 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 127 */ "ifexpr ::= ifexprs ISEVEN", - /* 128 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 129 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 130 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 131 */ "ifexpr ::= ifexprs ISODD", - /* 132 */ "ifexpr ::= ifexprs ISNOTODD", - /* 133 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 134 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 135 */ "ifexpr ::= value INSTANCEOF ID", - /* 136 */ "ifexpr ::= value INSTANCEOF value", - /* 137 */ "ifcond ::= EQUALS", - /* 138 */ "ifcond ::= NOTEQUALS", - /* 139 */ "ifcond ::= GREATERTHAN", - /* 140 */ "ifcond ::= LESSTHAN", - /* 141 */ "ifcond ::= GREATEREQUAL", - /* 142 */ "ifcond ::= LESSEQUAL", - /* 143 */ "ifcond ::= IDENTITY", - /* 144 */ "ifcond ::= NONEIDENTITY", - /* 145 */ "ifcond ::= MOD", - /* 146 */ "lop ::= LAND", - /* 147 */ "lop ::= LOR", - /* 148 */ "lop ::= LXOR", - /* 149 */ "array ::= OPENB arrayelements CLOSEB", - /* 150 */ "arrayelements ::= arrayelement", - /* 151 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 152 */ "arrayelements ::=", - /* 153 */ "arrayelement ::= expr APTR expr", - /* 154 */ "arrayelement ::= ID APTR expr", - /* 155 */ "arrayelement ::= expr", - /* 156 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 157 */ "doublequoted ::= doublequotedcontent", - /* 158 */ "doublequotedcontent ::= BACKTICK ID BACKTICK", - /* 159 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 160 */ "doublequotedcontent ::= DOLLAR ID", - /* 161 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 162 */ "doublequotedcontent ::= LDEL smartytag RDEL", - /* 163 */ "doublequotedcontent ::= DOLLAR OTHER", - /* 164 */ "doublequotedcontent ::= LDEL OTHER", - /* 165 */ "doublequotedcontent ::= BACKTICK OTHER", - /* 166 */ "doublequotedcontent ::= OTHER", - /* 167 */ "text ::= text textelement", - /* 168 */ "text ::= textelement", - /* 169 */ "textelement ::= OTHER", - /* 170 */ "textelement ::= LDEL", + /* 87 */ "indexdef ::= DOT BOOLEAN", + /* 88 */ "indexdef ::= DOT NULL", + /* 89 */ "indexdef ::= DOT INTEGER", + /* 90 */ "indexdef ::= DOT variable", + /* 91 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 92 */ "indexdef ::= OPENB ID CLOSEB", + /* 93 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 94 */ "indexdef ::= OPENB exprs CLOSEB", + /* 95 */ "indexdef ::= OPENB CLOSEB", + /* 96 */ "varvar ::= varvarele", + /* 97 */ "varvar ::= varvar varvarele", + /* 98 */ "varvarele ::= ID", + /* 99 */ "varvarele ::= LDEL expr RDEL", + /* 100 */ "object ::= varindexed objectchain", + /* 101 */ "objectchain ::= objectelement", + /* 102 */ "objectchain ::= objectchain objectelement", + /* 103 */ "objectelement ::= PTR ID arrayindex", + /* 104 */ "objectelement ::= PTR variable arrayindex", + /* 105 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 106 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 107 */ "objectelement ::= PTR method", + /* 108 */ "function ::= ID OPENP params CLOSEP", + /* 109 */ "method ::= ID OPENP params CLOSEP", + /* 110 */ "params ::= expr COMMA params", + /* 111 */ "params ::= expr", + /* 112 */ "params ::=", + /* 113 */ "modifier ::= VERT AT ID", + /* 114 */ "modifier ::= VERT ID", + /* 115 */ "modparameters ::= modparameters modparameter", + /* 116 */ "modparameters ::=", + /* 117 */ "modparameter ::= COLON exprs", + /* 118 */ "modparameter ::= COLON ID", + /* 119 */ "ifexprs ::= ifexpr", + /* 120 */ "ifexprs ::= NOT ifexprs", + /* 121 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 122 */ "ifexpr ::= expr", + /* 123 */ "ifexpr ::= expr ifcond expr", + /* 124 */ "ifexpr ::= expr ISIN array", + /* 125 */ "ifexpr ::= expr ISIN value", + /* 126 */ "ifexpr ::= ifexprs lop ifexprs", + /* 127 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 128 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 129 */ "ifexpr ::= ifexprs ISEVEN", + /* 130 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 131 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 132 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 133 */ "ifexpr ::= ifexprs ISODD", + /* 134 */ "ifexpr ::= ifexprs ISNOTODD", + /* 135 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 136 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 137 */ "ifexpr ::= value INSTANCEOF ID", + /* 138 */ "ifexpr ::= value INSTANCEOF value", + /* 139 */ "ifcond ::= EQUALS", + /* 140 */ "ifcond ::= NOTEQUALS", + /* 141 */ "ifcond ::= GREATERTHAN", + /* 142 */ "ifcond ::= LESSTHAN", + /* 143 */ "ifcond ::= GREATEREQUAL", + /* 144 */ "ifcond ::= LESSEQUAL", + /* 145 */ "ifcond ::= IDENTITY", + /* 146 */ "ifcond ::= NONEIDENTITY", + /* 147 */ "ifcond ::= MOD", + /* 148 */ "lop ::= LAND", + /* 149 */ "lop ::= LOR", + /* 150 */ "lop ::= LXOR", + /* 151 */ "array ::= OPENB arrayelements CLOSEB", + /* 152 */ "arrayelements ::= arrayelement", + /* 153 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 154 */ "arrayelements ::=", + /* 155 */ "arrayelement ::= expr APTR expr", + /* 156 */ "arrayelement ::= ID APTR expr", + /* 157 */ "arrayelement ::= expr", + /* 158 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 159 */ "doublequoted ::= doublequotedcontent", + /* 160 */ "doublequotedcontent ::= BACKTICK ID BACKTICK", + /* 161 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 162 */ "doublequotedcontent ::= DOLLAR ID", + /* 163 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 164 */ "doublequotedcontent ::= LDEL smartytag RDEL", + /* 165 */ "doublequotedcontent ::= DOLLAR OTHER", + /* 166 */ "doublequotedcontent ::= LDEL OTHER", + /* 167 */ "doublequotedcontent ::= BACKTICK OTHER", + /* 168 */ "doublequotedcontent ::= OTHER", + /* 169 */ "text ::= text textelement", + /* 170 */ "text ::= textelement", + /* 171 */ "textelement ::= OTHER", + /* 172 */ "textelement ::= LDEL", ); /** @@ -1747,6 +1749,8 @@ static public $yy_action = array( array( 'lhs' => 104, 'rhs' => 2 ), array( 'lhs' => 104, 'rhs' => 2 ), array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 2 ), + array( 'lhs' => 104, 'rhs' => 2 ), array( 'lhs' => 104, 'rhs' => 4 ), array( 'lhs' => 104, 'rhs' => 3 ), array( 'lhs' => 104, 'rhs' => 5 ), @@ -1846,24 +1850,24 @@ static public $yy_action = array( 63 => 0, 64 => 0, 80 => 0, - 150 => 0, + 152 => 0, 1 => 1, 45 => 1, 51 => 1, 54 => 1, 55 => 1, - 94 => 1, - 117 => 1, - 157 => 1, - 166 => 1, + 96 => 1, + 119 => 1, + 159 => 1, 168 => 1, - 169 => 1, 170 => 1, + 171 => 1, + 172 => 1, 2 => 2, 84 => 2, - 156 => 2, - 164 => 2, - 167 => 2, + 158 => 2, + 166 => 2, + 169 => 2, 3 => 3, 4 => 4, 5 => 5, @@ -1891,8 +1895,8 @@ static public $yy_action = array( 27 => 27, 28 => 28, 35 => 28, - 109 => 28, - 155 => 28, + 111 => 28, + 157 => 28, 29 => 29, 30 => 30, 31 => 31, @@ -1937,21 +1941,21 @@ static public $yy_action = array( 82 => 82, 83 => 83, 85 => 85, - 114 => 85, + 116 => 85, 86 => 86, - 87 => 87, - 88 => 88, + 87 => 86, + 88 => 86, 89 => 89, - 92 => 89, 90 => 90, 91 => 91, + 94 => 91, + 92 => 92, 93 => 93, 95 => 95, - 96 => 96, 97 => 97, - 119 => 97, 98 => 98, 99 => 99, + 121 => 99, 100 => 100, 101 => 101, 102 => 102, @@ -1961,31 +1965,31 @@ static public $yy_action = array( 106 => 106, 107 => 107, 108 => 108, + 109 => 109, 110 => 110, - 111 => 111, 112 => 112, 113 => 113, + 114 => 114, 115 => 115, - 116 => 116, + 117 => 117, 118 => 118, 120 => 120, - 121 => 121, - 124 => 121, - 135 => 121, 122 => 122, 123 => 123, + 126 => 123, + 137 => 123, + 124 => 124, 125 => 125, - 126 => 126, 127 => 127, - 132 => 127, 128 => 128, - 131 => 128, 129 => 129, 134 => 129, 130 => 130, 133 => 130, - 136 => 136, - 137 => 137, + 131 => 131, + 136 => 131, + 132 => 132, + 135 => 132, 138 => 138, 139 => 139, 140 => 140, @@ -1998,17 +2002,19 @@ static public $yy_action = array( 147 => 147, 148 => 148, 149 => 149, + 150 => 150, 151 => 151, - 152 => 152, 153 => 153, 154 => 154, - 158 => 158, - 159 => 159, + 155 => 155, + 156 => 156, 160 => 160, 161 => 161, 162 => 162, 163 => 163, + 164 => 164, 165 => 165, + 167 => 167, ); /* Beginning here are the reduction cases. A typical example ** follows: @@ -2018,46 +2024,46 @@ static public $yy_action = array( */ #line 79 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2026 "smarty_internal_templateparser.php" +#line 2032 "smarty_internal_templateparser.php" #line 85 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2029 "smarty_internal_templateparser.php" +#line 2035 "smarty_internal_templateparser.php" #line 87 "smarty_internal_templateparser.y" function yy_r2(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2032 "smarty_internal_templateparser.php" +#line 2038 "smarty_internal_templateparser.php" #line 93 "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 + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2039 "smarty_internal_templateparser.php" +#line 2045 "smarty_internal_templateparser.php" #line 99 "smarty_internal_templateparser.y" function yy_r4(){ 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 + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2046 "smarty_internal_templateparser.php" +#line 2052 "smarty_internal_templateparser.php" #line 105 "smarty_internal_templateparser.y" function yy_r5(){ 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 + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2053 "smarty_internal_templateparser.php" +#line 2059 "smarty_internal_templateparser.php" #line 111 "smarty_internal_templateparser.y" function yy_r6(){ $this->_retvalue = ''; } -#line 2056 "smarty_internal_templateparser.php" +#line 2062 "smarty_internal_templateparser.php" #line 113 "smarty_internal_templateparser.y" function yy_r7(){ $this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + -1]->minor, $this->compiler,false); } -#line 2059 "smarty_internal_templateparser.php" +#line 2065 "smarty_internal_templateparser.php" #line 115 "smarty_internal_templateparser.y" function yy_r8(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false); } -#line 2062 "smarty_internal_templateparser.php" +#line 2068 "smarty_internal_templateparser.php" #line 117 "smarty_internal_templateparser.y" function yy_r9(){ $this->_retvalue = $this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false); } -#line 2065 "smarty_internal_templateparser.php" +#line 2071 "smarty_internal_templateparser.php" #line 119 "smarty_internal_templateparser.y" function yy_r10(){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); @@ -2069,7 +2075,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2077 "smarty_internal_templateparser.php" +#line 2083 "smarty_internal_templateparser.php" #line 130 "smarty_internal_templateparser.y" function yy_r11(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { @@ -2080,31 +2086,31 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2088 "smarty_internal_templateparser.php" +#line 2094 "smarty_internal_templateparser.php" #line 141 "smarty_internal_templateparser.y" function yy_r12(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } -#line 2091 "smarty_internal_templateparser.php" +#line 2097 "smarty_internal_templateparser.php" #line 142 "smarty_internal_templateparser.y" function yy_r13(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } -#line 2094 "smarty_internal_templateparser.php" +#line 2100 "smarty_internal_templateparser.php" #line 145 "smarty_internal_templateparser.y" function yy_r14(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } -#line 2097 "smarty_internal_templateparser.php" +#line 2103 "smarty_internal_templateparser.php" #line 152 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2100 "smarty_internal_templateparser.php" +#line 2106 "smarty_internal_templateparser.php" #line 162 "smarty_internal_templateparser.y" function yy_r18(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor)); } -#line 2103 "smarty_internal_templateparser.php" +#line 2109 "smarty_internal_templateparser.php" #line 165 "smarty_internal_templateparser.y" function yy_r20(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2106 "smarty_internal_templateparser.php" +#line 2112 "smarty_internal_templateparser.php" #line 166 "smarty_internal_templateparser.y" function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor,array()); } -#line 2109 "smarty_internal_templateparser.php" +#line 2115 "smarty_internal_templateparser.php" #line 168 "smarty_internal_templateparser.y" function yy_r22(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2112 "smarty_internal_templateparser.php" +#line 2118 "smarty_internal_templateparser.php" #line 170 "smarty_internal_templateparser.y" function yy_r23(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { @@ -2119,49 +2125,49 @@ static public $yy_action = array( } } } -#line 2127 "smarty_internal_templateparser.php" +#line 2133 "smarty_internal_templateparser.php" #line 184 "smarty_internal_templateparser.y" function yy_r24(){if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2133 "smarty_internal_templateparser.php" +#line 2139 "smarty_internal_templateparser.php" #line 188 "smarty_internal_templateparser.y" function yy_r25(){ if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2139 "smarty_internal_templateparser.php" +#line 2145 "smarty_internal_templateparser.php" #line 193 "smarty_internal_templateparser.y" function yy_r26(){ if ($this->yystack[$this->yyidx + -8]->minor != 'for') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -8]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -8]->minor,array('start'=>$this->yystack[$this->yyidx + -6]->minor,'ifexp'=>$this->yystack[$this->yyidx + -4]->minor,'varloop'=>$this->yystack[$this->yyidx + -1]->minor,'loop'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2146 "smarty_internal_templateparser.php" +#line 2152 "smarty_internal_templateparser.php" #line 198 "smarty_internal_templateparser.y" function yy_r27(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2149 "smarty_internal_templateparser.php" +#line 2155 "smarty_internal_templateparser.php" #line 199 "smarty_internal_templateparser.y" function yy_r28(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2152 "smarty_internal_templateparser.php" +#line 2158 "smarty_internal_templateparser.php" #line 201 "smarty_internal_templateparser.y" function yy_r29(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2159 "smarty_internal_templateparser.php" +#line 2165 "smarty_internal_templateparser.php" #line 206 "smarty_internal_templateparser.y" function yy_r30(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2166 "smarty_internal_templateparser.php" +#line 2172 "smarty_internal_templateparser.php" #line 213 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',$this->yystack[$this->yyidx + 0]->minor); } -#line 2169 "smarty_internal_templateparser.php" +#line 2175 "smarty_internal_templateparser.php" #line 214 "smarty_internal_templateparser.y" function yy_r32(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { @@ -2176,37 +2182,37 @@ static public $yy_action = array( } } } -#line 2184 "smarty_internal_templateparser.php" +#line 2190 "smarty_internal_templateparser.php" #line 228 "smarty_internal_templateparser.y" function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2187 "smarty_internal_templateparser.php" +#line 2193 "smarty_internal_templateparser.php" #line 235 "smarty_internal_templateparser.y" function yy_r34(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2190 "smarty_internal_templateparser.php" +#line 2196 "smarty_internal_templateparser.php" #line 239 "smarty_internal_templateparser.y" function yy_r36(){ $this->_retvalue = array(); } -#line 2193 "smarty_internal_templateparser.php" +#line 2199 "smarty_internal_templateparser.php" #line 242 "smarty_internal_templateparser.y" function yy_r37(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2196 "smarty_internal_templateparser.php" +#line 2202 "smarty_internal_templateparser.php" #line 245 "smarty_internal_templateparser.y" function yy_r40(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2199 "smarty_internal_templateparser.php" +#line 2205 "smarty_internal_templateparser.php" #line 251 "smarty_internal_templateparser.y" function yy_r41(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2202 "smarty_internal_templateparser.php" +#line 2208 "smarty_internal_templateparser.php" #line 252 "smarty_internal_templateparser.y" function yy_r42(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2205 "smarty_internal_templateparser.php" +#line 2211 "smarty_internal_templateparser.php" #line 254 "smarty_internal_templateparser.y" function yy_r43(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2208 "smarty_internal_templateparser.php" +#line 2214 "smarty_internal_templateparser.php" #line 260 "smarty_internal_templateparser.y" function yy_r44(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2211 "smarty_internal_templateparser.php" +#line 2217 "smarty_internal_templateparser.php" #line 263 "smarty_internal_templateparser.y" function yy_r46(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2214 "smarty_internal_templateparser.php" +#line 2220 "smarty_internal_templateparser.php" #line 264 "smarty_internal_templateparser.y" function yy_r47(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { @@ -2221,273 +2227,273 @@ static public $yy_action = array( } } } -#line 2229 "smarty_internal_templateparser.php" +#line 2235 "smarty_internal_templateparser.php" #line 281 "smarty_internal_templateparser.y" function yy_r49(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2232 "smarty_internal_templateparser.php" +#line 2238 "smarty_internal_templateparser.php" #line 283 "smarty_internal_templateparser.y" function yy_r50(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2235 "smarty_internal_templateparser.php" +#line 2241 "smarty_internal_templateparser.php" #line 290 "smarty_internal_templateparser.y" function yy_r52(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2238 "smarty_internal_templateparser.php" +#line 2244 "smarty_internal_templateparser.php" #line 304 "smarty_internal_templateparser.y" function yy_r56(){$this->_retvalue = ' & '; } -#line 2241 "smarty_internal_templateparser.php" +#line 2247 "smarty_internal_templateparser.php" #line 312 "smarty_internal_templateparser.y" function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2244 "smarty_internal_templateparser.php" +#line 2250 "smarty_internal_templateparser.php" #line 320 "smarty_internal_templateparser.y" function yy_r65(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2247 "smarty_internal_templateparser.php" +#line 2253 "smarty_internal_templateparser.php" #line 322 "smarty_internal_templateparser.y" function yy_r66(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; } -#line 2250 "smarty_internal_templateparser.php" +#line 2256 "smarty_internal_templateparser.php" #line 323 "smarty_internal_templateparser.y" function yy_r67(){ $this->_retvalue = "''"; } -#line 2253 "smarty_internal_templateparser.php" +#line 2259 "smarty_internal_templateparser.php" #line 325 "smarty_internal_templateparser.y" function yy_r68(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; } -#line 2256 "smarty_internal_templateparser.php" +#line 2262 "smarty_internal_templateparser.php" #line 328 "smarty_internal_templateparser.y" function yy_r70(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2259 "smarty_internal_templateparser.php" +#line 2265 "smarty_internal_templateparser.php" #line 329 "smarty_internal_templateparser.y" function yy_r71(){ $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 2262 "smarty_internal_templateparser.php" +#line 2268 "smarty_internal_templateparser.php" #line 331 "smarty_internal_templateparser.y" function yy_r72(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2265 "smarty_internal_templateparser.php" +#line 2271 "smarty_internal_templateparser.php" #line 332 "smarty_internal_templateparser.y" function yy_r73(){ $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 2268 "smarty_internal_templateparser.php" +#line 2274 "smarty_internal_templateparser.php" #line 334 "smarty_internal_templateparser.y" function yy_r74(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2271 "smarty_internal_templateparser.php" +#line 2277 "smarty_internal_templateparser.php" #line 336 "smarty_internal_templateparser.y" function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2274 "smarty_internal_templateparser.php" +#line 2280 "smarty_internal_templateparser.php" #line 338 "smarty_internal_templateparser.y" function yy_r76(){ $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 2277 "smarty_internal_templateparser.php" +#line 2283 "smarty_internal_templateparser.php" #line 340 "smarty_internal_templateparser.y" function yy_r77(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2280 "smarty_internal_templateparser.php" +#line 2286 "smarty_internal_templateparser.php" #line 349 "smarty_internal_templateparser.y" function yy_r78(){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'],"'"))->nocache;} } -#line 2284 "smarty_internal_templateparser.php" +#line 2290 "smarty_internal_templateparser.php" #line 352 "smarty_internal_templateparser.y" function yy_r79(){ $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,"'"))->nocache; } -#line 2287 "smarty_internal_templateparser.php" +#line 2293 "smarty_internal_templateparser.php" #line 356 "smarty_internal_templateparser.y" function yy_r81(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2290 "smarty_internal_templateparser.php" +#line 2296 "smarty_internal_templateparser.php" #line 357 "smarty_internal_templateparser.y" function yy_r82(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2293 "smarty_internal_templateparser.php" +#line 2299 "smarty_internal_templateparser.php" #line 360 "smarty_internal_templateparser.y" function yy_r83(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2296 "smarty_internal_templateparser.php" +#line 2302 "smarty_internal_templateparser.php" #line 368 "smarty_internal_templateparser.y" function yy_r85(){return; } -#line 2299 "smarty_internal_templateparser.php" +#line 2305 "smarty_internal_templateparser.php" #line 372 "smarty_internal_templateparser.y" function yy_r86(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2302 "smarty_internal_templateparser.php" -#line 373 "smarty_internal_templateparser.y" - function yy_r87(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2305 "smarty_internal_templateparser.php" -#line 374 "smarty_internal_templateparser.y" - function yy_r88(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } #line 2308 "smarty_internal_templateparser.php" #line 375 "smarty_internal_templateparser.y" - function yy_r89(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } + function yy_r89(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } #line 2311 "smarty_internal_templateparser.php" -#line 377 "smarty_internal_templateparser.y" - function yy_r90(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 376 "smarty_internal_templateparser.y" + function yy_r90(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } #line 2314 "smarty_internal_templateparser.php" -#line 378 "smarty_internal_templateparser.y" - function yy_r91(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 377 "smarty_internal_templateparser.y" + function yy_r91(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } #line 2317 "smarty_internal_templateparser.php" -#line 382 "smarty_internal_templateparser.y" - function yy_r93(){$this->_retvalue = ''; } +#line 379 "smarty_internal_templateparser.y" + function yy_r92(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } #line 2320 "smarty_internal_templateparser.php" -#line 390 "smarty_internal_templateparser.y" - function yy_r95(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 380 "smarty_internal_templateparser.y" + function yy_r93(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } #line 2323 "smarty_internal_templateparser.php" -#line 392 "smarty_internal_templateparser.y" - function yy_r96(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 384 "smarty_internal_templateparser.y" + function yy_r95(){$this->_retvalue = ''; } #line 2326 "smarty_internal_templateparser.php" -#line 394 "smarty_internal_templateparser.y" - function yy_r97(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 392 "smarty_internal_templateparser.y" + function yy_r97(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } #line 2329 "smarty_internal_templateparser.php" -#line 399 "smarty_internal_templateparser.y" - function yy_r98(){ 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 { +#line 394 "smarty_internal_templateparser.y" + function yy_r98(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2332 "smarty_internal_templateparser.php" +#line 396 "smarty_internal_templateparser.y" + function yy_r99(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2335 "smarty_internal_templateparser.php" +#line 401 "smarty_internal_templateparser.y" + function yy_r100(){ 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'],"'"))->nocache;} } -#line 2333 "smarty_internal_templateparser.php" -#line 402 "smarty_internal_templateparser.y" - function yy_r99(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2336 "smarty_internal_templateparser.php" -#line 404 "smarty_internal_templateparser.y" - function yy_r100(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2339 "smarty_internal_templateparser.php" -#line 406 "smarty_internal_templateparser.y" - function yy_r101(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 404 "smarty_internal_templateparser.y" + function yy_r101(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } #line 2342 "smarty_internal_templateparser.php" -#line 407 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 406 "smarty_internal_templateparser.y" + function yy_r102(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2345 "smarty_internal_templateparser.php" #line 408 "smarty_internal_templateparser.y" - function yy_r103(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } + function yy_r103(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2348 "smarty_internal_templateparser.php" #line 409 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } + function yy_r104(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } #line 2351 "smarty_internal_templateparser.php" -#line 411 "smarty_internal_templateparser.y" - function yy_r105(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 410 "smarty_internal_templateparser.y" + function yy_r105(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } #line 2354 "smarty_internal_templateparser.php" -#line 417 "smarty_internal_templateparser.y" - function yy_r106(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { +#line 411 "smarty_internal_templateparser.y" + function yy_r106(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2357 "smarty_internal_templateparser.php" +#line 413 "smarty_internal_templateparser.y" + function yy_r107(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2360 "smarty_internal_templateparser.php" +#line 419 "smarty_internal_templateparser.y" + function yy_r108(){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 2363 "smarty_internal_templateparser.php" -#line 428 "smarty_internal_templateparser.y" - function yy_r107(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2366 "smarty_internal_templateparser.php" -#line 432 "smarty_internal_templateparser.y" - function yy_r108(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } #line 2369 "smarty_internal_templateparser.php" -#line 436 "smarty_internal_templateparser.y" - function yy_r110(){ return; } +#line 430 "smarty_internal_templateparser.y" + function yy_r109(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } #line 2372 "smarty_internal_templateparser.php" -#line 441 "smarty_internal_templateparser.y" - function yy_r111(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } +#line 434 "smarty_internal_templateparser.y" + function yy_r110(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } #line 2375 "smarty_internal_templateparser.php" -#line 442 "smarty_internal_templateparser.y" - function yy_r112(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } +#line 438 "smarty_internal_templateparser.y" + function yy_r112(){ return; } #line 2378 "smarty_internal_templateparser.php" -#line 454 "smarty_internal_templateparser.y" - function yy_r113(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 443 "smarty_internal_templateparser.y" + function yy_r113(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } #line 2381 "smarty_internal_templateparser.php" -#line 458 "smarty_internal_templateparser.y" - function yy_r115(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 444 "smarty_internal_templateparser.y" + function yy_r114(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } #line 2384 "smarty_internal_templateparser.php" -#line 459 "smarty_internal_templateparser.y" - function yy_r116(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 456 "smarty_internal_templateparser.y" + function yy_r115(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2387 "smarty_internal_templateparser.php" -#line 466 "smarty_internal_templateparser.y" - function yy_r118(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 460 "smarty_internal_templateparser.y" + function yy_r117(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } #line 2390 "smarty_internal_templateparser.php" -#line 471 "smarty_internal_templateparser.y" - function yy_r120(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 461 "smarty_internal_templateparser.y" + function yy_r118(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } #line 2393 "smarty_internal_templateparser.php" -#line 473 "smarty_internal_templateparser.y" - function yy_r121(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 468 "smarty_internal_templateparser.y" + function yy_r120(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } #line 2396 "smarty_internal_templateparser.php" -#line 474 "smarty_internal_templateparser.y" - function yy_r122(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 473 "smarty_internal_templateparser.y" + function yy_r122(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } #line 2399 "smarty_internal_templateparser.php" #line 475 "smarty_internal_templateparser.y" - function yy_r123(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } + function yy_r123(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2402 "smarty_internal_templateparser.php" -#line 477 "smarty_internal_templateparser.y" - function yy_r125(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 476 "smarty_internal_templateparser.y" + function yy_r124(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2405 "smarty_internal_templateparser.php" -#line 478 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 477 "smarty_internal_templateparser.y" + function yy_r125(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2408 "smarty_internal_templateparser.php" #line 479 "smarty_internal_templateparser.y" - function yy_r127(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } + function yy_r127(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2411 "smarty_internal_templateparser.php" #line 480 "smarty_internal_templateparser.y" - function yy_r128(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } + function yy_r128(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2414 "smarty_internal_templateparser.php" #line 481 "smarty_internal_templateparser.y" - function yy_r129(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } + function yy_r129(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2417 "smarty_internal_templateparser.php" #line 482 "smarty_internal_templateparser.y" - function yy_r130(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } + function yy_r130(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2420 "smarty_internal_templateparser.php" -#line 488 "smarty_internal_templateparser.y" - function yy_r136(){$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 483 "smarty_internal_templateparser.y" + function yy_r131(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2423 "smarty_internal_templateparser.php" -#line 490 "smarty_internal_templateparser.y" - function yy_r137(){$this->_retvalue = '=='; } +#line 484 "smarty_internal_templateparser.y" + function yy_r132(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } #line 2426 "smarty_internal_templateparser.php" -#line 491 "smarty_internal_templateparser.y" - function yy_r138(){$this->_retvalue = '!='; } +#line 490 "smarty_internal_templateparser.y" + function yy_r138(){$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 2429 "smarty_internal_templateparser.php" #line 492 "smarty_internal_templateparser.y" - function yy_r139(){$this->_retvalue = '>'; } + function yy_r139(){$this->_retvalue = '=='; } #line 2432 "smarty_internal_templateparser.php" #line 493 "smarty_internal_templateparser.y" - function yy_r140(){$this->_retvalue = '<'; } + function yy_r140(){$this->_retvalue = '!='; } #line 2435 "smarty_internal_templateparser.php" #line 494 "smarty_internal_templateparser.y" - function yy_r141(){$this->_retvalue = '>='; } + function yy_r141(){$this->_retvalue = '>'; } #line 2438 "smarty_internal_templateparser.php" #line 495 "smarty_internal_templateparser.y" - function yy_r142(){$this->_retvalue = '<='; } + function yy_r142(){$this->_retvalue = '<'; } #line 2441 "smarty_internal_templateparser.php" #line 496 "smarty_internal_templateparser.y" - function yy_r143(){$this->_retvalue = '==='; } + function yy_r143(){$this->_retvalue = '>='; } #line 2444 "smarty_internal_templateparser.php" #line 497 "smarty_internal_templateparser.y" - function yy_r144(){$this->_retvalue = '!=='; } + function yy_r144(){$this->_retvalue = '<='; } #line 2447 "smarty_internal_templateparser.php" #line 498 "smarty_internal_templateparser.y" - function yy_r145(){$this->_retvalue = '%'; } + function yy_r145(){$this->_retvalue = '==='; } #line 2450 "smarty_internal_templateparser.php" -#line 500 "smarty_internal_templateparser.y" - function yy_r146(){$this->_retvalue = '&&'; } +#line 499 "smarty_internal_templateparser.y" + function yy_r146(){$this->_retvalue = '!=='; } #line 2453 "smarty_internal_templateparser.php" -#line 501 "smarty_internal_templateparser.y" - function yy_r147(){$this->_retvalue = '||'; } +#line 500 "smarty_internal_templateparser.y" + function yy_r147(){$this->_retvalue = '%'; } #line 2456 "smarty_internal_templateparser.php" #line 502 "smarty_internal_templateparser.y" - function yy_r148(){$this->_retvalue = ' XOR '; } + function yy_r148(){$this->_retvalue = '&&'; } #line 2459 "smarty_internal_templateparser.php" -#line 507 "smarty_internal_templateparser.y" - function yy_r149(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 503 "smarty_internal_templateparser.y" + function yy_r149(){$this->_retvalue = '||'; } #line 2462 "smarty_internal_templateparser.php" -#line 509 "smarty_internal_templateparser.y" - function yy_r151(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 504 "smarty_internal_templateparser.y" + function yy_r150(){$this->_retvalue = ' XOR '; } #line 2465 "smarty_internal_templateparser.php" -#line 510 "smarty_internal_templateparser.y" - function yy_r152(){ return; } +#line 509 "smarty_internal_templateparser.y" + function yy_r151(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2468 "smarty_internal_templateparser.php" #line 511 "smarty_internal_templateparser.y" - function yy_r153(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } + function yy_r153(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } #line 2471 "smarty_internal_templateparser.php" #line 512 "smarty_internal_templateparser.y" - function yy_r154(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } + function yy_r154(){ return; } #line 2474 "smarty_internal_templateparser.php" -#line 521 "smarty_internal_templateparser.y" - function yy_r158(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } +#line 513 "smarty_internal_templateparser.y" + function yy_r155(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } #line 2477 "smarty_internal_templateparser.php" -#line 522 "smarty_internal_templateparser.y" - function yy_r159(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 514 "smarty_internal_templateparser.y" + function yy_r156(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } #line 2480 "smarty_internal_templateparser.php" #line 523 "smarty_internal_templateparser.y" - function yy_r160(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } + function yy_r160(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } #line 2483 "smarty_internal_templateparser.php" #line 524 "smarty_internal_templateparser.y" - function yy_r161(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } + function yy_r161(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } #line 2486 "smarty_internal_templateparser.php" #line 525 "smarty_internal_templateparser.y" - function yy_r162(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } + function yy_r162(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } #line 2489 "smarty_internal_templateparser.php" #line 526 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } + function yy_r163(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } #line 2492 "smarty_internal_templateparser.php" -#line 528 "smarty_internal_templateparser.y" - function yy_r165(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } +#line 527 "smarty_internal_templateparser.y" + function yy_r164(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } #line 2495 "smarty_internal_templateparser.php" +#line 528 "smarty_internal_templateparser.y" + function yy_r165(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2498 "smarty_internal_templateparser.php" +#line 530 "smarty_internal_templateparser.y" + function yy_r167(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2501 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2604,7 +2610,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2613 "smarty_internal_templateparser.php" +#line 2619 "smarty_internal_templateparser.php" } /** @@ -2628,7 +2634,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2638 "smarty_internal_templateparser.php" +#line 2644 "smarty_internal_templateparser.php" } /**