diff --git a/change_log.txt b/change_log.txt index 599fd29b..c19d6cbf 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,4 +1,8 @@ 11/18/2009 +- allow integer as attribute name in plugin calls + +------- beta 4 +11/18/2009 - observe umask settings when setting file permissions - avoide unneeded cache file creation for subtemplates which did occur in some situations - make $smarty->_current_file available during compilation for Smarty2 BC diff --git a/libs/sysplugins/smarty_internal_compile_block_plugin.php b/libs/sysplugins/smarty_internal_compile_block_plugin.php index 5003fa5c..0d668239 100644 --- a/libs/sysplugins/smarty_internal_compile_block_plugin.php +++ b/libs/sysplugins/smarty_internal_compile_block_plugin.php @@ -32,7 +32,11 @@ class Smarty_Internal_Compile_Block_Plugin extends Smarty_Internal_CompileBase { // convert attributes into parameter array string $_paramsArray = array(); foreach ($_attr as $_key => $_value) { - $_paramsArray[] = "'$_key'=>$_value"; + if (is_int($_key)) { + $_paramsArray[] = "$_key=>$_value"; + } else { + $_paramsArray[] = "'$_key'=>$_value"; + } } $_params = 'array(' . implode(",", $_paramsArray) . ')'; @@ -41,15 +45,15 @@ class Smarty_Internal_Compile_Block_Plugin extends Smarty_Internal_CompileBase { if (isset($this->compiler->smarty->registered_plugins[$tag]) && !$this->compiler->smarty->registered_plugins[$tag][2]) { $this->compiler->nocache = true; } - // maybe nocache because of nocache variables - $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; - // compile code + // maybe nocache because of nocache variables + $this->compiler->nocache = $this->compiler->nocache | $this->compiler->tag_nocache; + // compile code $output = 'smarty->plugin_handler->' . $tag . '(array(' . $_params . ', null, $_smarty_tpl->smarty, &$_block_repeat, $_smarty_tpl),\'block\');while ($_block_repeat) { ob_start();?>'; } else { - // must endblock be nocache? - if ($this->compiler->nocache) { - $this->compiler->tag_nocache = true; - } + // must endblock be nocache? + if ($this->compiler->nocache) { + $this->compiler->tag_nocache = true; + } // closing tag of block plugin, restore nocache list($_params, $this->compiler->nocache) = $this->_close_tag(substr($tag, 0, -5)); // This tag does create output diff --git a/libs/sysplugins/smarty_internal_compile_function_plugin.php b/libs/sysplugins/smarty_internal_compile_function_plugin.php index 5dde395d..8d9ffab4 100644 --- a/libs/sysplugins/smarty_internal_compile_function_plugin.php +++ b/libs/sysplugins/smarty_internal_compile_function_plugin.php @@ -29,15 +29,19 @@ class Smarty_Internal_Compile_Function_Plugin extends Smarty_Internal_CompileBas $this->required_attributes = array(); $this->optional_attributes = array('_any'); // check and get attributes - $_attr = $this->_get_attributes($args); + $_attr = $this->_get_attributes($args); // not cachable? if (isset($this->compiler->smarty->registered_plugins[$tag]) && !$this->compiler->smarty->registered_plugins[$tag][2]) { - $this->compiler->tag_nocache = true; - } + $this->compiler->tag_nocache = true; + } // convert attributes into parameter array string $_paramsArray = array(); foreach ($_attr as $_key => $_value) { - $_paramsArray[] = "'$_key'=>$_value"; + if (is_int($_key)) { + $_paramsArray[] = "$_key=>$_value"; + } else { + $_paramsArray[] = "'$_key'=>$_value"; + } } $_params = 'array(' . implode(",", $_paramsArray) . ')'; // compile code diff --git a/libs/sysplugins/smarty_internal_compile_object_block_function.php b/libs/sysplugins/smarty_internal_compile_object_block_function.php index 3d5523d2..75a1a7d0 100644 --- a/libs/sysplugins/smarty_internal_compile_object_block_function.php +++ b/libs/sysplugins/smarty_internal_compile_object_block_function.php @@ -23,33 +23,34 @@ class Smarty_Internal_Compile_Object_Block_Function extends Smarty_Internal_Comp */ public function compile($args, $compiler, $tag, $methode) { - $this->compiler = $compiler; + $this->compiler = $compiler; if (strlen($tag) < 5 || substr_compare($tag, 'close', -5, 5) != 0) { // opening tag of block plugin $this->required_attributes = array(); $this->optional_attributes = array('_any'); - // check and get attributes - $_attr = $this->_get_attributes($args); - + $_attr = $this->_get_attributes($args); // convert attributes into parameter array string $_paramsArray = array(); foreach ($_attr as $_key => $_value) { - $_paramsArray[] = "'$_key'=>$_value"; + if (is_int($_key)) { + $_paramsArray[] = "$_key=>$_value"; + } else { + $_paramsArray[] = "'$_key'=>$_value"; + } } - $_params = 'array(' . implode(",", $_paramsArray) . ')'; - - $this->_open_tag($tag.'->'.$methode, $_params); + $_params = 'array(' . implode(",", $_paramsArray) . ')'; + $this->_open_tag($tag . '->' . $methode, $_params); // compile code - $output = 'smarty->registered_objects[\''.$tag.'\'][0]->' . $methode . '(' . $_params . ', null, $_smarty_tpl->smarty, $_block_repeat, $_smarty_tpl);while ($_block_repeat) { ob_start();?>'; + $output = 'smarty->registered_objects[\'' . $tag . '\'][0]->' . $methode . '(' . $_params . ', null, $_smarty_tpl->smarty, $_block_repeat, $_smarty_tpl);while ($_block_repeat) { ob_start();?>'; } else { // closing tag of block plugin - $_params = $this->_close_tag(substr($tag,0,-5).'->'.$methode); + $_params = $this->_close_tag(substr($tag, 0, -5) . '->' . $methode); // This tag does create output - $this->compiler->has_output = true; + $this->compiler->has_output = true; // compile code - $output = 'smarty->registered_objects[\''.substr($tag,0,-5).'\'][0]->' . $methode . '(' . $_params . ', $_block_content, $_smarty_tpl->smarty, $_block_repeat, $_smarty_tpl); }?>'; + $output = 'smarty->registered_objects[\'' . substr($tag, 0, -5) . '\'][0]->' . $methode . '(' . $_params . ', $_block_content, $_smarty_tpl->smarty, $_block_repeat, $_smarty_tpl); }?>'; } return $output; } diff --git a/libs/sysplugins/smarty_internal_compile_object_function.php b/libs/sysplugins/smarty_internal_compile_object_function.php index c3b2d8eb..e0962ca3 100644 --- a/libs/sysplugins/smarty_internal_compile_object_function.php +++ b/libs/sysplugins/smarty_internal_compile_object_function.php @@ -34,7 +34,11 @@ class Smarty_Internal_Compile_Object_Function extends Smarty_Internal_CompileBas // convert attributes into parameter array string $_paramsArray = array(); foreach ($_attr as $_key => $_value) { - $_paramsArray[] = "'$_key'=>$_value"; + if (is_int($_key)) { + $_paramsArray[] = "$_key=>$_value"; + } else { + $_paramsArray[] = "'$_key'=>$_value"; + } } $_params = 'array(' . implode(",", $_paramsArray) . ')'; // compile code diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index edb1188f..ca98df54 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -170,16 +170,16 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_AS = 16; const TP_APTR = 17; const TP_LDELSLASH = 18; - const TP_COMMA = 19; - const TP_COLON = 20; - const TP_UNIMATH = 21; - const TP_OPENP = 22; - const TP_CLOSEP = 23; - const TP_QMARK = 24; - const TP_MATH = 25; - const TP_ANDSYM = 26; - const TP_TYPECAST = 27; - const TP_INTEGER = 28; + const TP_INTEGER = 19; + const TP_COMMA = 20; + const TP_COLON = 21; + const TP_UNIMATH = 22; + const TP_OPENP = 23; + const TP_CLOSEP = 24; + const TP_QMARK = 25; + const TP_MATH = 26; + const TP_ANDSYM = 27; + const TP_TYPECAST = 28; const TP_DOT = 29; const TP_BOOLEAN = 30; const TP_NULL = 31; @@ -218,9 +218,9 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_LXOR = 64; const TP_BACKTICK = 65; const TP_DOLLARID = 66; - const YY_NO_ACTION = 492; - const YY_ACCEPT_ACTION = 491; - const YY_ERROR_ACTION = 490; + const YY_NO_ACTION = 493; + const YY_ACCEPT_ACTION = 492; + const YY_ERROR_ACTION = 491; /* Next are that tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement @@ -272,445 +272,435 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph ** shifting non-terminals after a reduce. ** self::$yy_default Default action for each state. */ - const YY_SZ_ACTTAB = 1484; + const YY_SZ_ACTTAB = 1436; static public $yy_action = array( - /* 0 */ 22, 187, 220, 168, 38, 80, 18, 72, 361, 21, - /* 10 */ 35, 206, 361, 295, 43, 8, 35, 206, 26, 295, - /* 20 */ 55, 171, 15, 277, 278, 241, 48, 50, 22, 50, - /* 30 */ 13, 159, 214, 9, 129, 80, 253, 205, 192, 206, - /* 40 */ 274, 82, 43, 32, 491, 64, 210, 227, 55, 171, - /* 50 */ 269, 277, 278, 241, 48, 275, 153, 50, 13, 232, - /* 60 */ 22, 267, 220, 158, 56, 222, 18, 77, 124, 35, - /* 70 */ 213, 206, 295, 148, 43, 8, 266, 206, 270, 196, - /* 80 */ 55, 171, 251, 277, 278, 241, 48, 165, 22, 50, - /* 90 */ 13, 168, 231, 9, 291, 72, 253, 205, 44, 206, - /* 100 */ 221, 82, 43, 32, 35, 45, 26, 295, 55, 171, - /* 110 */ 193, 277, 278, 241, 48, 275, 22, 50, 13, 168, - /* 120 */ 65, 267, 73, 72, 56, 222, 35, 206, 33, 295, - /* 130 */ 43, 7, 192, 53, 293, 219, 55, 171, 152, 277, - /* 140 */ 278, 241, 48, 29, 22, 50, 13, 47, 15, 271, - /* 150 */ 23, 72, 157, 272, 273, 206, 82, 177, 43, 7, - /* 160 */ 129, 282, 317, 34, 55, 171, 216, 277, 278, 241, - /* 170 */ 48, 116, 211, 50, 13, 140, 267, 230, 165, 24, - /* 180 */ 6, 10, 236, 302, 5, 2, 301, 287, 3, 4, - /* 190 */ 271, 229, 227, 42, 272, 273, 35, 217, 165, 295, - /* 200 */ 286, 285, 281, 243, 6, 10, 236, 302, 5, 2, - /* 210 */ 301, 287, 3, 4, 100, 39, 253, 205, 259, 59, - /* 220 */ 81, 82, 80, 298, 286, 285, 281, 44, 189, 257, - /* 230 */ 252, 242, 21, 105, 165, 275, 183, 300, 260, 261, - /* 240 */ 35, 267, 237, 295, 50, 15, 82, 6, 10, 236, - /* 250 */ 302, 5, 2, 301, 287, 3, 4, 129, 27, 35, - /* 260 */ 228, 121, 295, 31, 152, 80, 267, 286, 285, 281, - /* 270 */ 130, 6, 10, 236, 302, 5, 2, 301, 287, 3, - /* 280 */ 4, 194, 165, 22, 271, 82, 167, 50, 272, 273, - /* 290 */ 80, 286, 285, 281, 206, 238, 190, 43, 32, 44, - /* 300 */ 201, 44, 255, 55, 171, 267, 277, 278, 241, 48, - /* 310 */ 294, 22, 50, 13, 163, 57, 145, 247, 80, 253, - /* 320 */ 205, 44, 206, 357, 82, 43, 32, 44, 165, 109, - /* 330 */ 255, 55, 171, 256, 277, 278, 241, 48, 275, 22, - /* 340 */ 50, 13, 160, 251, 267, 15, 72, 46, 35, 235, - /* 350 */ 206, 295, 184, 43, 32, 37, 248, 129, 172, 55, - /* 360 */ 171, 224, 277, 278, 241, 48, 138, 200, 50, 13, - /* 370 */ 268, 182, 147, 14, 82, 6, 10, 236, 302, 5, - /* 380 */ 2, 301, 287, 3, 4, 233, 198, 288, 289, 191, - /* 390 */ 299, 22, 44, 165, 267, 286, 285, 281, 253, 205, - /* 400 */ 38, 63, 206, 82, 70, 316, 86, 173, 164, 44, - /* 410 */ 19, 22, 162, 180, 167, 105, 107, 275, 80, 257, - /* 420 */ 54, 246, 206, 267, 123, 44, 32, 165, 314, 280, - /* 430 */ 251, 55, 171, 115, 277, 278, 241, 48, 251, 22, - /* 440 */ 50, 13, 166, 248, 284, 240, 80, 181, 1, 44, - /* 450 */ 206, 248, 253, 205, 32, 133, 317, 82, 15, 55, - /* 460 */ 171, 15, 277, 278, 241, 48, 252, 242, 50, 105, - /* 470 */ 129, 275, 165, 129, 40, 165, 165, 267, 36, 204, - /* 480 */ 283, 45, 113, 82, 44, 294, 307, 303, 304, 305, - /* 490 */ 306, 312, 313, 319, 320, 22, 207, 125, 167, 46, - /* 500 */ 165, 152, 80, 267, 290, 359, 206, 37, 44, 359, - /* 510 */ 32, 251, 165, 279, 40, 55, 171, 44, 277, 278, - /* 520 */ 241, 48, 245, 80, 50, 209, 307, 303, 304, 305, - /* 530 */ 306, 312, 313, 319, 320, 22, 60, 117, 161, 131, - /* 540 */ 128, 155, 80, 154, 152, 50, 206, 174, 254, 151, - /* 550 */ 32, 251, 44, 251, 251, 55, 171, 248, 277, 278, - /* 560 */ 241, 48, 253, 205, 50, 63, 212, 82, 120, 28, - /* 570 */ 93, 239, 156, 44, 318, 44, 188, 242, 44, 105, - /* 580 */ 165, 275, 251, 16, 20, 45, 98, 267, 253, 205, - /* 590 */ 226, 63, 314, 82, 146, 197, 95, 104, 75, 270, - /* 600 */ 165, 257, 188, 242, 142, 105, 132, 275, 296, 270, - /* 610 */ 195, 118, 257, 267, 253, 205, 144, 63, 314, 82, - /* 620 */ 251, 270, 90, 35, 23, 251, 179, 66, 188, 242, - /* 630 */ 106, 105, 165, 275, 40, 221, 265, 199, 49, 267, - /* 640 */ 102, 20, 257, 67, 314, 257, 307, 303, 304, 305, - /* 650 */ 306, 312, 313, 319, 320, 257, 25, 71, 257, 253, - /* 660 */ 205, 255, 61, 225, 82, 263, 276, 87, 292, 30, - /* 670 */ 218, 79, 234, 188, 242, 176, 105, 258, 275, 74, - /* 680 */ 78, 297, 244, 264, 267, 253, 205, 175, 63, 314, - /* 690 */ 82, 143, 83, 92, 42, 51, 262, 250, 203, 188, - /* 700 */ 242, 223, 105, 294, 275, 202, 253, 205, 315, 62, - /* 710 */ 267, 82, 41, 119, 89, 314, 44, 266, 17, 208, - /* 720 */ 188, 242, 322, 105, 276, 275, 12, 11, 276, 276, - /* 730 */ 276, 267, 253, 205, 276, 63, 314, 82, 276, 276, - /* 740 */ 94, 276, 84, 276, 276, 276, 188, 242, 276, 105, - /* 750 */ 276, 275, 276, 276, 276, 276, 276, 267, 253, 205, - /* 760 */ 276, 63, 314, 82, 276, 276, 91, 276, 276, 276, - /* 770 */ 276, 276, 188, 242, 276, 105, 276, 275, 276, 253, - /* 780 */ 205, 276, 112, 267, 82, 276, 253, 68, 314, 52, - /* 790 */ 85, 76, 276, 252, 242, 276, 105, 276, 275, 276, - /* 800 */ 252, 242, 276, 105, 267, 275, 276, 276, 276, 276, - /* 810 */ 276, 267, 169, 310, 276, 276, 276, 276, 253, 205, - /* 820 */ 276, 63, 276, 82, 276, 276, 88, 276, 276, 276, - /* 830 */ 276, 276, 188, 242, 276, 105, 276, 275, 276, 276, - /* 840 */ 276, 276, 276, 267, 253, 205, 276, 63, 314, 82, - /* 850 */ 276, 276, 96, 276, 276, 276, 276, 276, 188, 242, - /* 860 */ 276, 105, 276, 275, 276, 253, 205, 276, 63, 267, - /* 870 */ 82, 276, 276, 97, 314, 276, 276, 276, 276, 188, - /* 880 */ 242, 276, 105, 276, 275, 276, 276, 276, 276, 276, - /* 890 */ 267, 276, 276, 253, 69, 314, 58, 85, 76, 276, - /* 900 */ 276, 276, 276, 276, 276, 276, 276, 252, 242, 276, - /* 910 */ 105, 276, 275, 276, 276, 276, 253, 205, 267, 135, - /* 920 */ 215, 82, 276, 276, 276, 276, 276, 276, 276, 276, - /* 930 */ 170, 242, 276, 105, 276, 275, 276, 253, 205, 276, - /* 940 */ 114, 267, 82, 276, 276, 276, 276, 276, 276, 276, - /* 950 */ 276, 252, 242, 276, 105, 276, 275, 276, 276, 249, - /* 960 */ 276, 276, 267, 276, 276, 253, 205, 276, 114, 276, - /* 970 */ 82, 276, 276, 276, 276, 276, 276, 276, 276, 252, - /* 980 */ 242, 276, 105, 276, 275, 276, 276, 178, 253, 205, - /* 990 */ 267, 112, 276, 82, 276, 276, 276, 276, 276, 276, - /* 1000 */ 276, 276, 252, 242, 276, 105, 276, 275, 276, 253, - /* 1010 */ 205, 276, 114, 267, 82, 276, 276, 276, 276, 276, - /* 1020 */ 276, 276, 309, 252, 242, 276, 105, 276, 275, 276, - /* 1030 */ 276, 185, 276, 276, 267, 276, 276, 253, 205, 276, - /* 1040 */ 114, 276, 82, 276, 276, 276, 276, 276, 276, 276, - /* 1050 */ 276, 252, 242, 276, 105, 276, 275, 276, 276, 186, - /* 1060 */ 253, 205, 267, 108, 276, 82, 276, 276, 276, 276, - /* 1070 */ 276, 276, 276, 276, 252, 242, 276, 105, 276, 275, - /* 1080 */ 276, 253, 205, 276, 126, 267, 82, 276, 276, 276, - /* 1090 */ 276, 276, 276, 276, 276, 252, 242, 276, 105, 276, - /* 1100 */ 275, 276, 276, 276, 276, 276, 267, 276, 276, 253, - /* 1110 */ 205, 276, 150, 276, 82, 276, 276, 276, 276, 276, - /* 1120 */ 276, 276, 276, 252, 242, 276, 105, 276, 275, 276, - /* 1130 */ 276, 276, 253, 205, 267, 139, 276, 82, 276, 276, - /* 1140 */ 276, 276, 276, 276, 276, 276, 252, 242, 276, 105, - /* 1150 */ 276, 275, 276, 253, 205, 276, 110, 267, 82, 276, - /* 1160 */ 276, 276, 276, 276, 276, 276, 276, 252, 242, 276, - /* 1170 */ 105, 276, 275, 276, 276, 276, 276, 276, 267, 276, - /* 1180 */ 276, 253, 205, 276, 137, 276, 82, 276, 276, 276, - /* 1190 */ 276, 276, 276, 276, 276, 252, 242, 276, 105, 276, - /* 1200 */ 275, 276, 276, 276, 253, 205, 267, 149, 276, 82, - /* 1210 */ 276, 276, 276, 276, 276, 276, 276, 276, 252, 242, - /* 1220 */ 276, 105, 276, 275, 276, 253, 205, 276, 111, 267, - /* 1230 */ 82, 276, 276, 276, 276, 276, 276, 276, 276, 252, - /* 1240 */ 242, 276, 105, 276, 275, 276, 276, 276, 276, 276, - /* 1250 */ 267, 276, 276, 253, 205, 276, 136, 276, 82, 276, - /* 1260 */ 276, 276, 276, 276, 276, 276, 276, 252, 242, 276, - /* 1270 */ 105, 276, 275, 276, 276, 276, 253, 205, 267, 122, - /* 1280 */ 276, 82, 276, 276, 276, 276, 276, 276, 276, 276, - /* 1290 */ 252, 242, 276, 105, 276, 275, 276, 253, 205, 276, - /* 1300 */ 141, 267, 82, 276, 276, 276, 276, 276, 276, 276, - /* 1310 */ 276, 252, 242, 276, 105, 276, 275, 276, 276, 276, - /* 1320 */ 276, 276, 267, 276, 276, 253, 205, 276, 127, 276, - /* 1330 */ 82, 276, 276, 276, 276, 276, 276, 276, 276, 252, - /* 1340 */ 242, 276, 105, 276, 275, 276, 276, 276, 253, 205, - /* 1350 */ 267, 134, 276, 82, 276, 276, 276, 276, 276, 276, - /* 1360 */ 276, 276, 252, 242, 276, 105, 276, 275, 276, 253, - /* 1370 */ 205, 276, 276, 267, 82, 276, 276, 276, 276, 276, - /* 1380 */ 276, 276, 276, 252, 242, 276, 101, 276, 275, 276, - /* 1390 */ 276, 276, 276, 276, 267, 276, 276, 253, 205, 276, - /* 1400 */ 276, 276, 82, 276, 276, 276, 276, 276, 276, 276, - /* 1410 */ 276, 252, 242, 276, 99, 276, 275, 276, 276, 276, - /* 1420 */ 253, 205, 267, 276, 276, 82, 276, 276, 276, 276, - /* 1430 */ 276, 276, 276, 276, 252, 242, 276, 103, 276, 275, - /* 1440 */ 276, 253, 205, 276, 276, 267, 82, 276, 276, 276, - /* 1450 */ 276, 276, 276, 276, 276, 308, 311, 276, 253, 205, - /* 1460 */ 275, 276, 276, 82, 276, 276, 267, 276, 276, 276, - /* 1470 */ 276, 276, 321, 276, 276, 276, 276, 275, 276, 276, - /* 1480 */ 276, 276, 276, 267, + /* 0 */ 19, 111, 26, 164, 23, 319, 35, 73, 17, 117, + /* 10 */ 322, 194, 198, 77, 126, 42, 3, 492, 63, 224, + /* 20 */ 222, 59, 293, 323, 302, 318, 47, 166, 234, 51, + /* 30 */ 13, 19, 306, 4, 158, 51, 300, 299, 77, 314, + /* 40 */ 195, 236, 194, 198, 81, 156, 42, 36, 250, 81, + /* 50 */ 106, 45, 59, 290, 323, 302, 318, 47, 303, 37, + /* 60 */ 51, 13, 256, 19, 259, 240, 157, 312, 214, 259, + /* 70 */ 78, 161, 18, 203, 194, 160, 190, 128, 42, 3, + /* 80 */ 77, 237, 173, 194, 59, 34, 323, 302, 318, 47, + /* 90 */ 155, 234, 51, 13, 19, 306, 4, 164, 228, 300, + /* 100 */ 299, 73, 51, 166, 236, 194, 198, 306, 176, 42, + /* 110 */ 36, 300, 299, 26, 305, 59, 319, 323, 302, 318, + /* 120 */ 47, 166, 321, 51, 13, 19, 161, 269, 164, 255, + /* 130 */ 56, 212, 73, 314, 195, 239, 194, 198, 81, 161, + /* 140 */ 42, 2, 26, 225, 43, 319, 59, 247, 323, 302, + /* 150 */ 318, 47, 303, 289, 51, 13, 114, 26, 259, 28, + /* 160 */ 319, 8, 7, 280, 282, 12, 10, 304, 281, 11, + /* 170 */ 5, 8, 7, 280, 282, 12, 10, 304, 281, 11, + /* 180 */ 5, 278, 283, 284, 145, 192, 362, 15, 31, 112, + /* 190 */ 362, 278, 283, 284, 229, 208, 241, 242, 205, 252, + /* 200 */ 19, 21, 136, 234, 26, 207, 28, 319, 199, 172, + /* 210 */ 161, 194, 118, 8, 7, 280, 282, 12, 10, 304, + /* 220 */ 281, 11, 5, 8, 7, 280, 282, 12, 10, 304, + /* 230 */ 281, 11, 5, 278, 283, 284, 20, 166, 44, 19, + /* 240 */ 44, 21, 163, 278, 283, 284, 77, 187, 298, 243, + /* 250 */ 194, 198, 118, 161, 42, 36, 249, 123, 45, 277, + /* 260 */ 59, 24, 323, 302, 318, 47, 37, 21, 51, 13, + /* 270 */ 19, 234, 286, 165, 166, 183, 1, 77, 118, 310, + /* 280 */ 161, 194, 198, 161, 236, 42, 36, 21, 125, 39, + /* 290 */ 296, 59, 153, 323, 302, 318, 47, 154, 118, 51, + /* 300 */ 13, 19, 234, 166, 46, 226, 258, 358, 73, 81, + /* 310 */ 166, 161, 194, 198, 255, 142, 42, 2, 233, 124, + /* 320 */ 260, 166, 59, 153, 323, 302, 318, 47, 166, 259, + /* 330 */ 51, 13, 19, 234, 309, 159, 103, 139, 161, 73, + /* 340 */ 314, 195, 260, 194, 198, 81, 121, 42, 36, 26, + /* 350 */ 151, 295, 319, 59, 221, 323, 302, 318, 47, 303, + /* 360 */ 234, 51, 13, 19, 147, 259, 165, 21, 120, 109, + /* 370 */ 77, 138, 152, 150, 194, 198, 311, 192, 118, 36, + /* 380 */ 161, 197, 234, 234, 59, 297, 323, 302, 318, 47, + /* 390 */ 191, 214, 51, 13, 81, 18, 8, 7, 280, 282, + /* 400 */ 12, 10, 304, 281, 11, 5, 194, 27, 181, 274, + /* 410 */ 196, 219, 81, 161, 259, 33, 278, 283, 284, 314, + /* 420 */ 195, 218, 62, 22, 81, 255, 316, 88, 174, 170, + /* 430 */ 161, 64, 259, 169, 184, 360, 102, 166, 303, 360, + /* 440 */ 29, 254, 314, 195, 259, 81, 217, 81, 16, 279, + /* 450 */ 223, 222, 19, 56, 212, 165, 268, 273, 235, 77, + /* 460 */ 77, 303, 161, 194, 198, 259, 270, 259, 36, 26, + /* 470 */ 294, 129, 319, 59, 320, 323, 302, 318, 47, 186, + /* 480 */ 178, 51, 51, 19, 200, 262, 167, 266, 277, 161, + /* 490 */ 77, 161, 285, 49, 194, 198, 161, 26, 193, 36, + /* 500 */ 202, 153, 108, 166, 59, 40, 323, 302, 318, 47, + /* 510 */ 53, 26, 51, 166, 319, 40, 234, 267, 261, 263, + /* 520 */ 264, 265, 275, 276, 287, 288, 25, 267, 261, 263, + /* 530 */ 264, 265, 275, 276, 287, 288, 314, 195, 227, 62, + /* 540 */ 30, 81, 141, 219, 86, 38, 161, 260, 211, 67, + /* 550 */ 189, 307, 77, 102, 137, 303, 65, 201, 166, 260, + /* 560 */ 140, 259, 314, 195, 295, 62, 279, 81, 232, 230, + /* 570 */ 96, 295, 52, 166, 51, 131, 189, 307, 220, 102, + /* 580 */ 105, 303, 66, 100, 166, 314, 195, 259, 62, 234, + /* 590 */ 81, 99, 279, 92, 171, 295, 101, 295, 295, 189, + /* 600 */ 307, 317, 102, 166, 303, 40, 295, 177, 320, 153, + /* 610 */ 259, 295, 9, 57, 15, 279, 251, 267, 261, 263, + /* 620 */ 264, 265, 275, 276, 287, 288, 199, 314, 195, 31, + /* 630 */ 62, 209, 81, 26, 301, 91, 319, 175, 179, 315, + /* 640 */ 58, 189, 307, 182, 102, 291, 303, 75, 314, 195, + /* 650 */ 248, 62, 259, 81, 79, 213, 93, 279, 210, 22, + /* 660 */ 206, 257, 189, 307, 43, 102, 76, 303, 215, 80, + /* 670 */ 216, 314, 195, 259, 62, 292, 81, 246, 279, 90, + /* 680 */ 72, 32, 185, 245, 70, 189, 307, 6, 102, 244, + /* 690 */ 303, 233, 314, 195, 127, 62, 259, 81, 41, 161, + /* 700 */ 89, 279, 44, 84, 74, 320, 189, 307, 236, 102, + /* 710 */ 39, 303, 253, 314, 195, 308, 62, 259, 81, 50, + /* 720 */ 14, 95, 279, 276, 276, 276, 276, 189, 307, 276, + /* 730 */ 102, 276, 303, 276, 314, 195, 276, 62, 259, 81, + /* 740 */ 276, 276, 94, 279, 276, 276, 276, 276, 189, 307, + /* 750 */ 276, 102, 276, 303, 276, 276, 276, 314, 195, 259, + /* 760 */ 61, 276, 81, 276, 279, 87, 276, 276, 276, 276, + /* 770 */ 276, 189, 307, 276, 102, 276, 303, 276, 314, 195, + /* 780 */ 276, 115, 259, 81, 276, 276, 276, 279, 276, 276, + /* 790 */ 276, 276, 238, 307, 276, 102, 276, 303, 276, 314, + /* 800 */ 195, 276, 60, 259, 81, 276, 276, 85, 276, 276, + /* 810 */ 276, 168, 272, 189, 307, 276, 102, 276, 303, 276, + /* 820 */ 314, 195, 276, 115, 259, 81, 276, 276, 276, 279, + /* 830 */ 276, 276, 276, 276, 238, 307, 276, 102, 276, 303, + /* 840 */ 276, 276, 276, 314, 195, 259, 110, 276, 81, 276, + /* 850 */ 276, 276, 276, 276, 271, 276, 276, 238, 307, 276, + /* 860 */ 102, 276, 303, 276, 276, 204, 276, 276, 259, 314, + /* 870 */ 68, 276, 48, 83, 71, 276, 314, 195, 276, 110, + /* 880 */ 276, 81, 276, 238, 307, 276, 102, 276, 303, 276, + /* 890 */ 238, 307, 276, 102, 259, 303, 276, 276, 188, 276, + /* 900 */ 276, 259, 276, 276, 276, 276, 314, 69, 276, 54, + /* 910 */ 83, 71, 276, 276, 276, 276, 276, 276, 276, 276, + /* 920 */ 238, 307, 276, 102, 276, 303, 276, 276, 276, 314, + /* 930 */ 195, 259, 55, 82, 81, 276, 276, 276, 276, 276, + /* 940 */ 276, 276, 276, 238, 307, 276, 102, 276, 303, 276, + /* 950 */ 276, 276, 276, 276, 259, 314, 195, 276, 110, 276, + /* 960 */ 81, 276, 276, 276, 276, 276, 276, 276, 276, 238, + /* 970 */ 307, 276, 102, 276, 303, 276, 276, 180, 314, 195, + /* 980 */ 259, 149, 231, 81, 276, 276, 276, 276, 276, 276, + /* 990 */ 276, 276, 162, 307, 276, 102, 276, 303, 276, 276, + /* 1000 */ 276, 314, 195, 259, 110, 276, 81, 276, 276, 276, + /* 1010 */ 276, 276, 276, 276, 276, 238, 307, 276, 102, 276, + /* 1020 */ 303, 276, 276, 313, 276, 276, 259, 314, 195, 276, + /* 1030 */ 135, 276, 81, 276, 276, 276, 276, 276, 276, 276, + /* 1040 */ 276, 238, 307, 276, 102, 276, 303, 276, 276, 276, + /* 1050 */ 314, 195, 259, 107, 276, 81, 276, 276, 276, 276, + /* 1060 */ 276, 276, 276, 276, 238, 307, 276, 102, 276, 303, + /* 1070 */ 276, 276, 276, 314, 195, 259, 144, 276, 81, 276, + /* 1080 */ 276, 276, 276, 276, 276, 276, 276, 238, 307, 276, + /* 1090 */ 102, 276, 303, 276, 276, 276, 276, 276, 259, 314, + /* 1100 */ 195, 276, 113, 276, 81, 276, 276, 276, 276, 276, + /* 1110 */ 276, 276, 276, 238, 307, 276, 102, 276, 303, 276, + /* 1120 */ 276, 276, 314, 195, 259, 122, 276, 81, 276, 276, + /* 1130 */ 276, 276, 276, 276, 276, 276, 238, 307, 276, 102, + /* 1140 */ 276, 303, 276, 276, 276, 314, 195, 259, 134, 276, + /* 1150 */ 81, 276, 276, 276, 276, 276, 276, 276, 276, 238, + /* 1160 */ 307, 276, 102, 276, 303, 276, 276, 276, 276, 276, + /* 1170 */ 259, 314, 195, 276, 143, 276, 81, 276, 276, 276, + /* 1180 */ 276, 276, 276, 276, 276, 238, 307, 276, 102, 276, + /* 1190 */ 303, 276, 276, 276, 314, 195, 259, 132, 276, 81, + /* 1200 */ 276, 276, 276, 276, 276, 276, 276, 276, 238, 307, + /* 1210 */ 276, 102, 276, 303, 276, 276, 276, 314, 195, 259, + /* 1220 */ 146, 276, 81, 276, 276, 276, 276, 276, 276, 276, + /* 1230 */ 276, 238, 307, 276, 102, 276, 303, 276, 276, 276, + /* 1240 */ 276, 276, 259, 314, 195, 276, 148, 276, 81, 276, + /* 1250 */ 276, 276, 276, 276, 276, 276, 276, 238, 307, 276, + /* 1260 */ 102, 276, 303, 276, 276, 276, 314, 195, 259, 130, + /* 1270 */ 276, 81, 276, 276, 276, 276, 276, 276, 276, 276, + /* 1280 */ 238, 307, 276, 102, 276, 303, 276, 276, 276, 314, + /* 1290 */ 195, 259, 116, 276, 81, 276, 276, 276, 276, 276, + /* 1300 */ 276, 276, 276, 238, 307, 276, 102, 276, 303, 276, + /* 1310 */ 276, 276, 276, 276, 259, 314, 195, 276, 133, 276, + /* 1320 */ 81, 276, 276, 276, 276, 276, 276, 276, 276, 238, + /* 1330 */ 307, 276, 102, 276, 303, 276, 276, 276, 314, 195, + /* 1340 */ 259, 119, 276, 81, 276, 276, 276, 276, 276, 276, + /* 1350 */ 276, 276, 238, 307, 276, 102, 276, 303, 276, 276, + /* 1360 */ 276, 314, 195, 259, 276, 276, 81, 276, 276, 276, + /* 1370 */ 276, 276, 276, 276, 276, 238, 307, 276, 98, 276, + /* 1380 */ 303, 276, 276, 276, 276, 276, 259, 314, 195, 276, + /* 1390 */ 276, 276, 81, 276, 276, 276, 276, 276, 276, 276, + /* 1400 */ 276, 238, 307, 276, 97, 276, 303, 276, 276, 276, + /* 1410 */ 314, 195, 259, 276, 276, 81, 276, 276, 276, 276, + /* 1420 */ 276, 276, 276, 276, 238, 307, 276, 104, 276, 303, + /* 1430 */ 276, 276, 276, 276, 276, 259, ); static public $yy_lookahead = array( - /* 0 */ 7, 10, 3, 10, 20, 14, 7, 14, 8, 9, - /* 10 */ 7, 18, 12, 10, 21, 22, 7, 18, 9, 10, - /* 20 */ 27, 28, 22, 30, 31, 32, 33, 36, 7, 36, - /* 30 */ 37, 10, 33, 40, 34, 14, 71, 72, 35, 18, - /* 40 */ 99, 76, 21, 22, 68, 69, 70, 71, 27, 28, - /* 50 */ 85, 30, 31, 32, 33, 90, 8, 36, 37, 38, - /* 60 */ 7, 96, 3, 10, 65, 66, 7, 14, 73, 7, - /* 70 */ 8, 18, 10, 94, 21, 22, 97, 18, 99, 17, - /* 80 */ 27, 28, 87, 30, 31, 32, 33, 39, 7, 36, - /* 90 */ 37, 10, 33, 40, 8, 14, 71, 72, 12, 18, - /* 100 */ 71, 76, 21, 22, 7, 11, 9, 10, 27, 28, - /* 110 */ 85, 30, 31, 32, 33, 90, 7, 36, 37, 10, - /* 120 */ 91, 96, 14, 14, 65, 66, 7, 18, 9, 10, - /* 130 */ 21, 22, 35, 78, 15, 106, 27, 28, 77, 30, - /* 140 */ 31, 32, 33, 17, 7, 36, 37, 10, 22, 21, - /* 150 */ 9, 14, 72, 25, 26, 18, 76, 16, 21, 22, - /* 160 */ 34, 23, 23, 102, 27, 28, 38, 30, 31, 32, - /* 170 */ 33, 95, 92, 36, 37, 13, 96, 8, 39, 20, - /* 180 */ 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, - /* 190 */ 21, 70, 71, 52, 25, 26, 7, 8, 39, 10, - /* 200 */ 62, 63, 64, 8, 42, 43, 44, 45, 46, 47, - /* 210 */ 48, 49, 50, 51, 83, 7, 71, 72, 10, 74, - /* 220 */ 75, 76, 14, 8, 62, 63, 64, 12, 23, 98, - /* 230 */ 85, 86, 9, 88, 39, 90, 28, 8, 30, 31, - /* 240 */ 7, 96, 72, 10, 36, 22, 76, 42, 43, 44, - /* 250 */ 45, 46, 47, 48, 49, 50, 51, 34, 7, 7, - /* 260 */ 8, 10, 10, 20, 77, 14, 96, 62, 63, 64, - /* 270 */ 95, 42, 43, 44, 45, 46, 47, 48, 49, 50, - /* 280 */ 51, 72, 39, 7, 21, 76, 10, 36, 25, 26, - /* 290 */ 14, 62, 63, 64, 18, 8, 84, 21, 22, 12, - /* 300 */ 11, 12, 15, 27, 28, 96, 30, 31, 32, 33, - /* 310 */ 98, 7, 36, 37, 10, 78, 78, 8, 14, 71, - /* 320 */ 72, 12, 18, 8, 76, 21, 22, 12, 39, 73, - /* 330 */ 15, 27, 28, 85, 30, 31, 32, 33, 90, 7, - /* 340 */ 36, 37, 10, 87, 96, 22, 14, 29, 7, 8, - /* 350 */ 18, 10, 29, 21, 22, 37, 100, 34, 17, 27, - /* 360 */ 28, 38, 30, 31, 32, 33, 13, 10, 36, 37, - /* 370 */ 72, 14, 19, 19, 76, 42, 43, 44, 45, 46, - /* 380 */ 47, 48, 49, 50, 51, 1, 2, 3, 4, 5, - /* 390 */ 6, 7, 12, 39, 96, 62, 63, 64, 71, 72, - /* 400 */ 20, 74, 18, 76, 83, 8, 79, 80, 81, 12, - /* 410 */ 19, 7, 85, 86, 10, 88, 73, 90, 14, 98, - /* 420 */ 78, 8, 18, 96, 73, 12, 22, 39, 101, 38, - /* 430 */ 87, 27, 28, 95, 30, 31, 32, 33, 87, 7, - /* 440 */ 36, 37, 10, 100, 8, 8, 14, 11, 12, 12, - /* 450 */ 18, 100, 71, 72, 22, 74, 23, 76, 22, 27, - /* 460 */ 28, 22, 30, 31, 32, 33, 85, 86, 36, 88, - /* 470 */ 34, 90, 39, 34, 41, 39, 39, 96, 17, 72, - /* 480 */ 8, 11, 95, 76, 12, 98, 53, 54, 55, 56, - /* 490 */ 57, 58, 59, 60, 61, 7, 23, 73, 10, 29, - /* 500 */ 39, 77, 14, 96, 8, 8, 18, 37, 12, 12, - /* 510 */ 22, 87, 39, 8, 41, 27, 28, 12, 30, 31, - /* 520 */ 32, 33, 10, 14, 36, 80, 53, 54, 55, 56, - /* 530 */ 57, 58, 59, 60, 61, 7, 10, 73, 10, 73, - /* 540 */ 73, 77, 14, 77, 77, 36, 18, 35, 8, 8, - /* 550 */ 22, 87, 12, 87, 87, 27, 28, 100, 30, 31, - /* 560 */ 32, 33, 71, 72, 36, 74, 8, 76, 73, 7, - /* 570 */ 79, 8, 77, 12, 8, 12, 85, 86, 12, 88, - /* 580 */ 39, 90, 87, 9, 22, 11, 83, 96, 71, 72, - /* 590 */ 4, 74, 101, 76, 94, 3, 79, 83, 14, 99, - /* 600 */ 39, 98, 85, 86, 94, 88, 73, 90, 4, 99, - /* 610 */ 3, 73, 98, 96, 71, 72, 94, 74, 101, 76, - /* 620 */ 87, 99, 79, 7, 9, 87, 10, 83, 85, 86, - /* 630 */ 83, 88, 39, 90, 41, 71, 10, 10, 10, 96, - /* 640 */ 83, 22, 98, 83, 101, 98, 53, 54, 55, 56, - /* 650 */ 57, 58, 59, 60, 61, 98, 24, 14, 98, 71, - /* 660 */ 72, 15, 74, 38, 76, 36, 28, 79, 8, 24, - /* 670 */ 106, 14, 23, 85, 86, 20, 88, 10, 90, 14, - /* 680 */ 14, 8, 10, 36, 96, 71, 72, 16, 74, 101, - /* 690 */ 76, 10, 23, 79, 52, 95, 10, 23, 10, 85, - /* 700 */ 86, 65, 88, 98, 90, 29, 71, 72, 87, 74, - /* 710 */ 96, 76, 89, 95, 79, 101, 12, 97, 22, 82, - /* 720 */ 85, 86, 12, 88, 107, 90, 82, 103, 107, 107, - /* 730 */ 107, 96, 71, 72, 107, 74, 101, 76, 107, 107, - /* 740 */ 79, 107, 92, 107, 107, 107, 85, 86, 107, 88, - /* 750 */ 107, 90, 107, 107, 107, 107, 107, 96, 71, 72, - /* 760 */ 107, 74, 101, 76, 107, 107, 79, 107, 107, 107, - /* 770 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 71, - /* 780 */ 72, 107, 74, 96, 76, 107, 71, 72, 101, 74, - /* 790 */ 75, 76, 107, 85, 86, 107, 88, 107, 90, 107, - /* 800 */ 85, 86, 107, 88, 96, 90, 107, 107, 107, 107, - /* 810 */ 107, 96, 104, 105, 107, 107, 107, 107, 71, 72, - /* 820 */ 107, 74, 107, 76, 107, 107, 79, 107, 107, 107, - /* 830 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 107, - /* 840 */ 107, 107, 107, 96, 71, 72, 107, 74, 101, 76, - /* 850 */ 107, 107, 79, 107, 107, 107, 107, 107, 85, 86, - /* 860 */ 107, 88, 107, 90, 107, 71, 72, 107, 74, 96, - /* 870 */ 76, 107, 107, 79, 101, 107, 107, 107, 107, 85, - /* 880 */ 86, 107, 88, 107, 90, 107, 107, 107, 107, 107, - /* 890 */ 96, 107, 107, 71, 72, 101, 74, 75, 76, 107, - /* 900 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107, - /* 910 */ 88, 107, 90, 107, 107, 107, 71, 72, 96, 74, - /* 920 */ 75, 76, 107, 107, 107, 107, 107, 107, 107, 107, - /* 930 */ 85, 86, 107, 88, 107, 90, 107, 71, 72, 107, - /* 940 */ 74, 96, 76, 107, 107, 107, 107, 107, 107, 107, - /* 950 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 93, - /* 960 */ 107, 107, 96, 107, 107, 71, 72, 107, 74, 107, - /* 970 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, - /* 980 */ 86, 107, 88, 107, 90, 107, 107, 93, 71, 72, - /* 990 */ 96, 74, 107, 76, 107, 107, 107, 107, 107, 107, - /* 1000 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 71, - /* 1010 */ 72, 107, 74, 96, 76, 107, 107, 107, 107, 107, - /* 1020 */ 107, 107, 105, 85, 86, 107, 88, 107, 90, 107, - /* 1030 */ 107, 93, 107, 107, 96, 107, 107, 71, 72, 107, - /* 1040 */ 74, 107, 76, 107, 107, 107, 107, 107, 107, 107, - /* 1050 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 93, - /* 1060 */ 71, 72, 96, 74, 107, 76, 107, 107, 107, 107, - /* 1070 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, - /* 1080 */ 107, 71, 72, 107, 74, 96, 76, 107, 107, 107, - /* 1090 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, - /* 1100 */ 90, 107, 107, 107, 107, 107, 96, 107, 107, 71, - /* 1110 */ 72, 107, 74, 107, 76, 107, 107, 107, 107, 107, - /* 1120 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, - /* 1130 */ 107, 107, 71, 72, 96, 74, 107, 76, 107, 107, - /* 1140 */ 107, 107, 107, 107, 107, 107, 85, 86, 107, 88, - /* 1150 */ 107, 90, 107, 71, 72, 107, 74, 96, 76, 107, - /* 1160 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107, - /* 1170 */ 88, 107, 90, 107, 107, 107, 107, 107, 96, 107, - /* 1180 */ 107, 71, 72, 107, 74, 107, 76, 107, 107, 107, - /* 1190 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, - /* 1200 */ 90, 107, 107, 107, 71, 72, 96, 74, 107, 76, - /* 1210 */ 107, 107, 107, 107, 107, 107, 107, 107, 85, 86, - /* 1220 */ 107, 88, 107, 90, 107, 71, 72, 107, 74, 96, - /* 1230 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, - /* 1240 */ 86, 107, 88, 107, 90, 107, 107, 107, 107, 107, - /* 1250 */ 96, 107, 107, 71, 72, 107, 74, 107, 76, 107, - /* 1260 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107, - /* 1270 */ 88, 107, 90, 107, 107, 107, 71, 72, 96, 74, - /* 1280 */ 107, 76, 107, 107, 107, 107, 107, 107, 107, 107, - /* 1290 */ 85, 86, 107, 88, 107, 90, 107, 71, 72, 107, - /* 1300 */ 74, 96, 76, 107, 107, 107, 107, 107, 107, 107, - /* 1310 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, - /* 1320 */ 107, 107, 96, 107, 107, 71, 72, 107, 74, 107, - /* 1330 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, - /* 1340 */ 86, 107, 88, 107, 90, 107, 107, 107, 71, 72, - /* 1350 */ 96, 74, 107, 76, 107, 107, 107, 107, 107, 107, - /* 1360 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 71, - /* 1370 */ 72, 107, 107, 96, 76, 107, 107, 107, 107, 107, - /* 1380 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, - /* 1390 */ 107, 107, 107, 107, 96, 107, 107, 71, 72, 107, - /* 1400 */ 107, 107, 76, 107, 107, 107, 107, 107, 107, 107, - /* 1410 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, - /* 1420 */ 71, 72, 96, 107, 107, 76, 107, 107, 107, 107, - /* 1430 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, - /* 1440 */ 107, 71, 72, 107, 107, 96, 76, 107, 107, 107, - /* 1450 */ 107, 107, 107, 107, 107, 85, 86, 107, 71, 72, - /* 1460 */ 90, 107, 107, 76, 107, 107, 96, 107, 107, 107, - /* 1470 */ 107, 107, 85, 107, 107, 107, 107, 90, 107, 107, - /* 1480 */ 107, 107, 107, 96, + /* 0 */ 7, 95, 7, 10, 9, 10, 7, 14, 20, 10, + /* 10 */ 15, 18, 19, 14, 73, 22, 23, 68, 69, 70, + /* 20 */ 71, 28, 10, 30, 31, 32, 33, 39, 87, 36, + /* 30 */ 37, 7, 22, 40, 10, 36, 26, 27, 14, 71, + /* 40 */ 72, 100, 18, 19, 76, 72, 22, 23, 38, 76, + /* 50 */ 95, 29, 28, 85, 30, 31, 32, 33, 90, 37, + /* 60 */ 36, 37, 38, 7, 96, 92, 10, 8, 3, 96, + /* 70 */ 14, 12, 7, 10, 18, 19, 10, 73, 22, 23, + /* 80 */ 14, 8, 19, 18, 28, 21, 30, 31, 32, 33, + /* 90 */ 8, 87, 36, 37, 7, 22, 40, 10, 33, 26, + /* 100 */ 27, 14, 36, 39, 100, 18, 19, 22, 16, 22, + /* 110 */ 23, 26, 27, 7, 8, 28, 10, 30, 31, 32, + /* 120 */ 33, 39, 8, 36, 37, 7, 12, 8, 10, 15, + /* 130 */ 65, 66, 14, 71, 72, 8, 18, 19, 76, 12, + /* 140 */ 22, 23, 7, 8, 52, 10, 28, 85, 30, 31, + /* 150 */ 32, 33, 90, 24, 36, 37, 95, 7, 96, 9, + /* 160 */ 10, 42, 43, 44, 45, 46, 47, 48, 49, 50, + /* 170 */ 51, 42, 43, 44, 45, 46, 47, 48, 49, 50, + /* 180 */ 51, 62, 63, 64, 13, 35, 8, 9, 9, 73, + /* 190 */ 12, 62, 63, 64, 1, 2, 3, 4, 5, 6, + /* 200 */ 7, 23, 78, 87, 7, 24, 9, 10, 29, 11, + /* 210 */ 12, 18, 34, 42, 43, 44, 45, 46, 47, 48, + /* 220 */ 49, 50, 51, 42, 43, 44, 45, 46, 47, 48, + /* 230 */ 49, 50, 51, 62, 63, 64, 9, 39, 11, 7, + /* 240 */ 11, 23, 10, 62, 63, 64, 14, 29, 10, 8, + /* 250 */ 18, 19, 34, 12, 22, 23, 38, 73, 29, 24, + /* 260 */ 28, 17, 30, 31, 32, 33, 37, 23, 36, 37, + /* 270 */ 7, 87, 8, 10, 39, 11, 12, 14, 34, 8, + /* 280 */ 12, 18, 19, 12, 100, 22, 23, 23, 73, 21, + /* 290 */ 8, 28, 77, 30, 31, 32, 33, 8, 34, 36, + /* 300 */ 37, 7, 87, 39, 10, 72, 19, 8, 14, 76, + /* 310 */ 39, 12, 18, 19, 15, 94, 22, 23, 97, 73, + /* 320 */ 99, 39, 28, 77, 30, 31, 32, 33, 39, 96, + /* 330 */ 36, 37, 7, 87, 8, 10, 83, 94, 12, 14, + /* 340 */ 71, 72, 99, 18, 19, 76, 73, 22, 23, 7, + /* 350 */ 77, 98, 10, 28, 85, 30, 31, 32, 33, 90, + /* 360 */ 87, 36, 37, 7, 13, 96, 10, 23, 73, 73, + /* 370 */ 14, 20, 77, 77, 18, 19, 8, 35, 34, 23, + /* 380 */ 12, 21, 87, 87, 28, 10, 30, 31, 32, 33, + /* 390 */ 72, 3, 36, 37, 76, 7, 42, 43, 44, 45, + /* 400 */ 46, 47, 48, 49, 50, 51, 18, 7, 72, 8, + /* 410 */ 35, 71, 76, 12, 96, 17, 62, 63, 64, 71, + /* 420 */ 72, 33, 74, 23, 76, 15, 8, 79, 80, 81, + /* 430 */ 12, 91, 96, 85, 86, 8, 88, 39, 90, 12, + /* 440 */ 25, 72, 71, 72, 96, 76, 106, 76, 20, 101, + /* 450 */ 70, 71, 7, 65, 66, 10, 85, 86, 8, 14, + /* 460 */ 14, 90, 12, 18, 19, 96, 38, 96, 23, 7, + /* 470 */ 8, 95, 10, 28, 98, 30, 31, 32, 33, 17, + /* 480 */ 10, 36, 36, 7, 14, 8, 10, 8, 24, 12, + /* 490 */ 14, 12, 8, 10, 18, 19, 12, 7, 24, 23, + /* 500 */ 10, 77, 73, 39, 28, 41, 30, 31, 32, 33, + /* 510 */ 78, 7, 36, 39, 10, 41, 87, 53, 54, 55, + /* 520 */ 56, 57, 58, 59, 60, 61, 102, 53, 54, 55, + /* 530 */ 56, 57, 58, 59, 60, 61, 71, 72, 10, 74, + /* 540 */ 21, 76, 94, 71, 79, 7, 12, 99, 10, 83, + /* 550 */ 85, 86, 14, 88, 94, 90, 83, 19, 39, 99, + /* 560 */ 10, 96, 71, 72, 98, 74, 101, 76, 30, 31, + /* 570 */ 79, 98, 78, 39, 36, 73, 85, 86, 106, 88, + /* 580 */ 83, 90, 83, 83, 39, 71, 72, 96, 74, 87, + /* 590 */ 76, 83, 101, 79, 84, 98, 83, 98, 98, 85, + /* 600 */ 86, 12, 88, 39, 90, 41, 98, 82, 98, 77, + /* 610 */ 96, 98, 82, 78, 9, 101, 10, 53, 54, 55, + /* 620 */ 56, 57, 58, 59, 60, 61, 29, 71, 72, 9, + /* 630 */ 74, 3, 76, 7, 8, 79, 10, 10, 16, 8, + /* 640 */ 10, 85, 86, 17, 88, 8, 90, 14, 71, 72, + /* 650 */ 4, 74, 96, 76, 14, 8, 79, 101, 65, 23, + /* 660 */ 3, 38, 85, 86, 52, 88, 14, 90, 36, 24, + /* 670 */ 36, 71, 72, 96, 74, 24, 76, 24, 101, 79, + /* 680 */ 14, 25, 10, 4, 14, 85, 86, 103, 88, 87, + /* 690 */ 90, 97, 71, 72, 95, 74, 96, 76, 89, 12, + /* 700 */ 79, 101, 11, 92, 14, 98, 85, 86, 100, 88, + /* 710 */ 21, 90, 99, 71, 72, 80, 74, 96, 76, 95, + /* 720 */ 23, 79, 101, 107, 107, 107, 107, 85, 86, 107, + /* 730 */ 88, 107, 90, 107, 71, 72, 107, 74, 96, 76, + /* 740 */ 107, 107, 79, 101, 107, 107, 107, 107, 85, 86, + /* 750 */ 107, 88, 107, 90, 107, 107, 107, 71, 72, 96, + /* 760 */ 74, 107, 76, 107, 101, 79, 107, 107, 107, 107, + /* 770 */ 107, 85, 86, 107, 88, 107, 90, 107, 71, 72, + /* 780 */ 107, 74, 96, 76, 107, 107, 107, 101, 107, 107, + /* 790 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 71, + /* 800 */ 72, 107, 74, 96, 76, 107, 107, 79, 107, 107, + /* 810 */ 107, 104, 105, 85, 86, 107, 88, 107, 90, 107, + /* 820 */ 71, 72, 107, 74, 96, 76, 107, 107, 107, 101, + /* 830 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, + /* 840 */ 107, 107, 107, 71, 72, 96, 74, 107, 76, 107, + /* 850 */ 107, 107, 107, 107, 105, 107, 107, 85, 86, 107, + /* 860 */ 88, 107, 90, 107, 107, 93, 107, 107, 96, 71, + /* 870 */ 72, 107, 74, 75, 76, 107, 71, 72, 107, 74, + /* 880 */ 107, 76, 107, 85, 86, 107, 88, 107, 90, 107, + /* 890 */ 85, 86, 107, 88, 96, 90, 107, 107, 93, 107, + /* 900 */ 107, 96, 107, 107, 107, 107, 71, 72, 107, 74, + /* 910 */ 75, 76, 107, 107, 107, 107, 107, 107, 107, 107, + /* 920 */ 85, 86, 107, 88, 107, 90, 107, 107, 107, 71, + /* 930 */ 72, 96, 74, 75, 76, 107, 107, 107, 107, 107, + /* 940 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, + /* 950 */ 107, 107, 107, 107, 96, 71, 72, 107, 74, 107, + /* 960 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, + /* 970 */ 86, 107, 88, 107, 90, 107, 107, 93, 71, 72, + /* 980 */ 96, 74, 75, 76, 107, 107, 107, 107, 107, 107, + /* 990 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 107, + /* 1000 */ 107, 71, 72, 96, 74, 107, 76, 107, 107, 107, + /* 1010 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, + /* 1020 */ 90, 107, 107, 93, 107, 107, 96, 71, 72, 107, + /* 1030 */ 74, 107, 76, 107, 107, 107, 107, 107, 107, 107, + /* 1040 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, + /* 1050 */ 71, 72, 96, 74, 107, 76, 107, 107, 107, 107, + /* 1060 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, + /* 1070 */ 107, 107, 107, 71, 72, 96, 74, 107, 76, 107, + /* 1080 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107, + /* 1090 */ 88, 107, 90, 107, 107, 107, 107, 107, 96, 71, + /* 1100 */ 72, 107, 74, 107, 76, 107, 107, 107, 107, 107, + /* 1110 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, + /* 1120 */ 107, 107, 71, 72, 96, 74, 107, 76, 107, 107, + /* 1130 */ 107, 107, 107, 107, 107, 107, 85, 86, 107, 88, + /* 1140 */ 107, 90, 107, 107, 107, 71, 72, 96, 74, 107, + /* 1150 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, + /* 1160 */ 86, 107, 88, 107, 90, 107, 107, 107, 107, 107, + /* 1170 */ 96, 71, 72, 107, 74, 107, 76, 107, 107, 107, + /* 1180 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, + /* 1190 */ 90, 107, 107, 107, 71, 72, 96, 74, 107, 76, + /* 1200 */ 107, 107, 107, 107, 107, 107, 107, 107, 85, 86, + /* 1210 */ 107, 88, 107, 90, 107, 107, 107, 71, 72, 96, + /* 1220 */ 74, 107, 76, 107, 107, 107, 107, 107, 107, 107, + /* 1230 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, + /* 1240 */ 107, 107, 96, 71, 72, 107, 74, 107, 76, 107, + /* 1250 */ 107, 107, 107, 107, 107, 107, 107, 85, 86, 107, + /* 1260 */ 88, 107, 90, 107, 107, 107, 71, 72, 96, 74, + /* 1270 */ 107, 76, 107, 107, 107, 107, 107, 107, 107, 107, + /* 1280 */ 85, 86, 107, 88, 107, 90, 107, 107, 107, 71, + /* 1290 */ 72, 96, 74, 107, 76, 107, 107, 107, 107, 107, + /* 1300 */ 107, 107, 107, 85, 86, 107, 88, 107, 90, 107, + /* 1310 */ 107, 107, 107, 107, 96, 71, 72, 107, 74, 107, + /* 1320 */ 76, 107, 107, 107, 107, 107, 107, 107, 107, 85, + /* 1330 */ 86, 107, 88, 107, 90, 107, 107, 107, 71, 72, + /* 1340 */ 96, 74, 107, 76, 107, 107, 107, 107, 107, 107, + /* 1350 */ 107, 107, 85, 86, 107, 88, 107, 90, 107, 107, + /* 1360 */ 107, 71, 72, 96, 107, 107, 76, 107, 107, 107, + /* 1370 */ 107, 107, 107, 107, 107, 85, 86, 107, 88, 107, + /* 1380 */ 90, 107, 107, 107, 107, 107, 96, 71, 72, 107, + /* 1390 */ 107, 107, 76, 107, 107, 107, 107, 107, 107, 107, + /* 1400 */ 107, 85, 86, 107, 88, 107, 90, 107, 107, 107, + /* 1410 */ 71, 72, 96, 107, 107, 76, 107, 107, 107, 107, + /* 1420 */ 107, 107, 107, 107, 85, 86, 107, 88, 107, 90, + /* 1430 */ 107, 107, 107, 107, 107, 96, ); - const YY_SHIFT_USE_DFLT = -17; - const YY_SHIFT_MAX = 208; + const YY_SHIFT_USE_DFLT = -13; + const YY_SHIFT_MAX = 209; static public $yy_shift_ofst = array( - /* 0 */ 384, 53, -7, -7, -7, -7, -7, -7, -7, -7, - /* 10 */ -7, -7, -7, 332, 81, 81, 109, 81, 137, 332, - /* 20 */ 81, 109, 137, 81, 81, 81, 81, 81, 81, 81, - /* 30 */ 81, 81, 81, 81, 81, 81, 81, 21, 304, 276, - /* 40 */ 404, 488, 432, 488, 528, 251, 208, 436, 59, 289, - /* 50 */ -9, 470, 437, 380, 380, 509, 509, 380, 561, 561, - /* 60 */ 561, 473, 433, 593, 384, -1, 119, 97, 287, 315, - /* 70 */ 3, 233, 616, 233, 233, 233, 574, 616, 233, 233, - /* 80 */ 233, 704, 94, 94, 94, 704, 229, 205, 162, 138, - /* 90 */ 333, 333, 333, 333, 333, 333, 333, 333, 341, 169, - /* 100 */ 62, 128, 252, 263, 9, 263, 189, 86, 48, 215, - /* 110 */ 159, 243, 461, 318, 354, 318, 318, 566, 540, 318, - /* 120 */ 496, 562, 195, 505, 397, 563, 541, 139, 309, 357, - /* 130 */ 318, 472, 413, 388, 388, 388, 388, 388, 710, 388, - /* 140 */ 710, 388, 94, 696, 94, -16, 94, 108, 94, 388, - /* 150 */ 388, -17, -17, -17, -17, -17, -17, -17, 0, 323, - /* 160 */ 126, 223, 141, 439, 353, 512, 439, 439, 439, 391, - /* 170 */ 497, 676, 666, 673, 672, 665, 667, 657, 649, 655, - /* 180 */ 671, 526, 681, 686, 688, 674, 669, 647, 642, 645, - /* 190 */ 660, 607, 626, 615, 636, 604, 584, 586, 592, 558, - /* 200 */ 619, 627, 638, 625, 629, 646, 628, 632, 643, + /* 0 */ 193, 56, -7, -7, -7, -7, -7, -7, -7, -7, + /* 10 */ -7, -7, -7, 325, 87, 118, 325, 87, 294, 294, + /* 20 */ 118, 87, 87, 87, 87, 87, 87, 87, 87, 87, + /* 30 */ 87, 87, 87, 87, 87, 87, 87, 24, 263, 232, + /* 40 */ 356, 445, 445, 476, -1, 538, 264, 388, 271, 198, + /* 50 */ 229, 66, 268, 268, 534, 534, 446, 268, 534, 446, + /* 60 */ 474, 464, 564, 193, 65, -5, 150, 342, 114, 299, + /* 70 */ 504, 227, 504, 490, 504, 504, 504, 504, 490, 504, + /* 80 */ 691, 691, 687, 687, 691, 181, 171, 129, 119, 354, + /* 90 */ 354, 354, 354, 354, 354, 354, 354, 10, 73, 462, + /* 100 */ 626, 135, 85, 106, 85, 197, 22, 82, 59, 127, + /* 110 */ -12, 22, 241, 519, 22, 398, 289, 400, 470, 64, + /* 120 */ 484, 479, 282, 401, 368, 418, 477, 22, 450, 22, + /* 130 */ 235, 326, 545, 545, 545, 545, 689, 691, 690, 691, + /* 140 */ 697, 691, 691, 545, 545, 589, 545, 589, 545, 545, + /* 150 */ -13, -13, -13, -13, -13, -13, -13, 178, 218, 244, + /* 160 */ 179, 63, 427, 344, 344, 344, 375, 344, 428, 92, + /* 170 */ 351, 631, 627, 620, 637, 647, 633, 670, 636, 652, + /* 180 */ 645, 593, 640, 630, 622, 623, 666, 672, 653, 612, + /* 190 */ 632, 634, 606, 415, 483, 410, 238, 12, 597, 287, + /* 200 */ 550, 528, 360, 605, 651, 657, 679, 656, 628, 646, ); - const YY_REDUCE_USE_DFLT = -60; - const YY_REDUCE_MAX = 157; + const YY_REDUCE_USE_DFLT = -95; + const YY_REDUCE_MAX = 156; static public $yy_reduce_ofst = array( - /* 0 */ -24, 327, 773, 661, 517, 543, 614, 588, 635, 491, - /* 10 */ 687, 794, 747, 708, 866, 938, 145, 966, 715, 917, - /* 20 */ 894, 845, 822, 1110, 1133, 1082, 1061, 989, 1010, 1038, - /* 30 */ 1154, 1182, 1254, 1277, 381, 1205, 1226, 1298, 1349, 1326, - /* 40 */ 1370, -35, 1387, 248, 25, 80, 298, 466, 29, 464, - /* 50 */ 407, -21, 424, 343, 256, 170, 209, 351, 424, 467, - /* 60 */ 495, 61, 61, 61, 121, 564, 212, 387, -5, -5, - /* 70 */ 387, 544, 321, 514, 131, 547, 510, 560, 557, 503, - /* 80 */ 321, 538, 510, 500, 522, 533, 624, 624, 624, 624, - /* 90 */ 624, 624, 624, 624, 624, 624, 624, 624, 605, 623, - /* 100 */ 605, 623, 605, 623, 605, 623, 605, 621, 187, 621, - /* 110 */ 187, 187, 187, 620, 187, 620, 620, 621, 621, 620, - /* 120 */ 621, 618, 187, 621, 621, 621, 187, 187, 621, 650, - /* 130 */ 620, 621, 621, 187, 187, 187, 187, 187, 644, 187, - /* 140 */ 637, 187, -59, 600, -59, 457, -59, 445, -59, 187, - /* 150 */ 187, 175, 238, 338, 342, 237, 55, 76, + /* 0 */ -51, 348, 728, 686, 491, 514, 600, 556, 577, 465, + /* 10 */ 621, 663, 642, 707, 884, 907, 749, 930, 798, 835, + /* 20 */ 858, 772, 805, 1100, 1123, 1074, 1051, 979, 1002, 1028, + /* 30 */ 1146, 1172, 1267, 956, 1244, 1218, 1195, 1316, 1290, 1339, + /* 40 */ 371, 269, 62, -32, -27, 233, 295, 340, 215, 296, + /* 50 */ 221, 318, -59, 184, 215, 246, 336, 4, 273, 369, + /* 60 */ 424, 424, 424, 380, 472, 510, 376, 376, 116, 116, + /* 70 */ 473, 243, 253, 466, 497, 508, 500, 466, 499, 513, + /* 80 */ 448, 243, 429, 502, 460, 584, 584, 584, 584, 584, + /* 90 */ 584, 584, 584, 584, 584, 584, 584, 609, 609, 607, + /* 100 */ 607, 607, 609, 607, 609, 607, 594, 532, 602, 602, + /* 110 */ 532, 594, 602, 532, 594, 532, 532, 599, 611, 532, + /* 120 */ 602, 602, 532, 602, 602, 602, 602, 594, 602, 594, + /* 130 */ 532, 602, 532, 532, 532, 532, 608, 613, 635, 613, + /* 140 */ 624, 613, 613, 532, 532, 525, 532, 530, 532, 532, + /* 150 */ 535, 494, 432, 124, 61, -45, -94, ); static public $yyExpectedTokens = array( /* 0 */ array(1, 2, 3, 4, 5, 6, 7, 18, ), - /* 1 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 2 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 3 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 4 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 5 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 6 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 7 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 8 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 9 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 10 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 11 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 12 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 40, ), - /* 13 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 14 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 15 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 16 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 17 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 18 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 19 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 20 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 21 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 22 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 23 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 24 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 25 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 26 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 27 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 28 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 29 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 30 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 31 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 32 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 33 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 34 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 35 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 36 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 37 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, 38, ), - /* 38 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 39 */ array(7, 10, 14, 18, 21, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 40 */ array(7, 10, 14, 18, 22, 27, 28, 30, 31, 32, 33, 36, 37, ), - /* 41 */ array(7, 10, 14, 18, 22, 27, 28, 30, 31, 32, 33, 36, ), - /* 42 */ array(7, 10, 14, 18, 22, 27, 28, 30, 31, 32, 33, 36, ), - /* 43 */ array(7, 10, 14, 18, 22, 27, 28, 30, 31, 32, 33, 36, ), - /* 44 */ array(7, 10, 14, 18, 22, 27, 28, 30, 31, 32, 33, 36, ), - /* 45 */ array(7, 10, 14, 36, ), - /* 46 */ array(7, 10, 14, 28, 30, 31, 36, ), - /* 47 */ array(8, 11, 12, 22, 34, 39, ), - /* 48 */ array(3, 7, 18, 33, 65, 66, ), + /* 1 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 2 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 3 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 4 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 5 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 6 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 7 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 8 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 9 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 10 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 11 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 12 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 40, ), + /* 13 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 14 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 15 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 16 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 17 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 18 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 19 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 20 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 21 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 22 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 23 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 24 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 25 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 26 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 27 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 28 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 29 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 30 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 31 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 32 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 33 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 34 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 35 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 36 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 37 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, 38, ), + /* 38 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 39 */ array(7, 10, 14, 18, 19, 22, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 40 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, 37, ), + /* 41 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, ), + /* 42 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, ), + /* 43 */ array(7, 10, 14, 18, 19, 23, 28, 30, 31, 32, 33, 36, ), + /* 44 */ array(7, 10, 14, 36, ), + /* 45 */ array(7, 10, 14, 19, 30, 31, 36, ), + /* 46 */ array(8, 11, 12, 23, 34, 39, ), + /* 47 */ array(3, 7, 18, 33, 65, 66, ), + /* 48 */ array(8, 12, 39, ), /* 49 */ array(11, 12, 39, ), - /* 50 */ array(10, 14, 36, ), - /* 51 */ array(11, 29, 37, ), - /* 52 */ array(8, 12, 39, ), - /* 53 */ array(12, 20, ), - /* 54 */ array(12, 20, ), - /* 55 */ array(14, 36, ), + /* 50 */ array(11, 29, 37, ), + /* 51 */ array(10, 14, 36, ), + /* 52 */ array(12, 21, ), + /* 53 */ array(12, 21, ), + /* 54 */ array(12, 39, ), + /* 55 */ array(12, 39, ), /* 56 */ array(14, 36, ), - /* 57 */ array(12, 20, ), + /* 57 */ array(12, 21, ), /* 58 */ array(12, 39, ), - /* 59 */ array(12, 39, ), - /* 60 */ array(12, 39, ), - /* 61 */ array(23, 39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), - /* 62 */ array(23, 39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), - /* 63 */ array(39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), - /* 64 */ array(1, 2, 3, 4, 5, 6, 7, 18, ), - /* 65 */ array(3, 7, 18, 33, 65, 66, ), - /* 66 */ array(7, 9, 10, 15, ), - /* 67 */ array(7, 9, 10, 35, ), + /* 59 */ array(14, 36, ), + /* 60 */ array(24, 39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), + /* 61 */ array(24, 39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), + /* 62 */ array(39, 41, 53, 54, 55, 56, 57, 58, 59, 60, 61, ), + /* 63 */ array(1, 2, 3, 4, 5, 6, 7, 18, ), + /* 64 */ array(3, 7, 18, 33, 65, 66, ), + /* 65 */ array(7, 9, 10, 15, ), + /* 66 */ array(7, 9, 10, 35, ), + /* 67 */ array(7, 10, 35, ), /* 68 */ array(8, 12, 15, ), /* 69 */ array(8, 12, 15, ), - /* 70 */ array(7, 10, 35, ), - /* 71 */ array(7, 10, ), + /* 70 */ array(7, 10, ), + /* 71 */ array(9, 11, ), /* 72 */ array(7, 10, ), /* 73 */ array(7, 10, ), /* 74 */ array(7, 10, ), /* 75 */ array(7, 10, ), - /* 76 */ array(9, 11, ), + /* 76 */ array(7, 10, ), /* 77 */ array(7, 10, ), /* 78 */ array(7, 10, ), /* 79 */ array(7, 10, ), - /* 80 */ array(7, 10, ), - /* 81 */ array(12, ), - /* 82 */ array(11, ), - /* 83 */ array(11, ), + /* 80 */ array(11, ), + /* 81 */ array(11, ), + /* 82 */ array(12, ), + /* 83 */ array(12, ), /* 84 */ array(11, ), - /* 85 */ array(12, ), - /* 86 */ array(8, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 87 */ array(23, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 88 */ array(13, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 89 */ array(23, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), + /* 85 */ array(24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), + /* 86 */ array(13, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), + /* 87 */ array(24, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), + /* 88 */ array(8, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), + /* 89 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), /* 90 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), /* 91 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), /* 92 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), @@ -718,119 +708,119 @@ static public $yy_action = array( /* 94 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), /* 95 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), /* 96 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 97 */ array(42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 62, 63, 64, ), - /* 98 */ array(7, 8, 10, 17, ), - /* 99 */ array(8, 21, 25, 26, ), + /* 97 */ array(22, 26, 27, 38, ), + /* 98 */ array(8, 22, 26, 27, ), + /* 99 */ array(7, 8, 10, 17, ), /* 100 */ array(7, 8, 10, 17, ), - /* 101 */ array(21, 25, 26, 38, ), - /* 102 */ array(7, 8, 10, ), - /* 103 */ array(21, 25, 26, ), - /* 104 */ array(7, 9, 10, ), - /* 105 */ array(21, 25, 26, ), - /* 106 */ array(7, 8, 10, ), - /* 107 */ array(8, 12, ), - /* 108 */ array(8, 39, ), + /* 101 */ array(7, 8, 10, ), + /* 102 */ array(22, 26, 27, ), + /* 103 */ array(7, 8, 10, ), + /* 104 */ array(22, 26, 27, ), + /* 105 */ array(7, 9, 10, ), + /* 106 */ array(29, 37, ), + /* 107 */ array(8, 39, ), + /* 108 */ array(8, 12, ), /* 109 */ array(8, 12, ), /* 110 */ array(20, 39, ), - /* 111 */ array(20, 39, ), - /* 112 */ array(17, 39, ), - /* 113 */ array(29, 37, ), - /* 114 */ array(19, 39, ), - /* 115 */ array(29, 37, ), - /* 116 */ array(29, 37, ), - /* 117 */ array(8, 12, ), - /* 118 */ array(8, 12, ), - /* 119 */ array(29, 37, ), + /* 111 */ array(29, 37, ), + /* 112 */ array(8, 12, ), + /* 113 */ array(21, 39, ), + /* 114 */ array(29, 37, ), + /* 115 */ array(17, 39, ), + /* 116 */ array(8, 39, ), + /* 117 */ array(7, 23, ), + /* 118 */ array(10, 14, ), + /* 119 */ array(21, 39, ), /* 120 */ array(8, 12, ), - /* 121 */ array(7, 22, ), + /* 121 */ array(8, 12, ), /* 122 */ array(8, 39, ), /* 123 */ array(8, 12, ), /* 124 */ array(8, 12, ), /* 125 */ array(8, 12, ), - /* 126 */ array(8, 39, ), - /* 127 */ array(23, 39, ), + /* 126 */ array(8, 12, ), + /* 127 */ array(29, 37, ), /* 128 */ array(8, 12, ), - /* 129 */ array(10, 14, ), - /* 130 */ array(29, 37, ), + /* 129 */ array(29, 37, ), + /* 130 */ array(24, 39, ), /* 131 */ array(8, 12, ), - /* 132 */ array(8, 12, ), + /* 132 */ array(39, ), /* 133 */ array(39, ), /* 134 */ array(39, ), /* 135 */ array(39, ), - /* 136 */ array(39, ), - /* 137 */ array(39, ), - /* 138 */ array(12, ), - /* 139 */ array(39, ), - /* 140 */ array(12, ), - /* 141 */ array(39, ), + /* 136 */ array(21, ), + /* 137 */ array(11, ), + /* 138 */ array(14, ), + /* 139 */ array(11, ), + /* 140 */ array(23, ), + /* 141 */ array(11, ), /* 142 */ array(11, ), - /* 143 */ array(22, ), - /* 144 */ array(11, ), - /* 145 */ array(20, ), - /* 146 */ array(11, ), - /* 147 */ array(14, ), - /* 148 */ array(11, ), + /* 143 */ array(39, ), + /* 144 */ array(39, ), + /* 145 */ array(12, ), + /* 146 */ array(39, ), + /* 147 */ array(12, ), + /* 148 */ array(39, ), /* 149 */ array(39, ), - /* 150 */ array(39, ), + /* 150 */ array(), /* 151 */ array(), /* 152 */ array(), /* 153 */ array(), /* 154 */ array(), /* 155 */ array(), /* 156 */ array(), - /* 157 */ array(), - /* 158 */ array(8, 9, 12, 22, 34, ), - /* 159 */ array(22, 29, 34, 38, ), - /* 160 */ array(17, 22, 34, ), - /* 161 */ array(9, 22, 34, ), - /* 162 */ array(9, 16, 52, ), - /* 163 */ array(22, 34, ), - /* 164 */ array(13, 19, ), - /* 165 */ array(10, 35, ), - /* 166 */ array(22, 34, ), - /* 167 */ array(22, 34, ), - /* 168 */ array(22, 34, ), - /* 169 */ array(19, 38, ), - /* 170 */ array(8, 12, ), - /* 171 */ array(29, ), - /* 172 */ array(14, ), - /* 173 */ array(8, ), - /* 174 */ array(10, ), - /* 175 */ array(14, ), - /* 176 */ array(10, ), + /* 157 */ array(8, 9, 12, 23, 34, ), + /* 158 */ array(23, 29, 34, 38, ), + /* 159 */ array(17, 23, 34, ), + /* 160 */ array(9, 29, ), + /* 161 */ array(10, 19, ), + /* 162 */ array(8, 12, ), + /* 163 */ array(23, 34, ), + /* 164 */ array(23, 34, ), + /* 165 */ array(23, 34, ), + /* 166 */ array(10, 35, ), + /* 167 */ array(23, 34, ), + /* 168 */ array(20, 38, ), + /* 169 */ array(16, 52, ), + /* 170 */ array(13, 20, ), + /* 171 */ array(8, ), + /* 172 */ array(10, ), + /* 173 */ array(9, ), + /* 174 */ array(8, ), + /* 175 */ array(8, ), + /* 176 */ array(14, ), /* 177 */ array(14, ), /* 178 */ array(23, ), - /* 179 */ array(20, ), - /* 180 */ array(16, ), - /* 181 */ array(10, ), - /* 182 */ array(10, ), + /* 179 */ array(14, ), + /* 180 */ array(24, ), + /* 181 */ array(65, ), + /* 182 */ array(14, ), /* 183 */ array(10, ), - /* 184 */ array(10, ), - /* 185 */ array(23, ), - /* 186 */ array(23, ), - /* 187 */ array(36, ), - /* 188 */ array(52, ), - /* 189 */ array(24, ), - /* 190 */ array(8, ), - /* 191 */ array(3, ), + /* 184 */ array(16, ), + /* 185 */ array(38, ), + /* 186 */ array(14, ), + /* 187 */ array(10, ), + /* 188 */ array(24, ), + /* 189 */ array(52, ), + /* 190 */ array(36, ), + /* 191 */ array(36, ), /* 192 */ array(10, ), - /* 193 */ array(9, ), - /* 194 */ array(65, ), - /* 195 */ array(4, ), - /* 196 */ array(14, ), - /* 197 */ array(4, ), - /* 198 */ array(3, ), - /* 199 */ array(8, ), - /* 200 */ array(22, ), + /* 193 */ array(25, ), + /* 194 */ array(10, ), + /* 195 */ array(15, ), + /* 196 */ array(10, ), + /* 197 */ array(10, ), + /* 198 */ array(29, ), + /* 199 */ array(19, ), + /* 200 */ array(10, ), /* 201 */ array(10, ), - /* 202 */ array(28, ), - /* 203 */ array(38, ), - /* 204 */ array(36, ), - /* 205 */ array(15, ), - /* 206 */ array(10, ), - /* 207 */ array(24, ), - /* 208 */ array(14, ), - /* 209 */ array(), + /* 202 */ array(21, ), + /* 203 */ array(9, ), + /* 204 */ array(24, ), + /* 205 */ array(3, ), + /* 206 */ array(4, ), + /* 207 */ array(25, ), + /* 208 */ array(3, ), + /* 209 */ array(4, ), /* 210 */ array(), /* 211 */ array(), /* 212 */ array(), @@ -944,41 +934,42 @@ static public $yy_action = array( /* 320 */ array(), /* 321 */ array(), /* 322 */ array(), + /* 323 */ array(), ); static public $yy_default = array( - /* 0 */ 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, - /* 10 */ 490, 490, 490, 476, 434, 434, 490, 434, 490, 490, - /* 20 */ 434, 490, 490, 490, 490, 490, 490, 490, 490, 490, - /* 30 */ 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, - /* 40 */ 490, 490, 490, 490, 490, 490, 490, 490, 490, 357, - /* 50 */ 490, 396, 490, 357, 357, 490, 490, 357, 357, 357, - /* 60 */ 357, 444, 444, 444, 323, 490, 490, 406, 379, 379, - /* 70 */ 406, 490, 490, 490, 490, 490, 399, 490, 490, 490, - /* 80 */ 490, 357, 399, 392, 391, 357, 490, 490, 490, 490, - /* 90 */ 453, 450, 449, 442, 457, 458, 454, 448, 490, 490, - /* 100 */ 490, 490, 490, 439, 490, 367, 490, 490, 490, 490, - /* 110 */ 490, 490, 479, 404, 433, 427, 426, 490, 490, 425, - /* 120 */ 490, 406, 490, 490, 490, 490, 490, 490, 490, 490, - /* 130 */ 428, 490, 490, 445, 346, 358, 374, 362, 489, 365, - /* 140 */ 489, 477, 422, 406, 393, 369, 394, 490, 397, 375, - /* 150 */ 478, 406, 438, 406, 438, 438, 438, 406, 366, 490, - /* 160 */ 366, 361, 370, 440, 490, 490, 459, 490, 366, 490, - /* 170 */ 370, 382, 490, 363, 490, 490, 490, 490, 490, 420, - /* 180 */ 373, 490, 490, 410, 490, 490, 490, 490, 370, 490, - /* 190 */ 490, 490, 490, 490, 490, 490, 490, 490, 490, 490, - /* 200 */ 395, 490, 490, 490, 490, 379, 490, 387, 490, 364, - /* 210 */ 324, 429, 354, 350, 389, 360, 416, 351, 480, 481, - /* 220 */ 487, 486, 483, 482, 414, 415, 328, 326, 349, 325, - /* 230 */ 413, 390, 417, 327, 431, 348, 451, 380, 484, 334, - /* 240 */ 485, 388, 373, 421, 435, 436, 335, 336, 437, 432, - /* 250 */ 430, 356, 370, 398, 337, 381, 371, 418, 368, 407, - /* 260 */ 408, 409, 411, 403, 402, 400, 405, 401, 412, 372, - /* 270 */ 423, 376, 377, 378, 424, 386, 383, 384, 385, 353, - /* 280 */ 473, 472, 443, 338, 339, 471, 470, 456, 332, 331, - /* 290 */ 340, 342, 345, 347, 419, 420, 329, 344, 341, 330, - /* 300 */ 343, 455, 452, 462, 463, 464, 465, 461, 447, 475, - /* 310 */ 474, 446, 466, 467, 441, 355, 333, 387, 352, 468, - /* 320 */ 469, 460, 488, + /* 0 */ 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, + /* 10 */ 491, 491, 491, 477, 435, 491, 491, 435, 491, 491, + /* 20 */ 491, 435, 435, 491, 491, 491, 491, 491, 491, 491, + /* 30 */ 491, 491, 491, 491, 491, 491, 491, 491, 491, 491, + /* 40 */ 491, 491, 491, 491, 491, 491, 491, 491, 491, 358, + /* 50 */ 397, 491, 358, 358, 358, 358, 491, 358, 358, 491, + /* 60 */ 445, 445, 445, 324, 491, 491, 407, 407, 380, 380, + /* 70 */ 491, 400, 491, 491, 491, 491, 491, 491, 491, 491, + /* 80 */ 393, 400, 358, 358, 392, 491, 491, 491, 491, 455, + /* 90 */ 449, 451, 459, 450, 458, 454, 443, 491, 491, 491, + /* 100 */ 491, 491, 368, 491, 440, 491, 429, 491, 491, 491, + /* 110 */ 434, 427, 491, 491, 428, 480, 491, 407, 491, 491, + /* 120 */ 491, 491, 491, 491, 491, 491, 491, 426, 491, 405, + /* 130 */ 491, 491, 479, 375, 446, 478, 370, 394, 491, 423, + /* 140 */ 407, 395, 398, 347, 366, 490, 376, 490, 363, 359, + /* 150 */ 439, 439, 439, 439, 407, 407, 407, 367, 491, 367, + /* 160 */ 383, 491, 371, 441, 367, 491, 491, 460, 491, 371, + /* 170 */ 491, 491, 491, 491, 364, 491, 491, 491, 396, 491, + /* 180 */ 491, 491, 491, 491, 374, 491, 491, 491, 491, 371, + /* 190 */ 491, 491, 491, 388, 491, 380, 491, 491, 383, 491, + /* 200 */ 491, 411, 421, 362, 491, 491, 491, 491, 491, 491, + /* 210 */ 483, 408, 484, 355, 488, 403, 404, 482, 391, 487, + /* 220 */ 481, 373, 327, 326, 325, 352, 413, 412, 390, 328, + /* 230 */ 410, 361, 409, 406, 357, 354, 438, 414, 371, 353, + /* 240 */ 430, 333, 332, 334, 356, 330, 432, 372, 329, 415, + /* 250 */ 417, 401, 331, 425, 381, 382, 418, 416, 384, 402, + /* 260 */ 424, 463, 343, 464, 465, 466, 341, 462, 448, 344, + /* 270 */ 474, 476, 475, 447, 342, 467, 468, 388, 471, 442, + /* 280 */ 452, 457, 453, 472, 473, 339, 340, 469, 470, 444, + /* 290 */ 461, 345, 431, 369, 349, 419, 422, 437, 436, 379, + /* 300 */ 378, 351, 386, 387, 456, 350, 377, 374, 365, 336, + /* 310 */ 486, 337, 338, 433, 399, 346, 335, 489, 389, 421, + /* 320 */ 420, 485, 348, 385, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -997,7 +988,7 @@ static public $yy_action = array( */ const YYNOCODE = 108; const YYSTACKDEPTH = 100; - const YYNSTATE = 323; + const YYNSTATE = 324; const YYNRULE = 167; const YYERRORSYMBOL = 67; const YYERRSYMDT = 'yy0'; @@ -1085,10 +1076,10 @@ static public $yy_action = array( 'SHORTTAGEND', 'SHORTTAGSTART', 'XML', 'LDEL', 'RDEL', 'EQUAL', 'ID', 'PTR', 'SPACE', 'SEMICOLON', 'DOLLAR', 'INCDEC', - 'AS', 'APTR', 'LDELSLASH', 'COMMA', - 'COLON', 'UNIMATH', 'OPENP', 'CLOSEP', - 'QMARK', 'MATH', 'ANDSYM', 'TYPECAST', - 'INTEGER', 'DOT', 'BOOLEAN', 'NULL', + 'AS', 'APTR', 'LDELSLASH', 'INTEGER', + 'COMMA', 'COLON', 'UNIMATH', 'OPENP', + 'CLOSEP', 'QMARK', 'MATH', 'ANDSYM', + 'TYPECAST', 'DOT', 'BOOLEAN', 'NULL', 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', 'AT', 'HATCH', 'OPENB', 'CLOSEB', 'VERT', 'NOT', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', @@ -1154,7 +1145,7 @@ static public $yy_action = array( /* 36 */ "attribute ::= SPACE ID EQUAL value", /* 37 */ "attribute ::= SPACE ID EQUAL ternary", /* 38 */ "attribute ::= SPACE ID", - /* 39 */ "attribute ::= SPACE value EQUAL expr", + /* 39 */ "attribute ::= SPACE INTEGER EQUAL expr", /* 40 */ "statements ::= statement", /* 41 */ "statements ::= statements COMMA statement", /* 42 */ "statement ::= DOLLAR varvar EQUAL expr", @@ -1881,8 +1872,8 @@ static public $yy_action = array( 35 => 35, 36 => 35, 37 => 35, + 39 => 35, 38 => 38, - 39 => 39, 40 => 40, 41 => 41, 42 => 42, @@ -1998,23 +1989,23 @@ static public $yy_action = array( */ #line 79 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2006 "smarty_internal_templateparser.php" +#line 1997 "smarty_internal_templateparser.php" #line 85 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2009 "smarty_internal_templateparser.php" +#line 2000 "smarty_internal_templateparser.php" #line 87 "smarty_internal_templateparser.y" function yy_r2(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2012 "smarty_internal_templateparser.php" +#line 2003 "smarty_internal_templateparser.php" #line 93 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->compiler->has_variable_string = false; } -#line 2019 "smarty_internal_templateparser.php" +#line 2010 "smarty_internal_templateparser.php" #line 100 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 2022 "smarty_internal_templateparser.php" +#line 2013 "smarty_internal_templateparser.php" #line 105 "smarty_internal_templateparser.y" function yy_r5(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor)."?>', ENT_QUOTES);?>\n", $this->compiler, false); @@ -2026,7 +2017,7 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2034 "smarty_internal_templateparser.php" +#line 2025 "smarty_internal_templateparser.php" #line 116 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { @@ -2037,31 +2028,31 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2045 "smarty_internal_templateparser.php" +#line 2036 "smarty_internal_templateparser.php" #line 127 "smarty_internal_templateparser.y" function yy_r7(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } -#line 2048 "smarty_internal_templateparser.php" +#line 2039 "smarty_internal_templateparser.php" #line 128 "smarty_internal_templateparser.y" function yy_r8(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } -#line 2051 "smarty_internal_templateparser.php" +#line 2042 "smarty_internal_templateparser.php" #line 130 "smarty_internal_templateparser.y" function yy_r9(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } -#line 2054 "smarty_internal_templateparser.php" +#line 2045 "smarty_internal_templateparser.php" #line 137 "smarty_internal_templateparser.y" function yy_r10(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2057 "smarty_internal_templateparser.php" +#line 2048 "smarty_internal_templateparser.php" #line 147 "smarty_internal_templateparser.y" function yy_r13(){ $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 2060 "smarty_internal_templateparser.php" +#line 2051 "smarty_internal_templateparser.php" #line 150 "smarty_internal_templateparser.y" function yy_r15(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2063 "smarty_internal_templateparser.php" +#line 2054 "smarty_internal_templateparser.php" #line 151 "smarty_internal_templateparser.y" function yy_r16(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2066 "smarty_internal_templateparser.php" +#line 2057 "smarty_internal_templateparser.php" #line 153 "smarty_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 2069 "smarty_internal_templateparser.php" +#line 2060 "smarty_internal_templateparser.php" #line 155 "smarty_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')) { @@ -2076,7 +2067,7 @@ static public $yy_action = array( } } } -#line 2084 "smarty_internal_templateparser.php" +#line 2075 "smarty_internal_templateparser.php" #line 169 "smarty_internal_templateparser.y" function yy_r19(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { @@ -2091,63 +2082,63 @@ static public $yy_action = array( } } } -#line 2099 "smarty_internal_templateparser.php" +#line 2090 "smarty_internal_templateparser.php" #line 183 "smarty_internal_templateparser.y" function yy_r20(){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 2105 "smarty_internal_templateparser.php" +#line 2096 "smarty_internal_templateparser.php" #line 187 "smarty_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 2111 "smarty_internal_templateparser.php" +#line 2102 "smarty_internal_templateparser.php" #line 192 "smarty_internal_templateparser.y" function yy_r22(){ if ($this->yystack[$this->yyidx + -11]->minor != 'for') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -11]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -11]->minor,array('start'=>$this->yystack[$this->yyidx + -9]->minor,'ifexp'=>$this->yystack[$this->yyidx + -6]->minor,'varloop'=>$this->yystack[$this->yyidx + -2]->minor,'loop'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2118 "smarty_internal_templateparser.php" +#line 2109 "smarty_internal_templateparser.php" #line 197 "smarty_internal_templateparser.y" function yy_r23(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2121 "smarty_internal_templateparser.php" +#line 2112 "smarty_internal_templateparser.php" #line 198 "smarty_internal_templateparser.y" function yy_r24(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2124 "smarty_internal_templateparser.php" +#line 2115 "smarty_internal_templateparser.php" #line 200 "smarty_internal_templateparser.y" function yy_r25(){ 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 2131 "smarty_internal_templateparser.php" +#line 2122 "smarty_internal_templateparser.php" #line 205 "smarty_internal_templateparser.y" function yy_r26(){ if ($this->yystack[$this->yyidx + -9]->minor != 'foreach') { $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('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2138 "smarty_internal_templateparser.php" +#line 2129 "smarty_internal_templateparser.php" #line 210 "smarty_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 2145 "smarty_internal_templateparser.php" +#line 2136 "smarty_internal_templateparser.php" #line 215 "smarty_internal_templateparser.y" function yy_r28(){ if ($this->yystack[$this->yyidx + -9]->minor != 'foreach') { $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('from'=>$this->yystack[$this->yyidx + -7]->minor,'item'=>$this->yystack[$this->yyidx + -1]->minor,'key'=>$this->yystack[$this->yyidx + -4]->minor)); } -#line 2152 "smarty_internal_templateparser.php" +#line 2143 "smarty_internal_templateparser.php" #line 222 "smarty_internal_templateparser.y" function yy_r29(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2155 "smarty_internal_templateparser.php" +#line 2146 "smarty_internal_templateparser.php" #line 223 "smarty_internal_templateparser.y" function yy_r30(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -3]->minor[0],'modifier')) { @@ -2162,40 +2153,37 @@ static public $yy_action = array( } } } -#line 2170 "smarty_internal_templateparser.php" +#line 2161 "smarty_internal_templateparser.php" #line 237 "smarty_internal_templateparser.y" function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2173 "smarty_internal_templateparser.php" +#line 2164 "smarty_internal_templateparser.php" #line 244 "smarty_internal_templateparser.y" function yy_r32(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2176 "smarty_internal_templateparser.php" +#line 2167 "smarty_internal_templateparser.php" #line 248 "smarty_internal_templateparser.y" function yy_r34(){ $this->_retvalue = array(); } -#line 2179 "smarty_internal_templateparser.php" +#line 2170 "smarty_internal_templateparser.php" #line 251 "smarty_internal_templateparser.y" function yy_r35(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2182 "smarty_internal_templateparser.php" +#line 2173 "smarty_internal_templateparser.php" #line 254 "smarty_internal_templateparser.y" function yy_r38(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2185 "smarty_internal_templateparser.php" -#line 255 "smarty_internal_templateparser.y" - function yy_r39(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); var_dump($this->_retvalue); } -#line 2188 "smarty_internal_templateparser.php" +#line 2176 "smarty_internal_templateparser.php" #line 261 "smarty_internal_templateparser.y" function yy_r40(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2191 "smarty_internal_templateparser.php" +#line 2179 "smarty_internal_templateparser.php" #line 262 "smarty_internal_templateparser.y" function yy_r41(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2194 "smarty_internal_templateparser.php" +#line 2182 "smarty_internal_templateparser.php" #line 264 "smarty_internal_templateparser.y" function yy_r42(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2197 "smarty_internal_templateparser.php" +#line 2185 "smarty_internal_templateparser.php" #line 270 "smarty_internal_templateparser.y" function yy_r43(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2200 "smarty_internal_templateparser.php" +#line 2188 "smarty_internal_templateparser.php" #line 273 "smarty_internal_templateparser.y" function yy_r45(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2203 "smarty_internal_templateparser.php" +#line 2191 "smarty_internal_templateparser.php" #line 274 "smarty_internal_templateparser.y" function yy_r46(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { @@ -2210,135 +2198,135 @@ static public $yy_action = array( } } } -#line 2218 "smarty_internal_templateparser.php" +#line 2206 "smarty_internal_templateparser.php" #line 291 "smarty_internal_templateparser.y" function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2221 "smarty_internal_templateparser.php" +#line 2209 "smarty_internal_templateparser.php" #line 293 "smarty_internal_templateparser.y" function yy_r49(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } -#line 2224 "smarty_internal_templateparser.php" +#line 2212 "smarty_internal_templateparser.php" #line 300 "smarty_internal_templateparser.y" function yy_r51(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2227 "smarty_internal_templateparser.php" +#line 2215 "smarty_internal_templateparser.php" #line 314 "smarty_internal_templateparser.y" function yy_r55(){$this->_retvalue = ' & '; } -#line 2230 "smarty_internal_templateparser.php" +#line 2218 "smarty_internal_templateparser.php" #line 322 "smarty_internal_templateparser.y" function yy_r60(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2233 "smarty_internal_templateparser.php" +#line 2221 "smarty_internal_templateparser.php" #line 330 "smarty_internal_templateparser.y" function yy_r64(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2236 "smarty_internal_templateparser.php" +#line 2224 "smarty_internal_templateparser.php" #line 334 "smarty_internal_templateparser.y" function yy_r66(){ $this->_retvalue = str_replace(array('."".','"".','.""'),array('.','',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); } -#line 2239 "smarty_internal_templateparser.php" +#line 2227 "smarty_internal_templateparser.php" #line 335 "smarty_internal_templateparser.y" function yy_r67(){ $this->_retvalue = "''"; } -#line 2242 "smarty_internal_templateparser.php" +#line 2230 "smarty_internal_templateparser.php" #line 337 "smarty_internal_templateparser.y" function yy_r68(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2245 "smarty_internal_templateparser.php" +#line 2233 "smarty_internal_templateparser.php" #line 338 "smarty_internal_templateparser.y" function yy_r69(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2248 "smarty_internal_templateparser.php" +#line 2236 "smarty_internal_templateparser.php" #line 340 "smarty_internal_templateparser.y" function yy_r70(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2251 "smarty_internal_templateparser.php" +#line 2239 "smarty_internal_templateparser.php" #line 341 "smarty_internal_templateparser.y" function yy_r71(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2254 "smarty_internal_templateparser.php" +#line 2242 "smarty_internal_templateparser.php" #line 343 "smarty_internal_templateparser.y" function yy_r72(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2257 "smarty_internal_templateparser.php" +#line 2245 "smarty_internal_templateparser.php" #line 345 "smarty_internal_templateparser.y" function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2260 "smarty_internal_templateparser.php" +#line 2248 "smarty_internal_templateparser.php" #line 347 "smarty_internal_templateparser.y" function yy_r74(){ $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 2263 "smarty_internal_templateparser.php" +#line 2251 "smarty_internal_templateparser.php" #line 349 "smarty_internal_templateparser.y" function yy_r75(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2266 "smarty_internal_templateparser.php" +#line 2254 "smarty_internal_templateparser.php" #line 358 "smarty_internal_templateparser.y" function yy_r76(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"))->nocache;} } -#line 2270 "smarty_internal_templateparser.php" +#line 2258 "smarty_internal_templateparser.php" #line 361 "smarty_internal_templateparser.y" function yy_r77(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; } -#line 2273 "smarty_internal_templateparser.php" +#line 2261 "smarty_internal_templateparser.php" #line 365 "smarty_internal_templateparser.y" function yy_r79(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2276 "smarty_internal_templateparser.php" +#line 2264 "smarty_internal_templateparser.php" #line 366 "smarty_internal_templateparser.y" function yy_r80(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2279 "smarty_internal_templateparser.php" +#line 2267 "smarty_internal_templateparser.php" #line 369 "smarty_internal_templateparser.y" function yy_r81(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2282 "smarty_internal_templateparser.php" +#line 2270 "smarty_internal_templateparser.php" #line 375 "smarty_internal_templateparser.y" function yy_r82(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2285 "smarty_internal_templateparser.php" +#line 2273 "smarty_internal_templateparser.php" #line 377 "smarty_internal_templateparser.y" function yy_r83(){return; } -#line 2288 "smarty_internal_templateparser.php" +#line 2276 "smarty_internal_templateparser.php" #line 381 "smarty_internal_templateparser.y" function yy_r84(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2291 "smarty_internal_templateparser.php" +#line 2279 "smarty_internal_templateparser.php" #line 384 "smarty_internal_templateparser.y" function yy_r87(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2294 "smarty_internal_templateparser.php" +#line 2282 "smarty_internal_templateparser.php" #line 385 "smarty_internal_templateparser.y" function yy_r88(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2297 "smarty_internal_templateparser.php" +#line 2285 "smarty_internal_templateparser.php" #line 386 "smarty_internal_templateparser.y" function yy_r89(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2300 "smarty_internal_templateparser.php" +#line 2288 "smarty_internal_templateparser.php" #line 387 "smarty_internal_templateparser.y" function yy_r90(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2303 "smarty_internal_templateparser.php" +#line 2291 "smarty_internal_templateparser.php" #line 389 "smarty_internal_templateparser.y" function yy_r91(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2306 "smarty_internal_templateparser.php" +#line 2294 "smarty_internal_templateparser.php" #line 390 "smarty_internal_templateparser.y" function yy_r92(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2309 "smarty_internal_templateparser.php" +#line 2297 "smarty_internal_templateparser.php" #line 394 "smarty_internal_templateparser.y" function yy_r94(){$this->_retvalue = ''; } -#line 2312 "smarty_internal_templateparser.php" +#line 2300 "smarty_internal_templateparser.php" #line 402 "smarty_internal_templateparser.y" function yy_r96(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2315 "smarty_internal_templateparser.php" +#line 2303 "smarty_internal_templateparser.php" #line 404 "smarty_internal_templateparser.y" function yy_r97(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2318 "smarty_internal_templateparser.php" +#line 2306 "smarty_internal_templateparser.php" #line 406 "smarty_internal_templateparser.y" function yy_r98(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2321 "smarty_internal_templateparser.php" +#line 2309 "smarty_internal_templateparser.php" #line 411 "smarty_internal_templateparser.y" function yy_r99(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"))->nocache;} } -#line 2325 "smarty_internal_templateparser.php" +#line 2313 "smarty_internal_templateparser.php" #line 414 "smarty_internal_templateparser.y" function yy_r100(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2328 "smarty_internal_templateparser.php" +#line 2316 "smarty_internal_templateparser.php" #line 416 "smarty_internal_templateparser.y" function yy_r101(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2331 "smarty_internal_templateparser.php" +#line 2319 "smarty_internal_templateparser.php" #line 418 "smarty_internal_templateparser.y" function yy_r102(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2334 "smarty_internal_templateparser.php" +#line 2322 "smarty_internal_templateparser.php" #line 419 "smarty_internal_templateparser.y" function yy_r103(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2337 "smarty_internal_templateparser.php" +#line 2325 "smarty_internal_templateparser.php" #line 420 "smarty_internal_templateparser.y" function yy_r104(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2340 "smarty_internal_templateparser.php" +#line 2328 "smarty_internal_templateparser.php" #line 421 "smarty_internal_templateparser.y" function yy_r105(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2343 "smarty_internal_templateparser.php" +#line 2331 "smarty_internal_templateparser.php" #line 423 "smarty_internal_templateparser.y" function yy_r106(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2346 "smarty_internal_templateparser.php" +#line 2334 "smarty_internal_templateparser.php" #line 429 "smarty_internal_templateparser.y" function yy_r107(){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)) { @@ -2347,127 +2335,127 @@ static public $yy_action = array( $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2355 "smarty_internal_templateparser.php" +#line 2343 "smarty_internal_templateparser.php" #line 440 "smarty_internal_templateparser.y" function yy_r108(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2358 "smarty_internal_templateparser.php" +#line 2346 "smarty_internal_templateparser.php" #line 444 "smarty_internal_templateparser.y" function yy_r109(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2361 "smarty_internal_templateparser.php" +#line 2349 "smarty_internal_templateparser.php" #line 448 "smarty_internal_templateparser.y" function yy_r111(){ return; } -#line 2364 "smarty_internal_templateparser.php" +#line 2352 "smarty_internal_templateparser.php" #line 453 "smarty_internal_templateparser.y" function yy_r112(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2367 "smarty_internal_templateparser.php" +#line 2355 "smarty_internal_templateparser.php" #line 454 "smarty_internal_templateparser.y" function yy_r113(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2370 "smarty_internal_templateparser.php" +#line 2358 "smarty_internal_templateparser.php" #line 470 "smarty_internal_templateparser.y" function yy_r116(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2373 "smarty_internal_templateparser.php" +#line 2361 "smarty_internal_templateparser.php" #line 471 "smarty_internal_templateparser.y" function yy_r117(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2376 "smarty_internal_templateparser.php" +#line 2364 "smarty_internal_templateparser.php" #line 478 "smarty_internal_templateparser.y" function yy_r119(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2379 "smarty_internal_templateparser.php" +#line 2367 "smarty_internal_templateparser.php" #line 483 "smarty_internal_templateparser.y" function yy_r121(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2382 "smarty_internal_templateparser.php" +#line 2370 "smarty_internal_templateparser.php" #line 485 "smarty_internal_templateparser.y" function yy_r122(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2385 "smarty_internal_templateparser.php" +#line 2373 "smarty_internal_templateparser.php" #line 486 "smarty_internal_templateparser.y" function yy_r123(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2388 "smarty_internal_templateparser.php" +#line 2376 "smarty_internal_templateparser.php" #line 487 "smarty_internal_templateparser.y" function yy_r124(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2391 "smarty_internal_templateparser.php" +#line 2379 "smarty_internal_templateparser.php" #line 489 "smarty_internal_templateparser.y" function yy_r126(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2394 "smarty_internal_templateparser.php" +#line 2382 "smarty_internal_templateparser.php" #line 490 "smarty_internal_templateparser.y" function yy_r127(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2397 "smarty_internal_templateparser.php" +#line 2385 "smarty_internal_templateparser.php" #line 491 "smarty_internal_templateparser.y" function yy_r128(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2400 "smarty_internal_templateparser.php" +#line 2388 "smarty_internal_templateparser.php" #line 492 "smarty_internal_templateparser.y" function yy_r129(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2403 "smarty_internal_templateparser.php" +#line 2391 "smarty_internal_templateparser.php" #line 493 "smarty_internal_templateparser.y" function yy_r130(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2406 "smarty_internal_templateparser.php" +#line 2394 "smarty_internal_templateparser.php" #line 494 "smarty_internal_templateparser.y" function yy_r131(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2409 "smarty_internal_templateparser.php" +#line 2397 "smarty_internal_templateparser.php" #line 500 "smarty_internal_templateparser.y" function yy_r137(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2412 "smarty_internal_templateparser.php" +#line 2400 "smarty_internal_templateparser.php" #line 502 "smarty_internal_templateparser.y" function yy_r138(){$this->_retvalue = '=='; } -#line 2415 "smarty_internal_templateparser.php" +#line 2403 "smarty_internal_templateparser.php" #line 503 "smarty_internal_templateparser.y" function yy_r139(){$this->_retvalue = '!='; } -#line 2418 "smarty_internal_templateparser.php" +#line 2406 "smarty_internal_templateparser.php" #line 504 "smarty_internal_templateparser.y" function yy_r140(){$this->_retvalue = '>'; } -#line 2421 "smarty_internal_templateparser.php" +#line 2409 "smarty_internal_templateparser.php" #line 505 "smarty_internal_templateparser.y" function yy_r141(){$this->_retvalue = '<'; } -#line 2424 "smarty_internal_templateparser.php" +#line 2412 "smarty_internal_templateparser.php" #line 506 "smarty_internal_templateparser.y" function yy_r142(){$this->_retvalue = '>='; } -#line 2427 "smarty_internal_templateparser.php" +#line 2415 "smarty_internal_templateparser.php" #line 507 "smarty_internal_templateparser.y" function yy_r143(){$this->_retvalue = '<='; } -#line 2430 "smarty_internal_templateparser.php" +#line 2418 "smarty_internal_templateparser.php" #line 508 "smarty_internal_templateparser.y" function yy_r144(){$this->_retvalue = '==='; } -#line 2433 "smarty_internal_templateparser.php" +#line 2421 "smarty_internal_templateparser.php" #line 509 "smarty_internal_templateparser.y" function yy_r145(){$this->_retvalue = '!=='; } -#line 2436 "smarty_internal_templateparser.php" +#line 2424 "smarty_internal_templateparser.php" #line 510 "smarty_internal_templateparser.y" function yy_r146(){$this->_retvalue = '%'; } -#line 2439 "smarty_internal_templateparser.php" +#line 2427 "smarty_internal_templateparser.php" #line 512 "smarty_internal_templateparser.y" function yy_r147(){$this->_retvalue = '&&'; } -#line 2442 "smarty_internal_templateparser.php" +#line 2430 "smarty_internal_templateparser.php" #line 513 "smarty_internal_templateparser.y" function yy_r148(){$this->_retvalue = '||'; } -#line 2445 "smarty_internal_templateparser.php" +#line 2433 "smarty_internal_templateparser.php" #line 514 "smarty_internal_templateparser.y" function yy_r149(){$this->_retvalue = ' XOR '; } -#line 2448 "smarty_internal_templateparser.php" +#line 2436 "smarty_internal_templateparser.php" #line 519 "smarty_internal_templateparser.y" function yy_r150(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2451 "smarty_internal_templateparser.php" +#line 2439 "smarty_internal_templateparser.php" #line 521 "smarty_internal_templateparser.y" function yy_r152(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2454 "smarty_internal_templateparser.php" +#line 2442 "smarty_internal_templateparser.php" #line 522 "smarty_internal_templateparser.y" function yy_r153(){ return; } -#line 2457 "smarty_internal_templateparser.php" +#line 2445 "smarty_internal_templateparser.php" #line 523 "smarty_internal_templateparser.y" function yy_r154(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2460 "smarty_internal_templateparser.php" +#line 2448 "smarty_internal_templateparser.php" #line 524 "smarty_internal_templateparser.y" function yy_r155(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2463 "smarty_internal_templateparser.php" +#line 2451 "smarty_internal_templateparser.php" #line 533 "smarty_internal_templateparser.y" function yy_r159(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } -#line 2466 "smarty_internal_templateparser.php" +#line 2454 "smarty_internal_templateparser.php" #line 534 "smarty_internal_templateparser.y" function yy_r160(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } -#line 2469 "smarty_internal_templateparser.php" +#line 2457 "smarty_internal_templateparser.php" #line 536 "smarty_internal_templateparser.y" function yy_r162(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2472 "smarty_internal_templateparser.php" +#line 2460 "smarty_internal_templateparser.php" #line 537 "smarty_internal_templateparser.y" function yy_r163(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + 0]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } -#line 2475 "smarty_internal_templateparser.php" +#line 2463 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2584,7 +2572,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2593 "smarty_internal_templateparser.php" +#line 2581 "smarty_internal_templateparser.php" } /** @@ -2608,7 +2596,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2618 "smarty_internal_templateparser.php" +#line 2606 "smarty_internal_templateparser.php" } /**