From eef7400f550b0f7ef2755d5e869fa9bbbb57a043 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Tue, 18 Aug 2009 16:53:33 +0000 Subject: [PATCH] - definition of template class name moded in internal.templatebase.php - whitespace parser changes --- change_log.txt | 4 + libs/Smarty.class.php | 2 - libs/sysplugins/internal.templatebase.php | 5 +- libs/sysplugins/internal.templatelexer.php | 168 +-- libs/sysplugins/internal.templateparser.php | 1014 ++++++++++--------- 5 files changed, 600 insertions(+), 593 deletions(-) diff --git a/change_log.txt b/change_log.txt index dc8665f2..b99ea9d8 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,7 @@ +08/18/2009 +- definition of template class name moded in internal.templatebase.php +- whitespace parser changes + 08/12/2009 - fixed parser problems diff --git a/libs/Smarty.class.php b/libs/Smarty.class.php index a0c196a5..fffcf130 100644 --- a/libs/Smarty.class.php +++ b/libs/Smarty.class.php @@ -74,8 +74,6 @@ class Smarty extends Smarty_Internal_TemplateBase { private static $instance = array(); // smarty version public static $_version = 'Smarty3Alpha'; - // class used for templates - public $template_class = 'Smarty_Internal_Template'; // display error on not assigned variabled static $error_unassigned = false; // template directory diff --git a/libs/sysplugins/internal.templatebase.php b/libs/sysplugins/internal.templatebase.php index ced47202..c6238d0a 100644 --- a/libs/sysplugins/internal.templatebase.php +++ b/libs/sysplugins/internal.templatebase.php @@ -14,6 +14,9 @@ * Base class with template and variable methodes */ class Smarty_Internal_TemplateBase { + // class used for templates + public $template_class = 'Smarty_Internal_Template'; + /** * assigns a Smarty variable * @@ -319,7 +322,7 @@ class Smarty_Internal_TemplateBase { return $this->template_objects[$_templateId]; } else { // create and cache new template object - return new Smarty_Internal_Template ($template, $this, $parent, $cache_id, $compile_id); + return new $this->template_class($template, $this, $parent, $cache_id, $compile_id); } } else { // just return a copy of template class diff --git a/libs/sysplugins/internal.templatelexer.php b/libs/sysplugins/internal.templatelexer.php index 57039eb5..65159cb4 100644 --- a/libs/sysplugins/internal.templatelexer.php +++ b/libs/sysplugins/internal.templatelexer.php @@ -196,7 +196,7 @@ class Smarty_Internal_Templatelexer if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^((\r\n|\n|\r)\\s*)|^(<\\?xml)|^(<\\?php.*\\?>)|^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)/"; + $yy_global_pattern = "/^((\r\n|\n|\r)\\s*)|^(<\\?xml)|^(<\\?php.*\\?>)|^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -236,75 +236,75 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(<\\?xml)|^(<\\?php.*\\?>)|^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 3 => array(0, "^(<\\?php.*\\?>)|^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 4 => array(0, "^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 5 => array(0, "^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 6 => array(0, "^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 7 => array(0, "^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 8 => array(0, "^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 9 => array(0, "^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 10 => array(0, "^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 11 => array(1, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 13 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 14 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 15 => array(1, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 16 => array(1, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 17 => array(1, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 18 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 19 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 20 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 21 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 22 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 23 => array(1, "^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 24 => array(2, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 26 => array(2, "^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 27 => array(2, "^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 28 => array(2, "^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 29 => array(2, "^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 30 => array(3, "^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 32 => array(4, "^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 34 => array(5, "^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 36 => array(6, "^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 38 => array(7, "^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 40 => array(8, "^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 42 => array(9, "^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 44 => array(10, "^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 46 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 48 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 49 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 50 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 51 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 52 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 53 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 54 => array(11, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 55 => array(11, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 56 => array(11, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 57 => array(11, "^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 58 => array(11, "^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 59 => array(11, "^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 60 => array(11, "^(])|^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 61 => array(11, "^(\\s*->)|^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 62 => array(11, "^(\\s*=>\\s*)|^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 63 => array(11, "^(=)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 64 => array(11, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 65 => array(11, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 66 => array(12, "^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 68 => array(13, "^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 70 => array(14, "^([\s]+)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 72 => array(14, "^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 73 => array(14, "^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 74 => array(14, "^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 75 => array(14, "^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 76 => array(14, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 77 => array(14, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 78 => array(14, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 79 => array(14, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 80 => array(14, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 81 => array(14, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 82 => array(14, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^(.)"), - 83 => array(14, "^(\\s*&\\s*)|^(\\w+)|^(.)"), - 84 => array(14, "^(\\w+)|^(.)"), + 1 => array(0, "^(<\\?xml)|^(<\\?php.*\\?>)|^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 3 => array(0, "^(<\\?php.*\\?>)|^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 4 => array(0, "^(<\\?=)|^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 5 => array(0, "^(\\?>)|^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 6 => array(0, "^(".$this->ldel."php".$this->rdel.")|^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 7 => array(0, "^(".$this->ldel."\/php".$this->rdel.")|^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 8 => array(0, "^(\\*".$this->rdel.")|^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 9 => array(0, "^(".$this->ldel."\\*)|^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 10 => array(0, "^((\\\\\"|\\\\'))|^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 11 => array(1, "^(')|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 13 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 14 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 15 => array(1, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 16 => array(1, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 17 => array(1, "^(".$this->ldel."\\s{1,})|^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 18 => array(1, "^(\\s{1,}".$this->rdel.")|^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 19 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 20 => array(1, "^(".$this->ldel.")|^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 21 => array(1, "^(".$this->rdel.")|^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 22 => array(1, "^(\\s+is\\s+in\\s+)|^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 23 => array(1, "^(\\s+(AS|as)\\s+)|^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 24 => array(2, "^(true|TRUE|True|false|FALSE|False)|^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 26 => array(2, "^(null|NULL|Null)|^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 27 => array(2, "^(===)|^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 28 => array(2, "^(!==)|^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 29 => array(2, "^(==|\\s+(EQ|eq)\\s+)|^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 30 => array(3, "^(!=|\\s+(NE|ne)\\s+)|^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 32 => array(4, "^(>=|\\s+(GE|ge)\\s+)|^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 34 => array(5, "^(<=|\\s+(LE|le)\\s+)|^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 36 => array(6, "^(>|\\s+(GT|gt)\\s+)|^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 38 => array(7, "^(<|\\s+(LT|lt)\\s+)|^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 40 => array(8, "^(!|(NOT|not)\\s+)|^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 42 => array(9, "^(\\s*&&\\s*|\\s+(AND|and)\\s+)|^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 44 => array(10, "^(\\s*\\|\\|\\s*|\\s+(OR|or)\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 46 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 48 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 49 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 50 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 51 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 52 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 53 => array(11, "^(\\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+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 54 => array(11, "^(\\s+is\\s+not\\s+even)|^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 55 => array(11, "^(\\s+is\\s+div\\s+by\\s+)|^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 56 => array(11, "^(\\s+is\\s+not\\s+div\\s+by\\s+)|^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 57 => array(11, "^(\\()|^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 58 => array(11, "^(\\))|^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 59 => array(11, "^(\\[)|^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 60 => array(11, "^(])|^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 61 => array(11, "^(\\s*->)|^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 62 => array(11, "^(\\s*=>\\s*)|^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 63 => array(11, "^(\\s*=\\s*)|^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 64 => array(11, "^(\\d+)|^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 65 => array(11, "^((\\+\\+|--)\\s*)|^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 66 => array(12, "^(\\s*(\\+|-)\\s*)|^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 68 => array(13, "^(\\s*\\*(?!\\})\\s*|\\s*(\/|%)\\s*)|^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 70 => array(14, "^(\\$)|^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 72 => array(14, "^(\\s*;\\s*)|^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 73 => array(14, "^(::)|^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 74 => array(14, "^(:)|^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 75 => array(14, "^(@)|^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 76 => array(14, "^(#)|^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 77 => array(14, "^(\")|^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 78 => array(14, "^(`)|^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 79 => array(14, "^(\\|)|^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 80 => array(14, "^(\\.)|^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 81 => array(14, "^(\\s*,\\s*)|^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 82 => array(14, "^(\\s*&\\s*)|^(\\w+)|^([\s]+)|^(.)"), + 83 => array(14, "^(\\w+)|^([\s]+)|^(.)"), + 84 => array(14, "^([\s]+)|^(.)"), 85 => array(14, "^(.)"), 86 => array(14, ""), ); @@ -646,72 +646,72 @@ class Smarty_Internal_Templatelexer function yy_r1_72($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_SPACE; + $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; } function yy_r1_73($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOLLAR; + $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; } function yy_r1_74($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_SEMICOLON; + $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; } function yy_r1_75($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOUBLECOLON; + $this->token = Smarty_Internal_Templateparser::TP_COLON; } function yy_r1_76($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_COLON; + $this->token = Smarty_Internal_Templateparser::TP_AT; } function yy_r1_77($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_AT; + $this->token = Smarty_Internal_Templateparser::TP_HATCH; } function yy_r1_78($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_HATCH; + $this->token = Smarty_Internal_Templateparser::TP_QUOTE; } function yy_r1_79($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_QUOTE; + $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; } function yy_r1_80($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_BACKTICK; + $this->token = Smarty_Internal_Templateparser::TP_VERT; } function yy_r1_81($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_VERT; + $this->token = Smarty_Internal_Templateparser::TP_DOT; } function yy_r1_82($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_DOT; + $this->token = Smarty_Internal_Templateparser::TP_COMMA; } function yy_r1_83($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_COMMA; + $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; } function yy_r1_84($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ANDSYM; + $this->token = Smarty_Internal_Templateparser::TP_ID; } function yy_r1_85($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_ID; + $this->token = Smarty_Internal_Templateparser::TP_SPACE; } function yy_r1_86($yy_subpatterns) { diff --git a/libs/sysplugins/internal.templateparser.php b/libs/sysplugins/internal.templateparser.php index d9443d37..7aee3ed7 100644 --- a/libs/sysplugins/internal.templateparser.php +++ b/libs/sysplugins/internal.templateparser.php @@ -268,243 +268,245 @@ class Smarty_Internal_Templateparser#line 109 "internal.templateparser.php" ** shifting non-terminals after a reduce. ** self::$yy_default Default action for each state. */ - const YY_SZ_ACTTAB = 959; + const YY_SZ_ACTTAB = 965; static public $yy_action = array( - /* 0 */ 226, 256, 257, 258, 263, 264, 269, 270, 268, 147, - /* 10 */ 139, 275, 24, 72, 57, 420, 420, 420, 420, 420, - /* 20 */ 420, 420, 420, 122, 190, 189, 202, 33, 266, 233, - /* 30 */ 241, 240, 162, 200, 28, 153, 238, 38, 223, 3, - /* 40 */ 147, 13, 275, 65, 46, 35, 420, 420, 420, 420, - /* 50 */ 420, 420, 420, 420, 144, 190, 189, 196, 175, 191, - /* 60 */ 31, 215, 246, 7, 72, 36, 52, 55, 183, 184, - /* 70 */ 252, 204, 259, 46, 261, 57, 35, 32, 186, 153, - /* 80 */ 42, 38, 147, 22, 200, 13, 114, 65, 39, 254, - /* 90 */ 179, 30, 27, 235, 47, 232, 275, 64, 144, 253, - /* 100 */ 153, 19, 38, 18, 22, 46, 13, 227, 57, 167, - /* 110 */ 52, 55, 183, 184, 24, 213, 150, 46, 272, 142, + /* 0 */ 226, 256, 257, 258, 263, 264, 269, 270, 268, 148, + /* 10 */ 280, 275, 24, 106, 138, 420, 420, 420, 420, 420, + /* 20 */ 420, 420, 420, 273, 190, 189, 443, 51, 187, 212, + /* 30 */ 241, 240, 159, 27, 28, 153, 238, 38, 223, 3, + /* 40 */ 148, 13, 275, 63, 18, 35, 420, 420, 420, 420, + /* 50 */ 420, 420, 420, 420, 147, 190, 189, 196, 173, 191, + /* 60 */ 31, 215, 72, 7, 274, 36, 52, 56, 184, 181, + /* 70 */ 252, 165, 259, 45, 261, 57, 35, 122, 186, 153, + /* 80 */ 202, 38, 266, 22, 201, 13, 114, 63, 33, 254, + /* 90 */ 175, 30, 279, 235, 48, 232, 275, 66, 147, 253, + /* 100 */ 153, 19, 38, 156, 22, 45, 13, 227, 57, 62, + /* 110 */ 52, 56, 184, 181, 170, 246, 149, 45, 272, 143, /* 120 */ 194, 220, 193, 197, 10, 11, 8, 12, 2, 5, - /* 130 */ 57, 52, 55, 183, 184, 14, 24, 24, 46, 251, - /* 140 */ 223, 178, 153, 119, 38, 44, 3, 211, 13, 68, - /* 150 */ 59, 245, 229, 58, 215, 231, 275, 72, 28, 21, - /* 160 */ 46, 89, 223, 223, 14, 218, 217, 237, 214, 90, - /* 170 */ 7, 186, 119, 52, 55, 183, 184, 200, 241, 240, - /* 180 */ 46, 215, 41, 156, 72, 53, 219, 73, 152, 149, - /* 190 */ 24, 210, 174, 172, 168, 14, 93, 275, 186, 190, - /* 200 */ 189, 255, 14, 119, 200, 151, 420, 275, 275, 188, - /* 210 */ 119, 225, 147, 36, 1, 158, 223, 121, 241, 240, - /* 220 */ 9, 194, 220, 193, 197, 10, 11, 8, 12, 2, - /* 230 */ 5, 285, 194, 220, 193, 197, 10, 11, 8, 12, - /* 240 */ 2, 5, 60, 153, 106, 38, 137, 22, 57, 13, - /* 250 */ 26, 65, 153, 36, 38, 273, 22, 15, 13, 154, - /* 260 */ 65, 147, 144, 443, 51, 187, 212, 275, 110, 32, - /* 270 */ 138, 43, 42, 163, 52, 55, 183, 184, 46, 273, - /* 280 */ 196, 46, 191, 52, 55, 183, 184, 196, 222, 191, - /* 290 */ 46, 194, 220, 193, 197, 10, 11, 8, 12, 2, - /* 300 */ 5, 153, 103, 38, 24, 22, 180, 13, 215, 57, - /* 310 */ 153, 72, 38, 273, 22, 196, 13, 191, 57, 236, - /* 320 */ 148, 260, 182, 177, 274, 186, 72, 234, 262, 146, - /* 330 */ 223, 200, 52, 55, 183, 184, 138, 176, 140, 46, - /* 340 */ 72, 52, 55, 183, 184, 153, 200, 38, 46, 22, - /* 350 */ 175, 13, 279, 65, 14, 147, 138, 198, 147, 29, - /* 360 */ 200, 4, 119, 104, 143, 138, 85, 280, 23, 215, - /* 370 */ 41, 147, 72, 282, 273, 77, 52, 55, 183, 184, - /* 380 */ 218, 217, 6, 46, 93, 205, 186, 215, 118, 162, - /* 390 */ 72, 199, 200, 157, 72, 162, 72, 188, 218, 217, - /* 400 */ 215, 153, 93, 72, 186, 22, 196, 13, 191, 57, - /* 410 */ 200, 216, 244, 39, 200, 16, 200, 186, 145, 242, - /* 420 */ 148, 226, 248, 200, 201, 212, 215, 117, 141, 72, - /* 430 */ 147, 185, 52, 55, 183, 184, 159, 218, 217, 46, - /* 440 */ 234, 93, 171, 186, 215, 41, 164, 72, 147, 200, - /* 450 */ 76, 215, 41, 162, 72, 218, 217, 75, 253, 93, - /* 460 */ 19, 186, 218, 217, 277, 56, 93, 200, 186, 283, - /* 470 */ 115, 224, 188, 222, 200, 150, 33, 215, 41, 188, - /* 480 */ 72, 255, 247, 79, 215, 40, 162, 72, 218, 217, - /* 490 */ 74, 162, 93, 286, 186, 218, 217, 239, 221, 93, - /* 500 */ 200, 186, 147, 102, 44, 188, 276, 200, 215, 41, - /* 510 */ 125, 72, 188, 24, 82, 162, 147, 98, 162, 218, - /* 520 */ 217, 160, 196, 93, 191, 186, 215, 41, 96, 72, - /* 530 */ 86, 200, 80, 128, 24, 100, 188, 218, 217, 161, - /* 540 */ 25, 93, 39, 186, 255, 250, 273, 215, 41, 200, - /* 550 */ 72, 95, 287, 83, 188, 162, 170, 54, 218, 217, - /* 560 */ 223, 91, 93, 97, 186, 215, 41, 255, 72, 70, - /* 570 */ 200, 78, 284, 255, 92, 188, 218, 217, 209, 255, - /* 580 */ 93, 281, 186, 215, 41, 136, 72, 94, 200, 81, - /* 590 */ 266, 107, 120, 188, 218, 217, 287, 266, 93, 181, - /* 600 */ 186, 215, 41, 130, 72, 123, 200, 84, 266, 287, - /* 610 */ 34, 188, 218, 217, 206, 153, 93, 203, 186, 22, - /* 620 */ 105, 69, 287, 57, 200, 57, 109, 249, 155, 188, - /* 630 */ 132, 273, 169, 108, 148, 192, 208, 228, 62, 215, - /* 640 */ 117, 166, 72, 18, 67, 48, 52, 55, 183, 184, - /* 650 */ 218, 217, 63, 46, 93, 46, 186, 215, 118, 230, - /* 660 */ 72, 271, 200, 37, 215, 117, 278, 72, 218, 217, - /* 670 */ 202, 195, 93, 162, 186, 218, 217, 222, 66, 93, - /* 680 */ 200, 186, 215, 117, 165, 72, 133, 200, 71, 243, - /* 690 */ 20, 17, 207, 218, 217, 45, 134, 93, 265, 186, - /* 700 */ 99, 265, 173, 265, 265, 200, 265, 265, 265, 215, - /* 710 */ 113, 265, 72, 265, 265, 265, 265, 265, 265, 265, - /* 720 */ 218, 217, 215, 126, 93, 72, 186, 265, 265, 265, - /* 730 */ 265, 265, 200, 218, 217, 215, 131, 93, 72, 186, - /* 740 */ 265, 265, 265, 265, 265, 200, 218, 217, 265, 265, - /* 750 */ 93, 265, 186, 265, 215, 111, 265, 72, 200, 265, - /* 760 */ 265, 265, 265, 265, 265, 218, 217, 265, 265, 93, - /* 770 */ 265, 186, 215, 49, 265, 72, 265, 200, 265, 265, - /* 780 */ 265, 265, 265, 218, 217, 215, 116, 93, 72, 186, - /* 790 */ 265, 265, 265, 265, 265, 200, 218, 217, 215, 135, - /* 800 */ 93, 72, 186, 265, 265, 265, 265, 265, 200, 218, - /* 810 */ 217, 215, 129, 93, 72, 186, 265, 265, 265, 265, - /* 820 */ 265, 200, 218, 217, 265, 265, 93, 265, 186, 215, - /* 830 */ 127, 265, 72, 265, 200, 265, 265, 265, 265, 265, - /* 840 */ 218, 217, 265, 265, 93, 265, 186, 215, 124, 265, - /* 850 */ 72, 265, 200, 265, 265, 265, 265, 265, 218, 217, - /* 860 */ 215, 112, 93, 72, 186, 265, 265, 265, 265, 265, - /* 870 */ 200, 218, 217, 215, 50, 93, 61, 186, 265, 265, - /* 880 */ 265, 265, 265, 200, 218, 217, 215, 101, 93, 72, - /* 890 */ 186, 265, 265, 265, 265, 265, 200, 218, 217, 265, - /* 900 */ 265, 93, 265, 186, 215, 265, 265, 72, 265, 200, - /* 910 */ 265, 265, 265, 265, 265, 218, 217, 265, 265, 88, - /* 920 */ 265, 186, 215, 265, 265, 72, 265, 200, 265, 265, - /* 930 */ 265, 265, 265, 218, 217, 215, 265, 87, 72, 186, - /* 940 */ 265, 265, 265, 265, 265, 200, 265, 267, 265, 265, - /* 950 */ 265, 265, 186, 265, 265, 265, 265, 265, 200, + /* 130 */ 103, 52, 56, 184, 181, 148, 4, 24, 45, 251, + /* 140 */ 273, 253, 153, 19, 38, 44, 3, 211, 13, 68, + /* 150 */ 58, 245, 229, 60, 234, 231, 14, 86, 149, 21, + /* 160 */ 196, 89, 191, 223, 119, 183, 148, 185, 1, 158, + /* 170 */ 7, 219, 250, 52, 56, 184, 181, 215, 72, 41, + /* 180 */ 45, 221, 275, 73, 152, 150, 57, 44, 171, 169, + /* 190 */ 32, 14, 93, 43, 186, 151, 234, 172, 275, 119, + /* 200 */ 201, 39, 420, 275, 285, 188, 194, 220, 193, 197, + /* 210 */ 10, 11, 8, 12, 2, 5, 45, 141, 72, 241, + /* 220 */ 240, 57, 194, 220, 193, 197, 10, 11, 8, 12, + /* 230 */ 2, 5, 154, 153, 15, 38, 233, 22, 148, 13, + /* 240 */ 201, 63, 153, 148, 38, 163, 22, 29, 13, 137, + /* 250 */ 63, 45, 147, 196, 36, 191, 59, 275, 110, 138, + /* 260 */ 222, 42, 105, 140, 52, 56, 184, 181, 273, 148, + /* 270 */ 225, 45, 273, 52, 56, 184, 181, 241, 240, 24, + /* 280 */ 45, 194, 220, 193, 197, 10, 11, 8, 12, 2, + /* 290 */ 5, 153, 205, 38, 260, 22, 148, 13, 159, 57, + /* 300 */ 153, 28, 38, 26, 22, 223, 13, 20, 57, 39, + /* 310 */ 146, 120, 36, 196, 9, 191, 24, 179, 72, 144, + /* 320 */ 138, 249, 52, 56, 184, 181, 24, 213, 138, 45, + /* 330 */ 85, 52, 56, 184, 181, 153, 275, 38, 45, 22, + /* 340 */ 201, 13, 223, 63, 248, 196, 6, 191, 14, 177, + /* 350 */ 72, 237, 223, 57, 142, 14, 119, 199, 72, 215, + /* 360 */ 72, 41, 173, 119, 176, 77, 52, 56, 184, 181, + /* 370 */ 218, 217, 201, 45, 93, 139, 186, 215, 72, 118, + /* 380 */ 201, 282, 201, 45, 190, 189, 262, 188, 218, 217, + /* 390 */ 148, 180, 93, 153, 186, 148, 196, 22, 191, 13, + /* 400 */ 201, 57, 14, 159, 24, 209, 215, 72, 145, 242, + /* 410 */ 119, 226, 146, 159, 157, 72, 23, 218, 217, 32, + /* 420 */ 148, 90, 43, 186, 52, 56, 184, 181, 283, 201, + /* 430 */ 223, 45, 200, 212, 215, 72, 41, 201, 214, 247, + /* 440 */ 76, 215, 72, 41, 160, 218, 217, 75, 286, 93, + /* 450 */ 159, 186, 218, 217, 215, 72, 93, 201, 186, 148, + /* 460 */ 34, 224, 188, 132, 201, 265, 267, 203, 266, 188, + /* 470 */ 159, 186, 215, 72, 41, 57, 244, 201, 79, 16, + /* 480 */ 24, 215, 72, 218, 217, 33, 208, 93, 92, 186, + /* 490 */ 159, 24, 218, 217, 55, 201, 88, 278, 186, 95, + /* 500 */ 188, 215, 72, 40, 201, 45, 223, 74, 115, 54, + /* 510 */ 255, 222, 218, 217, 98, 255, 93, 161, 186, 159, + /* 520 */ 215, 72, 41, 287, 201, 255, 82, 159, 174, 188, + /* 530 */ 96, 218, 217, 91, 39, 93, 53, 186, 198, 215, + /* 540 */ 72, 41, 124, 201, 108, 80, 255, 100, 188, 287, + /* 550 */ 218, 217, 255, 104, 93, 97, 186, 273, 215, 72, + /* 560 */ 41, 125, 201, 273, 83, 94, 266, 188, 287, 218, + /* 570 */ 217, 255, 129, 93, 130, 186, 215, 72, 41, 266, + /* 580 */ 162, 201, 78, 277, 70, 284, 188, 218, 217, 210, + /* 590 */ 182, 93, 281, 186, 107, 215, 72, 41, 123, 201, + /* 600 */ 287, 81, 206, 47, 188, 155, 218, 217, 64, 164, + /* 610 */ 93, 134, 186, 204, 215, 72, 41, 18, 201, 102, + /* 620 */ 84, 239, 192, 188, 69, 218, 217, 228, 178, 93, + /* 630 */ 109, 186, 61, 276, 215, 72, 153, 201, 271, 37, + /* 640 */ 22, 195, 188, 222, 57, 218, 217, 159, 202, 87, + /* 650 */ 67, 186, 136, 207, 71, 146, 25, 201, 17, 46, + /* 660 */ 135, 215, 72, 117, 265, 265, 99, 52, 56, 184, + /* 670 */ 181, 265, 218, 217, 45, 265, 93, 265, 186, 265, + /* 680 */ 265, 167, 265, 265, 201, 215, 72, 117, 265, 265, + /* 690 */ 265, 265, 265, 215, 72, 265, 218, 217, 215, 72, + /* 700 */ 93, 265, 186, 265, 236, 230, 265, 265, 201, 216, + /* 710 */ 186, 215, 72, 118, 265, 186, 201, 265, 265, 265, + /* 720 */ 265, 201, 218, 217, 265, 265, 93, 265, 186, 265, + /* 730 */ 215, 72, 117, 265, 201, 265, 265, 215, 72, 117, + /* 740 */ 265, 218, 217, 243, 265, 93, 265, 186, 218, 217, + /* 750 */ 168, 265, 93, 201, 186, 265, 265, 166, 265, 265, + /* 760 */ 201, 215, 72, 113, 265, 265, 265, 265, 265, 265, + /* 770 */ 265, 265, 218, 217, 265, 265, 93, 265, 186, 265, + /* 780 */ 215, 72, 126, 265, 201, 265, 265, 215, 72, 131, + /* 790 */ 265, 218, 217, 265, 265, 93, 265, 186, 218, 217, + /* 800 */ 265, 265, 93, 201, 186, 215, 72, 111, 265, 265, + /* 810 */ 201, 265, 215, 72, 121, 265, 218, 217, 265, 265, + /* 820 */ 93, 265, 186, 218, 217, 265, 265, 93, 201, 186, + /* 830 */ 265, 265, 215, 72, 116, 201, 265, 265, 265, 265, + /* 840 */ 265, 265, 265, 218, 217, 265, 265, 93, 265, 186, + /* 850 */ 265, 215, 72, 133, 265, 201, 265, 265, 265, 265, + /* 860 */ 265, 265, 218, 217, 265, 265, 93, 265, 186, 265, + /* 870 */ 215, 72, 128, 265, 201, 265, 265, 215, 72, 127, + /* 880 */ 265, 218, 217, 265, 265, 93, 265, 186, 218, 217, + /* 890 */ 265, 265, 93, 201, 186, 215, 72, 49, 265, 265, + /* 900 */ 201, 265, 215, 72, 112, 265, 218, 217, 265, 265, + /* 910 */ 93, 265, 186, 218, 217, 265, 265, 93, 201, 186, + /* 920 */ 265, 265, 215, 65, 50, 201, 265, 265, 265, 265, + /* 930 */ 265, 265, 265, 218, 217, 265, 265, 93, 265, 186, + /* 940 */ 265, 215, 72, 101, 265, 201, 265, 265, 265, 265, + /* 950 */ 265, 265, 218, 217, 265, 265, 93, 265, 186, 265, + /* 960 */ 265, 265, 265, 265, 201, ); static public $yy_lookahead = array( /* 0 */ 15, 30, 31, 32, 33, 34, 35, 36, 37, 24, - /* 10 */ 74, 26, 3, 77, 18, 30, 31, 32, 33, 34, - /* 20 */ 35, 36, 37, 95, 39, 40, 98, 21, 100, 93, - /* 30 */ 11, 12, 26, 97, 25, 10, 17, 12, 29, 14, - /* 40 */ 24, 16, 26, 18, 48, 60, 30, 31, 32, 33, + /* 10 */ 4, 26, 3, 77, 78, 30, 31, 32, 33, 34, + /* 20 */ 35, 36, 37, 87, 39, 40, 69, 70, 71, 72, + /* 30 */ 11, 12, 26, 3, 25, 10, 17, 12, 29, 14, + /* 40 */ 24, 16, 26, 18, 14, 60, 30, 31, 32, 33, /* 50 */ 34, 35, 36, 37, 29, 39, 40, 1, 49, 3, - /* 60 */ 3, 74, 4, 38, 77, 46, 41, 42, 43, 44, - /* 70 */ 1, 48, 85, 48, 4, 18, 60, 16, 91, 10, - /* 80 */ 19, 12, 24, 14, 97, 16, 29, 18, 27, 1, - /* 90 */ 2, 3, 3, 5, 6, 7, 26, 9, 29, 1, - /* 100 */ 10, 3, 12, 14, 14, 48, 16, 17, 18, 45, - /* 110 */ 41, 42, 43, 44, 3, 4, 18, 48, 62, 29, + /* 60 */ 3, 74, 75, 38, 1, 46, 41, 42, 43, 44, + /* 70 */ 1, 29, 85, 48, 4, 18, 60, 95, 91, 10, + /* 80 */ 98, 12, 100, 14, 97, 16, 29, 18, 21, 1, + /* 90 */ 2, 3, 29, 5, 6, 7, 26, 9, 29, 1, + /* 100 */ 10, 3, 12, 18, 14, 48, 16, 17, 18, 18, + /* 110 */ 41, 42, 43, 44, 29, 4, 18, 48, 62, 29, /* 120 */ 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, - /* 130 */ 18, 41, 42, 43, 44, 14, 3, 3, 48, 41, - /* 140 */ 29, 29, 10, 22, 12, 47, 14, 13, 16, 61, - /* 150 */ 18, 63, 64, 65, 74, 67, 26, 77, 25, 25, - /* 160 */ 48, 29, 29, 29, 14, 85, 86, 17, 100, 89, - /* 170 */ 38, 91, 22, 41, 42, 43, 44, 97, 11, 12, - /* 180 */ 48, 74, 75, 18, 77, 83, 15, 80, 81, 82, - /* 190 */ 3, 4, 85, 86, 29, 14, 89, 26, 91, 39, - /* 200 */ 40, 99, 14, 22, 97, 23, 25, 26, 26, 102, - /* 210 */ 22, 4, 24, 46, 26, 27, 29, 20, 11, 12, - /* 220 */ 23, 50, 51, 52, 53, 54, 55, 56, 57, 58, - /* 230 */ 59, 1, 50, 51, 52, 53, 54, 55, 56, 57, - /* 240 */ 58, 59, 29, 10, 76, 12, 78, 14, 18, 16, - /* 250 */ 88, 18, 10, 46, 12, 87, 14, 20, 16, 29, - /* 260 */ 18, 24, 29, 69, 70, 71, 72, 26, 76, 16, - /* 270 */ 78, 29, 19, 84, 41, 42, 43, 44, 48, 87, - /* 280 */ 1, 48, 3, 41, 42, 43, 44, 1, 99, 3, - /* 290 */ 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, - /* 300 */ 59, 10, 76, 12, 3, 14, 7, 16, 74, 18, - /* 310 */ 10, 77, 12, 87, 14, 1, 16, 3, 18, 85, - /* 320 */ 29, 42, 8, 74, 1, 91, 77, 101, 42, 29, - /* 330 */ 29, 97, 41, 42, 43, 44, 78, 74, 4, 48, - /* 340 */ 77, 41, 42, 43, 44, 10, 97, 12, 48, 14, - /* 350 */ 49, 16, 29, 18, 14, 24, 78, 29, 24, 28, - /* 360 */ 97, 88, 22, 76, 29, 78, 88, 4, 28, 74, - /* 370 */ 75, 24, 77, 4, 87, 80, 41, 42, 43, 44, - /* 380 */ 85, 86, 104, 48, 89, 48, 91, 74, 75, 26, - /* 390 */ 77, 74, 97, 74, 77, 26, 77, 102, 85, 86, - /* 400 */ 74, 10, 89, 77, 91, 14, 1, 16, 3, 18, - /* 410 */ 97, 85, 17, 27, 97, 20, 97, 91, 105, 106, - /* 420 */ 29, 15, 29, 97, 71, 72, 74, 75, 4, 77, - /* 430 */ 24, 4, 41, 42, 43, 44, 88, 85, 86, 48, - /* 440 */ 101, 89, 49, 91, 74, 75, 94, 77, 24, 97, - /* 450 */ 80, 74, 75, 26, 77, 85, 86, 80, 1, 89, - /* 460 */ 3, 91, 85, 86, 4, 83, 89, 97, 91, 4, - /* 470 */ 96, 66, 102, 99, 97, 18, 21, 74, 75, 102, - /* 480 */ 77, 99, 4, 80, 74, 75, 26, 77, 85, 86, - /* 490 */ 80, 26, 89, 4, 91, 85, 86, 15, 41, 89, - /* 500 */ 97, 91, 24, 96, 47, 102, 29, 97, 74, 75, - /* 510 */ 25, 77, 102, 3, 80, 26, 24, 73, 26, 85, - /* 520 */ 86, 21, 1, 89, 3, 91, 74, 75, 83, 77, - /* 530 */ 92, 97, 80, 29, 3, 76, 102, 85, 86, 29, - /* 540 */ 25, 89, 27, 91, 99, 107, 87, 74, 75, 97, - /* 550 */ 77, 83, 108, 80, 102, 26, 27, 83, 85, 86, - /* 560 */ 29, 73, 89, 83, 91, 74, 75, 99, 77, 29, - /* 570 */ 97, 80, 47, 99, 73, 102, 85, 86, 4, 99, - /* 580 */ 89, 47, 91, 74, 75, 95, 77, 73, 97, 80, - /* 590 */ 100, 88, 95, 102, 85, 86, 108, 100, 89, 10, - /* 600 */ 91, 74, 75, 95, 77, 29, 97, 80, 100, 108, - /* 610 */ 3, 102, 85, 86, 4, 10, 89, 10, 91, 14, - /* 620 */ 76, 15, 108, 18, 97, 18, 96, 29, 19, 102, - /* 630 */ 79, 87, 45, 96, 29, 4, 29, 15, 18, 74, - /* 640 */ 75, 29, 77, 14, 18, 79, 41, 42, 43, 44, - /* 650 */ 85, 86, 18, 48, 89, 48, 91, 74, 75, 94, - /* 660 */ 77, 107, 97, 90, 74, 75, 87, 77, 85, 86, - /* 670 */ 98, 108, 89, 26, 91, 85, 86, 99, 18, 89, - /* 680 */ 97, 91, 74, 75, 94, 77, 104, 97, 93, 106, - /* 690 */ 88, 14, 81, 85, 86, 96, 103, 89, 109, 91, - /* 700 */ 96, 109, 94, 109, 109, 97, 109, 109, 109, 74, - /* 710 */ 75, 109, 77, 109, 109, 109, 109, 109, 109, 109, - /* 720 */ 85, 86, 74, 75, 89, 77, 91, 109, 109, 109, - /* 730 */ 109, 109, 97, 85, 86, 74, 75, 89, 77, 91, - /* 740 */ 109, 109, 109, 109, 109, 97, 85, 86, 109, 109, - /* 750 */ 89, 109, 91, 109, 74, 75, 109, 77, 97, 109, - /* 760 */ 109, 109, 109, 109, 109, 85, 86, 109, 109, 89, - /* 770 */ 109, 91, 74, 75, 109, 77, 109, 97, 109, 109, - /* 780 */ 109, 109, 109, 85, 86, 74, 75, 89, 77, 91, - /* 790 */ 109, 109, 109, 109, 109, 97, 85, 86, 74, 75, - /* 800 */ 89, 77, 91, 109, 109, 109, 109, 109, 97, 85, - /* 810 */ 86, 74, 75, 89, 77, 91, 109, 109, 109, 109, - /* 820 */ 109, 97, 85, 86, 109, 109, 89, 109, 91, 74, - /* 830 */ 75, 109, 77, 109, 97, 109, 109, 109, 109, 109, - /* 840 */ 85, 86, 109, 109, 89, 109, 91, 74, 75, 109, - /* 850 */ 77, 109, 97, 109, 109, 109, 109, 109, 85, 86, - /* 860 */ 74, 75, 89, 77, 91, 109, 109, 109, 109, 109, - /* 870 */ 97, 85, 86, 74, 75, 89, 77, 91, 109, 109, - /* 880 */ 109, 109, 109, 97, 85, 86, 74, 75, 89, 77, - /* 890 */ 91, 109, 109, 109, 109, 109, 97, 85, 86, 109, - /* 900 */ 109, 89, 109, 91, 74, 109, 109, 77, 109, 97, - /* 910 */ 109, 109, 109, 109, 109, 85, 86, 109, 109, 89, - /* 920 */ 109, 91, 74, 109, 109, 77, 109, 97, 109, 109, - /* 930 */ 109, 109, 109, 85, 86, 74, 109, 89, 77, 91, - /* 940 */ 109, 109, 109, 109, 109, 97, 85, 86, 109, 109, - /* 950 */ 109, 109, 91, 109, 109, 109, 109, 109, 97, + /* 130 */ 77, 41, 42, 43, 44, 24, 88, 3, 48, 41, + /* 140 */ 87, 1, 10, 3, 12, 47, 14, 13, 16, 61, + /* 150 */ 18, 63, 64, 65, 101, 67, 14, 92, 18, 25, + /* 160 */ 1, 29, 3, 29, 22, 7, 24, 8, 26, 27, + /* 170 */ 38, 15, 107, 41, 42, 43, 44, 74, 75, 76, + /* 180 */ 48, 41, 26, 80, 81, 82, 18, 47, 85, 86, + /* 190 */ 16, 14, 89, 19, 91, 23, 101, 29, 26, 22, + /* 200 */ 97, 27, 25, 26, 1, 102, 50, 51, 52, 53, + /* 210 */ 54, 55, 56, 57, 58, 59, 48, 74, 75, 11, + /* 220 */ 12, 18, 50, 51, 52, 53, 54, 55, 56, 57, + /* 230 */ 58, 59, 29, 10, 20, 12, 93, 14, 24, 16, + /* 240 */ 97, 18, 10, 24, 12, 84, 14, 28, 16, 4, + /* 250 */ 18, 48, 29, 1, 46, 3, 29, 26, 77, 78, + /* 260 */ 99, 29, 77, 78, 41, 42, 43, 44, 87, 24, + /* 270 */ 4, 48, 87, 41, 42, 43, 44, 11, 12, 3, + /* 280 */ 48, 50, 51, 52, 53, 54, 55, 56, 57, 58, + /* 290 */ 59, 10, 48, 12, 42, 14, 24, 16, 26, 18, + /* 300 */ 10, 25, 12, 88, 14, 29, 16, 25, 18, 27, + /* 310 */ 29, 20, 46, 1, 23, 3, 3, 74, 75, 29, + /* 320 */ 78, 29, 41, 42, 43, 44, 3, 4, 78, 48, + /* 330 */ 88, 41, 42, 43, 44, 10, 26, 12, 48, 14, + /* 340 */ 97, 16, 29, 18, 29, 1, 104, 3, 14, 74, + /* 350 */ 75, 17, 29, 18, 29, 14, 22, 74, 75, 74, + /* 360 */ 75, 76, 49, 22, 49, 80, 41, 42, 43, 44, + /* 370 */ 85, 86, 97, 48, 89, 4, 91, 74, 75, 76, + /* 380 */ 97, 4, 97, 48, 39, 40, 42, 102, 85, 86, + /* 390 */ 24, 4, 89, 10, 91, 24, 1, 14, 3, 16, + /* 400 */ 97, 18, 14, 26, 3, 4, 74, 75, 105, 106, + /* 410 */ 22, 15, 29, 26, 74, 75, 28, 85, 86, 16, + /* 420 */ 24, 89, 19, 91, 41, 42, 43, 44, 4, 97, + /* 430 */ 29, 48, 71, 72, 74, 75, 76, 97, 100, 4, + /* 440 */ 80, 74, 75, 76, 88, 85, 86, 80, 4, 89, + /* 450 */ 26, 91, 85, 86, 74, 75, 89, 97, 91, 24, + /* 460 */ 3, 66, 102, 95, 97, 85, 86, 10, 100, 102, + /* 470 */ 26, 91, 74, 75, 76, 18, 17, 97, 80, 20, + /* 480 */ 3, 74, 75, 85, 86, 21, 29, 89, 73, 91, + /* 490 */ 26, 3, 85, 86, 83, 97, 89, 4, 91, 83, + /* 500 */ 102, 74, 75, 76, 97, 48, 29, 80, 96, 83, + /* 510 */ 99, 99, 85, 86, 73, 99, 89, 29, 91, 26, + /* 520 */ 74, 75, 76, 108, 97, 99, 80, 26, 27, 102, + /* 530 */ 83, 85, 86, 73, 27, 89, 83, 91, 29, 74, + /* 540 */ 75, 76, 25, 97, 96, 80, 99, 77, 102, 108, + /* 550 */ 85, 86, 99, 77, 89, 83, 91, 87, 74, 75, + /* 560 */ 76, 95, 97, 87, 80, 73, 100, 102, 108, 85, + /* 570 */ 86, 99, 29, 89, 95, 91, 74, 75, 76, 100, + /* 580 */ 21, 97, 80, 29, 29, 47, 102, 85, 86, 4, + /* 590 */ 10, 89, 47, 91, 88, 74, 75, 76, 29, 97, + /* 600 */ 108, 80, 4, 79, 102, 19, 85, 86, 18, 45, + /* 610 */ 89, 79, 91, 48, 74, 75, 76, 14, 97, 96, + /* 620 */ 80, 15, 4, 102, 15, 85, 86, 15, 45, 89, + /* 630 */ 96, 91, 18, 87, 74, 75, 10, 97, 107, 90, + /* 640 */ 14, 108, 102, 99, 18, 85, 86, 26, 98, 89, + /* 650 */ 18, 91, 104, 81, 93, 29, 88, 97, 14, 96, + /* 660 */ 103, 74, 75, 76, 109, 109, 96, 41, 42, 43, + /* 670 */ 44, 109, 85, 86, 48, 109, 89, 109, 91, 109, + /* 680 */ 109, 94, 109, 109, 97, 74, 75, 76, 109, 109, + /* 690 */ 109, 109, 109, 74, 75, 109, 85, 86, 74, 75, + /* 700 */ 89, 109, 91, 109, 85, 94, 109, 109, 97, 85, + /* 710 */ 91, 74, 75, 76, 109, 91, 97, 109, 109, 109, + /* 720 */ 109, 97, 85, 86, 109, 109, 89, 109, 91, 109, + /* 730 */ 74, 75, 76, 109, 97, 109, 109, 74, 75, 76, + /* 740 */ 109, 85, 86, 106, 109, 89, 109, 91, 85, 86, + /* 750 */ 94, 109, 89, 97, 91, 109, 109, 94, 109, 109, + /* 760 */ 97, 74, 75, 76, 109, 109, 109, 109, 109, 109, + /* 770 */ 109, 109, 85, 86, 109, 109, 89, 109, 91, 109, + /* 780 */ 74, 75, 76, 109, 97, 109, 109, 74, 75, 76, + /* 790 */ 109, 85, 86, 109, 109, 89, 109, 91, 85, 86, + /* 800 */ 109, 109, 89, 97, 91, 74, 75, 76, 109, 109, + /* 810 */ 97, 109, 74, 75, 76, 109, 85, 86, 109, 109, + /* 820 */ 89, 109, 91, 85, 86, 109, 109, 89, 97, 91, + /* 830 */ 109, 109, 74, 75, 76, 97, 109, 109, 109, 109, + /* 840 */ 109, 109, 109, 85, 86, 109, 109, 89, 109, 91, + /* 850 */ 109, 74, 75, 76, 109, 97, 109, 109, 109, 109, + /* 860 */ 109, 109, 85, 86, 109, 109, 89, 109, 91, 109, + /* 870 */ 74, 75, 76, 109, 97, 109, 109, 74, 75, 76, + /* 880 */ 109, 85, 86, 109, 109, 89, 109, 91, 85, 86, + /* 890 */ 109, 109, 89, 97, 91, 74, 75, 76, 109, 109, + /* 900 */ 97, 109, 74, 75, 76, 109, 85, 86, 109, 109, + /* 910 */ 89, 109, 91, 85, 86, 109, 109, 89, 97, 91, + /* 920 */ 109, 109, 74, 75, 76, 97, 109, 109, 109, 109, + /* 930 */ 109, 109, 109, 85, 86, 109, 109, 89, 109, 91, + /* 940 */ 109, 74, 75, 76, 109, 97, 109, 109, 109, 109, + /* 950 */ 109, 109, 85, 86, 109, 109, 89, 109, 91, 109, + /* 960 */ 109, 109, 109, 109, 97, ); const YY_SHIFT_USE_DFLT = -30; const YY_SHIFT_MAX = 179; static public $yy_shift_ofst = array( /* 0 */ 88, 132, 25, 25, 25, 25, 25, 25, 25, 25, - /* 10 */ 25, 25, 25, 335, 233, 233, 335, 233, 233, 69, - /* 20 */ 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, - /* 30 */ 242, 233, 90, 300, 291, 391, 605, 605, 605, 57, - /* 40 */ -15, 16, 607, 188, 230, 61, 112, -4, 6, 492, - /* 50 */ 492, 88, 98, 134, 9, 286, 301, 531, 521, 510, - /* 60 */ 529, 515, 531, 531, 521, 510, 531, 531, 521, 386, - /* 70 */ 647, 386, 386, 70, 171, 182, 241, 241, 241, 241, - /* 80 */ 241, 241, 241, 241, 241, -29, 457, 19, 207, 181, - /* 90 */ 167, 279, 314, 167, 56, 133, 111, 187, 405, 253, - /* 100 */ 427, 406, 253, 369, 460, 465, 489, 160, 253, 253, - /* 110 */ 363, 478, 424, 334, 89, 253, 58, 237, 331, 165, - /* 120 */ 386, 660, 386, 677, 347, 130, 347, 347, 130, 347, - /* 130 */ 386, 347, 455, 130, 130, 347, 386, -30, -30, -30, - /* 140 */ -30, -30, 150, 340, 121, 395, 121, 393, 121, 197, - /* 150 */ 323, 634, 574, 609, 534, 589, 576, 525, 540, 485, - /* 160 */ 477, 500, 504, 610, 606, 622, 631, 620, 629, 626, - /* 170 */ 612, 598, 587, 482, 64, 328, 337, 299, 23, 213, + /* 10 */ 25, 25, 25, 325, 223, 223, 325, 223, 223, 69, + /* 20 */ 223, 223, 223, 223, 223, 223, 223, 223, 223, 223, + /* 30 */ 232, 223, 90, 290, 281, 383, 626, 626, 626, 57, + /* 40 */ -15, 16, 142, 457, 203, 168, 174, 464, 335, 272, + /* 50 */ 272, 88, 98, 134, 9, 313, 344, 477, 488, 501, + /* 60 */ 312, 477, 477, 488, 477, 282, 312, 477, 312, 507, + /* 70 */ 621, 507, 507, 70, 156, 172, 231, 231, 231, 231, + /* 80 */ 231, 231, 231, 231, 231, -29, 140, 19, 266, 177, + /* 90 */ 208, 252, 159, 208, 56, 276, 323, 401, 395, 403, + /* 100 */ 387, 396, 403, 377, 424, 444, 493, 345, 403, 403, + /* 110 */ 6, 435, 371, 245, 30, 403, 111, 214, 219, 85, + /* 120 */ 632, 366, 507, 644, 310, 507, 366, 366, 366, 310, + /* 130 */ 507, 366, 507, 366, 67, 310, 310, -30, -30, -30, + /* 140 */ -30, -30, 388, 334, 341, 459, 341, 341, 315, 63, + /* 150 */ 291, 614, 585, 586, 545, 580, 569, 538, 555, 543, + /* 160 */ 517, 559, 554, 598, 590, 618, 606, 609, 612, 583, + /* 170 */ 603, 564, 565, 509, 42, 227, 292, 244, 91, 158, ); - const YY_REDUCE_USE_DFLT = -73; + const YY_REDUCE_USE_DFLT = -65; const YY_REDUCE_MAX = 141; static public $yy_reduce_ofst = array( - /* 0 */ 194, 107, 434, 410, 403, 473, 491, 527, 509, 377, - /* 10 */ 452, 295, 370, 313, 608, 565, 583, 352, 590, 680, - /* 20 */ 773, 755, 812, 737, 711, 698, 661, 635, 648, 724, - /* 30 */ 799, 786, 848, 80, 830, 861, 234, -13, 326, -64, - /* 40 */ 278, 278, 317, 168, 319, -72, 263, 249, 226, 192, - /* 50 */ 287, 353, 438, 189, 374, 488, 374, 382, 444, 474, - /* 60 */ 459, 490, 480, 102, 501, 382, 468, 445, 514, 508, - /* 70 */ 544, 497, 490, 503, 503, 503, 503, 503, 503, 503, - /* 80 */ 503, 503, 503, 503, 503, 593, 554, 573, 573, 348, - /* 90 */ 573, 563, 563, 573, 563, 578, 578, 578, 563, 572, - /* 100 */ 579, 258, 572, 579, 579, 579, 579, 582, 572, 572, - /* 110 */ 579, 258, 258, 258, 604, 572, 258, 258, 258, 595, - /* 120 */ 68, 611, 68, 599, 258, 602, 258, 258, 348, 258, - /* 130 */ 68, 258, 339, 273, 162, 258, 68, 566, 551, 407, - /* 140 */ 530, 537, + /* 0 */ -43, 103, 446, 427, 398, 484, 502, 540, 521, 367, + /* 10 */ 465, 285, 360, 303, 663, 611, 637, 587, 656, 731, + /* 20 */ 821, 803, 867, 796, 758, 738, 713, 687, 706, 777, + /* 30 */ 848, 828, 560, 332, 407, 380, 619, -13, 624, 143, + /* 40 */ 242, 242, 185, 283, 340, 275, -18, 53, 243, -64, + /* 50 */ 181, 361, 65, 161, 412, 412, 460, 411, 426, 470, + /* 60 */ 441, 453, 447, 411, 472, 368, 415, 416, 492, 479, + /* 70 */ 476, 466, 368, 506, 506, 506, 506, 506, 506, 506, + /* 80 */ 506, 506, 506, 506, 506, 557, 531, 549, 549, 356, + /* 90 */ 549, 533, 533, 549, 533, 544, 544, 544, 533, 550, + /* 100 */ 546, 250, 550, 546, 546, 546, 546, 548, 550, 550, + /* 110 */ 546, 250, 250, 250, 570, 550, 250, 250, 250, 561, + /* 120 */ 572, 250, 338, 563, 568, 338, 250, 250, 250, 356, + /* 130 */ 338, 250, 338, 250, 95, 215, 48, 534, 532, 448, + /* 140 */ 524, 523, ); static public $yyExpectedTokens = array( /* 0 */ array(1, 2, 3, 5, 6, 7, 9, 61, 63, 64, 65, 67, ), @@ -549,31 +551,31 @@ static public $yy_action = array( /* 39 */ array(3, 18, 29, 48, ), /* 40 */ array(15, 24, 26, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 60, ), /* 41 */ array(24, 26, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 60, ), - /* 42 */ array(3, 10, 18, 29, 48, ), - /* 43 */ array(14, 22, 24, 26, 27, ), + /* 42 */ array(14, 22, 24, 26, 27, ), + /* 43 */ array(3, 10, 18, 29, 48, ), /* 44 */ array(1, 18, 29, 48, ), - /* 45 */ array(16, 19, 27, ), - /* 46 */ array(18, 29, 48, ), - /* 47 */ array(18, 48, ), - /* 48 */ array(21, 26, ), + /* 45 */ array(18, 29, 48, ), + /* 46 */ array(16, 19, 27, ), + /* 47 */ array(21, 26, ), + /* 48 */ array(18, 48, ), /* 49 */ array(24, 26, ), /* 50 */ array(24, 26, ), /* 51 */ array(1, 2, 3, 5, 6, 7, 9, 61, 63, 64, 65, 67, ), /* 52 */ array(1, 3, 18, 41, 47, ), /* 53 */ array(3, 13, 25, 29, ), /* 54 */ array(3, 25, 29, 49, ), - /* 55 */ array(1, 3, 42, ), - /* 56 */ array(3, 29, 49, ), + /* 55 */ array(3, 29, 49, ), + /* 56 */ array(1, 3, 42, ), /* 57 */ array(3, 29, ), - /* 58 */ array(1, 3, ), - /* 59 */ array(3, 29, ), - /* 60 */ array(26, 27, ), - /* 61 */ array(25, 27, ), + /* 58 */ array(3, 29, ), + /* 59 */ array(26, 27, ), + /* 60 */ array(1, 3, ), + /* 61 */ array(3, 29, ), /* 62 */ array(3, 29, ), /* 63 */ array(3, 29, ), - /* 64 */ array(1, 3, ), - /* 65 */ array(3, 29, ), - /* 66 */ array(3, 29, ), + /* 64 */ array(3, 29, ), + /* 65 */ array(25, 27, ), + /* 66 */ array(1, 3, ), /* 67 */ array(3, 29, ), /* 68 */ array(1, 3, ), /* 69 */ array(27, ), @@ -627,37 +629,37 @@ static public $yy_action = array( /* 117 */ array(20, 24, ), /* 118 */ array(24, 28, ), /* 119 */ array(18, 29, ), - /* 120 */ array(27, ), - /* 121 */ array(18, ), + /* 120 */ array(18, ), + /* 121 */ array(24, ), /* 122 */ array(27, ), /* 123 */ array(14, ), - /* 124 */ array(24, ), - /* 125 */ array(26, ), + /* 124 */ array(26, ), + /* 125 */ array(27, ), /* 126 */ array(24, ), /* 127 */ array(24, ), - /* 128 */ array(26, ), - /* 129 */ array(24, ), + /* 128 */ array(24, ), + /* 129 */ array(26, ), /* 130 */ array(27, ), /* 131 */ array(24, ), - /* 132 */ array(21, ), - /* 133 */ array(26, ), - /* 134 */ array(26, ), - /* 135 */ array(24, ), - /* 136 */ array(27, ), + /* 132 */ array(27, ), + /* 133 */ array(24, ), + /* 134 */ array(21, ), + /* 135 */ array(26, ), + /* 136 */ array(26, ), /* 137 */ array(), /* 138 */ array(), /* 139 */ array(), /* 140 */ array(), /* 141 */ array(), - /* 142 */ array(14, 17, 22, ), - /* 143 */ array(14, 22, 28, ), + /* 142 */ array(14, 22, 28, ), + /* 143 */ array(14, 17, 22, ), /* 144 */ array(14, 22, ), /* 145 */ array(17, 20, ), /* 146 */ array(14, 22, ), - /* 147 */ array(29, 49, ), - /* 148 */ array(14, 22, ), - /* 149 */ array(20, 23, ), - /* 150 */ array(1, 29, ), + /* 147 */ array(14, 22, ), + /* 148 */ array(29, 49, ), + /* 149 */ array(1, 29, ), + /* 150 */ array(20, 23, ), /* 151 */ array(18, ), /* 152 */ array(4, ), /* 153 */ array(19, ), @@ -666,27 +668,27 @@ static public $yy_action = array( /* 156 */ array(29, ), /* 157 */ array(47, ), /* 158 */ array(29, ), - /* 159 */ array(25, ), - /* 160 */ array(29, ), + /* 159 */ array(29, ), + /* 160 */ array(25, ), /* 161 */ array(21, ), /* 162 */ array(29, ), /* 163 */ array(4, ), - /* 164 */ array(15, ), - /* 165 */ array(15, ), - /* 166 */ array(4, ), - /* 167 */ array(18, ), - /* 168 */ array(14, ), - /* 169 */ array(18, ), - /* 170 */ array(29, ), - /* 171 */ array(29, ), - /* 172 */ array(45, ), - /* 173 */ array(15, ), - /* 174 */ array(45, ), + /* 164 */ array(18, ), + /* 165 */ array(4, ), + /* 166 */ array(15, ), + /* 167 */ array(15, ), + /* 168 */ array(15, ), + /* 169 */ array(45, ), + /* 170 */ array(14, ), + /* 171 */ array(45, ), + /* 172 */ array(48, ), + /* 173 */ array(29, ), + /* 174 */ array(29, ), /* 175 */ array(29, ), - /* 176 */ array(48, ), - /* 177 */ array(7, ), - /* 178 */ array(48, ), - /* 179 */ array(29, ), + /* 176 */ array(29, ), + /* 177 */ array(48, ), + /* 178 */ array(18, ), + /* 179 */ array(7, ), /* 180 */ array(), /* 181 */ array(), /* 182 */ array(), @@ -801,30 +803,30 @@ static public $yy_action = array( /* 10 */ 442, 442, 442, 424, 383, 383, 442, 383, 383, 442, /* 20 */ 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, /* 30 */ 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, - /* 40 */ 393, 393, 442, 318, 442, 350, 442, 442, 318, 318, - /* 50 */ 318, 288, 442, 442, 359, 442, 359, 442, 442, 442, - /* 60 */ 318, 352, 442, 442, 442, 442, 442, 442, 442, 346, + /* 40 */ 393, 393, 318, 442, 442, 442, 350, 318, 442, 318, + /* 50 */ 318, 288, 442, 442, 359, 359, 442, 442, 442, 318, + /* 60 */ 442, 442, 442, 442, 442, 352, 442, 442, 442, 346, /* 70 */ 318, 345, 352, 420, 420, 420, 404, 408, 397, 398, /* 80 */ 407, 403, 399, 400, 391, 442, 442, 442, 442, 323, /* 90 */ 388, 442, 442, 324, 442, 442, 442, 442, 442, 374, /* 100 */ 442, 442, 375, 442, 442, 442, 442, 442, 376, 377, - /* 110 */ 442, 442, 442, 442, 359, 357, 442, 382, 425, 442, - /* 120 */ 347, 442, 351, 359, 319, 420, 322, 312, 420, 427, - /* 130 */ 348, 394, 326, 420, 420, 426, 371, 387, 387, 359, - /* 140 */ 359, 359, 442, 323, 323, 442, 389, 442, 442, 442, + /* 110 */ 442, 442, 442, 442, 359, 357, 442, 382, 427, 442, + /* 120 */ 442, 319, 351, 359, 420, 347, 322, 312, 426, 420, + /* 130 */ 348, 394, 371, 425, 326, 420, 420, 359, 387, 359, + /* 140 */ 387, 359, 323, 442, 389, 442, 442, 323, 442, 442, /* 150 */ 442, 442, 320, 335, 442, 442, 442, 442, 442, 442, - /* 160 */ 442, 369, 442, 442, 442, 442, 442, 442, 349, 442, - /* 170 */ 442, 442, 327, 442, 328, 442, 442, 442, 442, 442, - /* 180 */ 298, 336, 292, 337, 338, 307, 339, 289, 390, 418, + /* 160 */ 442, 369, 442, 442, 442, 442, 442, 442, 442, 327, + /* 170 */ 349, 328, 442, 442, 442, 442, 442, 442, 442, 442, + /* 180 */ 307, 338, 336, 298, 337, 292, 339, 289, 390, 418, /* 190 */ 417, 441, 308, 401, 405, 438, 440, 402, 353, 362, - /* 200 */ 354, 290, 358, 361, 355, 356, 311, 321, 360, 310, - /* 210 */ 314, 313, 291, 315, 373, 334, 329, 327, 328, 392, + /* 200 */ 290, 354, 358, 361, 355, 356, 311, 321, 360, 314, + /* 210 */ 310, 313, 291, 315, 373, 334, 329, 327, 328, 392, /* 220 */ 406, 343, 368, 369, 297, 363, 340, 366, 380, 295, /* 230 */ 381, 299, 300, 378, 386, 296, 331, 364, 365, 379, /* 240 */ 332, 333, 422, 423, 421, 294, 370, 433, 385, 384, /* 250 */ 429, 344, 435, 437, 301, 367, 409, 410, 411, 330, /* 260 */ 341, 309, 342, 412, 413, 396, 372, 395, 416, 414, - /* 270 */ 415, 428, 293, 317, 434, 419, 325, 302, 316, 432, + /* 270 */ 415, 428, 293, 317, 434, 419, 316, 325, 302, 432, /* 280 */ 303, 430, 306, 305, 431, 436, 304, 439, ); /* The next thing included is series of defines which control @@ -1014,8 +1016,8 @@ static public $yy_action = array( 'ISIN', 'LITERALSTART', 'LITERALEND', 'LDELIMTAG', 'RDELIMTAG', 'PHPSTART', 'PHPEND', 'XML', 'error', 'start', 'template', 'template_element', - 'smartytag', 'text', 'variable', 'expr', - 'attributes', 'varindexed', 'modifier', 'modparameters', + 'smartytag', 'text', 'variable', 'varindexed', + 'expr', 'attributes', 'modifier', 'modparameters', 'ifexprs', 'statement', 'statements', 'varvar', 'foraction', 'value', 'array', 'attribute', 'optspace', 'exprs', 'math', 'function', @@ -1045,8 +1047,8 @@ static public $yy_action = array( /* 11 */ "template_element ::= XML", /* 12 */ "template_element ::= SHORTTAGEND", /* 13 */ "template_element ::= OTHER", - /* 14 */ "smartytag ::= LDEL expr attributes RDEL", - /* 15 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", + /* 14 */ "smartytag ::= LDEL varindexed EQUAL expr attributes RDEL", + /* 15 */ "smartytag ::= LDEL expr attributes RDEL", /* 16 */ "smartytag ::= LDEL ID attributes RDEL", /* 17 */ "smartytag ::= LDEL ID PTR ID attributes RDEL", /* 18 */ "smartytag ::= LDEL ID modifier modparameters attributes RDEL", @@ -1168,9 +1170,9 @@ static public $yy_action = array( /* 134 */ "arrayelements ::= arrayelement", /* 135 */ "arrayelements ::= arrayelements COMMA arrayelement", /* 136 */ "arrayelements ::=", - /* 137 */ "arrayelement ::= expr", - /* 138 */ "arrayelement ::= expr APTR expr", - /* 139 */ "arrayelement ::= ID APTR expr", + /* 137 */ "arrayelement ::= expr APTR expr", + /* 138 */ "arrayelement ::= ID APTR expr", + /* 139 */ "arrayelement ::= expr", /* 140 */ "doublequoted ::= doublequoted doublequotedcontent", /* 141 */ "doublequoted ::= doublequotedcontent", /* 142 */ "doublequotedcontent ::= BACKTICK ID BACKTICK", @@ -1563,9 +1565,9 @@ static public $yy_action = array( array( 'lhs' => 71, 'rhs' => 1 ), array( 'lhs' => 71, 'rhs' => 1 ), array( 'lhs' => 71, 'rhs' => 1 ), - array( 'lhs' => 72, 'rhs' => 4 ), array( 'lhs' => 72, 'rhs' => 6 ), array( 'lhs' => 72, 'rhs' => 4 ), + array( 'lhs' => 72, 'rhs' => 4 ), array( 'lhs' => 72, 'rhs' => 6 ), array( 'lhs' => 72, 'rhs' => 6 ), array( 'lhs' => 72, 'rhs' => 4 ), @@ -1577,17 +1579,17 @@ static public $yy_action = array( array( 'lhs' => 84, 'rhs' => 1 ), array( 'lhs' => 72, 'rhs' => 8 ), array( 'lhs' => 72, 'rhs' => 8 ), - array( 'lhs' => 76, 'rhs' => 2 ), - array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 0 ), + array( 'lhs' => 77, 'rhs' => 2 ), + array( 'lhs' => 77, 'rhs' => 1 ), + array( 'lhs' => 77, 'rhs' => 0 ), array( 'lhs' => 87, 'rhs' => 6 ), array( 'lhs' => 82, 'rhs' => 1 ), array( 'lhs' => 82, 'rhs' => 3 ), array( 'lhs' => 81, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 1 ), - array( 'lhs' => 75, 'rhs' => 4 ), - array( 'lhs' => 75, 'rhs' => 3 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 1 ), + array( 'lhs' => 76, 'rhs' => 4 ), + array( 'lhs' => 76, 'rhs' => 3 ), array( 'lhs' => 89, 'rhs' => 1 ), array( 'lhs' => 89, 'rhs' => 1 ), array( 'lhs' => 89, 'rhs' => 2 ), @@ -1618,7 +1620,7 @@ static public $yy_action = array( array( 'lhs' => 74, 'rhs' => 1 ), array( 'lhs' => 74, 'rhs' => 3 ), array( 'lhs' => 74, 'rhs' => 3 ), - array( 'lhs' => 77, 'rhs' => 3 ), + array( 'lhs' => 75, 'rhs' => 3 ), array( 'lhs' => 96, 'rhs' => 2 ), array( 'lhs' => 96, 'rhs' => 0 ), array( 'lhs' => 98, 'rhs' => 2 ), @@ -1686,9 +1688,9 @@ static public $yy_action = array( array( 'lhs' => 105, 'rhs' => 1 ), array( 'lhs' => 105, 'rhs' => 3 ), array( 'lhs' => 105, 'rhs' => 0 ), + array( 'lhs' => 106, 'rhs' => 3 ), + array( 'lhs' => 106, 'rhs' => 3 ), array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), array( 'lhs' => 92, 'rhs' => 2 ), array( 'lhs' => 92, 'rhs' => 1 ), array( 'lhs' => 107, 'rhs' => 3 ), @@ -1763,7 +1765,7 @@ static public $yy_action = array( 29 => 25, 94 => 25, 131 => 25, - 137 => 25, + 139 => 25, 26 => 26, 27 => 27, 28 => 28, @@ -1857,8 +1859,8 @@ static public $yy_action = array( 133 => 133, 135 => 135, 136 => 136, + 137 => 137, 138 => 138, - 139 => 139, 142 => 142, 143 => 143, 144 => 144, @@ -1875,31 +1877,31 @@ static public $yy_action = array( */ #line 73 "internal.templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1883 "internal.templateparser.php" +#line 1885 "internal.templateparser.php" #line 79 "internal.templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1886 "internal.templateparser.php" +#line 1888 "internal.templateparser.php" #line 81 "internal.templateparser.y" function yy_r2(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 1889 "internal.templateparser.php" +#line 1891 "internal.templateparser.php" #line 87 "internal.templateparser.y" function yy_r3(){if ($this->compiler->has_code) { $tmp =''; foreach ($this->prefix_code as $code) {$tmp.=$code;} $this->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor, $this->compiler,$this->nocache,true); } $this->nocache=false; } -#line 1895 "internal.templateparser.php" +#line 1897 "internal.templateparser.php" #line 92 "internal.templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 1898 "internal.templateparser.php" +#line 1900 "internal.templateparser.php" #line 95 "internal.templateparser.y" function yy_r5(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + -1]->minor, $this->compiler,false,false); } -#line 1901 "internal.templateparser.php" +#line 1903 "internal.templateparser.php" #line 97 "internal.templateparser.y" function yy_r6(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false,false); } -#line 1904 "internal.templateparser.php" +#line 1906 "internal.templateparser.php" #line 99 "internal.templateparser.y" function yy_r7(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false,false); } -#line 1907 "internal.templateparser.php" +#line 1909 "internal.templateparser.php" #line 101 "internal.templateparser.y" function yy_r8(){if (!$this->template->security) { $this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler, false,true); @@ -1910,7 +1912,7 @@ static public $yy_action = array( }elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) { $this->_retvalue = ''; } } -#line 1918 "internal.templateparser.php" +#line 1920 "internal.templateparser.php" #line 111 "internal.templateparser.y" function yy_r9(){if (!$this->template->security) { $this->_retvalue = $this->cacher->processNocacheCode('yystack[$this->yyidx + -1]->minor.' ?>', $this->compiler, false,true); @@ -1921,7 +1923,7 @@ static public $yy_action = array( }elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) { $this->_retvalue = ''; } } -#line 1929 "internal.templateparser.php" +#line 1931 "internal.templateparser.php" #line 121 "internal.templateparser.y" function yy_r10(){if (!$this->template->security) { $this->_retvalue = $this->cacher->processNocacheCode($this->compiler->compileTag('print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)), $this->compiler, false,true); @@ -1932,28 +1934,28 @@ static public $yy_action = array( }elseif ($this->smarty->security_policy->php_handling == SMARTY_PHP_REMOVE) { $this->_retvalue = ''; } } -#line 1940 "internal.templateparser.php" +#line 1942 "internal.templateparser.php" #line 131 "internal.templateparser.y" function yy_r11(){$this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + 0]->minor."';?>\n", $this->compiler, true, true); } -#line 1943 "internal.templateparser.php" +#line 1945 "internal.templateparser.php" #line 132 "internal.templateparser.y" function yy_r12(){$this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true, true); } -#line 1946 "internal.templateparser.php" +#line 1948 "internal.templateparser.php" #line 134 "internal.templateparser.y" function yy_r13(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false,false); } -#line 1949 "internal.templateparser.php" +#line 1951 "internal.templateparser.php" #line 141 "internal.templateparser.y" - function yy_r14(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 1952 "internal.templateparser.php" + function yy_r14(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } +#line 1954 "internal.templateparser.php" #line 143 "internal.templateparser.y" - function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor)); } -#line 1955 "internal.templateparser.php" + function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } +#line 1957 "internal.templateparser.php" #line 145 "internal.templateparser.y" function yy_r16(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 1958 "internal.templateparser.php" +#line 1960 "internal.templateparser.php" #line 147 "internal.templateparser.y" function yy_r17(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 1961 "internal.templateparser.php" +#line 1963 "internal.templateparser.php" #line 149 "internal.templateparser.y" function yy_r18(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { @@ -1968,76 +1970,76 @@ static public $yy_action = array( } } } -#line 1976 "internal.templateparser.php" +#line 1978 "internal.templateparser.php" #line 163 "internal.templateparser.y" function yy_r19(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 1979 "internal.templateparser.php" +#line 1981 "internal.templateparser.php" #line 165 "internal.templateparser.y" function yy_r20(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 1982 "internal.templateparser.php" +#line 1984 "internal.templateparser.php" #line 167 "internal.templateparser.y" function yy_r21(){if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 1988 "internal.templateparser.php" +#line 1990 "internal.templateparser.php" #line 171 "internal.templateparser.y" function yy_r22(){ if (!in_array($this->yystack[$this->yyidx + -3]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 1994 "internal.templateparser.php" +#line 1996 "internal.templateparser.php" #line 176 "internal.templateparser.y" function yy_r23(){ if ($this->yystack[$this->yyidx + -9]->minor != 'for') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -9]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -9]->minor,array('start'=>$this->yystack[$this->yyidx + -7]->minor,'ifexp'=>$this->yystack[$this->yyidx + -5]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2001 "internal.templateparser.php" +#line 2003 "internal.templateparser.php" #line 181 "internal.templateparser.y" function yy_r24(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2004 "internal.templateparser.php" +#line 2006 "internal.templateparser.php" #line 182 "internal.templateparser.y" function yy_r25(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2007 "internal.templateparser.php" +#line 2009 "internal.templateparser.php" #line 184 "internal.templateparser.y" function yy_r26(){ if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2014 "internal.templateparser.php" +#line 2016 "internal.templateparser.php" #line 189 "internal.templateparser.y" function yy_r27(){ if ($this->yystack[$this->yyidx + -6]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -6]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array('from'=>$this->yystack[$this->yyidx + -4]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2021 "internal.templateparser.php" +#line 2023 "internal.templateparser.php" #line 199 "internal.templateparser.y" function yy_r28(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2024 "internal.templateparser.php" +#line 2026 "internal.templateparser.php" #line 203 "internal.templateparser.y" function yy_r30(){ $this->_retvalue = array(); } -#line 2027 "internal.templateparser.php" +#line 2029 "internal.templateparser.php" #line 206 "internal.templateparser.y" function yy_r31(){ $this->_retvalue = array($this->yystack[$this->yyidx + -4]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2030 "internal.templateparser.php" +#line 2032 "internal.templateparser.php" #line 211 "internal.templateparser.y" function yy_r32(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2033 "internal.templateparser.php" +#line 2035 "internal.templateparser.php" #line 212 "internal.templateparser.y" function yy_r33(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2036 "internal.templateparser.php" +#line 2038 "internal.templateparser.php" #line 214 "internal.templateparser.y" function yy_r34(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2039 "internal.templateparser.php" +#line 2041 "internal.templateparser.php" #line 220 "internal.templateparser.y" function yy_r35(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2042 "internal.templateparser.php" +#line 2044 "internal.templateparser.php" #line 224 "internal.templateparser.y" function yy_r37(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2045 "internal.templateparser.php" +#line 2047 "internal.templateparser.php" #line 225 "internal.templateparser.y" function yy_r38(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { @@ -2052,124 +2054,124 @@ static public $yy_action = array( } } } -#line 2060 "internal.templateparser.php" +#line 2062 "internal.templateparser.php" #line 243 "internal.templateparser.y" function yy_r41(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2063 "internal.templateparser.php" +#line 2065 "internal.templateparser.php" #line 245 "internal.templateparser.y" function yy_r42(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2066 "internal.templateparser.php" +#line 2068 "internal.templateparser.php" #line 247 "internal.templateparser.y" function yy_r43(){ $this->_retvalue = '('. $this->yystack[$this->yyidx + -2]->minor . ').(' . $this->yystack[$this->yyidx + 0]->minor. ')'; } -#line 2069 "internal.templateparser.php" -#line 264 "internal.templateparser.y" +#line 2071 "internal.templateparser.php" +#line 262 "internal.templateparser.y" function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2072 "internal.templateparser.php" -#line 273 "internal.templateparser.y" +#line 2074 "internal.templateparser.php" +#line 271 "internal.templateparser.y" function yy_r52(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2075 "internal.templateparser.php" -#line 276 "internal.templateparser.y" +#line 2077 "internal.templateparser.php" +#line 274 "internal.templateparser.y" function yy_r53(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; } -#line 2078 "internal.templateparser.php" -#line 277 "internal.templateparser.y" +#line 2080 "internal.templateparser.php" +#line 275 "internal.templateparser.y" function yy_r54(){ $this->_retvalue = "''"; } -#line 2081 "internal.templateparser.php" -#line 279 "internal.templateparser.y" +#line 2083 "internal.templateparser.php" +#line 277 "internal.templateparser.y" function yy_r55(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; } -#line 2084 "internal.templateparser.php" -#line 283 "internal.templateparser.y" +#line 2086 "internal.templateparser.php" +#line 281 "internal.templateparser.y" function yy_r57(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2087 "internal.templateparser.php" -#line 284 "internal.templateparser.y" +#line 2089 "internal.templateparser.php" +#line 282 "internal.templateparser.y" function yy_r58(){ $this->prefix_number++; $this->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 2090 "internal.templateparser.php" -#line 286 "internal.templateparser.y" +#line 2092 "internal.templateparser.php" +#line 284 "internal.templateparser.y" function yy_r59(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2093 "internal.templateparser.php" -#line 287 "internal.templateparser.y" +#line 2095 "internal.templateparser.php" +#line 285 "internal.templateparser.y" function yy_r60(){ $this->prefix_number++; $this->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 2096 "internal.templateparser.php" -#line 289 "internal.templateparser.y" +#line 2098 "internal.templateparser.php" +#line 287 "internal.templateparser.y" function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2099 "internal.templateparser.php" -#line 291 "internal.templateparser.y" +#line 2101 "internal.templateparser.php" +#line 289 "internal.templateparser.y" function yy_r62(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2102 "internal.templateparser.php" -#line 293 "internal.templateparser.y" +#line 2104 "internal.templateparser.php" +#line 291 "internal.templateparser.y" function yy_r63(){ $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 2105 "internal.templateparser.php" -#line 300 "internal.templateparser.y" +#line 2107 "internal.templateparser.php" +#line 298 "internal.templateparser.y" function yy_r64(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$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->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"))->nocache;} } -#line 2109 "internal.templateparser.php" -#line 303 "internal.templateparser.y" +#line 2111 "internal.templateparser.php" +#line 301 "internal.templateparser.y" function yy_r65(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; } -#line 2112 "internal.templateparser.php" -#line 307 "internal.templateparser.y" +#line 2114 "internal.templateparser.php" +#line 305 "internal.templateparser.y" function yy_r67(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2115 "internal.templateparser.php" -#line 308 "internal.templateparser.y" +#line 2117 "internal.templateparser.php" +#line 306 "internal.templateparser.y" function yy_r68(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2118 "internal.templateparser.php" -#line 311 "internal.templateparser.y" +#line 2120 "internal.templateparser.php" +#line 309 "internal.templateparser.y" function yy_r69(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2121 "internal.templateparser.php" -#line 319 "internal.templateparser.y" +#line 2123 "internal.templateparser.php" +#line 317 "internal.templateparser.y" function yy_r71(){return; } -#line 2124 "internal.templateparser.php" -#line 323 "internal.templateparser.y" +#line 2126 "internal.templateparser.php" +#line 321 "internal.templateparser.y" function yy_r72(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2127 "internal.templateparser.php" -#line 324 "internal.templateparser.y" +#line 2129 "internal.templateparser.php" +#line 322 "internal.templateparser.y" function yy_r73(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2130 "internal.templateparser.php" -#line 325 "internal.templateparser.y" +#line 2132 "internal.templateparser.php" +#line 323 "internal.templateparser.y" function yy_r74(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2133 "internal.templateparser.php" -#line 326 "internal.templateparser.y" +#line 2135 "internal.templateparser.php" +#line 324 "internal.templateparser.y" function yy_r75(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2136 "internal.templateparser.php" -#line 328 "internal.templateparser.y" +#line 2138 "internal.templateparser.php" +#line 326 "internal.templateparser.y" function yy_r76(){ $this->_retvalue = '['.$this->compiler->compileTag('internal_smarty_var','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2139 "internal.templateparser.php" -#line 332 "internal.templateparser.y" +#line 2141 "internal.templateparser.php" +#line 330 "internal.templateparser.y" function yy_r78(){$this->_retvalue = ''; } -#line 2142 "internal.templateparser.php" -#line 340 "internal.templateparser.y" +#line 2144 "internal.templateparser.php" +#line 338 "internal.templateparser.y" function yy_r80(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2145 "internal.templateparser.php" -#line 342 "internal.templateparser.y" +#line 2147 "internal.templateparser.php" +#line 340 "internal.templateparser.y" function yy_r81(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2148 "internal.templateparser.php" -#line 344 "internal.templateparser.y" +#line 2150 "internal.templateparser.php" +#line 342 "internal.templateparser.y" function yy_r82(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2151 "internal.templateparser.php" -#line 349 "internal.templateparser.y" +#line 2153 "internal.templateparser.php" +#line 347 "internal.templateparser.y" function yy_r83(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('internal_smarty_var',$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->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"))->nocache;} } -#line 2155 "internal.templateparser.php" -#line 353 "internal.templateparser.y" +#line 2157 "internal.templateparser.php" +#line 351 "internal.templateparser.y" function yy_r84(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2158 "internal.templateparser.php" -#line 355 "internal.templateparser.y" +#line 2160 "internal.templateparser.php" +#line 353 "internal.templateparser.y" function yy_r85(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2161 "internal.templateparser.php" -#line 357 "internal.templateparser.y" +#line 2163 "internal.templateparser.php" +#line 355 "internal.templateparser.y" function yy_r86(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2164 "internal.templateparser.php" -#line 358 "internal.templateparser.y" +#line 2166 "internal.templateparser.php" +#line 356 "internal.templateparser.y" function yy_r87(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2167 "internal.templateparser.php" -#line 359 "internal.templateparser.y" +#line 2169 "internal.templateparser.php" +#line 357 "internal.templateparser.y" function yy_r88(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2170 "internal.templateparser.php" -#line 360 "internal.templateparser.y" +#line 2172 "internal.templateparser.php" +#line 358 "internal.templateparser.y" function yy_r89(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2173 "internal.templateparser.php" -#line 362 "internal.templateparser.y" +#line 2175 "internal.templateparser.php" +#line 360 "internal.templateparser.y" function yy_r90(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2176 "internal.templateparser.php" -#line 368 "internal.templateparser.y" +#line 2178 "internal.templateparser.php" +#line 366 "internal.templateparser.y" function yy_r91(){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 .")"; @@ -2177,133 +2179,133 @@ static public $yy_action = array( $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2185 "internal.templateparser.php" -#line 379 "internal.templateparser.y" +#line 2187 "internal.templateparser.php" +#line 377 "internal.templateparser.y" function yy_r92(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2188 "internal.templateparser.php" -#line 383 "internal.templateparser.y" +#line 2190 "internal.templateparser.php" +#line 381 "internal.templateparser.y" function yy_r93(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2191 "internal.templateparser.php" -#line 387 "internal.templateparser.y" +#line 2193 "internal.templateparser.php" +#line 385 "internal.templateparser.y" function yy_r95(){ return; } -#line 2194 "internal.templateparser.php" -#line 392 "internal.templateparser.y" +#line 2196 "internal.templateparser.php" +#line 390 "internal.templateparser.y" function yy_r96(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,true); } -#line 2197 "internal.templateparser.php" -#line 393 "internal.templateparser.y" +#line 2199 "internal.templateparser.php" +#line 391 "internal.templateparser.y" function yy_r97(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,false); } -#line 2200 "internal.templateparser.php" -#line 400 "internal.templateparser.y" +#line 2202 "internal.templateparser.php" +#line 398 "internal.templateparser.y" function yy_r98(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2203 "internal.templateparser.php" -#line 404 "internal.templateparser.y" +#line 2205 "internal.templateparser.php" +#line 402 "internal.templateparser.y" function yy_r100(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2206 "internal.templateparser.php" -#line 405 "internal.templateparser.y" +#line 2208 "internal.templateparser.php" +#line 403 "internal.templateparser.y" function yy_r101(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2209 "internal.templateparser.php" -#line 412 "internal.templateparser.y" +#line 2211 "internal.templateparser.php" +#line 410 "internal.templateparser.y" function yy_r103(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2212 "internal.templateparser.php" -#line 417 "internal.templateparser.y" +#line 2214 "internal.templateparser.php" +#line 415 "internal.templateparser.y" function yy_r105(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2215 "internal.templateparser.php" -#line 418 "internal.templateparser.y" +#line 2217 "internal.templateparser.php" +#line 416 "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 2218 "internal.templateparser.php" -#line 419 "internal.templateparser.y" +#line 2220 "internal.templateparser.php" +#line 417 "internal.templateparser.y" function yy_r107(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2221 "internal.templateparser.php" -#line 420 "internal.templateparser.y" +#line 2223 "internal.templateparser.php" +#line 418 "internal.templateparser.y" function yy_r108(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2224 "internal.templateparser.php" -#line 421 "internal.templateparser.y" +#line 2226 "internal.templateparser.php" +#line 419 "internal.templateparser.y" function yy_r109(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2227 "internal.templateparser.php" -#line 423 "internal.templateparser.y" +#line 2229 "internal.templateparser.php" +#line 421 "internal.templateparser.y" function yy_r111(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2230 "internal.templateparser.php" -#line 424 "internal.templateparser.y" +#line 2232 "internal.templateparser.php" +#line 422 "internal.templateparser.y" function yy_r112(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2233 "internal.templateparser.php" -#line 425 "internal.templateparser.y" +#line 2235 "internal.templateparser.php" +#line 423 "internal.templateparser.y" function yy_r113(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2236 "internal.templateparser.php" -#line 426 "internal.templateparser.y" +#line 2238 "internal.templateparser.php" +#line 424 "internal.templateparser.y" function yy_r114(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2239 "internal.templateparser.php" -#line 427 "internal.templateparser.y" +#line 2241 "internal.templateparser.php" +#line 425 "internal.templateparser.y" function yy_r115(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2242 "internal.templateparser.php" -#line 428 "internal.templateparser.y" +#line 2244 "internal.templateparser.php" +#line 426 "internal.templateparser.y" function yy_r116(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2245 "internal.templateparser.php" -#line 434 "internal.templateparser.y" +#line 2247 "internal.templateparser.php" +#line 432 "internal.templateparser.y" function yy_r121(){$this->_retvalue = '=='; } -#line 2248 "internal.templateparser.php" -#line 435 "internal.templateparser.y" +#line 2250 "internal.templateparser.php" +#line 433 "internal.templateparser.y" function yy_r122(){$this->_retvalue = '!='; } -#line 2251 "internal.templateparser.php" -#line 436 "internal.templateparser.y" +#line 2253 "internal.templateparser.php" +#line 434 "internal.templateparser.y" function yy_r123(){$this->_retvalue = '>'; } -#line 2254 "internal.templateparser.php" -#line 437 "internal.templateparser.y" +#line 2256 "internal.templateparser.php" +#line 435 "internal.templateparser.y" function yy_r124(){$this->_retvalue = '<'; } -#line 2257 "internal.templateparser.php" -#line 438 "internal.templateparser.y" +#line 2259 "internal.templateparser.php" +#line 436 "internal.templateparser.y" function yy_r125(){$this->_retvalue = '>='; } -#line 2260 "internal.templateparser.php" -#line 439 "internal.templateparser.y" +#line 2262 "internal.templateparser.php" +#line 437 "internal.templateparser.y" function yy_r126(){$this->_retvalue = '<='; } -#line 2263 "internal.templateparser.php" -#line 440 "internal.templateparser.y" +#line 2265 "internal.templateparser.php" +#line 438 "internal.templateparser.y" function yy_r127(){$this->_retvalue = '==='; } -#line 2266 "internal.templateparser.php" -#line 441 "internal.templateparser.y" +#line 2268 "internal.templateparser.php" +#line 439 "internal.templateparser.y" function yy_r128(){$this->_retvalue = '!=='; } -#line 2269 "internal.templateparser.php" -#line 443 "internal.templateparser.y" +#line 2271 "internal.templateparser.php" +#line 441 "internal.templateparser.y" function yy_r129(){$this->_retvalue = '&&'; } -#line 2272 "internal.templateparser.php" -#line 444 "internal.templateparser.y" +#line 2274 "internal.templateparser.php" +#line 442 "internal.templateparser.y" function yy_r130(){$this->_retvalue = '||'; } -#line 2275 "internal.templateparser.php" -#line 456 "internal.templateparser.y" +#line 2277 "internal.templateparser.php" +#line 454 "internal.templateparser.y" function yy_r133(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2278 "internal.templateparser.php" -#line 458 "internal.templateparser.y" +#line 2280 "internal.templateparser.php" +#line 456 "internal.templateparser.y" function yy_r135(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2281 "internal.templateparser.php" -#line 459 "internal.templateparser.y" +#line 2283 "internal.templateparser.php" +#line 457 "internal.templateparser.y" function yy_r136(){ return; } -#line 2284 "internal.templateparser.php" -#line 461 "internal.templateparser.y" - function yy_r138(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2287 "internal.templateparser.php" -#line 462 "internal.templateparser.y" - function yy_r139(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2290 "internal.templateparser.php" -#line 469 "internal.templateparser.y" +#line 2286 "internal.templateparser.php" +#line 458 "internal.templateparser.y" + function yy_r137(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2289 "internal.templateparser.php" +#line 459 "internal.templateparser.y" + function yy_r138(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2292 "internal.templateparser.php" +#line 467 "internal.templateparser.y" function yy_r142(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } -#line 2293 "internal.templateparser.php" -#line 470 "internal.templateparser.y" +#line 2295 "internal.templateparser.php" +#line 468 "internal.templateparser.y" function yy_r143(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; } -#line 2296 "internal.templateparser.php" -#line 471 "internal.templateparser.y" +#line 2298 "internal.templateparser.php" +#line 469 "internal.templateparser.y" function yy_r144(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->nocache=$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; } -#line 2299 "internal.templateparser.php" -#line 472 "internal.templateparser.y" +#line 2301 "internal.templateparser.php" +#line 470 "internal.templateparser.y" function yy_r145(){$this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; } -#line 2302 "internal.templateparser.php" -#line 473 "internal.templateparser.y" +#line 2304 "internal.templateparser.php" +#line 471 "internal.templateparser.y" function yy_r146(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2305 "internal.templateparser.php" -#line 474 "internal.templateparser.y" +#line 2307 "internal.templateparser.php" +#line 472 "internal.templateparser.y" function yy_r147(){$this->_retvalue = '{'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2308 "internal.templateparser.php" -#line 475 "internal.templateparser.y" +#line 2310 "internal.templateparser.php" +#line 473 "internal.templateparser.y" function yy_r148(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2311 "internal.templateparser.php" +#line 2313 "internal.templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2420,7 +2422,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2429 "internal.templateparser.php" +#line 2431 "internal.templateparser.php" } /** @@ -2444,7 +2446,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2454 "internal.templateparser.php" +#line 2456 "internal.templateparser.php" } /**