From f83fd47acce2cca0a500dcdff5616b1fd88e7198 Mon Sep 17 00:00:00 2001 From: "Uwe.Tews" Date: Tue, 12 Jan 2010 19:05:26 +0000 Subject: [PATCH] - changed back modifer handling in parser. Some restrictions still apply: if modifiers are used in side {if...} expression or in mathematical expressions parentheses must be used. --- change_log.txt | 8 + .../smarty_internal_templateparser.php | 2466 ++++++++--------- 2 files changed, 1229 insertions(+), 1245 deletions(-) diff --git a/change_log.txt b/change_log.txt index a79a1051..6e1aa4d9 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,11 @@ +01/12/2010 +- changed back modifer handling in parser. Some restrictions still apply: + if modifiers are used in side {if...} expression or in mathematical expressions + parentheses must be used. + + +###beta 6#### + 01/11/2010 - added \n to the compiled code of the {if},{else},{elseif},{/if} tags to get output of newlines as expected by the template source - added missing support of insert plugins diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index 517b49a1..8de702cb 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -132,686 +132,662 @@ class Smarty_Internal_Templateparser#line 79 "smarty_internal_templateparser.php #line 126 "smarty_internal_templateparser.php" - const TP_IFEXP = 1; - const TP_UNIMATH = 2; - const TP_VERT = 3; - const TP_COLON = 4; - const TP_EXP = 5; - const TP_COMMENT = 6; - const TP_PHPSTARTTAG = 7; - const TP_PHPENDTAG = 8; - const TP_OTHER = 9; - const TP_FAKEPHPSTARTTAG = 10; - const TP_PHP_CODE = 11; - const TP_PHP_CODE_START_DOUBLEQUOTE = 12; - const TP_PHP_CODE_DOUBLEQUOTE = 13; - const TP_PHP_HEREDOC_START = 14; - const TP_PHP_HEREDOC_END = 15; - const TP_PHP_NOWDOC_START = 16; - const TP_PHP_NOWDOC_END = 17; - const TP_PHP_DQ_CONTENT = 18; - const TP_PHP_DQ_EMBED_START = 19; - const TP_PHP_DQ_EMBED_END = 20; - const TP_LITERALSTART = 21; - const TP_LITERALEND = 22; - const TP_LITERAL = 23; - const TP_LDEL = 24; - const TP_RDEL = 25; - const TP_DOLLAR = 26; - const TP_ID = 27; - const TP_EQUAL = 28; - const TP_FOREACH = 29; - const TP_PTR = 30; - const TP_IF = 31; - const TP_SPACE = 32; - const TP_FOR = 33; - const TP_SEMICOLON = 34; - const TP_INCDEC = 35; - const TP_TO = 36; - const TP_AS = 37; - const TP_APTR = 38; - const TP_LDELSLASH = 39; - const TP_INTEGER = 40; - const TP_COMMA = 41; - const TP_MATH = 42; - const TP_ANDSYM = 43; - const TP_OPENP = 44; - const TP_CLOSEP = 45; - const TP_QMARK = 46; - const TP_VAL = 47; - const TP_NOT = 48; - const TP_TYPECAST = 49; - const TP_DOT = 50; - const TP_BOOLEAN = 51; - const TP_NULL = 52; - const TP_SINGLEQUOTESTRING = 53; - const TP_QUOTE = 54; - const TP_DOUBLECOLON = 55; - const TP_MOD = 56; - const TP_AT = 57; - const TP_HATCH = 58; - const TP_OPENB = 59; - const TP_CLOSEB = 60; - const TP_ISIN = 61; - const TP_ISDIVBY = 62; - const TP_ISNOTDIVBY = 63; - const TP_ISEVEN = 64; - const TP_ISNOTEVEN = 65; - const TP_ISEVENBY = 66; - const TP_ISNOTEVENBY = 67; - const TP_ISODD = 68; - const TP_ISNOTODD = 69; - const TP_ISODDBY = 70; - const TP_ISNOTODDBY = 71; - const TP_INSTANCEOF = 72; - const TP_EQUALS = 73; - const TP_NOTEQUALS = 74; - const TP_GREATERTHAN = 75; - const TP_LESSTHAN = 76; - const TP_GREATEREQUAL = 77; - const TP_LESSEQUAL = 78; - const TP_IDENTITY = 79; - const TP_NONEIDENTITY = 80; - const TP_LAND = 81; - const TP_LOR = 82; - const TP_LXOR = 83; - const TP_BACKTICK = 84; - const TP_DOLLARID = 85; + const TP_COMMENT = 1; + const TP_PHPSTARTTAG = 2; + const TP_PHPENDTAG = 3; + const TP_OTHER = 4; + const TP_FAKEPHPSTARTTAG = 5; + const TP_PHP_CODE = 6; + const TP_PHP_CODE_START_DOUBLEQUOTE = 7; + const TP_PHP_CODE_DOUBLEQUOTE = 8; + const TP_PHP_HEREDOC_START = 9; + const TP_PHP_HEREDOC_END = 10; + const TP_PHP_NOWDOC_START = 11; + const TP_PHP_NOWDOC_END = 12; + const TP_PHP_DQ_CONTENT = 13; + const TP_PHP_DQ_EMBED_START = 14; + const TP_PHP_DQ_EMBED_END = 15; + const TP_LITERALSTART = 16; + const TP_LITERALEND = 17; + const TP_LITERAL = 18; + const TP_LDEL = 19; + const TP_RDEL = 20; + const TP_DOLLAR = 21; + const TP_ID = 22; + const TP_EQUAL = 23; + const TP_FOREACH = 24; + const TP_PTR = 25; + const TP_IF = 26; + const TP_SPACE = 27; + const TP_UNIMATH = 28; + const TP_FOR = 29; + const TP_SEMICOLON = 30; + const TP_INCDEC = 31; + const TP_TO = 32; + const TP_AS = 33; + const TP_APTR = 34; + const TP_LDELSLASH = 35; + const TP_INTEGER = 36; + const TP_COMMA = 37; + const TP_COLON = 38; + const TP_MATH = 39; + const TP_ANDSYM = 40; + const TP_OPENP = 41; + const TP_CLOSEP = 42; + const TP_QMARK = 43; + const TP_NOT = 44; + const TP_TYPECAST = 45; + const TP_DOT = 46; + const TP_BOOLEAN = 47; + const TP_NULL = 48; + const TP_SINGLEQUOTESTRING = 49; + const TP_QUOTE = 50; + const TP_DOUBLECOLON = 51; + const TP_AT = 52; + const TP_HATCH = 53; + const TP_OPENB = 54; + const TP_CLOSEB = 55; + const TP_VERT = 56; + const TP_ISIN = 57; + const TP_ISDIVBY = 58; + const TP_ISNOTDIVBY = 59; + const TP_ISEVEN = 60; + const TP_ISNOTEVEN = 61; + const TP_ISEVENBY = 62; + const TP_ISNOTEVENBY = 63; + const TP_ISODD = 64; + const TP_ISNOTODD = 65; + const TP_ISODDBY = 66; + const TP_ISNOTODDBY = 67; + const TP_INSTANCEOF = 68; + const TP_EQUALS = 69; + const TP_NOTEQUALS = 70; + const TP_GREATERTHAN = 71; + const TP_LESSTHAN = 72; + const TP_GREATEREQUAL = 73; + const TP_LESSEQUAL = 74; + const TP_IDENTITY = 75; + const TP_NONEIDENTITY = 76; + const TP_MOD = 77; + const TP_LAND = 78; + const TP_LOR = 79; + const TP_LXOR = 80; + const TP_BACKTICK = 81; + const TP_DOLLARID = 82; const YY_NO_ACTION = 589; const YY_ACCEPT_ACTION = 588; const YY_ERROR_ACTION = 587; - const YY_SZ_ACTTAB = 1447; + const YY_SZ_ACTTAB = 1335; static public $yy_action = array( - /* 0 */ 50, 43, 19, 20, 381, 364, 18, 30, 347, 348, - /* 10 */ 35, 33, 314, 97, 185, 92, 39, 87, 93, 250, - /* 20 */ 17, 362, 3, 305, 84, 54, 366, 100, 373, 181, - /* 30 */ 48, 200, 249, 288, 122, 180, 235, 109, 193, 105, - /* 40 */ 50, 367, 14, 251, 243, 366, 47, 49, 208, 290, - /* 50 */ 291, 301, 55, 146, 298, 235, 58, 2, 105, 171, - /* 60 */ 365, 143, 3, 217, 86, 172, 161, 379, 37, 8, - /* 70 */ 45, 44, 232, 298, 374, 209, 297, 109, 193, 365, - /* 80 */ 130, 180, 24, 46, 277, 245, 47, 49, 244, 290, - /* 90 */ 291, 301, 55, 48, 86, 229, 58, 2, 247, 50, - /* 100 */ 353, 269, 275, 276, 282, 283, 284, 281, 280, 278, - /* 110 */ 279, 265, 266, 344, 326, 329, 248, 328, 22, 17, - /* 120 */ 180, 3, 305, 96, 184, 455, 58, 4, 53, 335, - /* 130 */ 327, 340, 180, 45, 44, 287, 109, 193, 180, 48, - /* 140 */ 17, 24, 109, 305, 23, 47, 49, 277, 290, 291, - /* 150 */ 301, 55, 202, 50, 5, 58, 2, 267, 588, 52, - /* 160 */ 258, 321, 323, 336, 269, 275, 276, 282, 283, 284, - /* 170 */ 281, 280, 278, 279, 265, 3, 15, 86, 182, 45, - /* 180 */ 44, 144, 326, 329, 309, 328, 307, 36, 271, 185, - /* 190 */ 109, 193, 129, 277, 343, 24, 53, 158, 327, 47, - /* 200 */ 49, 180, 290, 291, 301, 55, 1, 297, 185, 58, - /* 210 */ 269, 275, 276, 282, 283, 284, 281, 280, 278, 279, - /* 220 */ 265, 50, 25, 57, 29, 255, 38, 260, 366, 259, - /* 230 */ 341, 320, 321, 323, 369, 194, 60, 180, 79, 106, - /* 240 */ 103, 83, 12, 3, 17, 86, 176, 305, 34, 8, - /* 250 */ 370, 270, 215, 67, 180, 388, 298, 342, 109, 193, - /* 260 */ 130, 50, 365, 24, 180, 211, 366, 47, 49, 188, - /* 270 */ 290, 291, 301, 55, 164, 185, 235, 58, 2, 105, - /* 280 */ 71, 17, 359, 3, 305, 86, 177, 26, 370, 86, - /* 290 */ 132, 69, 268, 185, 298, 204, 324, 294, 109, 193, - /* 300 */ 365, 50, 231, 24, 180, 375, 366, 47, 49, 134, - /* 310 */ 290, 291, 301, 55, 164, 458, 235, 58, 2, 105, - /* 320 */ 312, 58, 458, 3, 297, 86, 174, 180, 370, 17, - /* 330 */ 124, 66, 305, 23, 298, 165, 366, 153, 109, 178, - /* 340 */ 365, 50, 307, 24, 157, 297, 235, 47, 49, 105, - /* 350 */ 290, 291, 301, 55, 240, 187, 159, 58, 2, 105, - /* 360 */ 185, 366, 202, 3, 298, 96, 184, 119, 21, 160, - /* 370 */ 365, 235, 17, 361, 105, 305, 254, 7, 109, 193, - /* 380 */ 365, 50, 297, 14, 137, 138, 192, 47, 49, 298, - /* 390 */ 290, 291, 301, 55, 206, 365, 293, 58, 2, 297, - /* 400 */ 297, 366, 125, 3, 368, 96, 173, 135, 325, 149, - /* 410 */ 331, 235, 16, 293, 105, 230, 56, 297, 109, 193, - /* 420 */ 331, 50, 297, 24, 51, 332, 56, 47, 49, 298, - /* 430 */ 290, 291, 301, 55, 198, 365, 293, 58, 2, 17, - /* 440 */ 360, 366, 305, 3, 171, 96, 179, 151, 339, 166, - /* 450 */ 302, 235, 307, 37, 105, 180, 188, 180, 109, 193, - /* 460 */ 287, 50, 6, 14, 51, 185, 7, 47, 49, 298, - /* 470 */ 290, 291, 301, 55, 154, 365, 123, 58, 2, 307, - /* 480 */ 11, 168, 8, 3, 185, 90, 184, 330, 45, 44, - /* 490 */ 9, 297, 239, 130, 180, 105, 287, 17, 109, 193, - /* 500 */ 305, 165, 277, 24, 8, 148, 338, 47, 49, 385, - /* 510 */ 290, 291, 301, 55, 50, 130, 365, 58, 2, 269, - /* 520 */ 275, 276, 282, 283, 284, 281, 280, 278, 279, 265, - /* 530 */ 205, 27, 270, 295, 366, 127, 3, 8, 86, 176, - /* 540 */ 180, 77, 167, 117, 235, 273, 303, 105, 130, 140, - /* 550 */ 297, 109, 193, 180, 223, 234, 24, 371, 227, 366, - /* 560 */ 47, 49, 298, 290, 291, 301, 55, 155, 365, 235, - /* 570 */ 58, 121, 105, 272, 43, 19, 20, 381, 364, 18, - /* 580 */ 30, 347, 348, 35, 33, 150, 297, 298, 296, 366, - /* 590 */ 61, 241, 156, 365, 351, 180, 350, 128, 180, 235, - /* 600 */ 170, 180, 105, 180, 263, 220, 214, 17, 366, 17, - /* 610 */ 183, 370, 305, 300, 67, 337, 118, 298, 235, 387, - /* 620 */ 180, 105, 180, 365, 372, 304, 139, 366, 274, 116, - /* 630 */ 370, 180, 180, 67, 113, 164, 298, 235, 218, 94, - /* 640 */ 105, 297, 365, 315, 89, 371, 264, 186, 383, 370, - /* 650 */ 371, 287, 67, 262, 366, 298, 322, 73, 376, 333, - /* 660 */ 334, 365, 60, 292, 78, 85, 103, 83, 76, 17, - /* 670 */ 366, 53, 189, 185, 3, 114, 370, 12, 118, 67, - /* 680 */ 235, 387, 298, 105, 371, 316, 74, 198, 365, 109, - /* 690 */ 82, 371, 370, 41, 40, 67, 190, 89, 298, 318, - /* 700 */ 75, 16, 180, 32, 365, 366, 213, 75, 197, 366, - /* 710 */ 386, 136, 91, 128, 266, 235, 170, 128, 105, 235, - /* 720 */ 169, 221, 105, 306, 95, 226, 297, 370, 308, 4, - /* 730 */ 67, 370, 131, 298, 67, 306, 72, 298, 366, 365, - /* 740 */ 147, 210, 75, 365, 109, 366, 128, 310, 235, 170, - /* 750 */ 319, 105, 371, 164, 195, 235, 218, 207, 105, 285, - /* 760 */ 370, 115, 203, 67, 261, 133, 298, 370, 120, 145, - /* 770 */ 67, 162, 365, 298, 366, 246, 196, 371, 110, 365, - /* 780 */ 297, 163, 141, 297, 235, 80, 98, 105, 225, 36, - /* 790 */ 271, 212, 89, 355, 371, 253, 370, 199, 89, 67, - /* 800 */ 111, 366, 298, 354, 357, 63, 108, 289, 365, 112, - /* 810 */ 31, 235, 256, 257, 105, 317, 371, 104, 313, 28, - /* 820 */ 81, 311, 64, 370, 107, 142, 67, 233, 366, 298, - /* 830 */ 252, 309, 10, 185, 51, 365, 164, 299, 235, 218, - /* 840 */ 88, 105, 180, 42, 366, 237, 62, 306, 13, 126, - /* 850 */ 370, 242, 164, 67, 235, 218, 298, 105, 38, 228, - /* 860 */ 59, 293, 365, 332, 332, 332, 370, 332, 332, 67, - /* 870 */ 332, 332, 298, 366, 332, 216, 332, 332, 365, 332, - /* 880 */ 332, 164, 332, 235, 102, 101, 105, 332, 332, 332, - /* 890 */ 332, 332, 366, 332, 332, 370, 332, 332, 67, 332, - /* 900 */ 164, 298, 235, 219, 332, 105, 332, 365, 332, 332, - /* 910 */ 332, 332, 332, 332, 370, 332, 332, 67, 332, 366, - /* 920 */ 298, 332, 332, 332, 332, 332, 365, 164, 332, 235, - /* 930 */ 236, 332, 105, 332, 332, 366, 332, 332, 332, 332, - /* 940 */ 332, 370, 332, 164, 67, 235, 352, 298, 105, 332, - /* 950 */ 332, 332, 332, 365, 332, 332, 332, 370, 332, 332, - /* 960 */ 67, 332, 332, 298, 366, 332, 332, 332, 332, 365, - /* 970 */ 332, 332, 164, 332, 235, 201, 332, 105, 332, 332, - /* 980 */ 332, 332, 332, 366, 332, 332, 370, 332, 332, 67, - /* 990 */ 332, 164, 298, 235, 377, 332, 105, 332, 365, 332, - /* 1000 */ 332, 332, 332, 332, 332, 370, 332, 332, 67, 332, - /* 1010 */ 366, 298, 332, 332, 332, 332, 332, 365, 164, 332, - /* 1020 */ 175, 191, 332, 105, 332, 332, 366, 332, 332, 332, - /* 1030 */ 332, 332, 370, 332, 164, 67, 235, 99, 298, 105, - /* 1040 */ 332, 332, 332, 332, 365, 332, 332, 332, 370, 332, - /* 1050 */ 332, 67, 332, 332, 298, 366, 332, 332, 332, 332, - /* 1060 */ 365, 332, 332, 164, 332, 235, 222, 332, 105, 332, - /* 1070 */ 332, 332, 332, 332, 366, 332, 332, 370, 332, 332, - /* 1080 */ 67, 332, 164, 298, 235, 238, 332, 105, 332, 365, - /* 1090 */ 332, 332, 332, 332, 332, 332, 370, 332, 332, 67, - /* 1100 */ 332, 366, 298, 332, 332, 332, 332, 332, 365, 164, - /* 1110 */ 332, 235, 358, 332, 105, 332, 332, 366, 332, 332, - /* 1120 */ 332, 332, 332, 370, 332, 164, 67, 235, 363, 298, - /* 1130 */ 105, 332, 332, 332, 332, 365, 332, 332, 332, 370, - /* 1140 */ 332, 332, 67, 332, 332, 298, 366, 332, 332, 332, - /* 1150 */ 332, 365, 332, 332, 164, 332, 235, 380, 332, 105, - /* 1160 */ 332, 332, 332, 332, 332, 366, 332, 332, 370, 332, - /* 1170 */ 332, 67, 332, 164, 298, 235, 286, 332, 105, 332, - /* 1180 */ 365, 332, 332, 332, 332, 332, 332, 370, 332, 332, - /* 1190 */ 67, 332, 366, 298, 332, 332, 332, 332, 332, 365, - /* 1200 */ 164, 332, 235, 384, 332, 105, 332, 332, 366, 332, - /* 1210 */ 332, 332, 332, 332, 370, 332, 164, 67, 235, 224, - /* 1220 */ 298, 105, 332, 332, 332, 332, 365, 332, 332, 332, - /* 1230 */ 370, 332, 332, 67, 332, 332, 298, 366, 332, 332, - /* 1240 */ 332, 332, 365, 332, 332, 164, 332, 235, 378, 332, - /* 1250 */ 105, 332, 332, 332, 332, 332, 366, 332, 332, 370, - /* 1260 */ 332, 332, 67, 332, 164, 298, 235, 356, 332, 105, - /* 1270 */ 332, 365, 332, 332, 332, 332, 332, 332, 370, 332, - /* 1280 */ 332, 67, 332, 366, 298, 332, 332, 332, 332, 332, - /* 1290 */ 365, 164, 332, 235, 349, 332, 105, 332, 332, 366, - /* 1300 */ 332, 332, 332, 332, 332, 370, 332, 164, 67, 235, - /* 1310 */ 382, 298, 105, 332, 332, 332, 332, 365, 332, 332, - /* 1320 */ 332, 370, 332, 332, 67, 332, 332, 298, 366, 332, - /* 1330 */ 332, 332, 332, 365, 332, 332, 164, 332, 235, 345, - /* 1340 */ 332, 105, 332, 332, 332, 332, 332, 366, 332, 332, - /* 1350 */ 370, 332, 332, 67, 332, 164, 298, 235, 346, 332, - /* 1360 */ 105, 332, 365, 332, 332, 332, 332, 332, 332, 370, - /* 1370 */ 332, 332, 67, 332, 366, 298, 332, 332, 332, 332, - /* 1380 */ 332, 365, 164, 332, 235, 366, 332, 105, 332, 332, - /* 1390 */ 332, 332, 332, 164, 332, 235, 370, 332, 105, 65, - /* 1400 */ 332, 366, 298, 332, 332, 332, 332, 370, 365, 164, - /* 1410 */ 68, 235, 366, 298, 105, 332, 332, 332, 332, 365, - /* 1420 */ 152, 332, 235, 370, 332, 105, 70, 332, 332, 298, - /* 1430 */ 332, 332, 332, 332, 332, 365, 332, 332, 332, 332, - /* 1440 */ 298, 332, 332, 332, 332, 332, 365, + /* 0 */ 4, 11, 96, 53, 303, 101, 309, 187, 322, 44, + /* 10 */ 214, 242, 42, 195, 18, 195, 110, 208, 33, 376, + /* 20 */ 185, 317, 9, 43, 48, 46, 49, 14, 386, 378, + /* 30 */ 324, 55, 185, 205, 58, 2, 33, 143, 42, 317, + /* 40 */ 16, 195, 185, 588, 52, 249, 265, 288, 352, 43, + /* 50 */ 48, 137, 38, 246, 268, 271, 259, 260, 266, 258, + /* 60 */ 257, 247, 245, 250, 251, 298, 356, 185, 40, 27, + /* 70 */ 36, 337, 343, 28, 21, 342, 341, 25, 24, 246, + /* 80 */ 268, 271, 259, 260, 266, 258, 257, 247, 245, 250, + /* 90 */ 251, 280, 252, 78, 226, 274, 273, 33, 369, 4, + /* 100 */ 317, 85, 179, 178, 14, 354, 3, 54, 44, 220, + /* 110 */ 4, 37, 215, 382, 143, 110, 208, 8, 289, 20, + /* 120 */ 176, 35, 110, 104, 46, 49, 110, 386, 378, 324, + /* 130 */ 55, 42, 230, 58, 2, 277, 4, 254, 91, 183, + /* 140 */ 285, 5, 43, 48, 330, 44, 275, 95, 12, 88, + /* 150 */ 51, 94, 110, 208, 33, 374, 33, 317, 35, 317, + /* 160 */ 34, 46, 49, 360, 386, 378, 324, 55, 22, 361, + /* 170 */ 58, 2, 246, 268, 271, 259, 260, 266, 258, 257, + /* 180 */ 247, 245, 250, 251, 4, 14, 85, 190, 39, 207, + /* 190 */ 82, 304, 57, 44, 294, 143, 291, 351, 51, 293, + /* 200 */ 110, 208, 235, 15, 195, 290, 35, 30, 286, 46, + /* 210 */ 49, 173, 386, 378, 324, 55, 295, 292, 58, 2, + /* 220 */ 4, 14, 85, 184, 33, 264, 362, 317, 267, 44, + /* 230 */ 211, 143, 29, 185, 85, 124, 110, 208, 255, 54, + /* 240 */ 300, 263, 35, 297, 56, 46, 49, 185, 386, 378, + /* 250 */ 324, 55, 32, 31, 58, 2, 4, 199, 85, 180, + /* 260 */ 14, 264, 362, 38, 267, 44, 58, 85, 225, 314, + /* 270 */ 143, 296, 110, 189, 140, 54, 195, 263, 35, 172, + /* 280 */ 281, 46, 49, 51, 386, 378, 324, 55, 14, 356, + /* 290 */ 58, 2, 4, 33, 91, 183, 317, 34, 143, 58, + /* 300 */ 455, 44, 175, 465, 178, 185, 325, 195, 110, 208, + /* 310 */ 133, 382, 37, 195, 9, 171, 33, 46, 49, 317, + /* 320 */ 386, 378, 324, 55, 310, 356, 58, 2, 4, 255, + /* 330 */ 91, 182, 316, 339, 212, 56, 172, 44, 185, 195, + /* 340 */ 195, 388, 185, 382, 110, 208, 119, 253, 185, 207, + /* 350 */ 35, 172, 232, 46, 49, 104, 386, 378, 324, 55, + /* 360 */ 185, 356, 58, 2, 4, 236, 98, 183, 347, 301, + /* 370 */ 73, 364, 135, 44, 299, 195, 330, 172, 195, 169, + /* 380 */ 110, 208, 248, 185, 373, 359, 35, 356, 185, 46, + /* 390 */ 49, 311, 386, 378, 324, 55, 122, 6, 58, 2, + /* 400 */ 4, 177, 91, 181, 262, 265, 288, 33, 371, 44, + /* 410 */ 317, 356, 131, 358, 148, 334, 110, 208, 139, 373, + /* 420 */ 195, 240, 9, 1, 7, 46, 49, 356, 386, 378, + /* 430 */ 324, 55, 370, 356, 58, 2, 4, 202, 85, 190, + /* 440 */ 134, 354, 17, 150, 368, 44, 375, 354, 373, 168, + /* 450 */ 458, 231, 110, 208, 373, 356, 33, 458, 35, 317, + /* 460 */ 185, 46, 49, 145, 386, 378, 324, 55, 172, 354, + /* 470 */ 58, 109, 4, 68, 85, 188, 163, 33, 356, 340, + /* 480 */ 229, 44, 388, 156, 306, 318, 195, 345, 110, 208, + /* 490 */ 142, 195, 195, 81, 35, 174, 233, 46, 49, 132, + /* 500 */ 386, 378, 324, 55, 125, 356, 58, 244, 223, 345, + /* 510 */ 185, 40, 27, 36, 337, 343, 28, 21, 342, 341, + /* 520 */ 25, 24, 336, 366, 350, 111, 336, 302, 76, 65, + /* 530 */ 237, 195, 219, 153, 224, 104, 219, 108, 313, 104, + /* 540 */ 167, 345, 221, 213, 344, 195, 363, 72, 344, 126, + /* 550 */ 372, 72, 307, 195, 372, 336, 330, 308, 115, 195, + /* 560 */ 330, 193, 331, 89, 195, 80, 59, 106, 87, 323, + /* 570 */ 114, 315, 321, 103, 345, 66, 195, 344, 195, 195, + /* 580 */ 72, 353, 336, 372, 113, 77, 345, 116, 195, 330, + /* 590 */ 89, 149, 79, 64, 106, 87, 136, 84, 336, 319, + /* 600 */ 345, 345, 356, 141, 344, 93, 224, 72, 219, 108, + /* 610 */ 372, 104, 210, 97, 198, 144, 330, 335, 356, 33, + /* 620 */ 344, 336, 186, 72, 204, 336, 372, 239, 97, 367, + /* 630 */ 356, 219, 330, 367, 104, 219, 123, 19, 104, 319, + /* 640 */ 47, 45, 195, 344, 276, 74, 70, 344, 102, 372, + /* 650 */ 72, 196, 74, 372, 336, 330, 241, 228, 74, 330, + /* 660 */ 203, 191, 367, 385, 219, 67, 99, 104, 200, 97, + /* 670 */ 336, 185, 284, 97, 121, 138, 344, 75, 367, 72, + /* 680 */ 219, 123, 372, 104, 312, 387, 272, 112, 330, 356, + /* 690 */ 356, 83, 344, 345, 329, 72, 218, 336, 372, 5, + /* 700 */ 379, 201, 382, 345, 330, 192, 50, 219, 154, 256, + /* 710 */ 104, 216, 279, 336, 283, 278, 197, 15, 23, 344, + /* 720 */ 336, 305, 72, 219, 336, 372, 104, 282, 367, 287, + /* 730 */ 219, 330, 227, 104, 219, 61, 100, 104, 346, 26, + /* 740 */ 230, 372, 344, 30, 355, 71, 344, 330, 372, 72, + /* 750 */ 380, 211, 372, 336, 330, 377, 92, 86, 330, 338, + /* 760 */ 10, 224, 151, 219, 108, 63, 104, 357, 375, 209, + /* 770 */ 105, 319, 195, 90, 41, 344, 348, 234, 72, 129, + /* 780 */ 336, 372, 60, 13, 329, 349, 329, 330, 367, 329, + /* 790 */ 219, 123, 329, 104, 206, 329, 336, 329, 329, 329, + /* 800 */ 329, 329, 344, 329, 237, 72, 219, 153, 372, 104, + /* 810 */ 329, 333, 336, 329, 330, 329, 280, 329, 344, 329, + /* 820 */ 224, 72, 219, 107, 372, 104, 329, 329, 238, 329, + /* 830 */ 330, 3, 329, 329, 344, 329, 332, 72, 329, 329, + /* 840 */ 372, 336, 329, 329, 329, 329, 330, 110, 329, 367, + /* 850 */ 329, 219, 123, 329, 104, 329, 329, 336, 329, 329, + /* 860 */ 329, 329, 365, 344, 329, 367, 72, 219, 164, 372, + /* 870 */ 104, 329, 243, 329, 329, 330, 336, 329, 329, 344, + /* 880 */ 329, 329, 72, 329, 367, 372, 219, 158, 329, 104, + /* 890 */ 329, 330, 336, 22, 361, 329, 329, 329, 344, 329, + /* 900 */ 367, 72, 219, 155, 372, 104, 329, 329, 336, 329, + /* 910 */ 330, 329, 329, 329, 344, 329, 367, 72, 219, 62, + /* 920 */ 372, 104, 329, 329, 336, 329, 330, 329, 329, 329, + /* 930 */ 344, 329, 367, 72, 219, 166, 372, 104, 329, 329, + /* 940 */ 336, 329, 330, 329, 329, 329, 344, 329, 367, 72, + /* 950 */ 219, 130, 372, 104, 329, 329, 336, 329, 330, 329, + /* 960 */ 329, 329, 344, 329, 367, 72, 219, 162, 372, 104, + /* 970 */ 329, 329, 336, 329, 330, 329, 329, 329, 344, 329, + /* 980 */ 367, 72, 219, 120, 372, 104, 329, 329, 336, 329, + /* 990 */ 330, 329, 329, 329, 344, 329, 367, 72, 219, 157, + /* 1000 */ 372, 104, 329, 329, 336, 329, 330, 329, 329, 329, + /* 1010 */ 344, 329, 367, 72, 219, 165, 372, 104, 329, 329, + /* 1020 */ 336, 329, 330, 329, 329, 329, 344, 329, 367, 72, + /* 1030 */ 219, 160, 372, 104, 329, 329, 336, 329, 330, 329, + /* 1040 */ 329, 329, 344, 329, 367, 72, 219, 170, 372, 104, + /* 1050 */ 329, 329, 336, 329, 330, 329, 329, 329, 344, 329, + /* 1060 */ 367, 72, 219, 146, 372, 104, 329, 329, 336, 329, + /* 1070 */ 330, 329, 329, 329, 344, 329, 367, 72, 219, 128, + /* 1080 */ 372, 104, 329, 329, 336, 329, 330, 329, 329, 329, + /* 1090 */ 344, 329, 367, 72, 219, 159, 372, 104, 329, 329, + /* 1100 */ 336, 329, 330, 329, 329, 329, 344, 329, 367, 72, + /* 1110 */ 194, 117, 372, 104, 329, 329, 336, 329, 330, 329, + /* 1120 */ 329, 329, 344, 329, 367, 72, 219, 161, 372, 104, + /* 1130 */ 329, 329, 336, 329, 330, 329, 329, 329, 344, 329, + /* 1140 */ 367, 72, 219, 147, 372, 104, 329, 329, 336, 329, + /* 1150 */ 330, 329, 329, 329, 344, 329, 367, 72, 219, 127, + /* 1160 */ 372, 104, 329, 329, 336, 329, 330, 329, 329, 329, + /* 1170 */ 344, 329, 367, 72, 219, 118, 372, 104, 329, 329, + /* 1180 */ 336, 329, 330, 329, 329, 329, 344, 329, 367, 72, + /* 1190 */ 219, 152, 372, 104, 329, 329, 336, 329, 330, 329, + /* 1200 */ 329, 329, 344, 329, 367, 72, 219, 329, 372, 104, + /* 1210 */ 329, 329, 336, 329, 330, 329, 329, 329, 344, 329, + /* 1220 */ 328, 69, 219, 329, 372, 104, 329, 329, 336, 336, + /* 1230 */ 330, 329, 329, 329, 327, 329, 222, 326, 219, 219, + /* 1240 */ 372, 104, 104, 329, 329, 336, 330, 329, 329, 329, + /* 1250 */ 217, 329, 329, 270, 329, 219, 372, 372, 104, 329, + /* 1260 */ 329, 336, 330, 330, 329, 329, 329, 329, 336, 381, + /* 1270 */ 329, 219, 329, 372, 104, 329, 320, 336, 219, 330, + /* 1280 */ 329, 104, 329, 329, 336, 261, 329, 219, 329, 372, + /* 1290 */ 104, 329, 383, 336, 219, 330, 372, 104, 329, 329, + /* 1300 */ 336, 384, 330, 219, 329, 372, 104, 329, 269, 329, + /* 1310 */ 219, 330, 372, 104, 329, 329, 329, 329, 330, 329, + /* 1320 */ 329, 372, 329, 329, 329, 329, 329, 330, 372, 329, + /* 1330 */ 329, 329, 329, 329, 330, ); static public $yy_lookahead = array( - /* 0 */ 2, 61, 62, 63, 64, 65, 66, 67, 68, 69, - /* 10 */ 70, 71, 11, 12, 3, 14, 24, 16, 26, 27, - /* 20 */ 24, 25, 24, 27, 26, 27, 90, 29, 25, 31, - /* 30 */ 2, 33, 40, 27, 98, 32, 100, 39, 40, 103, - /* 40 */ 2, 58, 44, 51, 52, 90, 48, 49, 112, 51, - /* 50 */ 52, 53, 54, 98, 118, 100, 58, 59, 103, 50, - /* 60 */ 124, 99, 24, 57, 26, 27, 104, 112, 59, 44, - /* 70 */ 42, 43, 27, 118, 25, 50, 114, 39, 40, 124, - /* 80 */ 55, 32, 44, 72, 56, 60, 48, 49, 60, 51, - /* 90 */ 52, 53, 54, 2, 26, 27, 58, 59, 60, 2, - /* 100 */ 25, 73, 74, 75, 76, 77, 78, 79, 80, 81, - /* 110 */ 82, 83, 9, 25, 7, 8, 25, 10, 36, 24, - /* 120 */ 32, 24, 27, 26, 27, 25, 58, 24, 21, 22, - /* 130 */ 23, 25, 32, 42, 43, 35, 39, 40, 32, 2, - /* 140 */ 24, 44, 39, 27, 28, 48, 49, 56, 51, 52, - /* 150 */ 53, 54, 57, 2, 41, 58, 59, 54, 87, 88, - /* 160 */ 89, 90, 91, 22, 73, 74, 75, 76, 77, 78, - /* 170 */ 79, 80, 81, 82, 83, 24, 2, 26, 27, 42, - /* 180 */ 43, 122, 7, 8, 125, 10, 127, 84, 85, 3, - /* 190 */ 39, 40, 99, 56, 25, 44, 21, 104, 23, 48, - /* 200 */ 49, 32, 51, 52, 53, 54, 32, 114, 3, 58, - /* 210 */ 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, - /* 220 */ 83, 2, 24, 27, 38, 29, 4, 31, 90, 33, - /* 230 */ 25, 89, 90, 91, 45, 30, 98, 32, 100, 101, - /* 240 */ 102, 103, 44, 24, 24, 26, 27, 27, 28, 44, - /* 250 */ 112, 90, 27, 115, 32, 35, 118, 25, 39, 40, - /* 260 */ 55, 2, 124, 44, 32, 40, 90, 48, 49, 4, - /* 270 */ 51, 52, 53, 54, 98, 3, 100, 58, 59, 103, - /* 280 */ 119, 24, 25, 24, 27, 26, 27, 24, 112, 26, - /* 290 */ 27, 115, 131, 3, 118, 38, 17, 25, 39, 40, - /* 300 */ 124, 2, 30, 44, 32, 27, 90, 48, 49, 99, - /* 310 */ 51, 52, 53, 54, 98, 25, 100, 58, 59, 103, - /* 320 */ 25, 58, 32, 24, 114, 26, 27, 32, 112, 24, - /* 330 */ 99, 115, 27, 28, 118, 104, 90, 122, 39, 40, - /* 340 */ 124, 2, 127, 44, 98, 114, 100, 48, 49, 103, - /* 350 */ 51, 52, 53, 54, 107, 108, 100, 58, 59, 103, - /* 360 */ 3, 90, 57, 24, 118, 26, 27, 99, 46, 98, - /* 370 */ 124, 100, 24, 25, 103, 27, 120, 28, 39, 40, - /* 380 */ 124, 2, 114, 44, 99, 99, 38, 48, 49, 118, - /* 390 */ 51, 52, 53, 54, 37, 124, 128, 58, 59, 114, - /* 400 */ 114, 90, 99, 24, 58, 26, 27, 99, 20, 98, - /* 410 */ 91, 100, 28, 128, 103, 96, 97, 114, 39, 40, - /* 420 */ 91, 2, 114, 44, 30, 96, 97, 48, 49, 118, - /* 430 */ 51, 52, 53, 54, 50, 124, 128, 58, 59, 24, - /* 440 */ 25, 90, 27, 24, 50, 26, 27, 122, 25, 98, - /* 450 */ 25, 100, 127, 59, 103, 32, 4, 32, 39, 40, - /* 460 */ 35, 2, 28, 44, 30, 3, 28, 48, 49, 118, - /* 470 */ 51, 52, 53, 54, 122, 124, 99, 58, 59, 127, - /* 480 */ 28, 104, 44, 24, 3, 26, 27, 25, 42, 43, - /* 490 */ 41, 114, 100, 55, 32, 103, 35, 24, 39, 40, - /* 500 */ 27, 104, 56, 44, 44, 105, 25, 48, 49, 60, - /* 510 */ 51, 52, 53, 54, 2, 55, 124, 58, 59, 73, - /* 520 */ 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, - /* 530 */ 57, 38, 90, 25, 90, 99, 24, 44, 26, 27, - /* 540 */ 32, 110, 98, 123, 100, 84, 25, 103, 55, 123, - /* 550 */ 114, 39, 40, 32, 26, 27, 44, 126, 45, 90, - /* 560 */ 48, 49, 118, 51, 52, 53, 54, 98, 124, 100, - /* 570 */ 58, 99, 103, 131, 61, 62, 63, 64, 65, 66, - /* 580 */ 67, 68, 69, 70, 71, 34, 114, 118, 25, 90, - /* 590 */ 105, 25, 41, 124, 25, 32, 25, 98, 32, 100, - /* 600 */ 101, 32, 103, 32, 25, 106, 107, 24, 90, 24, - /* 610 */ 27, 112, 27, 25, 115, 25, 98, 118, 100, 101, - /* 620 */ 32, 103, 32, 124, 25, 25, 99, 90, 84, 110, - /* 630 */ 112, 32, 32, 115, 110, 98, 118, 100, 101, 26, - /* 640 */ 103, 114, 124, 94, 95, 126, 25, 129, 130, 112, - /* 650 */ 126, 35, 115, 25, 90, 118, 6, 7, 121, 9, - /* 660 */ 10, 124, 98, 27, 100, 101, 102, 103, 110, 24, - /* 670 */ 90, 21, 27, 3, 24, 110, 112, 44, 98, 115, - /* 680 */ 100, 101, 118, 103, 126, 18, 19, 50, 124, 39, - /* 690 */ 26, 126, 112, 116, 117, 115, 94, 95, 118, 92, - /* 700 */ 93, 28, 32, 4, 124, 90, 92, 93, 111, 90, - /* 710 */ 130, 99, 26, 98, 9, 100, 101, 98, 103, 100, - /* 720 */ 101, 106, 103, 126, 26, 106, 114, 112, 27, 24, - /* 730 */ 115, 112, 123, 118, 115, 126, 110, 118, 90, 124, - /* 740 */ 27, 92, 93, 124, 39, 90, 98, 27, 100, 101, - /* 750 */ 8, 103, 126, 98, 106, 100, 101, 27, 103, 54, - /* 760 */ 112, 110, 37, 115, 45, 99, 118, 112, 99, 34, - /* 770 */ 115, 25, 124, 118, 90, 60, 121, 126, 110, 124, - /* 780 */ 114, 25, 98, 114, 100, 101, 102, 103, 45, 84, - /* 790 */ 85, 94, 95, 25, 126, 45, 112, 94, 95, 115, - /* 800 */ 110, 90, 118, 25, 25, 105, 45, 40, 124, 98, - /* 810 */ 4, 100, 101, 102, 103, 15, 126, 32, 13, 46, - /* 820 */ 26, 114, 27, 112, 120, 123, 115, 109, 90, 118, - /* 830 */ 32, 125, 44, 3, 30, 124, 98, 127, 100, 101, - /* 840 */ 26, 103, 32, 32, 90, 113, 105, 126, 109, 123, - /* 850 */ 112, 107, 98, 115, 100, 101, 118, 103, 4, 121, - /* 860 */ 123, 128, 124, 132, 132, 132, 112, 132, 132, 115, - /* 870 */ 132, 132, 118, 90, 132, 121, 132, 132, 124, 132, - /* 880 */ 132, 98, 132, 100, 101, 102, 103, 132, 132, 132, - /* 890 */ 132, 132, 90, 132, 132, 112, 132, 132, 115, 132, - /* 900 */ 98, 118, 100, 101, 132, 103, 132, 124, 132, 132, - /* 910 */ 132, 132, 132, 132, 112, 132, 132, 115, 132, 90, - /* 920 */ 118, 132, 132, 132, 132, 132, 124, 98, 132, 100, - /* 930 */ 101, 132, 103, 132, 132, 90, 132, 132, 132, 132, - /* 940 */ 132, 112, 132, 98, 115, 100, 101, 118, 103, 132, - /* 950 */ 132, 132, 132, 124, 132, 132, 132, 112, 132, 132, - /* 960 */ 115, 132, 132, 118, 90, 132, 132, 132, 132, 124, - /* 970 */ 132, 132, 98, 132, 100, 101, 132, 103, 132, 132, - /* 980 */ 132, 132, 132, 90, 132, 132, 112, 132, 132, 115, - /* 990 */ 132, 98, 118, 100, 101, 132, 103, 132, 124, 132, - /* 1000 */ 132, 132, 132, 132, 132, 112, 132, 132, 115, 132, - /* 1010 */ 90, 118, 132, 132, 132, 132, 132, 124, 98, 132, - /* 1020 */ 100, 101, 132, 103, 132, 132, 90, 132, 132, 132, - /* 1030 */ 132, 132, 112, 132, 98, 115, 100, 101, 118, 103, - /* 1040 */ 132, 132, 132, 132, 124, 132, 132, 132, 112, 132, - /* 1050 */ 132, 115, 132, 132, 118, 90, 132, 132, 132, 132, - /* 1060 */ 124, 132, 132, 98, 132, 100, 101, 132, 103, 132, - /* 1070 */ 132, 132, 132, 132, 90, 132, 132, 112, 132, 132, - /* 1080 */ 115, 132, 98, 118, 100, 101, 132, 103, 132, 124, - /* 1090 */ 132, 132, 132, 132, 132, 132, 112, 132, 132, 115, - /* 1100 */ 132, 90, 118, 132, 132, 132, 132, 132, 124, 98, - /* 1110 */ 132, 100, 101, 132, 103, 132, 132, 90, 132, 132, - /* 1120 */ 132, 132, 132, 112, 132, 98, 115, 100, 101, 118, - /* 1130 */ 103, 132, 132, 132, 132, 124, 132, 132, 132, 112, - /* 1140 */ 132, 132, 115, 132, 132, 118, 90, 132, 132, 132, - /* 1150 */ 132, 124, 132, 132, 98, 132, 100, 101, 132, 103, - /* 1160 */ 132, 132, 132, 132, 132, 90, 132, 132, 112, 132, - /* 1170 */ 132, 115, 132, 98, 118, 100, 101, 132, 103, 132, - /* 1180 */ 124, 132, 132, 132, 132, 132, 132, 112, 132, 132, - /* 1190 */ 115, 132, 90, 118, 132, 132, 132, 132, 132, 124, - /* 1200 */ 98, 132, 100, 101, 132, 103, 132, 132, 90, 132, - /* 1210 */ 132, 132, 132, 132, 112, 132, 98, 115, 100, 101, - /* 1220 */ 118, 103, 132, 132, 132, 132, 124, 132, 132, 132, - /* 1230 */ 112, 132, 132, 115, 132, 132, 118, 90, 132, 132, - /* 1240 */ 132, 132, 124, 132, 132, 98, 132, 100, 101, 132, - /* 1250 */ 103, 132, 132, 132, 132, 132, 90, 132, 132, 112, - /* 1260 */ 132, 132, 115, 132, 98, 118, 100, 101, 132, 103, - /* 1270 */ 132, 124, 132, 132, 132, 132, 132, 132, 112, 132, - /* 1280 */ 132, 115, 132, 90, 118, 132, 132, 132, 132, 132, - /* 1290 */ 124, 98, 132, 100, 101, 132, 103, 132, 132, 90, - /* 1300 */ 132, 132, 132, 132, 132, 112, 132, 98, 115, 100, - /* 1310 */ 101, 118, 103, 132, 132, 132, 132, 124, 132, 132, - /* 1320 */ 132, 112, 132, 132, 115, 132, 132, 118, 90, 132, - /* 1330 */ 132, 132, 132, 124, 132, 132, 98, 132, 100, 101, - /* 1340 */ 132, 103, 132, 132, 132, 132, 132, 90, 132, 132, - /* 1350 */ 112, 132, 132, 115, 132, 98, 118, 100, 101, 132, - /* 1360 */ 103, 132, 124, 132, 132, 132, 132, 132, 132, 112, - /* 1370 */ 132, 132, 115, 132, 90, 118, 132, 132, 132, 132, - /* 1380 */ 132, 124, 98, 132, 100, 90, 132, 103, 132, 132, - /* 1390 */ 132, 132, 132, 98, 132, 100, 112, 132, 103, 115, - /* 1400 */ 132, 90, 118, 132, 132, 132, 132, 112, 124, 98, - /* 1410 */ 115, 100, 90, 118, 103, 132, 132, 132, 132, 124, - /* 1420 */ 98, 132, 100, 112, 132, 103, 115, 132, 132, 118, - /* 1430 */ 132, 132, 132, 132, 132, 124, 132, 132, 132, 132, - /* 1440 */ 118, 132, 132, 132, 132, 132, 124, + /* 0 */ 19, 37, 21, 22, 20, 24, 20, 26, 20, 28, + /* 10 */ 29, 25, 28, 27, 38, 27, 35, 36, 19, 20, + /* 20 */ 56, 22, 41, 39, 40, 44, 45, 41, 47, 48, + /* 30 */ 49, 50, 56, 34, 53, 54, 19, 51, 28, 22, + /* 40 */ 23, 27, 56, 84, 85, 86, 87, 88, 31, 39, + /* 50 */ 40, 96, 38, 69, 70, 71, 72, 73, 74, 75, + /* 60 */ 76, 77, 78, 79, 80, 55, 111, 56, 57, 58, + /* 70 */ 59, 60, 61, 62, 63, 64, 65, 66, 67, 69, + /* 80 */ 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, + /* 90 */ 80, 4, 1, 2, 42, 4, 5, 19, 20, 19, + /* 100 */ 22, 21, 22, 46, 41, 125, 19, 16, 28, 46, + /* 110 */ 19, 54, 34, 31, 51, 35, 36, 23, 55, 19, + /* 120 */ 97, 41, 35, 100, 44, 45, 35, 47, 48, 49, + /* 130 */ 50, 28, 38, 53, 54, 55, 19, 50, 21, 22, + /* 140 */ 117, 41, 39, 40, 121, 28, 6, 7, 23, 9, + /* 150 */ 25, 11, 35, 36, 19, 20, 19, 22, 41, 22, + /* 160 */ 23, 44, 45, 81, 47, 48, 49, 50, 81, 82, + /* 170 */ 53, 54, 69, 70, 71, 72, 73, 74, 75, 76, + /* 180 */ 77, 78, 79, 80, 19, 41, 21, 22, 19, 52, + /* 190 */ 21, 22, 22, 28, 24, 51, 26, 20, 25, 29, + /* 200 */ 35, 36, 25, 23, 27, 36, 41, 23, 8, 44, + /* 210 */ 45, 20, 47, 48, 49, 50, 47, 48, 53, 54, + /* 220 */ 19, 41, 21, 22, 19, 2, 3, 22, 5, 28, + /* 230 */ 46, 51, 19, 56, 21, 22, 35, 36, 88, 16, + /* 240 */ 17, 18, 41, 93, 94, 44, 45, 56, 47, 48, + /* 250 */ 49, 50, 34, 34, 53, 54, 19, 52, 21, 22, + /* 260 */ 41, 2, 3, 38, 5, 28, 53, 21, 22, 20, + /* 270 */ 51, 20, 35, 36, 96, 16, 27, 18, 41, 101, + /* 280 */ 15, 44, 45, 25, 47, 48, 49, 50, 41, 111, + /* 290 */ 53, 54, 19, 19, 21, 22, 22, 23, 51, 53, + /* 300 */ 20, 28, 20, 56, 46, 56, 20, 27, 35, 36, + /* 310 */ 96, 31, 54, 27, 41, 101, 19, 44, 45, 22, + /* 320 */ 47, 48, 49, 50, 22, 111, 53, 54, 19, 88, + /* 330 */ 21, 22, 20, 20, 93, 94, 101, 28, 56, 27, + /* 340 */ 27, 87, 56, 31, 35, 36, 96, 20, 56, 52, + /* 350 */ 41, 101, 97, 44, 45, 100, 47, 48, 49, 50, + /* 360 */ 56, 111, 53, 54, 19, 22, 21, 22, 20, 20, + /* 370 */ 116, 20, 96, 28, 42, 27, 121, 101, 27, 119, + /* 380 */ 35, 36, 128, 56, 124, 81, 41, 111, 56, 44, + /* 390 */ 45, 22, 47, 48, 49, 50, 96, 37, 53, 54, + /* 400 */ 19, 101, 21, 22, 86, 87, 88, 19, 20, 28, + /* 410 */ 22, 111, 96, 20, 119, 55, 35, 36, 96, 124, + /* 420 */ 27, 52, 41, 27, 28, 44, 45, 111, 47, 48, + /* 430 */ 49, 50, 124, 111, 53, 54, 19, 22, 21, 22, + /* 440 */ 96, 125, 38, 119, 42, 28, 122, 125, 124, 119, + /* 450 */ 20, 36, 35, 36, 124, 111, 19, 27, 41, 22, + /* 460 */ 56, 44, 45, 96, 47, 48, 49, 50, 101, 125, + /* 470 */ 53, 107, 19, 102, 21, 22, 30, 19, 111, 20, + /* 480 */ 22, 28, 87, 37, 20, 20, 27, 123, 35, 36, + /* 490 */ 96, 27, 27, 107, 41, 101, 42, 44, 45, 120, + /* 500 */ 47, 48, 49, 50, 120, 111, 53, 21, 22, 123, + /* 510 */ 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, + /* 520 */ 66, 67, 87, 128, 20, 107, 87, 13, 14, 102, + /* 530 */ 95, 27, 97, 98, 95, 100, 97, 98, 20, 100, + /* 540 */ 102, 123, 103, 104, 109, 27, 20, 112, 109, 120, + /* 550 */ 115, 112, 20, 27, 115, 87, 121, 20, 107, 27, + /* 560 */ 121, 126, 127, 95, 27, 97, 98, 99, 100, 20, + /* 570 */ 107, 20, 20, 42, 123, 22, 27, 109, 27, 27, + /* 580 */ 112, 20, 87, 115, 107, 107, 123, 96, 27, 121, + /* 590 */ 95, 22, 97, 98, 99, 100, 120, 21, 87, 123, + /* 600 */ 123, 123, 111, 96, 109, 21, 95, 112, 97, 98, + /* 610 */ 115, 100, 91, 92, 103, 96, 121, 53, 111, 19, + /* 620 */ 109, 87, 22, 112, 108, 87, 115, 91, 92, 95, + /* 630 */ 111, 97, 121, 95, 100, 97, 98, 43, 100, 123, + /* 640 */ 113, 114, 27, 109, 89, 90, 112, 109, 27, 115, + /* 650 */ 112, 89, 90, 115, 87, 121, 118, 89, 90, 121, + /* 660 */ 104, 105, 95, 20, 97, 98, 99, 100, 91, 92, + /* 670 */ 87, 56, 91, 92, 96, 96, 109, 107, 95, 112, + /* 680 */ 97, 98, 115, 100, 20, 36, 17, 107, 121, 111, + /* 690 */ 111, 21, 109, 123, 53, 112, 22, 87, 115, 41, + /* 700 */ 20, 118, 31, 123, 121, 95, 68, 97, 98, 99, + /* 710 */ 100, 33, 55, 87, 10, 3, 33, 23, 32, 109, + /* 720 */ 87, 95, 112, 97, 87, 115, 100, 42, 95, 12, + /* 730 */ 97, 121, 95, 100, 97, 98, 99, 100, 22, 43, + /* 740 */ 38, 115, 109, 23, 20, 112, 109, 121, 115, 112, + /* 750 */ 20, 46, 115, 87, 121, 22, 21, 21, 121, 22, + /* 760 */ 41, 95, 30, 97, 98, 102, 100, 111, 122, 103, + /* 770 */ 117, 123, 27, 21, 27, 109, 27, 110, 112, 120, + /* 780 */ 87, 115, 120, 106, 129, 104, 129, 121, 95, 129, + /* 790 */ 97, 98, 129, 100, 106, 129, 87, 129, 129, 129, + /* 800 */ 129, 129, 109, 129, 95, 112, 97, 98, 115, 100, + /* 810 */ 129, 118, 87, 129, 121, 129, 4, 129, 109, 129, + /* 820 */ 95, 112, 97, 98, 115, 100, 129, 129, 103, 129, + /* 830 */ 121, 19, 129, 129, 109, 129, 127, 112, 129, 129, + /* 840 */ 115, 87, 129, 129, 129, 129, 121, 35, 129, 95, + /* 850 */ 129, 97, 98, 129, 100, 129, 129, 87, 129, 129, + /* 860 */ 129, 129, 50, 109, 129, 95, 112, 97, 98, 115, + /* 870 */ 100, 129, 118, 129, 129, 121, 87, 129, 129, 109, + /* 880 */ 129, 129, 112, 129, 95, 115, 97, 98, 129, 100, + /* 890 */ 129, 121, 87, 81, 82, 129, 129, 129, 109, 129, + /* 900 */ 95, 112, 97, 98, 115, 100, 129, 129, 87, 129, + /* 910 */ 121, 129, 129, 129, 109, 129, 95, 112, 97, 98, + /* 920 */ 115, 100, 129, 129, 87, 129, 121, 129, 129, 129, + /* 930 */ 109, 129, 95, 112, 97, 98, 115, 100, 129, 129, + /* 940 */ 87, 129, 121, 129, 129, 129, 109, 129, 95, 112, + /* 950 */ 97, 98, 115, 100, 129, 129, 87, 129, 121, 129, + /* 960 */ 129, 129, 109, 129, 95, 112, 97, 98, 115, 100, + /* 970 */ 129, 129, 87, 129, 121, 129, 129, 129, 109, 129, + /* 980 */ 95, 112, 97, 98, 115, 100, 129, 129, 87, 129, + /* 990 */ 121, 129, 129, 129, 109, 129, 95, 112, 97, 98, + /* 1000 */ 115, 100, 129, 129, 87, 129, 121, 129, 129, 129, + /* 1010 */ 109, 129, 95, 112, 97, 98, 115, 100, 129, 129, + /* 1020 */ 87, 129, 121, 129, 129, 129, 109, 129, 95, 112, + /* 1030 */ 97, 98, 115, 100, 129, 129, 87, 129, 121, 129, + /* 1040 */ 129, 129, 109, 129, 95, 112, 97, 98, 115, 100, + /* 1050 */ 129, 129, 87, 129, 121, 129, 129, 129, 109, 129, + /* 1060 */ 95, 112, 97, 98, 115, 100, 129, 129, 87, 129, + /* 1070 */ 121, 129, 129, 129, 109, 129, 95, 112, 97, 98, + /* 1080 */ 115, 100, 129, 129, 87, 129, 121, 129, 129, 129, + /* 1090 */ 109, 129, 95, 112, 97, 98, 115, 100, 129, 129, + /* 1100 */ 87, 129, 121, 129, 129, 129, 109, 129, 95, 112, + /* 1110 */ 97, 98, 115, 100, 129, 129, 87, 129, 121, 129, + /* 1120 */ 129, 129, 109, 129, 95, 112, 97, 98, 115, 100, + /* 1130 */ 129, 129, 87, 129, 121, 129, 129, 129, 109, 129, + /* 1140 */ 95, 112, 97, 98, 115, 100, 129, 129, 87, 129, + /* 1150 */ 121, 129, 129, 129, 109, 129, 95, 112, 97, 98, + /* 1160 */ 115, 100, 129, 129, 87, 129, 121, 129, 129, 129, + /* 1170 */ 109, 129, 95, 112, 97, 98, 115, 100, 129, 129, + /* 1180 */ 87, 129, 121, 129, 129, 129, 109, 129, 95, 112, + /* 1190 */ 97, 98, 115, 100, 129, 129, 87, 129, 121, 129, + /* 1200 */ 129, 129, 109, 129, 95, 112, 97, 129, 115, 100, + /* 1210 */ 129, 129, 87, 129, 121, 129, 129, 129, 109, 129, + /* 1220 */ 95, 112, 97, 129, 115, 100, 129, 129, 87, 87, + /* 1230 */ 121, 129, 129, 129, 109, 129, 95, 95, 97, 97, + /* 1240 */ 115, 100, 100, 129, 129, 87, 121, 129, 129, 129, + /* 1250 */ 109, 129, 129, 95, 129, 97, 115, 115, 100, 129, + /* 1260 */ 129, 87, 121, 121, 129, 129, 129, 129, 87, 95, + /* 1270 */ 129, 97, 129, 115, 100, 129, 95, 87, 97, 121, + /* 1280 */ 129, 100, 129, 129, 87, 95, 129, 97, 129, 115, + /* 1290 */ 100, 129, 95, 87, 97, 121, 115, 100, 129, 129, + /* 1300 */ 87, 95, 121, 97, 129, 115, 100, 129, 95, 129, + /* 1310 */ 97, 121, 115, 100, 129, 129, 129, 129, 121, 129, + /* 1320 */ 129, 115, 129, 129, 129, 129, 129, 121, 115, 129, + /* 1330 */ 129, 129, 129, 129, 121, ); - const YY_SHIFT_USE_DFLT = -61; - const YY_SHIFT_MAX = 240; + const YY_SHIFT_USE_DFLT = -37; + const YY_SHIFT_MAX = 244; static public $yy_shift_ofst = array( - /* 0 */ 650, 459, 379, -2, -2, 97, 339, 419, 97, 379, - /* 10 */ 97, 339, 97, 97, 97, 97, 97, 97, 97, 97, - /* 20 */ 97, 97, 97, 97, 97, 97, 97, 97, 97, 97, - /* 30 */ 97, 97, 97, 97, 97, 97, 97, 38, 259, 219, - /* 40 */ 219, 219, 299, 219, 512, 512, 151, 512, 512, 512, - /* 50 */ 512, 263, 650, 107, 205, 103, 175, 272, 68, 394, - /* 60 */ 462, 222, 222, 222, 670, 91, 28, 137, 137, 446, - /* 70 */ 446, 705, 220, 1, 1, 1, 305, 95, 425, 100, - /* 80 */ 599, 585, 585, 434, 583, 600, 585, 667, 585, 667, - /* 90 */ 645, 585, 667, 585, 585, 585, 645, 667, 810, 810, - /* 100 */ 811, 810, 810, 810, 814, 804, 810, 804, 804, 196, - /* 110 */ 257, 348, 290, -4, 116, 473, 415, 9, 186, 169, - /* 120 */ 49, 3, 357, 232, 295, 88, 9, 106, 11, 423, - /* 130 */ 528, 9, 198, 566, 521, 563, 569, 571, 590, 588, - /* 140 */ 9, 481, 9, 508, 804, 798, 830, 788, 854, 830, - /* 150 */ 798, 804, 830, 804, 804, 830, 814, 830, -61, -61, - /* 160 */ -61, -61, -61, -61, -61, -61, -61, -61, -61, 513, - /* 170 */ -60, -8, 25, 493, 438, 461, 460, 460, 384, 460, - /* 180 */ 225, 174, 460, 452, 460, 6, 449, 551, 278, 265, - /* 190 */ 279, 544, 794, 637, 795, 778, 750, 768, 767, 800, - /* 200 */ 785, 756, 701, 686, 664, 720, 698, 715, 725, 730, - /* 210 */ 742, 673, 805, 388, 75, 349, 761, 636, 113, 746, - /* 220 */ 779, 735, 699, 713, 806, 773, 743, 322, 189, -17, - /* 230 */ 141, 45, 628, 613, 633, 616, 719, 579, 621, 346, - /* 240 */ 82, + /* 0 */ 91, 345, 309, -19, -19, 117, 309, 117, 273, 117, + /* 10 */ 117, 117, 273, 117, 117, 381, 117, 117, 117, 117, + /* 20 */ 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, + /* 30 */ 117, 117, 117, 117, 117, 117, 117, 80, 201, 165, + /* 40 */ 165, 237, 417, 417, 417, 417, 417, 417, 417, 417, + /* 50 */ 453, 213, 91, -14, 223, 87, 259, 177, 246, 249, + /* 60 */ 258, 286, 615, 14, 615, 14, 615, 615, 14, 10, + /* 70 */ -16, 103, 103, 812, 140, 17, 140, 137, 140, 280, + /* 80 */ 312, 297, 437, 437, 437, 437, 437, 125, 514, 526, + /* 90 */ 437, 458, 437, 437, 514, 514, 600, 514, 458, 745, + /* 100 */ 745, 747, 752, 173, 173, 173, 745, 454, 11, -1, + /* 110 */ 170, 78, 388, 274, 135, 205, 351, 304, 327, 393, + /* 120 */ 332, 313, -12, -36, 100, 57, 57, 282, 191, 57, + /* 130 */ -24, 561, 57, 504, 465, 464, 57, 518, 532, 552, + /* 140 */ 551, 549, 537, 486, 348, 459, 404, 292, 173, 719, + /* 150 */ 173, 749, 292, 292, 292, 292, 752, 292, 292, 292, + /* 160 */ 292, 292, 292, 749, 292, 292, 292, 225, 173, 173, + /* 170 */ 292, -37, -37, -37, -37, -37, -37, -37, 169, 63, + /* 180 */ 180, 247, 219, 144, 144, 369, 94, 396, 144, 184, + /* 190 */ 144, 446, 430, 360, 82, 415, 265, 576, 732, 716, + /* 200 */ 717, 685, 694, 686, 724, 736, 735, 733, 705, 730, + /* 210 */ 704, 649, 669, 643, 621, 584, 670, 678, 657, 671, + /* 220 */ 674, 680, 683, 658, 638, 641, 594, 664, 712, 702, + /* 230 */ 737, 720, 564, 696, 251, 343, 349, 218, 52, 200, + /* 240 */ 302, 402, 553, 531, 569, ); - const YY_REDUCE_USE_DFLT = -65; - const YY_REDUCE_MAX = 168; + const YY_REDUCE_USE_DFLT = -46; + const YY_REDUCE_MAX = 177; static public $yy_reduce_ofst = array( - /* 0 */ 71, 499, 518, 138, 564, 537, 783, 711, 738, 580, - /* 10 */ 754, 684, 655, 615, 619, 648, 1011, 984, 1027, 1056, - /* 20 */ 1075, 965, 936, 845, 829, 874, 802, 893, 1118, 1102, - /* 30 */ 1257, 1209, 1147, 1238, 1166, 1193, 920, 216, 1295, 1284, - /* 40 */ 1311, 176, -64, -45, 444, 351, 311, 1322, 271, 469, - /* 50 */ 246, 256, 142, 319, 93, 161, 329, -38, 392, 59, - /* 60 */ 231, 268, 285, 308, 377, 577, 577, 577, 577, 577, - /* 70 */ 577, 442, 597, 649, 614, 607, 609, 609, 527, 527, - /* 80 */ 472, 524, 519, 215, 431, 210, 431, 602, 565, 549, - /* 90 */ 558, 690, 703, 651, 626, 668, 431, 697, 669, 666, - /* 100 */ 612, 436, 303, 286, 247, 215, 210, 352, 325, 732, - /* 110 */ 721, 721, 397, 721, 721, 721, 721, 706, 397, 707, - /* 120 */ 707, 707, 397, 707, 707, 707, 706, 707, 397, 707, - /* 130 */ 704, 706, 702, 707, 707, 707, 707, 707, 707, 707, - /* 140 */ 706, 397, 706, 707, 710, 718, 397, 737, 733, 397, - /* 150 */ 739, 710, 397, 710, 710, 397, 744, 397, 741, 726, - /* 160 */ 397, 700, 420, 426, 397, 400, 397, 397, 485, + /* 0 */ -41, 439, 435, 468, 495, 583, 709, 666, 637, 725, + /* 10 */ 754, 693, 567, 511, 538, 610, 933, 917, 949, 965, + /* 20 */ 981, 901, 1013, 821, 805, 837, 853, 869, 997, 1061, + /* 30 */ 789, 1093, 1045, 1077, 1029, 885, 770, 1109, 633, 534, + /* 40 */ 1125, 1141, 1181, 626, 1174, 1158, 1197, 1190, 1213, 1206, + /* 50 */ 1142, 23, 318, 394, 241, 254, 150, 214, 255, 178, + /* 60 */ 324, 367, 250, 322, 178, 316, 300, 276, 344, 527, + /* 70 */ 527, 527, 527, 395, 555, 516, 562, 476, 568, 507, + /* 80 */ 507, 476, 451, 418, 364, 386, 463, 330, 521, 491, + /* 90 */ 477, 386, 570, 580, 577, 536, 386, 581, 478, 579, + /* 100 */ 578, 519, 556, 295, 330, 260, -45, 235, 235, 648, + /* 110 */ 667, 648, 648, 648, 648, 648, 656, 235, 235, 656, + /* 120 */ 235, 656, 656, 235, 659, 646, 646, 235, 235, 646, + /* 130 */ 235, 656, 646, 656, 656, 656, 646, 656, 656, 656, + /* 140 */ 656, 656, 656, 653, 656, 656, 235, 235, 308, 662, + /* 150 */ 308, 688, 235, 235, 235, 235, 681, 235, 235, 235, + /* 160 */ 235, 235, 235, 677, 235, 235, 235, -20, 308, 308, + /* 170 */ 235, 427, 438, 384, 371, 379, 429, 663, ); static public $yyExpectedTokens = array( - /* 0 */ array(6, 7, 9, 10, 21, 24, 39, ), - /* 1 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 2 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 3 */ array(2, 24, 26, 27, 29, 31, 33, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 4 */ array(2, 24, 26, 27, 29, 31, 33, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 5 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 6 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 7 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 8 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 9 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 10 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 11 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 12 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 13 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 14 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 15 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 16 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 17 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 18 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 19 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 20 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 21 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 22 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 23 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 24 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 25 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 26 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 27 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 28 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 29 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 30 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 31 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 32 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 33 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 34 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 35 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 36 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 37 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, 60, ), - /* 38 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 39 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 40 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 41 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 42 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 43 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, 59, ), - /* 44 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, ), - /* 45 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, ), - /* 46 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, ), - /* 47 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, ), - /* 48 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, ), - /* 49 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, ), - /* 50 */ array(2, 24, 26, 27, 39, 40, 44, 48, 49, 51, 52, 53, 54, 58, ), - /* 51 */ array(24, 26, 27, 58, ), - /* 52 */ array(6, 7, 9, 10, 21, 24, 39, ), - /* 53 */ array(7, 8, 10, 21, 22, 23, ), - /* 54 */ array(3, 25, 30, 32, 44, 55, ), - /* 55 */ array(9, 24, 39, 54, 84, 85, ), - /* 56 */ array(7, 8, 10, 21, 23, ), - /* 57 */ array(3, 25, 30, 32, ), - /* 58 */ array(26, 27, 58, ), - /* 59 */ array(30, 50, 59, ), - /* 60 */ array(3, 25, 32, ), - /* 61 */ array(4, 32, ), - /* 62 */ array(4, 32, ), - /* 63 */ array(4, 32, ), - /* 64 */ array(3, 32, ), - /* 65 */ array(2, 25, 42, 43, 56, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ), - /* 66 */ array(2, 42, 43, 56, 60, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ), - /* 67 */ array(2, 42, 43, 56, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ), - /* 68 */ array(2, 42, 43, 56, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ), - /* 69 */ array(42, 43, 56, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ), - /* 70 */ array(42, 43, 56, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, ), - /* 71 */ array(9, 24, 39, 54, 84, 85, ), - /* 72 */ array(24, 27, 28, 35, ), - /* 73 */ array(11, 12, 14, 16, ), - /* 74 */ array(11, 12, 14, 16, ), - /* 75 */ array(11, 12, 14, 16, ), - /* 76 */ array(24, 27, 28, 57, ), - /* 77 */ array(24, 27, 57, ), - /* 78 */ array(25, 32, 35, ), - /* 79 */ array(25, 32, 35, ), - /* 80 */ array(25, 32, ), - /* 81 */ array(24, 27, ), - /* 82 */ array(24, 27, ), - /* 83 */ array(28, 30, ), - /* 84 */ array(24, 27, ), - /* 85 */ array(25, 32, ), - /* 86 */ array(24, 27, ), - /* 87 */ array(18, 19, ), - /* 88 */ array(24, 27, ), - /* 89 */ array(18, 19, ), - /* 90 */ array(24, 27, ), - /* 91 */ array(24, 27, ), - /* 92 */ array(18, 19, ), - /* 93 */ array(24, 27, ), - /* 94 */ array(24, 27, ), - /* 95 */ array(24, 27, ), - /* 96 */ array(24, 27, ), - /* 97 */ array(18, 19, ), - /* 98 */ array(32, ), - /* 99 */ array(32, ), - /* 100 */ array(32, ), - /* 101 */ array(32, ), - /* 102 */ array(32, ), - /* 103 */ array(32, ), - /* 104 */ array(26, ), - /* 105 */ array(30, ), - /* 106 */ array(32, ), - /* 107 */ array(30, ), - /* 108 */ array(30, ), - /* 109 */ array(27, 29, 31, 33, ), - /* 110 */ array(24, 25, 27, 38, ), - /* 111 */ array(24, 25, 27, 38, ), - /* 112 */ array(3, 25, 32, ), - /* 113 */ array(24, 25, 27, ), - /* 114 */ array(24, 27, 28, ), - /* 115 */ array(24, 27, 57, ), - /* 116 */ array(24, 25, 27, ), - /* 117 */ array(50, 59, ), - /* 118 */ array(3, 38, ), - /* 119 */ array(25, 32, ), - /* 120 */ array(25, 32, ), - /* 121 */ array(25, 32, ), - /* 122 */ array(3, 37, ), - /* 123 */ array(25, 32, ), - /* 124 */ array(25, 32, ), - /* 125 */ array(25, 32, ), - /* 126 */ array(50, 59, ), - /* 127 */ array(25, 32, ), - /* 128 */ array(3, 72, ), - /* 129 */ array(25, 32, ), - /* 130 */ array(26, 27, ), - /* 131 */ array(50, 59, ), - /* 132 */ array(24, 44, ), - /* 133 */ array(25, 32, ), - /* 134 */ array(25, 32, ), - /* 135 */ array(25, 32, ), - /* 136 */ array(25, 32, ), - /* 137 */ array(25, 32, ), - /* 138 */ array(25, 32, ), - /* 139 */ array(25, 32, ), - /* 140 */ array(50, 59, ), - /* 141 */ array(3, 25, ), - /* 142 */ array(50, 59, ), - /* 143 */ array(25, 32, ), - /* 144 */ array(30, ), - /* 145 */ array(32, ), - /* 146 */ array(3, ), - /* 147 */ array(44, ), - /* 148 */ array(4, ), - /* 149 */ array(3, ), - /* 150 */ array(32, ), - /* 151 */ array(30, ), - /* 152 */ array(3, ), - /* 153 */ array(30, ), - /* 154 */ array(30, ), - /* 155 */ array(3, ), - /* 156 */ array(26, ), - /* 157 */ array(3, ), - /* 158 */ array(), - /* 159 */ array(), - /* 160 */ array(), - /* 161 */ array(), - /* 162 */ array(), - /* 163 */ array(), - /* 164 */ array(), - /* 165 */ array(), - /* 166 */ array(), - /* 167 */ array(), - /* 168 */ array(), - /* 169 */ array(45, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ), - /* 170 */ array(61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, ), - /* 171 */ array(24, 26, 27, 40, 51, 52, ), - /* 172 */ array(44, 50, 55, 60, ), - /* 173 */ array(38, 44, 55, ), - /* 174 */ array(28, 44, 55, ), - /* 175 */ array(35, 84, ), - /* 176 */ array(44, 55, ), - /* 177 */ array(44, 55, ), - /* 178 */ array(28, 50, ), - /* 179 */ array(44, 55, ), - /* 180 */ array(27, 40, ), - /* 181 */ array(2, 32, ), - /* 182 */ array(44, 55, ), - /* 183 */ array(4, 28, ), - /* 184 */ array(44, 55, ), - /* 185 */ array(27, 57, ), - /* 186 */ array(41, 60, ), - /* 187 */ array(34, 41, ), - /* 188 */ array(27, ), - /* 189 */ array(4, ), - /* 190 */ array(17, ), - /* 191 */ array(84, ), - /* 192 */ array(26, ), - /* 193 */ array(50, ), - /* 194 */ array(27, ), - /* 195 */ array(25, ), - /* 196 */ array(45, ), - /* 197 */ array(25, ), - /* 198 */ array(40, ), - /* 199 */ array(15, ), - /* 200 */ array(32, ), - /* 201 */ array(25, ), - /* 202 */ array(27, ), - /* 203 */ array(26, ), - /* 204 */ array(26, ), - /* 205 */ array(27, ), - /* 206 */ array(26, ), - /* 207 */ array(60, ), - /* 208 */ array(37, ), - /* 209 */ array(27, ), - /* 210 */ array(8, ), - /* 211 */ array(28, ), - /* 212 */ array(13, ), + /* 0 */ array(1, 2, 4, 5, 16, 19, 35, ), + /* 1 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 2 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 3 */ array(19, 21, 22, 24, 26, 28, 29, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 4 */ array(19, 21, 22, 24, 26, 28, 29, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 5 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 6 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 7 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 8 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 9 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 10 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 11 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 12 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 13 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 14 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 15 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 16 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 17 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 18 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 19 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 20 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 21 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 22 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 23 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 24 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 25 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 26 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 27 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 28 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 29 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 30 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 31 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 32 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 33 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 34 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 35 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 36 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 37 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, 55, ), + /* 38 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 39 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 40 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 41 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, 54, ), + /* 42 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 43 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 44 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 45 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 46 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 47 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 48 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 49 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 50 */ array(19, 21, 22, 28, 35, 36, 41, 44, 45, 47, 48, 49, 50, 53, ), + /* 51 */ array(19, 21, 22, 53, ), + /* 52 */ array(1, 2, 4, 5, 16, 19, 35, ), + /* 53 */ array(20, 25, 27, 41, 51, 56, ), + /* 54 */ array(2, 3, 5, 16, 17, 18, ), + /* 55 */ array(4, 19, 35, 50, 81, 82, ), + /* 56 */ array(2, 3, 5, 16, 18, ), + /* 57 */ array(20, 25, 27, 56, ), + /* 58 */ array(21, 22, 53, ), + /* 59 */ array(20, 27, 56, ), + /* 60 */ array(25, 46, 54, ), + /* 61 */ array(20, 27, 56, ), + /* 62 */ array(27, 56, ), + /* 63 */ array(27, 38, ), + /* 64 */ array(27, 56, ), + /* 65 */ array(27, 38, ), + /* 66 */ array(27, 56, ), + /* 67 */ array(27, 56, ), + /* 68 */ array(27, 38, ), + /* 69 */ array(28, 39, 40, 55, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, ), + /* 70 */ array(20, 28, 39, 40, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, ), + /* 71 */ array(28, 39, 40, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, ), + /* 72 */ array(28, 39, 40, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, ), + /* 73 */ array(4, 19, 35, 50, 81, 82, ), + /* 74 */ array(6, 7, 9, 11, ), + /* 75 */ array(19, 22, 23, 31, ), + /* 76 */ array(6, 7, 9, 11, ), + /* 77 */ array(19, 22, 23, 52, ), + /* 78 */ array(6, 7, 9, 11, ), + /* 79 */ array(20, 27, 31, ), + /* 80 */ array(20, 27, 31, ), + /* 81 */ array(19, 22, 52, ), + /* 82 */ array(19, 22, ), + /* 83 */ array(19, 22, ), + /* 84 */ array(19, 22, ), + /* 85 */ array(19, 22, ), + /* 86 */ array(19, 22, ), + /* 87 */ array(23, 25, ), + /* 88 */ array(13, 14, ), + /* 89 */ array(20, 27, ), + /* 90 */ array(19, 22, ), + /* 91 */ array(19, 22, ), + /* 92 */ array(19, 22, ), + /* 93 */ array(19, 22, ), + /* 94 */ array(13, 14, ), + /* 95 */ array(13, 14, ), + /* 96 */ array(19, 22, ), + /* 97 */ array(13, 14, ), + /* 98 */ array(19, 22, ), + /* 99 */ array(27, ), + /* 100 */ array(27, ), + /* 101 */ array(27, ), + /* 102 */ array(21, ), + /* 103 */ array(25, ), + /* 104 */ array(25, ), + /* 105 */ array(25, ), + /* 106 */ array(27, ), + /* 107 */ array(42, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, ), + /* 108 */ array(56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, ), + /* 109 */ array(19, 20, 22, 34, ), + /* 110 */ array(22, 24, 26, 29, ), + /* 111 */ array(19, 20, 22, 34, ), + /* 112 */ array(19, 20, 22, ), + /* 113 */ array(19, 22, 23, ), + /* 114 */ array(19, 20, 22, ), + /* 115 */ array(19, 22, 52, ), + /* 116 */ array(20, 27, ), + /* 117 */ array(56, 81, ), + /* 118 */ array(20, 56, ), + /* 119 */ array(20, 27, ), + /* 120 */ array(42, 56, ), + /* 121 */ array(20, 27, ), + /* 122 */ array(20, 27, ), + /* 123 */ array(37, 56, ), + /* 124 */ array(19, 41, ), + /* 125 */ array(46, 54, ), + /* 126 */ array(46, 54, ), + /* 127 */ array(20, 56, ), + /* 128 */ array(20, 56, ), + /* 129 */ array(46, 54, ), + /* 130 */ array(38, 56, ), + /* 131 */ array(20, 27, ), + /* 132 */ array(46, 54, ), + /* 133 */ array(20, 27, ), + /* 134 */ array(20, 27, ), + /* 135 */ array(20, 27, ), + /* 136 */ array(46, 54, ), + /* 137 */ array(20, 27, ), + /* 138 */ array(20, 27, ), + /* 139 */ array(20, 27, ), + /* 140 */ array(20, 27, ), + /* 141 */ array(20, 27, ), + /* 142 */ array(20, 27, ), + /* 143 */ array(21, 22, ), + /* 144 */ array(20, 27, ), + /* 145 */ array(20, 27, ), + /* 146 */ array(38, 56, ), + /* 147 */ array(56, ), + /* 148 */ array(25, ), + /* 149 */ array(41, ), + /* 150 */ array(25, ), + /* 151 */ array(27, ), + /* 152 */ array(56, ), + /* 153 */ array(56, ), + /* 154 */ array(56, ), + /* 155 */ array(56, ), + /* 156 */ array(21, ), + /* 157 */ array(56, ), + /* 158 */ array(56, ), + /* 159 */ array(56, ), + /* 160 */ array(56, ), + /* 161 */ array(56, ), + /* 162 */ array(56, ), + /* 163 */ array(27, ), + /* 164 */ array(56, ), + /* 165 */ array(56, ), + /* 166 */ array(56, ), + /* 167 */ array(38, ), + /* 168 */ array(25, ), + /* 169 */ array(25, ), + /* 170 */ array(56, ), + /* 171 */ array(), + /* 172 */ array(), + /* 173 */ array(), + /* 174 */ array(), + /* 175 */ array(), + /* 176 */ array(), + /* 177 */ array(), + /* 178 */ array(19, 21, 22, 36, 47, 48, ), + /* 179 */ array(41, 46, 51, 55, ), + /* 180 */ array(23, 41, 51, ), + /* 181 */ array(41, 51, 56, ), + /* 182 */ array(34, 41, 51, ), + /* 183 */ array(41, 51, ), + /* 184 */ array(41, 51, ), + /* 185 */ array(22, 52, ), + /* 186 */ array(23, 38, ), + /* 187 */ array(27, 28, ), + /* 188 */ array(41, 51, ), + /* 189 */ array(23, 46, ), + /* 190 */ array(41, 51, ), + /* 191 */ array(30, 37, ), + /* 192 */ array(20, 27, ), + /* 193 */ array(37, 55, ), + /* 194 */ array(31, 81, ), + /* 195 */ array(22, 36, ), + /* 196 */ array(15, ), + /* 197 */ array(21, ), + /* 198 */ array(30, ), + /* 199 */ array(22, ), + /* 200 */ array(12, ), + /* 201 */ array(42, ), + /* 202 */ array(23, ), + /* 203 */ array(32, ), + /* 204 */ array(20, ), + /* 205 */ array(21, ), + /* 206 */ array(21, ), + /* 207 */ array(22, ), + /* 208 */ array(46, ), + /* 209 */ array(20, ), + /* 210 */ array(10, ), + /* 211 */ array(36, ), + /* 212 */ array(17, ), /* 213 */ array(20, ), - /* 214 */ array(25, ), - /* 215 */ array(28, ), - /* 216 */ array(45, ), - /* 217 */ array(27, ), - /* 218 */ array(41, ), - /* 219 */ array(25, ), - /* 220 */ array(25, ), - /* 221 */ array(34, ), - /* 222 */ array(4, ), - /* 223 */ array(27, ), - /* 224 */ array(4, ), - /* 225 */ array(46, ), - /* 226 */ array(45, ), - /* 227 */ array(46, ), - /* 228 */ array(45, ), - /* 229 */ array(58, ), + /* 214 */ array(27, ), + /* 215 */ array(21, ), + /* 216 */ array(21, ), + /* 217 */ array(33, ), + /* 218 */ array(55, ), + /* 219 */ array(31, ), + /* 220 */ array(22, ), + /* 221 */ array(20, ), + /* 222 */ array(33, ), + /* 223 */ array(41, ), + /* 224 */ array(68, ), + /* 225 */ array(53, ), + /* 226 */ array(43, ), + /* 227 */ array(20, ), + /* 228 */ array(3, ), + /* 229 */ array(38, ), /* 230 */ array(22, ), - /* 231 */ array(27, ), - /* 232 */ array(25, ), - /* 233 */ array(26, ), - /* 234 */ array(44, ), - /* 235 */ array(35, ), - /* 236 */ array(45, ), - /* 237 */ array(25, ), - /* 238 */ array(25, ), - /* 239 */ array(58, ), - /* 240 */ array(36, ), - /* 241 */ array(), - /* 242 */ array(), - /* 243 */ array(), - /* 244 */ array(), + /* 231 */ array(23, ), + /* 232 */ array(53, ), + /* 233 */ array(43, ), + /* 234 */ array(20, ), + /* 235 */ array(22, ), + /* 236 */ array(20, ), + /* 237 */ array(34, ), + /* 238 */ array(42, ), + /* 239 */ array(8, ), + /* 240 */ array(22, ), + /* 241 */ array(42, ), + /* 242 */ array(22, ), + /* 243 */ array(42, ), + /* 244 */ array(22, ), /* 245 */ array(), /* 246 */ array(), /* 247 */ array(), @@ -958,51 +934,51 @@ static public $yy_action = array( /* 388 */ array(), ); static public $yy_default = array( - /* 0 */ 587, 587, 572, 587, 587, 535, 587, 587, 535, 587, - /* 10 */ 535, 587, 535, 587, 587, 587, 587, 587, 587, 587, + /* 0 */ 587, 587, 572, 587, 587, 535, 587, 587, 587, 587, + /* 10 */ 535, 535, 587, 587, 535, 587, 587, 587, 587, 587, /* 20 */ 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, /* 30 */ 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, /* 40 */ 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - /* 50 */ 587, 587, 389, 587, 587, 587, 411, 587, 587, 496, - /* 60 */ 468, 455, 455, 455, 455, 587, 587, 466, 540, 473, - /* 70 */ 474, 587, 587, 399, 399, 399, 507, 507, 477, 477, - /* 80 */ 587, 587, 587, 500, 587, 587, 587, 405, 587, 405, - /* 90 */ 587, 587, 405, 587, 587, 587, 587, 405, 455, 455, - /* 100 */ 455, 455, 455, 455, 587, 500, 455, 491, 492, 587, - /* 110 */ 587, 587, 468, 587, 587, 508, 587, 528, 468, 587, - /* 120 */ 587, 587, 587, 587, 587, 587, 527, 587, 468, 587, - /* 130 */ 587, 505, 507, 587, 587, 587, 587, 587, 587, 587, - /* 140 */ 529, 468, 526, 587, 497, 586, 544, 507, 499, 556, - /* 150 */ 586, 494, 479, 523, 493, 480, 587, 478, 539, 507, - /* 160 */ 470, 539, 507, 507, 468, 539, 469, 471, 539, 587, - /* 170 */ 542, 587, 587, 465, 460, 477, 587, 541, 482, 456, - /* 180 */ 587, 587, 555, 521, 465, 587, 587, 587, 587, 521, - /* 190 */ 587, 587, 587, 482, 587, 587, 587, 587, 587, 587, - /* 200 */ 587, 587, 587, 587, 587, 587, 587, 587, 587, 587, - /* 210 */ 587, 587, 587, 587, 587, 460, 587, 587, 534, 587, - /* 220 */ 587, 587, 587, 587, 587, 587, 587, 487, 587, 587, - /* 230 */ 587, 587, 587, 587, 495, 477, 587, 587, 587, 587, - /* 240 */ 462, 440, 463, 512, 517, 515, 516, 518, 514, 513, - /* 250 */ 510, 511, 585, 532, 530, 449, 457, 459, 390, 448, - /* 260 */ 447, 487, 452, 446, 522, 568, 584, 490, 577, 557, - /* 270 */ 583, 580, 576, 578, 579, 558, 559, 565, 566, 567, - /* 280 */ 564, 563, 560, 561, 562, 489, 546, 481, 537, 483, - /* 290 */ 484, 485, 536, 538, 445, 450, 451, 454, 486, 525, - /* 300 */ 419, 488, 581, 420, 582, 521, 520, 524, 501, 506, - /* 310 */ 509, 453, 418, 401, 400, 404, 406, 402, 398, 395, - /* 320 */ 391, 392, 393, 394, 403, 407, 414, 413, 415, 416, - /* 330 */ 417, 412, 410, 396, 397, 408, 409, 421, 422, 428, - /* 340 */ 427, 430, 431, 433, 426, 554, 550, 551, 552, 553, - /* 350 */ 432, 429, 464, 436, 435, 437, 438, 434, 461, 441, - /* 360 */ 442, 443, 444, 549, 548, 502, 498, 503, 504, 531, - /* 370 */ 472, 519, 423, 424, 425, 467, 533, 574, 476, 543, - /* 380 */ 545, 547, 475, 570, 573, 569, 571, 575, 439, + /* 50 */ 587, 587, 389, 587, 587, 587, 411, 587, 587, 587, + /* 60 */ 497, 587, 455, 455, 455, 455, 455, 455, 455, 587, + /* 70 */ 587, 540, 466, 587, 399, 587, 399, 507, 399, 478, + /* 80 */ 478, 507, 587, 587, 587, 587, 587, 500, 405, 469, + /* 90 */ 587, 587, 587, 587, 405, 405, 587, 405, 587, 455, + /* 100 */ 455, 455, 587, 493, 500, 492, 455, 587, 542, 587, + /* 110 */ 587, 587, 587, 587, 587, 508, 587, 587, 587, 587, + /* 120 */ 587, 587, 587, 534, 507, 529, 527, 587, 587, 526, + /* 130 */ 587, 587, 528, 587, 587, 587, 505, 587, 587, 587, + /* 140 */ 587, 587, 587, 587, 587, 587, 587, 573, 495, 507, + /* 150 */ 498, 586, 574, 575, 457, 554, 587, 550, 461, 549, + /* 160 */ 438, 464, 545, 586, 546, 476, 553, 468, 523, 494, + /* 170 */ 477, 539, 539, 507, 539, 507, 507, 539, 587, 587, + /* 180 */ 460, 456, 465, 465, 541, 587, 521, 587, 555, 483, + /* 190 */ 587, 587, 469, 587, 478, 587, 587, 587, 587, 587, + /* 200 */ 587, 587, 460, 462, 587, 587, 587, 587, 483, 587, + /* 210 */ 587, 587, 587, 587, 587, 587, 587, 587, 587, 478, + /* 220 */ 587, 587, 587, 496, 469, 587, 587, 469, 587, 521, + /* 230 */ 587, 587, 587, 488, 587, 587, 587, 469, 587, 587, + /* 240 */ 587, 587, 587, 587, 587, 566, 557, 565, 577, 390, + /* 250 */ 567, 568, 393, 522, 491, 412, 459, 564, 563, 560, + /* 260 */ 561, 474, 391, 413, 414, 392, 562, 415, 558, 472, + /* 270 */ 475, 559, 409, 397, 396, 400, 398, 518, 395, 516, + /* 280 */ 584, 407, 532, 402, 404, 530, 401, 403, 394, 515, + /* 290 */ 513, 447, 512, 448, 449, 511, 446, 410, 517, 488, + /* 300 */ 408, 452, 406, 514, 510, 470, 426, 427, 428, 430, + /* 310 */ 536, 537, 422, 421, 582, 420, 581, 521, 432, 520, + /* 320 */ 471, 433, 431, 419, 489, 423, 556, 543, 544, 503, + /* 330 */ 502, 570, 571, 533, 569, 504, 499, 547, 467, 425, + /* 340 */ 424, 552, 551, 548, 473, 519, 509, 429, 585, 463, + /* 350 */ 450, 445, 439, 451, 538, 437, 454, 453, 440, 579, + /* 360 */ 578, 580, 416, 417, 418, 490, 576, 469, 531, 443, + /* 370 */ 525, 444, 487, 524, 442, 506, 441, 501, 486, 434, + /* 380 */ 435, 479, 482, 480, 481, 436, 485, 484, 583, ); - const YYNOCODE = 133; + const YYNOCODE = 130; const YYSTACKDEPTH = 100; const YYNSTATE = 389; const YYNRULE = 198; - const YYERRORSYMBOL = 86; + const YYERRORSYMBOL = 83; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 0; static public $yyFallback = array( @@ -1031,39 +1007,39 @@ static public $yy_action = array( public $yystack = array(); /* The parser's stack */ public $yyTokenName = array( - '$', 'IFEXP', 'UNIMATH', 'VERT', - 'COLON', 'EXP', 'COMMENT', 'PHPSTARTTAG', - 'PHPENDTAG', 'OTHER', 'FAKEPHPSTARTTAG', 'PHP_CODE', - 'PHP_CODE_START_DOUBLEQUOTE', 'PHP_CODE_DOUBLEQUOTE', 'PHP_HEREDOC_START', 'PHP_HEREDOC_END', - 'PHP_NOWDOC_START', 'PHP_NOWDOC_END', 'PHP_DQ_CONTENT', 'PHP_DQ_EMBED_START', - 'PHP_DQ_EMBED_END', 'LITERALSTART', 'LITERALEND', 'LITERAL', - 'LDEL', 'RDEL', 'DOLLAR', 'ID', - 'EQUAL', 'FOREACH', 'PTR', 'IF', - 'SPACE', 'FOR', 'SEMICOLON', 'INCDEC', + '$', 'COMMENT', 'PHPSTARTTAG', 'PHPENDTAG', + 'OTHER', 'FAKEPHPSTARTTAG', 'PHP_CODE', 'PHP_CODE_START_DOUBLEQUOTE', + 'PHP_CODE_DOUBLEQUOTE', 'PHP_HEREDOC_START', 'PHP_HEREDOC_END', 'PHP_NOWDOC_START', + 'PHP_NOWDOC_END', 'PHP_DQ_CONTENT', 'PHP_DQ_EMBED_START', 'PHP_DQ_EMBED_END', + 'LITERALSTART', 'LITERALEND', 'LITERAL', 'LDEL', + 'RDEL', 'DOLLAR', 'ID', 'EQUAL', + 'FOREACH', 'PTR', 'IF', 'SPACE', + 'UNIMATH', 'FOR', 'SEMICOLON', 'INCDEC', 'TO', 'AS', 'APTR', 'LDELSLASH', - 'INTEGER', 'COMMA', 'MATH', 'ANDSYM', - 'OPENP', 'CLOSEP', 'QMARK', 'VAL', + 'INTEGER', 'COMMA', 'COLON', 'MATH', + 'ANDSYM', 'OPENP', 'CLOSEP', 'QMARK', 'NOT', 'TYPECAST', 'DOT', 'BOOLEAN', 'NULL', 'SINGLEQUOTESTRING', 'QUOTE', 'DOUBLECOLON', - 'MOD', 'AT', 'HATCH', 'OPENB', - 'CLOSEB', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', + 'AT', 'HATCH', 'OPENB', 'CLOSEB', + 'VERT', 'ISIN', 'ISDIVBY', 'ISNOTDIVBY', 'ISEVEN', 'ISNOTEVEN', 'ISEVENBY', 'ISNOTEVENBY', 'ISODD', 'ISNOTODD', 'ISODDBY', 'ISNOTODDBY', 'INSTANCEOF', 'EQUALS', 'NOTEQUALS', 'GREATERTHAN', 'LESSTHAN', 'GREATEREQUAL', 'LESSEQUAL', 'IDENTITY', - 'NONEIDENTITY', 'LAND', 'LOR', 'LXOR', - 'BACKTICK', 'DOLLARID', 'error', 'start', - 'template', 'template_element', 'smartytag', 'literal', - 'php_code', 'php_code_element', 'php_dq_contents', 'php_dq_content', - 'literal_elements', 'literal_element', 'value', 'attributes', - 'variable', 'expr', 'ternary', 'varindexed', - 'modifier', 'modparameters', 'ifexpr', 'statement', - 'statements', 'optspace', 'varvar', 'foraction', - 'array', 'specialclose', 'attribute', 'exprs', - 'ifcond', 'lop', 'function', 'doublequoted', - 'method', 'params', 'objectchain', 'arrayindex', - 'object', 'indexdef', 'varvarele', 'objectelement', - 'modparameter', 'arrayelements', 'arrayelement', 'doublequotedcontent', + 'NONEIDENTITY', 'MOD', 'LAND', 'LOR', + 'LXOR', 'BACKTICK', 'DOLLARID', 'error', + 'start', 'template', 'template_element', 'smartytag', + 'literal', 'php_code', 'php_code_element', 'php_dq_contents', + 'php_dq_content', 'literal_elements', 'literal_element', 'value', + 'attributes', 'variable', 'expr', 'ternary', + 'varindexed', 'modifier', 'modparameters', 'ifexpr', + 'statement', 'statements', 'optspace', 'varvar', + 'foraction', 'array', 'specialclose', 'attribute', + 'exprs', 'ifcond', 'lop', 'function', + 'doublequoted', 'method', 'params', 'objectchain', + 'arrayindex', 'object', 'indexdef', 'varvarele', + 'objectelement', 'modparameter', 'arrayelements', 'arrayelement', + 'doublequotedcontent', ); static public $yyRuleName = array( @@ -1146,38 +1122,38 @@ static public $yy_action = array( /* 76 */ "expr ::= ID", /* 77 */ "expr ::= exprs", /* 78 */ "expr ::= DOLLAR ID COLON ID", - /* 79 */ "exprs ::= value", - /* 80 */ "exprs ::= exprs MATH value", - /* 81 */ "exprs ::= exprs UNIMATH value", - /* 82 */ "exprs ::= exprs ANDSYM value", - /* 83 */ "exprs ::= array", - /* 84 */ "exprs ::= exprs ifcond exprs", - /* 85 */ "exprs ::= exprs lop exprs", - /* 86 */ "ternary ::= OPENP ifexpr CLOSEP QMARK expr COLON expr", - /* 87 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 88 */ "value ::= variable", - /* 89 */ "value ::= UNIMATH value", - /* 90 */ "value ::= NOT value", - /* 91 */ "value ::= TYPECAST value", - /* 92 */ "value ::= variable INCDEC", - /* 93 */ "value ::= INTEGER", - /* 94 */ "value ::= INTEGER DOT INTEGER", - /* 95 */ "value ::= BOOLEAN", - /* 96 */ "value ::= NULL", - /* 97 */ "value ::= function", - /* 98 */ "value ::= OPENP expr CLOSEP", - /* 99 */ "value ::= SINGLEQUOTESTRING", - /* 100 */ "value ::= QUOTE doublequoted QUOTE", - /* 101 */ "value ::= QUOTE QUOTE", - /* 102 */ "value ::= ID DOUBLECOLON method", - /* 103 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 104 */ "value ::= ID DOUBLECOLON method objectchain", - /* 105 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 106 */ "value ::= ID DOUBLECOLON ID", - /* 107 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 108 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 109 */ "value ::= smartytag", - /* 110 */ "value ::= value modifier modparameters", + /* 79 */ "expr ::= expr modifier modparameters", + /* 80 */ "exprs ::= value", + /* 81 */ "exprs ::= exprs MATH value", + /* 82 */ "exprs ::= exprs UNIMATH value", + /* 83 */ "exprs ::= exprs ANDSYM value", + /* 84 */ "exprs ::= array", + /* 85 */ "exprs ::= exprs ifcond value", + /* 86 */ "exprs ::= exprs lop value", + /* 87 */ "ternary ::= OPENP ifexpr CLOSEP QMARK expr COLON expr", + /* 88 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 89 */ "value ::= variable", + /* 90 */ "value ::= UNIMATH value", + /* 91 */ "value ::= NOT value", + /* 92 */ "value ::= TYPECAST value", + /* 93 */ "value ::= variable INCDEC", + /* 94 */ "value ::= INTEGER", + /* 95 */ "value ::= INTEGER DOT INTEGER", + /* 96 */ "value ::= BOOLEAN", + /* 97 */ "value ::= NULL", + /* 98 */ "value ::= function", + /* 99 */ "value ::= OPENP expr CLOSEP", + /* 100 */ "value ::= SINGLEQUOTESTRING", + /* 101 */ "value ::= QUOTE doublequoted QUOTE", + /* 102 */ "value ::= QUOTE QUOTE", + /* 103 */ "value ::= ID DOUBLECOLON method", + /* 104 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 105 */ "value ::= ID DOUBLECOLON method objectchain", + /* 106 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 107 */ "value ::= ID DOUBLECOLON ID", + /* 108 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 109 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 110 */ "value ::= smartytag", /* 111 */ "variable ::= varindexed", /* 112 */ "variable ::= DOLLAR varvar AT ID", /* 113 */ "variable ::= object", @@ -1538,204 +1514,204 @@ static public $yy_action = array( } static public $yyRuleInfo = array( - array( 'lhs' => 87, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 1 ), + array( 'lhs' => 84, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 1 ), + array( 'lhs' => 85, 'rhs' => 2 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 3 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 86, 'rhs' => 1 ), + array( 'lhs' => 89, 'rhs' => 2 ), + array( 'lhs' => 89, 'rhs' => 0 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 90, 'rhs' => 3 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 0 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 3 ), array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 3 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 89, 'rhs' => 1 ), - array( 'lhs' => 92, 'rhs' => 2 ), - array( 'lhs' => 92, 'rhs' => 0 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 94, 'rhs' => 2 ), - array( 'lhs' => 94, 'rhs' => 0 ), + array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 2 ), + array( 'lhs' => 93, 'rhs' => 0 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 94, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 3 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 87, 'rhs' => 6 ), + array( 'lhs' => 87, 'rhs' => 6 ), + array( 'lhs' => 87, 'rhs' => 7 ), + array( 'lhs' => 87, 'rhs' => 7 ), + array( 'lhs' => 87, 'rhs' => 6 ), + array( 'lhs' => 87, 'rhs' => 6 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 87, 'rhs' => 3 ), + array( 'lhs' => 87, 'rhs' => 6 ), + array( 'lhs' => 87, 'rhs' => 6 ), + array( 'lhs' => 87, 'rhs' => 8 ), + array( 'lhs' => 87, 'rhs' => 5 ), + array( 'lhs' => 87, 'rhs' => 5 ), + array( 'lhs' => 87, 'rhs' => 5 ), + array( 'lhs' => 87, 'rhs' => 13 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 108, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 8 ), + array( 'lhs' => 87, 'rhs' => 8 ), + array( 'lhs' => 87, 'rhs' => 11 ), + array( 'lhs' => 87, 'rhs' => 8 ), + array( 'lhs' => 87, 'rhs' => 11 ), + array( 'lhs' => 87, 'rhs' => 3 ), + array( 'lhs' => 87, 'rhs' => 3 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 110, 'rhs' => 1 ), + array( 'lhs' => 87, 'rhs' => 4 ), + array( 'lhs' => 87, 'rhs' => 6 ), + array( 'lhs' => 87, 'rhs' => 5 ), + array( 'lhs' => 96, 'rhs' => 2 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 96, 'rhs' => 0 ), + array( 'lhs' => 111, 'rhs' => 4 ), + array( 'lhs' => 111, 'rhs' => 4 ), + array( 'lhs' => 111, 'rhs' => 4 ), + array( 'lhs' => 111, 'rhs' => 4 ), + array( 'lhs' => 111, 'rhs' => 2 ), + array( 'lhs' => 111, 'rhs' => 4 ), + array( 'lhs' => 105, 'rhs' => 1 ), + array( 'lhs' => 105, 'rhs' => 3 ), + array( 'lhs' => 104, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 98, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 1 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 112, 'rhs' => 3 ), + array( 'lhs' => 99, 'rhs' => 7 ), + array( 'lhs' => 99, 'rhs' => 7 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 2 ), array( 'lhs' => 95, 'rhs' => 1 ), array( 'lhs' => 95, 'rhs' => 3 ), - array( 'lhs' => 91, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 3 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 0 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 3 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 95, 'rhs' => 3 ), + array( 'lhs' => 95, 'rhs' => 2 ), + array( 'lhs' => 95, 'rhs' => 3 ), + array( 'lhs' => 95, 'rhs' => 7 ), + array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 95, 'rhs' => 8 ), + array( 'lhs' => 95, 'rhs' => 3 ), + array( 'lhs' => 95, 'rhs' => 5 ), + array( 'lhs' => 95, 'rhs' => 6 ), + array( 'lhs' => 95, 'rhs' => 1 ), array( 'lhs' => 97, 'rhs' => 1 ), + array( 'lhs' => 97, 'rhs' => 4 ), array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 7 ), - array( 'lhs' => 90, 'rhs' => 7 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 8 ), - array( 'lhs' => 90, 'rhs' => 5 ), - array( 'lhs' => 90, 'rhs' => 5 ), - array( 'lhs' => 90, 'rhs' => 5 ), - array( 'lhs' => 90, 'rhs' => 13 ), - array( 'lhs' => 111, 'rhs' => 2 ), - array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 8 ), - array( 'lhs' => 90, 'rhs' => 8 ), - array( 'lhs' => 90, 'rhs' => 11 ), - array( 'lhs' => 90, 'rhs' => 8 ), - array( 'lhs' => 90, 'rhs' => 11 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 113, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 4 ), - array( 'lhs' => 90, 'rhs' => 6 ), - array( 'lhs' => 90, 'rhs' => 5 ), - array( 'lhs' => 99, 'rhs' => 2 ), - array( 'lhs' => 99, 'rhs' => 1 ), - array( 'lhs' => 99, 'rhs' => 0 ), - array( 'lhs' => 114, 'rhs' => 4 ), - array( 'lhs' => 114, 'rhs' => 4 ), - array( 'lhs' => 114, 'rhs' => 4 ), - array( 'lhs' => 114, 'rhs' => 4 ), - array( 'lhs' => 114, 'rhs' => 2 ), - array( 'lhs' => 114, 'rhs' => 4 ), - array( 'lhs' => 108, 'rhs' => 1 ), - array( 'lhs' => 108, 'rhs' => 3 ), - array( 'lhs' => 107, 'rhs' => 4 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 1 ), - array( 'lhs' => 101, 'rhs' => 4 ), - array( 'lhs' => 115, 'rhs' => 1 ), - array( 'lhs' => 115, 'rhs' => 3 ), - array( 'lhs' => 115, 'rhs' => 3 ), - array( 'lhs' => 115, 'rhs' => 3 ), - array( 'lhs' => 115, 'rhs' => 1 ), - array( 'lhs' => 115, 'rhs' => 3 ), - array( 'lhs' => 115, 'rhs' => 3 ), - array( 'lhs' => 102, 'rhs' => 7 ), - array( 'lhs' => 102, 'rhs' => 7 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 98, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 98, 'rhs' => 7 ), - array( 'lhs' => 98, 'rhs' => 4 ), - array( 'lhs' => 98, 'rhs' => 8 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 98, 'rhs' => 5 ), - array( 'lhs' => 98, 'rhs' => 6 ), - array( 'lhs' => 98, 'rhs' => 1 ), - array( 'lhs' => 98, 'rhs' => 3 ), - array( 'lhs' => 100, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 4 ), - array( 'lhs' => 100, 'rhs' => 1 ), - array( 'lhs' => 100, 'rhs' => 3 ), + array( 'lhs' => 97, 'rhs' => 3 ), + array( 'lhs' => 97, 'rhs' => 3 ), array( 'lhs' => 100, 'rhs' => 3 ), + array( 'lhs' => 120, 'rhs' => 2 ), + array( 'lhs' => 120, 'rhs' => 0 ), + array( 'lhs' => 122, 'rhs' => 3 ), + array( 'lhs' => 122, 'rhs' => 5 ), + array( 'lhs' => 122, 'rhs' => 2 ), + array( 'lhs' => 122, 'rhs' => 2 ), + array( 'lhs' => 122, 'rhs' => 2 ), + array( 'lhs' => 122, 'rhs' => 2 ), + array( 'lhs' => 122, 'rhs' => 4 ), + array( 'lhs' => 122, 'rhs' => 3 ), + array( 'lhs' => 122, 'rhs' => 5 ), + array( 'lhs' => 122, 'rhs' => 3 ), + array( 'lhs' => 122, 'rhs' => 2 ), + array( 'lhs' => 107, 'rhs' => 1 ), + array( 'lhs' => 107, 'rhs' => 2 ), + array( 'lhs' => 123, 'rhs' => 1 ), + array( 'lhs' => 123, 'rhs' => 3 ), + array( 'lhs' => 121, 'rhs' => 2 ), + array( 'lhs' => 119, 'rhs' => 1 ), + array( 'lhs' => 119, 'rhs' => 2 ), + array( 'lhs' => 124, 'rhs' => 3 ), + array( 'lhs' => 124, 'rhs' => 3 ), + array( 'lhs' => 124, 'rhs' => 5 ), + array( 'lhs' => 124, 'rhs' => 6 ), + array( 'lhs' => 124, 'rhs' => 2 ), + array( 'lhs' => 115, 'rhs' => 4 ), + array( 'lhs' => 117, 'rhs' => 4 ), + array( 'lhs' => 118, 'rhs' => 3 ), + array( 'lhs' => 118, 'rhs' => 1 ), + array( 'lhs' => 118, 'rhs' => 0 ), + array( 'lhs' => 101, 'rhs' => 3 ), + array( 'lhs' => 101, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 2 ), + array( 'lhs' => 102, 'rhs' => 0 ), + array( 'lhs' => 125, 'rhs' => 2 ), + array( 'lhs' => 125, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 1 ), array( 'lhs' => 103, 'rhs' => 3 ), - array( 'lhs' => 123, 'rhs' => 2 ), - array( 'lhs' => 123, 'rhs' => 0 ), - array( 'lhs' => 125, 'rhs' => 3 ), - array( 'lhs' => 125, 'rhs' => 5 ), - array( 'lhs' => 125, 'rhs' => 2 ), - array( 'lhs' => 125, 'rhs' => 2 ), - array( 'lhs' => 125, 'rhs' => 2 ), - array( 'lhs' => 125, 'rhs' => 2 ), - array( 'lhs' => 125, 'rhs' => 4 ), - array( 'lhs' => 125, 'rhs' => 3 ), - array( 'lhs' => 125, 'rhs' => 5 ), - array( 'lhs' => 125, 'rhs' => 3 ), - array( 'lhs' => 125, 'rhs' => 2 ), - array( 'lhs' => 110, 'rhs' => 1 ), - array( 'lhs' => 110, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 2 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 103, 'rhs' => 3 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 113, 'rhs' => 1 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 114, 'rhs' => 1 ), + array( 'lhs' => 109, 'rhs' => 3 ), array( 'lhs' => 126, 'rhs' => 1 ), array( 'lhs' => 126, 'rhs' => 3 ), - array( 'lhs' => 124, 'rhs' => 2 ), - array( 'lhs' => 122, 'rhs' => 1 ), - array( 'lhs' => 122, 'rhs' => 2 ), + array( 'lhs' => 126, 'rhs' => 0 ), array( 'lhs' => 127, 'rhs' => 3 ), array( 'lhs' => 127, 'rhs' => 3 ), - array( 'lhs' => 127, 'rhs' => 5 ), - array( 'lhs' => 127, 'rhs' => 6 ), - array( 'lhs' => 127, 'rhs' => 2 ), - array( 'lhs' => 118, 'rhs' => 4 ), - array( 'lhs' => 120, 'rhs' => 4 ), - array( 'lhs' => 121, 'rhs' => 3 ), - array( 'lhs' => 121, 'rhs' => 1 ), - array( 'lhs' => 121, 'rhs' => 0 ), - array( 'lhs' => 104, 'rhs' => 3 ), - array( 'lhs' => 104, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 105, 'rhs' => 0 ), - array( 'lhs' => 128, 'rhs' => 2 ), - array( 'lhs' => 128, 'rhs' => 2 ), + array( 'lhs' => 127, 'rhs' => 1 ), + array( 'lhs' => 116, 'rhs' => 2 ), + array( 'lhs' => 116, 'rhs' => 1 ), + array( 'lhs' => 128, 'rhs' => 3 ), + array( 'lhs' => 128, 'rhs' => 3 ), + array( 'lhs' => 128, 'rhs' => 1 ), + array( 'lhs' => 128, 'rhs' => 3 ), + array( 'lhs' => 128, 'rhs' => 3 ), + array( 'lhs' => 128, 'rhs' => 1 ), + array( 'lhs' => 128, 'rhs' => 1 ), array( 'lhs' => 106, 'rhs' => 1 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 2 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 106, 'rhs' => 3 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 116, 'rhs' => 1 ), - array( 'lhs' => 117, 'rhs' => 1 ), - array( 'lhs' => 117, 'rhs' => 1 ), - array( 'lhs' => 117, 'rhs' => 1 ), - array( 'lhs' => 112, 'rhs' => 3 ), - array( 'lhs' => 129, 'rhs' => 1 ), - array( 'lhs' => 129, 'rhs' => 3 ), - array( 'lhs' => 129, 'rhs' => 0 ), - array( 'lhs' => 130, 'rhs' => 3 ), - array( 'lhs' => 130, 'rhs' => 3 ), - array( 'lhs' => 130, 'rhs' => 1 ), - array( 'lhs' => 119, 'rhs' => 2 ), - array( 'lhs' => 119, 'rhs' => 1 ), - array( 'lhs' => 131, 'rhs' => 3 ), - array( 'lhs' => 131, 'rhs' => 3 ), - array( 'lhs' => 131, 'rhs' => 1 ), - array( 'lhs' => 131, 'rhs' => 3 ), - array( 'lhs' => 131, 'rhs' => 3 ), - array( 'lhs' => 131, 'rhs' => 1 ), - array( 'lhs' => 131, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 1 ), - array( 'lhs' => 109, 'rhs' => 0 ), + array( 'lhs' => 106, 'rhs' => 0 ), ); static public $yyReduceMap = array( @@ -1748,13 +1724,13 @@ static public $yy_action = array( 58 => 0, 59 => 0, 60 => 0, - 79 => 0, - 88 => 0, - 93 => 0, - 95 => 0, + 80 => 0, + 89 => 0, + 94 => 0, 96 => 0, 97 => 0, - 99 => 0, + 98 => 0, + 100 => 0, 113 => 0, 181 => 0, 1 => 1, @@ -1767,9 +1743,9 @@ static public $yy_action = array( 9 => 9, 15 => 9, 21 => 9, - 89 => 9, - 91 => 9, + 90 => 9, 92 => 9, + 93 => 9, 10 => 10, 16 => 10, 19 => 10, @@ -1831,24 +1807,24 @@ static public $yy_action = array( 75 => 75, 76 => 76, 77 => 77, - 83 => 77, + 84 => 77, 130 => 77, 188 => 77, 195 => 77, 196 => 77, 78 => 78, - 80 => 80, - 81 => 80, - 82 => 80, - 84 => 84, - 85 => 84, - 166 => 84, - 86 => 86, - 87 => 86, - 90 => 90, - 94 => 94, - 98 => 98, - 100 => 100, + 79 => 79, + 81 => 81, + 82 => 81, + 83 => 81, + 85 => 85, + 86 => 85, + 166 => 85, + 87 => 87, + 88 => 87, + 91 => 91, + 95 => 95, + 99 => 99, 101 => 101, 102 => 102, 103 => 103, @@ -1938,10 +1914,10 @@ static public $yy_action = array( 193 => 193, 194 => 194, ); -#line 88 "smarty_internal_templateparser.y" +#line 81 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 1938 "smarty_internal_templateparser.php" -#line 94 "smarty_internal_templateparser.y" +#line 1914 "smarty_internal_templateparser.php" +#line 87 "smarty_internal_templateparser.y" function yy_r1(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } else { @@ -1949,8 +1925,8 @@ static public $yy_action = array( $this->template->extracted_compiled_code .= $this->yystack[$this->yyidx + 0]->minor; } } -#line 1947 "smarty_internal_templateparser.php" -#line 102 "smarty_internal_templateparser.y" +#line 1923 "smarty_internal_templateparser.php" +#line 95 "smarty_internal_templateparser.y" function yy_r2(){if ($this->template->extract_code == false) { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } else { @@ -1959,18 +1935,18 @@ static public $yy_action = array( $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } } -#line 1957 "smarty_internal_templateparser.php" -#line 115 "smarty_internal_templateparser.y" +#line 1933 "smarty_internal_templateparser.php" +#line 108 "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->compiler->processNocacheCode($tmp.$this->yystack[$this->yyidx + 0]->minor,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor;} $this->compiler->has_variable_string = false; } -#line 1964 "smarty_internal_templateparser.php" -#line 122 "smarty_internal_templateparser.y" +#line 1940 "smarty_internal_templateparser.php" +#line 115 "smarty_internal_templateparser.y" function yy_r4(){ $this->_retvalue = ''; } -#line 1967 "smarty_internal_templateparser.php" -#line 128 "smarty_internal_templateparser.y" +#line 1943 "smarty_internal_templateparser.php" +#line 121 "smarty_internal_templateparser.y" function yy_r6(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + -2]->minor) . $this->yystack[$this->yyidx + -1]->minor . '?>'; @@ -1982,295 +1958,295 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 1980 "smarty_internal_templateparser.php" -#line 142 "smarty_internal_templateparser.y" +#line 1956 "smarty_internal_templateparser.php" +#line 135 "smarty_internal_templateparser.y" function yy_r7(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\t ]*[\r\n]+[\t ]*!', '', $this->yystack[$this->yyidx + 0]->minor); } else { $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } } -#line 1988 "smarty_internal_templateparser.php" -#line 148 "smarty_internal_templateparser.y" +#line 1964 "smarty_internal_templateparser.php" +#line 141 "smarty_internal_templateparser.y" function yy_r8(){if ($this->lex->strip) { $this->_retvalue = preg_replace('![\$this->yystack[$this->yyidx + 0]->minor ]*[\r\n]+[\$this->yystack[$this->yyidx + 0]->minor ]*!', '', self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor)); } else { $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } } -#line 1996 "smarty_internal_templateparser.php" -#line 157 "smarty_internal_templateparser.y" +#line 1972 "smarty_internal_templateparser.php" +#line 150 "smarty_internal_templateparser.y" function yy_r9(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 1999 "smarty_internal_templateparser.php" -#line 158 "smarty_internal_templateparser.y" +#line 1975 "smarty_internal_templateparser.php" +#line 151 "smarty_internal_templateparser.y" function yy_r10(){ $this->_retvalue = ''; } -#line 2002 "smarty_internal_templateparser.php" -#line 161 "smarty_internal_templateparser.y" +#line 1978 "smarty_internal_templateparser.php" +#line 154 "smarty_internal_templateparser.y" function yy_r12(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2005 "smarty_internal_templateparser.php" -#line 174 "smarty_internal_templateparser.y" +#line 1981 "smarty_internal_templateparser.php" +#line 167 "smarty_internal_templateparser.y" function yy_r20(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor; } -#line 2008 "smarty_internal_templateparser.php" -#line 181 "smarty_internal_templateparser.y" +#line 1984 "smarty_internal_templateparser.php" +#line 174 "smarty_internal_templateparser.y" function yy_r25(){ $this->_retvalue = self::escape_start_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2011 "smarty_internal_templateparser.php" -#line 183 "smarty_internal_templateparser.y" +#line 1987 "smarty_internal_templateparser.php" +#line 176 "smarty_internal_templateparser.y" function yy_r27(){ $this->_retvalue = self::escape_end_tag($this->yystack[$this->yyidx + 0]->minor); } -#line 2014 "smarty_internal_templateparser.php" -#line 191 "smarty_internal_templateparser.y" +#line 1990 "smarty_internal_templateparser.php" +#line 184 "smarty_internal_templateparser.y" function yy_r28(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array('value'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2017 "smarty_internal_templateparser.php" -#line 192 "smarty_internal_templateparser.y" +#line 1993 "smarty_internal_templateparser.php" +#line 185 "smarty_internal_templateparser.y" function yy_r29(){ $this->_retvalue = $this->compiler->compileTag('private_print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2020 "smarty_internal_templateparser.php" -#line 203 "smarty_internal_templateparser.y" +#line 1996 "smarty_internal_templateparser.php" +#line 196 "smarty_internal_templateparser.y" function yy_r33(){ $this->_retvalue = $this->compiler->compileTag('assign',array('value'=>$this->yystack[$this->yyidx + -1]->minor,'var'=>"'".$this->yystack[$this->yyidx + -3]->minor."'")); } -#line 2023 "smarty_internal_templateparser.php" -#line 205 "smarty_internal_templateparser.y" +#line 1999 "smarty_internal_templateparser.php" +#line 198 "smarty_internal_templateparser.y" function yy_r35(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -2]->minor,'var'=>"'".$this->yystack[$this->yyidx + -4]->minor."'"),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2026 "smarty_internal_templateparser.php" -#line 207 "smarty_internal_templateparser.y" +#line 2002 "smarty_internal_templateparser.php" +#line 200 "smarty_internal_templateparser.y" function yy_r37(){ $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 2029 "smarty_internal_templateparser.php" -#line 210 "smarty_internal_templateparser.y" +#line 2005 "smarty_internal_templateparser.php" +#line 203 "smarty_internal_templateparser.y" function yy_r39(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,$this->yystack[$this->yyidx + -1]->minor); } -#line 2032 "smarty_internal_templateparser.php" -#line 212 "smarty_internal_templateparser.y" +#line 2008 "smarty_internal_templateparser.php" +#line 205 "smarty_internal_templateparser.y" function yy_r41(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,array()); } -#line 2035 "smarty_internal_templateparser.php" -#line 214 "smarty_internal_templateparser.y" +#line 2011 "smarty_internal_templateparser.php" +#line 207 "smarty_internal_templateparser.y" function yy_r42(){ $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 2038 "smarty_internal_templateparser.php" -#line 216 "smarty_internal_templateparser.y" +#line 2014 "smarty_internal_templateparser.php" +#line 209 "smarty_internal_templateparser.y" function yy_r43(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor,$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2043 "smarty_internal_templateparser.php" -#line 220 "smarty_internal_templateparser.y" +#line 2019 "smarty_internal_templateparser.php" +#line 213 "smarty_internal_templateparser.y" function yy_r44(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -4]->minor),$this->yystack[$this->yyidx + -1]->minor)).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2048 "smarty_internal_templateparser.php" -#line 224 "smarty_internal_templateparser.y" +#line 2024 "smarty_internal_templateparser.php" +#line 217 "smarty_internal_templateparser.y" function yy_r45(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2051 "smarty_internal_templateparser.php" -#line 225 "smarty_internal_templateparser.y" +#line 2027 "smarty_internal_templateparser.php" +#line 218 "smarty_internal_templateparser.y" function yy_r46(){ $this->_retvalue = $this->compiler->compileTag(($this->yystack[$this->yyidx + -3]->minor == 'else if')? 'elseif' : $this->yystack[$this->yyidx + -3]->minor,array('if condition'=>trim($this->yystack[$this->yyidx + -2]->minor).$this->yystack[$this->yyidx + -1]->minor)); } -#line 2054 "smarty_internal_templateparser.php" -#line 228 "smarty_internal_templateparser.y" +#line 2030 "smarty_internal_templateparser.php" +#line 221 "smarty_internal_templateparser.y" function yy_r48(){ $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 2058 "smarty_internal_templateparser.php" -#line 230 "smarty_internal_templateparser.y" +#line 2034 "smarty_internal_templateparser.php" +#line 223 "smarty_internal_templateparser.y" function yy_r49(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2061 "smarty_internal_templateparser.php" -#line 231 "smarty_internal_templateparser.y" +#line 2037 "smarty_internal_templateparser.php" +#line 224 "smarty_internal_templateparser.y" function yy_r50(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2064 "smarty_internal_templateparser.php" -#line 232 "smarty_internal_templateparser.y" +#line 2040 "smarty_internal_templateparser.php" +#line 225 "smarty_internal_templateparser.y" function yy_r51(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -6]->minor,array_merge(array('start'=>$this->yystack[$this->yyidx + -4]->minor,'to'=>$this->yystack[$this->yyidx + -2]->minor),$this->yystack[$this->yyidx + -1]->minor)); } -#line 2067 "smarty_internal_templateparser.php" -#line 235 "smarty_internal_templateparser.y" +#line 2043 "smarty_internal_templateparser.php" +#line 228 "smarty_internal_templateparser.y" function yy_r52(){ $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 2071 "smarty_internal_templateparser.php" -#line 237 "smarty_internal_templateparser.y" +#line 2047 "smarty_internal_templateparser.php" +#line 230 "smarty_internal_templateparser.y" function yy_r53(){ $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 2075 "smarty_internal_templateparser.php" -#line 239 "smarty_internal_templateparser.y" +#line 2051 "smarty_internal_templateparser.php" +#line 232 "smarty_internal_templateparser.y" function yy_r54(){ $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 2079 "smarty_internal_templateparser.php" -#line 241 "smarty_internal_templateparser.y" +#line 2055 "smarty_internal_templateparser.php" +#line 234 "smarty_internal_templateparser.y" function yy_r55(){ $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 2083 "smarty_internal_templateparser.php" -#line 245 "smarty_internal_templateparser.y" +#line 2059 "smarty_internal_templateparser.php" +#line 238 "smarty_internal_templateparser.y" function yy_r56(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',array()); } -#line 2086 "smarty_internal_templateparser.php" -#line 250 "smarty_internal_templateparser.y" +#line 2062 "smarty_internal_templateparser.php" +#line 243 "smarty_internal_templateparser.y" function yy_r61(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',$this->yystack[$this->yyidx + -1]->minor); } -#line 2089 "smarty_internal_templateparser.php" -#line 251 "smarty_internal_templateparser.y" +#line 2065 "smarty_internal_templateparser.php" +#line 244 "smarty_internal_templateparser.y" function yy_r62(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -4]->minor.'close',$this->yystack[$this->yyidx + -1]->minor).'_retvalue .= $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -3]->minor,'params'=>'ob_get_clean()'.$this->yystack[$this->yyidx + -2]->minor)).'?>'; } -#line 2094 "smarty_internal_templateparser.php" -#line 255 "smarty_internal_templateparser.y" +#line 2070 "smarty_internal_templateparser.php" +#line 248 "smarty_internal_templateparser.y" function yy_r63(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor)); } -#line 2097 "smarty_internal_templateparser.php" -#line 262 "smarty_internal_templateparser.y" +#line 2073 "smarty_internal_templateparser.php" +#line 255 "smarty_internal_templateparser.y" function yy_r64(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2100 "smarty_internal_templateparser.php" -#line 266 "smarty_internal_templateparser.y" +#line 2076 "smarty_internal_templateparser.php" +#line 259 "smarty_internal_templateparser.y" function yy_r66(){ $this->_retvalue = array(); } -#line 2103 "smarty_internal_templateparser.php" -#line 269 "smarty_internal_templateparser.y" +#line 2079 "smarty_internal_templateparser.php" +#line 262 "smarty_internal_templateparser.y" function yy_r67(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>"'".$this->yystack[$this->yyidx + 0]->minor."'"); } -#line 2106 "smarty_internal_templateparser.php" -#line 270 "smarty_internal_templateparser.y" +#line 2082 "smarty_internal_templateparser.php" +#line 263 "smarty_internal_templateparser.y" function yy_r68(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2109 "smarty_internal_templateparser.php" -#line 273 "smarty_internal_templateparser.y" +#line 2085 "smarty_internal_templateparser.php" +#line 266 "smarty_internal_templateparser.y" function yy_r71(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2112 "smarty_internal_templateparser.php" -#line 280 "smarty_internal_templateparser.y" +#line 2088 "smarty_internal_templateparser.php" +#line 273 "smarty_internal_templateparser.y" function yy_r73(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2115 "smarty_internal_templateparser.php" -#line 281 "smarty_internal_templateparser.y" +#line 2091 "smarty_internal_templateparser.php" +#line 274 "smarty_internal_templateparser.y" function yy_r74(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2118 "smarty_internal_templateparser.php" -#line 283 "smarty_internal_templateparser.y" +#line 2094 "smarty_internal_templateparser.php" +#line 276 "smarty_internal_templateparser.y" function yy_r75(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2121 "smarty_internal_templateparser.php" -#line 289 "smarty_internal_templateparser.y" +#line 2097 "smarty_internal_templateparser.php" +#line 282 "smarty_internal_templateparser.y" function yy_r76(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2124 "smarty_internal_templateparser.php" -#line 290 "smarty_internal_templateparser.y" +#line 2100 "smarty_internal_templateparser.php" +#line 283 "smarty_internal_templateparser.y" function yy_r77(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2127 "smarty_internal_templateparser.php" -#line 292 "smarty_internal_templateparser.y" +#line 2103 "smarty_internal_templateparser.php" +#line 285 "smarty_internal_templateparser.y" function yy_r78(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2130 "smarty_internal_templateparser.php" -#line 304 "smarty_internal_templateparser.y" - function yy_r80(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } -#line 2133 "smarty_internal_templateparser.php" -#line 310 "smarty_internal_templateparser.y" - function yy_r84(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2136 "smarty_internal_templateparser.php" +#line 2106 "smarty_internal_templateparser.php" +#line 286 "smarty_internal_templateparser.y" + function yy_r79(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } +#line 2109 "smarty_internal_templateparser.php" +#line 295 "smarty_internal_templateparser.y" + function yy_r81(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . trim($this->yystack[$this->yyidx + -1]->minor) . $this->yystack[$this->yyidx + 0]->minor; } +#line 2112 "smarty_internal_templateparser.php" +#line 301 "smarty_internal_templateparser.y" + function yy_r85(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2115 "smarty_internal_templateparser.php" +#line 307 "smarty_internal_templateparser.y" + function yy_r87(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 2118 "smarty_internal_templateparser.php" #line 316 "smarty_internal_templateparser.y" - function yy_r86(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } -#line 2139 "smarty_internal_templateparser.php" -#line 325 "smarty_internal_templateparser.y" - function yy_r90(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2142 "smarty_internal_templateparser.php" -#line 330 "smarty_internal_templateparser.y" - function yy_r94(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2145 "smarty_internal_templateparser.php" -#line 340 "smarty_internal_templateparser.y" - function yy_r98(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2148 "smarty_internal_templateparser.php" -#line 344 "smarty_internal_templateparser.y" - function yy_r100(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); + function yy_r91(){ $this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2121 "smarty_internal_templateparser.php" +#line 321 "smarty_internal_templateparser.y" + function yy_r95(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2124 "smarty_internal_templateparser.php" +#line 331 "smarty_internal_templateparser.y" + function yy_r99(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2127 "smarty_internal_templateparser.php" +#line 335 "smarty_internal_templateparser.y" + function yy_r101(){ $_s = str_replace(array('."".','.""'),array('.',''),'"'.$this->yystack[$this->yyidx + -1]->minor.'"'); if (substr($_s,0,3) == '"".') { $this->_retvalue = substr($_s,3); } else { $this->_retvalue = $_s; } } +#line 2136 "smarty_internal_templateparser.php" +#line 342 "smarty_internal_templateparser.y" + function yy_r102(){ $this->_retvalue = "''"; } +#line 2139 "smarty_internal_templateparser.php" +#line 344 "smarty_internal_templateparser.y" + function yy_r103(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2142 "smarty_internal_templateparser.php" +#line 345 "smarty_internal_templateparser.y" + function yy_r104(){ $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 2145 "smarty_internal_templateparser.php" +#line 347 "smarty_internal_templateparser.y" + function yy_r105(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2148 "smarty_internal_templateparser.php" +#line 348 "smarty_internal_templateparser.y" + function yy_r106(){ $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 2151 "smarty_internal_templateparser.php" +#line 350 "smarty_internal_templateparser.y" + function yy_r107(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2154 "smarty_internal_templateparser.php" +#line 352 "smarty_internal_templateparser.y" + function yy_r108(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2157 "smarty_internal_templateparser.php" -#line 351 "smarty_internal_templateparser.y" - function yy_r101(){ $this->_retvalue = "''"; } -#line 2160 "smarty_internal_templateparser.php" -#line 353 "smarty_internal_templateparser.y" - function yy_r102(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2163 "smarty_internal_templateparser.php" #line 354 "smarty_internal_templateparser.y" - function yy_r103(){ $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 2166 "smarty_internal_templateparser.php" + function yy_r109(){ $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 2160 "smarty_internal_templateparser.php" #line 356 "smarty_internal_templateparser.y" - function yy_r104(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2169 "smarty_internal_templateparser.php" -#line 357 "smarty_internal_templateparser.y" - function yy_r105(){ $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 2172 "smarty_internal_templateparser.php" -#line 359 "smarty_internal_templateparser.y" - function yy_r106(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2175 "smarty_internal_templateparser.php" -#line 361 "smarty_internal_templateparser.y" - function yy_r107(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2178 "smarty_internal_templateparser.php" -#line 363 "smarty_internal_templateparser.y" - function yy_r108(){ $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 2181 "smarty_internal_templateparser.php" + function yy_r110(){ $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 2163 "smarty_internal_templateparser.php" #line 365 "smarty_internal_templateparser.y" - function yy_r109(){ $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 2184 "smarty_internal_templateparser.php" -#line 366 "smarty_internal_templateparser.y" - function yy_r110(){ $this->_retvalue = $this->compiler->compileTag('private_modifier',array('modifier'=>$this->yystack[$this->yyidx + -1]->minor,'params'=>$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor)); } -#line 2187 "smarty_internal_templateparser.php" -#line 375 "smarty_internal_templateparser.y" function yy_r111(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']);} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['smarty_internal_index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2191 "smarty_internal_templateparser.php" -#line 378 "smarty_internal_templateparser.y" +#line 2167 "smarty_internal_templateparser.php" +#line 368 "smarty_internal_templateparser.y" function yy_r112(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2194 "smarty_internal_templateparser.php" -#line 382 "smarty_internal_templateparser.y" +#line 2170 "smarty_internal_templateparser.php" +#line 372 "smarty_internal_templateparser.y" function yy_r114(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2197 "smarty_internal_templateparser.php" -#line 383 "smarty_internal_templateparser.y" +#line 2173 "smarty_internal_templateparser.php" +#line 373 "smarty_internal_templateparser.y" function yy_r115(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2200 "smarty_internal_templateparser.php" -#line 386 "smarty_internal_templateparser.y" +#line 2176 "smarty_internal_templateparser.php" +#line 376 "smarty_internal_templateparser.y" function yy_r116(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'smarty_internal_index'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2203 "smarty_internal_templateparser.php" -#line 392 "smarty_internal_templateparser.y" +#line 2179 "smarty_internal_templateparser.php" +#line 382 "smarty_internal_templateparser.y" function yy_r117(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2206 "smarty_internal_templateparser.php" -#line 394 "smarty_internal_templateparser.y" +#line 2182 "smarty_internal_templateparser.php" +#line 384 "smarty_internal_templateparser.y" function yy_r118(){return; } -#line 2209 "smarty_internal_templateparser.php" -#line 398 "smarty_internal_templateparser.y" +#line 2185 "smarty_internal_templateparser.php" +#line 388 "smarty_internal_templateparser.y" function yy_r119(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor .')->value]'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable('$this->yystack[$this->yyidx + 0]->minor', null, true, false)->nocache; } -#line 2212 "smarty_internal_templateparser.php" -#line 399 "smarty_internal_templateparser.y" +#line 2188 "smarty_internal_templateparser.php" +#line 389 "smarty_internal_templateparser.y" function yy_r120(){ $this->_retvalue = '[$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor.']'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"), null, true, false)->nocache; } -#line 2215 "smarty_internal_templateparser.php" -#line 402 "smarty_internal_templateparser.y" +#line 2191 "smarty_internal_templateparser.php" +#line 392 "smarty_internal_templateparser.y" function yy_r121(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2218 "smarty_internal_templateparser.php" -#line 406 "smarty_internal_templateparser.y" +#line 2194 "smarty_internal_templateparser.php" +#line 396 "smarty_internal_templateparser.y" function yy_r124(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2221 "smarty_internal_templateparser.php" -#line 407 "smarty_internal_templateparser.y" +#line 2197 "smarty_internal_templateparser.php" +#line 397 "smarty_internal_templateparser.y" function yy_r125(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2224 "smarty_internal_templateparser.php" -#line 409 "smarty_internal_templateparser.y" +#line 2200 "smarty_internal_templateparser.php" +#line 399 "smarty_internal_templateparser.y" function yy_r126(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2227 "smarty_internal_templateparser.php" -#line 410 "smarty_internal_templateparser.y" +#line 2203 "smarty_internal_templateparser.php" +#line 400 "smarty_internal_templateparser.y" function yy_r127(){ $this->_retvalue = '['.$this->compiler->compileTag('private_special_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } -#line 2230 "smarty_internal_templateparser.php" -#line 414 "smarty_internal_templateparser.y" +#line 2206 "smarty_internal_templateparser.php" +#line 404 "smarty_internal_templateparser.y" function yy_r129(){$this->_retvalue = ''; } -#line 2233 "smarty_internal_templateparser.php" -#line 422 "smarty_internal_templateparser.y" +#line 2209 "smarty_internal_templateparser.php" +#line 412 "smarty_internal_templateparser.y" function yy_r131(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2236 "smarty_internal_templateparser.php" -#line 424 "smarty_internal_templateparser.y" +#line 2212 "smarty_internal_templateparser.php" +#line 414 "smarty_internal_templateparser.y" function yy_r132(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2239 "smarty_internal_templateparser.php" -#line 427 "smarty_internal_templateparser.y" +#line 2215 "smarty_internal_templateparser.php" +#line 417 "smarty_internal_templateparser.y" function yy_r133(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2242 "smarty_internal_templateparser.php" -#line 432 "smarty_internal_templateparser.y" +#line 2218 "smarty_internal_templateparser.php" +#line 422 "smarty_internal_templateparser.y" function yy_r134(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('private_special_variable',$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index']).$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['smarty_internal_index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"), null, true, false)->nocache;} } -#line 2246 "smarty_internal_templateparser.php" -#line 435 "smarty_internal_templateparser.y" +#line 2222 "smarty_internal_templateparser.php" +#line 425 "smarty_internal_templateparser.y" function yy_r135(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2249 "smarty_internal_templateparser.php" -#line 437 "smarty_internal_templateparser.y" +#line 2225 "smarty_internal_templateparser.php" +#line 427 "smarty_internal_templateparser.y" function yy_r136(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2252 "smarty_internal_templateparser.php" -#line 439 "smarty_internal_templateparser.y" +#line 2228 "smarty_internal_templateparser.php" +#line 429 "smarty_internal_templateparser.y" function yy_r137(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2255 "smarty_internal_templateparser.php" -#line 440 "smarty_internal_templateparser.y" +#line 2231 "smarty_internal_templateparser.php" +#line 430 "smarty_internal_templateparser.y" function yy_r138(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2258 "smarty_internal_templateparser.php" -#line 441 "smarty_internal_templateparser.y" +#line 2234 "smarty_internal_templateparser.php" +#line 431 "smarty_internal_templateparser.y" function yy_r139(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2261 "smarty_internal_templateparser.php" -#line 442 "smarty_internal_templateparser.y" +#line 2237 "smarty_internal_templateparser.php" +#line 432 "smarty_internal_templateparser.y" function yy_r140(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2264 "smarty_internal_templateparser.php" -#line 444 "smarty_internal_templateparser.y" +#line 2240 "smarty_internal_templateparser.php" +#line 434 "smarty_internal_templateparser.y" function yy_r141(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2267 "smarty_internal_templateparser.php" -#line 450 "smarty_internal_templateparser.y" +#line 2243 "smarty_internal_templateparser.php" +#line 440 "smarty_internal_templateparser.y" function yy_r142(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; @@ -2278,129 +2254,129 @@ static public $yy_action = array( $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } -#line 2276 "smarty_internal_templateparser.php" -#line 461 "smarty_internal_templateparser.y" +#line 2252 "smarty_internal_templateparser.php" +#line 451 "smarty_internal_templateparser.y" function yy_r143(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2279 "smarty_internal_templateparser.php" -#line 465 "smarty_internal_templateparser.y" +#line 2255 "smarty_internal_templateparser.php" +#line 455 "smarty_internal_templateparser.y" function yy_r144(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2282 "smarty_internal_templateparser.php" -#line 469 "smarty_internal_templateparser.y" +#line 2258 "smarty_internal_templateparser.php" +#line 459 "smarty_internal_templateparser.y" function yy_r146(){ return; } -#line 2285 "smarty_internal_templateparser.php" -#line 474 "smarty_internal_templateparser.y" +#line 2261 "smarty_internal_templateparser.php" +#line 464 "smarty_internal_templateparser.y" function yy_r147(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2288 "smarty_internal_templateparser.php" -#line 487 "smarty_internal_templateparser.y" +#line 2264 "smarty_internal_templateparser.php" +#line 477 "smarty_internal_templateparser.y" function yy_r149(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2291 "smarty_internal_templateparser.php" -#line 491 "smarty_internal_templateparser.y" +#line 2267 "smarty_internal_templateparser.php" +#line 481 "smarty_internal_templateparser.y" function yy_r151(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2294 "smarty_internal_templateparser.php" -#line 492 "smarty_internal_templateparser.y" +#line 2270 "smarty_internal_templateparser.php" +#line 482 "smarty_internal_templateparser.y" function yy_r152(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2297 "smarty_internal_templateparser.php" -#line 496 "smarty_internal_templateparser.y" +#line 2273 "smarty_internal_templateparser.php" +#line 486 "smarty_internal_templateparser.y" function yy_r153(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2300 "smarty_internal_templateparser.php" -#line 497 "smarty_internal_templateparser.y" +#line 2276 "smarty_internal_templateparser.php" +#line 487 "smarty_internal_templateparser.y" function yy_r154(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2303 "smarty_internal_templateparser.php" -#line 498 "smarty_internal_templateparser.y" +#line 2279 "smarty_internal_templateparser.php" +#line 488 "smarty_internal_templateparser.y" function yy_r155(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2306 "smarty_internal_templateparser.php" -#line 499 "smarty_internal_templateparser.y" +#line 2282 "smarty_internal_templateparser.php" +#line 489 "smarty_internal_templateparser.y" function yy_r156(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2309 "smarty_internal_templateparser.php" -#line 500 "smarty_internal_templateparser.y" +#line 2285 "smarty_internal_templateparser.php" +#line 490 "smarty_internal_templateparser.y" function yy_r157(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2312 "smarty_internal_templateparser.php" -#line 501 "smarty_internal_templateparser.y" +#line 2288 "smarty_internal_templateparser.php" +#line 491 "smarty_internal_templateparser.y" function yy_r158(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2315 "smarty_internal_templateparser.php" -#line 502 "smarty_internal_templateparser.y" +#line 2291 "smarty_internal_templateparser.php" +#line 492 "smarty_internal_templateparser.y" function yy_r159(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2318 "smarty_internal_templateparser.php" -#line 503 "smarty_internal_templateparser.y" +#line 2294 "smarty_internal_templateparser.php" +#line 493 "smarty_internal_templateparser.y" function yy_r160(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2321 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" +#line 2297 "smarty_internal_templateparser.php" +#line 494 "smarty_internal_templateparser.y" function yy_r161(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2324 "smarty_internal_templateparser.php" -#line 510 "smarty_internal_templateparser.y" +#line 2300 "smarty_internal_templateparser.php" +#line 500 "smarty_internal_templateparser.y" function yy_r167(){$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 2327 "smarty_internal_templateparser.php" -#line 512 "smarty_internal_templateparser.y" +#line 2303 "smarty_internal_templateparser.php" +#line 502 "smarty_internal_templateparser.y" function yy_r168(){$this->_retvalue = '=='; } -#line 2330 "smarty_internal_templateparser.php" -#line 513 "smarty_internal_templateparser.y" +#line 2306 "smarty_internal_templateparser.php" +#line 503 "smarty_internal_templateparser.y" function yy_r169(){$this->_retvalue = '!='; } -#line 2333 "smarty_internal_templateparser.php" -#line 514 "smarty_internal_templateparser.y" +#line 2309 "smarty_internal_templateparser.php" +#line 504 "smarty_internal_templateparser.y" function yy_r170(){$this->_retvalue = '>'; } -#line 2336 "smarty_internal_templateparser.php" -#line 515 "smarty_internal_templateparser.y" +#line 2312 "smarty_internal_templateparser.php" +#line 505 "smarty_internal_templateparser.y" function yy_r171(){$this->_retvalue = '<'; } -#line 2339 "smarty_internal_templateparser.php" -#line 516 "smarty_internal_templateparser.y" +#line 2315 "smarty_internal_templateparser.php" +#line 506 "smarty_internal_templateparser.y" function yy_r172(){$this->_retvalue = '>='; } -#line 2342 "smarty_internal_templateparser.php" -#line 517 "smarty_internal_templateparser.y" +#line 2318 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" function yy_r173(){$this->_retvalue = '<='; } -#line 2345 "smarty_internal_templateparser.php" -#line 518 "smarty_internal_templateparser.y" +#line 2321 "smarty_internal_templateparser.php" +#line 508 "smarty_internal_templateparser.y" function yy_r174(){$this->_retvalue = '==='; } -#line 2348 "smarty_internal_templateparser.php" -#line 519 "smarty_internal_templateparser.y" +#line 2324 "smarty_internal_templateparser.php" +#line 509 "smarty_internal_templateparser.y" function yy_r175(){$this->_retvalue = '!=='; } -#line 2351 "smarty_internal_templateparser.php" -#line 520 "smarty_internal_templateparser.y" +#line 2327 "smarty_internal_templateparser.php" +#line 510 "smarty_internal_templateparser.y" function yy_r176(){$this->_retvalue = '%'; } -#line 2354 "smarty_internal_templateparser.php" -#line 522 "smarty_internal_templateparser.y" +#line 2330 "smarty_internal_templateparser.php" +#line 512 "smarty_internal_templateparser.y" function yy_r177(){$this->_retvalue = '&&'; } -#line 2357 "smarty_internal_templateparser.php" -#line 523 "smarty_internal_templateparser.y" +#line 2333 "smarty_internal_templateparser.php" +#line 513 "smarty_internal_templateparser.y" function yy_r178(){$this->_retvalue = '||'; } -#line 2360 "smarty_internal_templateparser.php" -#line 524 "smarty_internal_templateparser.y" +#line 2336 "smarty_internal_templateparser.php" +#line 514 "smarty_internal_templateparser.y" function yy_r179(){$this->_retvalue = ' XOR '; } -#line 2363 "smarty_internal_templateparser.php" -#line 529 "smarty_internal_templateparser.y" +#line 2339 "smarty_internal_templateparser.php" +#line 519 "smarty_internal_templateparser.y" function yy_r180(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2366 "smarty_internal_templateparser.php" -#line 531 "smarty_internal_templateparser.y" +#line 2342 "smarty_internal_templateparser.php" +#line 521 "smarty_internal_templateparser.y" function yy_r182(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2369 "smarty_internal_templateparser.php" -#line 532 "smarty_internal_templateparser.y" +#line 2345 "smarty_internal_templateparser.php" +#line 522 "smarty_internal_templateparser.y" function yy_r183(){ return; } -#line 2372 "smarty_internal_templateparser.php" -#line 533 "smarty_internal_templateparser.y" +#line 2348 "smarty_internal_templateparser.php" +#line 523 "smarty_internal_templateparser.y" function yy_r184(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2375 "smarty_internal_templateparser.php" -#line 534 "smarty_internal_templateparser.y" +#line 2351 "smarty_internal_templateparser.php" +#line 524 "smarty_internal_templateparser.y" function yy_r185(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2378 "smarty_internal_templateparser.php" -#line 543 "smarty_internal_templateparser.y" +#line 2354 "smarty_internal_templateparser.php" +#line 533 "smarty_internal_templateparser.y" function yy_r189(){$this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; $this->compiler->has_variable_string = true; } -#line 2381 "smarty_internal_templateparser.php" -#line 545 "smarty_internal_templateparser.y" +#line 2357 "smarty_internal_templateparser.php" +#line 535 "smarty_internal_templateparser.y" function yy_r191(){$this->_retvalue = '{$_smarty_tpl->getVariable(\''. substr($this->yystack[$this->yyidx + 0]->minor,1) .'\')->value}'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"), null, true, false)->nocache; $this->compiler->has_variable_string = true; } -#line 2384 "smarty_internal_templateparser.php" -#line 546 "smarty_internal_templateparser.y" +#line 2360 "smarty_internal_templateparser.php" +#line 536 "smarty_internal_templateparser.y" function yy_r192(){if (substr($this->yystack[$this->yyidx + -1]->minor,0,1) == '\'') { $this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } else { $this->_retvalue = '{'.$this->yystack[$this->yyidx + -1]->minor.'}'; $this->compiler->has_variable_string = true; } } -#line 2392 "smarty_internal_templateparser.php" -#line 552 "smarty_internal_templateparser.y" +#line 2368 "smarty_internal_templateparser.php" +#line 542 "smarty_internal_templateparser.y" function yy_r193(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2395 "smarty_internal_templateparser.php" -#line 553 "smarty_internal_templateparser.y" +#line 2371 "smarty_internal_templateparser.php" +#line 543 "smarty_internal_templateparser.y" function yy_r194(){ $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 2398 "smarty_internal_templateparser.php" +#line 2374 "smarty_internal_templateparser.php" private $_retvalue; @@ -2462,7 +2438,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2461 "smarty_internal_templateparser.php" +#line 2437 "smarty_internal_templateparser.php" } function yy_accept() @@ -2479,7 +2455,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2479 "smarty_internal_templateparser.php" +#line 2455 "smarty_internal_templateparser.php" } function doParse($yymajor, $yytokenvalue)