/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 44 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "TypedefTable.h" #include "lex.h" #include "ParseNode.h" #include "TypeData.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; /* Line 268 of yacc.c */ #line 93 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, BOOL = 279, COMPLEX = 280, IMAGINARY = 281, TYPEOF = 282, LABEL = 283, ENUM = 284, STRUCT = 285, UNION = 286, TYPE = 287, FTYPE = 288, DTYPE = 289, CONTEXT = 290, SIZEOF = 291, OFFSETOF = 292, ATTRIBUTE = 293, EXTENSION = 294, IF = 295, ELSE = 296, SWITCH = 297, CASE = 298, DEFAULT = 299, DO = 300, WHILE = 301, FOR = 302, BREAK = 303, CONTINUE = 304, GOTO = 305, RETURN = 306, CHOOSE = 307, DISABLE = 308, ENABLE = 309, FALLTHRU = 310, TRY = 311, CATCH = 312, CATCHRESUME = 313, FINALLY = 314, THROW = 315, THROWRESUME = 316, AT = 317, ASM = 318, ALIGNAS = 319, ALIGNOF = 320, ATOMIC = 321, GENERIC = 322, NORETURN = 323, STATICASSERT = 324, THREADLOCAL = 325, IDENTIFIER = 326, QUOTED_IDENTIFIER = 327, TYPEDEFname = 328, TYPEGENname = 329, ATTR_IDENTIFIER = 330, ATTR_TYPEDEFname = 331, ATTR_TYPEGENname = 332, INTEGERconstant = 333, FLOATINGconstant = 334, CHARACTERconstant = 335, STRINGliteral = 336, ZERO = 337, ONE = 338, ARROW = 339, ICR = 340, DECR = 341, LS = 342, RS = 343, LE = 344, GE = 345, EQ = 346, NE = 347, ANDAND = 348, OROR = 349, ELLIPSIS = 350, MULTassign = 351, DIVassign = 352, MODassign = 353, PLUSassign = 354, MINUSassign = 355, LSassign = 356, RSassign = 357, ANDassign = 358, ERassign = 359, ORassign = 360, ATassign = 361, THEN = 362 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define BOOL 279 #define COMPLEX 280 #define IMAGINARY 281 #define TYPEOF 282 #define LABEL 283 #define ENUM 284 #define STRUCT 285 #define UNION 286 #define TYPE 287 #define FTYPE 288 #define DTYPE 289 #define CONTEXT 290 #define SIZEOF 291 #define OFFSETOF 292 #define ATTRIBUTE 293 #define EXTENSION 294 #define IF 295 #define ELSE 296 #define SWITCH 297 #define CASE 298 #define DEFAULT 299 #define DO 300 #define WHILE 301 #define FOR 302 #define BREAK 303 #define CONTINUE 304 #define GOTO 305 #define RETURN 306 #define CHOOSE 307 #define DISABLE 308 #define ENABLE 309 #define FALLTHRU 310 #define TRY 311 #define CATCH 312 #define CATCHRESUME 313 #define FINALLY 314 #define THROW 315 #define THROWRESUME 316 #define AT 317 #define ASM 318 #define ALIGNAS 319 #define ALIGNOF 320 #define ATOMIC 321 #define GENERIC 322 #define NORETURN 323 #define STATICASSERT 324 #define THREADLOCAL 325 #define IDENTIFIER 326 #define QUOTED_IDENTIFIER 327 #define TYPEDEFname 328 #define TYPEGENname 329 #define ATTR_IDENTIFIER 330 #define ATTR_TYPEDEFname 331 #define ATTR_TYPEGENname 332 #define INTEGERconstant 333 #define FLOATINGconstant 334 #define CHARACTERconstant 335 #define STRINGliteral 336 #define ZERO 337 #define ONE 338 #define ARROW 339 #define ICR 340 #define DECR 341 #define LS 342 #define RS 343 #define LE 344 #define GE 345 #define EQ 346 #define NE 347 #define ANDAND 348 #define OROR 349 #define ELLIPSIS 350 #define MULTassign 351 #define DIVassign 352 #define MODassign 353 #define PLUSassign 354 #define MINUSassign 355 #define LSassign 356 #define RSassign 357 #define ANDassign 358 #define ERassign 359 #define ORassign 360 #define ATassign 361 #define THEN 362 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 110 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; LabelNode *label; InitializerNode *in; bool flag; /* Line 293 of yacc.c */ #line 359 "Parser/parser.cc" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif /* Copy the second part of user declarations. */ /* Line 343 of yacc.c */ #line 371 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 248 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 11042 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 132 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 238 /* YYNRULES -- Number of rules. */ #define YYNRULES 751 /* YYNRULES -- Number of states. */ #define YYNSTATES 1578 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 362 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 117, 2, 2, 2, 124, 119, 2, 108, 109, 118, 120, 115, 121, 112, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 116, 131, 125, 130, 126, 129, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 110, 2, 111, 127, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 113, 128, 114, 122, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 34, 36, 38, 42, 46, 48, 55, 60, 64, 72, 76, 84, 87, 90, 98, 103, 105, 109, 110, 112, 116, 124, 134, 136, 140, 142, 146, 154, 158, 166, 168, 170, 172, 175, 178, 181, 184, 187, 190, 193, 198, 205, 207, 212, 217, 220, 225, 228, 230, 232, 234, 236, 238, 243, 248, 250, 254, 258, 262, 264, 268, 272, 274, 278, 282, 284, 288, 292, 296, 300, 302, 306, 310, 312, 316, 318, 322, 324, 328, 330, 334, 336, 340, 342, 348, 353, 359, 361, 363, 367, 371, 374, 375, 377, 380, 386, 393, 401, 403, 407, 409, 411, 413, 415, 417, 419, 421, 423, 425, 427, 429, 433, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 459, 464, 467, 475, 477, 481, 483, 486, 488, 491, 493, 496, 499, 505, 513, 519, 529, 535, 545, 547, 551, 553, 555, 559, 563, 566, 568, 571, 574, 575, 577, 580, 584, 585, 587, 590, 594, 598, 603, 604, 606, 608, 611, 617, 625, 632, 639, 644, 648, 653, 656, 660, 663, 667, 671, 675, 679, 685, 689, 693, 698, 700, 706, 713, 719, 726, 736, 747, 757, 768, 771, 773, 776, 779, 782, 784, 791, 800, 811, 824, 839, 840, 842, 843, 845, 847, 851, 856, 864, 865, 867, 871, 873, 877, 879, 881, 883, 887, 889, 891, 893, 897, 898, 900, 904, 909, 911, 915, 917, 919, 923, 927, 931, 935, 939, 942, 946, 953, 957, 961, 966, 968, 971, 974, 978, 984, 993, 1001, 1009, 1015, 1025, 1028, 1031, 1037, 1041, 1047, 1052, 1056, 1061, 1066, 1074, 1078, 1082, 1086, 1090, 1095, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1119, 1121, 1123, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1141, 1147, 1149, 1152, 1156, 1158, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1189, 1191, 1193, 1195, 1197, 1199, 1201, 1203, 1205, 1208, 1211, 1215, 1219, 1221, 1225, 1227, 1230, 1233, 1236, 1241, 1246, 1251, 1256, 1258, 1261, 1264, 1268, 1270, 1273, 1276, 1278, 1281, 1284, 1288, 1290, 1293, 1296, 1298, 1300, 1305, 1308, 1314, 1322, 1325, 1328, 1331, 1333, 1336, 1339, 1343, 1346, 1350, 1352, 1355, 1359, 1362, 1365, 1370, 1371, 1373, 1376, 1379, 1381, 1382, 1384, 1387, 1390, 1396, 1403, 1406, 1409, 1414, 1415, 1418, 1419, 1421, 1423, 1425, 1431, 1437, 1443, 1445, 1451, 1457, 1467, 1469, 1475, 1476, 1478, 1480, 1486, 1488, 1490, 1496, 1502, 1504, 1508, 1512, 1517, 1519, 1521, 1523, 1525, 1528, 1530, 1534, 1538, 1540, 1543, 1545, 1549, 1551, 1553, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1571, 1574, 1576, 1578, 1580, 1583, 1584, 1587, 1590, 1592, 1597, 1598, 1600, 1603, 1607, 1612, 1615, 1618, 1620, 1623, 1625, 1628, 1634, 1640, 1648, 1655, 1657, 1660, 1663, 1667, 1669, 1672, 1675, 1680, 1683, 1688, 1689, 1694, 1697, 1699, 1701, 1703, 1704, 1707, 1713, 1719, 1733, 1735, 1737, 1741, 1745, 1748, 1752, 1756, 1759, 1764, 1766, 1773, 1783, 1784, 1796, 1798, 1802, 1806, 1810, 1812, 1814, 1820, 1823, 1829, 1830, 1832, 1834, 1838, 1839, 1841, 1843, 1845, 1847, 1848, 1855, 1858, 1860, 1863, 1868, 1871, 1875, 1879, 1883, 1888, 1894, 1900, 1906, 1913, 1915, 1917, 1919, 1923, 1924, 1930, 1931, 1933, 1935, 1938, 1945, 1947, 1951, 1952, 1954, 1959, 1961, 1963, 1965, 1967, 1970, 1972, 1975, 1978, 1980, 1984, 1987, 1991, 1995, 1998, 2003, 2008, 2012, 2021, 2025, 2028, 2030, 2033, 2040, 2049, 2053, 2056, 2060, 2064, 2069, 2074, 2078, 2080, 2082, 2084, 2089, 2096, 2100, 2103, 2107, 2111, 2116, 2121, 2125, 2128, 2130, 2133, 2136, 2138, 2142, 2145, 2149, 2153, 2156, 2161, 2166, 2170, 2177, 2186, 2190, 2193, 2195, 2198, 2201, 2204, 2208, 2212, 2215, 2220, 2225, 2229, 2236, 2245, 2249, 2252, 2254, 2257, 2260, 2262, 2264, 2267, 2271, 2275, 2278, 2283, 2290, 2299, 2301, 2304, 2307, 2309, 2312, 2315, 2319, 2323, 2325, 2330, 2335, 2339, 2345, 2354, 2358, 2361, 2365, 2367, 2373, 2379, 2386, 2393, 2395, 2398, 2401, 2403, 2406, 2409, 2413, 2417, 2419, 2424, 2429, 2433, 2439, 2448, 2452, 2454, 2457, 2459, 2462, 2469, 2475, 2482, 2490, 2498, 2500, 2503, 2506, 2508, 2511, 2514, 2518, 2522, 2524, 2529, 2534, 2538, 2547, 2551, 2553, 2555, 2558, 2560, 2562, 2565, 2569, 2572, 2576, 2579, 2583, 2587, 2590, 2595, 2599, 2602, 2606, 2609, 2614, 2618, 2621, 2628, 2635, 2642, 2650, 2652, 2655, 2657, 2659, 2661, 2664, 2668, 2671, 2675, 2678, 2682, 2686, 2691, 2694, 2698, 2703, 2706, 2712, 2718, 2725, 2732, 2733, 2735, 2736 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 298, 0, -1, -1, -1, 78, -1, 79, -1, 80, -1, 71, -1, 75, -1, 139, -1, 71, -1, 75, -1, 71, -1, 139, -1, 82, -1, 83, -1, 81, -1, 140, 81, -1, 71, -1, 139, -1, 108, 167, 109, -1, 108, 171, 109, -1, 141, -1, 142, 110, 133, 162, 134, 111, -1, 142, 108, 143, 109, -1, 142, 112, 138, -1, 142, 112, 110, 133, 145, 134, 111, -1, 142, 84, 138, -1, 142, 84, 110, 133, 145, 134, 111, -1, 142, 85, -1, 142, 86, -1, 108, 271, 109, 113, 275, 368, 114, -1, 142, 113, 143, 114, -1, 144, -1, 143, 115, 144, -1, -1, 162, -1, 138, 116, 162, -1, 110, 133, 162, 134, 111, 116, 162, -1, 110, 133, 162, 115, 165, 134, 111, 116, 162, -1, 146, -1, 145, 115, 146, -1, 138, -1, 138, 112, 146, -1, 138, 112, 110, 133, 145, 134, 111, -1, 138, 84, 146, -1, 138, 84, 110, 133, 145, 134, 111, -1, 142, -1, 135, -1, 140, -1, 85, 147, -1, 86, 147, -1, 39, 149, -1, 148, 149, -1, 117, 149, -1, 118, 149, -1, 36, 147, -1, 36, 108, 271, 109, -1, 37, 108, 271, 115, 138, 109, -1, 75, -1, 75, 108, 272, 109, -1, 75, 108, 144, 109, -1, 65, 147, -1, 65, 108, 271, 109, -1, 93, 138, -1, 119, -1, 120, -1, 121, -1, 122, -1, 147, -1, 108, 271, 109, 149, -1, 108, 271, 109, 164, -1, 149, -1, 150, 118, 149, -1, 150, 123, 149, -1, 150, 124, 149, -1, 150, -1, 151, 120, 150, -1, 151, 121, 150, -1, 151, -1, 152, 87, 151, -1, 152, 88, 151, -1, 152, -1, 153, 125, 152, -1, 153, 126, 152, -1, 153, 89, 152, -1, 153, 90, 152, -1, 153, -1, 154, 91, 153, -1, 154, 92, 153, -1, 154, -1, 155, 119, 154, -1, 155, -1, 156, 127, 155, -1, 156, -1, 157, 128, 156, -1, 157, -1, 158, 93, 157, -1, 158, -1, 159, 94, 158, -1, 159, -1, 159, 129, 167, 116, 160, -1, 159, 129, 116, 160, -1, 159, 129, 167, 116, 164, -1, 160, -1, 160, -1, 147, 130, 162, -1, 147, 166, 162, -1, 164, 369, -1, -1, 162, -1, 110, 111, -1, 110, 133, 162, 134, 111, -1, 110, 133, 115, 165, 134, 111, -1, 110, 133, 162, 115, 165, 134, 111, -1, 163, -1, 165, 115, 163, -1, 96, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 162, -1, 167, 115, 162, -1, -1, 167, -1, 170, -1, 171, -1, 175, -1, 176, -1, 188, -1, 190, -1, 191, -1, 196, -1, 127, 142, 113, 143, 114, 131, -1, 138, 116, 308, 169, -1, 113, 114, -1, 113, 133, 133, 207, 172, 134, 114, -1, 173, -1, 172, 133, 173, -1, 210, -1, 39, 210, -1, 304, -1, 169, 134, -1, 169, -1, 174, 169, -1, 168, 131, -1, 40, 108, 167, 109, 169, -1, 40, 108, 167, 109, 169, 41, 169, -1, 42, 108, 167, 109, 181, -1, 42, 108, 167, 109, 113, 133, 203, 182, 114, -1, 52, 108, 167, 109, 181, -1, 52, 108, 167, 109, 113, 133, 203, 184, 114, -1, 161, -1, 161, 95, 161, -1, 306, -1, 177, -1, 178, 115, 177, -1, 43, 178, 116, -1, 44, 116, -1, 179, -1, 180, 179, -1, 180, 169, -1, -1, 183, -1, 180, 174, -1, 183, 180, 174, -1, -1, 185, -1, 180, 187, -1, 180, 174, 186, -1, 185, 180, 187, -1, 185, 180, 174, 186, -1, -1, 187, -1, 55, -1, 55, 131, -1, 46, 108, 167, 109, 169, -1, 45, 169, 46, 108, 167, 109, 131, -1, 47, 108, 133, 189, 109, 169, -1, 168, 134, 131, 168, 131, 168, -1, 210, 168, 131, 168, -1, 50, 138, 131, -1, 50, 118, 167, 131, -1, 49, 131, -1, 49, 138, 131, -1, 48, 131, -1, 48, 138, 131, -1, 51, 168, 131, -1, 60, 163, 131, -1, 61, 163, 131, -1, 61, 163, 62, 162, 131, -1, 56, 171, 192, -1, 56, 171, 194, -1, 56, 171, 192, 194, -1, 193, -1, 57, 108, 95, 109, 171, -1, 193, 57, 108, 95, 109, 171, -1, 58, 108, 95, 109, 171, -1, 193, 58, 108, 95, 109, 171, -1, 57, 108, 133, 133, 195, 134, 109, 171, 134, -1, 193, 57, 108, 133, 133, 195, 134, 109, 171, 134, -1, 58, 108, 133, 133, 195, 134, 109, 171, 134, -1, 193, 58, 108, 133, 133, 195, 134, 109, 171, 134, -1, 59, 171, -1, 223, -1, 223, 305, -1, 223, 353, -1, 362, 138, -1, 362, -1, 63, 197, 108, 140, 109, 131, -1, 63, 197, 108, 140, 116, 198, 109, 131, -1, 63, 197, 108, 140, 116, 198, 116, 198, 109, 131, -1, 63, 197, 108, 140, 116, 198, 116, 198, 116, 201, 109, 131, -1, 63, 197, 50, 108, 140, 116, 116, 198, 116, 201, 116, 202, 109, 131, -1, -1, 11, -1, -1, 199, -1, 200, -1, 199, 115, 200, -1, 140, 108, 161, 109, -1, 110, 161, 111, 140, 108, 161, 109, -1, -1, 140, -1, 201, 115, 140, -1, 138, -1, 202, 115, 138, -1, 134, -1, 204, -1, 210, -1, 204, 133, 210, -1, 134, -1, 206, -1, 220, -1, 206, 133, 220, -1, -1, 208, -1, 28, 209, 131, -1, 208, 28, 209, 131, -1, 270, -1, 209, 115, 270, -1, 211, -1, 220, -1, 212, 134, 131, -1, 217, 134, 131, -1, 214, 134, 131, -1, 289, 134, 131, -1, 292, 134, 131, -1, 213, 273, -1, 229, 213, 273, -1, 212, 134, 115, 133, 268, 273, -1, 363, 268, 307, -1, 366, 268, 307, -1, 225, 366, 268, 307, -1, 215, -1, 225, 215, -1, 229, 215, -1, 229, 225, 215, -1, 214, 134, 115, 133, 268, -1, 110, 111, 268, 108, 133, 256, 134, 109, -1, 366, 268, 108, 133, 256, 134, 109, -1, 216, 268, 108, 133, 256, 134, 109, -1, 110, 133, 258, 134, 111, -1, 110, 133, 258, 134, 115, 133, 259, 134, 111, -1, 3, 213, -1, 3, 215, -1, 217, 134, 115, 133, 138, -1, 3, 223, 305, -1, 218, 134, 115, 133, 305, -1, 225, 3, 223, 305, -1, 223, 3, 305, -1, 223, 3, 225, 305, -1, 3, 138, 130, 162, -1, 219, 134, 115, 133, 138, 130, 162, -1, 221, 134, 131, -1, 218, 134, 131, -1, 219, 134, 131, -1, 238, 134, 131, -1, 222, 305, 307, 273, -1, 221, 115, 308, 305, 307, 273, -1, 234, -1, 238, -1, 240, -1, 279, -1, 235, -1, 239, -1, 241, -1, 280, -1, -1, 225, -1, 226, -1, 225, 226, -1, 227, -1, 310, -1, 10, -1, 12, -1, 11, -1, 14, -1, 66, -1, -1, 13, 108, 228, 282, 109, -1, 230, -1, 225, 230, -1, 229, 225, 230, -1, 231, -1, 230, 231, -1, 232, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 68, -1, 70, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 24, -1, 25, -1, 26, -1, 235, -1, 229, 235, -1, 234, 231, -1, 234, 231, 225, -1, 234, 231, 235, -1, 236, -1, 224, 237, 224, -1, 233, -1, 225, 233, -1, 236, 226, -1, 236, 233, -1, 27, 108, 272, 109, -1, 27, 108, 167, 109, -1, 77, 108, 272, 109, -1, 77, 108, 167, 109, -1, 239, -1, 229, 239, -1, 238, 231, -1, 238, 231, 225, -1, 242, -1, 225, 242, -1, 239, 226, -1, 241, -1, 229, 241, -1, 240, 231, -1, 240, 231, 225, -1, 73, -1, 225, 73, -1, 241, 226, -1, 243, -1, 253, -1, 244, 113, 245, 114, -1, 244, 270, -1, 244, 270, 113, 245, 114, -1, 244, 108, 288, 109, 113, 245, 114, -1, 244, 281, -1, 30, 308, -1, 31, 308, -1, 246, -1, 245, 246, -1, 247, 131, -1, 39, 247, 131, -1, 248, 131, -1, 39, 248, 131, -1, 362, -1, 362, 270, -1, 247, 115, 270, -1, 247, 115, -1, 223, 249, -1, 248, 115, 308, 249, -1, -1, 251, -1, 314, 250, -1, 327, 250, -1, 353, -1, -1, 251, -1, 116, 161, -1, 29, 308, -1, 252, 113, 254, 368, 114, -1, 252, 270, 113, 254, 368, 114, -1, 252, 270, -1, 270, 255, -1, 254, 115, 270, 255, -1, -1, 130, 161, -1, -1, 257, -1, 259, -1, 258, -1, 258, 134, 115, 133, 259, -1, 259, 134, 115, 133, 95, -1, 258, 134, 115, 133, 95, -1, 263, -1, 259, 134, 115, 133, 263, -1, 258, 134, 115, 133, 263, -1, 258, 134, 115, 133, 259, 134, 115, 133, 263, -1, 264, -1, 259, 134, 115, 133, 264, -1, -1, 261, -1, 262, -1, 262, 134, 115, 133, 95, -1, 266, -1, 265, -1, 262, 134, 115, 133, 266, -1, 262, 134, 115, 133, 265, -1, 265, -1, 358, 268, 369, -1, 366, 268, 369, -1, 225, 366, 268, 369, -1, 215, -1, 266, -1, 358, -1, 366, -1, 225, 366, -1, 367, -1, 222, 332, 369, -1, 222, 336, 369, -1, 222, -1, 222, 347, -1, 138, -1, 267, 115, 138, -1, 136, -1, 73, -1, 74, -1, 137, -1, 73, -1, 74, -1, 138, -1, 73, -1, 74, -1, 362, -1, 223, -1, 223, 353, -1, 362, -1, 367, -1, 223, -1, 223, 341, -1, -1, 130, 274, -1, 106, 274, -1, 162, -1, 113, 275, 368, 114, -1, -1, 274, -1, 276, 274, -1, 275, 115, 274, -1, 275, 115, 276, 274, -1, 277, 116, -1, 270, 116, -1, 278, -1, 277, 278, -1, 79, -1, 112, 270, -1, 110, 133, 162, 134, 111, -1, 110, 133, 306, 134, 111, -1, 110, 133, 161, 95, 161, 134, 111, -1, 112, 110, 133, 145, 134, 111, -1, 280, -1, 229, 280, -1, 279, 231, -1, 279, 231, 225, -1, 281, -1, 225, 281, -1, 280, 226, -1, 74, 108, 288, 109, -1, 283, 369, -1, 282, 115, 283, 369, -1, -1, 285, 270, 284, 286, -1, 223, 332, -1, 32, -1, 34, -1, 33, -1, -1, 286, 287, -1, 128, 270, 108, 288, 109, -1, 128, 113, 133, 294, 114, -1, 128, 108, 133, 282, 134, 109, 113, 133, 294, 114, 108, 288, 109, -1, 272, -1, 162, -1, 288, 115, 272, -1, 288, 115, 162, -1, 32, 290, -1, 230, 32, 290, -1, 289, 115, 290, -1, 291, 286, -1, 291, 286, 130, 272, -1, 270, -1, 269, 108, 133, 282, 134, 109, -1, 35, 270, 108, 133, 282, 134, 109, 113, 114, -1, -1, 35, 270, 108, 133, 282, 134, 109, 113, 293, 294, 114, -1, 295, -1, 294, 133, 295, -1, 296, 134, 131, -1, 297, 134, 131, -1, 213, -1, 215, -1, 296, 134, 115, 133, 268, -1, 223, 305, -1, 297, 134, 115, 133, 305, -1, -1, 299, -1, 301, -1, 299, 133, 301, -1, -1, 299, -1, 210, -1, 303, -1, 196, -1, -1, 5, 81, 302, 113, 300, 114, -1, 39, 301, -1, 304, -1, 319, 171, -1, 323, 133, 205, 171, -1, 214, 171, -1, 222, 319, 171, -1, 225, 319, 171, -1, 229, 319, 171, -1, 229, 225, 319, 171, -1, 222, 323, 133, 205, 171, -1, 225, 323, 133, 205, 171, -1, 229, 323, 133, 205, 171, -1, 229, 225, 323, 133, 205, 171, -1, 314, -1, 319, -1, 327, -1, 161, 122, 161, -1, -1, 63, 108, 140, 109, 308, -1, -1, 309, -1, 310, -1, 309, 310, -1, 38, 108, 108, 311, 109, 109, -1, 312, -1, 311, 115, 312, -1, -1, 313, -1, 313, 108, 168, 109, -1, 268, -1, 232, -1, 233, -1, 226, -1, 315, 308, -1, 316, -1, 317, 308, -1, 318, 308, -1, 136, -1, 108, 315, 109, -1, 118, 314, -1, 118, 225, 314, -1, 108, 316, 109, -1, 315, 345, -1, 108, 316, 109, 345, -1, 108, 317, 109, 346, -1, 108, 317, 109, -1, 108, 316, 109, 108, 133, 260, 134, 109, -1, 108, 318, 109, -1, 320, 308, -1, 321, -1, 322, 308, -1, 315, 108, 133, 260, 134, 109, -1, 108, 321, 109, 108, 133, 260, 134, 109, -1, 108, 320, 109, -1, 118, 319, -1, 118, 225, 319, -1, 108, 321, 109, -1, 108, 321, 109, 345, -1, 108, 322, 109, 346, -1, 108, 322, 109, -1, 324, -1, 325, -1, 326, -1, 315, 108, 267, 109, -1, 108, 325, 109, 108, 267, 109, -1, 108, 324, 109, -1, 118, 323, -1, 118, 225, 323, -1, 108, 325, 109, -1, 108, 325, 109, 345, -1, 108, 326, 109, 346, -1, 108, 326, 109, -1, 328, 308, -1, 329, -1, 330, 308, -1, 331, 308, -1, 337, -1, 108, 328, 109, -1, 118, 327, -1, 118, 225, 327, -1, 108, 329, 109, -1, 328, 345, -1, 108, 329, 109, 345, -1, 108, 330, 109, 346, -1, 108, 330, 109, -1, 328, 108, 133, 260, 134, 109, -1, 108, 329, 109, 108, 133, 260, 134, 109, -1, 108, 331, 109, -1, 315, 308, -1, 333, -1, 334, 308, -1, 335, 308, -1, 118, 332, -1, 118, 225, 332, -1, 108, 333, 109, -1, 315, 351, -1, 108, 333, 109, 345, -1, 108, 334, 109, 346, -1, 108, 334, 109, -1, 315, 108, 133, 260, 134, 109, -1, 108, 333, 109, 108, 133, 260, 134, 109, -1, 108, 335, 109, -1, 337, 308, -1, 338, -1, 339, 308, -1, 340, 308, -1, 73, -1, 74, -1, 118, 336, -1, 118, 225, 336, -1, 108, 338, 109, -1, 337, 351, -1, 108, 338, 109, 351, -1, 337, 108, 133, 260, 134, 109, -1, 108, 338, 109, 108, 133, 260, 134, 109, -1, 342, -1, 343, 308, -1, 344, 308, -1, 118, -1, 118, 225, -1, 118, 341, -1, 118, 225, 341, -1, 108, 342, 109, -1, 345, -1, 108, 342, 109, 345, -1, 108, 343, 109, 346, -1, 108, 343, 109, -1, 108, 133, 260, 134, 109, -1, 108, 342, 109, 108, 133, 260, 134, 109, -1, 108, 344, 109, -1, 110, 111, -1, 110, 111, 346, -1, 346, -1, 110, 133, 162, 134, 111, -1, 110, 133, 118, 134, 111, -1, 346, 110, 133, 162, 134, 111, -1, 346, 110, 133, 118, 134, 111, -1, 348, -1, 349, 308, -1, 350, 308, -1, 118, -1, 118, 225, -1, 118, 347, -1, 118, 225, 347, -1, 108, 348, 109, -1, 351, -1, 108, 348, 109, 351, -1, 108, 349, 109, 346, -1, 108, 349, 109, -1, 108, 133, 260, 134, 109, -1, 108, 348, 109, 108, 133, 260, 134, 109, -1, 108, 350, 109, -1, 352, -1, 352, 346, -1, 346, -1, 110, 111, -1, 110, 133, 225, 118, 134, 111, -1, 110, 133, 225, 134, 111, -1, 110, 133, 225, 162, 134, 111, -1, 110, 133, 7, 224, 162, 134, 111, -1, 110, 133, 225, 7, 162, 134, 111, -1, 354, -1, 355, 308, -1, 356, 308, -1, 118, -1, 118, 225, -1, 118, 353, -1, 118, 225, 353, -1, 108, 354, 109, -1, 345, -1, 108, 354, 109, 345, -1, 108, 355, 109, 346, -1, 108, 355, 109, -1, 108, 354, 109, 108, 133, 260, 134, 109, -1, 108, 356, 109, -1, 358, -1, 366, -1, 225, 366, -1, 359, -1, 360, -1, 118, 223, -1, 225, 118, 223, -1, 118, 367, -1, 225, 118, 367, -1, 118, 357, -1, 225, 118, 357, -1, 110, 111, 223, -1, 361, 223, -1, 110, 111, 346, 223, -1, 361, 346, 223, -1, 346, 223, -1, 110, 111, 359, -1, 361, 359, -1, 110, 111, 346, 359, -1, 361, 346, 359, -1, 346, 359, -1, 110, 133, 225, 118, 134, 111, -1, 110, 133, 225, 162, 134, 111, -1, 110, 133, 229, 162, 134, 111, -1, 110, 133, 229, 225, 162, 134, 111, -1, 366, -1, 225, 366, -1, 363, -1, 364, -1, 365, -1, 118, 223, -1, 225, 118, 223, -1, 118, 367, -1, 225, 118, 367, -1, 118, 362, -1, 225, 118, 362, -1, 110, 111, 223, -1, 110, 111, 346, 223, -1, 346, 223, -1, 110, 111, 364, -1, 110, 111, 346, 364, -1, 346, 364, -1, 110, 133, 259, 134, 111, -1, 110, 111, 108, 256, 109, -1, 366, 108, 133, 256, 134, 109, -1, 216, 108, 133, 256, 134, 109, -1, -1, 115, -1, -1, 130, 162, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 290, 290, 296, 305, 306, 307, 311, 312, 313, 317, 318, 322, 323, 327, 328, 332, 333, 339, 341, 343, 345, 350, 351, 357, 361, 363, 364, 366, 367, 369, 371, 373, 381, 382, 388, 389, 390, 395, 397, 402, 403, 407, 411, 413, 415, 417, 422, 425, 427, 429, 431, 433, 435, 437, 439, 445, 447, 449, 451, 453, 455, 457, 459, 461, 466, 467, 468, 469, 473, 474, 476, 481, 482, 484, 486, 491, 492, 494, 499, 500, 502, 507, 508, 510, 512, 514, 519, 520, 522, 527, 528, 533, 534, 539, 540, 545, 546, 551, 552, 557, 558, 560, 562, 567, 572, 573, 575, 577, 583, 584, 590, 592, 594, 596, 601, 602, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 620, 621, 627, 628, 634, 635, 636, 637, 638, 639, 640, 641, 642, 651, 658, 660, 670, 671, 676, 678, 680, 682, 686, 687, 692, 697, 700, 702, 704, 709, 711, 719, 720, 722, 726, 727, 732, 733, 738, 739, 743, 748, 749, 753, 755, 761, 762, 766, 768, 770, 772, 778, 779, 783, 784, 788, 790, 792, 797, 799, 804, 806, 810, 813, 817, 820, 824, 826, 830, 832, 839, 841, 843, 852, 854, 856, 858, 860, 865, 867, 869, 871, 876, 889, 890, 895, 897, 902, 906, 908, 910, 912, 914, 920, 921, 927, 928, 932, 933, 938, 940, 946, 947, 949, 954, 956, 963, 965, 969, 970, 975, 977, 981, 982, 986, 988, 992, 993, 997, 998, 1002, 1003, 1018, 1019, 1020, 1021, 1022, 1026, 1031, 1038, 1048, 1053, 1058, 1066, 1071, 1076, 1081, 1086, 1094, 1116, 1121, 1128, 1130, 1137, 1142, 1147, 1158, 1163, 1168, 1173, 1178, 1187, 1192, 1200, 1201, 1202, 1203, 1209, 1214, 1222, 1223, 1224, 1225, 1229, 1230, 1231, 1232, 1237, 1238, 1247, 1248, 1253, 1254, 1259, 1261, 1263, 1265, 1267, 1270, 1269, 1281, 1282, 1284, 1294, 1295, 1300, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1323, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1351, 1352, 1354, 1356, 1358, 1363, 1364, 1370, 1371, 1373, 1375, 1380, 1382, 1384, 1386, 1391, 1392, 1394, 1396, 1401, 1402, 1404, 1409, 1410, 1412, 1414, 1419, 1421, 1423, 1428, 1429, 1433, 1435, 1437, 1439, 1441, 1446, 1448, 1453, 1455, 1460, 1461, 1463, 1464, 1469, 1470, 1472, 1474, 1479, 1481, 1487, 1488, 1490, 1493, 1496, 1501, 1502, 1507, 1512, 1516, 1518, 1520, 1525, 1527, 1533, 1534, 1542, 1543, 1547, 1548, 1549, 1551, 1553, 1560, 1561, 1563, 1565, 1570, 1571, 1577, 1578, 1582, 1583, 1588, 1589, 1590, 1592, 1600, 1601, 1603, 1606, 1608, 1612, 1613, 1614, 1616, 1618, 1622, 1627, 1635, 1636, 1645, 1647, 1652, 1653, 1654, 1658, 1659, 1660, 1664, 1665, 1666, 1670, 1671, 1672, 1677, 1678, 1679, 1680, 1686, 1687, 1689, 1694, 1695, 1700, 1701, 1702, 1703, 1704, 1719, 1720, 1725, 1726, 1734, 1736, 1738, 1741, 1743, 1745, 1768, 1769, 1771, 1773, 1778, 1779, 1781, 1786, 1791, 1792, 1798, 1797, 1801, 1805, 1807, 1809, 1815, 1816, 1821, 1826, 1828, 1833, 1835, 1836, 1838, 1843, 1845, 1847, 1852, 1854, 1859, 1864, 1872, 1878, 1877, 1891, 1892, 1897, 1898, 1902, 1907, 1912, 1920, 1925, 1936, 1937, 1948, 1949, 1955, 1956, 1960, 1961, 1962, 1965, 1964, 1975, 1980, 1985, 1991, 2000, 2006, 2012, 2018, 2024, 2032, 2038, 2046, 2052, 2061, 2062, 2063, 2067, 2071, 2073, 2078, 2079, 2083, 2084, 2089, 2095, 2096, 2099, 2101, 2102, 2106, 2107, 2108, 2109, 2143, 2145, 2146, 2148, 2153, 2158, 2163, 2165, 2167, 2172, 2174, 2176, 2178, 2183, 2185, 2195, 2197, 2198, 2203, 2205, 2207, 2212, 2214, 2216, 2221, 2223, 2225, 2234, 2235, 2236, 2240, 2242, 2244, 2249, 2251, 2253, 2258, 2260, 2262, 2277, 2279, 2280, 2282, 2287, 2288, 2293, 2295, 2297, 2302, 2304, 2306, 2308, 2313, 2315, 2317, 2327, 2329, 2330, 2332, 2337, 2339, 2341, 2346, 2348, 2350, 2352, 2357, 2359, 2361, 2392, 2394, 2395, 2397, 2402, 2407, 2415, 2417, 2419, 2424, 2426, 2431, 2433, 2447, 2448, 2450, 2455, 2457, 2459, 2461, 2463, 2468, 2469, 2471, 2473, 2478, 2480, 2482, 2488, 2490, 2492, 2496, 2498, 2500, 2502, 2516, 2517, 2519, 2524, 2526, 2528, 2530, 2532, 2537, 2538, 2540, 2542, 2547, 2549, 2551, 2557, 2558, 2560, 2569, 2572, 2574, 2577, 2579, 2581, 2594, 2595, 2597, 2602, 2604, 2606, 2608, 2610, 2615, 2616, 2618, 2620, 2625, 2627, 2635, 2636, 2637, 2642, 2643, 2647, 2649, 2651, 2653, 2655, 2657, 2664, 2666, 2668, 2670, 2672, 2674, 2676, 2678, 2680, 2682, 2687, 2689, 2691, 2696, 2722, 2723, 2725, 2729, 2730, 2734, 2736, 2738, 2740, 2742, 2744, 2751, 2753, 2755, 2757, 2759, 2761, 2766, 2771, 2773, 2775, 2793, 2795, 2800, 2801 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "TYPE", "FTYPE", "DTYPE", "CONTEXT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "':'", "'!'", "'*'", "'&'", "'+'", "'-'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "tuple", "tuple_expression_list", "assignment_operator", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@2", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "context_specifier", "$@3", "context_declaration_list", "context_declaration", "new_context_declaring_list", "context_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@4", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 40, 41, 91, 93, 46, 123, 125, 44, 58, 33, 42, 38, 43, 45, 126, 47, 37, 60, 62, 94, 124, 63, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 132, 133, 134, 135, 135, 135, 136, 136, 136, 137, 137, 138, 138, 139, 139, 140, 140, 141, 141, 141, 141, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 143, 143, 144, 144, 144, 144, 144, 145, 145, 146, 146, 146, 146, 146, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 148, 148, 148, 148, 149, 149, 149, 150, 150, 150, 150, 151, 151, 151, 152, 152, 152, 153, 153, 153, 153, 153, 154, 154, 154, 155, 155, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 160, 160, 161, 162, 162, 162, 162, 163, 163, 164, 164, 164, 164, 165, 165, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 167, 167, 168, 168, 169, 169, 169, 169, 169, 169, 169, 169, 169, 170, 171, 171, 172, 172, 173, 173, 173, 173, 174, 174, 175, 176, 176, 176, 176, 176, 176, 177, 177, 177, 178, 178, 179, 179, 180, 180, 181, 182, 182, 183, 183, 184, 184, 185, 185, 185, 185, 186, 186, 187, 187, 188, 188, 188, 189, 189, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 191, 191, 191, 192, 192, 192, 192, 192, 193, 193, 193, 193, 194, 195, 195, 195, 195, 195, 196, 196, 196, 196, 196, 197, 197, 198, 198, 199, 199, 200, 200, 201, 201, 201, 202, 202, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 211, 211, 211, 212, 212, 212, 213, 213, 213, 214, 214, 214, 214, 214, 215, 215, 215, 216, 216, 217, 217, 217, 218, 218, 218, 218, 218, 219, 219, 220, 220, 220, 220, 221, 221, 222, 222, 222, 222, 223, 223, 223, 223, 224, 224, 225, 225, 226, 226, 227, 227, 227, 227, 227, 228, 227, 229, 229, 229, 230, 230, 231, 232, 232, 232, 232, 232, 232, 232, 232, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, 234, 234, 234, 234, 234, 235, 235, 236, 236, 236, 236, 237, 237, 237, 237, 238, 238, 238, 238, 239, 239, 239, 240, 240, 240, 240, 241, 241, 241, 242, 242, 243, 243, 243, 243, 243, 244, 244, 245, 245, 246, 246, 246, 246, 247, 247, 247, 247, 248, 248, 249, 249, 249, 249, 249, 250, 250, 251, 252, 253, 253, 253, 254, 254, 255, 255, 256, 256, 257, 257, 257, 257, 257, 258, 258, 258, 258, 259, 259, 260, 260, 261, 261, 262, 262, 262, 262, 263, 263, 263, 263, 263, 264, 264, 264, 264, 264, 265, 265, 266, 266, 267, 267, 268, 268, 268, 269, 269, 269, 270, 270, 270, 271, 271, 271, 272, 272, 272, 272, 273, 273, 273, 274, 274, 275, 275, 275, 275, 275, 276, 276, 277, 277, 278, 278, 278, 278, 278, 278, 279, 279, 279, 279, 280, 280, 280, 281, 282, 282, 284, 283, 283, 285, 285, 285, 286, 286, 287, 287, 287, 288, 288, 288, 288, 289, 289, 289, 290, 290, 291, 291, 292, 293, 292, 294, 294, 295, 295, 296, 296, 296, 297, 297, 298, 298, 299, 299, 300, 300, 301, 301, 301, 302, 301, 301, 303, 303, 303, 304, 304, 304, 304, 304, 304, 304, 304, 304, 305, 305, 305, 306, 307, 307, 308, 308, 309, 309, 310, 311, 311, 312, 312, 312, 313, 313, 313, 313, 314, 314, 314, 314, 315, 315, 316, 316, 316, 317, 317, 317, 317, 318, 318, 319, 319, 319, 320, 320, 320, 321, 321, 321, 322, 322, 322, 323, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 327, 328, 328, 329, 329, 329, 330, 330, 330, 330, 331, 331, 331, 332, 332, 332, 332, 333, 333, 333, 334, 334, 334, 334, 335, 335, 335, 336, 336, 336, 336, 337, 337, 338, 338, 338, 339, 339, 340, 340, 341, 341, 341, 342, 342, 342, 342, 342, 343, 343, 343, 343, 344, 344, 344, 345, 345, 345, 346, 346, 346, 346, 347, 347, 347, 348, 348, 348, 348, 348, 349, 349, 349, 349, 350, 350, 350, 351, 351, 351, 352, 352, 352, 352, 352, 352, 353, 353, 353, 354, 354, 354, 354, 354, 355, 355, 355, 355, 356, 356, 357, 357, 357, 358, 358, 359, 359, 359, 359, 359, 359, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 361, 361, 361, 361, 362, 362, 362, 363, 363, 364, 364, 364, 364, 364, 364, 365, 365, 365, 365, 365, 365, 366, 367, 367, 367, 368, 368, 369, 369 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 4, 6, 1, 4, 4, 2, 4, 2, 1, 1, 1, 1, 1, 4, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 5, 1, 1, 3, 3, 2, 0, 1, 2, 5, 6, 7, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 5, 7, 2, 2, 2, 1, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 6, 2, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 1, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 294, 294, 315, 313, 316, 314, 317, 318, 300, 302, 301, 0, 303, 329, 321, 326, 324, 325, 323, 322, 327, 328, 330, 331, 332, 546, 546, 546, 0, 0, 0, 294, 220, 304, 319, 320, 7, 359, 0, 8, 14, 15, 0, 2, 294, 564, 9, 524, 522, 247, 3, 452, 3, 260, 0, 3, 3, 3, 248, 3, 0, 0, 0, 295, 296, 298, 294, 307, 310, 312, 340, 286, 333, 338, 287, 348, 288, 355, 352, 362, 0, 0, 363, 289, 472, 476, 3, 3, 0, 2, 518, 523, 528, 299, 0, 0, 546, 576, 546, 2, 587, 588, 589, 294, 0, 730, 731, 0, 12, 294, 0, 13, 270, 271, 0, 295, 290, 291, 292, 293, 525, 305, 391, 547, 548, 369, 370, 12, 443, 444, 11, 439, 442, 0, 502, 497, 488, 443, 444, 0, 0, 527, 221, 0, 294, 0, 0, 0, 0, 0, 0, 0, 0, 294, 294, 2, 0, 732, 295, 581, 593, 736, 729, 727, 734, 0, 0, 0, 254, 2, 0, 531, 437, 438, 436, 0, 0, 0, 0, 546, 0, 633, 634, 0, 0, 544, 540, 546, 561, 546, 546, 541, 2, 542, 546, 600, 546, 546, 603, 0, 0, 0, 294, 294, 313, 360, 2, 294, 261, 297, 308, 341, 353, 477, 0, 2, 0, 452, 262, 295, 334, 349, 356, 473, 0, 2, 0, 311, 335, 342, 343, 0, 350, 354, 357, 361, 444, 294, 294, 365, 368, 0, 394, 474, 478, 0, 0, 0, 1, 294, 2, 529, 575, 577, 294, 2, 740, 295, 743, 544, 544, 295, 0, 0, 0, 273, 546, 541, 2, 294, 0, 0, 294, 549, 2, 500, 2, 553, 0, 0, 0, 0, 0, 0, 18, 59, 4, 5, 6, 16, 0, 0, 0, 294, 2, 0, 294, 65, 66, 67, 68, 48, 19, 49, 22, 47, 69, 0, 72, 76, 79, 82, 87, 90, 92, 94, 96, 98, 100, 105, 494, 750, 450, 493, 0, 448, 449, 0, 565, 580, 583, 586, 592, 595, 598, 359, 0, 2, 738, 0, 294, 741, 2, 294, 3, 424, 0, 432, 295, 294, 307, 333, 287, 348, 355, 3, 3, 406, 410, 420, 425, 472, 294, 426, 705, 706, 294, 427, 429, 294, 2, 582, 594, 728, 2, 2, 249, 2, 457, 0, 455, 454, 453, 141, 2, 2, 251, 2, 2, 250, 2, 281, 2, 282, 0, 280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566, 605, 0, 452, 2, 560, 569, 659, 562, 563, 532, 294, 2, 599, 608, 601, 602, 0, 276, 294, 294, 339, 295, 0, 295, 0, 294, 733, 737, 735, 533, 294, 544, 255, 263, 309, 0, 2, 534, 294, 498, 336, 337, 283, 351, 358, 0, 294, 2, 383, 294, 371, 0, 0, 377, 727, 294, 748, 397, 0, 475, 499, 252, 253, 519, 294, 434, 0, 294, 237, 0, 2, 239, 0, 295, 0, 257, 2, 258, 278, 0, 0, 2, 294, 544, 294, 485, 487, 486, 0, 0, 750, 0, 294, 0, 294, 489, 294, 559, 557, 558, 556, 0, 551, 554, 0, 0, 294, 56, 294, 69, 52, 294, 62, 294, 294, 50, 51, 64, 2, 127, 0, 0, 446, 0, 445, 111, 294, 54, 55, 17, 0, 29, 30, 35, 2, 0, 35, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 2, 645, 451, 642, 546, 546, 650, 479, 294, 2, 584, 585, 0, 596, 597, 0, 2, 739, 742, 111, 294, 2, 294, 0, 707, 295, 711, 702, 703, 709, 0, 2, 2, 667, 546, 750, 616, 546, 546, 750, 546, 630, 546, 546, 681, 433, 664, 546, 546, 672, 679, 294, 428, 295, 0, 0, 294, 717, 295, 722, 750, 714, 294, 719, 750, 294, 294, 294, 0, 111, 0, 18, 5, 2, 0, 19, 0, 458, 748, 0, 0, 464, 241, 0, 294, 0, 0, 0, 544, 568, 572, 574, 604, 607, 611, 614, 567, 606, 0, 284, 657, 0, 294, 277, 0, 0, 0, 0, 275, 2, 0, 259, 535, 294, 0, 0, 0, 0, 294, 294, 0, 0, 691, 381, 384, 388, 546, 388, 696, 387, 688, 546, 546, 364, 372, 380, 373, 546, 375, 378, 294, 749, 0, 0, 395, 748, 295, 3, 413, 3, 417, 416, 590, 0, 530, 294, 3, 3, 294, 432, 295, 3, 426, 427, 2, 0, 0, 0, 484, 306, 294, 480, 482, 3, 2, 2, 0, 501, 3, 0, 553, 129, 0, 0, 222, 0, 0, 0, 2, 0, 0, 36, 0, 0, 111, 294, 20, 0, 21, 0, 691, 447, 0, 109, 3, 2, 27, 2, 0, 33, 0, 2, 25, 0, 106, 107, 73, 74, 75, 77, 78, 80, 81, 85, 86, 83, 84, 88, 89, 91, 93, 95, 97, 99, 0, 0, 751, 294, 0, 0, 0, 646, 647, 643, 644, 496, 495, 294, 0, 3, 294, 713, 294, 718, 295, 294, 294, 294, 661, 704, 660, 2, 294, 0, 0, 0, 0, 0, 0, 0, 0, 682, 0, 668, 619, 635, 669, 2, 615, 622, 430, 617, 618, 431, 2, 629, 638, 631, 632, 665, 666, 680, 708, 712, 710, 750, 268, 2, 744, 2, 421, 716, 721, 422, 0, 400, 3, 3, 3, 3, 452, 3, 0, 2, 467, 463, 749, 0, 459, 466, 2, 462, 465, 0, 294, 242, 264, 3, 272, 274, 0, 452, 2, 570, 571, 2, 609, 610, 0, 658, 536, 3, 345, 344, 347, 346, 294, 537, 0, 538, 294, 374, 376, 2, 0, 0, 0, 0, 104, 390, 692, 693, 385, 389, 386, 689, 690, 379, 383, 366, 397, 392, 398, 0, 0, 0, 435, 240, 0, 0, 3, 2, 667, 428, 0, 526, 0, 750, 488, 0, 294, 294, 294, 0, 550, 552, 130, 0, 0, 215, 0, 0, 0, 223, 224, 57, 0, 63, 294, 0, 61, 60, 0, 128, 692, 457, 70, 71, 110, 115, 3, 109, 0, 0, 0, 24, 35, 3, 0, 32, 102, 0, 3, 649, 653, 656, 648, 3, 591, 3, 715, 720, 2, 294, 3, 3, 295, 0, 3, 621, 625, 628, 637, 671, 675, 678, 294, 3, 620, 636, 670, 294, 294, 423, 294, 294, 745, 0, 0, 0, 0, 256, 0, 104, 0, 3, 3, 0, 460, 0, 456, 0, 0, 245, 294, 0, 0, 129, 0, 0, 0, 0, 0, 129, 0, 0, 109, 109, 2, 0, 0, 0, 3, 131, 132, 2, 143, 133, 134, 135, 136, 137, 138, 145, 147, 0, 0, 0, 285, 294, 294, 546, 0, 539, 294, 111, 695, 699, 701, 694, 382, 396, 393, 578, 2, 663, 662, 0, 668, 2, 481, 483, 503, 3, 511, 512, 0, 2, 507, 3, 3, 0, 0, 555, 222, 0, 0, 0, 222, 0, 0, 3, 37, 748, 109, 0, 3, 660, 42, 3, 40, 3, 34, 0, 3, 101, 103, 0, 2, 651, 652, 0, 0, 294, 0, 0, 0, 3, 637, 0, 2, 623, 624, 2, 639, 2, 673, 674, 0, 0, 3, 0, 3, 3, 3, 3, 408, 407, 411, 2, 2, 747, 746, 112, 0, 0, 0, 0, 3, 461, 3, 0, 243, 146, 3, 295, 294, 0, 0, 0, 0, 2, 191, 0, 189, 0, 0, 0, 0, 0, 0, 0, 0, 111, 0, 546, 151, 148, 294, 0, 0, 267, 279, 3, 3, 545, 612, 367, 2, 697, 698, 294, 266, 294, 0, 514, 491, 294, 0, 0, 490, 505, 0, 0, 0, 216, 0, 225, 58, 109, 0, 0, 116, 113, 0, 0, 0, 0, 0, 0, 23, 0, 654, 294, 579, 265, 723, 724, 725, 0, 676, 294, 294, 294, 3, 3, 0, 684, 0, 0, 0, 0, 294, 294, 3, 543, 468, 469, 0, 0, 246, 295, 0, 0, 0, 0, 294, 192, 190, 0, 187, 193, 0, 0, 0, 0, 197, 200, 198, 194, 0, 195, 35, 129, 144, 142, 244, 0, 0, 294, 415, 419, 418, 0, 508, 2, 509, 2, 510, 504, 294, 228, 0, 226, 0, 228, 3, 660, 31, 114, 2, 45, 2, 43, 41, 28, 112, 26, 3, 726, 3, 3, 3, 0, 0, 683, 685, 626, 640, 269, 2, 405, 3, 404, 0, 471, 468, 129, 0, 0, 129, 3, 0, 129, 188, 0, 2, 2, 209, 199, 0, 0, 0, 0, 140, 573, 613, 3, 2, 0, 0, 2, 229, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 686, 687, 294, 0, 470, 152, 0, 0, 2, 165, 129, 154, 0, 182, 0, 129, 0, 2, 156, 0, 2, 0, 2, 2, 2, 196, 32, 0, 294, 513, 515, 506, 0, 0, 0, 0, 114, 38, 3, 3, 655, 627, 641, 677, 409, 129, 158, 161, 0, 160, 164, 3, 167, 166, 0, 129, 184, 129, 3, 0, 294, 0, 294, 0, 2, 0, 2, 139, 700, 2, 230, 231, 0, 227, 218, 0, 0, 0, 153, 0, 0, 163, 233, 168, 2, 235, 183, 0, 186, 172, 201, 3, 210, 214, 203, 3, 0, 294, 0, 294, 0, 0, 0, 39, 46, 44, 159, 162, 129, 0, 169, 294, 129, 129, 0, 173, 0, 0, 691, 211, 212, 213, 0, 202, 3, 204, 3, 294, 219, 232, 149, 170, 155, 129, 236, 185, 180, 178, 174, 157, 129, 0, 692, 0, 0, 0, 0, 150, 171, 181, 175, 179, 178, 176, 3, 3, 0, 0, 492, 177, 205, 207, 3, 3, 206, 208 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 839, 474, 301, 45, 131, 132, 302, 303, 304, 305, 785, 786, 1146, 1147, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 1051, 525, 996, 321, 997, 554, 973, 1078, 1542, 1080, 1081, 1082, 1083, 1543, 1084, 1085, 1459, 1460, 1421, 1422, 1423, 1521, 1522, 1526, 1527, 1562, 1563, 1086, 1379, 1087, 1088, 1313, 1314, 1315, 1503, 1089, 143, 979, 980, 981, 1400, 1484, 1495, 1496, 475, 476, 901, 902, 1059, 48, 49, 50, 51, 52, 345, 156, 55, 56, 57, 58, 59, 347, 61, 62, 261, 64, 65, 272, 349, 350, 68, 69, 70, 71, 116, 73, 202, 352, 117, 76, 118, 78, 79, 80, 455, 456, 457, 458, 700, 939, 701, 81, 82, 462, 721, 881, 882, 355, 356, 724, 725, 726, 357, 358, 359, 360, 472, 339, 133, 134, 529, 323, 168, 654, 655, 656, 657, 658, 83, 119, 85, 495, 496, 965, 497, 275, 501, 324, 86, 135, 136, 87, 1337, 1124, 1125, 1126, 1127, 88, 89, 742, 90, 271, 91, 92, 185, 1053, 688, 410, 123, 93, 507, 508, 509, 186, 266, 188, 189, 190, 267, 96, 97, 98, 99, 100, 101, 102, 193, 194, 195, 196, 197, 851, 613, 614, 615, 616, 198, 618, 619, 620, 579, 580, 581, 582, 705, 103, 622, 623, 624, 625, 626, 627, 938, 707, 708, 709, 603, 363, 364, 365, 366, 325, 162, 105, 106, 107, 368, 719, 576 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1281 static const yytype_int16 yypact[] = { 3705, 8889, -1281, 104, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 44, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 155, 155, 155, 1205, 815, 110, 6006, 222, -1281, -1281, -1281, -1281, -1281, 130, -1281, -1281, -1281, 1267, 189, 3199, -1281, -1281, -1281, -1281, -1281, -1281, 31, 144, -1281, 1338, -1281, -1281, -1281, -1281, 153, 1410, 279, 82, 7674, -1281, -1281, 8086, 1234, -1281, -1281, -1281, 981, 359, 7231, 925, 669, 981, 1012, -1281, -1281, 738, 575, -1281, 981, 1119, -1281, 242, -1281, 416, 419, -1281, -1281, -1281, -1281, 277, 144, 155, -1281, 155, -1281, -1281, -1281, -1281, 9536, 1338, -1281, -1281, 1338, -1281, 9574, 321, -1281, -1281, -1281, 2195, 9607, -1281, 565, 565, 565, -1281, -1281, -1281, 155, -1281, -1281, -1281, 280, 366, 418, -1281, -1281, -1281, 425, -1281, -1281, -1281, -1281, -1281, 443, 475, -1281, -1281, 120, 8972, 3739, 375, 387, 486, 496, 514, 527, 541, 8273, 7081, 550, 568, -1281, 9460, -1281, -1281, -1281, -1281, 602, -1281, 121, 4456, 4456, -1281, 552, 298, -1281, -1281, -1281, -1281, 634, 302, 306, 327, 155, 590, -1281, -1281, 1410, 2454, 696, -1281, 90, -1281, 155, 155, 144, -1281, -1281, 124, -1281, 155, 155, -1281, 2638, 658, 667, 565, 6993, -1281, -1281, 678, 3199, -1281, -1281, 981, -1281, -1281, -1281, 144, -1281, 1338, 31, -1281, 8010, -1281, 565, 565, 565, 144, -1281, 1205, -1281, 5198, -1281, -1281, 673, 565, -1281, 565, -1281, 130, 8972, 9002, 686, -1281, 815, 694, 565, -1281, 1205, 728, 736, -1281, 6006, 544, -1281, -1281, -1281, 9431, -1281, -1281, 3957, -1281, 696, 79, 9607, 6464, 2195, 2638, -1281, 157, -1281, -1281, 9574, 1338, 717, 7703, -1281, -1281, 699, -1281, 10744, 783, 831, 3925, 787, 6306, 10567, -1281, 827, -1281, -1281, -1281, -1281, 10625, 10625, 544, 8633, 829, 6306, 9085, -1281, -1281, -1281, -1281, -1281, -1281, 862, -1281, 1121, 2197, 6306, -1281, 599, 388, 472, 354, 593, 830, 867, 873, 970, 245, -1281, -1281, 874, 650, -1281, 325, -1281, -1281, 3739, -1281, -1281, 585, 901, -1281, 747, 901, 958, 130, -1281, -1281, 962, 9536, -1281, 977, 8746, -1281, -1281, 957, 935, 8355, 6993, 981, -1281, 981, 565, 565, -1281, -1281, -1281, -1281, -1281, -1281, 565, 9645, 1338, -1281, -1281, 9683, 1067, -1281, 9123, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 990, 5315, 6306, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 2195, -1281, 846, 996, 998, 1002, 864, 1005, 1008, 1026, 2454, -1281, -1281, 1031, 31, 1033, -1281, -1281, 1061, -1281, -1281, -1281, 9431, -1281, -1281, -1281, -1281, -1281, 2638, -1281, 8972, 8972, -1281, 565, 2195, 7112, 1338, 8426, -1281, -1281, -1281, -1281, 9431, 79, -1281, -1281, 981, 144, -1281, -1281, 9431, -1281, 6877, -1281, -1281, 565, 565, 376, 9716, 1035, 1868, 2111, -1281, 334, 338, 815, -1281, 9002, 1059, 1047, 815, 565, -1281, -1281, -1281, -1281, 9940, -1281, 583, 6755, -1281, 144, 1065, -1281, 2195, 10825, 10471, -1281, -1281, -1281, -1281, 889, 2638, -1281, 8497, 696, 7558, -1281, -1281, -1281, 1286, 636, 874, 815, 7703, 868, 9574, -1281, 7703, -1281, -1281, -1281, -1281, 638, -1281, 1073, 831, 207, 8633, -1281, 9716, -1281, -1281, 8633, -1281, 8859, 8633, -1281, -1281, -1281, 1071, -1281, 681, 1077, 668, 1078, -1281, 4381, 6724, -1281, -1281, -1281, 328, -1281, -1281, 10490, -1281, 385, 10490, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 6464, 6464, -1281, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 6306, 4789, 6464, -1281, 650, 1062, -1281, -1281, 155, 155, -1281, -1281, 8972, -1281, -1281, 1061, 544, -1281, 1061, 10548, -1281, -1281, -1281, 5232, 6724, 1079, 9198, 1080, -1281, 9754, -1281, -1281, 602, -1281, 1082, 1185, 1084, 1899, 185, 874, -1281, 155, 155, 874, 233, -1281, 155, 155, 1061, -1281, -1281, 155, 155, -1281, 901, 9792, 1338, 10968, 234, 509, 9792, -1281, 5821, -1281, 874, -1281, 9645, -1281, 293, 5525, 5525, 5525, 1338, -1281, 5054, 1072, 558, 990, 1016, 1083, 1086, -1281, 1074, 4456, 592, -1281, 1172, 1338, 5525, 544, 2195, 544, 696, 809, 901, -1281, -1281, 814, 901, -1281, -1281, -1281, 831, -1281, 901, 144, 9940, -1281, 682, 1095, 691, 1099, -1281, 1098, 144, -1281, -1281, 9431, 144, 1103, 362, 407, 9825, 7200, 1999, 6306, 1917, -1281, -1281, 1101, 94, 1101, -1281, -1281, -1281, 155, 155, -1281, -1281, 815, -1281, 155, -1281, -1281, 3122, 815, 1107, 6306, -1281, 1059, 10968, -1281, -1281, 1102, -1281, -1281, -1281, 544, -1281, 10897, 6306, -1281, 5525, 675, 8355, -1281, -1281, 602, 1108, 1109, 1286, 3745, -1281, -1281, 7703, -1281, -1281, 1111, -1281, -1281, 1116, -1281, 1111, 1128, 10744, 6464, 146, 1113, 53, 1136, 1115, 1137, 829, 1131, 1139, -1281, 1142, 1143, 1696, 6843, -1281, 6464, -1281, 668, 1691, -1281, 6022, 6464, 1138, -1281, -1281, 990, 708, -1281, 6464, -1281, -1281, 727, -1281, -1281, -1281, -1281, -1281, 599, 599, 388, 388, 472, 472, 472, 472, 354, 354, 593, 830, 867, 873, 970, 6306, 755, -1281, 9940, 1148, 1149, 1152, 1062, -1281, -1281, -1281, -1281, -1281, 9940, 713, 6306, 5525, -1281, 9645, -1281, 7319, 9311, 9236, 7081, -1281, -1281, -1281, 1185, 9940, 951, 1160, 1163, 1165, 1166, 1175, 1176, 1182, -1281, 3532, 1899, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 1061, -1281, -1281, -1281, 874, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 1183, -1281, 1187, 1189, -1281, -1281, 31, 1138, 5054, -1281, -1281, -1281, 5315, 1180, -1281, -1281, -1281, -1281, -1281, 815, 6243, 1272, -1281, -1281, -1281, -1281, 1188, 31, -1281, -1281, 1061, -1281, -1281, 1061, 70, 1061, -1281, -1281, -1281, -1281, -1281, -1281, 9498, -1281, 144, -1281, 9002, -1281, -1281, 1201, 818, 1208, 1212, 1213, -1281, -1281, 1917, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 1868, -1281, 1047, -1281, -1281, 1210, 1216, 1211, -1281, -1281, 1218, 1223, -1281, 675, 1777, -1281, 562, -1281, 3745, 874, -1281, 1226, 7703, 9863, 8972, 1230, -1281, -1281, 1225, 1235, 1238, -1281, 6306, 252, 40, 1231, -1281, 1242, 544, 1242, 6724, 6464, -1281, -1281, 1242, -1281, 1691, 5315, -1281, -1281, -1281, -1281, 1236, 6464, 1245, 544, 5054, -1281, 10490, -1281, 544, -1281, -1281, 6464, -1281, 850, 901, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 990, 8746, -1281, -1281, 7438, 1249, -1281, 856, 901, -1281, 872, 904, 901, -1281, 565, 4646, -1281, -1281, -1281, 9940, 9940, -1281, 8426, 8426, -1281, 1252, 1255, 1264, 1271, -1281, 1253, 594, 247, 1138, -1281, 544, -1281, 4456, -1281, 6464, 459, -1281, 6603, 1274, 1279, 10343, 1281, 1283, 301, 308, 344, 6464, 1285, 144, 6464, 6464, 1284, 498, 1282, 1268, -1281, -1281, -1281, 1289, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 815, 1296, 6464, -1281, 9940, 9940, 155, 1301, -1281, 9349, 4935, 934, 901, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 1305, 1777, -1281, -1281, 1290, -1281, 1111, -1281, -1281, 2195, 1309, -1281, -1281, -1281, 734, 1312, -1281, 53, 1317, 6306, 1303, 53, 53, 1327, 1323, -1281, 1074, 6464, 1328, 1236, 1036, 113, 1326, -1281, 1323, -1281, 1331, 1326, -1281, -1281, 1337, -1281, -1281, 1061, 1340, 1343, 6962, 1342, 1344, 1350, -1281, -1281, 1353, -1281, -1281, 1061, -1281, -1281, -1281, -1281, 1061, 6464, 6464, 6306, 1355, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 6306, 6306, 1356, 1357, 1326, -1281, -1281, 815, -1281, -1281, -1281, 7939, 9863, 6464, 6464, 1423, 6464, -1281, -1281, 1341, -1281, 1345, 6464, 1347, 1358, 6464, 1097, 1360, 74, 8776, 1197, 155, -1281, -1281, 6243, 1361, 467, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 1061, 10467, -1281, 8497, 1362, -1281, -1281, 9863, 482, 494, -1281, 1372, 1383, 831, 1394, -1281, 66, -1281, -1281, 6464, 1395, 1393, -1281, -1281, 1399, 430, 657, 544, 1400, 1401, -1281, 1406, -1281, 9940, -1281, -1281, -1281, -1281, -1281, 1412, -1281, 9940, 9940, 9940, -1281, -1281, 1413, -1281, 1415, 1425, 1427, 623, 8125, 8240, -1281, -1281, 278, -1281, 1426, 1429, -1281, 8568, 745, 759, 1430, 769, 6445, -1281, -1281, 502, -1281, -1281, 770, 1434, 1436, 144, 1487, 911, -1281, -1281, 6464, -1281, 10490, 10343, -1281, -1281, -1281, 1442, 1444, 9940, -1281, -1281, -1281, 1437, -1281, -1281, -1281, -1281, -1281, -1281, 9863, 831, 269, -1281, 1424, 831, 1236, 373, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 1443, -1281, -1281, -1281, -1281, -1281, -1281, 1452, 1454, -1281, -1281, -1281, -1281, -1281, -1281, -1281, 1458, -1281, 1457, -1281, -1281, 10343, 148, 6464, 10343, -1281, 1462, 6464, -1281, 171, 1484, 1486, -1281, -1281, 1465, 1476, 1455, 905, -1281, -1281, -1281, -1281, -1281, 1338, 2195, 1471, 862, 918, 6306, -1281, 772, 1477, 6464, 544, 544, 1480, 1482, 1483, 1485, -1281, -1281, 8426, 1472, -1281, 1555, 6306, 1493, -1281, -1281, 10254, -1281, 790, -1281, 1467, 10343, 1468, -1281, -1281, 1511, -1281, 1513, -1281, 1507, 1529, -1281, 1496, 1519, 9863, -1281, -1281, -1281, 831, 544, 1520, 1499, 1515, -1281, 1326, 1326, -1281, -1281, -1281, -1281, -1281, 10343, 258, -1281, 922, -1281, -1281, 7790, -1281, -1281, 1501, 6464, -1281, 6464, 7790, 144, 9716, 144, 9716, 1528, -1281, 1530, -1281, -1281, -1281, 1524, 862, -1281, 794, -1281, -1281, 6464, 1540, 1542, -1281, 6306, 6306, -1281, -1281, 1051, 133, -1281, -1281, 1510, -1281, 1051, -1281, -1281, 2099, 544, -1281, -1281, 144, 9716, 144, 9716, 1546, 1525, 544, -1281, -1281, -1281, -1281, -1281, 10254, 1541, 1051, 7866, 6464, 10165, 1543, 1051, 1551, 2099, 2338, -1281, -1281, -1281, 1552, -1281, -1281, -1281, -1281, 8972, -1281, -1281, -1281, 10072, -1281, 10254, -1281, -1281, 1531, 9979, -1281, -1281, 10165, 144, 2338, 144, 1557, 1559, 795, -1281, 10072, -1281, -1281, -1281, 9979, -1281, -1281, -1281, 144, 144, -1281, -1281, -1281, -1281, -1281, -1281, -1281, -1281 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1281, 4254, 1590, -1281, 1409, -1281, 52, 0, -229, -1281, 596, -527, -497, -931, -99, 4508, -1281, 358, 609, 563, 518, 591, 1104, 1105, 1110, 1117, 1112, -1281, 613, -339, 5346, -893, -690, -919, -1281, 401, -634, 444, -1281, 753, -1281, 449, -1224, -1281, -1281, 191, -1281, -1265, -724, 305, -1281, -1281, -1281, -1281, 129, -1170, -1281, -1281, -1281, -1281, -1281, -1281, 382, -1175, 71, -1281, -381, -1281, 560, 356, -1281, 229, -1281, -338, -1281, -1281, -1281, 632, -691, -1281, -1281, 11, -1000, 10, 2865, -1281, -1281, -1281, -125, -1281, 275, 363, -194, 1416, 4157, -1281, -1281, 24, 25, 374, -202, 1621, -1281, 2138, -1281, -1281, 112, 2165, -1281, 2832, 139, -1281, -1281, -416, -434, 1276, 1278, 786, 1028, 400, -1281, -1281, 1269, 793, -513, -1281, -522, -57, -636, -1281, -1281, -959, -994, 122, 819, 1153, 135, -1281, 1441, 296, -299, -212, -109, 749, 844, -1281, 1087, -1281, 2859, 1478, -462, 1000, -1281, -1281, 778, -1281, -233, -1281, -72, -1281, -1281, -1281, -1232, 504, -1281, -1281, -1281, 1259, -1281, 68, -1281, -1281, -850, -96, -1280, -93, 1665, -1281, 2401, -1281, 993, -1281, -164, 689, -177, -176, -170, 2, -39, -33, -28, 1052, 48, 75, 93, -100, -167, -166, -153, -148, -277, -569, -500, -490, -543, -300, -514, -1281, -1281, -506, 1174, 1177, 1181, 2149, 5126, -572, -549, -544, -523, -484, -1281, -427, -665, -663, -660, -602, -320, -271, -1281, -1281, 102, 140, -84, -1281, 3728, 128, -603, -447 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -522 static const yytype_int16 yytable[] = { 46, 111, 95, 147, 451, 438, 397, 398, 426, 148, 53, 113, 112, 399, 149, 790, 400, 401, 265, 258, 405, 711, 767, 604, 66, 67, 870, 706, 111, 111, 402, 46, 932, 95, 933, 403, 750, 934, 853, 841, 755, 53, 46, 918, 46, 717, 159, 617, 1185, 748, 511, 1091, 894, 110, 46, 66, 67, 381, 382, 845, 46, 1201, 191, 46, 846, 214, 46, 852, 224, 341, 612, 47, 819, 208, 1151, 504, 218, 217, 678, 1143, 111, 111, 1183, 1184, 406, 847, 397, 398, 210, 994, 150, 636, 408, 399, 844, 640, 400, 401, 687, 141, 405, 778, 47, 423, 46, 1398, 691, 46, 842, 200, 402, 932, 74, 933, 46, 403, 934, 151, 843, 950, 883, 883, 883, 1195, 974, 682, 684, 856, 30, 477, 885, 886, 30, 863, 289, 152, 1317, 166, 1461, 883, 104, 104, 407, 74, 147, 46, 161, 159, 904, 1134, 148, 535, 121, 46, 445, 149, 1135, 1465, 46, 201, 371, 167, 30, 977, 406, 857, 481, 483, 739, 860, 278, 104, 164, 466, 841, 1341, -234, -234, 1009, 1098, 1218, 1219, 1342, 46, 46, 120, 159, 482, 1014, 175, 877, 1418, 1419, 30, 880, 30, 676, 1262, 250, 46, 409, 754, 212, 1025, 409, 1318, 104, 46, 1481, 159, 1090, 161, 1461, 883, 1418, 1419, 46, 745, 140, 46, 769, 441, 957, 30, 147, 1263, 111, 535, 279, 439, 148, 150, 417, 142, 409, 149, 375, 164, 144, 259, 673, 111, 260, 842, 440, 111, 1185, -234, 1259, 46, 111, 95, 376, 843, 212, 1465, 595, 169, 151, 53, 1465, 1420, 975, 46, 46, 487, 159, 409, 179, 841, 46, 30, 326, 66, 67, 60, 152, 46, 1037, 604, 1465, 759, 199, 711, 1429, 341, 823, 1465, 535, 845, 702, 477, 111, 854, 846, 609, 1185, 212, 665, 1507, 153, 1549, 471, 1201, 674, 883, 60, 1036, 604, 433, 617, 477, 1013, 604, 1016, 847, 760, 469, 1153, 477, 47, 1560, 673, 761, 1024, 830, 680, 46, 1564, 371, 1183, 1184, 685, 535, 1536, 434, 1538, 1343, 842, 573, 459, 861, 1191, 609, 523, 873, 46, 46, 843, 874, 535, 437, 925, 1491, 704, 1550, 856, 245, 212, 936, 1133, 74, -290, 46, 114, 326, 74, 46, 879, 1192, 1200, 433, 108, 210, 574, 1091, 739, 1401, 652, 108, 1192, 949, 1565, 40, 41, 250, 674, 853, -10, 104, 40, 41, -112, -112, 46, 530, 212, 434, 161, 108, 212, 482, 1180, 1181, 46, 489, 371, 157, -112, 845, 40, 41, 506, 385, 846, 108, 248, 388, 870, -517, 1185, 390, 46, 575, 164, 1040, 40, 41, 46, 386, 46, 738, 1209, 389, 584, 847, 1215, 391, 782, 1211, 585, 227, 392, 563, 564, 228, 915, 341, 232, 712, 234, 262, 739, 714, 46, 1456, 108, 243, 393, 111, 1230, 1231, 1213, 1201, 111, 713, 256, 40, 41, 715, 1201, 606, 157, 111, -440, 1450, 1451, 712, 46, 565, 566, 175, -112, 250, 328, 692, 46, 212, 371, 1405, 46, 585, 95, 928, 46, 788, 329, 111, 637, 111, 53, 108, 641, -112, 210, 1120, 1149, 322, 559, 560, 1106, 1101, 40, 41, 66, 67, 338, 1117, 706, 652, 397, 398, 714, 1201, 60, 110, -441, 399, 74, 478, 400, 401, 978, 274, 1090, 405, 111, 1258, 929, 652, 1347, 111, 652, 1037, 402, 1171, 1173, 895, 74, 403, 617, 276, 326, 326, 459, 504, 74, 459, 1018, 561, 562, 47, 830, 459, 1106, 477, 428, 906, 212, 284, 432, 766, 908, 1035, 1198, 8, 9, 10, 11, 12, 40, 41, 1198, 277, 227, 884, 884, 884, 783, 111, 1199, 766, 727, 789, 766, 330, 46, 1332, 1323, 406, 322, 454, 74, 30, 884, 331, 520, 954, 46, 1334, 46, 341, 1380, 1333, 530, 108, 530, 774, 212, 530, 875, 832, 530, 332, 876, 1335, 40, 41, 326, 46, 104, 33, 432, 1381, 1355, 494, 333, -466, 1132, 738, 516, 471, 1357, 1358, 1359, 46, 108, 326, 137, 138, 334, 111, 830, 533, 534, 440, 528, 40, 41, 157, 46, 369, 111, 46, 111, 555, 383, 711, -466, 1378, -466, 896, -291, 875, -466, 1048, 370, 1116, 884, 8, 9, 10, 11, 12, 567, 568, 1035, 341, 241, 94, 1394, 478, 729, 586, 526, 409, 1095, 46, 730, 46, 604, 534, 897, 594, 651, -105, 601, 30, 898, -105, 374, 478, 111, 326, 905, 738, 907, 556, 111, 478, 94, 395, 557, 558, 227, 634, 232, 606, 108, 638, 111, 146, 338, 94, 1366, 33, 1128, 534, 1367, 40, 41, 212, 387, 46, 46, 746, 1428, 756, 210, 187, 1249, 747, 94, 757, 1253, 94, 871, 46, 577, 407, 409, 606, 210, 736, 872, 60, 424, 1349, 578, 212, 884, 1520, 1497, 673, 212, 425, 776, 1525, 409, 1497, 887, 702, 953, 958, 1055, 609, 777, 322, 322, 430, 773, 919, 1390, 959, 1251, 903, 774, 774, 1545, 461, 921, 727, 74, 1552, 448, 171, 774, 464, 762, 108, 763, 137, 236, 764, 227, 454, 770, 1002, 454, 459, 40, 41, 1015, 1003, 454, 681, 683, 499, 730, 500, 490, 830, 1546, 1499, 94, 1500, 114, 674, 46, 1175, 739, 1006, 1003, 1247, 74, 704, 237, 94, 251, 585, 46, 238, 1291, 1292, 1374, 589, 210, 409, 832, 467, 774, 494, 212, 322, 932, 494, 933, 468, 1375, 934, 774, 1008, 396, 187, 774, 528, 212, 528, 1377, 1382, 528, 1447, 322, 528, 774, 774, 108, 1444, 137, 138, 1547, 510, 506, 652, 338, 514, 94, 40, 41, 1466, 111, 652, 978, 1513, 1570, 774, 978, 978, 94, 1514, 585, 53, 289, 526, 793, 794, 795, 909, 526, 409, 739, 526, 912, 46, 409, 66, 67, 328, 409, 2, 204, 4, 5, 6, 7, 519, 727, 46, 94, 108, 531, 137, 138, 535, 415, 46, 727, 1196, 322, 569, 40, 41, 485, 1077, 250, 328, 409, 534, 1155, 828, 409, 727, 601, 46, 1167, 478, 409, 435, 1387, 1388, 212, 736, 417, 669, 409, 812, 751, 443, 1122, 1121, 1170, 752, 609, 111, 1182, 2, 204, 4, 5, 6, 7, 869, 652, 34, 570, 35, 601, 487, 328, 409, 111, 571, 878, 652, 575, 111, 36, 478, 181, 182, 39, 337, 1172, 74, 609, -292, 94, 40, 41, 1438, 1003, 1339, 8, 9, 10, 11, 12, 1242, 36, 459, 172, 173, 39, 1444, 1445, 1137, 611, 1492, 1493, 40, 41, 104, 1235, 608, 409, 609, 527, 736, 440, 34, 30, 35, 1145, 610, 111, 766, -3, 1145, 338, 854, 328, 609, 1446, 572, 652, 370, -437, 111, 111, 111, 593, 53, 8, 9, 10, 11, 12, 1532, 33, 1458, 454, 800, 801, 802, 803, 1203, 67, 108, 596, 137, 138, 534, 111, 187, 1418, 1419, 160, 326, 40, 41, 30, 646, 940, 738, 940, 666, 1145, 667, 104, 1399, 494, 668, 192, 1399, 670, 215, 1077, 671, 225, 1210, 1212, 1214, -293, 46, 798, 799, 890, 1106, 33, 8, 9, 10, 11, 12, 338, 672, 341, 993, 36, 675, 172, 173, 39, 703, 677, -112, 695, -112, 871, 40, 41, -112, 1518, 1458, 1310, 1311, 1312, 30, 804, 805, 727, 727, 212, 1348, 1350, 1351, -112, -112, 796, 797, 577, 255, 409, 74, 718, 374, 60, 720, -238, 94, 578, 758, 771, 611, 534, 33, 775, 779, -12, 893, 833, 835, 1017, 837, 689, 848, 828, 160, 111, -13, 900, 104, 892, 459, 920, 536, 537, 538, 922, 923, 372, -414, 208, 218, 217, 1482, 927, 698, 727, 727, 46, 948, -521, 962, 969, 652, 747, 210, 731, 539, 983, 540, 1369, 541, 542, 53, 160, 971, 2, 204, 4, 5, 6, 7, 976, 982, 984, 986, 987, 66, 67, 988, 989, 998, 1122, 1121, 36, 1010, 1011, 160, 39, 1012, 111, 111, 111, 527, 226, 40, 41, 1026, 527, 442, 1027, 527, 1028, 1029, 127, 1077, 128, 129, 130, 536, 537, 538, 1030, 1031, 828, 40, 41, 728, 454, 1032, 1043, 838, 1057, 609, -402, 840, -401, 611, 1092, 1442, 34, 610, 35, 539, 1558, 540, 439, 541, 1319, 935, 1102, 53, 1145, 1145, 1145, 1103, 1094, 652, 652, 1104, 1105, 440, 1109, 1110, 1111, 1203, 67, 1112, 494, 1123, 322, 935, 1113, 1119, 478, 74, 36, 1129, 774, 212, 39, 104, 1130, 1079, 1136, 1122, 1121, 40, 41, 1141, 397, 398, 1131, 992, 1144, 36, 1165, 399, 1328, 39, 400, 401, 1190, 104, 405, 1186, 40, 41, 1187, 766, 1077, 1188, 652, 42, 402, 652, 534, 372, 1189, 403, 1204, 869, 104, 145, 931, 1205, 703, 1207, 673, 1208, 727, 1216, 743, 1220, 46, 46, 1222, 1223, 727, 727, 727, -3, 744, 1228, 111, 111, 1531, 36, 1233, 172, 173, 39, 1239, 74, 63, 115, 499, 516, 40, 41, 652, 1243, 1007, 1248, 1077, 652, 1250, 1077, 406, 917, 840, 611, 1252, 736, 1255, 212, 1256, 1260, 924, 1264, 1267, 104, 926, 111, 1269, 63, 727, 1271, 1122, 1121, 1272, 1273, 674, 1274, 372, 652, 1145, 1145, 158, 1275, 1277, 174, 454, 828, 1284, 1293, 1294, 1301, 139, 1330, 1304, 53, 1077, 1322, 1305, 104, 1307, 1077, 53, 36, 219, 181, 182, 39, 1336, 1203, 67, 1308, 147, 1316, 40, 41, 1203, 67, 148, 1483, 728, 1338, 60, 149, 1050, 1340, 46, 111, 1344, 1345, 1206, 1077, 1346, 1352, 1353, 174, 111, 736, 174, 1354, 183, 257, 652, 239, 242, 1356, 1362, 652, 1363, 840, 184, 46, 46, 1441, 159, 53, 1364, 534, 1365, 1372, 1376, 611, 1373, 213, 1383, 652, 1384, 652, 1312, 1203, 67, 652, 1395, 1392, 652, 1393, 46, 1402, 371, 1533, 240, 1405, 652, 327, 174, 1412, 652, 1413, 1541, -403, 1416, 257, 348, 1427, 1077, 1435, 1505, 74, 1505, 1077, 478, 1431, 104, 1433, 74, 338, 1436, 1443, 1437, 1367, 1448, 1452, 935, 1453, 1454, 213, 1455, 1077, 1457, 1077, 1467, 1469, 404, 1077, 1475, 104, 1077, 1299, 1300, 1123, 1302, 1462, 104, 1505, 1077, 1505, 1306, 422, 1077, 1309, 427, 429, 1471, 1152, 1473, 158, 1477, 174, 703, 1479, 1480, 1485, 1486, 1487, 1498, 728, 703, 74, 213, 1508, 1512, 1510, 165, 1524, 170, 728, 446, 176, 177, 178, 449, 180, 450, 1516, 611, 1517, 1539, 1544, 1540, 1551, 728, 465, 1553, 1555, 1561, 104, 231, 63, 1568, 326, 1569, 1079, 479, 1050, 1221, 806, 1321, 807, 246, 247, 1100, 174, 486, 808, 463, 1519, 211, 810, 174, 1430, 429, 809, 122, 125, 126, 1571, 230, 1386, 1254, 213, 1403, 1501, 1123, 8, 9, 10, 11, 12, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 1227, 25, 26, 27, 693, 30, 694, 1107, 941, 722, 30, 213, 211, 1056, 478, 213, 1108, 1140, 825, 1118, 899, 478, 935, 964, 1331, 741, 972, 815, 0, 0, 816, 174, 257, 33, 817, 602, 0, 252, 33, 253, 1391, 630, 0, 0, 0, 37, 38, 0, 174, -294, 0, 0, 174, 1424, 635, 211, 0, 0, 635, 0, 0, 257, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 478, 776, 0, 409, 0, 1123, 935, 935, 337, 0, 0, 777, 0, 0, 0, 0, 109, 30, 0, 0, 1417, 653, 0, 1425, 0, 0, 0, 1217, 213, 0, 0, 0, 0, 0, 479, 0, 0, 1504, 0, 1504, 0, 174, 211, 0, 0, 33, 394, 0, 0, 348, 0, 0, 0, 0, 479, 0, 413, 414, 0, 728, 728, 418, 479, 420, 421, 0, 0, 0, 1464, 0, 0, 0, 0, 1468, 1504, 0, 1504, 0, 0, 0, 211, 0, 0, 0, 211, 0, 0, 958, 723, 609, 0, 429, 0, 0, 0, 0, 0, 959, 0, 0, 505, 0, 716, 1490, 322, 0, 737, 463, 63, 213, 0, 8, 9, 10, 11, 12, 429, 728, 728, 0, 429, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 600, 607, 0, 0, 30, 749, 36, 753, 181, 182, 39, 0, 631, 632, 257, 348, 0, 40, 41, 0, 0, 0, 30, 0, 213, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 211, 36, 0, 181, 182, 39, 0, 697, 0, 409, 0, 0, 40, 41, 33, 698, 0, 699, 1559, 36, 0, 181, 182, 39, 1559, 818, 0, 0, 0, 0, 40, 41, 0, 0, 0, 1559, 174, 0, 608, 1559, 609, 0, 0, 635, 831, 935, 602, 0, 610, 0, 0, 0, 0, 0, 0, 0, 697, 850, 409, 0, 0, 0, 935, 0, 0, 0, 699, 0, 0, 174, 0, 0, 0, 0, 0, 602, 0, 0, 0, 0, 602, 211, 0, 0, 0, 174, 635, 0, 1329, 348, 348, 348, 0, 0, 0, 0, 1385, 0, 211, 0, 174, 36, 0, 181, 182, 39, 0, 0, 348, 0, 0, 213, 40, 41, 0, 0, 0, 0, 0, 0, 728, 0, 0, 891, 0, 0, 723, 0, 728, 728, 728, 211, 0, 0, 0, 935, 935, 479, 697, 213, 409, 0, 257, 737, 213, 0, 937, 0, 699, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 72, 0, 25, 26, 27, 0, 0, 728, 0, 0, 479, 30, 452, 348, 0, 944, 0, 0, 0, 0, 0, 947, 963, 0, 0, 429, 0, 75, 174, 0, 0, 72, 36, 0, 181, 182, 39, 0, 0, 33, 0, 0, 0, 40, 41, 0, 37, 38, 0, 257, 737, 0, 0, 0, 0, 991, 0, 0, 75, 0, 0, 0, 0, 213, 0, 0, 220, 0, 0, 1529, 0, 409, 0, 0, 0, 0, 0, 213, 0, 1530, 485, 0, 0, 453, 0, 211, 1502, 710, 1506, 0, 0, 109, 723, 221, 0, 0, 0, 0, 0, 0, 0, 0, 723, 0, 0, 348, 0, 635, 820, 821, 1023, 635, 831, 211, 0, 0, 0, 723, 211, 0, 0, 0, 0, 1535, 0, 1537, 0, 1034, 36, 0, 181, 182, 39, 0, 0, 0, 0, 0, 855, 40, 41, 858, 859, 0, 862, 0, 864, 865, 0, 0, 0, 866, 867, 0, 351, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 263, 0, 0, 1566, 0, 1567, 213, 0, 0, 0, 264, 951, 0, 952, 63, 0, 353, 0, 1574, 1575, 955, 956, 0, 0, 553, 961, 0, 0, 0, 174, 0, 653, 0, 411, 0, 0, 635, 966, 1060, 0, 419, 211, 970, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 447, 0, 0, 0, 0, 999, 0, 942, 943, 1115, 30, 0, 505, 945, 0, 0, 0, 429, 115, 0, 0, 72, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 348, 0, 0, 33, 0, 0, 0, 0, 36, 0, 181, 182, 39, 75, 411, 600, 0, 0, 75, 40, 41, 0, 0, 0, 0, 124, 124, 124, 0, 0, 0, 0, 653, 0, 0, 602, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1529, 0, 409, 427, 0, 0, 211, 0, 723, 723, 1530, 348, 348, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 583, 0, 1044, 1045, 1046, 1047, 1202, 1049, 587, 0, 0, 590, 0, 0, 0, 0, 220, 0, 0, 0, 0, 30, 0, 1093, 0, 0, 124, 0, 124, 0, 213, 0, 0, 0, 0, 0, 0, 1099, 0, 0, 0, 723, 723, 221, 0, 0, 0, 635, 0, 33, 0, 0, 0, 273, 36, 0, 181, 182, 39, 0, 0, 0, 1060, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 411, 0, 1114, 0, 419, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 183, 0, 0, 0, 0, 0, 0, 351, 0, 0, 184, 0, 72, 0, 737, 0, 0, 0, 124, 75, 72, 0, 0, 0, 0, 1142, 124, 0, 124, 124, 0, 0, 1150, 124, 353, 124, 124, 1154, 0, 75, 0, 0, 1158, 0, 1159, 0, 351, 75, 1161, 1162, 1163, 0, 0, 1166, 0, 0, 0, 1298, 0, 0, 0, 0, 1178, 0, 351, 0, 72, 174, 0, 0, 0, 0, 411, 353, 257, 0, 0, 1297, 0, 63, 1193, 1194, 211, 0, 0, 0, 8, 9, 10, 11, 12, 353, 723, 75, 737, 0, 0, 0, 115, 0, 0, 0, 0, 0, 0, 124, 0, 1224, 351, 0, 1226, 0, 0, 0, 30, 0, 0, 0, 213, 0, 0, 0, 0, 0, 723, 0, 0, 0, 0, 0, 0, 0, 723, 723, 723, 353, 0, 0, 0, 0, 0, 0, 33, 348, 348, 0, 0, 36, 1241, 181, 182, 39, 0, 0, 1245, 1246, 0, 1202, 40, 41, 0, 0, 0, 0, 583, 583, 1257, 0, 0, 0, 0, 1261, 0, 351, 1265, 0, 1266, 0, 0, 1268, 723, 0, 0, 0, 263, 0, 0, 0, 0, 0, 0, 115, 1276, 0, 264, 0, 0, 0, 0, 0, 353, 1232, 0, 0, 0, 1283, 0, 1285, 1286, 1287, 1288, 0, 0, 0, 213, 0, 0, 0, 351, 351, 351, 0, 0, 1295, 0, 1296, 0, 0, 0, 170, 0, 0, 0, 0, 0, 0, 0, 351, 0, 0, 0, 0, 0, 174, 0, 353, 353, 353, 0, 0, 0, 0, 0, 910, 0, 351, 0, 913, 1324, 1325, 0, 211, 0, 0, 353, 0, 72, 0, 348, 0, 77, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 411, 0, 0, 75, 115, 0, 0, 84, 0, 353, 0, 77, 0, 54, 54, 0, 0, 0, 72, 1360, 1361, 351, 0, 0, 0, 0, 0, 1202, 0, 1371, 0, 0, 0, 0, 1202, 1320, 0, 0, 84, 0, 0, 0, 0, 0, 54, 75, 222, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 223, 0, 0, 54, 0, 0, 54, 0, 1404, 0, 0, 0, 353, 0, 1202, 0, 0, 0, 0, 0, 1408, 1554, 1409, 1410, 1411, 0, 0, 351, 0, 0, 0, 0, 0, 0, 1415, 0, 0, 351, 0, 0, 351, 0, 583, 1426, 0, 220, 0, 351, 0, 0, 0, 0, 351, 0, 353, 0, 0, 124, 124, 1439, 0, 354, 0, 0, 353, 0, 0, 353, 0, 0, 0, 0, 221, 0, 353, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 124, 361, 0, 124, 124, 0, 124, 346, 124, 124, 0, 0, 0, 124, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 1488, 1489, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1494, 0, 0, 0, 0, 0, 0, 1494, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411, 77, 0, 0, 54, 0, 77, 0, 0, 0, 0, 0, 0, 1528, 0, 0, 0, 1534, 0, 0, 0, 0, 0, 0, 124, 0, 0, 0, 84, 124, 124, 0, 0, 84, 54, 124, 0, 0, 0, 0, 0, 0, 0, 351, 0, 0, 1556, 0, 1557, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 353, 25, 26, 27, 0, 0, 1572, 1573, 0, 1156, 30, 452, 0, 0, 1576, 1577, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1168, 351, 351, 0, 351, 351, 222, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 72, 0, 0, 0, 353, 353, 0, 353, 353, 223, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 75, 0, 25, 26, 27, 0, 453, 0, 351, 351, 946, 30, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 1236, 0, 0, 0, 0, 0, 0, 0, 0, 353, 353, 354, 0, 33, 0, 0, 77, 0, 36, 0, 37, 38, 39, 84, 77, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 84, 346, 0, 351, 0, 0, 0, 354, 84, 0, 0, 0, 42, 0, 155, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 354, 0, 77, 0, 0, 353, 0, 0, 0, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, 0, 0, 0, 0, 0, 361, 0, 84, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 72, 354, 0, 0, 0, 221, 0, 0, 0, 0, 0, 0, 0, 351, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 361, 0, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 353, 0, 353, 0, 0, 351, 0, 0, 0, 0, 0, 0, 0, 351, 351, 351, 0, 0, 0, 0, 0, 0, 0, 0, 351, 351, 354, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 72, 0, 353, 353, 353, 0, 0, 0, 0, 0, 0, 0, 0, 353, 353, 361, 0, 0, 0, 0, 0, 346, 0, 351, 0, 0, 0, 75, 0, 0, 0, 0, 0, 354, 354, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 354, 0, 0, 0, 0, 0, 124, 0, 361, 361, 361, 0, 0, 0, 346, 346, 346, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 361, 0, 77, 0, 0, 0, 346, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 1033, 0, 0, 8, 9, 10, 11, 12, 0, 0, 84, 0, 0, 351, 0, 0, 361, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 354, 280, 281, 30, 282, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 361, 0, 0, 283, 33, 0, 346, 72, 0, 284, 354, 0, 0, 285, 72, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 124, 0, 292, 0, 0, 75, 0, 0, 361, 0, 0, 0, 75, 0, 0, 0, 0, 293, 0, 377, 0, 0, 0, 354, 0, 0, 295, 826, 297, 298, 299, 300, 0, 354, 0, 0, 354, 0, 72, 0, 0, 222, 0, 354, 0, 0, 0, 0, 354, 0, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 361, 0, 75, 0, 0, 223, 346, 361, 0, 0, 0, 0, 361, 346, 0, 0, 0, 0, 0, -516, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 77, 25, 26, 27, 28, 0, 0, 29, 0, 0, 30, 31, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 8, 9, 10, 11, 12, 84, 0, 0, 0, 0, 0, 54, 0, 32, 0, 0, 33, 163, 34, 0, 35, 36, 30, 37, 38, 39, 0, 0, 30, 0, 0, 0, 40, 41, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 33, 0, 42, 39, 43, 36, 354, 0, 0, 39, 40, 41, 44, 0, 0, 0, 40, 41, 0, 0, 0, 0, 54, 0, 0, 0, 163, 0, 0, 0, 0, 0, 270, 361, 0, 0, 42, 0, 0, 346, 0, 0, 743, 0, 0, 0, 145, 0, 0, 0, 0, 0, 744, 0, 0, 0, 0, 0, 0, 354, 354, 163, 354, 354, 0, 0, 0, 0, 0, 0, 0, 367, 0, 0, 0, 373, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 361, 361, 0, 361, 361, 0, 0, 0, 0, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 54, 0, 354, 354, 0, 0, 0, 0, 0, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 361, 361, 0, 0, 0, 0, 280, 281, 0, 282, 163, 460, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 373, 283, 0, 354, 0, 0, 30, 284, 163, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 361, 0, 460, 0, 33, 163, 0, 0, 0, 0, 0, 205, 38, 0, 512, 0, 222, 0, 0, 0, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 223, 0, 0, 0, 0, 54, 54, 0, 354, 605, 354, 0, 0, 269, 629, 0, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 361, 0, 361, 0, 0, 354, 0, 0, 0, 0, 0, 0, 54, 354, 354, 354, 0, 0, 0, 0, 0, 0, 0, 0, 354, 354, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 0, 77, 0, 361, 361, 361, 0, 0, 0, 0, 0, 0, 0, 0, 361, 361, 0, 0, 163, 163, 346, 346, 0, 0, 354, 367, 0, 0, 84, 54, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460, 0, 0, 460, 0, 361, 0, 0, 0, 460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 740, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 0, 163, 0, 229, 0, 233, 0, 235, 0, 0, 0, 0, 0, 460, 244, 460, 0, 0, 460, 354, 163, 460, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 367, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 361, 233, 235, 244, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 154, 0, 0, 0, 0, 77, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 163, 0, 209, 0, 0, 0, 0, 0, 0, 84, 0, 0, 367, 0, 605, 54, 84, 836, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 0, 77, 605, 0, 0, 0, 0, 605, 0, 0, 0, 0, 0, 0, 0, 0, 367, 367, 367, 0, 0, 0, 209, 0, 233, 235, 244, 0, 84, 0, 0, 0, 0, 0, 54, 367, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 154, 25, 26, 27, 0, 209, 0, 0, 0, 209, 30, 0, 0, 0, 384, 740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460, 416, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, -294, 0, 431, 0, 0, 367, 0, 960, 0, 0, 0, 436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444, 0, 0, 0, 0, 209, 0, 0, 0, 0, 642, 0, 337, 280, 281, 0, 282, 0, 0, 0, 109, 740, 0, 0, 0, 470, 209, 0, 0, 0, 480, 233, 235, 0, 0, 0, 0, 0, 0, 244, 0, 0, 283, 488, 0, 0, 0, 0, 284, 498, 0, 502, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 532, 292, 0, 0, 0, 0, 0, 367, 0, 0, 0, 629, 0, 209, 367, 0, 293, 0, 377, 0, 0, 378, 0, 0, 0, 295, 379, 297, 298, 299, 300, 209, 0, 0, 0, 0, 209, 0, 209, 0, 0, 0, 0, 592, 0, 0, 0, 0, 597, 0, 0, 0, 0, 0, 0, 209, 0, 0, 209, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 0, 643, 0, 0, 0, 644, 645, 0, 647, 0, 0, 0, 0, 209, 0, 659, 660, 0, 661, 662, 209, 663, 0, 664, 0, 0, 0, 0, 0, 0, 1176, 0, 460, 8, 9, 10, 11, 12, 0, 0, 592, 0, 0, 0, 0, 0, 0, 0, 679, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 281, 30, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 690, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 696, 0, 0, 0, 283, 33, 367, 0, 0, 0, 284, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 732, 290, 291, 0, 0, 0, 735, 0, 0, 292, 0, 470, 0, 0, 0, 0, 0, 0, 605, 0, 0, 0, 0, 0, 293, 0, 377, 0, 0, 209, 0, 0, 0, 295, 1177, 297, 298, 299, 300, 367, 367, 0, 0, 0, 0, 0, 0, 0, 772, 0, 0, 0, 0, 0, 0, 0, 0, 209, 513, 0, 515, 518, 209, 0, 787, 0, 0, 0, 521, 522, 0, 0, 0, 515, 515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 281, 0, 282, 460, 0, 814, 0, 0, 0, 0, 0, 0, 0, 0, 824, 0, 0, 0, 0, 0, 0, 827, 0, 0, 0, 515, 834, 0, 283, 0, 0, 0, 0, 0, 284, 0, 0, 849, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 209, 0, 292, 0, 0, 0, 0, 515, 740, 0, 0, 0, 0, 0, 209, 0, 0, 293, 0, 377, 0, 0, 0, 0, 889, 811, 295, 379, 297, 298, 299, 300, 0, 0, 503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 834, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 0, 25, 26, 27, 0, 740, 0, 0, 0, 0, 30, 0, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 249, 0, 0, 0, 0, 0, 33, 0, 0, 0, 967, 968, 209, 37, 38, 0, 0, -294, 0, 0, 0, 0, 367, 367, 985, 0, 0, 0, 0, 0, 0, 216, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 0, 1001, 0, 0, 0, 1005, 642, 0, 337, 0, 0, 0, 0, 0, 0, 0, 633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 515, 0, 0, 0, 0, 0, 0, 0, 0, 280, 281, 0, 282, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515, 1038, 0, 0, 0, 0, 0, 0, 1039, 0, 0, 0, 283, 209, 0, 0, 0, 0, 284, 0, 0, 1041, 285, 1042, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 367, 0, 1054, 0, 0, 292, 209, 0, 0, 1058, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 1096, 377, 0, 1097, 0, 0, 780, 0, 295, 379, 297, 298, 299, 300, 0, 0, 0, 209, 0, 0, 0, 597, 0, 0, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 0, 0, 460, 0, 460, 0, 0, 0, 515, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 0, 0, 515, 0, 0, 0, 0, 0, 0, 0, 30, 460, 0, 460, 0, 515, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 0, 25, 26, 27, 33, 0, 0, 163, 0, 0, 30, 0, 209, 1160, 0, -294, 0, 0, 0, 340, 362, 0, 0, 0, 0, 0, 0, 515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 335, 336, 39, 0, -294, 0, 0, 0, 412, 40, 41, 0, 0, 0, 515, 412, 0, 0, 0, 0, 0, 0, 0, 0, 532, 0, 0, 0, 0, 515, 0, 1225, 0, 0, 0, 642, 0, 337, 0, 0, 0, 0, 0, 0, 0, 633, 280, 281, 0, 282, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 1238, 0, 0, 0, 0, 1240, 0, 0, 0, 0, 0, 0, 0, 1244, 0, 283, 0, 0, 0, 0, 0, 648, 0, 137, 138, 285, 0, 412, 286, 649, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 1270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1278, 0, 293, 1279, 650, 1280, 651, 378, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 1289, 1290, 0, 0, 0, 0, 0, 0, 412, 0, 0, 0, 0, 0, 0, 209, 412, 588, 0, 412, 591, 0, 1303, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515, 0, 0, 0, 1326, 320, 0, 639, 0, 0, 340, 0, 0, 0, 0, 344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, 380, 0, 0, 515, 0, 0, 0, 0, 0, 412, 0, 0, 0, 412, 0, 515, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 362, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412, 0, 0, 320, 0, 0, 1396, 0, 1397, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 1406, 0, 1407, 0, 0, 0, 0, 484, 0, 0, 412, 0, 0, 362, 0, 0, 0, 0, 0, 0, 1414, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -399, 686, 0, 1432, 1434, 0, 0, 515, 0, 633, 0, 0, 0, 0, 0, 1440, 0, 0, 1244, 0, 412, 0, 0, 340, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1463, 0, 0, 0, 0, 0, 0, 0, 0, 1470, 0, 515, 1472, 0, 1474, 1476, 1478, 0, 0, 0, 0, 0, 0, 0, 0, 515, 515, 0, 0, 412, 412, 0, 0, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 829, 362, 380, 362, 0, 0, 0, 0, 1509, 0, 1511, 0, 621, 1244, 621, 621, 0, 0, 0, 0, 0, 621, 0, 0, 0, 0, 0, 0, 1523, 0, 0, 868, 362, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 412, 911, 0, 0, 412, 914, 0, 0, 0, 0, 0, 916, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 362, 412, 0, 412, 734, 0, 0, 412, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 362, 621, 0, 0, 768, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 781, 0, 0, 0, 0, 0, 0, 768, 0, 33, 768, 0, 0, 0, 0, 0, 205, 38, 0, 340, 362, 791, 792, 0, 412, 412, 0, 0, 0, 0, 0, 515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 813, 0, 0, 0, 0, 515, 0, 0, 0, 0, 822, 0, 0, 0, 0, 0, 0, 344, 628, 0, 0, 0, 781, 412, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 829, 362, 0, 0, 0, 621, 0, 621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 621, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 888, 0, 0, 0, 0, 0, 515, 515, 0, 380, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 344, 0, 30, 31, 0, 0, 0, 829, 0, 0, 0, 0, 0, 0, 0, 412, 280, 281, 0, 282, 0, 412, 0, 0, 0, 0, 0, 32, 0, 412, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 621, 621, 0, 283, 40, 41, 0, 0, 0, 284, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 362, 0, 0, 42, 292, 43, 412, 781, 0, 990, 0, 0, 0, 44, 0, 995, 0, 0, 0, 293, 0, 377, 1004, 0, 992, 412, 1157, 0, 295, 379, 297, 298, 299, 300, 0, 362, 0, 0, 0, 0, 0, 412, 1169, 0, 621, 621, 1174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 1021, 1022, 0, 344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 829, 412, 1237, 0, 0, 0, 0, 1052, 0, 0, 0, 380, 0, 621, 0, 0, 0, 0, 1, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 280, 281, 30, 1061, 1062, 0, 1063, 362, 0, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 0, 0, 0, 1072, 0, 0, 0, 1073, 1074, 0, 32, 0, 283, 33, 0, 34, 0, 35, 648, 320, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 1138, 1139, 0, 0, 0, 292, 0, 380, 0, 0, 0, 280, 281, 995, 282, 340, 1148, 0, 768, 0, 293, 0, 1075, 0, 0, 169, 0, 0, 0, 295, 296, 297, 298, 299, 300, 362, 0, 0, 1164, 1076, 283, 0, 0, -129, 0, 0, 284, 0, 0, 1179, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 380, 0, 1197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 362, 362, 0, 0, 995, 995, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1229, 0, 0, 0, 0, 0, 0, 0, 1, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 280, 281, 30, 282, 0, 0, 995, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 281, 0, 282, 0, 0, 888, 0, 0, 0, 283, 33, 0, 34, 0, 35, 284, 0, 37, 38, 285, 1281, 1282, 286, 287, 288, 289, 40, 41, 283, 290, 291, 0, 0, 0, 284, 0, 0, 292, 285, 362, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 293, 0, 1075, 0, 292, 0, 0, 0, 0, 295, 296, 297, 298, 299, 300, 0, 0, 0, 0, 293, 0, 377, 0, -129, 0, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 995, 0, 0, 0, 1, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 412, 0, 25, 26, 27, 28, 0, 0, 29, 280, 281, 30, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412, 412, 0, 0, 0, 0, 0, 0, 1389, 0, 768, 0, 0, 283, 33, 0, 34, 0, 35, 284, 0, 37, 38, 285, 0, 412, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 43, 0, 0, 0, 0, 0, 0, 295, 296, 297, 298, 299, 300, 0, 0, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 1449, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 283, 33, 0, 34, 30, 35, 284, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 33, 0, 0, 0, 0, 108, 0, 37, 38, 0, 0, 293, 1515, 342, 0, 0, 40, 41, 780, 0, 295, 343, 297, 298, 299, 300, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 0, 320, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -295, 0, 0, 0, 283, 33, 0, 34, 0, 35, 284, 30, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 293, 0, 930, -295, 0, 0, 0, 780, 0, 295, 343, 297, 298, 299, 300, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 283, 33, 0, 34, 30, 35, 284, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 293, 0, 930, 0, 0, 0, 0, 780, 0, 295, 599, 297, 298, 299, 300, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 283, 33, 0, 34, 30, 35, 284, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 205, 38, 0, 0, 293, 0, 342, 0, 0, 0, 0, 0, 0, 295, 343, 297, 298, 299, 300, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 283, 33, 0, 34, 30, 35, 284, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 930, 0, 0, 0, 0, 0, 0, 295, 343, 297, 298, 299, 300, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 33, 0, 34, 0, 35, 284, 0, 205, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 1019, 0, 0, 0, 0, 0, 0, 295, 1020, 297, 298, 299, 300, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 33, 0, 34, 0, 35, 284, 0, 205, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 377, 0, 0, 0, 0, 0, 0, 295, 379, 297, 298, 299, 300, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, -520, 0, 0, 0, 44, 203, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 491, 492, 493, 0, 0, 33, 30, 34, 0, 35, 36, 0, 205, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 0, 42, 0, 206, 0, 0, 0, 0, 0, 0, 0, 207, 1, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 0, 25, 26, 27, 28, 0, 0, 29, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, -294, 0, 1, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 43, 29, 0, 0, 30, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 203, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 43, 30, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 205, 38, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 206, 0, 0, 0, 0, 0, 0, 0, 269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 205, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 42, 0, 206, 0, 0, 0, 30, 0, 0, 0, 207, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 36, 0, 37, 38, 39, 0, 30, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 42, 35, 43, 0, 37, 38, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 686, 0, 0, 0, 0, 0, 0, 0, 633, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1370, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 335, 336, 39, 0, 686, 0, 0, 0, 0, 40, 41, 0, 633, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 337, 25, 26, 27, 0, 0, 0, 0, 109, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 205, 38, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 268, 0, 0, 0, 0, 0, 0, 0, 628, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 686, 0, 0, 0, 0, 0, 0, 0, 633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 598, 0, 0, 0, 0, 0, 0, 0, 633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 205, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 0, 0, 0, 0, 0, 206, 0, 0, 0, 0, 0, 0, 0, 269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 33, 0, 0, 0, 0, 284, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 524, 0, 0, 169, 0, 0, 0, 295, 296, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 280, 281, 30, 282, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -294, 0, 25, 26, 27, 0, 0, 0, 283, 33, 0, 30, 0, 0, 284, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 33, 0, 0, 0, 0, 36, 0, 335, 336, 39, 0, -294, 293, 0, 598, -3, 40, 41, 0, 0, 0, 295, 599, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 337, 0, 25, 26, 27, 0, 0, 0, 109, 280, 281, 30, 282, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 283, 33, 0, 30, 0, 0, 648, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 33, 0, 0, 0, 0, 108, 0, 37, 38, 0, 0, 0, 293, -35, 765, 0, 40, 41, 0, 0, 0, 295, 296, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 43, 0, 25, 26, 27, 0, 0, 0, 109, 280, 281, 30, 282, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 283, 33, 0, 30, 452, 0, 284, 0, 37, 38, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, 0, 293, 0, 294, 0, 0, 0, 0, 0, 0, 295, 296, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 453, 0, 25, 26, 27, 0, 0, 0, 109, 280, 281, 30, 282, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 283, 33, 25, 26, 27, 0, 284, 0, 37, 38, 285, 30, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 293, 0, 155, 37, 38, 0, 0, 0, 0, 295, 296, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 642, 0, 337, 280, 281, 30, 282, 0, 0, 0, 109, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 283, 33, 25, 26, 27, 0, 284, 0, 37, 38, 285, 30, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 293, 0, 598, 37, 38, 0, 0, 0, 0, 295, 599, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 642, 0, 337, 280, 281, 30, 282, 0, 0, 0, 633, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 283, 33, 25, 26, 27, 0, 284, 0, 37, 38, 285, 30, 452, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 293, 0, 377, 37, 38, 0, 0, 0, 0, 295, 379, 297, 298, 299, 300, 473, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 453, 25, 26, 27, 1234, 0, 0, 0, 109, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 33, 30, 34, 0, 35, 0, 0, 37, 38, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 36, 0, 205, 38, 39, 30, 0, 0, 0, 0, 0, 40, 41, -3, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 42, 36, 268, 335, 336, 39, 30, 0, 0, 0, 207, 0, 40, 41, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 642, 0, 337, 37, 38, 0, 30, 0, 0, 0, 633, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 33, 0, 0, 0, 0, 30, 255, 37, 38, 0, 0, 0, 0, 0, 109, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 0, 205, 38, 0, 30, 155, 0, 0, 0, 0, 0, 0, 0, 109, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 268, 37, 38, 0, 30, 0, 0, 0, 269, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 33, 0, 0, 0, 0, 30, 255, 37, 38, 0, 0, 0, 0, 0, 633, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 0, 37, 38, 0, 30, 337, 0, 0, 0, 0, 0, 0, 0, 633, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 453, 205, 38, 0, 30, 0, 0, 0, 109, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 33, 0, 0, 0, 0, 30, 268, 37, 38, 0, 0, 0, 0, 0, 628, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 33, 25, 26, 27, 0, 0, 0, 37, 38, 0, 30, 598, 0, 0, 0, 0, 0, 0, 0, 633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 337, 37, 38, 0, 0, 0, 0, 0, 109, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 43, 0, 0, 0, 0, 30, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 280, 281, 0, 282, 1062, 0, 1063, 0, 0, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 0, 0, 1548, 1072, 0, 0, 0, 1073, 1074, 0, 32, 0, 283, 0, 0, 0, 0, -412, 648, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 377, 0, 0, 169, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 0, 0, 1076, 0, 280, 281, -129, 282, 1062, 0, 1063, 0, 0, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 0, 0, 0, 1072, 0, 0, 0, 1073, 1074, 0, 32, 0, 283, 0, 0, 0, 0, 0, 648, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 377, 0, 0, 169, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 0, 0, 1076, 0, 280, 281, -129, 282, 1062, 0, 1063, 1418, 1419, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 0, 0, 1548, 1072, 0, 0, 0, 1073, 1074, 0, 32, 0, 283, 0, 0, 0, 0, 0, 648, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 377, 0, 0, 169, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 280, 281, 1076, 282, 1062, 0, 1063, 1418, 1419, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 0, 0, 0, 1072, 0, 0, 0, 1073, 1074, 0, 32, 0, 283, 0, 0, 0, 0, 0, 648, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 377, 0, 0, 169, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 280, 281, 1076, 282, 1062, 0, 1063, 0, 0, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 0, 0, 0, 1072, 0, 0, 0, 1073, 1074, 0, 32, 0, 283, 0, 0, 0, 0, 0, 648, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 0, 377, 0, 0, 169, 0, 0, 0, 295, 379, 297, 298, 299, 300, 0, 0, 0, 0, 1076, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 280, 281, 0, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 281, 0, 282, 0, 0, 0, 33, 0, 34, 283, 35, 0, 0, 37, 38, 284, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 283, 290, 291, 0, 0, 0, 648, 1327, 0, 292, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 293, 0, 377, 0, 292, 280, 281, 0, 282, 295, 733, 297, 298, 299, 300, 0, 0, 0, 0, 293, 0, 784, 0, 0, 280, 281, 0, 282, 295, 379, 297, 298, 299, 300, 283, 0, 0, 0, 0, 0, 284, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 283, 290, 291, 0, 0, 0, 284, 0, 0, 292, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 293, 0, 377, 0, 292, 280, 281, 0, 282, 295, 826, 297, 298, 299, 300, 0, 0, 0, 0, 517, 0, 0, 0, 0, 0, 0, 0, 0, 295, 379, 297, 298, 299, 300, 283, 0, 0, 0, 0, 0, 284, 0, 0, 0, 285, 0, 0, 286, 287, 288, 289, 40, 41, 0, 290, 291, 0, 0, 0, 0, 0, 0, 292, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 520, 0, 0, 0, 0, 0, 0, 0, 0, 295, 379, 297, 298, 299, 300, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 172, 173, 39, 0, 0, 0, 0, 0, 0, 40, 41, 203, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 205, 38, 473, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 204, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 205, 38 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1281)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 0, 42, 237, 217, 183, 183, 202, 42, 0, 1, 1, 183, 42, 542, 183, 183, 114, 103, 184, 455, 519, 343, 0, 0, 628, 454, 28, 29, 183, 31, 697, 31, 697, 183, 498, 697, 610, 608, 502, 31, 42, 679, 44, 461, 44, 347, 1042, 496, 279, 901, 655, 1, 54, 31, 31, 166, 167, 608, 60, 1061, 60, 63, 608, 63, 66, 610, 66, 153, 347, 0, 578, 63, 1005, 277, 66, 66, 416, 998, 80, 81, 1041, 1042, 184, 608, 263, 263, 63, 779, 42, 362, 185, 263, 608, 366, 263, 263, 436, 31, 264, 528, 31, 199, 104, 1337, 444, 107, 608, 27, 263, 776, 0, 776, 114, 263, 776, 42, 608, 722, 642, 643, 644, 1054, 758, 424, 425, 611, 38, 254, 643, 644, 38, 617, 81, 42, 62, 106, 1418, 661, 0, 1, 63, 31, 183, 145, 44, 145, 661, 109, 183, 81, 108, 153, 226, 183, 116, 1422, 158, 77, 158, 130, 38, 110, 264, 612, 259, 260, 488, 616, 50, 31, 44, 245, 743, 109, 43, 44, 814, 109, 1073, 1074, 116, 183, 184, 81, 184, 108, 824, 54, 637, 43, 44, 38, 641, 38, 408, 84, 108, 199, 110, 500, 63, 839, 110, 131, 66, 207, 1440, 207, 901, 109, 1492, 735, 43, 44, 216, 494, 108, 219, 519, 219, 735, 38, 263, 112, 226, 81, 108, 219, 263, 183, 108, 11, 110, 263, 115, 109, 108, 104, 404, 241, 107, 743, 219, 245, 1240, 114, 1141, 249, 250, 249, 131, 743, 115, 1520, 340, 113, 183, 249, 1525, 113, 116, 263, 264, 108, 264, 110, 115, 838, 270, 38, 144, 249, 249, 0, 183, 277, 850, 599, 1545, 510, 3, 717, 113, 369, 585, 1552, 81, 838, 454, 416, 292, 108, 838, 110, 1290, 158, 394, 1474, 111, 1525, 250, 1303, 404, 827, 31, 850, 628, 207, 610, 436, 818, 633, 827, 838, 109, 249, 1008, 444, 249, 1545, 486, 116, 838, 596, 422, 327, 1552, 327, 1289, 1290, 428, 81, 1509, 207, 1511, 1256, 838, 94, 238, 108, 95, 110, 292, 111, 346, 347, 838, 115, 81, 216, 690, 95, 454, 1525, 840, 115, 219, 698, 108, 249, 3, 363, 1, 237, 254, 367, 639, 122, 1061, 269, 71, 348, 129, 1225, 696, 108, 378, 71, 122, 720, 1552, 82, 83, 108, 486, 959, 108, 249, 82, 83, 114, 115, 394, 293, 257, 269, 296, 71, 261, 108, 1038, 1039, 404, 270, 404, 44, 130, 958, 82, 83, 277, 115, 958, 71, 0, 115, 1020, 0, 1414, 115, 422, 130, 296, 872, 82, 83, 428, 131, 430, 488, 131, 131, 109, 958, 1070, 131, 110, 131, 115, 67, 115, 89, 90, 71, 675, 531, 74, 115, 76, 130, 772, 115, 454, 1414, 71, 83, 131, 459, 1096, 1097, 118, 1463, 464, 131, 103, 82, 83, 131, 1470, 343, 109, 473, 108, 1406, 1407, 115, 478, 125, 126, 346, 109, 108, 109, 109, 486, 348, 486, 116, 490, 115, 490, 131, 494, 110, 109, 497, 363, 499, 490, 71, 367, 130, 479, 967, 1003, 144, 120, 121, 937, 927, 82, 83, 490, 490, 153, 964, 945, 519, 697, 697, 115, 1523, 249, 473, 108, 697, 416, 254, 697, 697, 761, 108, 1225, 699, 536, 1140, 131, 539, 110, 541, 542, 1115, 697, 1029, 1030, 656, 436, 697, 850, 108, 424, 425, 452, 757, 444, 455, 829, 87, 88, 490, 833, 461, 991, 690, 203, 663, 429, 71, 207, 519, 665, 850, 115, 10, 11, 12, 13, 14, 82, 83, 115, 108, 210, 642, 643, 644, 536, 589, 131, 539, 470, 541, 542, 109, 596, 115, 131, 699, 237, 238, 490, 38, 661, 109, 108, 732, 608, 115, 610, 695, 1303, 131, 512, 71, 514, 115, 479, 517, 111, 597, 520, 109, 115, 131, 82, 83, 500, 629, 490, 66, 269, 131, 1270, 272, 109, 79, 977, 696, 282, 589, 1278, 1279, 1280, 645, 71, 519, 73, 74, 109, 651, 923, 295, 296, 630, 293, 82, 83, 296, 660, 111, 662, 663, 664, 307, 114, 1101, 110, 1303, 112, 79, 3, 111, 116, 887, 108, 115, 735, 10, 11, 12, 13, 14, 91, 92, 963, 771, 113, 0, 1326, 416, 109, 108, 293, 110, 908, 697, 115, 699, 1020, 343, 110, 340, 112, 111, 343, 38, 116, 115, 108, 436, 712, 585, 662, 772, 664, 118, 718, 444, 31, 131, 123, 124, 350, 362, 352, 599, 71, 366, 730, 42, 369, 44, 111, 66, 969, 379, 115, 82, 83, 602, 108, 743, 744, 109, 1380, 109, 723, 60, 1131, 115, 63, 115, 1135, 66, 628, 757, 108, 63, 110, 633, 737, 488, 629, 490, 108, 110, 118, 630, 827, 1495, 1463, 937, 635, 108, 108, 1501, 110, 1470, 645, 945, 730, 108, 893, 110, 118, 424, 425, 111, 109, 109, 1319, 118, 1133, 660, 115, 115, 1522, 113, 109, 679, 690, 1527, 131, 52, 115, 113, 512, 71, 514, 73, 74, 517, 440, 452, 520, 109, 455, 717, 82, 83, 109, 115, 461, 424, 425, 128, 115, 130, 113, 1102, 1523, 1467, 145, 1469, 473, 937, 838, 1033, 1160, 114, 115, 109, 732, 945, 108, 158, 95, 115, 850, 113, 1191, 1192, 109, 108, 831, 110, 834, 131, 115, 498, 723, 500, 1529, 502, 1529, 131, 109, 1529, 115, 116, 183, 184, 115, 512, 737, 514, 109, 109, 517, 109, 519, 520, 115, 115, 71, 115, 73, 74, 1524, 108, 757, 893, 531, 108, 207, 82, 83, 109, 900, 901, 1131, 109, 109, 115, 1135, 1136, 219, 115, 115, 901, 81, 512, 556, 557, 558, 108, 517, 110, 1240, 520, 108, 923, 110, 901, 901, 109, 110, 4, 5, 6, 7, 8, 9, 108, 814, 937, 249, 71, 111, 73, 74, 81, 191, 945, 824, 1056, 585, 119, 82, 83, 263, 901, 108, 109, 110, 599, 108, 596, 110, 839, 599, 963, 108, 690, 110, 214, 57, 58, 831, 696, 108, 109, 110, 574, 108, 224, 968, 968, 108, 113, 110, 983, 1041, 4, 5, 6, 7, 8, 9, 628, 992, 68, 127, 70, 633, 108, 109, 110, 1000, 128, 639, 1003, 130, 1005, 71, 732, 73, 74, 75, 110, 108, 901, 110, 3, 327, 82, 83, 114, 115, 1250, 10, 11, 12, 13, 14, 1123, 71, 927, 73, 74, 75, 115, 116, 983, 347, 115, 116, 82, 83, 901, 108, 108, 110, 110, 293, 772, 1023, 68, 38, 70, 1000, 118, 1054, 1003, 131, 1005, 695, 108, 109, 110, 1401, 93, 1064, 108, 108, 1067, 1068, 1069, 108, 1061, 10, 11, 12, 13, 14, 1504, 66, 1418, 717, 563, 564, 565, 566, 1061, 1061, 71, 111, 73, 74, 733, 1092, 404, 43, 44, 44, 969, 82, 83, 38, 111, 702, 1160, 704, 109, 1054, 109, 968, 1338, 747, 109, 60, 1342, 109, 63, 1064, 109, 66, 1067, 1068, 1069, 3, 1123, 561, 562, 110, 1554, 66, 10, 11, 12, 13, 14, 771, 109, 1220, 779, 71, 108, 73, 74, 75, 454, 111, 109, 111, 111, 1020, 82, 83, 115, 1491, 1492, 57, 58, 59, 38, 567, 568, 1038, 1039, 1023, 1262, 1263, 1264, 130, 131, 559, 560, 108, 110, 110, 1061, 115, 108, 901, 130, 113, 490, 118, 108, 111, 494, 826, 66, 109, 109, 116, 115, 111, 111, 829, 111, 441, 111, 833, 145, 1198, 116, 28, 1061, 116, 1101, 109, 84, 85, 86, 109, 111, 158, 109, 1202, 1203, 1203, 1444, 113, 116, 1096, 1097, 1220, 114, 114, 114, 108, 1225, 115, 1202, 475, 108, 115, 110, 1289, 112, 113, 1225, 184, 109, 4, 5, 6, 7, 8, 9, 131, 109, 109, 116, 109, 1225, 1225, 109, 109, 115, 1244, 1244, 71, 109, 109, 207, 75, 109, 1262, 1263, 1264, 512, 32, 82, 83, 109, 517, 219, 109, 520, 109, 109, 71, 1225, 73, 74, 75, 84, 85, 86, 109, 109, 923, 82, 83, 470, 927, 109, 109, 108, 114, 110, 109, 608, 109, 610, 28, 1397, 68, 118, 70, 108, 1539, 110, 1298, 112, 113, 698, 111, 1303, 1262, 1263, 1264, 109, 130, 1319, 1320, 109, 109, 1298, 114, 109, 115, 1303, 1303, 111, 967, 968, 969, 720, 111, 109, 1061, 1225, 71, 109, 115, 1202, 75, 1203, 109, 901, 115, 1337, 1337, 82, 83, 115, 1529, 1529, 116, 113, 111, 71, 109, 1529, 1238, 75, 1529, 1529, 111, 1225, 1530, 115, 82, 83, 115, 1319, 1320, 109, 1374, 108, 1529, 1377, 1020, 327, 109, 1529, 108, 1020, 1244, 118, 697, 108, 699, 108, 1554, 108, 1270, 108, 108, 111, 1396, 1397, 116, 131, 1278, 1279, 1280, 114, 118, 109, 1406, 1407, 1504, 71, 109, 73, 74, 75, 109, 1303, 0, 1, 128, 1061, 82, 83, 1422, 114, 811, 113, 1374, 1427, 111, 1377, 1530, 678, 743, 744, 131, 1160, 109, 1298, 115, 111, 687, 115, 111, 1303, 691, 1445, 109, 31, 1326, 109, 1440, 1440, 109, 111, 1554, 111, 404, 1457, 1406, 1407, 44, 111, 109, 54, 1101, 1102, 111, 111, 111, 46, 29, 109, 131, 1463, 1422, 114, 131, 1337, 131, 1427, 1470, 71, 66, 73, 74, 75, 114, 1463, 1463, 131, 1529, 131, 82, 83, 1470, 1470, 1529, 1445, 679, 116, 1225, 1529, 889, 109, 1504, 1505, 111, 114, 1064, 1457, 111, 111, 111, 104, 1514, 1240, 107, 111, 108, 103, 1520, 80, 81, 111, 111, 1525, 111, 838, 118, 1529, 1530, 1396, 1530, 1523, 109, 1177, 109, 111, 108, 850, 111, 63, 108, 1543, 108, 1545, 59, 1523, 1523, 1549, 113, 109, 1552, 109, 1554, 131, 1554, 1505, 80, 116, 1560, 145, 153, 111, 1564, 111, 1514, 109, 111, 153, 154, 109, 1520, 108, 1472, 1463, 1474, 1525, 1303, 95, 1440, 95, 1470, 1220, 108, 114, 131, 115, 111, 109, 977, 109, 109, 115, 109, 1543, 41, 1545, 131, 131, 184, 1549, 95, 1463, 1552, 1204, 1205, 1244, 1207, 116, 1470, 1509, 1560, 1511, 1213, 199, 1564, 1216, 202, 203, 109, 1008, 109, 207, 95, 216, 937, 131, 109, 109, 131, 116, 131, 814, 945, 1523, 158, 109, 114, 109, 50, 131, 52, 824, 228, 55, 56, 57, 232, 59, 234, 111, 963, 111, 108, 114, 131, 114, 839, 243, 109, 109, 131, 1523, 74, 249, 109, 1539, 109, 1225, 254, 1058, 1076, 569, 1225, 570, 86, 87, 925, 270, 264, 571, 241, 1492, 63, 573, 277, 1382, 272, 572, 25, 26, 27, 1564, 73, 1313, 1136, 219, 1342, 1470, 1337, 10, 11, 12, 13, 14, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1092, 29, 30, 31, 452, 38, 452, 945, 704, 464, 38, 257, 115, 893, 1463, 261, 947, 992, 589, 965, 657, 1470, 1133, 747, 1244, 490, 757, 577, -1, -1, 577, 346, 340, 66, 577, 343, -1, 96, 66, 98, 1320, 349, -1, -1, -1, 73, 74, -1, 363, 77, -1, -1, 367, 1376, 362, 158, -1, -1, 366, -1, -1, 369, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, 1523, 108, -1, 110, -1, 1440, 1191, 1192, 110, -1, -1, 118, -1, -1, -1, -1, 118, 38, -1, -1, 1374, 378, -1, 1377, -1, -1, -1, 1072, 348, -1, -1, -1, -1, -1, 416, -1, -1, 1472, -1, 1474, -1, 430, 219, -1, -1, 66, 179, -1, -1, 431, -1, -1, -1, -1, 436, -1, 189, 190, -1, 1038, 1039, 194, 444, 196, 197, -1, -1, -1, 1422, -1, -1, -1, -1, 1427, 1509, -1, 1511, -1, -1, -1, 257, -1, -1, -1, 261, -1, -1, 108, 470, 110, -1, 473, -1, -1, -1, -1, -1, 118, -1, -1, 277, -1, 459, 1457, 1539, -1, 488, 464, 490, 429, -1, 10, 11, 12, 13, 14, 498, 1096, 1097, -1, 502, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 343, 344, -1, -1, 38, 497, 71, 499, 73, 74, 75, -1, 355, 356, 531, 532, -1, 82, 83, -1, -1, -1, 38, -1, 479, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 348, 71, -1, 73, 74, 75, -1, 108, -1, 110, -1, -1, 82, 83, 66, 116, -1, 118, 1543, 71, -1, 73, 74, 75, 1549, 578, -1, -1, -1, -1, 82, 83, -1, -1, -1, 1560, 596, -1, 108, 1564, 110, -1, -1, 596, 597, 1401, 599, -1, 118, -1, -1, -1, -1, -1, -1, -1, 108, 610, 110, -1, -1, -1, 1418, -1, -1, -1, 118, -1, -1, 629, -1, -1, -1, -1, -1, 628, -1, -1, -1, -1, 633, 429, -1, -1, -1, 645, 639, -1, 1238, 642, 643, 644, -1, -1, -1, -1, 1312, -1, 446, -1, 660, 71, -1, 73, 74, 75, -1, -1, 661, -1, -1, 602, 82, 83, -1, -1, -1, -1, -1, -1, 1270, -1, -1, 651, -1, -1, 679, -1, 1278, 1279, 1280, 479, -1, -1, -1, 1491, 1492, 690, 108, 630, 110, -1, 695, 696, 635, -1, 699, -1, 118, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 0, -1, 29, 30, 31, -1, -1, 1326, -1, -1, 732, 38, 39, 735, -1, 712, -1, -1, -1, -1, -1, 718, 744, -1, -1, 747, -1, 0, 757, -1, -1, 31, 71, -1, 73, 74, 75, -1, -1, 66, -1, -1, -1, 82, 83, -1, 73, 74, -1, 771, 772, -1, -1, -1, -1, 777, -1, -1, 31, -1, -1, -1, -1, 723, -1, -1, 66, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, 737, -1, 118, 1529, -1, -1, 110, -1, 602, 1471, 114, 1473, -1, -1, 118, 814, 66, -1, -1, -1, -1, -1, -1, -1, -1, 824, -1, -1, 827, -1, 829, 581, 582, 832, 833, 834, 630, -1, -1, -1, 839, 635, -1, -1, -1, -1, 1508, -1, 1510, -1, 849, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, 611, 82, 83, 614, 615, -1, 617, -1, 619, 620, -1, -1, -1, 624, 625, -1, 154, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 108, -1, -1, 1553, -1, 1555, 831, -1, -1, -1, 118, 724, -1, 726, 901, -1, 154, -1, 1568, 1569, 733, 734, -1, -1, 130, 738, -1, -1, -1, 923, -1, 893, -1, 187, -1, -1, 923, 750, 900, -1, 194, 723, 755, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 737, -1, -1, -1, -1, -1, -1, -1, 228, -1, -1, -1, -1, 781, -1, 708, 709, 959, 38, -1, 757, 714, -1, -1, -1, 967, 968, -1, -1, 249, -1, -1, -1, -1, 254, -1, -1, -1, -1, -1, -1, -1, -1, 985, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, 249, 266, 826, -1, -1, 254, 82, 83, -1, -1, -1, -1, 25, 26, 27, -1, -1, -1, -1, 992, -1, -1, 1020, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, 1033, -1, -1, 831, -1, 1038, 1039, 118, 1041, 1042, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, 322, -1, 883, 884, 885, 886, 1061, 888, 330, -1, -1, 333, -1, -1, -1, -1, 349, -1, -1, -1, -1, 38, -1, 904, -1, -1, 96, -1, 98, -1, 1023, -1, -1, -1, -1, -1, -1, 918, -1, -1, -1, 1096, 1097, 349, -1, -1, -1, 1102, -1, 66, -1, -1, -1, 123, 71, -1, 73, 74, 75, -1, -1, -1, 1092, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, 396, -1, 957, -1, 400, -1, -1, -1, -1, 416, -1, -1, -1, -1, -1, -1, -1, 108, -1, -1, -1, -1, -1, -1, 431, -1, -1, 118, -1, 436, -1, 1160, -1, -1, -1, 179, 416, 444, -1, -1, -1, -1, 997, 187, -1, 189, 190, -1, -1, 1004, 194, 431, 196, 197, 1009, -1, 436, -1, -1, 1014, -1, 1016, -1, 470, 444, 1020, 1021, 1022, -1, -1, 1025, -1, -1, -1, 1203, -1, -1, -1, -1, 1034, -1, 488, -1, 490, 1220, -1, -1, -1, -1, 485, 470, 1220, -1, -1, 1198, -1, 1225, 1052, 1053, 1023, -1, -1, -1, 10, 11, 12, 13, 14, 488, 1238, 490, 1240, -1, -1, -1, 1244, -1, -1, -1, -1, -1, -1, 266, -1, 1079, 532, -1, 1082, -1, -1, -1, 38, -1, -1, -1, 1202, -1, -1, -1, -1, -1, 1270, -1, -1, -1, -1, -1, -1, -1, 1278, 1279, 1280, 532, -1, -1, -1, -1, -1, -1, 66, 1289, 1290, -1, -1, 71, 1120, 73, 74, 75, -1, -1, 1126, 1127, -1, 1303, 82, 83, -1, -1, -1, -1, 577, 578, 1138, -1, -1, -1, -1, 1143, -1, 597, 1146, -1, 1148, -1, -1, 1151, 1326, -1, -1, -1, 108, -1, -1, -1, -1, -1, -1, 1337, 1164, -1, 118, -1, -1, -1, -1, -1, 597, 1098, -1, -1, -1, 1177, -1, 1179, 1180, 1181, 1182, -1, -1, -1, 1298, -1, -1, -1, 642, 643, 644, -1, -1, 1195, -1, 1197, -1, -1, -1, 1201, -1, -1, -1, -1, -1, -1, -1, 661, -1, -1, -1, -1, -1, 1396, -1, 642, 643, 644, -1, -1, -1, -1, -1, 666, -1, 679, -1, 670, 1230, 1231, -1, 1202, -1, -1, 661, -1, 690, -1, 1414, -1, 0, -1, 696, -1, -1, -1, -1, -1, -1, -1, -1, -1, 679, -1, -1, -1, -1, -1, -1, -1, 703, -1, -1, 690, 1440, -1, -1, 0, -1, 696, -1, 31, -1, 0, 1, -1, -1, -1, 732, 1281, 1282, 735, -1, -1, -1, -1, -1, 1463, -1, 1291, -1, -1, -1, -1, 1470, 1222, -1, -1, 31, -1, -1, -1, -1, -1, 31, 732, 66, -1, 735, -1, -1, -1, -1, -1, -1, -1, -1, -1, 772, -1, -1, -1, -1, -1, -1, -1, -1, 1298, -1, -1, -1, -1, -1, 66, -1, -1, 63, -1, -1, 66, -1, 1343, -1, -1, -1, 772, -1, 1523, -1, -1, -1, -1, -1, 1355, 1530, 1357, 1358, 1359, -1, -1, 814, -1, -1, -1, -1, -1, -1, 1369, -1, -1, 824, -1, -1, 827, -1, 818, 1378, -1, 832, -1, 834, -1, -1, -1, -1, 839, -1, 814, -1, -1, 581, 582, 1394, -1, 154, -1, -1, 824, -1, -1, 827, -1, -1, -1, -1, 832, -1, 834, -1, -1, -1, -1, 839, -1, -1, -1, -1, -1, -1, -1, 611, 154, -1, 614, 615, -1, 617, 154, 619, 620, -1, -1, -1, 624, 625, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 901, 1450, 1451, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1463, -1, -1, -1, -1, -1, -1, 1470, -1, -1, -1, -1, -1, 901, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 931, 249, -1, -1, 219, -1, 254, -1, -1, -1, -1, -1, -1, 1503, -1, -1, -1, 1507, -1, -1, -1, -1, -1, -1, 703, -1, -1, -1, 249, 708, 709, -1, -1, 254, 249, 714, -1, -1, -1, -1, -1, -1, -1, 985, -1, -1, 1536, -1, 1538, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 985, 29, 30, 31, -1, -1, 1566, 1567, -1, 1010, 38, 39, -1, -1, 1574, 1575, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1026, 1038, 1039, -1, 1041, 1042, 349, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 1061, -1, -1, -1, 1038, 1039, -1, 1041, 1042, 349, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1061, -1, 29, 30, 31, -1, 110, -1, 1096, 1097, 114, 38, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, 416, -1, -1, -1, 1103, -1, -1, -1, -1, -1, -1, -1, -1, 1096, 1097, 431, -1, 66, -1, -1, 436, -1, 71, -1, 73, 74, 75, 416, 444, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, 431, -1, -1, -1, -1, 436, 431, -1, 1160, -1, -1, -1, 470, 444, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, 488, -1, 490, -1, -1, 1160, -1, -1, -1, 470, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1203, -1, -1, -1, -1, -1, 488, -1, 490, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, 1225, 532, -1, -1, -1, 1203, -1, -1, -1, -1, -1, -1, -1, 1238, -1, 1240, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1225, 532, -1, -1, -1, -1, -1, 532, -1, -1, -1, -1, -1, 1238, -1, 1240, -1, -1, 1270, -1, -1, -1, -1, -1, -1, -1, 1278, 1279, 1280, -1, -1, -1, -1, -1, -1, -1, -1, 1289, 1290, 597, -1, -1, -1, -1, -1, 1270, -1, -1, -1, -1, -1, 1303, -1, 1278, 1279, 1280, -1, -1, -1, -1, -1, -1, -1, -1, 1289, 1290, 597, -1, -1, -1, -1, -1, 597, -1, 1326, -1, -1, -1, 1303, -1, -1, -1, -1, -1, 642, 643, 644, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1326, -1, 661, -1, -1, -1, -1, -1, 1098, -1, 642, 643, 644, -1, -1, -1, 642, 643, 644, -1, 679, -1, -1, -1, -1, -1, -1, -1, -1, 661, -1, 690, -1, -1, -1, 661, -1, 696, -1, -1, -1, -1, -1, -1, -1, -1, -1, 679, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, 690, -1, -1, 1414, -1, -1, 696, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, 735, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, 1414, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 732, -1, -1, 735, -1, -1, 65, 66, -1, 735, 1463, -1, 71, 772, -1, -1, 75, 1470, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, 1222, -1, 93, -1, -1, 1463, -1, -1, 772, -1, -1, -1, 1470, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, 814, -1, -1, 117, 118, 119, 120, 121, 122, -1, 824, -1, -1, 827, -1, 1523, -1, -1, 832, -1, 834, -1, -1, -1, -1, 839, -1, 814, -1, -1, -1, -1, -1, -1, -1, -1, -1, 824, -1, -1, 827, -1, 1523, -1, -1, 832, 827, 834, -1, -1, -1, -1, 839, 834, -1, -1, -1, -1, -1, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 901, 29, 30, 31, 32, -1, -1, 35, -1, -1, 38, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 10, 11, 12, 13, 14, 901, -1, -1, -1, -1, -1, 901, -1, 63, -1, -1, 66, 44, 68, -1, 70, 71, 38, 73, 74, 75, -1, -1, 38, -1, -1, -1, 82, 83, -1, -1, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, 71, 66, -1, 108, 75, 110, 71, 985, -1, -1, 75, 82, 83, 118, -1, -1, -1, 82, 83, -1, -1, -1, -1, 968, -1, -1, -1, 109, -1, -1, -1, -1, -1, 115, 985, -1, -1, 108, -1, -1, 985, -1, -1, 108, -1, -1, -1, 118, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, 1038, 1039, 144, 1041, 1042, -1, -1, -1, -1, -1, -1, -1, 154, -1, -1, -1, 158, -1, -1, -1, -1, -1, -1, 1061, -1, -1, -1, 1038, 1039, -1, 1041, 1042, -1, -1, -1, -1, 1041, 1042, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1061, -1, -1, -1, -1, -1, 1061, -1, 1096, 1097, -1, -1, -1, -1, -1, 207, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 219, -1, -1, -1, -1, -1, -1, -1, 1096, 1097, -1, -1, -1, -1, 36, 37, -1, 39, 237, 238, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 261, 65, -1, 1160, -1, -1, 38, 71, 269, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, 1160, -1, 293, -1, 66, 296, -1, -1, -1, -1, -1, 73, 74, -1, 108, -1, 1203, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1225, -1, -1, -1, -1, 1203, -1, -1, -1, -1, 1202, 1203, -1, 1238, 343, 1240, -1, -1, 118, 348, -1, -1, -1, -1, -1, -1, -1, 1225, -1, -1, -1, -1, -1, 1225, -1, -1, -1, -1, -1, -1, 1238, -1, 1240, -1, -1, 1270, -1, -1, -1, -1, -1, -1, 1244, 1278, 1279, 1280, -1, -1, -1, -1, -1, -1, -1, -1, 1289, 1290, -1, -1, -1, -1, -1, -1, 1270, -1, -1, -1, -1, -1, 1303, -1, 1278, 1279, 1280, -1, -1, -1, -1, -1, -1, -1, -1, 1289, 1290, -1, -1, 424, 425, 1289, 1290, -1, -1, 1326, 431, -1, -1, 1303, 1298, -1, -1, -1, -1, 1303, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 452, -1, -1, 455, -1, 1326, -1, -1, -1, 461, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1337, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 488, -1, -1, -1, 63, -1, -1, -1, -1, -1, -1, -1, 500, -1, 73, -1, 75, -1, 77, -1, -1, -1, -1, -1, 512, 84, 514, -1, -1, 517, 1414, 519, 520, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 532, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, 1414, 117, 118, 119, -1, -1, 1414, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1463, -1, 43, -1, -1, -1, -1, 1470, -1, -1, 1440, -1, -1, -1, -1, -1, -1, -1, 585, -1, 158, -1, -1, -1, -1, -1, -1, 1463, -1, -1, 597, -1, 599, 1463, 1470, 602, -1, -1, -1, -1, 1470, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, 1523, 628, -1, -1, -1, -1, 633, -1, -1, -1, -1, -1, -1, -1, -1, 642, 643, 644, -1, -1, -1, 219, -1, 221, 222, 223, -1, 1523, -1, -1, -1, -1, -1, 1523, 661, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 155, 29, 30, 31, -1, 257, -1, -1, -1, 261, 38, -1, -1, -1, 169, 696, -1, -1, -1, -1, -1, -1, -1, -1, -1, 277, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 717, 192, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 77, -1, 206, -1, -1, 735, -1, 737, -1, -1, -1, 215, -1, -1, -1, -1, -1, -1, -1, -1, -1, 225, -1, -1, -1, -1, 327, -1, -1, -1, -1, 108, -1, 110, 36, 37, -1, 39, -1, -1, -1, 118, 772, -1, -1, -1, 250, 348, -1, -1, -1, 255, 353, 354, -1, -1, -1, -1, -1, -1, 361, -1, -1, 65, 268, -1, -1, -1, -1, 71, 274, -1, 276, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, 294, 93, -1, -1, -1, -1, -1, 827, -1, -1, -1, 831, -1, 404, 834, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, 422, -1, -1, -1, -1, 427, -1, 429, -1, -1, -1, -1, 337, -1, -1, -1, -1, 342, -1, -1, -1, -1, -1, -1, 446, -1, -1, 449, 450, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 465, -1, 370, -1, -1, -1, 374, 375, -1, 377, -1, -1, -1, -1, 479, -1, 384, 385, -1, 387, 388, 486, 390, -1, 392, -1, -1, -1, -1, -1, -1, 7, -1, 927, 10, 11, 12, 13, 14, -1, -1, 409, -1, -1, -1, -1, -1, -1, -1, 417, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 442, 969, -1, -1, -1, -1, -1, -1, -1, -1, -1, 453, -1, -1, -1, 65, 66, 985, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, 476, 85, 86, -1, -1, -1, 482, -1, -1, 93, -1, 487, -1, -1, -1, -1, -1, -1, 1020, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 602, -1, -1, -1, 117, 118, 119, 120, 121, 122, 1041, 1042, -1, -1, -1, -1, -1, -1, -1, 524, -1, -1, -1, -1, -1, -1, -1, -1, 630, 280, -1, 282, 283, 635, -1, 540, -1, -1, -1, 290, 291, -1, -1, -1, 295, 296, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 307, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, -1, 39, 1101, -1, 577, -1, -1, -1, -1, -1, -1, -1, -1, 586, -1, -1, -1, -1, -1, -1, 593, -1, -1, -1, 343, 598, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, 609, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, 723, -1, 93, -1, -1, -1, -1, 379, 1160, -1, -1, -1, -1, -1, 737, -1, -1, 108, -1, 110, -1, -1, -1, -1, 650, 116, 117, 118, 119, 120, 121, 122, -1, -1, 757, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1202, -1, -1, -1, -1, -1, -1, -1, -1, -1, 686, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, 1240, -1, -1, -1, -1, 38, -1, 818, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 831, -1, -1, -1, -1, -1, -1, 741, -1, -1, -1, -1, -1, 66, -1, -1, -1, 751, 752, 850, 73, 74, -1, -1, 77, -1, -1, -1, -1, 1289, 1290, 765, -1, -1, -1, -1, -1, -1, 1298, -1, -1, -1, -1, -1, -1, -1, -1, -1, 782, -1, 784, -1, -1, -1, 788, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, -1, 39, 937, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 599, 854, -1, -1, -1, -1, -1, -1, 861, -1, -1, -1, 65, 963, -1, -1, -1, -1, 71, -1, -1, 874, 75, 876, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, 1414, -1, 890, -1, -1, 93, 991, -1, -1, 897, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, 909, 110, -1, 912, -1, -1, 115, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, 1023, -1, -1, -1, 930, -1, -1, -1, -1, -1, -1, 1034, -1, -1, -1, -1, -1, -1, -1, -1, 1472, -1, 1474, -1, -1, -1, 698, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 720, -1, -1, -1, -1, -1, -1, -1, 38, 1509, -1, 1511, -1, 733, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 66, -1, -1, 1539, -1, -1, 38, -1, 1115, 1019, -1, 77, -1, -1, -1, 153, 154, -1, -1, -1, -1, -1, -1, 779, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, 77, -1, -1, -1, 187, 82, 83, -1, -1, -1, 811, 194, -1, -1, -1, -1, -1, -1, -1, -1, 1075, -1, -1, -1, -1, 826, -1, 1082, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 36, 37, -1, 39, -1, -1, -1, -1, 1202, -1, -1, -1, -1, -1, 1111, -1, -1, -1, -1, 1116, -1, -1, -1, -1, -1, -1, -1, 1124, -1, 65, -1, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, 266, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, 1155, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1167, -1, 108, 1170, 110, 1172, 112, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 1186, 1187, -1, -1, -1, -1, -1, -1, 322, -1, -1, -1, -1, -1, -1, 1298, 330, 331, -1, 333, 334, -1, 1208, -1, -1, -1, -1, -1, -1, 343, -1, -1, -1, 347, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 977, -1, -1, -1, 1235, 144, -1, 366, -1, -1, 369, -1, -1, -1, -1, 154, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 166, 167, -1, -1, 1008, -1, -1, -1, -1, -1, 396, -1, -1, -1, 400, -1, 1020, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 431, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, 1061, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 454, -1, -1, 237, -1, -1, 1332, -1, 1334, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, -1, 1347, -1, 1349, -1, -1, -1, -1, 262, -1, -1, 485, -1, -1, 488, -1, -1, -1, -1, -1, -1, 1367, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 110, -1, 1383, 1384, -1, -1, 1133, -1, 118, -1, -1, -1, -1, -1, 1395, -1, -1, 1398, -1, 528, -1, -1, 531, 532, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1420, -1, -1, -1, -1, -1, -1, -1, -1, 1429, -1, 1177, 1432, -1, 1434, 1435, 1436, -1, -1, -1, -1, -1, -1, -1, -1, 1191, 1192, -1, -1, 577, 578, -1, -1, -1, -1, -1, -1, 1554, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 596, 597, 378, 599, -1, -1, -1, -1, 1476, -1, 1478, -1, 608, 1481, 610, 611, -1, -1, -1, -1, -1, 617, -1, -1, -1, -1, -1, -1, 1496, -1, -1, 627, 628, -1, -1, -1, -1, 633, -1, -1, -1, -1, -1, -1, -1, -1, 642, 643, 644, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 661, -1, -1, -1, -1, 666, 667, -1, -1, 670, 671, -1, -1, -1, -1, -1, 677, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 695, 696, 697, -1, 699, 480, -1, -1, 703, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, 735, 736, -1, -1, 519, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 532, -1, -1, -1, -1, -1, -1, 539, -1, 66, 542, -1, -1, -1, -1, -1, 73, 74, -1, 771, 772, 553, 554, -1, 776, 777, -1, -1, -1, -1, -1, 1401, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 575, -1, -1, -1, -1, 1418, -1, -1, -1, -1, 585, -1, -1, -1, -1, -1, -1, 592, 118, -1, -1, -1, 597, 818, -1, -1, -1, -1, -1, -1, -1, -1, 827, -1, -1, -1, -1, -1, 833, 834, -1, -1, -1, 838, -1, 840, -1, -1, -1, -1, -1, -1, -1, -1, -1, 850, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 647, -1, -1, -1, -1, -1, 1491, 1492, -1, 656, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 696, -1, 38, 39, -1, -1, -1, 923, -1, -1, -1, -1, -1, -1, -1, 931, 36, 37, -1, 39, -1, 937, -1, -1, -1, -1, -1, 63, -1, 945, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, 958, 959, -1, 65, 82, 83, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 985, -1, -1, 108, 93, 110, 991, 772, -1, 774, -1, -1, -1, 118, -1, 780, -1, -1, -1, 108, -1, 110, 787, -1, 113, 1010, 1011, -1, 117, 118, 119, 120, 121, 122, -1, 1020, -1, -1, -1, -1, -1, 1026, 1027, -1, 1029, 1030, 1031, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1041, 1042, -1, -1, -1, -1, -1, -1, -1, -1, 831, 832, -1, 834, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 849, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1102, 1103, 1104, -1, -1, -1, -1, 889, -1, -1, -1, 893, -1, 1115, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, 40, -1, 42, 1160, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, 66, -1, 68, -1, 70, 71, 969, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, 985, 986, -1, -1, -1, 93, -1, 992, -1, -1, -1, 36, 37, 998, 39, 1220, 1001, -1, 1003, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, 1240, -1, -1, 1023, 127, 65, -1, -1, 131, -1, -1, 71, -1, -1, 1034, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, 1056, -1, 1058, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, 1289, 1290, -1, -1, 1073, 1074, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1094, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, -1, -1, 1141, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, -1, 39, -1, -1, 1160, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, 1175, 1176, 78, 79, 80, 81, 82, 83, 65, 85, 86, -1, -1, -1, 71, -1, -1, 93, 75, 1414, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 108, -1, 110, -1, 93, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 108, -1, 110, -1, 131, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1256, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1504, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1529, 1530, -1, -1, -1, -1, -1, -1, 1317, -1, 1319, -1, -1, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, 1554, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1405, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, -1, -1, 108, 1487, 110, -1, -1, 82, 83, 115, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, 1539, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, 38, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, 77, -1, -1, -1, 115, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 108, -1, 110, -1, -1, -1, -1, 115, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, 68, 38, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, -1, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 63, -1, -1, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, 114, -1, -1, -1, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, 33, 34, -1, -1, 66, 38, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 32, -1, -1, 35, -1, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, -1, -1, 77, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, 110, 35, -1, -1, 38, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 110, 38, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 108, -1, 110, -1, -1, -1, 38, -1, -1, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 66, -1, 29, 30, 31, 71, -1, 73, 74, 75, -1, 38, -1, -1, -1, -1, 82, 83, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, 108, 70, 110, -1, 73, 74, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 66, -1, 68, -1, 70, 38, -1, 73, 74, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, -1, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, 110, -1, -1, -1, -1, 82, 83, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 110, 29, 30, 31, -1, -1, -1, -1, 118, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, -1, -1, -1, -1, -1, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, 65, 66, -1, 38, -1, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, 75, -1, 77, 108, -1, 110, 111, 82, 83, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 110, -1, 29, 30, 31, -1, -1, -1, 118, 36, 37, 38, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 65, 66, -1, 38, -1, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, 66, -1, -1, -1, -1, 71, -1, 73, 74, -1, -1, -1, 108, 109, 110, -1, 82, 83, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 110, -1, 29, 30, 31, -1, -1, -1, 118, 36, 37, 38, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, 65, 66, -1, 38, 39, -1, 71, -1, 73, 74, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, 66, -1, -1, -1, -1, -1, -1, 73, 74, -1, -1, -1, 108, -1, 110, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 110, -1, 29, 30, 31, -1, -1, -1, 118, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 108, -1, 110, 73, 74, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 108, -1, 110, 36, 37, 38, 39, -1, -1, -1, 118, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 108, -1, 110, 73, 74, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 108, -1, 110, 36, 37, 38, 39, -1, -1, -1, 118, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 65, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, 39, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, 108, -1, 110, 73, 74, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 110, 29, 30, 31, 114, -1, -1, -1, 118, -1, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 66, 38, 68, -1, 70, -1, -1, 73, 74, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, 71, -1, 73, 74, 75, 38, -1, -1, -1, -1, -1, 82, 83, 113, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, 108, 71, 110, 73, 74, 75, 38, -1, -1, -1, 118, -1, 82, 83, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, 108, -1, 110, 73, 74, -1, 38, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 66, -1, -1, -1, -1, 38, 110, 73, 74, -1, -1, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, -1, 73, 74, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, 110, 73, 74, -1, 38, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 66, -1, -1, -1, -1, 38, 110, 73, 74, -1, -1, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, -1, 73, 74, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, 110, 73, 74, -1, 38, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 66, -1, -1, -1, -1, 38, 110, 73, 74, -1, -1, -1, -1, -1, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 66, 29, 30, 31, -1, -1, -1, 73, 74, -1, 38, 110, -1, -1, -1, -1, -1, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 110, 73, 74, -1, -1, -1, -1, -1, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 110, -1, -1, -1, -1, 38, -1, -1, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 36, 37, -1, 39, 40, -1, 42, -1, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, 55, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, 109, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, 36, 37, 131, 39, 40, -1, 42, -1, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, 36, 37, 131, 39, 40, -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, 55, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 36, 37, 127, 39, 40, -1, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 36, 37, 127, 39, 40, -1, 42, -1, -1, 45, 46, 47, 48, 49, 50, 51, 52, -1, -1, -1, 56, -1, -1, -1, 60, 61, -1, 63, -1, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, 110, -1, -1, 113, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, 36, 37, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, -1, 39, -1, -1, -1, 66, -1, 68, 65, 70, -1, -1, 73, 74, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, 65, 85, 86, -1, -1, -1, 71, 95, -1, 93, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 108, -1, 110, -1, 93, 36, 37, -1, 39, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 108, -1, 110, -1, -1, 36, 37, -1, 39, 117, 118, 119, 120, 121, 122, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, 65, 85, 86, -1, -1, -1, 71, -1, -1, 93, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, 108, -1, 110, -1, 93, 36, 37, -1, 39, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 65, -1, -1, -1, -1, -1, 71, -1, -1, -1, 75, -1, -1, 78, 79, 80, 81, 82, 83, -1, 85, 86, -1, -1, -1, -1, -1, -1, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 108, -1, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, 71, -1, 73, 74, 75, -1, -1, -1, -1, -1, -1, 82, 83, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, 68, -1, 70, -1, -1, 73, 74 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 35, 38, 39, 63, 66, 68, 70, 71, 73, 74, 75, 82, 83, 108, 110, 118, 136, 139, 196, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 229, 230, 231, 232, 233, 234, 235, 236, 238, 239, 240, 241, 242, 243, 244, 252, 253, 279, 280, 281, 289, 292, 298, 299, 301, 303, 304, 310, 315, 319, 320, 321, 322, 323, 324, 325, 326, 346, 363, 364, 365, 366, 71, 118, 138, 139, 213, 215, 223, 225, 235, 239, 241, 280, 81, 108, 308, 309, 310, 308, 308, 71, 73, 74, 75, 137, 138, 269, 270, 290, 291, 73, 74, 270, 108, 301, 11, 197, 108, 118, 315, 320, 321, 322, 324, 325, 326, 111, 133, 110, 216, 223, 225, 319, 323, 362, 363, 366, 367, 134, 106, 130, 273, 113, 134, 171, 73, 74, 136, 268, 134, 134, 134, 115, 134, 73, 74, 108, 118, 305, 314, 315, 316, 317, 318, 319, 323, 327, 328, 329, 330, 331, 337, 3, 27, 77, 237, 3, 5, 73, 110, 118, 215, 226, 230, 233, 242, 281, 319, 323, 366, 213, 215, 225, 235, 239, 241, 280, 319, 323, 32, 231, 231, 226, 233, 134, 231, 226, 231, 226, 74, 108, 113, 270, 281, 113, 270, 231, 226, 115, 134, 134, 0, 133, 108, 171, 308, 308, 133, 110, 223, 225, 364, 268, 268, 225, 130, 108, 118, 305, 315, 319, 110, 118, 366, 302, 228, 310, 108, 286, 108, 108, 50, 108, 36, 37, 39, 65, 71, 75, 78, 79, 80, 81, 85, 86, 93, 108, 110, 117, 118, 119, 120, 121, 122, 135, 139, 140, 141, 142, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 162, 164, 223, 272, 288, 362, 367, 225, 109, 109, 109, 109, 109, 109, 109, 73, 74, 110, 223, 268, 346, 364, 110, 118, 162, 215, 216, 222, 225, 229, 230, 235, 238, 239, 241, 258, 259, 263, 264, 265, 266, 280, 346, 358, 359, 360, 361, 366, 367, 111, 108, 319, 323, 366, 108, 115, 131, 110, 113, 118, 162, 274, 274, 114, 133, 115, 131, 108, 115, 131, 115, 131, 115, 131, 308, 131, 315, 316, 317, 318, 328, 329, 330, 331, 225, 314, 327, 63, 307, 110, 308, 345, 346, 308, 308, 171, 133, 108, 308, 345, 308, 308, 225, 305, 108, 108, 224, 225, 223, 225, 111, 133, 223, 362, 367, 171, 133, 268, 273, 215, 230, 319, 323, 171, 133, 290, 225, 235, 131, 225, 225, 288, 39, 110, 223, 245, 246, 247, 248, 362, 366, 113, 254, 270, 113, 225, 290, 131, 131, 301, 133, 138, 267, 3, 134, 205, 206, 220, 222, 225, 133, 307, 108, 307, 162, 315, 225, 108, 133, 268, 113, 32, 33, 34, 223, 282, 283, 285, 133, 128, 130, 287, 133, 226, 232, 233, 268, 311, 312, 313, 108, 140, 108, 147, 108, 147, 149, 108, 147, 108, 108, 147, 147, 138, 110, 162, 167, 171, 223, 271, 362, 111, 133, 149, 149, 81, 84, 85, 86, 108, 110, 112, 113, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 130, 166, 149, 118, 123, 124, 120, 121, 87, 88, 89, 90, 125, 126, 91, 92, 119, 127, 128, 93, 94, 129, 130, 369, 108, 118, 341, 342, 343, 344, 345, 109, 115, 108, 345, 346, 108, 345, 346, 133, 108, 223, 364, 111, 133, 110, 118, 134, 223, 225, 357, 358, 366, 367, 134, 108, 110, 118, 315, 332, 333, 334, 335, 336, 337, 338, 339, 340, 346, 347, 348, 349, 350, 351, 352, 118, 366, 225, 134, 134, 118, 223, 225, 359, 268, 223, 346, 359, 268, 108, 133, 133, 133, 111, 133, 71, 79, 110, 112, 139, 270, 274, 275, 276, 277, 278, 133, 133, 133, 133, 133, 133, 305, 109, 109, 109, 109, 109, 109, 109, 314, 327, 108, 273, 111, 205, 133, 305, 167, 272, 167, 272, 305, 110, 205, 307, 171, 133, 205, 109, 247, 248, 111, 133, 108, 116, 118, 249, 251, 314, 315, 327, 345, 353, 354, 355, 356, 114, 246, 115, 131, 115, 131, 270, 245, 115, 368, 130, 255, 254, 225, 260, 261, 262, 265, 266, 109, 115, 171, 133, 118, 162, 133, 222, 225, 259, 358, 366, 299, 300, 108, 118, 332, 109, 115, 369, 270, 282, 108, 113, 270, 272, 282, 109, 115, 108, 140, 109, 116, 271, 271, 271, 110, 138, 144, 162, 272, 271, 111, 133, 109, 115, 109, 108, 118, 353, 109, 115, 162, 110, 138, 110, 143, 144, 133, 110, 138, 143, 162, 162, 149, 149, 149, 150, 150, 151, 151, 152, 152, 152, 152, 153, 153, 154, 155, 156, 157, 158, 116, 167, 162, 133, 342, 343, 344, 225, 341, 308, 308, 162, 272, 133, 267, 118, 133, 223, 346, 359, 225, 229, 111, 133, 111, 366, 111, 108, 133, 315, 333, 334, 335, 338, 348, 349, 350, 111, 133, 225, 332, 336, 347, 108, 308, 351, 369, 308, 308, 369, 108, 308, 351, 308, 308, 308, 308, 346, 223, 357, 367, 268, 111, 115, 111, 115, 369, 223, 359, 369, 256, 257, 258, 259, 256, 256, 268, 162, 133, 110, 270, 116, 115, 368, 274, 79, 110, 116, 278, 28, 207, 208, 268, 256, 138, 305, 138, 307, 108, 345, 346, 108, 345, 346, 140, 346, 171, 260, 109, 109, 109, 109, 111, 171, 205, 171, 113, 131, 131, 110, 315, 354, 355, 356, 160, 161, 225, 353, 250, 251, 250, 308, 308, 270, 308, 114, 270, 114, 161, 368, 134, 134, 138, 220, 134, 134, 256, 108, 118, 366, 134, 114, 225, 283, 284, 134, 133, 133, 108, 134, 109, 312, 167, 168, 116, 131, 110, 140, 198, 199, 200, 109, 115, 109, 133, 116, 109, 109, 109, 162, 225, 113, 149, 164, 162, 163, 165, 115, 134, 133, 133, 109, 115, 162, 133, 114, 160, 116, 260, 109, 109, 109, 341, 260, 109, 256, 223, 359, 110, 118, 162, 162, 225, 338, 260, 109, 109, 109, 109, 109, 109, 109, 7, 225, 332, 336, 347, 133, 133, 369, 133, 133, 109, 134, 134, 134, 134, 273, 134, 160, 161, 162, 306, 133, 274, 276, 114, 133, 209, 270, 39, 40, 42, 45, 46, 47, 48, 49, 50, 51, 52, 56, 60, 61, 110, 127, 138, 168, 169, 170, 171, 172, 173, 175, 176, 188, 190, 191, 196, 210, 304, 28, 134, 130, 273, 133, 133, 109, 134, 171, 245, 111, 109, 109, 109, 353, 249, 255, 114, 109, 115, 111, 111, 134, 225, 115, 369, 286, 109, 282, 213, 215, 223, 294, 295, 296, 297, 288, 109, 109, 116, 161, 108, 109, 116, 115, 138, 162, 162, 275, 115, 134, 165, 111, 138, 145, 146, 162, 144, 134, 145, 160, 164, 134, 108, 345, 346, 134, 134, 133, 134, 134, 134, 162, 109, 134, 108, 345, 346, 108, 351, 108, 351, 346, 224, 7, 118, 134, 162, 260, 260, 259, 263, 263, 264, 115, 115, 109, 109, 111, 95, 122, 134, 134, 145, 274, 162, 115, 131, 210, 214, 225, 229, 108, 108, 169, 108, 108, 131, 138, 131, 138, 118, 138, 168, 108, 171, 163, 163, 111, 142, 116, 131, 134, 133, 134, 209, 109, 162, 260, 260, 308, 109, 114, 108, 345, 346, 133, 109, 133, 134, 305, 114, 133, 134, 134, 109, 113, 198, 111, 161, 131, 198, 200, 109, 115, 134, 368, 163, 111, 134, 84, 112, 115, 134, 134, 111, 134, 109, 133, 109, 109, 111, 111, 111, 134, 109, 133, 133, 133, 162, 162, 134, 111, 134, 134, 134, 134, 133, 133, 161, 161, 111, 111, 134, 134, 270, 225, 167, 167, 46, 167, 133, 131, 131, 167, 131, 131, 167, 57, 58, 59, 192, 193, 194, 131, 62, 131, 113, 308, 173, 114, 131, 134, 134, 133, 95, 265, 266, 109, 295, 115, 131, 115, 131, 114, 293, 116, 140, 109, 109, 116, 165, 111, 114, 111, 110, 146, 110, 146, 146, 111, 111, 111, 260, 111, 260, 260, 260, 134, 134, 111, 111, 109, 109, 111, 115, 95, 259, 95, 134, 111, 111, 109, 109, 108, 109, 168, 189, 210, 131, 109, 108, 108, 171, 194, 57, 58, 162, 143, 169, 109, 109, 260, 113, 133, 133, 294, 140, 201, 108, 131, 201, 134, 116, 133, 133, 134, 134, 134, 134, 111, 111, 133, 134, 111, 169, 43, 44, 113, 179, 180, 181, 167, 169, 134, 109, 168, 113, 181, 95, 133, 95, 133, 108, 108, 131, 114, 134, 133, 268, 305, 114, 115, 116, 161, 109, 111, 162, 145, 145, 109, 109, 109, 109, 263, 41, 161, 177, 178, 306, 116, 133, 169, 179, 109, 131, 169, 131, 133, 109, 133, 109, 133, 95, 133, 95, 133, 131, 109, 294, 140, 138, 202, 109, 131, 116, 134, 134, 169, 95, 115, 116, 134, 203, 204, 210, 131, 168, 168, 203, 171, 195, 223, 362, 171, 195, 109, 133, 109, 133, 114, 109, 115, 162, 111, 111, 161, 177, 180, 182, 183, 133, 131, 180, 184, 185, 134, 108, 118, 305, 353, 138, 134, 171, 195, 171, 195, 108, 131, 138, 169, 174, 114, 180, 210, 168, 55, 174, 187, 114, 180, 109, 225, 109, 134, 134, 288, 169, 174, 131, 186, 187, 174, 187, 171, 171, 109, 109, 109, 186, 134, 134, 171, 171, 134, 134 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (YYLEX_PARAM) #else # define YYLEX yylex () #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule) #else static void yy_reduce_print (yyvsp, yyrule) YYSTYPE *yyvsp; int yyrule; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #else static void yydestruct (yymsg, yytype, yyvaluep) const char *yymsg; int yytype; YYSTYPE *yyvaluep; #endif { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void) #else int yyparse () #endif #endif { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 290 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 296 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 305 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 306 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 332 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 333 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 340 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 20: /* Line 1806 of yacc.c */ #line 344 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 23: /* Line 1806 of yacc.c */ #line 356 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Index ), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ); } break; case 24: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 25: /* Line 1806 of yacc.c */ #line 362 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 27: /* Line 1806 of yacc.c */ #line 365 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 29: /* Line 1806 of yacc.c */ #line 368 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); } break; case 30: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); } break; case 31: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { (yyval.en) = 0; } break; case 32: /* Line 1806 of yacc.c */ #line 374 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_link( (yyvsp[(3) - (4)].en) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 383 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 388 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 391 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 38: /* Line 1806 of yacc.c */ #line 396 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 398 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_argName( new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (9)].en)->set_link( flattenCommas( (yyvsp[(5) - (9)].en) )))); } break; case 41: /* Line 1806 of yacc.c */ #line 403 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 408 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 412 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 44: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 46: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 48: /* Line 1806 of yacc.c */ #line 426 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 50: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); } break; case 51: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); } break; case 52: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 53: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 54: /* Line 1806 of yacc.c */ #line 438 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neg ), (yyvsp[(2) - (2)].en) ); } break; case 55: /* Line 1806 of yacc.c */ #line 440 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PointTo ), (yyvsp[(2) - (2)].en) ); } break; case 56: /* Line 1806 of yacc.c */ #line 446 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); } break; case 57: /* Line 1806 of yacc.c */ #line 448 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 58: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::OffsetOf ), new TypeValueNode( (yyvsp[(3) - (6)].decl) ), new VarRefNode( (yyvsp[(5) - (6)].tok) )); } break; case 59: /* Line 1806 of yacc.c */ #line 452 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (1)].tok) )); } break; case 60: /* Line 1806 of yacc.c */ #line 454 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 61: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ); } break; case 62: /* Line 1806 of yacc.c */ #line 458 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); } break; case 63: /* Line 1806 of yacc.c */ #line 460 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 462 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LabelAddress ), new VarRefNode( (yyvsp[(2) - (2)].tok), true ) ); } break; case 65: /* Line 1806 of yacc.c */ #line 466 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); } break; case 66: /* Line 1806 of yacc.c */ #line 467 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 67: /* Line 1806 of yacc.c */ #line 468 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 68: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 70: /* Line 1806 of yacc.c */ #line 475 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 71: /* Line 1806 of yacc.c */ #line 477 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 73: /* Line 1806 of yacc.c */ #line 483 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mul ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 74: /* Line 1806 of yacc.c */ #line 485 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Div ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 75: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mod ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 77: /* Line 1806 of yacc.c */ #line 493 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Plus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 78: /* Line 1806 of yacc.c */ #line 495 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Minus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 80: /* Line 1806 of yacc.c */ #line 501 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 81: /* Line 1806 of yacc.c */ #line 503 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::RShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 83: /* Line 1806 of yacc.c */ #line 509 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 84: /* Line 1806 of yacc.c */ #line 511 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 85: /* Line 1806 of yacc.c */ #line 513 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 86: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 88: /* Line 1806 of yacc.c */ #line 521 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Eq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 89: /* Line 1806 of yacc.c */ #line 523 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 91: /* Line 1806 of yacc.c */ #line 529 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::BitAnd ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 93: /* Line 1806 of yacc.c */ #line 535 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Xor ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 95: /* Line 1806 of yacc.c */ #line 541 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::BitOr ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 97: /* Line 1806 of yacc.c */ #line 547 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::And ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 99: /* Line 1806 of yacc.c */ #line 553 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Or ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 101: /* Line 1806 of yacc.c */ #line 559 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); } break; case 102: /* Line 1806 of yacc.c */ #line 561 "parser.yy" { (yyval.en)=new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 103: /* Line 1806 of yacc.c */ #line 563 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); } break; case 106: /* Line 1806 of yacc.c */ #line 574 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 107: /* Line 1806 of yacc.c */ #line 576 "parser.yy" { (yyval.en) =new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 108: /* Line 1806 of yacc.c */ #line 578 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 109: /* Line 1806 of yacc.c */ #line 583 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 111: /* Line 1806 of yacc.c */ #line 591 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 112: /* Line 1806 of yacc.c */ #line 593 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 113: /* Line 1806 of yacc.c */ #line 595 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 114: /* Line 1806 of yacc.c */ #line 597 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 116: /* Line 1806 of yacc.c */ #line 603 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 117: /* Line 1806 of yacc.c */ #line 607 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 118: /* Line 1806 of yacc.c */ #line 608 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 119: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 124: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 125: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 126: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 128: /* Line 1806 of yacc.c */ #line 622 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Comma ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 129: /* Line 1806 of yacc.c */ #line 627 "parser.yy" { (yyval.en) = 0; } break; case 133: /* Line 1806 of yacc.c */ #line 636 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 139: /* Line 1806 of yacc.c */ #line 643 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)(new CompositeExprNode( new OperatorNode( OperatorNode::AddressOf ), (yyvsp[(2) - (6)].en) ))->set_link( (yyvsp[(4) - (6)].en) ) ), 0 ); } break; case 140: /* Line 1806 of yacc.c */ #line 652 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 141: /* Line 1806 of yacc.c */ #line 659 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 142: /* Line 1806 of yacc.c */ #line 666 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 144: /* Line 1806 of yacc.c */ #line 672 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 145: /* Line 1806 of yacc.c */ #line 677 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 679 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 147: /* Line 1806 of yacc.c */ #line 681 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 150: /* Line 1806 of yacc.c */ #line 688 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 151: /* Line 1806 of yacc.c */ #line 693 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 152: /* Line 1806 of yacc.c */ #line 699 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 153: /* Line 1806 of yacc.c */ #line 701 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 154: /* Line 1806 of yacc.c */ #line 703 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 155: /* Line 1806 of yacc.c */ #line 705 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); /* xxx */ } break; case 156: /* Line 1806 of yacc.c */ #line 710 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 157: /* Line 1806 of yacc.c */ #line 712 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); } break; case 158: /* Line 1806 of yacc.c */ #line 719 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 159: /* Line 1806 of yacc.c */ #line 721 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 162: /* Line 1806 of yacc.c */ #line 728 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents( (yyvsp[(1) - (3)].en) ))->set_link( (yyvsp[(3) - (3)].en) ) ); } break; case 163: /* Line 1806 of yacc.c */ #line 732 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); } break; case 164: /* Line 1806 of yacc.c */ #line 733 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 166: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 167: /* Line 1806 of yacc.c */ #line 743 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 168: /* Line 1806 of yacc.c */ #line 748 "parser.yy" { (yyval.sn) = 0; } break; case 170: /* Line 1806 of yacc.c */ #line 754 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 171: /* Line 1806 of yacc.c */ #line 756 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 172: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = 0; } break; case 174: /* Line 1806 of yacc.c */ #line 767 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 175: /* Line 1806 of yacc.c */ #line 769 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn) ))); } break; case 176: /* Line 1806 of yacc.c */ #line 771 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 177: /* Line 1806 of yacc.c */ #line 773 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_link( (yyvsp[(2) - (4)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(3) - (4)].sn),*(yyvsp[(4) - (4)].sn) ))))); } break; case 178: /* Line 1806 of yacc.c */ #line 778 "parser.yy" { (yyval.sn) = 0; } break; case 180: /* Line 1806 of yacc.c */ #line 783 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 181: /* Line 1806 of yacc.c */ #line 784 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 182: /* Line 1806 of yacc.c */ #line 789 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 183: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 184: /* Line 1806 of yacc.c */ #line 793 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 185: /* Line 1806 of yacc.c */ #line 798 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 186: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 187: /* Line 1806 of yacc.c */ #line 805 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 188: /* Line 1806 of yacc.c */ #line 809 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 189: /* Line 1806 of yacc.c */ #line 812 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 190: /* Line 1806 of yacc.c */ #line 816 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 191: /* Line 1806 of yacc.c */ #line 819 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 192: /* Line 1806 of yacc.c */ #line 823 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 193: /* Line 1806 of yacc.c */ #line 825 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 194: /* Line 1806 of yacc.c */ #line 827 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 195: /* Line 1806 of yacc.c */ #line 831 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 196: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 197: /* Line 1806 of yacc.c */ #line 840 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 198: /* Line 1806 of yacc.c */ #line 842 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 199: /* Line 1806 of yacc.c */ #line 844 "parser.yy" { (yyvsp[(3) - (4)].pn)->set_link( (yyvsp[(4) - (4)].pn) ); (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (4)].sn),*(yyvsp[(3) - (4)].pn) )))); } break; case 201: /* Line 1806 of yacc.c */ #line 855 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 202: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 859 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 204: /* Line 1806 of yacc.c */ #line 861 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 206: /* Line 1806 of yacc.c */ #line 868 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 870 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 208: /* Line 1806 of yacc.c */ #line 872 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 877 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 211: /* Line 1806 of yacc.c */ #line 891 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 212: /* Line 1806 of yacc.c */ #line 896 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 213: /* Line 1806 of yacc.c */ #line 898 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 215: /* Line 1806 of yacc.c */ #line 907 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 216: /* Line 1806 of yacc.c */ #line 909 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 217: /* Line 1806 of yacc.c */ #line 911 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ); } break; case 218: /* Line 1806 of yacc.c */ #line 913 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].constant) ); } break; case 219: /* Line 1806 of yacc.c */ #line 915 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].constant), (yyvsp[(12) - (14)].label) ); } break; case 220: /* Line 1806 of yacc.c */ #line 920 "parser.yy" { (yyval.flag) = false; } break; case 221: /* Line 1806 of yacc.c */ #line 922 "parser.yy" { (yyval.flag) = true; } break; case 222: /* Line 1806 of yacc.c */ #line 927 "parser.yy" { (yyval.en) = 0; } break; case 225: /* Line 1806 of yacc.c */ #line 934 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 226: /* Line 1806 of yacc.c */ #line 939 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 227: /* Line 1806 of yacc.c */ #line 941 "parser.yy" { (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); } break; case 228: /* Line 1806 of yacc.c */ #line 946 "parser.yy" { (yyval.constant) = 0; } break; case 229: /* Line 1806 of yacc.c */ #line 948 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 230: /* Line 1806 of yacc.c */ #line 950 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 231: /* Line 1806 of yacc.c */ #line 955 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 232: /* Line 1806 of yacc.c */ #line 957 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 233: /* Line 1806 of yacc.c */ #line 964 "parser.yy" { (yyval.decl) = 0; } break; case 236: /* Line 1806 of yacc.c */ #line 971 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 237: /* Line 1806 of yacc.c */ #line 976 "parser.yy" { (yyval.decl) = 0; } break; case 240: /* Line 1806 of yacc.c */ #line 983 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 245: /* Line 1806 of yacc.c */ #line 997 "parser.yy" {} break; case 246: /* Line 1806 of yacc.c */ #line 998 "parser.yy" {} break; case 254: /* Line 1806 of yacc.c */ #line 1027 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl); } break; case 255: /* Line 1806 of yacc.c */ #line 1034 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 256: /* Line 1806 of yacc.c */ #line 1039 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) ) ); } break; case 257: /* Line 1806 of yacc.c */ #line 1049 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 258: /* Line 1806 of yacc.c */ #line 1054 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1059 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) ); (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1067 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 261: /* Line 1806 of yacc.c */ #line 1072 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1077 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 263: /* Line 1806 of yacc.c */ #line 1082 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1087 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1095 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 266: /* Line 1806 of yacc.c */ #line 1118 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 267: /* Line 1806 of yacc.c */ #line 1122 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 268: /* Line 1806 of yacc.c */ #line 1129 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1133 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 270: /* Line 1806 of yacc.c */ #line 1138 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 271: /* Line 1806 of yacc.c */ #line 1143 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 272: /* Line 1806 of yacc.c */ #line 1148 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 273: /* Line 1806 of yacc.c */ #line 1159 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 274: /* Line 1806 of yacc.c */ #line 1164 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) )->addTypedef() ); } break; case 275: /* Line 1806 of yacc.c */ #line 1169 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addType( (yyvsp[(3) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1174 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 277: /* Line 1806 of yacc.c */ #line 1179 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef()->addType( (yyvsp[(1) - (4)].decl) ); } break; case 278: /* Line 1806 of yacc.c */ #line 1188 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 279: /* Line 1806 of yacc.c */ #line 1193 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 284: /* Line 1806 of yacc.c */ #line 1210 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 285: /* Line 1806 of yacc.c */ #line 1215 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneBaseType( (yyvsp[(4) - (6)].decl)->addInitializer( (yyvsp[(6) - (6)].in) ) ) ); } break; case 294: /* Line 1806 of yacc.c */ #line 1237 "parser.yy" { (yyval.decl) = 0; } break; case 297: /* Line 1806 of yacc.c */ #line 1249 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 300: /* Line 1806 of yacc.c */ #line 1260 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 301: /* Line 1806 of yacc.c */ #line 1262 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 302: /* Line 1806 of yacc.c */ #line 1264 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 303: /* Line 1806 of yacc.c */ #line 1266 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 304: /* Line 1806 of yacc.c */ #line 1268 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 305: /* Line 1806 of yacc.c */ #line 1270 "parser.yy" { typedefTable.enterScope(); } break; case 306: /* Line 1806 of yacc.c */ #line 1274 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 308: /* Line 1806 of yacc.c */ #line 1283 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1285 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 311: /* Line 1806 of yacc.c */ #line 1296 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1305 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 314: /* Line 1806 of yacc.c */ #line 1307 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 315: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 316: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 317: /* Line 1806 of yacc.c */ #line 1313 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 318: /* Line 1806 of yacc.c */ #line 1315 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 319: /* Line 1806 of yacc.c */ #line 1317 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 320: /* Line 1806 of yacc.c */ #line 1319 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 321: /* Line 1806 of yacc.c */ #line 1324 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 322: /* Line 1806 of yacc.c */ #line 1326 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 323: /* Line 1806 of yacc.c */ #line 1328 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 324: /* Line 1806 of yacc.c */ #line 1330 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 325: /* Line 1806 of yacc.c */ #line 1332 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 326: /* Line 1806 of yacc.c */ #line 1334 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 327: /* Line 1806 of yacc.c */ #line 1336 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 328: /* Line 1806 of yacc.c */ #line 1338 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 329: /* Line 1806 of yacc.c */ #line 1340 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 330: /* Line 1806 of yacc.c */ #line 1342 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 331: /* Line 1806 of yacc.c */ #line 1344 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 332: /* Line 1806 of yacc.c */ #line 1346 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 334: /* Line 1806 of yacc.c */ #line 1353 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 335: /* Line 1806 of yacc.c */ #line 1355 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 336: /* Line 1806 of yacc.c */ #line 1357 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1359 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1365 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1374 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 345: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1393 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1395 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1397 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1403 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1405 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1413 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1415 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1420 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1422 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1424 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1434 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1436 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); } break; case 366: /* Line 1806 of yacc.c */ #line 1438 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), (yyvsp[(2) - (5)].tok), 0, (yyvsp[(4) - (5)].decl) ); } break; case 367: /* Line 1806 of yacc.c */ #line 1440 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); } break; case 368: /* Line 1806 of yacc.c */ #line 1442 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 369: /* Line 1806 of yacc.c */ #line 1447 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 370: /* Line 1806 of yacc.c */ #line 1449 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 371: /* Line 1806 of yacc.c */ #line 1454 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 372: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 374: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 376: /* Line 1806 of yacc.c */ #line 1465 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 378: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 379: /* Line 1806 of yacc.c */ #line 1473 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1475 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1480 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1482 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1487 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 384: /* Line 1806 of yacc.c */ #line 1489 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1492 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1501 "parser.yy" { (yyval.en) = 0; } break; case 389: /* Line 1806 of yacc.c */ #line 1503 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 390: /* Line 1806 of yacc.c */ #line 1508 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 392: /* Line 1806 of yacc.c */ #line 1517 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1519 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 394: /* Line 1806 of yacc.c */ #line 1521 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 395: /* Line 1806 of yacc.c */ #line 1526 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1528 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 397: /* Line 1806 of yacc.c */ #line 1533 "parser.yy" { (yyval.en) = 0; } break; case 398: /* Line 1806 of yacc.c */ #line 1535 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 399: /* Line 1806 of yacc.c */ #line 1542 "parser.yy" { (yyval.decl) = 0; } break; case 403: /* Line 1806 of yacc.c */ #line 1550 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 404: /* Line 1806 of yacc.c */ #line 1552 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 405: /* Line 1806 of yacc.c */ #line 1554 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 407: /* Line 1806 of yacc.c */ #line 1562 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1564 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 409: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 411: /* Line 1806 of yacc.c */ #line 1572 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1577 "parser.yy" { (yyval.decl) = 0; } break; case 415: /* Line 1806 of yacc.c */ #line 1584 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 418: /* Line 1806 of yacc.c */ #line 1591 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1593 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 421: /* Line 1806 of yacc.c */ #line 1602 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1605 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 423: /* Line 1806 of yacc.c */ #line 1607 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 428: /* Line 1806 of yacc.c */ #line 1617 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 430: /* Line 1806 of yacc.c */ #line 1623 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 431: /* Line 1806 of yacc.c */ #line 1628 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 433: /* Line 1806 of yacc.c */ #line 1637 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1646 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 435: /* Line 1806 of yacc.c */ #line 1648 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 447: /* Line 1806 of yacc.c */ #line 1673 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1681 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 452: /* Line 1806 of yacc.c */ #line 1686 "parser.yy" { (yyval.in) = 0; } break; case 453: /* Line 1806 of yacc.c */ #line 1688 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 454: /* Line 1806 of yacc.c */ #line 1690 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 455: /* Line 1806 of yacc.c */ #line 1694 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1695 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 457: /* Line 1806 of yacc.c */ #line 1700 "parser.yy" { (yyval.in) = 0; } break; case 459: /* Line 1806 of yacc.c */ #line 1702 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1703 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 461: /* Line 1806 of yacc.c */ #line 1705 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1727 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 466: /* Line 1806 of yacc.c */ #line 1735 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1737 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 468: /* Line 1806 of yacc.c */ #line 1740 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 469: /* Line 1806 of yacc.c */ #line 1742 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 470: /* Line 1806 of yacc.c */ #line 1744 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ), true ); } break; case 471: /* Line 1806 of yacc.c */ #line 1746 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1770 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1772 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1774 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1780 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1782 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 479: /* Line 1806 of yacc.c */ #line 1787 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1793 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1798 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 483: /* Line 1806 of yacc.c */ #line 1800 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1806 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 486: /* Line 1806 of yacc.c */ #line 1808 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 487: /* Line 1806 of yacc.c */ #line 1810 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 488: /* Line 1806 of yacc.c */ #line 1815 "parser.yy" { (yyval.decl) = 0; } break; case 489: /* Line 1806 of yacc.c */ #line 1817 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 490: /* Line 1806 of yacc.c */ #line 1822 "parser.yy" { typedefTable.openContext( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newContextUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 491: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 492: /* Line 1806 of yacc.c */ #line 1829 "parser.yy" { (yyval.decl) = 0; } break; case 493: /* Line 1806 of yacc.c */ #line 1834 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 495: /* Line 1806 of yacc.c */ #line 1837 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 496: /* Line 1806 of yacc.c */ #line 1839 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 497: /* Line 1806 of yacc.c */ #line 1844 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 498: /* Line 1806 of yacc.c */ #line 1846 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1848 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1853 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 501: /* Line 1806 of yacc.c */ #line 1855 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1860 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 503: /* Line 1806 of yacc.c */ #line 1865 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1873 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 505: /* Line 1806 of yacc.c */ #line 1878 "parser.yy" { typedefTable.enterContext( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 506: /* Line 1806 of yacc.c */ #line 1883 "parser.yy" { typedefTable.leaveContext(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 508: /* Line 1806 of yacc.c */ #line 1893 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 511: /* Line 1806 of yacc.c */ #line 1903 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 512: /* Line 1806 of yacc.c */ #line 1908 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 513: /* Line 1806 of yacc.c */ #line 1913 "parser.yy" { typedefTable.addToEnclosingScope2( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1921 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 515: /* Line 1806 of yacc.c */ #line 1926 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 516: /* Line 1806 of yacc.c */ #line 1936 "parser.yy" {} break; case 517: /* Line 1806 of yacc.c */ #line 1938 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 519: /* Line 1806 of yacc.c */ #line 1950 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 520: /* Line 1806 of yacc.c */ #line 1955 "parser.yy" { (yyval.decl) = 0; } break; case 524: /* Line 1806 of yacc.c */ #line 1963 "parser.yy" {} break; case 525: /* Line 1806 of yacc.c */ #line 1965 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 526: /* Line 1806 of yacc.c */ #line 1970 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 527: /* Line 1806 of yacc.c */ #line 1976 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 529: /* Line 1806 of yacc.c */ #line 1986 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 530: /* Line 1806 of yacc.c */ #line 1992 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (4)].decl)->addOldDeclList( (yyvsp[(3) - (4)].decl) )->addFunctionBody( (yyvsp[(4) - (4)].sn) ); } break; case 531: /* Line 1806 of yacc.c */ #line 2001 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 532: /* Line 1806 of yacc.c */ #line 2007 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 533: /* Line 1806 of yacc.c */ #line 2013 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 534: /* Line 1806 of yacc.c */ #line 2019 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addFunctionBody( (yyvsp[(3) - (3)].sn) )->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 535: /* Line 1806 of yacc.c */ #line 2025 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (4)].decl)->addFunctionBody( (yyvsp[(4) - (4)].sn) )->addQualifiers( (yyvsp[(2) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 536: /* Line 1806 of yacc.c */ #line 2033 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addType( (yyvsp[(1) - (5)].decl) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2039 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 538: /* Line 1806 of yacc.c */ #line 2047 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addQualifiers( (yyvsp[(1) - (5)].decl) ); } break; case 539: /* Line 1806 of yacc.c */ #line 2053 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(3) - (6)].decl)->addOldDeclList( (yyvsp[(5) - (6)].decl) )->addFunctionBody( (yyvsp[(6) - (6)].sn) )->addQualifiers( (yyvsp[(2) - (6)].decl) )->addQualifiers( (yyvsp[(1) - (6)].decl) ); } break; case 543: /* Line 1806 of yacc.c */ #line 2068 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 546: /* Line 1806 of yacc.c */ #line 2078 "parser.yy" { (yyval.decl) = 0; } break; case 549: /* Line 1806 of yacc.c */ #line 2085 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 550: /* Line 1806 of yacc.c */ #line 2091 "parser.yy" { (yyval.decl) = 0; } break; case 556: /* Line 1806 of yacc.c */ #line 2106 "parser.yy" {} break; case 557: /* Line 1806 of yacc.c */ #line 2107 "parser.yy" {} break; case 558: /* Line 1806 of yacc.c */ #line 2108 "parser.yy" {} break; case 559: /* Line 1806 of yacc.c */ #line 2109 "parser.yy" {} break; case 560: /* Line 1806 of yacc.c */ #line 2144 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 562: /* Line 1806 of yacc.c */ #line 2147 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2149 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 564: /* Line 1806 of yacc.c */ #line 2154 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2159 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 566: /* Line 1806 of yacc.c */ #line 2164 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2166 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2168 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 569: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2175 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2177 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2179 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 573: /* Line 1806 of yacc.c */ #line 2184 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 574: /* Line 1806 of yacc.c */ #line 2186 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 575: /* Line 1806 of yacc.c */ #line 2196 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2199 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2204 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2206 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2208 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 581: /* Line 1806 of yacc.c */ #line 2213 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2215 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2217 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 584: /* Line 1806 of yacc.c */ #line 2222 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2224 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2226 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 590: /* Line 1806 of yacc.c */ #line 2241 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2243 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 592: /* Line 1806 of yacc.c */ #line 2245 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 593: /* Line 1806 of yacc.c */ #line 2250 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2252 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2254 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 596: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2261 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2263 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 599: /* Line 1806 of yacc.c */ #line 2278 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2281 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2283 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2289 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 605: /* Line 1806 of yacc.c */ #line 2294 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2296 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2298 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 608: /* Line 1806 of yacc.c */ #line 2303 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2305 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2307 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2309 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 612: /* Line 1806 of yacc.c */ #line 2314 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2316 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2318 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 615: /* Line 1806 of yacc.c */ #line 2328 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2331 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2333 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2338 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2340 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2342 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 622: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2349 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2351 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2353 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 626: /* Line 1806 of yacc.c */ #line 2358 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2360 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2362 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 629: /* Line 1806 of yacc.c */ #line 2393 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2396 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2398 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2403 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2408 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2416 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2418 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2420 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 638: /* Line 1806 of yacc.c */ #line 2425 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2427 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2432 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2434 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2449 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2451 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2456 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 646: /* Line 1806 of yacc.c */ #line 2458 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2460 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2462 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 649: /* Line 1806 of yacc.c */ #line 2464 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 651: /* Line 1806 of yacc.c */ #line 2470 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2472 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2474 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 654: /* Line 1806 of yacc.c */ #line 2479 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 655: /* Line 1806 of yacc.c */ #line 2481 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2483 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 657: /* Line 1806 of yacc.c */ #line 2489 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 658: /* Line 1806 of yacc.c */ #line 2491 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 660: /* Line 1806 of yacc.c */ #line 2497 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 661: /* Line 1806 of yacc.c */ #line 2499 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 662: /* Line 1806 of yacc.c */ #line 2501 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2503 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2518 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2520 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 667: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 668: /* Line 1806 of yacc.c */ #line 2527 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2529 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2531 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 671: /* Line 1806 of yacc.c */ #line 2533 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 673: /* Line 1806 of yacc.c */ #line 2539 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2541 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 676: /* Line 1806 of yacc.c */ #line 2548 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 677: /* Line 1806 of yacc.c */ #line 2550 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2552 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 680: /* Line 1806 of yacc.c */ #line 2559 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2570 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 683: /* Line 1806 of yacc.c */ #line 2573 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 684: /* Line 1806 of yacc.c */ #line 2575 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 685: /* Line 1806 of yacc.c */ #line 2578 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 686: /* Line 1806 of yacc.c */ #line 2580 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 687: /* Line 1806 of yacc.c */ #line 2582 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 689: /* Line 1806 of yacc.c */ #line 2596 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 690: /* Line 1806 of yacc.c */ #line 2598 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2603 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 692: /* Line 1806 of yacc.c */ #line 2605 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2607 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2609 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2611 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 697: /* Line 1806 of yacc.c */ #line 2617 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2619 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2621 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 700: /* Line 1806 of yacc.c */ #line 2626 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2628 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 704: /* Line 1806 of yacc.c */ #line 2638 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2648 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2650 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2652 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2654 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2656 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2658 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2665 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2667 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2673 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2675 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2677 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2679 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2681 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2683 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2688 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2690 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 725: /* Line 1806 of yacc.c */ #line 2695 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 726: /* Line 1806 of yacc.c */ #line 2697 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 728: /* Line 1806 of yacc.c */ #line 2724 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 732: /* Line 1806 of yacc.c */ #line 2735 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2737 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2739 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2741 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2743 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2745 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2752 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2754 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2756 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2758 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2760 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2762 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2767 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2772 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 746: /* Line 1806 of yacc.c */ #line 2774 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 747: /* Line 1806 of yacc.c */ #line 2776 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 750: /* Line 1806 of yacc.c */ #line 2800 "parser.yy" { (yyval.en) = 0; } break; case 751: /* Line 1806 of yacc.c */ #line 2802 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9150 "Parser/parser.cc" default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } *++yyvsp = yylval; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined(yyoverflow) || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval); } /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } /* Line 2067 of yacc.c */ #line 2805 "parser.yy" // ----end of grammar---- void yyerror( const char * ) { std::cout << "Error "; if ( yyfilename ) { std::cout << "in file " << yyfilename << " "; } // if std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //