/* 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, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, FLOATINGconstant = 335, CHARACTERconstant = 336, STRINGliteral = 337, ZERO = 338, ONE = 339, ARROW = 340, ICR = 341, DECR = 342, LS = 343, RS = 344, LE = 345, GE = 346, EQ = 347, NE = 348, ANDAND = 349, OROR = 350, ELLIPSIS = 351, MULTassign = 352, DIVassign = 353, MODassign = 354, PLUSassign = 355, MINUSassign = 356, LSassign = 357, RSassign = 358, ANDassign = 359, ERassign = 360, ORassign = 361, ATassign = 362, THEN = 363 }; #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 VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define FLOATINGconstant 335 #define CHARACTERconstant 336 #define STRINGliteral 337 #define ZERO 338 #define ONE 339 #define ARROW 340 #define ICR 341 #define DECR 342 #define LS 343 #define RS 344 #define LE 345 #define GE 346 #define EQ 347 #define NE 348 #define ANDAND 349 #define OROR 350 #define ELLIPSIS 351 #define MULTassign 352 #define DIVassign 353 #define MODassign 354 #define PLUSassign 355 #define MINUSassign 356 #define LSassign 357 #define RSassign 358 #define ANDassign 359 #define ERassign 360 #define ORassign 361 #define ATassign 362 #define THEN 363 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 111 "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 361 "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 373 "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 249 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 11290 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 238 /* YYNRULES -- Number of rules. */ #define YYNRULES 752 /* YYNRULES -- Number of states. */ #define YYNSTATES 1579 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 363 #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, 118, 2, 2, 2, 125, 120, 2, 109, 110, 119, 121, 116, 122, 113, 124, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 117, 132, 126, 131, 127, 130, 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, 111, 2, 112, 128, 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, 114, 129, 115, 123, 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, 108 }; #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, 1207, 1210, 1213, 1217, 1221, 1223, 1227, 1229, 1232, 1235, 1238, 1243, 1248, 1253, 1258, 1260, 1263, 1266, 1270, 1272, 1275, 1278, 1280, 1283, 1286, 1290, 1292, 1295, 1298, 1300, 1302, 1307, 1310, 1316, 1324, 1327, 1330, 1333, 1335, 1338, 1341, 1345, 1348, 1352, 1354, 1357, 1361, 1364, 1367, 1372, 1373, 1375, 1378, 1381, 1383, 1384, 1386, 1389, 1392, 1398, 1405, 1408, 1411, 1416, 1417, 1420, 1421, 1423, 1425, 1427, 1433, 1439, 1445, 1447, 1453, 1459, 1469, 1471, 1477, 1478, 1480, 1482, 1488, 1490, 1492, 1498, 1504, 1506, 1510, 1514, 1519, 1521, 1523, 1525, 1527, 1530, 1532, 1536, 1540, 1542, 1545, 1547, 1551, 1553, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1571, 1573, 1576, 1578, 1580, 1582, 1585, 1586, 1589, 1592, 1594, 1599, 1600, 1602, 1605, 1609, 1614, 1617, 1620, 1622, 1625, 1627, 1630, 1636, 1642, 1650, 1657, 1659, 1662, 1665, 1669, 1671, 1674, 1677, 1682, 1685, 1690, 1691, 1696, 1699, 1701, 1703, 1705, 1706, 1709, 1715, 1721, 1735, 1737, 1739, 1743, 1747, 1750, 1754, 1758, 1761, 1766, 1768, 1775, 1785, 1786, 1798, 1800, 1804, 1808, 1812, 1814, 1816, 1822, 1825, 1831, 1832, 1834, 1836, 1840, 1841, 1843, 1845, 1847, 1849, 1850, 1857, 1860, 1862, 1865, 1870, 1873, 1877, 1881, 1885, 1890, 1896, 1902, 1908, 1915, 1917, 1919, 1921, 1925, 1926, 1932, 1933, 1935, 1937, 1940, 1947, 1949, 1953, 1954, 1956, 1961, 1963, 1965, 1967, 1969, 1972, 1974, 1977, 1980, 1982, 1986, 1989, 1993, 1997, 2000, 2005, 2010, 2014, 2023, 2027, 2030, 2032, 2035, 2042, 2051, 2055, 2058, 2062, 2066, 2071, 2076, 2080, 2082, 2084, 2086, 2091, 2098, 2102, 2105, 2109, 2113, 2118, 2123, 2127, 2130, 2132, 2135, 2138, 2140, 2144, 2147, 2151, 2155, 2158, 2163, 2168, 2172, 2179, 2188, 2192, 2195, 2197, 2200, 2203, 2206, 2210, 2214, 2217, 2222, 2227, 2231, 2238, 2247, 2251, 2254, 2256, 2259, 2262, 2264, 2266, 2269, 2273, 2277, 2280, 2285, 2292, 2301, 2303, 2306, 2309, 2311, 2314, 2317, 2321, 2325, 2327, 2332, 2337, 2341, 2347, 2356, 2360, 2363, 2367, 2369, 2375, 2381, 2388, 2395, 2397, 2400, 2403, 2405, 2408, 2411, 2415, 2419, 2421, 2426, 2431, 2435, 2441, 2450, 2454, 2456, 2459, 2461, 2464, 2471, 2477, 2484, 2492, 2500, 2502, 2505, 2508, 2510, 2513, 2516, 2520, 2524, 2526, 2531, 2536, 2540, 2549, 2553, 2555, 2557, 2560, 2562, 2564, 2567, 2571, 2574, 2578, 2581, 2585, 2589, 2592, 2597, 2601, 2604, 2608, 2611, 2616, 2620, 2623, 2630, 2637, 2644, 2652, 2654, 2657, 2659, 2661, 2663, 2666, 2670, 2673, 2677, 2680, 2684, 2688, 2693, 2696, 2700, 2705, 2708, 2714, 2720, 2727, 2734, 2735, 2737, 2738 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 299, 0, -1, -1, -1, 79, -1, 80, -1, 81, -1, 72, -1, 76, -1, 140, -1, 72, -1, 76, -1, 72, -1, 140, -1, 83, -1, 84, -1, 82, -1, 141, 82, -1, 72, -1, 140, -1, 109, 168, 110, -1, 109, 172, 110, -1, 142, -1, 143, 111, 134, 163, 135, 112, -1, 143, 109, 144, 110, -1, 143, 113, 139, -1, 143, 113, 111, 134, 146, 135, 112, -1, 143, 85, 139, -1, 143, 85, 111, 134, 146, 135, 112, -1, 143, 86, -1, 143, 87, -1, 109, 272, 110, 114, 276, 369, 115, -1, 143, 114, 144, 115, -1, 145, -1, 144, 116, 145, -1, -1, 163, -1, 139, 117, 163, -1, 111, 134, 163, 135, 112, 117, 163, -1, 111, 134, 163, 116, 166, 135, 112, 117, 163, -1, 147, -1, 146, 116, 147, -1, 139, -1, 139, 113, 147, -1, 139, 113, 111, 134, 146, 135, 112, -1, 139, 85, 147, -1, 139, 85, 111, 134, 146, 135, 112, -1, 143, -1, 136, -1, 141, -1, 86, 148, -1, 87, 148, -1, 40, 150, -1, 149, 150, -1, 118, 150, -1, 119, 150, -1, 37, 148, -1, 37, 109, 272, 110, -1, 38, 109, 272, 116, 139, 110, -1, 76, -1, 76, 109, 273, 110, -1, 76, 109, 145, 110, -1, 66, 148, -1, 66, 109, 272, 110, -1, 94, 139, -1, 120, -1, 121, -1, 122, -1, 123, -1, 148, -1, 109, 272, 110, 150, -1, 109, 272, 110, 165, -1, 150, -1, 151, 119, 150, -1, 151, 124, 150, -1, 151, 125, 150, -1, 151, -1, 152, 121, 151, -1, 152, 122, 151, -1, 152, -1, 153, 88, 152, -1, 153, 89, 152, -1, 153, -1, 154, 126, 153, -1, 154, 127, 153, -1, 154, 90, 153, -1, 154, 91, 153, -1, 154, -1, 155, 92, 154, -1, 155, 93, 154, -1, 155, -1, 156, 120, 155, -1, 156, -1, 157, 128, 156, -1, 157, -1, 158, 129, 157, -1, 158, -1, 159, 94, 158, -1, 159, -1, 160, 95, 159, -1, 160, -1, 160, 130, 168, 117, 161, -1, 160, 130, 117, 161, -1, 160, 130, 168, 117, 165, -1, 161, -1, 161, -1, 148, 131, 163, -1, 148, 167, 163, -1, 165, 370, -1, -1, 163, -1, 111, 112, -1, 111, 134, 163, 135, 112, -1, 111, 134, 116, 166, 135, 112, -1, 111, 134, 163, 116, 166, 135, 112, -1, 164, -1, 166, 116, 164, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 163, -1, 168, 116, 163, -1, -1, 168, -1, 171, -1, 172, -1, 176, -1, 177, -1, 189, -1, 191, -1, 192, -1, 197, -1, 128, 143, 114, 144, 115, 132, -1, 139, 117, 309, 170, -1, 114, 115, -1, 114, 134, 134, 208, 173, 135, 115, -1, 174, -1, 173, 134, 174, -1, 211, -1, 40, 211, -1, 305, -1, 170, 135, -1, 170, -1, 175, 170, -1, 169, 132, -1, 41, 109, 168, 110, 170, -1, 41, 109, 168, 110, 170, 42, 170, -1, 43, 109, 168, 110, 182, -1, 43, 109, 168, 110, 114, 134, 204, 183, 115, -1, 53, 109, 168, 110, 182, -1, 53, 109, 168, 110, 114, 134, 204, 185, 115, -1, 162, -1, 162, 96, 162, -1, 307, -1, 178, -1, 179, 116, 178, -1, 44, 179, 117, -1, 45, 117, -1, 180, -1, 181, 180, -1, 181, 170, -1, -1, 184, -1, 181, 175, -1, 184, 181, 175, -1, -1, 186, -1, 181, 188, -1, 181, 175, 187, -1, 186, 181, 188, -1, 186, 181, 175, 187, -1, -1, 188, -1, 56, -1, 56, 132, -1, 47, 109, 168, 110, 170, -1, 46, 170, 47, 109, 168, 110, 132, -1, 48, 109, 134, 190, 110, 170, -1, 169, 135, 132, 169, 132, 169, -1, 211, 169, 132, 169, -1, 51, 139, 132, -1, 51, 119, 168, 132, -1, 50, 132, -1, 50, 139, 132, -1, 49, 132, -1, 49, 139, 132, -1, 52, 169, 132, -1, 61, 164, 132, -1, 62, 164, 132, -1, 62, 164, 63, 163, 132, -1, 57, 172, 193, -1, 57, 172, 195, -1, 57, 172, 193, 195, -1, 194, -1, 58, 109, 96, 110, 172, -1, 194, 58, 109, 96, 110, 172, -1, 59, 109, 96, 110, 172, -1, 194, 59, 109, 96, 110, 172, -1, 58, 109, 134, 134, 196, 135, 110, 172, 135, -1, 194, 58, 109, 134, 134, 196, 135, 110, 172, 135, -1, 59, 109, 134, 134, 196, 135, 110, 172, 135, -1, 194, 59, 109, 134, 134, 196, 135, 110, 172, 135, -1, 60, 172, -1, 224, -1, 224, 306, -1, 224, 354, -1, 363, 139, -1, 363, -1, 64, 198, 109, 141, 110, 132, -1, 64, 198, 109, 141, 117, 199, 110, 132, -1, 64, 198, 109, 141, 117, 199, 117, 199, 110, 132, -1, 64, 198, 109, 141, 117, 199, 117, 199, 117, 202, 110, 132, -1, 64, 198, 51, 109, 141, 117, 117, 199, 117, 202, 117, 203, 110, 132, -1, -1, 11, -1, -1, 200, -1, 201, -1, 200, 116, 201, -1, 141, 109, 162, 110, -1, 111, 162, 112, 141, 109, 162, 110, -1, -1, 141, -1, 202, 116, 141, -1, 139, -1, 203, 116, 139, -1, 135, -1, 205, -1, 211, -1, 205, 134, 211, -1, 135, -1, 207, -1, 221, -1, 207, 134, 221, -1, -1, 209, -1, 29, 210, 132, -1, 209, 29, 210, 132, -1, 271, -1, 210, 116, 271, -1, 212, -1, 221, -1, 213, 135, 132, -1, 218, 135, 132, -1, 215, 135, 132, -1, 290, 135, 132, -1, 293, 135, 132, -1, 214, 274, -1, 230, 214, 274, -1, 213, 135, 116, 134, 269, 274, -1, 364, 269, 308, -1, 367, 269, 308, -1, 226, 367, 269, 308, -1, 216, -1, 226, 216, -1, 230, 216, -1, 230, 226, 216, -1, 215, 135, 116, 134, 269, -1, 111, 112, 269, 109, 134, 257, 135, 110, -1, 367, 269, 109, 134, 257, 135, 110, -1, 217, 269, 109, 134, 257, 135, 110, -1, 111, 134, 259, 135, 112, -1, 111, 134, 259, 135, 116, 134, 260, 135, 112, -1, 3, 214, -1, 3, 216, -1, 218, 135, 116, 134, 139, -1, 3, 224, 306, -1, 219, 135, 116, 134, 306, -1, 226, 3, 224, 306, -1, 224, 3, 306, -1, 224, 3, 226, 306, -1, 3, 139, 131, 163, -1, 220, 135, 116, 134, 139, 131, 163, -1, 222, 135, 132, -1, 219, 135, 132, -1, 220, 135, 132, -1, 239, 135, 132, -1, 223, 306, 308, 274, -1, 222, 116, 309, 306, 308, 274, -1, 235, -1, 239, -1, 241, -1, 280, -1, 236, -1, 240, -1, 242, -1, 281, -1, -1, 226, -1, 227, -1, 226, 227, -1, 228, -1, 311, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 229, 283, 110, -1, 231, -1, 226, 231, -1, 230, 226, 231, -1, 232, -1, 231, 232, -1, 233, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 236, -1, 230, 236, -1, 235, 232, -1, 235, 232, 226, -1, 235, 232, 236, -1, 237, -1, 225, 238, 225, -1, 234, -1, 226, 234, -1, 237, 227, -1, 237, 234, -1, 28, 109, 273, 110, -1, 28, 109, 168, 110, -1, 78, 109, 273, 110, -1, 78, 109, 168, 110, -1, 240, -1, 230, 240, -1, 239, 232, -1, 239, 232, 226, -1, 243, -1, 226, 243, -1, 240, 227, -1, 242, -1, 230, 242, -1, 241, 232, -1, 241, 232, 226, -1, 74, -1, 226, 74, -1, 242, 227, -1, 244, -1, 254, -1, 245, 114, 246, 115, -1, 245, 271, -1, 245, 271, 114, 246, 115, -1, 245, 109, 289, 110, 114, 246, 115, -1, 245, 282, -1, 31, 309, -1, 32, 309, -1, 247, -1, 246, 247, -1, 248, 132, -1, 40, 248, 132, -1, 249, 132, -1, 40, 249, 132, -1, 363, -1, 363, 271, -1, 248, 116, 271, -1, 248, 116, -1, 224, 250, -1, 249, 116, 309, 250, -1, -1, 252, -1, 315, 251, -1, 328, 251, -1, 354, -1, -1, 252, -1, 117, 162, -1, 30, 309, -1, 253, 114, 255, 369, 115, -1, 253, 271, 114, 255, 369, 115, -1, 253, 271, -1, 271, 256, -1, 255, 116, 271, 256, -1, -1, 131, 162, -1, -1, 258, -1, 260, -1, 259, -1, 259, 135, 116, 134, 260, -1, 260, 135, 116, 134, 96, -1, 259, 135, 116, 134, 96, -1, 264, -1, 260, 135, 116, 134, 264, -1, 259, 135, 116, 134, 264, -1, 259, 135, 116, 134, 260, 135, 116, 134, 264, -1, 265, -1, 260, 135, 116, 134, 265, -1, -1, 262, -1, 263, -1, 263, 135, 116, 134, 96, -1, 267, -1, 266, -1, 263, 135, 116, 134, 267, -1, 263, 135, 116, 134, 266, -1, 266, -1, 359, 269, 370, -1, 367, 269, 370, -1, 226, 367, 269, 370, -1, 216, -1, 267, -1, 359, -1, 367, -1, 226, 367, -1, 368, -1, 223, 333, 370, -1, 223, 337, 370, -1, 223, -1, 223, 348, -1, 139, -1, 268, 116, 139, -1, 137, -1, 74, -1, 75, -1, 138, -1, 74, -1, 75, -1, 139, -1, 74, -1, 75, -1, 363, -1, 224, -1, 224, 354, -1, 363, -1, 368, -1, 224, -1, 224, 342, -1, -1, 131, 275, -1, 107, 275, -1, 163, -1, 114, 276, 369, 115, -1, -1, 275, -1, 277, 275, -1, 276, 116, 275, -1, 276, 116, 277, 275, -1, 278, 117, -1, 271, 117, -1, 279, -1, 278, 279, -1, 80, -1, 113, 271, -1, 111, 134, 163, 135, 112, -1, 111, 134, 307, 135, 112, -1, 111, 134, 162, 96, 162, 135, 112, -1, 113, 111, 134, 146, 135, 112, -1, 281, -1, 230, 281, -1, 280, 232, -1, 280, 232, 226, -1, 282, -1, 226, 282, -1, 281, 227, -1, 75, 109, 289, 110, -1, 284, 370, -1, 283, 116, 284, 370, -1, -1, 286, 271, 285, 287, -1, 224, 333, -1, 33, -1, 35, -1, 34, -1, -1, 287, 288, -1, 129, 271, 109, 289, 110, -1, 129, 114, 134, 295, 115, -1, 129, 109, 134, 283, 135, 110, 114, 134, 295, 115, 109, 289, 110, -1, 273, -1, 163, -1, 289, 116, 273, -1, 289, 116, 163, -1, 33, 291, -1, 231, 33, 291, -1, 290, 116, 291, -1, 292, 287, -1, 292, 287, 131, 273, -1, 271, -1, 270, 109, 134, 283, 135, 110, -1, 36, 271, 109, 134, 283, 135, 110, 114, 115, -1, -1, 36, 271, 109, 134, 283, 135, 110, 114, 294, 295, 115, -1, 296, -1, 295, 134, 296, -1, 297, 135, 132, -1, 298, 135, 132, -1, 214, -1, 216, -1, 297, 135, 116, 134, 269, -1, 224, 306, -1, 298, 135, 116, 134, 306, -1, -1, 300, -1, 302, -1, 300, 134, 302, -1, -1, 300, -1, 211, -1, 304, -1, 197, -1, -1, 5, 82, 303, 114, 301, 115, -1, 40, 302, -1, 305, -1, 320, 172, -1, 324, 134, 206, 172, -1, 215, 172, -1, 223, 320, 172, -1, 226, 320, 172, -1, 230, 320, 172, -1, 230, 226, 320, 172, -1, 223, 324, 134, 206, 172, -1, 226, 324, 134, 206, 172, -1, 230, 324, 134, 206, 172, -1, 230, 226, 324, 134, 206, 172, -1, 315, -1, 320, -1, 328, -1, 162, 123, 162, -1, -1, 64, 109, 141, 110, 309, -1, -1, 310, -1, 311, -1, 310, 311, -1, 39, 109, 109, 312, 110, 110, -1, 313, -1, 312, 116, 313, -1, -1, 314, -1, 314, 109, 169, 110, -1, 269, -1, 233, -1, 234, -1, 227, -1, 316, 309, -1, 317, -1, 318, 309, -1, 319, 309, -1, 137, -1, 109, 316, 110, -1, 119, 315, -1, 119, 226, 315, -1, 109, 317, 110, -1, 316, 346, -1, 109, 317, 110, 346, -1, 109, 318, 110, 347, -1, 109, 318, 110, -1, 109, 317, 110, 109, 134, 261, 135, 110, -1, 109, 319, 110, -1, 321, 309, -1, 322, -1, 323, 309, -1, 316, 109, 134, 261, 135, 110, -1, 109, 322, 110, 109, 134, 261, 135, 110, -1, 109, 321, 110, -1, 119, 320, -1, 119, 226, 320, -1, 109, 322, 110, -1, 109, 322, 110, 346, -1, 109, 323, 110, 347, -1, 109, 323, 110, -1, 325, -1, 326, -1, 327, -1, 316, 109, 268, 110, -1, 109, 326, 110, 109, 268, 110, -1, 109, 325, 110, -1, 119, 324, -1, 119, 226, 324, -1, 109, 326, 110, -1, 109, 326, 110, 346, -1, 109, 327, 110, 347, -1, 109, 327, 110, -1, 329, 309, -1, 330, -1, 331, 309, -1, 332, 309, -1, 338, -1, 109, 329, 110, -1, 119, 328, -1, 119, 226, 328, -1, 109, 330, 110, -1, 329, 346, -1, 109, 330, 110, 346, -1, 109, 331, 110, 347, -1, 109, 331, 110, -1, 329, 109, 134, 261, 135, 110, -1, 109, 330, 110, 109, 134, 261, 135, 110, -1, 109, 332, 110, -1, 316, 309, -1, 334, -1, 335, 309, -1, 336, 309, -1, 119, 333, -1, 119, 226, 333, -1, 109, 334, 110, -1, 316, 352, -1, 109, 334, 110, 346, -1, 109, 335, 110, 347, -1, 109, 335, 110, -1, 316, 109, 134, 261, 135, 110, -1, 109, 334, 110, 109, 134, 261, 135, 110, -1, 109, 336, 110, -1, 338, 309, -1, 339, -1, 340, 309, -1, 341, 309, -1, 74, -1, 75, -1, 119, 337, -1, 119, 226, 337, -1, 109, 339, 110, -1, 338, 352, -1, 109, 339, 110, 352, -1, 338, 109, 134, 261, 135, 110, -1, 109, 339, 110, 109, 134, 261, 135, 110, -1, 343, -1, 344, 309, -1, 345, 309, -1, 119, -1, 119, 226, -1, 119, 342, -1, 119, 226, 342, -1, 109, 343, 110, -1, 346, -1, 109, 343, 110, 346, -1, 109, 344, 110, 347, -1, 109, 344, 110, -1, 109, 134, 261, 135, 110, -1, 109, 343, 110, 109, 134, 261, 135, 110, -1, 109, 345, 110, -1, 111, 112, -1, 111, 112, 347, -1, 347, -1, 111, 134, 163, 135, 112, -1, 111, 134, 119, 135, 112, -1, 347, 111, 134, 163, 135, 112, -1, 347, 111, 134, 119, 135, 112, -1, 349, -1, 350, 309, -1, 351, 309, -1, 119, -1, 119, 226, -1, 119, 348, -1, 119, 226, 348, -1, 109, 349, 110, -1, 352, -1, 109, 349, 110, 352, -1, 109, 350, 110, 347, -1, 109, 350, 110, -1, 109, 134, 261, 135, 110, -1, 109, 349, 110, 109, 134, 261, 135, 110, -1, 109, 351, 110, -1, 353, -1, 353, 347, -1, 347, -1, 111, 112, -1, 111, 134, 226, 119, 135, 112, -1, 111, 134, 226, 135, 112, -1, 111, 134, 226, 163, 135, 112, -1, 111, 134, 7, 225, 163, 135, 112, -1, 111, 134, 226, 7, 163, 135, 112, -1, 355, -1, 356, 309, -1, 357, 309, -1, 119, -1, 119, 226, -1, 119, 354, -1, 119, 226, 354, -1, 109, 355, 110, -1, 346, -1, 109, 355, 110, 346, -1, 109, 356, 110, 347, -1, 109, 356, 110, -1, 109, 355, 110, 109, 134, 261, 135, 110, -1, 109, 357, 110, -1, 359, -1, 367, -1, 226, 367, -1, 360, -1, 361, -1, 119, 224, -1, 226, 119, 224, -1, 119, 368, -1, 226, 119, 368, -1, 119, 358, -1, 226, 119, 358, -1, 111, 112, 224, -1, 362, 224, -1, 111, 112, 347, 224, -1, 362, 347, 224, -1, 347, 224, -1, 111, 112, 360, -1, 362, 360, -1, 111, 112, 347, 360, -1, 362, 347, 360, -1, 347, 360, -1, 111, 134, 226, 119, 135, 112, -1, 111, 134, 226, 163, 135, 112, -1, 111, 134, 230, 163, 135, 112, -1, 111, 134, 230, 226, 163, 135, 112, -1, 367, -1, 226, 367, -1, 364, -1, 365, -1, 366, -1, 119, 224, -1, 226, 119, 224, -1, 119, 368, -1, 226, 119, 368, -1, 119, 363, -1, 226, 119, 363, -1, 111, 112, 224, -1, 111, 112, 347, 224, -1, 347, 224, -1, 111, 112, 365, -1, 111, 112, 347, 365, -1, 347, 365, -1, 111, 134, 260, 135, 112, -1, 111, 112, 109, 257, 110, -1, 367, 109, 134, 257, 135, 110, -1, 217, 109, 134, 257, 135, 110, -1, -1, 116, -1, -1, 131, 163, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 291, 291, 297, 306, 307, 308, 312, 313, 314, 318, 319, 323, 324, 328, 329, 333, 334, 340, 342, 344, 346, 351, 352, 358, 362, 364, 365, 367, 368, 370, 372, 374, 382, 383, 389, 390, 391, 396, 398, 403, 404, 408, 412, 414, 416, 418, 423, 426, 428, 430, 432, 434, 436, 438, 440, 446, 448, 450, 452, 454, 456, 458, 460, 462, 467, 468, 469, 470, 474, 475, 477, 482, 483, 485, 487, 492, 493, 495, 500, 501, 503, 508, 509, 511, 513, 515, 520, 521, 523, 528, 529, 534, 535, 540, 541, 546, 547, 552, 553, 558, 559, 561, 563, 568, 573, 574, 576, 578, 584, 585, 591, 593, 595, 597, 602, 603, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 621, 622, 628, 629, 635, 636, 637, 638, 639, 640, 641, 642, 643, 652, 659, 661, 671, 672, 677, 679, 681, 683, 687, 688, 693, 698, 701, 703, 705, 710, 712, 720, 721, 723, 727, 728, 733, 734, 739, 740, 744, 749, 750, 754, 756, 762, 763, 767, 769, 771, 773, 779, 780, 784, 785, 789, 791, 793, 798, 800, 805, 807, 811, 814, 818, 821, 825, 827, 831, 833, 840, 842, 844, 853, 855, 857, 859, 861, 866, 868, 870, 872, 877, 890, 891, 896, 898, 903, 907, 909, 911, 913, 915, 921, 922, 928, 929, 933, 934, 939, 941, 947, 948, 950, 955, 957, 964, 966, 970, 971, 976, 978, 982, 983, 987, 989, 993, 994, 998, 999, 1003, 1004, 1019, 1020, 1021, 1022, 1023, 1027, 1032, 1039, 1049, 1054, 1059, 1067, 1072, 1077, 1082, 1087, 1095, 1117, 1122, 1129, 1131, 1138, 1143, 1148, 1159, 1164, 1169, 1174, 1179, 1188, 1193, 1201, 1202, 1203, 1204, 1210, 1215, 1223, 1224, 1225, 1226, 1230, 1231, 1232, 1233, 1238, 1239, 1248, 1249, 1254, 1255, 1260, 1262, 1264, 1266, 1268, 1271, 1270, 1282, 1283, 1285, 1295, 1296, 1301, 1305, 1307, 1309, 1311, 1313, 1315, 1317, 1319, 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, 1348, 1354, 1355, 1357, 1359, 1361, 1366, 1367, 1373, 1374, 1376, 1378, 1383, 1385, 1387, 1389, 1394, 1395, 1397, 1399, 1404, 1405, 1407, 1412, 1413, 1415, 1417, 1422, 1424, 1426, 1431, 1432, 1436, 1438, 1440, 1442, 1444, 1449, 1451, 1456, 1458, 1463, 1464, 1466, 1467, 1472, 1473, 1475, 1477, 1482, 1484, 1490, 1491, 1493, 1496, 1499, 1504, 1505, 1510, 1515, 1519, 1521, 1523, 1528, 1530, 1536, 1537, 1545, 1546, 1550, 1551, 1552, 1554, 1556, 1563, 1564, 1566, 1568, 1573, 1574, 1580, 1581, 1585, 1586, 1591, 1592, 1593, 1595, 1603, 1604, 1606, 1609, 1611, 1615, 1616, 1617, 1619, 1621, 1625, 1630, 1638, 1639, 1648, 1650, 1655, 1656, 1657, 1661, 1662, 1663, 1667, 1668, 1669, 1673, 1674, 1675, 1680, 1681, 1682, 1683, 1689, 1690, 1692, 1697, 1698, 1703, 1704, 1705, 1706, 1707, 1722, 1723, 1728, 1729, 1737, 1739, 1741, 1744, 1746, 1748, 1771, 1772, 1774, 1776, 1781, 1782, 1784, 1789, 1794, 1795, 1801, 1800, 1804, 1808, 1810, 1812, 1818, 1819, 1824, 1829, 1831, 1836, 1838, 1839, 1841, 1846, 1848, 1850, 1855, 1857, 1862, 1867, 1875, 1881, 1880, 1894, 1895, 1900, 1901, 1905, 1910, 1915, 1923, 1928, 1939, 1940, 1951, 1952, 1958, 1959, 1963, 1964, 1965, 1968, 1967, 1978, 1983, 1988, 1994, 2003, 2009, 2015, 2021, 2027, 2035, 2041, 2049, 2055, 2064, 2065, 2066, 2070, 2074, 2076, 2081, 2082, 2086, 2087, 2092, 2098, 2099, 2102, 2104, 2105, 2109, 2110, 2111, 2112, 2146, 2148, 2149, 2151, 2156, 2161, 2166, 2168, 2170, 2175, 2177, 2179, 2181, 2186, 2188, 2198, 2200, 2201, 2206, 2208, 2210, 2215, 2217, 2219, 2224, 2226, 2228, 2237, 2238, 2239, 2243, 2245, 2247, 2252, 2254, 2256, 2261, 2263, 2265, 2280, 2282, 2283, 2285, 2290, 2291, 2296, 2298, 2300, 2305, 2307, 2309, 2311, 2316, 2318, 2320, 2330, 2332, 2333, 2335, 2340, 2342, 2344, 2349, 2351, 2353, 2355, 2360, 2362, 2364, 2395, 2397, 2398, 2400, 2405, 2410, 2418, 2420, 2422, 2427, 2429, 2434, 2436, 2450, 2451, 2453, 2458, 2460, 2462, 2464, 2466, 2471, 2472, 2474, 2476, 2481, 2483, 2485, 2491, 2493, 2495, 2499, 2501, 2503, 2505, 2519, 2520, 2522, 2527, 2529, 2531, 2533, 2535, 2540, 2541, 2543, 2545, 2550, 2552, 2554, 2560, 2561, 2563, 2572, 2575, 2577, 2580, 2582, 2584, 2597, 2598, 2600, 2605, 2607, 2609, 2611, 2613, 2618, 2619, 2621, 2623, 2628, 2630, 2638, 2639, 2640, 2645, 2646, 2650, 2652, 2654, 2656, 2658, 2660, 2667, 2669, 2671, 2673, 2675, 2677, 2679, 2681, 2683, 2685, 2690, 2692, 2694, 2699, 2725, 2726, 2728, 2732, 2733, 2737, 2739, 2741, 2743, 2745, 2747, 2754, 2756, 2758, 2760, 2762, 2764, 2769, 2774, 2776, 2778, 2796, 2798, 2803, 2804 }; #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", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "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", "trait_specifier", "$@3", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_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, 363, 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, 133, 134, 135, 136, 136, 136, 137, 137, 137, 138, 138, 139, 139, 140, 140, 141, 141, 142, 142, 142, 142, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 144, 144, 145, 145, 145, 145, 145, 146, 146, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 149, 149, 150, 150, 150, 151, 151, 151, 151, 152, 152, 152, 153, 153, 153, 154, 154, 154, 154, 154, 155, 155, 155, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 161, 161, 162, 163, 163, 163, 163, 164, 164, 165, 165, 165, 165, 166, 166, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 168, 168, 169, 169, 170, 170, 170, 170, 170, 170, 170, 170, 170, 171, 172, 172, 173, 173, 174, 174, 174, 174, 175, 175, 176, 177, 177, 177, 177, 177, 177, 178, 178, 178, 179, 179, 180, 180, 181, 181, 182, 183, 183, 184, 184, 185, 185, 186, 186, 186, 186, 187, 187, 188, 188, 189, 189, 189, 190, 190, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 192, 192, 192, 193, 193, 193, 193, 193, 194, 194, 194, 194, 195, 196, 196, 196, 196, 196, 197, 197, 197, 197, 197, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 202, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 212, 212, 212, 213, 213, 213, 214, 214, 214, 215, 215, 215, 215, 215, 216, 216, 216, 217, 217, 218, 218, 218, 219, 219, 219, 219, 219, 220, 220, 221, 221, 221, 221, 222, 222, 223, 223, 223, 223, 224, 224, 224, 224, 225, 225, 226, 226, 227, 227, 228, 228, 228, 228, 228, 229, 228, 230, 230, 230, 231, 231, 232, 233, 233, 233, 233, 233, 233, 233, 233, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 236, 236, 237, 237, 237, 237, 238, 238, 238, 238, 239, 239, 239, 239, 240, 240, 240, 241, 241, 241, 241, 242, 242, 242, 243, 243, 244, 244, 244, 244, 244, 245, 245, 246, 246, 247, 247, 247, 247, 248, 248, 248, 248, 249, 249, 250, 250, 250, 250, 250, 251, 251, 252, 253, 254, 254, 254, 255, 255, 256, 256, 257, 257, 258, 258, 258, 258, 258, 259, 259, 259, 259, 260, 260, 261, 261, 262, 262, 263, 263, 263, 263, 264, 264, 264, 264, 264, 265, 265, 265, 265, 265, 266, 266, 267, 267, 268, 268, 269, 269, 269, 270, 270, 270, 271, 271, 271, 272, 272, 272, 273, 273, 273, 273, 274, 274, 274, 275, 275, 276, 276, 276, 276, 276, 277, 277, 278, 278, 279, 279, 279, 279, 279, 279, 280, 280, 280, 280, 281, 281, 281, 282, 283, 283, 285, 284, 284, 286, 286, 286, 287, 287, 288, 288, 288, 289, 289, 289, 289, 290, 290, 290, 291, 291, 292, 292, 293, 294, 293, 295, 295, 296, 296, 297, 297, 297, 298, 298, 299, 299, 300, 300, 301, 301, 302, 302, 302, 303, 302, 302, 304, 304, 304, 305, 305, 305, 305, 305, 305, 305, 305, 305, 306, 306, 306, 307, 308, 308, 309, 309, 310, 310, 311, 312, 312, 313, 313, 313, 314, 314, 314, 314, 315, 315, 315, 315, 316, 316, 317, 317, 317, 318, 318, 318, 318, 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, 328, 328, 328, 328, 329, 329, 330, 330, 330, 331, 331, 331, 331, 332, 332, 332, 333, 333, 333, 333, 334, 334, 334, 335, 335, 335, 335, 336, 336, 336, 337, 337, 337, 337, 338, 338, 339, 339, 339, 340, 340, 341, 341, 342, 342, 342, 343, 343, 343, 343, 343, 344, 344, 344, 344, 345, 345, 345, 346, 346, 346, 347, 347, 347, 347, 348, 348, 348, 349, 349, 349, 349, 349, 350, 350, 350, 350, 351, 351, 351, 352, 352, 352, 353, 353, 353, 353, 353, 353, 354, 354, 354, 355, 355, 355, 355, 355, 356, 356, 356, 356, 357, 357, 358, 358, 358, 359, 359, 360, 360, 360, 360, 360, 360, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 362, 362, 362, 362, 363, 363, 363, 364, 364, 365, 365, 365, 365, 365, 365, 366, 366, 366, 366, 366, 366, 367, 368, 368, 368, 369, 369, 370, 370 }; /* 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, 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, 333, 330, 331, 332, 547, 547, 547, 0, 0, 0, 294, 220, 304, 319, 320, 7, 360, 0, 8, 14, 15, 0, 2, 294, 565, 9, 525, 523, 247, 3, 453, 3, 260, 0, 3, 3, 3, 248, 3, 0, 0, 0, 295, 296, 298, 294, 307, 310, 312, 341, 286, 334, 339, 287, 349, 288, 356, 353, 363, 0, 0, 364, 289, 473, 477, 3, 3, 0, 2, 519, 524, 529, 299, 0, 0, 547, 577, 547, 2, 588, 589, 590, 294, 0, 731, 732, 0, 12, 294, 0, 13, 270, 271, 0, 295, 290, 291, 292, 293, 526, 305, 392, 548, 549, 370, 371, 12, 444, 445, 11, 440, 443, 0, 503, 498, 489, 444, 445, 0, 0, 528, 221, 0, 294, 0, 0, 0, 0, 0, 0, 0, 0, 294, 294, 2, 0, 733, 295, 582, 594, 737, 730, 728, 735, 0, 0, 0, 254, 2, 0, 532, 438, 439, 437, 0, 0, 0, 0, 547, 0, 634, 635, 0, 0, 545, 541, 547, 562, 547, 547, 542, 2, 543, 547, 601, 547, 547, 604, 0, 0, 0, 294, 294, 313, 361, 2, 294, 261, 297, 308, 342, 354, 478, 0, 2, 0, 453, 262, 295, 335, 350, 357, 474, 0, 2, 0, 311, 336, 343, 344, 0, 351, 355, 358, 362, 445, 294, 294, 366, 369, 0, 395, 475, 479, 0, 0, 0, 1, 294, 2, 530, 576, 578, 294, 2, 741, 295, 744, 545, 545, 295, 0, 0, 0, 273, 547, 542, 2, 294, 0, 0, 294, 550, 2, 501, 2, 554, 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, 495, 751, 451, 494, 0, 449, 450, 0, 566, 581, 584, 587, 593, 596, 599, 360, 0, 2, 739, 0, 294, 742, 2, 294, 3, 425, 0, 433, 295, 294, 307, 334, 287, 349, 356, 3, 3, 407, 411, 421, 426, 473, 294, 427, 706, 707, 294, 428, 430, 294, 2, 583, 595, 729, 2, 2, 249, 2, 458, 0, 456, 455, 454, 141, 2, 2, 251, 2, 2, 250, 2, 281, 2, 282, 0, 280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 567, 606, 0, 453, 2, 561, 570, 660, 563, 564, 533, 294, 2, 600, 609, 602, 603, 0, 276, 294, 294, 340, 295, 0, 295, 0, 294, 734, 738, 736, 534, 294, 545, 255, 263, 309, 0, 2, 535, 294, 499, 337, 338, 283, 352, 359, 0, 294, 2, 384, 294, 372, 0, 0, 378, 728, 294, 749, 398, 0, 476, 500, 252, 253, 520, 294, 435, 0, 294, 237, 0, 2, 239, 0, 295, 0, 257, 2, 258, 278, 0, 0, 2, 294, 545, 294, 486, 488, 487, 0, 0, 751, 0, 294, 0, 294, 490, 294, 560, 558, 559, 557, 0, 552, 555, 0, 0, 294, 56, 294, 69, 52, 294, 62, 294, 294, 50, 51, 64, 2, 127, 0, 0, 447, 0, 446, 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, 646, 452, 643, 547, 547, 651, 480, 294, 2, 585, 586, 0, 597, 598, 0, 2, 740, 743, 111, 294, 2, 294, 0, 708, 295, 712, 703, 704, 710, 0, 2, 2, 668, 547, 751, 617, 547, 547, 751, 547, 631, 547, 547, 682, 434, 665, 547, 547, 673, 680, 294, 429, 295, 0, 0, 294, 718, 295, 723, 751, 715, 294, 720, 751, 294, 294, 294, 0, 111, 0, 18, 5, 2, 0, 19, 0, 459, 749, 0, 0, 465, 241, 0, 294, 0, 0, 0, 545, 569, 573, 575, 605, 608, 612, 615, 568, 607, 0, 284, 658, 0, 294, 277, 0, 0, 0, 0, 275, 2, 0, 259, 536, 294, 0, 0, 0, 0, 294, 294, 0, 0, 692, 382, 385, 389, 547, 389, 697, 388, 689, 547, 547, 365, 373, 381, 374, 547, 376, 379, 294, 750, 0, 0, 396, 749, 295, 3, 414, 3, 418, 417, 591, 0, 531, 294, 3, 3, 294, 433, 295, 3, 427, 428, 2, 0, 0, 0, 485, 306, 294, 481, 483, 3, 2, 2, 0, 502, 3, 0, 554, 129, 0, 0, 222, 0, 0, 0, 2, 0, 0, 36, 0, 0, 111, 294, 20, 0, 21, 0, 692, 448, 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, 752, 294, 0, 0, 0, 647, 648, 644, 645, 497, 496, 294, 0, 3, 294, 714, 294, 719, 295, 294, 294, 294, 662, 705, 661, 2, 294, 0, 0, 0, 0, 0, 0, 0, 0, 683, 0, 669, 620, 636, 670, 2, 616, 623, 431, 618, 619, 432, 2, 630, 639, 632, 633, 666, 667, 681, 709, 713, 711, 751, 268, 2, 745, 2, 422, 717, 722, 423, 0, 401, 3, 3, 3, 3, 453, 3, 0, 2, 468, 464, 750, 0, 460, 467, 2, 463, 466, 0, 294, 242, 264, 3, 272, 274, 0, 453, 2, 571, 572, 2, 610, 611, 0, 659, 537, 3, 346, 345, 348, 347, 294, 538, 0, 539, 294, 375, 377, 2, 0, 0, 0, 0, 104, 391, 693, 694, 386, 390, 387, 690, 691, 380, 384, 367, 398, 393, 399, 0, 0, 0, 436, 240, 0, 0, 3, 2, 668, 429, 0, 527, 0, 751, 489, 0, 294, 294, 294, 0, 551, 553, 130, 0, 0, 215, 0, 0, 0, 223, 224, 57, 0, 63, 294, 0, 61, 60, 0, 128, 693, 458, 70, 71, 110, 115, 3, 109, 0, 0, 0, 24, 35, 3, 0, 32, 102, 0, 3, 650, 654, 657, 649, 3, 592, 3, 716, 721, 2, 294, 3, 3, 295, 0, 3, 622, 626, 629, 638, 672, 676, 679, 294, 3, 621, 637, 671, 294, 294, 424, 294, 294, 746, 0, 0, 0, 0, 256, 0, 104, 0, 3, 3, 0, 461, 0, 457, 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, 547, 0, 540, 294, 111, 696, 700, 702, 695, 383, 397, 394, 579, 2, 664, 663, 0, 669, 2, 482, 484, 504, 3, 512, 513, 0, 2, 508, 3, 3, 0, 0, 556, 222, 0, 0, 0, 222, 0, 0, 3, 37, 749, 109, 0, 3, 661, 42, 3, 40, 3, 34, 0, 3, 101, 103, 0, 2, 652, 653, 0, 0, 294, 0, 0, 0, 3, 638, 0, 2, 624, 625, 2, 640, 2, 674, 675, 0, 0, 3, 0, 3, 3, 3, 3, 409, 408, 412, 2, 2, 748, 747, 112, 0, 0, 0, 0, 3, 462, 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, 547, 151, 148, 294, 0, 0, 267, 279, 3, 3, 546, 613, 368, 2, 698, 699, 294, 266, 294, 0, 515, 492, 294, 0, 0, 491, 506, 0, 0, 0, 216, 0, 225, 58, 109, 0, 0, 116, 113, 0, 0, 0, 0, 0, 0, 23, 0, 655, 294, 580, 265, 724, 725, 726, 0, 677, 294, 294, 294, 3, 3, 0, 685, 0, 0, 0, 0, 294, 294, 3, 544, 469, 470, 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, 416, 420, 419, 0, 509, 2, 510, 2, 511, 505, 294, 228, 0, 226, 0, 228, 3, 661, 31, 114, 2, 45, 2, 43, 41, 28, 112, 26, 3, 727, 3, 3, 3, 0, 0, 684, 686, 627, 641, 269, 2, 406, 3, 405, 0, 472, 469, 129, 0, 0, 129, 3, 0, 129, 188, 0, 2, 2, 209, 199, 0, 0, 0, 0, 140, 574, 614, 3, 2, 0, 0, 2, 229, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 688, 294, 0, 471, 152, 0, 0, 2, 165, 129, 154, 0, 182, 0, 129, 0, 2, 156, 0, 2, 0, 2, 2, 2, 196, 32, 0, 294, 514, 516, 507, 0, 0, 0, 0, 114, 38, 3, 3, 656, 628, 642, 678, 410, 129, 158, 161, 0, 160, 164, 3, 167, 166, 0, 129, 184, 129, 3, 0, 294, 0, 294, 0, 2, 0, 2, 139, 701, 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, 692, 211, 212, 213, 0, 202, 3, 204, 3, 294, 219, 232, 149, 170, 155, 129, 236, 185, 180, 178, 174, 157, 129, 0, 693, 0, 0, 0, 0, 150, 171, 181, 175, 179, 178, 176, 3, 3, 0, 0, 493, 177, 205, 207, 3, 3, 206, 208 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 840, 475, 302, 46, 132, 133, 303, 304, 305, 306, 786, 787, 1147, 1148, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 1052, 526, 997, 322, 998, 555, 974, 1079, 1543, 1081, 1082, 1083, 1084, 1544, 1085, 1086, 1460, 1461, 1422, 1423, 1424, 1522, 1523, 1527, 1528, 1563, 1564, 1087, 1380, 1088, 1089, 1314, 1315, 1316, 1504, 1090, 144, 980, 981, 982, 1401, 1485, 1496, 1497, 476, 477, 902, 903, 1060, 49, 50, 51, 52, 53, 346, 157, 56, 57, 58, 59, 60, 348, 62, 63, 262, 65, 66, 273, 350, 351, 69, 70, 71, 72, 117, 74, 203, 353, 118, 77, 119, 79, 80, 81, 456, 457, 458, 459, 701, 940, 702, 82, 83, 463, 722, 882, 883, 356, 357, 725, 726, 727, 358, 359, 360, 361, 473, 340, 134, 135, 530, 324, 169, 655, 656, 657, 658, 659, 84, 120, 86, 496, 497, 966, 498, 276, 502, 325, 87, 136, 137, 88, 1338, 1125, 1126, 1127, 1128, 89, 90, 743, 91, 272, 92, 93, 186, 1054, 689, 411, 124, 94, 508, 509, 510, 187, 267, 189, 190, 191, 268, 97, 98, 99, 100, 101, 102, 103, 194, 195, 196, 197, 198, 852, 614, 615, 616, 617, 199, 619, 620, 621, 580, 581, 582, 583, 706, 104, 623, 624, 625, 626, 627, 628, 939, 708, 709, 710, 604, 364, 365, 366, 367, 326, 163, 106, 107, 108, 369, 720, 577 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1356 static const yytype_int16 yypact[] = { 5863, 4890, -1356, 65, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 9, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 139, 139, 139, 1216, 781, 63, 4761, 238, -1356, -1356, -1356, -1356, -1356, 165, -1356, -1356, -1356, 572, 207, 2350, -1356, -1356, -1356, -1356, -1356, -1356, 59, 217, -1356, 1506, -1356, -1356, -1356, -1356, 220, 1734, 341, 66, 7480, -1356, -1356, 9240, 1240, -1356, -1356, -1356, 1320, 351, 3183, 1125, 757, 1320, 1149, -1356, -1356, 1042, 895, -1356, 1320, 1227, -1356, 243, -1356, 378, 403, -1356, -1356, -1356, -1356, 303, 217, 139, -1356, 139, -1356, -1356, -1356, -1356, 9019, 1506, -1356, -1356, 1506, -1356, 9774, 314, -1356, -1356, -1356, 1811, 9812, -1356, 726, 726, 726, -1356, -1356, -1356, 139, -1356, -1356, -1356, 353, 381, 400, -1356, -1356, -1356, 417, -1356, -1356, -1356, -1356, -1356, 424, 436, -1356, -1356, 28, 8867, 2398, 371, 447, 459, 467, 482, 495, 557, 8670, 6999, 468, 584, -1356, 9350, -1356, -1356, -1356, -1356, 594, -1356, 335, 4628, 4628, -1356, 575, 352, -1356, -1356, -1356, -1356, 602, 432, 434, 470, 139, 624, -1356, -1356, 1734, 1711, 656, -1356, 68, -1356, 139, 139, 217, -1356, -1356, 93, -1356, 139, 139, -1356, 2093, 670, 699, 726, 6910, -1356, -1356, 654, 2350, -1356, -1356, 1320, -1356, -1356, -1356, 217, -1356, 1506, 59, -1356, 7819, -1356, 726, 726, 726, 217, -1356, 1216, -1356, 6673, -1356, -1356, 659, 726, -1356, 726, -1356, 165, 8867, 8784, 714, -1356, 781, 740, 726, -1356, 1216, 737, 749, -1356, 4761, 791, -1356, -1356, -1356, 4061, -1356, -1356, 7390, -1356, 656, 62, 9812, 10718, 1811, 2093, -1356, 152, -1356, -1356, 9774, 1506, 770, 7511, -1356, -1356, 269, -1356, 3425, 779, 827, 3643, 814, 10872, 10930, -1356, 817, -1356, -1356, -1356, -1356, 10949, 10949, 791, 8525, 818, 10872, 8981, -1356, -1356, -1356, -1356, -1356, -1356, 855, -1356, 889, 2173, 10872, -1356, 498, 751, 809, 524, 880, 822, 831, 819, 869, 5, -1356, -1356, 883, 64, -1356, 116, -1356, -1356, 2398, -1356, -1356, 516, 900, -1356, 644, 900, 913, 165, -1356, -1356, 915, 9019, -1356, 916, 8639, -1356, -1356, 1004, 1539, 8240, 6910, 1320, -1356, 1320, 726, 726, -1356, -1356, -1356, -1356, -1356, -1356, 726, 9885, 1506, -1356, -1356, 9923, 1500, -1356, 7969, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 929, 5043, 10872, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 1811, -1356, 876, 936, 938, 944, 885, 947, 954, 957, 1711, -1356, -1356, 930, 59, 960, -1356, -1356, 970, -1356, -1356, -1356, 4061, -1356, -1356, -1356, -1356, -1356, 2093, -1356, 8867, 8867, -1356, 726, 1811, 7030, 1506, 8313, -1356, -1356, -1356, -1356, 4061, 62, -1356, -1356, 1320, 217, -1356, -1356, 4061, -1356, 6793, -1356, -1356, 726, 726, 472, 9953, 974, 1092, 5671, -1356, 521, 543, 781, -1356, 8784, 976, 959, 781, 726, -1356, -1356, -1356, -1356, 10252, -1356, 560, 6550, -1356, 217, 981, -1356, 1811, 11070, 10776, -1356, -1356, -1356, -1356, 921, 2093, -1356, 8386, 656, 6061, -1356, -1356, -1356, 820, 612, 883, 781, 7511, 1338, 9774, -1356, 7511, -1356, -1356, -1356, -1356, 638, -1356, 994, 827, 255, 8525, -1356, 9953, -1356, -1356, 8525, -1356, 8753, 8525, -1356, -1356, -1356, 993, -1356, 665, 998, 161, 1002, -1356, 9490, 6639, -1356, -1356, -1356, 290, -1356, -1356, 10795, -1356, 366, 10795, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 10718, 10718, -1356, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 10872, 5362, 10718, -1356, 64, 1168, -1356, -1356, 139, 139, -1356, -1356, 8867, -1356, -1356, 970, 791, -1356, 970, 10853, -1356, -1356, -1356, 3524, 6639, 1016, 9095, 1028, -1356, 10035, -1356, -1356, 594, -1356, 1029, 776, 1036, 1922, 164, 883, -1356, 139, 139, 883, 174, -1356, 139, 139, 970, -1356, -1356, 139, 139, -1356, 900, 10065, 1506, 11215, 233, 347, 10065, -1356, 10214, -1356, 883, -1356, 9885, -1356, 125, 7935, 7935, 7935, 1506, -1356, 6115, 1033, 414, 929, 1150, 1037, 1038, -1356, 1054, 4628, 555, -1356, 1124, 1506, 7935, 791, 1811, 791, 656, 704, 900, -1356, -1356, 729, 900, -1356, -1356, -1356, 827, -1356, 900, 217, 10252, -1356, 666, 1061, 679, 1062, -1356, 1065, 217, -1356, -1356, 4061, 217, 1059, 553, 573, 10103, 7119, 1590, 10872, 1954, -1356, -1356, 1066, 39, 1066, -1356, -1356, -1356, 139, 139, -1356, -1356, 781, -1356, 139, -1356, -1356, 9630, 781, 1069, 10872, -1356, 976, 11215, -1356, -1356, 1075, -1356, -1356, -1356, 791, -1356, 11143, 10872, -1356, 7935, 588, 8240, -1356, -1356, 594, 1072, 1077, 820, 2542, -1356, -1356, 7511, -1356, -1356, 1074, -1356, -1356, 1088, -1356, 1074, 1090, 3425, 10718, 205, 1073, 47, 1094, 1082, 1100, 818, 1102, 1110, -1356, 1113, 1117, 9661, 6759, -1356, 10718, -1356, 161, 1861, -1356, 6396, 10718, 1120, -1356, -1356, 929, 689, -1356, 10718, -1356, -1356, 865, -1356, -1356, -1356, -1356, -1356, 498, 498, 751, 751, 809, 809, 809, 809, 524, 524, 880, 822, 831, 819, 869, 10872, 875, -1356, 10252, 1119, 1140, 1142, 1168, -1356, -1356, -1356, -1356, -1356, 10252, 691, 10872, 7935, -1356, 9885, -1356, 7239, 9209, 8905, 6999, -1356, -1356, -1356, 776, 10252, 927, 1145, 1152, 1158, 1159, 1162, 1166, 1172, -1356, 4275, 1922, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 970, -1356, -1356, -1356, 883, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 1176, -1356, 1183, 1185, -1356, -1356, 59, 1120, 6115, -1356, -1356, -1356, 5043, 1144, -1356, -1356, -1356, -1356, -1356, 781, 6242, 1231, -1356, -1356, -1356, -1356, 1165, 59, -1356, -1356, 970, -1356, -1356, 970, 29, 970, -1356, -1356, -1356, -1356, -1356, -1356, 9380, -1356, 217, -1356, 8784, -1356, -1356, 1190, 906, 1187, 1193, 1198, -1356, -1356, 1954, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 1092, -1356, 959, -1356, -1356, 1195, 1202, 1201, -1356, -1356, 1206, 1210, -1356, 588, 2182, -1356, 533, -1356, 2542, 883, -1356, 1213, 7511, 10176, 8867, 1220, -1356, -1356, 1218, 1222, 1224, -1356, 10872, 230, -1, 1219, -1356, 1225, 791, 1225, 6639, 10718, -1356, -1356, 1225, -1356, 1861, 5043, -1356, -1356, -1356, -1356, 1236, 10718, 1233, 791, 6115, -1356, 10795, -1356, 791, -1356, -1356, 10718, -1356, 782, 900, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 929, 8639, -1356, -1356, 7359, 1237, -1356, 807, 900, -1356, 825, 836, 900, -1356, 726, 4460, -1356, -1356, -1356, 10252, 10252, -1356, 8313, 8313, -1356, 1241, 1248, 1246, 1259, -1356, 1262, 672, 244, 1120, -1356, 791, -1356, 4628, -1356, 10718, 578, -1356, 6519, 1267, 1271, 10660, 1272, 1277, 122, 304, 298, 10718, 1279, 217, 10718, 10718, 1280, 678, 1254, 1261, -1356, -1356, -1356, 1284, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 781, 1290, 10718, -1356, 10252, 10252, 139, 1292, -1356, 9743, 9520, 847, 900, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 1293, 2182, -1356, -1356, 1275, -1356, 1074, -1356, -1356, 1811, 1296, -1356, -1356, -1356, 706, 1291, -1356, 47, 1305, 10872, 1288, 47, 47, 1314, 1310, -1356, 1054, 10718, 1315, 1236, 711, 214, 1317, -1356, 1310, -1356, 1323, 1317, -1356, -1356, 1328, -1356, -1356, 970, 1329, 1330, 6879, 1331, 1339, 1341, -1356, -1356, 1340, -1356, -1356, 970, -1356, -1356, -1356, -1356, 970, 10718, 10718, 10872, 1344, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 10872, 10872, 1347, 1349, 1317, -1356, -1356, 781, -1356, -1356, -1356, 7746, 10176, 10718, 10718, 1394, 10718, -1356, -1356, 1333, -1356, 1334, 10718, 1335, 1343, 10718, 992, 1345, 36, 8158, 1229, 139, -1356, -1356, 6242, 1348, 585, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 970, 10478, -1356, 8386, 1360, -1356, -1356, 10176, 592, 598, -1356, 1356, 1355, 827, 1366, -1356, 179, -1356, -1356, 10718, 1368, 1363, -1356, -1356, 1369, 484, 663, 791, 1376, 1378, -1356, 1380, -1356, 10252, -1356, -1356, -1356, -1356, -1356, 1382, -1356, 10252, 10252, 10252, -1356, -1356, 1386, -1356, 1389, 1392, 1393, 682, 8008, 8124, -1356, -1356, 370, -1356, 1396, 1397, -1356, 8459, 715, 725, 1395, 760, 6377, -1356, -1356, 641, -1356, -1356, 796, 1402, 1403, 217, 1453, 961, -1356, -1356, 10718, -1356, 10795, 10660, -1356, -1356, -1356, 1406, 1407, 10252, -1356, -1356, -1356, 1405, -1356, -1356, -1356, -1356, -1356, -1356, 10176, 827, 287, -1356, 1388, 827, 1236, 361, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 1408, -1356, -1356, -1356, -1356, -1356, -1356, 1411, 1412, -1356, -1356, -1356, -1356, -1356, -1356, -1356, 1418, -1356, 1417, -1356, -1356, 10660, 272, 10718, 10660, -1356, 1422, 10718, -1356, 306, 1438, 1441, -1356, -1356, 1430, 1431, 1413, 918, -1356, -1356, -1356, -1356, -1356, 1506, 1811, 1433, 855, 946, 10872, -1356, 801, 1439, 10718, 791, 791, 1442, 1448, 1449, 1450, -1356, -1356, 8313, 1452, -1356, 1535, 10872, 1462, -1356, -1356, 10571, -1356, 803, -1356, 1460, 10660, 1463, -1356, -1356, 1489, -1356, 1493, -1356, 1511, 1512, -1356, 1480, 1508, 10176, -1356, -1356, -1356, 827, 791, 1514, 1484, 1509, -1356, 1317, 1317, -1356, -1356, -1356, -1356, -1356, 10660, 301, -1356, 958, -1356, -1356, 7597, -1356, -1356, 1502, 10718, -1356, 10718, 7597, 217, 9953, 217, 9953, 1515, -1356, 1522, -1356, -1356, -1356, 1520, 855, -1356, 811, -1356, -1356, 10718, 1526, 1527, -1356, 10872, 10872, -1356, -1356, 1055, 154, -1356, -1356, 1510, -1356, 1055, -1356, -1356, 1716, 791, -1356, -1356, 217, 9953, 217, 9953, 1532, 1517, 791, -1356, -1356, -1356, -1356, -1356, 10571, 1528, 1055, 7673, 10718, 10482, 1531, 1055, 1537, 1716, 2045, -1356, -1356, -1356, 1545, -1356, -1356, -1356, -1356, 8867, -1356, -1356, -1356, 10349, -1356, 10571, -1356, -1356, 1529, 10256, -1356, -1356, 10482, 217, 2045, 217, 1558, 1559, 815, -1356, 10349, -1356, -1356, -1356, 10256, -1356, -1356, -1356, 217, 217, -1356, -1356, -1356, -1356, -1356, -1356, -1356, -1356 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1356, 4068, 1513, -1356, 1381, -1356, 41, 0, -254, -1356, 593, -523, -482, -960, -143, 5028, -1356, -101, 576, 581, 386, 577, 1101, 1105, 1106, 1099, 1107, -1356, -593, -585, 4966, -933, -708, -942, -1356, -273, -719, 379, -1356, 1404, -1356, 457, -1092, -1356, -1356, 195, -1356, -844, -1059, 308, -1356, -1356, -1356, -1356, 124, -1118, -1356, -1356, -1356, -1356, -1356, -1356, 382, -1355, 53, -1356, -496, -1356, 558, 349, -1356, 226, -1356, -307, -1356, -1356, -1356, 610, -832, -1356, -1356, 13, -961, 169, 2725, -1356, -1356, -1356, -79, -1356, 189, 845, -184, 1482, 3902, -1356, -1356, 192, 133, 657, -251, 1620, -1356, 1796, -1356, -1356, 156, 2416, -1356, 2575, 798, -1356, -1356, -404, -428, 1252, 1253, 761, 1003, 302, -1356, -1356, 1245, 764, -253, -1356, -24, -132, -469, -1356, -1356, -983, -881, 4, 862, 1128, -43, -1356, 561, -100, -262, -193, -152, 721, 826, -1356, 1071, -1356, 2692, 907, -449, 971, -1356, -1356, 765, -1356, -227, -1356, -60, -1356, -1356, -1356, -1248, 485, -1356, -1356, -1356, 1242, -1356, 45, -1356, -1356, -846, -109, -1333, -138, 3289, -1356, 1880, -1356, 969, -1356, -161, 268, -181, -177, -175, 2, -39, -35, -33, 769, 30, 31, 69, -146, -162, -151, -147, -140, -277, -521, -506, -484, -575, -313, -516, -1356, -1356, -528, 1156, 1157, 1163, 2484, 4688, -570, -557, -534, -533, -478, -1356, -432, -693, -685, -681, -580, -201, -236, -1356, -1356, 265, 180, -86, -1356, 3600, 232, -625, -376 }; /* 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 -523 static const yytype_int16 yytable[] = { 47, 112, 96, 398, 148, 933, 266, 399, 149, 400, 150, 452, 176, 934, 113, 382, 383, 935, 259, 427, 791, 527, 401, 707, 406, 439, 512, 505, 712, 112, 112, 895, 47, 402, 96, 618, 853, 403, 768, 407, 975, 854, 111, 47, 404, 47, 1152, 160, 409, 871, 751, 820, 846, 48, 756, 47, 1092, 1144, 718, 1184, 1185, 47, 260, 192, 47, 261, 215, 47, 342, 225, 1091, 613, 995, 151, 152, 847, 848, 142, 31, 279, 218, 112, 112, 398, 933, 48, 1462, 399, 842, 400, 1399, 424, 934, 845, 201, 1196, 935, 779, 951, 1318, 574, 1202, 401, 843, 406, 47, 936, 31, 47, 1135, 679, 536, 153, 402, 937, 47, 1136, 403, 122, 407, 1508, 749, 482, 484, 404, 844, 408, 637, 936, 290, 688, 641, 31, 68, 857, 575, 950, 280, 692, 1099, 864, 1219, 1220, 605, 202, 148, 47, 121, 160, 149, 410, 150, 682, 684, 47, 1537, 75, 1539, 978, 47, 1462, 372, 1186, 683, 685, 68, 167, 446, 1319, 54, 114, 483, 141, 578, 438, 410, 478, 251, 31, 410, 105, 105, 517, 579, 47, 47, 467, 160, 75, 61, 168, 31, 67, 1482, 109, 534, 535, 211, -234, -234, 47, 54, 418, 31, 410, 41, 42, 556, 47, 1260, 160, 919, 105, 31, 151, 152, 677, 47, 746, 1008, 47, 61, 442, 842, 67, 148, 585, 112, 490, 149, 1201, 150, 586, 209, 483, 507, 219, 858, 843, 755, 527, 861, 112, 535, 674, 527, 112, 105, 527, 143, 47, 112, 96, 153, 1210, 596, 576, 760, 770, 675, 844, 488, 878, 410, 47, 47, 881, 160, 95, -234, 777, 47, 410, 855, 145, 610, 1037, 165, 47, 535, 778, 1038, 846, 862, 342, 610, 666, 536, 740, 1342, 712, 1014, 472, 112, 703, 470, 1343, 1051, 618, 1263, 95, 1154, 813, 48, 176, 847, 848, 1184, 1185, 705, 162, 147, 536, 95, 681, 1344, 1419, 1420, 842, 154, 686, 638, 976, 1025, 824, 642, 674, 1264, 47, 188, 372, 170, 95, 843, 524, 95, 180, 536, 478, 1134, 1192, 675, 165, 1202, 200, 874, 1010, 47, 47, 875, 1419, 1420, 1216, 441, -290, 844, 1015, 739, 478, 246, 1186, 831, 109, 857, 47, 761, 478, 1193, 47, 536, 109, 1026, 762, 41, 42, 162, 109, 327, 249, 653, 1092, 41, 42, 68, 926, 936, 1421, 41, 42, 440, 854, 886, 887, 1133, 1091, 47, 1402, 1492, 500, 605, 501, 783, 846, -518, 880, 47, 75, 372, 1551, 905, 1186, 75, 251, 763, 95, 764, 1153, 1214, 765, 54, 1430, 771, 916, 47, 1193, 847, 848, 95, 605, 47, 105, 47, 1457, 605, 1550, 1566, 1212, 1521, 109, 61, 435, 871, 67, 1526, 479, 263, 342, 1451, 1452, 41, 42, 376, 397, 188, 1561, 47, 794, 795, 796, 876, 112, 1565, -10, 877, 1546, 112, 1051, 377, 386, 1553, 327, -112, 1381, 434, 112, 728, 95, 789, 1406, 47, 251, 329, 211, 958, 387, -112, -112, 47, 95, 372, -441, 47, -112, 96, -467, 47, 740, 1041, 112, 535, 112, -112, 435, 1202, 460, 896, 1107, 505, 979, -442, 1202, 885, 885, 885, 707, 111, 1259, 398, 95, 1121, 653, 399, 1150, 400, 1102, -467, 275, -467, 909, 165, 885, -467, 486, 277, 1186, 434, 401, 112, 618, 406, 653, 936, 112, 653, 48, 278, 1038, 402, 389, 1252, 391, 403, 1172, 1174, 407, 907, 109, 330, 404, 531, 1107, 767, 162, 1202, 390, 739, 392, 41, 42, 331, 1181, 1182, 740, 75, 1036, 1017, 607, 332, 784, 1466, 370, 767, 693, 790, 767, 1379, 393, 873, 586, 1118, 112, 140, 333, 75, 1019, 1348, 95, 47, 831, 936, 936, 75, 394, 888, 885, 334, 479, 1292, 1293, 47, 342, 47, 478, 211, 564, 565, 612, 557, 904, 884, 884, 884, 558, 559, 68, 587, 479, 410, 1231, 1232, 47, 472, 1498, 535, 479, 897, 1250, 713, 884, 1498, 1254, 739, 240, 243, 37, 876, 47, 75, 40, 1117, 566, 567, 112, 714, 955, 41, 42, 327, 327, 715, 54, 47, 1429, 112, 47, 112, 898, 335, 652, 713, 730, 105, 899, 188, 712, 716, 731, 1466, 737, 994, 61, 43, 1466, 67, 728, 929, 342, 1036, 831, 715, 384, 146, 1547, 371, 1199, 1049, 885, 959, 47, 610, 47, 1199, 1466, 375, 906, 930, 908, 960, 1333, 1466, 1200, 388, 884, 112, 1335, 507, 1096, 1324, 460, 112, 408, 460, 747, 704, 1334, 228, 535, 460, 748, 229, 1336, 112, 233, 327, 235, 109, 8, 9, 10, 11, 12, 244, 1056, 1129, 47, 47, 41, 42, 757, 1500, 285, 1501, 327, 590, 758, 410, 396, 775, 47, 95, -291, 41, 42, 612, 441, 31, 431, 8, 9, 10, 11, 12, 954, 1382, 1350, 774, 920, 674, 531, 425, 531, 775, 775, 531, -105, 703, 531, 521, -105, 922, 833, 449, 675, 34, 1367, 775, 31, 1391, 1368, 1003, 705, 1016, 1356, 464, 884, 1004, 1548, 731, 426, 936, 1358, 1359, 1360, 910, 161, 410, 1248, 1447, 327, 728, 605, -112, 586, -112, 34, 1375, 936, -112, 462, 728, 193, 775, 607, 216, 1459, 1376, 226, 933, 913, 47, 410, 775, -112, -112, 728, 934, 115, 75, 37, 935, 1176, 47, 40, 109, 465, 138, 139, 211, 1395, 41, 42, 872, 213, 109, 41, 42, 607, 831, 228, 468, 1378, 211, 560, 561, 41, 42, 775, 841, 979, 612, 479, 469, 979, 979, 491, 839, 737, 610, 511, 75, 158, 1156, 37, 410, 653, 611, 40, 562, 563, 936, 936, 112, 653, 41, 42, 1197, 1383, 1519, 1459, 290, 1183, 1448, 775, 1467, 213, 161, 1168, 1445, 410, 775, 535, 1514, 479, 515, 47, 1571, 520, 1515, 373, 744, 532, 586, 1300, 1301, 1171, 1303, 610, 536, 47, 745, 654, 1307, 570, 1078, 1310, 1173, 47, 610, 572, 257, 801, 802, 803, 804, 161, 158, 1236, 213, 410, 571, 740, 517, 737, 573, 47, 211, 932, 109, 704, 138, 139, 214, 568, 569, 537, 538, 539, 161, 41, 42, 1007, 1004, 1122, 460, 112, 251, 329, 410, 241, 443, 323, 775, 1009, 653, 418, 670, 410, 1340, 540, 339, 541, 112, 542, 543, 653, 941, 112, 941, 228, 242, 233, 338, 841, 612, 576, 1243, 329, 410, 213, 1388, 1389, 717, -438, 214, 594, 1138, 464, 833, 597, 739, 488, 329, 410, 1439, 1004, 68, 855, 329, 610, 676, 740, 647, 1146, 728, 728, 767, 667, 1146, 668, 429, 1311, 1312, 1313, 433, 669, 112, 213, 671, 75, 750, 213, 754, 1445, 1446, 672, 653, 214, 673, 112, 112, 112, 54, 678, 1533, 1493, 1494, 37, 535, 173, 174, 40, 256, 105, 323, 455, 1400, 696, 41, 42, 1400, 721, 61, 719, 112, 67, -238, 1146, 373, 228, 1419, 1420, 728, 728, 759, 1425, 772, 1078, 841, 776, 1211, 1213, 1215, 780, 371, 109, 433, 138, 237, 495, 612, 1349, 1351, 1352, 1107, 47, 41, 42, 214, 834, 2, 205, 4, 5, 6, 7, 342, 797, 798, 1123, 529, 836, 838, 158, 799, 800, 805, 806, 213, 849, 105, -12, 238, -292, 901, -13, 893, 239, 441, 1370, 8, 9, 10, 11, 12, 37, 214, 182, 183, 40, 214, 894, 921, 923, 928, 373, 41, 42, 924, 8, 9, 10, 11, 12, 699, 949, -415, 595, -522, 31, 602, 748, 1483, 963, 460, 35, 68, 36, 970, 984, 112, 972, 698, 327, 410, 983, 977, 704, 31, 635, 699, 985, 700, 639, 892, 704, 339, 34, 218, 75, 987, 988, 47, 109, 989, 138, 139, 653, 990, 213, 1011, -293, 54, 612, 41, 42, 34, 999, 8, 9, 10, 11, 12, 105, 1329, 2, 205, 4, 5, 6, 7, 1012, 479, 1013, 872, 1204, 1027, 214, -3, 1122, 1058, 1093, 891, 1028, 112, 112, 112, 31, 1078, 1029, 1030, 323, 323, 1031, 227, 945, 728, 1032, 578, 213, 410, 948, 1080, 1033, 728, 728, 728, 1044, 579, 128, 1443, 129, 130, 131, -403, 34, -402, 1095, 1104, 455, 41, 42, 455, 1103, 1105, 1146, 1146, 1146, 455, 1106, 35, 1110, 36, 1111, 1559, 537, 538, 539, 1112, 1113, 115, 653, 653, 1114, 1120, 2, 205, 4, 5, 6, 7, 1130, 728, 1131, 729, 775, 1137, 211, 214, 540, 993, 541, 1132, 542, 1320, 495, 1145, 323, 1166, 495, 398, 737, 1122, 1142, 399, 1442, 400, 1189, 1187, 529, 68, 529, 767, 1078, 529, 1188, 323, 529, 460, 401, 1190, 406, 1223, 209, 219, 1191, 653, 1205, 339, 653, 402, 1206, 1208, 75, 403, 105, 407, 1209, 214, 1217, 35, 404, 36, 1221, 1224, 674, 54, 1532, 47, 47, -3, 1229, 213, 1234, 1240, 500, 1249, 105, 112, 112, 675, 109, 1244, 138, 139, 1123, 61, 1078, 1251, 67, 1078, 1253, 41, 42, 653, 1256, 105, 1257, 1261, 653, 213, 737, 323, 441, 1265, 213, 1268, 175, 68, 1270, 1272, 1273, 1302, 829, 1274, 1207, 602, 112, 752, 1146, 1146, 1278, 1275, 753, 1276, 1122, 654, 1285, 172, 653, 1294, 75, 1295, 1061, 1323, 1078, 1305, 1306, 1308, 440, 1078, 1331, 1337, 1339, 54, 870, 1309, 1341, 1317, 1346, 602, 1345, 1347, 64, 116, 105, 879, 175, 1484, 1353, 175, 1354, 148, 1355, 479, 1357, 149, 1204, 150, 1363, 1078, 252, 1364, 1365, 1366, 1377, 47, 112, 1123, 1373, 1374, 214, 1384, 1385, 1313, 64, 112, 1393, 1394, 105, 1396, 1403, 653, 213, 1413, 1414, 1406, 653, 159, -404, 1417, 47, 47, 1428, 160, 1432, 175, 213, 1434, 214, 1436, 1437, 339, 729, 214, 653, 1438, 653, 1534, 1444, 220, 653, 1449, 1453, 653, 654, 47, 1542, 372, 1454, 1455, 1456, 653, 1078, 455, 166, 653, 171, 1078, 1368, 177, 178, 179, 37, 181, 173, 174, 40, 1458, 37, 1463, 173, 174, 40, 41, 42, 1078, 258, 1078, 232, 41, 42, 1078, 1468, 495, 1078, 1470, 416, 68, 175, 1472, 247, 248, 1078, 1474, 68, 1080, 1078, 1476, 1478, 375, 1123, 37, 1480, 182, 183, 40, 1487, 339, 1481, 436, 75, 105, 41, 42, 1486, 1509, 1488, 75, 328, 444, 213, 214, 1511, 54, 1499, 1513, 258, 349, 1517, 1518, 54, 1540, 1525, 1545, 105, 214, 1552, 1554, 609, 1541, 610, 105, 175, 479, 1061, 1556, 1204, 68, 611, 175, 479, 1562, 37, 1204, 182, 183, 40, 405, 1569, 1570, 1222, 807, 810, 41, 42, 1018, 808, 729, 809, 829, 75, 811, 423, 1322, 212, 428, 430, 729, 1520, 1572, 159, 1431, 1404, 54, 231, 1255, 1387, 1502, 528, 698, 1392, 410, 729, 1228, 105, 694, 695, 1108, 942, 700, 723, 447, 1109, 479, 1141, 450, 1204, 451, 826, 965, 1057, 8, 9, 10, 11, 12, 466, 973, 175, 900, 1332, 1119, 64, 742, 816, 817, 212, 480, 1506, 214, 1506, 818, 0, 0, 0, 175, 0, 487, 0, 175, 31, 0, 0, 0, 1418, 430, 0, 1426, 0, 0, 1298, 0, 0, 0, 0, 0, 0, 0, 0, 829, 0, 0, 327, 455, 0, 1506, 0, 1506, 34, 212, 0, 0, 0, 37, 0, 182, 183, 40, 37, 0, 182, 183, 40, 0, 41, 42, 73, 0, 486, 41, 42, 0, 1465, 0, 0, 0, 37, 1469, 182, 183, 40, 0, 175, 495, 1124, 323, 0, 41, 42, 0, 184, 0, 213, 258, 0, 1530, 603, 410, 73, 0, 185, 0, 631, 0, 0, 1531, 0, 1491, 0, 0, 212, 0, 0, 184, 0, 636, 690, 0, 0, 636, 0, 0, 258, 185, 0, 0, 0, 601, 608, 0, 0, 0, 0, 221, 0, 0, 870, 0, 0, 632, 633, 8, 9, 10, 11, 12, 0, 0, 212, 0, 732, 0, 212, 37, 0, 182, 183, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 506, 480, 31, 729, 729, 0, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 349, 0, 0, 528, 0, 480, 264, 0, 528, 1560, 0, 528, 0, 480, 34, 1560, 265, 214, 8, 9, 10, 11, 12, 0, 0, 0, 1560, 0, 0, 0, 1560, 0, 0, 455, 829, 0, 0, 352, 0, 724, 0, 0, 430, 0, 0, 729, 729, 31, 0, 0, 8, 9, 10, 11, 12, 212, 777, 738, 410, 64, 0, 0, 0, 125, 175, 125, 778, 430, 0, 0, 0, 430, 0, 0, 0, 34, 0, 0, 0, 31, 37, 0, 182, 183, 40, 0, 0, 213, 0, 0, 274, 41, 42, 0, 0, 0, 0, 175, 0, 0, 258, 349, 0, 0, 0, 0, 0, 34, 0, 0, 0, 448, 37, 175, 182, 183, 40, 609, 0, 610, 0, 0, 0, 41, 42, 0, 0, 611, 175, 0, 0, 0, 73, 0, 0, 0, 212, 73, 0, 0, 0, 8, 9, 10, 11, 12, 125, 819, 0, 698, 0, 410, 339, 212, 125, 0, 125, 125, 0, 700, 0, 125, 0, 125, 125, 636, 832, 0, 603, 918, 31, 0, 0, 0, 0, 0, 1124, 0, 925, 851, 0, 0, 927, 213, 0, 0, 212, 1330, 0, 8, 9, 10, 11, 12, 0, 0, 214, 603, 34, 0, 0, 0, 603, 37, 0, 182, 183, 40, 636, 0, 0, 349, 349, 349, 41, 42, 0, 0, 31, 729, 0, 0, 0, 0, 0, 175, 0, 729, 729, 729, 349, 0, 221, 125, 0, 0, 0, 0, 0, 0, 1530, 0, 410, 0, 0, 0, 34, 0, 724, 0, 1531, 37, 0, 182, 183, 40, 0, 0, 0, 480, 0, 0, 41, 42, 258, 738, 0, 0, 938, 1124, 0, 0, 0, 0, 0, 729, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 264, 0, 0, 0, 214, 0, 0, 0, 0, 0, 265, 73, 0, 480, 0, 0, 349, 0, 0, 31, 0, 212, 0, 0, 0, 964, 352, 0, 430, 0, 0, 73, 0, 0, 0, 0, 952, 0, 953, 73, 0, 0, 0, 0, 0, 956, 957, 34, 0, 212, 962, 0, 258, 738, 212, 0, 0, 0, 992, 0, 0, 0, 967, 0, 0, 352, 0, 971, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 0, 0, 0, 0, 0, 352, 1124, 73, 0, 0, 0, 959, 0, 610, 0, 1000, 0, 724, 0, 0, 0, 960, 0, 0, 554, 175, 0, 724, 0, 0, 349, 0, 636, 0, 0, 1024, 636, 832, 1505, 0, 1505, 0, 724, 0, 0, 0, 0, 0, 0, 352, 1101, 0, 1035, 0, 0, 0, 0, 0, 0, 0, 601, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1505, 0, 1505, 212, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 506, 0, 26, 27, 28, 0, 64, 323, 0, 0, 0, 31, 0, 0, 0, 0, 352, 0, 0, 1045, 1046, 1047, 1048, 0, 1050, 0, 0, 0, 636, 0, 8, 9, 10, 11, 12, 0, 0, 0, 76, 34, 1094, 0, 0, 0, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 1100, 41, 42, 0, 0, 31, 0, 352, 352, 352, 1116, 0, 0, 0, 0, 0, 76, 0, 430, 116, 212, 0, 0, 0, 0, 0, 352, 43, 0, 156, 125, 125, 0, 34, 0, 0, 349, 45, 37, 1115, 0, 0, 40, 0, 352, 1218, 0, 0, 0, 41, 42, 222, 0, 0, 0, 73, 0, 0, 0, 0, 125, 352, 0, 125, 125, 0, 125, 0, 125, 125, 0, 603, 0, 125, 125, 43, 0, 0, 0, 1143, 0, 0, 0, 0, 428, 146, 1151, 0, 0, 724, 724, 1155, 349, 349, 0, 0, 1159, 73, 1160, 0, 352, 0, 1162, 1163, 1164, 0, 0, 1167, 0, 0, 0, 0, 1203, 0, 0, 0, 1179, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1194, 1195, 0, 352, 0, 354, 0, 0, 0, 78, 0, 0, 0, 724, 724, 31, 0, 0, 125, 636, 0, 0, 0, 125, 125, 0, 0, 1225, 0, 125, 1227, 0, 0, 0, 0, 0, 175, 0, 0, 0, 0, 78, 0, 34, 0, 352, 0, 0, 37, 0, 0, 0, 40, 0, 0, 352, 0, 0, 352, 41, 42, 0, 0, 221, 0, 352, 0, 0, 1242, 0, 352, 0, 0, 0, 1246, 1247, 223, 738, 212, 0, 0, 0, 0, 0, 0, 744, 1258, 0, 0, 0, 0, 1262, 0, 0, 1266, 745, 1267, 0, 0, 1269, 76, 0, 0, 0, 0, 76, 412, 0, 0, 0, 0, 0, 1277, 420, 0, 0, 0, 0, 0, 0, 1299, 0, 0, 0, 0, 1284, 85, 1286, 1287, 1288, 1289, 0, 73, 0, 0, 0, 0, 258, 0, 0, 0, 0, 64, 1296, 0, 1297, 0, 0, 0, 171, 0, 1386, 0, 0, 0, 724, 0, 738, 85, 55, 55, 116, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1325, 1326, 0, 0, 0, 0, 0, 412, 0, 724, 0, 0, 0, 55, 0, 224, 0, 724, 724, 724, 0, 0, 222, 0, 0, 0, 0, 0, 349, 349, 0, 0, 0, 0, 175, 0, 0, 0, 352, 0, 0, 0, 1203, 0, 0, 55, 0, 0, 55, 0, 0, 1361, 1362, 0, 0, 0, 0, 0, 0, 0, 0, 1372, 0, 584, 0, 724, 0, 0, 0, 0, 0, 588, 0, 0, 591, 0, 116, 0, 0, 212, 0, 78, 0, 0, 0, 0, 78, 0, 0, 76, 0, 352, 352, 0, 352, 352, 0, 0, 0, 0, 0, 0, 0, 362, 354, 0, 0, 0, 0, 76, 0, 0, 0, 1405, 73, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 1409, 0, 1410, 1411, 1412, 0, 0, 1503, 0, 1507, 0, 347, 412, 0, 1416, 0, 420, 0, 354, 0, 0, 0, 0, 1427, 352, 352, 0, 0, 349, 0, 0, 0, 0, 0, 0, 0, 354, 0, 76, 1440, 0, 0, 0, 0, 1536, 0, 1538, 0, 0, 0, 212, 0, 0, 0, 116, 0, 223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 55, 1203, 85, 0, 354, 0, 0, 0, 1203, 0, 0, 0, 352, 1567, 0, 1568, 0, 0, 0, 1489, 1490, 0, 0, 0, 0, 412, 0, 0, 1575, 1576, 55, 0, 1495, 0, 125, 0, 0, 0, 0, 1495, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 221, 0, 0, 0, 0, 0, 1203, 355, 0, 0, 0, 0, 78, 1555, 354, 0, 0, 1529, 0, 0, 78, 1535, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 0, 352, 0, 0, 0, 0, 224, 0, 0, 0, 355, 0, 0, 0, 1557, 0, 1558, 0, 0, 0, 0, 0, 0, 354, 354, 354, 584, 584, 355, 0, 78, 352, 0, 0, 0, 0, 0, 0, 0, 352, 352, 352, 354, 0, 1573, 1574, 0, 0, 0, 0, 352, 352, 1577, 1578, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 73, 0, 0, 125, 0, 0, 0, 76, 355, 85, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 362, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 911, 354, 0, 0, 914, 0, 347, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 362, 0, 85, 0, 0, 0, 0, 412, 354, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 352, 0, 0, 0, 0, 55, 0, 355, 355, 355, 0, 31, 0, 0, 362, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 355, 0, 0, 0, 354, 0, 0, 354, 0, 0, 0, 0, 222, 34, 354, 0, 0, 0, 355, 354, 0, 347, 0, 73, 0, 0, 0, 0, 0, 78, 73, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 584, 0, 0, 0, 0, 78, 0, 0, 355, 0, 0, 0, 123, 126, 127, 76, 0, 73, 0, 0, 347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 347, 347, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 253, 347, 254, 362, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 354, 355, 0, 0, 0, 0, 223, 0, 355, 0, 0, 0, 0, 355, 412, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 362, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 354, 354, 0, 354, 354, 0, 347, 0, 0, 31, 362, 0, 0, 0, 395, 0, 0, 0, 0, 0, 0, 0, 78, 76, 414, 415, 0, 0, 0, 419, 0, 421, 422, 0, 0, 0, 0, 34, 0, 35, 1157, 36, 37, 0, 173, 174, 40, 0, 0, 0, 0, 0, 362, 41, 42, 0, 1169, 0, 354, 354, 0, 0, 362, 0, 0, 362, 0, 0, 0, 0, 224, 0, 362, 0, 0, 0, 0, 362, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 347, 26, 27, 28, 0, 0, 0, 347, 355, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1237, 0, 0, 34, 0, 0, 85, 0, 37, 0, 336, 337, 40, 0, -294, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 355, 355, 0, 355, 355, 0, 222, 0, 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 0, 643, 0, 338, 0, 78, 0, 0, 0, 0, 76, 634, 0, 164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 354, 0, 0, 0, 0, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 355, 355, 0, 0, 0, 0, 362, 0, 281, 282, 0, 283, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 55, 354, 354, 354, 0, 0, 0, 0, 0, 0, 0, 0, 354, 354, 0, 284, 164, 347, 0, 0, 0, 285, 271, 0, 0, 286, 76, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 362, 362, 0, 362, 362, 355, 293, 0, 0, 0, 0, 0, 354, 0, 164, 0, 0, 0, 0, 0, 0, 513, 0, 85, 368, 0, 0, 0, 374, 0, 296, 380, 298, 299, 300, 301, 347, 347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 0, 0, 0, 0, 0, 0, 0, 55, 0, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 164, 0, 0, 0, 0, 0, 355, 0, 355, 0, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 164, 461, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 362, 355, 355, 355, 0, 0, 0, 0, 0, 374, 0, 0, 355, 355, 0, 0, 0, 164, 821, 822, 0, 0, 0, 0, 0, 0, 78, 76, 0, 0, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 461, 0, 224, 164, 0, 0, 0, 856, 355, 0, 859, 860, 0, 863, 0, 865, 866, 0, 0, 0, 867, 868, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 55, 0, 362, 0, 362, 0, 0, 0, 0, 0, 0, 76, 0, 0, 0, 606, 0, 0, 0, 0, 630, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 210, 0, 0, 0, 55, 362, 362, 362, 0, 0, 230, 0, 234, 0, 236, 0, 362, 362, 0, 0, 0, 245, 0, 0, 355, 0, 0, 0, 0, 0, 85, 0, 943, 944, 0, 0, 0, 0, 946, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 347, 0, 210, 362, 234, 236, 245, 0, 55, 164, 164, 0, 0, 55, 0, 0, 368, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 461, 0, 0, 461, 0, 0, 0, 0, 210, 461, 55, 474, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 741, 0, 26, 27, 28, 0, 0, 0, 0, 0, 78, 31, 164, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 155, 461, 0, 461, 0, 0, 461, 0, 164, 461, 210, 0, 234, 236, 245, 0, 34, 0, 35, 0, 36, 368, 0, 38, 39, 0, 0, 0, 347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 250, 0, 210, 0, 0, 85, 210, 0, 55, 0, 255, 0, 0, 0, 0, 0, 0, -3, 0, 0, 0, 0, 504, 0, 0, 0, 0, 0, 164, 0, 0, 55, 0, 0, 0, 0, 0, 0, 55, 0, 368, 0, 606, 0, 0, 837, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 155, 0, 0, 0, 0, 606, 210, 0, 0, 0, 606, 0, 0, 0, 385, 0, 0, 0, 0, 368, 368, 368, 0, 0, 0, 55, 0, 210, 0, 0, 0, 0, 234, 236, 0, 0, 0, 417, 368, 0, 245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432, 0, 0, 0, 0, 0, 0, 1034, 0, 437, 8, 9, 10, 11, 12, 0, 0, 0, 0, 445, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 461, 471, 0, 0, 0, 0, 481, 210, 0, 0, 0, 0, 210, 0, 210, 0, 0, 0, 368, 489, 961, 0, 0, 284, 34, 499, 0, 503, 0, 285, 0, 210, 0, 286, 210, 210, 287, 288, 289, 290, 41, 42, 0, 291, 292, 533, 0, 0, 0, 0, 210, 293, 0, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 294, 0, 378, 0, 1233, 210, 0, 0, 0, 296, 827, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 593, 0, 0, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 0, 0, 0, 630, 0, 0, 368, 0, 0, 0, 644, 0, 0, 0, 645, 646, 0, 648, 0, 0, 0, 0, 0, 0, 660, 661, 0, 662, 663, 0, 664, 0, 665, 0, 0, 0, 0, 0, 1177, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 593, 0, 0, 0, 0, 0, 0, 0, 680, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 691, 1321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 697, 0, 0, 0, 284, 34, 461, 0, 0, 0, 285, 210, 0, 0, 286, 0, 210, 287, 288, 289, 290, 41, 42, 733, 291, 292, 0, 0, 0, 736, 0, 0, 293, 0, 471, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 164, 378, 0, 0, 0, 0, 0, 0, 296, 1178, 298, 299, 300, 301, 0, 0, 368, 0, 0, 0, 0, 0, 0, 773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 606, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 368, 368, 0, 0, 815, 0, 0, 0, 0, 0, 0, 0, 0, 825, 0, 0, 0, 0, 504, 0, 828, 0, 0, 281, 282, 835, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 850, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 0, 0, 0, 0, 0, 285, 0, 461, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 890, 0, 210, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 294, 0, 378, 0, 0, 379, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 210, 0, 835, 0, 0, 0, 0, 0, 741, 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, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 217, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 968, 969, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 986, 38, 39, 40, 0, 0, 210, 741, 341, 363, 41, 42, 0, 0, 0, 0, 0, 1001, 0, 1002, 0, 0, 0, 1006, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 43, 0, 44, 0, 0, 0, 413, 0, 0, 0, 45, 0, 0, 413, 0, 0, 0, 0, 0, 0, 368, 368, 0, 0, 210, 0, 0, 0, 0, 217, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 1039, 0, 0, 210, 0, 0, 31, 1040, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 1042, 0, 1043, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 34, 0, 1055, 0, 0, 109, 0, 38, 39, 1059, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 1097, 0, 0, 1098, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598, 0, 44, 0, 0, 0, 0, 0, 0, 0, 110, 0, 413, 0, 0, 0, 368, 0, 0, 210, 413, 589, 0, 413, 592, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 640, 0, 0, 341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461, 0, 461, 0, 0, 0, 0, 281, 282, 0, 283, 0, 413, 0, 0, 1161, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 284, 461, 321, 461, 0, 0, 649, 0, 138, 139, 286, 363, 345, 287, 650, 289, 290, 41, 42, 0, 291, 292, 0, 0, 381, 381, 0, 0, 293, 0, 0, 164, 0, 0, 413, 533, 0, 0, 0, 0, 0, 0, 1226, 294, 0, 651, 0, 652, 379, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 363, 0, 0, 1239, 0, 0, 0, 0, 1241, 0, 0, 0, 0, 0, 0, 0, 1245, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 341, 363, 0, 0, 1271, 0, 0, 0, 0, 485, 0, 0, 0, 0, 0, 0, 1279, 0, 0, 1280, 0, 1281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1290, 1291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1304, 0, 0, 0, 0, 0, 0, 0, 830, 363, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 622, 0, 622, 622, 0, 0, 0, 1327, 0, 622, 0, 0, 514, 0, 516, 519, 0, 0, 0, 869, 363, 0, 522, 523, 0, 363, 0, 516, 516, 0, 0, 0, 0, 0, 363, 363, 363, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 381, 0, 0, 0, 0, 363, 0, 0, 0, 0, 413, 912, 0, 0, 413, 915, 0, 0, 0, 0, 0, 917, 0, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 363, 413, 0, 413, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 281, 282, 1397, 283, 1398, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 1407, 0, 1408, 0, 0, 0, 0, 0, 363, 622, 0, 0, 284, 0, 0, 0, 0, 0, 285, 0, 1415, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 735, 291, 292, 0, 0, 1433, 1435, 0, 0, 293, 210, 0, 0, 341, 363, 0, 0, 1441, 413, 413, 1245, 0, 0, 0, 294, 0, 378, 0, 0, 0, 0, 0, 812, 296, 380, 298, 299, 300, 301, 769, 0, 0, 1464, 0, 0, 0, 0, 0, 0, 0, 0, 1471, 782, 0, 1473, 0, 1475, 1477, 1479, 769, 413, 0, 769, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 792, 793, 830, 363, 0, 0, 0, 622, 0, 622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 622, 0, 0, 814, 0, 0, 1510, 0, 1512, 0, 0, 1245, 0, 823, 0, 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, 782, 1524, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 830, 0, 889, 0, 0, 0, 0, 0, 413, 0, 0, 381, 0, 0, 413, 0, 516, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 622, 622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 413, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 413, 1158, 26, 27, 28, 0, 0, 0, 0, 0, 363, 31, 453, 0, 0, 0, 413, 1170, 0, 622, 622, 1175, 0, 0, 0, 0, 0, 0, 516, 0, 0, 363, 363, 0, 0, 0, 0, 0, 0, 34, 782, 0, 991, 0, 0, 0, 38, 39, 996, 0, 516, 0, 0, 0, 0, 1005, 0, 0, 0, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 454, 0, 0, 0, 711, 0, 0, 0, 110, 830, 413, 1238, 0, 0, 0, 0, 1022, 1023, 0, 345, 0, 0, 622, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 516, 1053, 0, 0, 0, 381, 0, 0, -517, 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, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 341, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 363, 34, 0, 35, 0, 36, 37, 321, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 1139, 1140, 0, 0, 0, 0, 0, 381, 0, 0, 0, 0, 0, 996, 0, 0, 1149, 0, 769, 0, 43, 0, 44, 0, 0, 0, 363, 363, 0, 0, 45, 0, 0, 0, 0, 0, 0, 0, 1165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1180, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 0, 1198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 0, 0, 996, 996, 0, 0, 0, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1230, 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, 25, 0, 516, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 363, 0, 0, 0, 0, 996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 889, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 1282, 1283, 41, 42, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, -521, 0, 0, 0, 45, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 413, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 516, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 413, 413, 516, 516, 0, 996, 294, 0, 378, 0, 0, 0, 0, 781, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 413, 0, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 1062, 1063, 1390, 1064, 769, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 34, 0, 35, 0, 36, 649, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 1076, 0, 0, 170, 0, 0, 0, 296, 297, 298, 299, 300, 301, 0, 0, 0, 0, 1077, 0, 1450, 0, -129, 0, 0, 0, 0, 0, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 516, 36, 285, 0, 38, 39, 286, 1516, 0, 287, 288, 289, 290, 41, 42, 284, 291, 292, 0, 0, 0, 285, 0, 0, 293, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 294, 0, 1076, 0, 293, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 0, 0, 0, 0, 294, 321, 378, 0, -129, 993, 0, 0, 0, 296, 380, 298, 299, 300, 301, 516, 516, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 109, 0, 38, 39, 0, 0, 294, 0, 44, 0, 0, 41, 42, 0, 0, 296, 297, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 31, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 294, 0, 343, -294, 0, 0, 0, 781, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 31, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 294, 0, 931, -295, 0, 0, 0, 781, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 931, 0, 0, 0, 0, 781, 0, 296, 600, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 206, 39, 0, 0, 294, 0, 343, 0, 0, 0, 0, 0, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 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, 284, 34, 0, 35, 0, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 931, 0, 0, 0, 0, 0, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 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, 284, 34, 0, 35, 0, 36, 285, 0, 206, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 1020, 0, 0, 0, 0, 0, 0, 296, 1021, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 206, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 206, 39, 0, 0, 294, 0, 378, 0, 0, 0, 0, 0, 0, 296, 380, 298, 299, 300, 301, 204, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 270, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 492, 493, 494, 34, 0, 35, 31, 36, 37, 0, 206, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 43, 0, 207, 0, 0, 0, 0, 0, 0, 0, 208, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -294, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 44, 30, 0, 0, 31, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 204, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 44, 31, 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 207, 31, 0, 0, 0, 0, 0, 0, 270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 206, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 207, 0, 0, 0, 0, 0, 0, 0, 208, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 34, 0, 35, 0, 36, 0, 31, 38, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 38, 39, -400, 687, 31, 0, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 643, 36, 338, 0, 38, 39, 0, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 0, 0, 0, 0, 0, 0, 0, 634, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 34, 0, 35, 0, 36, 0, 31, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1371, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 687, -294, 0, 0, 0, 0, 41, 42, 634, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 338, 26, 27, 28, 0, 0, 0, 0, 110, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 206, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 269, 31, 0, 0, 0, 0, 0, 0, 629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 687, 31, 0, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 599, 31, 0, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 0, 0, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 525, 0, 0, 170, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, 294, 0, 599, -3, 0, 41, 42, 0, 0, 296, 600, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 338, 0, 26, 27, 28, 0, 0, 0, 110, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 453, 649, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, -35, 766, 0, 0, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 454, 0, 26, 27, 28, 0, 0, 0, 110, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 284, 34, 26, 27, 28, 0, 285, 0, 38, 39, 286, 31, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 295, 38, 39, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 643, 0, 338, 0, 281, 282, 31, 283, 0, 0, 634, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 284, 34, 26, 27, 28, 0, 285, 0, 38, 39, 286, 31, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 156, 38, 39, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 256, 0, 281, 282, 31, 283, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 0, 0, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 599, 0, 0, 0, 0, 0, 0, 296, 600, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 38, 39, 40, 0, 294, 0, 378, 0, 0, 41, 42, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 0, 0, 45, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 37, 0, 206, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, 0, 43, 0, 269, 0, 41, 42, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643, 0, 338, 0, 0, 0, 0, 0, 0, 0, 634, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, -294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, -294, 643, 0, 338, 0, 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643, 0, 338, 0, 0, 0, 0, 0, 0, 0, 634, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 453, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 0, 0, 0, 34, 0, 0, 31, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, -294, 0, 454, 0, 0, 0, 947, 0, 0, 0, 110, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 338, 26, 27, 28, 0, 0, 0, 0, 110, 0, 31, 453, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 34, 0, 0, 31, 0, 0, 0, 38, 39, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 0, 0, 454, 0, 0, 0, 1235, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 156, 206, 39, 0, 0, 0, 0, 0, 110, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 269, 31, 0, 0, 0, 0, 0, 0, 270, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 256, 38, 39, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 338, 0, 0, 0, 0, 0, 0, 0, 634, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 454, 26, 27, 28, 0, 0, 0, 0, 110, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 206, 39, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 0, 0, 0, 269, 0, 0, 0, 0, 0, 0, 0, 629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 599, 38, 39, 0, 0, 0, 0, 0, 634, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 338, 31, 0, 0, 0, 0, 0, 0, 110, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 0, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 44, 206, 39, 0, 31, 0, 281, 282, 110, 283, 1063, 0, 1064, 0, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 1549, 1073, 0, 0, 0, 1074, 1075, 34, 33, 35, 284, 36, 0, 0, 38, 39, 649, 0, 0, 0, 286, 629, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -413, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 1077, 0, 281, 282, -129, 283, 1063, 0, 1064, 0, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 0, 0, 0, 0, 0, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 1077, 0, 0, 0, -129, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 281, 282, 0, 283, 1063, 0, 1064, 1419, 1420, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 1549, 1073, 0, 0, 0, 1074, 1075, 34, 33, 35, 284, 36, 0, 0, 38, 39, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 1328, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 281, 282, 1077, 283, 1063, 0, 1064, 1419, 1420, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 0, 0, 0, 0, 0, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 281, 282, 1077, 283, 1063, 0, 1064, 0, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 0, 0, 0, 0, 0, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 1077, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 281, 282, 0, 283, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 284, 291, 292, 0, 0, 0, 649, 0, 0, 293, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 294, 0, 378, 0, 293, 281, 282, 0, 283, 296, 734, 298, 299, 300, 301, 0, 0, 0, 0, 294, 0, 785, 0, 0, 281, 282, 0, 283, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 284, 291, 292, 0, 0, 0, 285, 0, 0, 293, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 294, 0, 378, 0, 293, 281, 282, 0, 283, 296, 827, 298, 299, 300, 301, 0, 0, 0, 0, 294, 0, 0, 0, 0, 281, 282, 0, 283, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 284, 291, 292, 0, 0, 0, 285, 0, 0, 293, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 518, 0, 0, 0, 293, 0, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 521, 0, 0, 0, 0, 0, 0, 0, 0, 296, 380, 298, 299, 300, 301, 204, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 206, 39, 474, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 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, 34, 0, 35, 0, 36, 0, 0, 206, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1356)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 0, 184, 43, 698, 115, 184, 43, 184, 43, 238, 55, 698, 1, 167, 168, 698, 104, 203, 543, 294, 184, 455, 185, 218, 280, 278, 456, 29, 30, 656, 32, 184, 32, 348, 611, 184, 520, 185, 759, 611, 1, 43, 184, 45, 1006, 45, 186, 629, 499, 579, 609, 0, 503, 55, 902, 999, 462, 1042, 1043, 61, 105, 61, 64, 108, 64, 67, 154, 67, 902, 348, 780, 43, 43, 609, 609, 32, 39, 51, 67, 81, 82, 264, 777, 32, 1419, 264, 609, 264, 1338, 200, 777, 609, 28, 1055, 777, 529, 723, 63, 95, 1062, 264, 609, 265, 105, 699, 39, 108, 110, 417, 82, 43, 264, 699, 115, 117, 264, 109, 265, 1475, 497, 260, 261, 264, 609, 64, 363, 721, 82, 437, 367, 39, 0, 612, 130, 721, 109, 445, 110, 618, 1074, 1075, 344, 78, 184, 146, 82, 146, 184, 111, 184, 425, 426, 154, 1510, 0, 1512, 111, 159, 1493, 159, 1043, 425, 426, 32, 107, 227, 132, 0, 1, 109, 109, 109, 217, 111, 255, 109, 39, 111, 0, 1, 283, 119, 184, 185, 246, 185, 32, 0, 131, 39, 0, 1441, 72, 296, 297, 64, 44, 45, 200, 32, 109, 39, 111, 83, 84, 308, 208, 1142, 208, 680, 32, 39, 184, 184, 409, 217, 495, 812, 220, 32, 220, 744, 32, 264, 110, 227, 271, 264, 1062, 264, 116, 64, 109, 278, 67, 613, 744, 501, 513, 617, 242, 344, 405, 518, 246, 67, 521, 11, 250, 251, 250, 184, 132, 341, 131, 511, 520, 405, 744, 109, 638, 111, 264, 265, 642, 265, 0, 115, 109, 271, 111, 109, 109, 111, 851, 45, 278, 380, 119, 851, 839, 109, 370, 111, 395, 82, 489, 110, 718, 819, 251, 293, 455, 250, 117, 890, 611, 85, 32, 1009, 575, 250, 347, 839, 839, 1290, 1291, 455, 45, 43, 82, 45, 423, 1257, 44, 45, 839, 112, 429, 364, 117, 839, 586, 368, 487, 113, 328, 61, 328, 114, 64, 839, 293, 67, 116, 82, 417, 109, 96, 487, 110, 1304, 3, 112, 815, 347, 348, 116, 44, 45, 1071, 220, 3, 839, 825, 489, 437, 116, 1241, 597, 72, 841, 364, 110, 445, 123, 368, 82, 72, 840, 117, 83, 84, 110, 72, 145, 0, 379, 1226, 83, 84, 250, 691, 978, 114, 83, 84, 220, 960, 644, 645, 978, 1226, 395, 109, 96, 129, 600, 131, 111, 959, 0, 640, 405, 250, 405, 1526, 662, 1291, 255, 109, 513, 146, 515, 1009, 119, 518, 250, 114, 521, 676, 423, 123, 959, 959, 159, 629, 429, 250, 431, 1415, 634, 1526, 1553, 132, 1496, 72, 250, 208, 1021, 250, 1502, 255, 131, 532, 1407, 1408, 83, 84, 116, 184, 185, 1546, 455, 557, 558, 559, 112, 460, 1553, 109, 116, 1523, 465, 1059, 132, 116, 1528, 238, 110, 1304, 208, 474, 471, 208, 111, 117, 479, 109, 110, 349, 736, 132, 115, 116, 487, 220, 487, 109, 491, 131, 491, 80, 495, 697, 873, 498, 600, 500, 131, 270, 1464, 239, 657, 938, 758, 762, 109, 1471, 643, 644, 645, 946, 474, 1141, 698, 250, 968, 520, 698, 1004, 698, 928, 111, 109, 113, 666, 297, 662, 117, 264, 109, 1415, 270, 698, 537, 851, 700, 540, 1134, 542, 543, 491, 109, 1116, 698, 116, 1134, 116, 698, 1030, 1031, 700, 664, 72, 110, 698, 294, 992, 520, 297, 1524, 132, 697, 132, 83, 84, 110, 1039, 1040, 773, 417, 851, 828, 344, 110, 537, 1423, 112, 540, 110, 542, 543, 1304, 116, 630, 116, 965, 590, 30, 110, 437, 830, 111, 328, 597, 834, 1192, 1193, 445, 132, 646, 736, 110, 417, 1192, 1193, 609, 696, 611, 691, 480, 90, 91, 348, 119, 661, 643, 644, 645, 124, 125, 491, 109, 437, 111, 1097, 1098, 630, 590, 1464, 734, 445, 80, 1132, 116, 662, 1471, 1136, 773, 81, 82, 72, 112, 646, 491, 76, 116, 126, 127, 652, 132, 733, 83, 84, 425, 426, 116, 491, 661, 1381, 663, 664, 665, 111, 110, 113, 116, 110, 491, 117, 405, 1102, 132, 116, 1521, 489, 780, 491, 109, 1526, 491, 680, 132, 772, 964, 924, 116, 115, 119, 1524, 109, 116, 888, 828, 109, 698, 111, 700, 116, 1546, 109, 663, 132, 665, 119, 116, 1553, 132, 109, 736, 713, 116, 758, 909, 132, 453, 719, 64, 456, 110, 455, 132, 68, 827, 462, 116, 72, 132, 731, 75, 501, 77, 72, 10, 11, 12, 13, 14, 84, 894, 970, 744, 745, 83, 84, 110, 1468, 72, 1470, 520, 109, 116, 111, 132, 116, 758, 491, 3, 83, 84, 495, 631, 39, 112, 10, 11, 12, 13, 14, 731, 132, 111, 110, 110, 938, 513, 109, 515, 116, 116, 518, 112, 946, 521, 109, 116, 110, 598, 132, 938, 67, 112, 116, 39, 1320, 116, 110, 946, 110, 1271, 242, 828, 116, 1525, 116, 109, 1402, 1279, 1280, 1281, 109, 45, 111, 110, 1402, 586, 815, 1021, 110, 116, 112, 67, 110, 1419, 116, 114, 825, 61, 116, 600, 64, 1419, 110, 67, 1530, 109, 839, 111, 116, 131, 132, 840, 1530, 1, 691, 72, 1530, 1034, 851, 76, 72, 114, 74, 75, 724, 1327, 83, 84, 629, 64, 72, 83, 84, 634, 1103, 211, 132, 110, 738, 121, 122, 83, 84, 116, 609, 1132, 611, 691, 132, 1136, 1137, 114, 109, 697, 111, 109, 733, 45, 109, 72, 111, 894, 119, 76, 88, 89, 1492, 1493, 901, 902, 83, 84, 1057, 110, 1492, 1493, 82, 1042, 110, 116, 110, 116, 146, 109, 116, 111, 116, 1021, 110, 733, 109, 924, 110, 109, 116, 159, 109, 112, 116, 1205, 1206, 109, 1208, 111, 82, 938, 119, 379, 1214, 120, 902, 1217, 109, 946, 111, 129, 104, 564, 565, 566, 567, 185, 110, 109, 159, 111, 128, 1161, 1062, 773, 94, 964, 832, 698, 72, 700, 74, 75, 64, 92, 93, 85, 86, 87, 208, 83, 84, 115, 116, 969, 718, 984, 109, 110, 111, 81, 220, 145, 116, 117, 993, 109, 110, 111, 1251, 109, 154, 111, 1001, 113, 114, 1004, 703, 1006, 705, 351, 114, 353, 111, 744, 745, 131, 1124, 110, 111, 220, 58, 59, 460, 109, 116, 109, 984, 465, 835, 112, 1161, 109, 110, 111, 115, 116, 902, 109, 110, 111, 109, 1241, 112, 1001, 1039, 1040, 1004, 110, 1006, 110, 204, 58, 59, 60, 208, 110, 1055, 258, 110, 902, 498, 262, 500, 116, 117, 110, 1065, 159, 110, 1068, 1069, 1070, 902, 112, 1505, 116, 117, 72, 1178, 74, 75, 76, 111, 902, 238, 239, 1339, 112, 83, 84, 1343, 131, 902, 116, 1093, 902, 114, 1055, 328, 441, 44, 45, 1097, 1098, 109, 1377, 112, 1065, 839, 110, 1068, 1069, 1070, 110, 109, 72, 270, 74, 75, 273, 851, 1263, 1264, 1265, 1555, 1124, 83, 84, 220, 112, 4, 5, 6, 7, 8, 9, 1221, 560, 561, 969, 294, 112, 112, 297, 562, 563, 568, 569, 349, 112, 969, 117, 109, 3, 29, 117, 117, 114, 1024, 1290, 10, 11, 12, 13, 14, 72, 258, 74, 75, 76, 262, 116, 110, 110, 114, 405, 83, 84, 112, 10, 11, 12, 13, 14, 117, 115, 110, 341, 115, 39, 344, 116, 1445, 115, 928, 69, 1062, 71, 109, 116, 1199, 110, 109, 970, 111, 110, 132, 938, 39, 363, 117, 110, 119, 367, 652, 946, 370, 67, 1204, 1062, 117, 110, 1221, 72, 110, 74, 75, 1226, 110, 430, 110, 3, 1062, 964, 83, 84, 67, 116, 10, 11, 12, 13, 14, 1062, 1239, 4, 5, 6, 7, 8, 9, 110, 1062, 110, 1021, 1062, 110, 349, 132, 1245, 115, 29, 111, 110, 1263, 1264, 1265, 39, 1226, 110, 110, 425, 426, 110, 33, 713, 1271, 110, 109, 480, 111, 719, 902, 110, 1279, 1280, 1281, 110, 119, 72, 1398, 74, 75, 76, 110, 67, 110, 131, 110, 453, 83, 84, 456, 112, 110, 1263, 1264, 1265, 462, 110, 69, 115, 71, 110, 1540, 85, 86, 87, 116, 112, 474, 1320, 1321, 112, 110, 4, 5, 6, 7, 8, 9, 110, 1327, 110, 471, 116, 116, 1203, 430, 109, 114, 111, 117, 113, 114, 499, 112, 501, 110, 503, 1530, 1161, 1338, 116, 1530, 1397, 1530, 110, 116, 513, 1226, 515, 1320, 1321, 518, 116, 520, 521, 1102, 1530, 110, 1531, 117, 1203, 1204, 112, 1375, 109, 532, 1378, 1530, 109, 109, 1226, 1530, 1204, 1531, 109, 480, 109, 69, 1530, 71, 112, 132, 1555, 1226, 1505, 1397, 1398, 115, 110, 603, 110, 110, 129, 114, 1226, 1407, 1408, 1555, 72, 115, 74, 75, 1245, 1226, 1375, 112, 1226, 1378, 132, 83, 84, 1423, 110, 1245, 116, 112, 1428, 631, 1241, 586, 1299, 116, 636, 112, 55, 1304, 110, 110, 110, 47, 597, 112, 1065, 600, 1446, 109, 1407, 1408, 110, 112, 114, 112, 1441, 894, 112, 53, 1458, 112, 1304, 112, 901, 115, 1423, 132, 132, 132, 1299, 1428, 110, 115, 117, 1304, 629, 132, 110, 132, 115, 634, 112, 112, 0, 1, 1304, 640, 105, 1446, 112, 108, 112, 1530, 112, 1304, 112, 1530, 1304, 1530, 112, 1458, 96, 112, 110, 110, 109, 1505, 1506, 1338, 112, 112, 603, 109, 109, 60, 32, 1515, 110, 110, 1338, 114, 132, 1521, 724, 112, 112, 117, 1526, 45, 110, 112, 1530, 1531, 110, 1531, 96, 154, 738, 96, 631, 109, 109, 696, 680, 636, 1544, 132, 1546, 1506, 115, 67, 1550, 112, 110, 1553, 993, 1555, 1515, 1555, 110, 110, 110, 1561, 1521, 718, 51, 1565, 53, 1526, 116, 56, 57, 58, 72, 60, 74, 75, 76, 42, 72, 117, 74, 75, 76, 83, 84, 1544, 104, 1546, 75, 83, 84, 1550, 132, 748, 1553, 132, 192, 1464, 217, 110, 87, 88, 1561, 110, 1471, 1226, 1565, 96, 96, 109, 1441, 72, 132, 74, 75, 76, 132, 772, 110, 215, 1464, 1441, 83, 84, 110, 110, 117, 1471, 146, 225, 832, 724, 110, 1464, 132, 115, 154, 155, 112, 112, 1471, 109, 132, 115, 1464, 738, 115, 110, 109, 132, 111, 1471, 271, 1464, 1093, 110, 1464, 1524, 119, 278, 1471, 132, 72, 1471, 74, 75, 76, 185, 110, 110, 1077, 570, 573, 83, 84, 830, 571, 815, 572, 834, 1524, 574, 200, 1226, 64, 203, 204, 825, 1493, 1565, 208, 1383, 1343, 1524, 74, 1137, 1314, 1471, 294, 109, 1321, 111, 840, 1093, 1524, 453, 453, 946, 705, 119, 465, 229, 948, 1524, 993, 233, 1524, 235, 590, 748, 894, 10, 11, 12, 13, 14, 244, 758, 347, 658, 1245, 966, 250, 491, 578, 578, 116, 255, 1473, 832, 1475, 578, -1, -1, -1, 364, -1, 265, -1, 368, 39, -1, -1, -1, 1375, 273, -1, 1378, -1, -1, 1199, -1, -1, -1, -1, -1, -1, -1, -1, 924, -1, -1, 1540, 928, -1, 1510, -1, 1512, 67, 159, -1, -1, -1, 72, -1, 74, 75, 76, 72, -1, 74, 75, 76, -1, 83, 84, 0, -1, 1530, 83, 84, -1, 1423, -1, -1, -1, 72, 1428, 74, 75, 76, -1, 431, 968, 969, 970, -1, 83, 84, -1, 109, -1, 1024, 341, -1, 109, 344, 111, 32, -1, 119, -1, 350, -1, -1, 119, -1, 1458, -1, -1, 220, -1, -1, 109, -1, 363, 442, -1, -1, 367, -1, -1, 370, 119, -1, -1, -1, 344, 345, -1, -1, -1, -1, 67, -1, -1, 1021, -1, -1, 356, 357, 10, 11, 12, 13, 14, -1, -1, 258, -1, 476, -1, 262, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, 278, 417, 39, 1039, 1040, -1, -1, -1, 26, 27, 28, -1, -1, -1, -1, -1, 432, -1, -1, 513, -1, 437, 109, -1, 518, 1544, -1, 521, -1, 445, 67, 1550, 119, 1024, 10, 11, 12, 13, 14, -1, -1, -1, 1561, -1, -1, -1, 1565, -1, -1, 1102, 1103, -1, -1, 155, -1, 471, -1, -1, 474, -1, -1, 1097, 1098, 39, -1, -1, 10, 11, 12, 13, 14, 349, 109, 489, 111, 491, -1, -1, -1, 97, 597, 99, 119, 499, -1, -1, -1, 503, -1, -1, -1, 67, -1, -1, -1, 39, 72, -1, 74, 75, 76, -1, -1, 1203, -1, -1, 124, 83, 84, -1, -1, -1, -1, 630, -1, -1, 532, 533, -1, -1, -1, -1, -1, 67, -1, -1, -1, 229, 72, 646, 74, 75, 76, 109, -1, 111, -1, -1, -1, 83, 84, -1, -1, 119, 661, -1, -1, -1, 250, -1, -1, -1, 430, 255, -1, -1, -1, 10, 11, 12, 13, 14, 180, 579, -1, 109, -1, 111, 1221, 447, 188, -1, 190, 191, -1, 119, -1, 195, -1, 197, 198, 597, 598, -1, 600, 679, 39, -1, -1, -1, -1, -1, 1245, -1, 688, 611, -1, -1, 692, 1299, -1, -1, 480, 1239, -1, 10, 11, 12, 13, 14, -1, -1, 1203, 629, 67, -1, -1, -1, 634, 72, -1, 74, 75, 76, 640, -1, -1, 643, 644, 645, 83, 84, -1, -1, 39, 1271, -1, -1, -1, -1, -1, 758, -1, 1279, 1280, 1281, 662, -1, 350, 267, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 67, -1, 680, -1, 119, 72, -1, 74, 75, 76, -1, -1, -1, 691, -1, -1, 83, 84, 696, 697, -1, -1, 700, 1338, -1, -1, -1, -1, -1, 1327, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 109, -1, -1, -1, 1299, -1, -1, -1, -1, -1, 119, 417, -1, 733, -1, -1, 736, -1, -1, 39, -1, 603, -1, -1, -1, 745, 432, -1, 748, -1, -1, 437, -1, -1, -1, -1, 725, -1, 727, 445, -1, -1, -1, -1, -1, 734, 735, 67, -1, 631, 739, -1, 772, 773, 636, -1, -1, -1, 778, -1, -1, -1, 751, -1, -1, 471, -1, 756, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, -1, -1, -1, -1, -1, 489, 1441, 491, -1, -1, -1, 109, -1, 111, -1, 782, -1, 815, -1, -1, -1, 119, -1, -1, 131, 924, -1, 825, -1, -1, 828, -1, 830, -1, -1, 833, 834, 835, 1473, -1, 1475, -1, 840, -1, -1, -1, -1, -1, -1, 533, 926, -1, 850, -1, -1, -1, -1, -1, -1, -1, 827, -1, -1, -1, 724, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1510, -1, 1512, 738, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 758, -1, 30, 31, 32, -1, 902, 1540, -1, -1, -1, 39, -1, -1, -1, -1, 598, -1, -1, 884, 885, 886, 887, -1, 889, -1, -1, -1, 924, -1, 10, 11, 12, 13, 14, -1, -1, -1, 0, 67, 905, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, 919, 83, 84, -1, -1, 39, -1, 643, 644, 645, 960, -1, -1, -1, -1, -1, 32, -1, 968, 969, 832, -1, -1, -1, -1, -1, 662, 109, -1, 111, 582, 583, -1, 67, -1, -1, 986, 119, 72, 958, -1, -1, 76, -1, 680, 1073, -1, -1, -1, 83, 84, 67, -1, -1, -1, 691, -1, -1, -1, -1, 612, 697, -1, 615, 616, -1, 618, -1, 620, 621, -1, 1021, -1, 625, 626, 109, -1, -1, -1, 998, -1, -1, -1, -1, 1034, 119, 1005, -1, -1, 1039, 1040, 1010, 1042, 1043, -1, -1, 1015, 733, 1017, -1, 736, -1, 1021, 1022, 1023, -1, -1, 1026, -1, -1, -1, -1, 1062, -1, -1, -1, 1035, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1053, 1054, -1, 773, -1, 155, -1, -1, -1, 0, -1, -1, -1, 1097, 1098, 39, -1, -1, 704, 1103, -1, -1, -1, 709, 710, -1, -1, 1080, -1, 715, 1083, -1, -1, -1, -1, -1, 1221, -1, -1, -1, -1, 32, -1, 67, -1, 815, -1, -1, 72, -1, -1, -1, 76, -1, -1, 825, -1, -1, 828, 83, 84, -1, -1, 833, -1, 835, -1, -1, 1121, -1, 840, -1, -1, -1, 1127, 1128, 67, 1161, 1024, -1, -1, -1, -1, -1, -1, 109, 1139, -1, -1, -1, -1, 1144, -1, -1, 1147, 119, 1149, -1, -1, 1152, 250, -1, -1, -1, -1, 255, 188, -1, -1, -1, -1, -1, 1165, 195, -1, -1, -1, -1, -1, -1, 1204, -1, -1, -1, -1, 1178, 0, 1180, 1181, 1182, 1183, -1, 902, -1, -1, -1, -1, 1221, -1, -1, -1, -1, 1226, 1196, -1, 1198, -1, -1, -1, 1202, -1, 1313, -1, -1, -1, 1239, -1, 1241, 32, 0, 1, 1245, -1, -1, 155, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1231, 1232, -1, -1, -1, -1, -1, 267, -1, 1271, -1, -1, -1, 32, -1, 67, -1, 1279, 1280, 1281, -1, -1, 350, -1, -1, -1, -1, -1, 1290, 1291, -1, -1, -1, -1, 1397, -1, -1, -1, 986, -1, -1, -1, 1304, -1, -1, 64, -1, -1, 67, -1, -1, 1282, 1283, -1, -1, -1, -1, -1, -1, -1, -1, 1292, -1, 323, -1, 1327, -1, -1, -1, -1, -1, 331, -1, -1, 334, -1, 1338, -1, -1, 1203, -1, 250, -1, -1, -1, -1, 255, -1, -1, 417, -1, 1039, 1040, -1, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, 155, 432, -1, -1, -1, -1, 437, -1, -1, -1, 1344, 1062, -1, -1, 445, -1, -1, -1, -1, -1, -1, -1, 1356, -1, 1358, 1359, 1360, -1, -1, 1472, -1, 1474, -1, 155, 397, -1, 1370, -1, 401, -1, 471, -1, -1, -1, -1, 1379, 1097, 1098, -1, -1, 1415, -1, -1, -1, -1, -1, -1, -1, 489, -1, 491, 1395, -1, -1, -1, -1, 1509, -1, 1511, -1, -1, -1, 1299, -1, -1, -1, 1441, -1, 350, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 250, -1, -1, 220, 1464, 255, -1, 533, -1, -1, -1, 1471, -1, -1, -1, 1161, 1554, -1, 1556, -1, -1, -1, 1451, 1452, -1, -1, -1, -1, 486, -1, -1, 1569, 1570, 250, -1, 1464, -1, 1099, -1, -1, -1, -1, 1471, -1, -1, -1, -1, -1, -1, -1, 417, -1, -1, -1, -1, -1, -1, -1, 1204, -1, -1, -1, -1, -1, 1524, 432, -1, -1, -1, -1, 437, 1531, 598, -1, -1, 1504, -1, -1, 445, 1508, 1226, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1239, -1, 1241, -1, -1, -1, -1, 350, -1, -1, -1, 471, -1, -1, -1, 1537, -1, 1539, -1, -1, -1, -1, -1, -1, 643, 644, 645, 578, 579, 489, -1, 491, 1271, -1, -1, -1, -1, -1, -1, -1, 1279, 1280, 1281, 662, -1, 1567, 1568, -1, -1, -1, -1, 1290, 1291, 1575, 1576, -1, -1, -1, -1, -1, -1, 680, -1, -1, -1, 1304, -1, -1, 1223, -1, -1, -1, 691, 533, 417, -1, -1, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1327, 432, -1, -1, -1, -1, 437, -1, -1, -1, -1, -1, -1, -1, 445, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 733, -1, 667, 736, -1, -1, 671, -1, 432, -1, -1, -1, -1, -1, 471, -1, -1, -1, -1, -1, -1, -1, -1, -1, 598, -1, -1, -1, -1, -1, -1, -1, 489, -1, 491, -1, -1, -1, -1, 704, 773, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1415, -1, -1, -1, -1, 491, -1, 643, 644, 645, -1, 39, -1, -1, 533, -1, -1, -1, -1, -1, 815, -1, -1, -1, -1, -1, 662, -1, -1, -1, 825, -1, -1, 828, -1, -1, -1, -1, 833, 67, 835, -1, -1, -1, 680, 840, -1, 533, -1, 1464, -1, -1, -1, -1, -1, 691, 1471, -1, -1, -1, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 598, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 819, -1, -1, -1, -1, 733, -1, -1, 736, -1, -1, -1, 26, 27, 28, 902, -1, 1524, -1, -1, 598, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 643, 644, 645, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 773, -1, -1, -1, -1, -1, 662, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 643, 644, 645, -1, 680, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 691, -1, -1, 97, 662, 99, 697, 815, -1, -1, -1, -1, -1, -1, -1, -1, -1, 825, -1, 986, 828, -1, -1, -1, -1, 833, -1, 835, -1, -1, -1, -1, 840, 932, -1, -1, -1, -1, -1, -1, -1, -1, 733, -1, -1, 736, 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, -1, 1039, 1040, -1, 1042, 1043, -1, 736, -1, -1, 39, 773, -1, -1, -1, 180, -1, -1, -1, -1, -1, -1, -1, 902, 1062, 190, 191, -1, -1, -1, 195, -1, 197, 198, -1, -1, -1, -1, 67, -1, 69, 1011, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, 815, 83, 84, -1, 1027, -1, 1097, 1098, -1, -1, 825, -1, -1, 828, -1, -1, -1, -1, 833, -1, 835, -1, -1, -1, -1, 840, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 828, 30, 31, 32, -1, -1, -1, 835, 986, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1161, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1104, -1, -1, 67, -1, -1, 902, -1, 72, -1, 74, 75, 76, -1, 78, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, 1039, 1040, -1, 1042, 1043, -1, 1204, -1, -1, -1, -1, -1, -1, 902, -1, -1, -1, -1, -1, 109, -1, 111, -1, 1062, -1, -1, -1, -1, 1226, 119, -1, 45, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1239, -1, 1241, -1, -1, -1, -1, -1, -1, 64, -1, -1, -1, -1, -1, -1, -1, 1097, 1098, -1, -1, -1, -1, 986, -1, 37, 38, -1, 40, -1, -1, -1, 1271, -1, -1, -1, -1, -1, -1, 969, 1279, 1280, 1281, -1, -1, -1, -1, -1, -1, -1, -1, 1290, 1291, -1, 66, 110, 986, -1, -1, -1, 72, 116, -1, -1, 76, 1304, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 1039, 1040, -1, 1042, 1043, 1161, 94, -1, -1, -1, -1, -1, 1327, -1, 145, -1, -1, -1, -1, -1, -1, 109, -1, 1062, 155, -1, -1, -1, 159, -1, 118, 119, 120, 121, 122, 123, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1204, -1, -1, -1, -1, -1, -1, -1, 1062, -1, 1097, 1098, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1226, -1, -1, -1, -1, -1, -1, 208, -1, -1, -1, -1, -1, 1239, -1, 1241, -1, -1, -1, 220, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1415, -1, -1, -1, -1, -1, -1, 238, 239, -1, -1, -1, -1, -1, -1, 1271, -1, -1, -1, -1, -1, -1, 1161, 1279, 1280, 1281, -1, -1, -1, -1, -1, 262, -1, -1, 1290, 1291, -1, -1, -1, 270, 582, 583, -1, -1, -1, -1, -1, -1, 1304, 1464, -1, -1, -1, -1, -1, -1, 1471, -1, -1, -1, -1, -1, -1, 294, -1, 1204, 297, -1, -1, -1, 612, 1327, -1, 615, 616, -1, 618, -1, 620, 621, -1, -1, -1, 625, 626, -1, -1, 1226, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1203, 1204, -1, 1239, -1, 1241, -1, -1, -1, -1, -1, -1, 1524, -1, -1, -1, 344, -1, -1, -1, -1, 349, -1, 1226, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1271, -1, -1, 64, -1, -1, -1, 1245, 1279, 1280, 1281, -1, -1, 74, -1, 76, -1, 78, -1, 1290, 1291, -1, -1, -1, 85, -1, -1, 1415, -1, -1, -1, -1, -1, 1304, -1, 709, 710, -1, -1, -1, -1, 715, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1290, 1291, -1, 116, 1327, 118, 119, 120, -1, 1299, 425, 426, -1, -1, 1304, -1, -1, 432, -1, -1, -1, -1, -1, -1, 1464, -1, -1, -1, -1, -1, -1, 1471, -1, -1, -1, -1, -1, -1, 453, -1, -1, 456, -1, -1, -1, -1, 159, 462, 1338, 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, 489, -1, 30, 31, 32, -1, -1, -1, -1, -1, 1524, 39, 501, -1, -1, -1, -1, -1, 1415, -1, -1, -1, -1, 44, 513, -1, 515, -1, -1, 518, -1, 520, 521, 220, -1, 222, 223, 224, -1, 67, -1, 69, -1, 71, 533, -1, 74, 75, -1, -1, -1, 1415, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1464, -1, 90, -1, 258, -1, -1, 1471, 262, -1, 1441, -1, 100, -1, -1, -1, -1, -1, -1, 114, -1, -1, -1, -1, 278, -1, -1, -1, -1, -1, 586, -1, -1, 1464, -1, -1, -1, -1, -1, -1, 1471, -1, 598, -1, 600, -1, -1, 603, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1524, -1, -1, -1, -1, -1, -1, -1, 156, -1, -1, -1, -1, 629, 328, -1, -1, -1, 634, -1, -1, -1, 170, -1, -1, -1, -1, 643, 644, 645, -1, -1, -1, 1524, -1, 349, -1, -1, -1, -1, 354, 355, -1, -1, -1, 193, 662, -1, 362, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 207, -1, -1, -1, -1, -1, -1, 7, -1, 216, 10, 11, 12, 13, 14, -1, -1, -1, -1, 226, -1, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, 405, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, 718, 251, -1, -1, -1, -1, 256, 423, -1, -1, -1, -1, 428, -1, 430, -1, -1, -1, 736, 269, 738, -1, -1, 66, 67, 275, -1, 277, -1, 72, -1, 447, -1, 76, 450, 451, 79, 80, 81, 82, 83, 84, -1, 86, 87, 295, -1, -1, -1, -1, 466, 94, -1, -1, -1, 773, -1, -1, -1, -1, -1, -1, -1, -1, 480, -1, 109, -1, 111, -1, 1099, 487, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, 338, -1, -1, -1, -1, 343, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 828, -1, -1, -1, 832, -1, -1, 835, -1, -1, -1, 371, -1, -1, -1, 375, 376, -1, 378, -1, -1, -1, -1, -1, -1, 385, 386, -1, 388, 389, -1, 391, -1, 393, -1, -1, -1, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 410, -1, -1, -1, -1, -1, -1, -1, 418, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 603, -1, -1, -1, -1, -1, 443, 1223, -1, -1, -1, -1, -1, -1, -1, -1, -1, 454, -1, -1, -1, 66, 67, 928, -1, -1, -1, 72, 631, -1, -1, 76, -1, 636, 79, 80, 81, 82, 83, 84, 477, 86, 87, -1, -1, -1, 483, -1, -1, 94, -1, 488, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 970, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 986, -1, -1, -1, -1, -1, -1, 525, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 541, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1021, -1, -1, -1, -1, 724, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 738, -1, 1042, 1043, -1, -1, 578, -1, -1, -1, -1, -1, -1, -1, -1, 587, -1, -1, -1, -1, 758, -1, 594, -1, -1, 37, 38, 599, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, 610, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, -1, 1102, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 651, -1, 819, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 832, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, 851, -1, 687, -1, -1, -1, -1, -1, 1161, -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, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, 1203, -1, -1, -1, -1, -1, -1, 742, -1, -1, -1, -1, -1, -1, -1, -1, -1, 752, 753, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, 766, 74, 75, 76, -1, -1, 938, 1241, 154, 155, 83, 84, -1, -1, -1, -1, -1, 783, -1, 785, -1, -1, -1, 789, -1, -1, -1, -1, -1, -1, -1, -1, 964, -1, -1, -1, 109, -1, 111, -1, -1, -1, 188, -1, -1, -1, 119, -1, -1, 195, -1, -1, -1, -1, -1, -1, 1290, 1291, -1, -1, 992, -1, -1, -1, -1, 1299, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 855, -1, -1, 1024, -1, -1, 39, 862, -1, -1, -1, -1, -1, -1, 1035, -1, -1, -1, -1, -1, 875, -1, 877, -1, -1, -1, -1, -1, -1, -1, -1, -1, 267, -1, 67, -1, 891, -1, -1, 72, -1, 74, 75, 898, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, 910, -1, -1, 913, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 931, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, 323, -1, -1, -1, 1415, -1, -1, 1116, 331, 332, -1, 334, 335, -1, -1, -1, -1, -1, -1, -1, -1, 344, -1, -1, -1, 348, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 367, -1, -1, 370, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1473, -1, 1475, -1, -1, -1, -1, 37, 38, -1, 40, -1, 397, -1, -1, 1020, 401, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1203, -1, -1, -1, 66, 1510, 145, 1512, -1, -1, 72, -1, 74, 75, 76, 432, 155, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 167, 168, -1, -1, 94, -1, -1, 1540, -1, -1, 455, 1076, -1, -1, -1, -1, -1, -1, 1083, 109, -1, 111, -1, 113, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, 486, -1, -1, 489, -1, -1, 1112, -1, -1, -1, -1, 1117, -1, -1, -1, -1, -1, -1, -1, 1125, -1, -1, -1, -1, -1, -1, -1, 1299, -1, -1, 238, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 529, -1, -1, 532, 533, -1, -1, 1156, -1, -1, -1, -1, 263, -1, -1, -1, -1, -1, -1, 1168, -1, -1, 1171, -1, 1173, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1187, 1188, -1, -1, -1, -1, -1, -1, -1, -1, -1, 578, 579, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1209, -1, -1, -1, -1, -1, -1, -1, 597, 598, -1, 600, -1, -1, -1, -1, -1, -1, -1, -1, 609, -1, 611, 612, -1, -1, -1, 1236, -1, 618, -1, -1, 281, -1, 283, 284, -1, -1, -1, 628, 629, -1, 291, 292, -1, 634, -1, 296, 297, -1, -1, -1, -1, -1, 643, 644, 645, -1, -1, 308, -1, -1, -1, -1, -1, -1, -1, -1, 379, -1, -1, -1, -1, 662, -1, -1, -1, -1, 667, 668, -1, -1, 671, 672, -1, -1, -1, -1, -1, 678, -1, -1, -1, -1, -1, 344, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 696, 697, 698, -1, 700, -1, -1, -1, 704, -1, -1, -1, -1, -1, -1, 37, 38, 1333, 40, 1335, -1, -1, -1, -1, 380, -1, -1, -1, -1, -1, -1, -1, 1348, -1, 1350, -1, -1, -1, -1, -1, 736, 737, -1, -1, 66, -1, -1, -1, -1, -1, 72, -1, 1368, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 481, 86, 87, -1, -1, 1384, 1385, -1, -1, 94, 1555, -1, -1, 772, 773, -1, -1, 1396, 777, 778, 1399, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 123, 520, -1, -1, 1421, -1, -1, -1, -1, -1, -1, -1, -1, 1430, 533, -1, 1433, -1, 1435, 1436, 1437, 540, 819, -1, 543, -1, -1, -1, -1, -1, -1, 828, -1, -1, -1, 554, 555, 834, 835, -1, -1, -1, 839, -1, 841, -1, -1, -1, -1, -1, -1, -1, -1, -1, 851, -1, -1, 576, -1, -1, 1477, -1, 1479, -1, -1, 1482, -1, 586, -1, -1, -1, -1, -1, -1, 593, -1, -1, -1, -1, 598, 1497, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, -1, -1, -1, -1, -1, -1, -1, -1, -1, 924, -1, 648, -1, -1, -1, -1, -1, 932, -1, -1, 657, -1, -1, 938, -1, 600, -1, -1, -1, -1, -1, 946, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 959, 960, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 986, -1, -1, -1, -1, -1, 992, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1011, 1012, 30, 31, 32, -1, -1, -1, -1, -1, 1021, 39, 40, -1, -1, -1, 1027, 1028, -1, 1030, 1031, 1032, -1, -1, -1, -1, -1, -1, 699, -1, -1, 1042, 1043, -1, -1, -1, -1, -1, -1, 67, 773, -1, 775, -1, -1, -1, 74, 75, 781, -1, 721, -1, -1, -1, -1, 788, -1, -1, -1, -1, -1, -1, -1, 734, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, 115, -1, -1, -1, 119, 1103, 1104, 1105, -1, -1, -1, -1, 832, 833, -1, 835, -1, -1, 1116, -1, -1, -1, 780, -1, -1, -1, -1, -1, -1, -1, 850, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, 1161, -1, -1, -1, -1, -1, 827, 890, -1, -1, -1, 894, -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, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, 1221, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, 1241, 67, -1, 69, -1, 71, 72, 970, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, 986, 987, -1, -1, -1, -1, -1, 993, -1, -1, -1, -1, -1, 999, -1, -1, 1002, -1, 1004, -1, 109, -1, 111, -1, -1, -1, 1290, 1291, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, 1024, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1035, -1, -1, -1, -1, 978, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1057, -1, 1059, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1009, -1, -1, 1074, 1075, -1, -1, -1, -1, -1, -1, -1, 1021, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1095, -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, 27, -1, 1062, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, 1415, -1, -1, -1, -1, 1142, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, 1161, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, 1176, 1177, 83, 84, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, 1134, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 115, -1, -1, -1, 119, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, 1505, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 1178, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, 1530, 1531, 1192, 1193, -1, 1257, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 1555, -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, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 41, 1318, 43, 1320, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, 1406, -1, 132, -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, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1402, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, 1419, 71, 72, -1, 74, 75, 76, 1488, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 94, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, 1540, 111, -1, 132, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 1492, 1493, 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, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, 39, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 78, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, 39, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 78, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -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, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -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, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, 119, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 34, 35, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 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, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, 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, -1, 30, 31, 32, 33, -1, 111, 36, -1, -1, 39, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, 110, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, 109, 71, 111, -1, 74, 75, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, 111, 78, -1, -1, -1, -1, 83, 84, 119, 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, 111, 30, 31, 32, -1, -1, -1, -1, 119, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, -1, 111, 112, -1, 83, 84, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 111, -1, 30, 31, 32, -1, -1, -1, 119, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, 110, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 111, -1, 30, 31, 32, -1, -1, -1, 119, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 109, -1, 111, -1, 37, 38, 39, 40, -1, -1, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 111, -1, 37, 38, 39, 40, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, -1, 111, -1, -1, 83, 84, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 109, -1, 111, -1, 83, 84, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, 78, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 78, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, 67, -1, -1, 39, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 78, -1, 111, -1, -1, -1, 115, -1, -1, -1, 119, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, -1, -1, 119, -1, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, 67, -1, -1, 39, -1, -1, -1, 74, 75, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, -1, -1, 111, -1, -1, -1, 115, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 111, 74, 75, -1, -1, -1, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, 111, 74, 75, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, -1, -1, 119, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 111, 74, 75, -1, -1, -1, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, -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, 27, -1, 67, 30, 31, 32, -1, -1, 111, 74, 75, -1, 39, -1, 37, 38, 119, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, 119, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, 37, 38, 132, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, -1, -1, 132, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 96, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, 128, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 94, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, 111, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 94, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, -1, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, 94, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 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, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75 }; /* 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, 27, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 83, 84, 109, 111, 119, 137, 140, 197, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 242, 243, 244, 245, 253, 254, 280, 281, 282, 290, 293, 299, 300, 302, 304, 305, 311, 316, 320, 321, 322, 323, 324, 325, 326, 327, 347, 364, 365, 366, 367, 72, 119, 139, 140, 214, 216, 224, 226, 236, 240, 242, 281, 82, 109, 309, 310, 311, 309, 309, 72, 74, 75, 76, 138, 139, 270, 271, 291, 292, 74, 75, 271, 109, 302, 11, 198, 109, 119, 316, 321, 322, 323, 325, 326, 327, 112, 134, 111, 217, 224, 226, 320, 324, 363, 364, 367, 368, 135, 107, 131, 274, 114, 135, 172, 74, 75, 137, 269, 135, 135, 135, 116, 135, 74, 75, 109, 119, 306, 315, 316, 317, 318, 319, 320, 324, 328, 329, 330, 331, 332, 338, 3, 28, 78, 238, 3, 5, 74, 111, 119, 216, 227, 231, 234, 243, 282, 320, 324, 367, 214, 216, 226, 236, 240, 242, 281, 320, 324, 33, 232, 232, 227, 234, 135, 232, 227, 232, 227, 75, 109, 114, 271, 282, 114, 271, 232, 227, 116, 135, 135, 0, 134, 109, 172, 309, 309, 134, 111, 224, 226, 365, 269, 269, 226, 131, 109, 119, 306, 316, 320, 111, 119, 367, 303, 229, 311, 109, 287, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 94, 109, 111, 118, 119, 120, 121, 122, 123, 136, 140, 141, 142, 143, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 165, 224, 273, 289, 363, 368, 226, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 224, 269, 347, 365, 111, 119, 163, 216, 217, 223, 226, 230, 231, 236, 239, 240, 242, 259, 260, 264, 265, 266, 267, 281, 347, 359, 360, 361, 362, 367, 368, 112, 109, 320, 324, 367, 109, 116, 132, 111, 114, 119, 163, 275, 275, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 309, 132, 316, 317, 318, 319, 329, 330, 331, 332, 226, 315, 328, 64, 308, 111, 309, 346, 347, 309, 309, 172, 134, 109, 309, 346, 309, 309, 226, 306, 109, 109, 225, 226, 224, 226, 112, 134, 224, 363, 368, 172, 134, 269, 274, 216, 231, 320, 324, 172, 134, 291, 226, 236, 132, 226, 226, 289, 40, 111, 224, 246, 247, 248, 249, 363, 367, 114, 255, 271, 114, 226, 291, 132, 132, 302, 134, 139, 268, 3, 135, 206, 207, 221, 223, 226, 134, 308, 109, 308, 163, 316, 226, 109, 134, 269, 114, 33, 34, 35, 224, 283, 284, 286, 134, 129, 131, 288, 134, 227, 233, 234, 269, 312, 313, 314, 109, 141, 109, 148, 109, 148, 150, 109, 148, 109, 109, 148, 148, 139, 111, 163, 168, 172, 224, 272, 363, 112, 134, 150, 150, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 131, 167, 150, 119, 124, 125, 121, 122, 88, 89, 90, 91, 126, 127, 92, 93, 120, 128, 129, 94, 95, 130, 131, 370, 109, 119, 342, 343, 344, 345, 346, 110, 116, 109, 346, 347, 109, 346, 347, 134, 109, 224, 365, 112, 134, 111, 119, 135, 224, 226, 358, 359, 367, 368, 135, 109, 111, 119, 316, 333, 334, 335, 336, 337, 338, 339, 340, 341, 347, 348, 349, 350, 351, 352, 353, 119, 367, 226, 135, 135, 119, 224, 226, 360, 269, 224, 347, 360, 269, 109, 134, 134, 134, 112, 134, 72, 80, 111, 113, 140, 271, 275, 276, 277, 278, 279, 134, 134, 134, 134, 134, 134, 306, 110, 110, 110, 110, 110, 110, 110, 315, 328, 109, 274, 112, 206, 134, 306, 168, 273, 168, 273, 306, 111, 206, 308, 172, 134, 206, 110, 248, 249, 112, 134, 109, 117, 119, 250, 252, 315, 316, 328, 346, 354, 355, 356, 357, 115, 247, 116, 132, 116, 132, 271, 246, 116, 369, 131, 256, 255, 226, 261, 262, 263, 266, 267, 110, 116, 172, 134, 119, 163, 134, 223, 226, 260, 359, 367, 300, 301, 109, 119, 333, 110, 116, 370, 271, 283, 109, 114, 271, 273, 283, 110, 116, 109, 141, 110, 117, 272, 272, 272, 111, 139, 145, 163, 273, 272, 112, 134, 110, 116, 110, 109, 119, 354, 110, 116, 163, 111, 139, 111, 144, 145, 134, 111, 139, 144, 163, 163, 150, 150, 150, 151, 151, 152, 152, 153, 153, 153, 153, 154, 154, 155, 156, 157, 158, 159, 117, 168, 163, 134, 343, 344, 345, 226, 342, 309, 309, 163, 273, 134, 268, 119, 134, 224, 347, 360, 226, 230, 112, 134, 112, 367, 112, 109, 134, 316, 334, 335, 336, 339, 349, 350, 351, 112, 134, 226, 333, 337, 348, 109, 309, 352, 370, 309, 309, 370, 109, 309, 352, 309, 309, 309, 309, 347, 224, 358, 368, 269, 112, 116, 112, 116, 370, 224, 360, 370, 257, 258, 259, 260, 257, 257, 269, 163, 134, 111, 271, 117, 116, 369, 275, 80, 111, 117, 279, 29, 208, 209, 269, 257, 139, 306, 139, 308, 109, 346, 347, 109, 346, 347, 141, 347, 172, 261, 110, 110, 110, 110, 112, 172, 206, 172, 114, 132, 132, 111, 316, 355, 356, 357, 161, 162, 226, 354, 251, 252, 251, 309, 309, 271, 309, 115, 271, 115, 162, 369, 135, 135, 139, 221, 135, 135, 257, 109, 119, 367, 135, 115, 226, 284, 285, 135, 134, 134, 109, 135, 110, 313, 168, 169, 117, 132, 111, 141, 199, 200, 201, 110, 116, 110, 134, 117, 110, 110, 110, 163, 226, 114, 150, 165, 163, 164, 166, 116, 135, 134, 134, 110, 116, 163, 134, 115, 161, 117, 261, 110, 110, 110, 342, 261, 110, 257, 224, 360, 111, 119, 163, 163, 226, 339, 261, 110, 110, 110, 110, 110, 110, 110, 7, 226, 333, 337, 348, 134, 134, 370, 134, 134, 110, 135, 135, 135, 135, 274, 135, 161, 162, 163, 307, 134, 275, 277, 115, 134, 210, 271, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 111, 128, 139, 169, 170, 171, 172, 173, 174, 176, 177, 189, 191, 192, 197, 211, 305, 29, 135, 131, 274, 134, 134, 110, 135, 172, 246, 112, 110, 110, 110, 354, 250, 256, 115, 110, 116, 112, 112, 135, 226, 116, 370, 287, 110, 283, 214, 216, 224, 295, 296, 297, 298, 289, 110, 110, 117, 162, 109, 110, 117, 116, 139, 163, 163, 276, 116, 135, 166, 112, 139, 146, 147, 163, 145, 135, 146, 161, 165, 135, 109, 346, 347, 135, 135, 134, 135, 135, 135, 163, 110, 135, 109, 346, 347, 109, 352, 109, 352, 347, 225, 7, 119, 135, 163, 261, 261, 260, 264, 264, 265, 116, 116, 110, 110, 112, 96, 123, 135, 135, 146, 275, 163, 116, 132, 211, 215, 226, 230, 109, 109, 170, 109, 109, 132, 139, 132, 139, 119, 139, 169, 109, 172, 164, 164, 112, 143, 117, 132, 135, 134, 135, 210, 110, 163, 261, 261, 309, 110, 115, 109, 346, 347, 134, 110, 134, 135, 306, 115, 134, 135, 135, 110, 114, 199, 112, 162, 132, 199, 201, 110, 116, 135, 369, 164, 112, 135, 85, 113, 116, 135, 135, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 163, 163, 135, 112, 135, 135, 135, 135, 134, 134, 162, 162, 112, 112, 135, 135, 271, 226, 168, 168, 47, 168, 134, 132, 132, 168, 132, 132, 168, 58, 59, 60, 193, 194, 195, 132, 63, 132, 114, 309, 174, 115, 132, 135, 135, 134, 96, 266, 267, 110, 296, 116, 132, 116, 132, 115, 294, 117, 141, 110, 110, 117, 166, 112, 115, 112, 111, 147, 111, 147, 147, 112, 112, 112, 261, 112, 261, 261, 261, 135, 135, 112, 112, 110, 110, 112, 116, 96, 260, 96, 135, 112, 112, 110, 110, 109, 110, 169, 190, 211, 132, 110, 109, 109, 172, 195, 58, 59, 163, 144, 170, 110, 110, 261, 114, 134, 134, 295, 141, 202, 109, 132, 202, 135, 117, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 170, 44, 45, 114, 180, 181, 182, 168, 170, 135, 110, 169, 114, 182, 96, 134, 96, 134, 109, 109, 132, 115, 135, 134, 269, 306, 115, 116, 117, 162, 110, 112, 163, 146, 146, 110, 110, 110, 110, 264, 42, 162, 178, 179, 307, 117, 134, 170, 180, 110, 132, 170, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 110, 295, 141, 139, 203, 110, 132, 117, 135, 135, 170, 96, 116, 117, 135, 204, 205, 211, 132, 169, 169, 204, 172, 196, 224, 363, 172, 196, 110, 134, 110, 134, 115, 110, 116, 163, 112, 112, 162, 178, 181, 183, 184, 134, 132, 181, 185, 186, 135, 109, 119, 306, 354, 139, 135, 172, 196, 172, 196, 109, 132, 139, 170, 175, 115, 181, 211, 169, 56, 175, 188, 115, 181, 110, 226, 110, 135, 135, 289, 170, 175, 132, 187, 188, 175, 188, 172, 172, 110, 110, 110, 187, 135, 135, 172, 172, 135, 135 }; #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 291 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 297 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 306 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 308 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 333 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 334 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 341 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 343 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 20: /* Line 1806 of yacc.c */ #line 345 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 347 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 23: /* Line 1806 of yacc.c */ #line 357 "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 359 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 25: /* Line 1806 of yacc.c */ #line 363 "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 366 "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 369 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); } break; case 30: /* Line 1806 of yacc.c */ #line 371 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); } break; case 31: /* Line 1806 of yacc.c */ #line 373 "parser.yy" { (yyval.en) = 0; } break; case 32: /* Line 1806 of yacc.c */ #line 375 "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 384 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 389 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 392 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 38: /* Line 1806 of yacc.c */ #line 397 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 399 "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 404 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 409 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 413 "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 415 "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 417 "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 419 "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 427 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 429 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 50: /* Line 1806 of yacc.c */ #line 431 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); } break; case 51: /* Line 1806 of yacc.c */ #line 433 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); } break; case 52: /* Line 1806 of yacc.c */ #line 435 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 53: /* Line 1806 of yacc.c */ #line 437 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 54: /* Line 1806 of yacc.c */ #line 439 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neg ), (yyvsp[(2) - (2)].en) ); } break; case 55: /* Line 1806 of yacc.c */ #line 441 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PointTo ), (yyvsp[(2) - (2)].en) ); } break; case 56: /* Line 1806 of yacc.c */ #line 447 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); } break; case 57: /* Line 1806 of yacc.c */ #line 449 "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 451 "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 453 "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 455 "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 457 "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 459 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); } break; case 63: /* Line 1806 of yacc.c */ #line 461 "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 463 "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 467 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); } break; case 66: /* Line 1806 of yacc.c */ #line 468 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 67: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 68: /* Line 1806 of yacc.c */ #line 470 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 70: /* Line 1806 of yacc.c */ #line 476 "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 478 "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 484 "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 486 "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 488 "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 494 "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 496 "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 502 "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 504 "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 510 "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 512 "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 514 "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 516 "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 522 "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 524 "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 530 "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 536 "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 542 "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 548 "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 554 "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 560 "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 562 "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 564 "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 575 "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 577 "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 579 "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 584 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 111: /* Line 1806 of yacc.c */ #line 592 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 112: /* Line 1806 of yacc.c */ #line 594 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 113: /* Line 1806 of yacc.c */ #line 596 "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 598 "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 604 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 117: /* Line 1806 of yacc.c */ #line 608 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 118: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 119: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 124: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 125: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 126: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 128: /* Line 1806 of yacc.c */ #line 623 "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 628 "parser.yy" { (yyval.en) = 0; } break; case 133: /* Line 1806 of yacc.c */ #line 637 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 139: /* Line 1806 of yacc.c */ #line 644 "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 653 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 141: /* Line 1806 of yacc.c */ #line 660 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 142: /* Line 1806 of yacc.c */ #line 667 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 144: /* Line 1806 of yacc.c */ #line 673 "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 678 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 680 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 147: /* Line 1806 of yacc.c */ #line 682 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 150: /* Line 1806 of yacc.c */ #line 689 "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 694 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 152: /* Line 1806 of yacc.c */ #line 700 "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 702 "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 704 "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 706 "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 711 "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 713 "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 720 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 159: /* Line 1806 of yacc.c */ #line 722 "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 729 "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 733 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); } break; case 164: /* Line 1806 of yacc.c */ #line 734 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 166: /* Line 1806 of yacc.c */ #line 740 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 167: /* Line 1806 of yacc.c */ #line 744 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 168: /* Line 1806 of yacc.c */ #line 749 "parser.yy" { (yyval.sn) = 0; } break; case 170: /* Line 1806 of yacc.c */ #line 755 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 171: /* Line 1806 of yacc.c */ #line 757 "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 762 "parser.yy" { (yyval.sn) = 0; } break; case 174: /* Line 1806 of yacc.c */ #line 768 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 175: /* Line 1806 of yacc.c */ #line 770 "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 772 "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 774 "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 779 "parser.yy" { (yyval.sn) = 0; } break; case 180: /* Line 1806 of yacc.c */ #line 784 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 181: /* Line 1806 of yacc.c */ #line 785 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 182: /* Line 1806 of yacc.c */ #line 790 "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 792 "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 794 "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 799 "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 801 "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 806 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 188: /* Line 1806 of yacc.c */ #line 810 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 189: /* Line 1806 of yacc.c */ #line 813 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 190: /* Line 1806 of yacc.c */ #line 817 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 191: /* Line 1806 of yacc.c */ #line 820 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 192: /* Line 1806 of yacc.c */ #line 824 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 193: /* Line 1806 of yacc.c */ #line 826 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 194: /* Line 1806 of yacc.c */ #line 828 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 195: /* Line 1806 of yacc.c */ #line 832 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 196: /* Line 1806 of yacc.c */ #line 834 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 197: /* Line 1806 of yacc.c */ #line 841 "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 843 "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 845 "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 856 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 202: /* Line 1806 of yacc.c */ #line 858 "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 860 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 204: /* Line 1806 of yacc.c */ #line 862 "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 867 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 206: /* Line 1806 of yacc.c */ #line 869 "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 871 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 208: /* Line 1806 of yacc.c */ #line 873 "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 878 "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 892 "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 897 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 213: /* Line 1806 of yacc.c */ #line 899 "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 908 "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 910 "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 912 "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 914 "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 916 "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 921 "parser.yy" { (yyval.flag) = false; } break; case 221: /* Line 1806 of yacc.c */ #line 923 "parser.yy" { (yyval.flag) = true; } break; case 222: /* Line 1806 of yacc.c */ #line 928 "parser.yy" { (yyval.en) = 0; } break; case 225: /* Line 1806 of yacc.c */ #line 935 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 226: /* Line 1806 of yacc.c */ #line 940 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 227: /* Line 1806 of yacc.c */ #line 942 "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 947 "parser.yy" { (yyval.constant) = 0; } break; case 229: /* Line 1806 of yacc.c */ #line 949 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 230: /* Line 1806 of yacc.c */ #line 951 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 231: /* Line 1806 of yacc.c */ #line 956 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 232: /* Line 1806 of yacc.c */ #line 958 "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 965 "parser.yy" { (yyval.decl) = 0; } break; case 236: /* Line 1806 of yacc.c */ #line 972 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 237: /* Line 1806 of yacc.c */ #line 977 "parser.yy" { (yyval.decl) = 0; } break; case 240: /* Line 1806 of yacc.c */ #line 984 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 245: /* Line 1806 of yacc.c */ #line 998 "parser.yy" {} break; case 246: /* Line 1806 of yacc.c */ #line 999 "parser.yy" {} break; case 254: /* Line 1806 of yacc.c */ #line 1028 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl); } break; case 255: /* Line 1806 of yacc.c */ #line 1035 "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 1040 "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 1050 "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 1055 "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 1060 "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 1068 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 261: /* Line 1806 of yacc.c */ #line 1073 "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 1078 "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 1083 "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 1088 "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 1096 "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 1119 "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 1123 "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 1130 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1134 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 270: /* Line 1806 of yacc.c */ #line 1139 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 271: /* Line 1806 of yacc.c */ #line 1144 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 272: /* Line 1806 of yacc.c */ #line 1149 "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 1160 "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 1165 "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 1170 "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 1175 "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 1180 "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 1189 "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 1194 "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 1211 "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 1216 "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 1238 "parser.yy" { (yyval.decl) = 0; } break; case 297: /* Line 1806 of yacc.c */ #line 1250 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 300: /* Line 1806 of yacc.c */ #line 1261 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 301: /* Line 1806 of yacc.c */ #line 1263 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 302: /* Line 1806 of yacc.c */ #line 1265 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 303: /* Line 1806 of yacc.c */ #line 1267 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 304: /* Line 1806 of yacc.c */ #line 1269 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 305: /* Line 1806 of yacc.c */ #line 1271 "parser.yy" { typedefTable.enterScope(); } break; case 306: /* Line 1806 of yacc.c */ #line 1275 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 308: /* Line 1806 of yacc.c */ #line 1284 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1286 "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 1297 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1306 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 314: /* Line 1806 of yacc.c */ #line 1308 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 315: /* Line 1806 of yacc.c */ #line 1310 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 316: /* Line 1806 of yacc.c */ #line 1312 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 317: /* Line 1806 of yacc.c */ #line 1314 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 318: /* Line 1806 of yacc.c */ #line 1316 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 319: /* Line 1806 of yacc.c */ #line 1318 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 320: /* Line 1806 of yacc.c */ #line 1320 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 321: /* Line 1806 of yacc.c */ #line 1325 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 322: /* Line 1806 of yacc.c */ #line 1327 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 323: /* Line 1806 of yacc.c */ #line 1329 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 324: /* Line 1806 of yacc.c */ #line 1331 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 325: /* Line 1806 of yacc.c */ #line 1333 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 326: /* Line 1806 of yacc.c */ #line 1335 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 327: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 328: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 329: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 330: /* Line 1806 of yacc.c */ #line 1343 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 331: /* Line 1806 of yacc.c */ #line 1345 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 332: /* Line 1806 of yacc.c */ #line 1347 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 333: /* Line 1806 of yacc.c */ #line 1349 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 335: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 336: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1362 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1375 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1377 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1379 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1384 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 346: /* Line 1806 of yacc.c */ #line 1386 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1388 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1390 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1396 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1398 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1400 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1406 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1408 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1414 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1416 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1418 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1423 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1425 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1427 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1439 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); } break; case 367: /* Line 1806 of yacc.c */ #line 1441 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), (yyvsp[(2) - (5)].tok), 0, (yyvsp[(4) - (5)].decl) ); } break; case 368: /* Line 1806 of yacc.c */ #line 1443 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); } break; case 369: /* Line 1806 of yacc.c */ #line 1445 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 370: /* Line 1806 of yacc.c */ #line 1450 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 371: /* Line 1806 of yacc.c */ #line 1452 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 372: /* Line 1806 of yacc.c */ #line 1457 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 373: /* Line 1806 of yacc.c */ #line 1459 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 375: /* Line 1806 of yacc.c */ #line 1465 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 377: /* Line 1806 of yacc.c */ #line 1468 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 379: /* Line 1806 of yacc.c */ #line 1474 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1476 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1483 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1485 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1490 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 385: /* Line 1806 of yacc.c */ #line 1492 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].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 387: /* Line 1806 of yacc.c */ #line 1498 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 389: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { (yyval.en) = 0; } break; case 390: /* Line 1806 of yacc.c */ #line 1506 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 391: /* Line 1806 of yacc.c */ #line 1511 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 393: /* Line 1806 of yacc.c */ #line 1520 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 394: /* Line 1806 of yacc.c */ #line 1522 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1524 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 396: /* Line 1806 of yacc.c */ #line 1529 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 397: /* Line 1806 of yacc.c */ #line 1531 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 398: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.en) = 0; } break; case 399: /* Line 1806 of yacc.c */ #line 1538 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 400: /* Line 1806 of yacc.c */ #line 1545 "parser.yy" { (yyval.decl) = 0; } break; case 404: /* Line 1806 of yacc.c */ #line 1553 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 405: /* Line 1806 of yacc.c */ #line 1555 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 406: /* Line 1806 of yacc.c */ #line 1557 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 408: /* Line 1806 of yacc.c */ #line 1565 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 409: /* Line 1806 of yacc.c */ #line 1567 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 410: /* Line 1806 of yacc.c */ #line 1569 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1575 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 413: /* Line 1806 of yacc.c */ #line 1580 "parser.yy" { (yyval.decl) = 0; } break; case 416: /* Line 1806 of yacc.c */ #line 1587 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 419: /* Line 1806 of yacc.c */ #line 1594 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 420: /* Line 1806 of yacc.c */ #line 1596 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } 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 1608 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 424: /* Line 1806 of yacc.c */ #line 1610 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 429: /* Line 1806 of yacc.c */ #line 1620 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 431: /* Line 1806 of yacc.c */ #line 1626 "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 432: /* Line 1806 of yacc.c */ #line 1631 "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 434: /* Line 1806 of yacc.c */ #line 1640 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 435: /* Line 1806 of yacc.c */ #line 1649 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 436: /* Line 1806 of yacc.c */ #line 1651 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 448: /* Line 1806 of yacc.c */ #line 1676 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 452: /* Line 1806 of yacc.c */ #line 1684 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 453: /* Line 1806 of yacc.c */ #line 1689 "parser.yy" { (yyval.in) = 0; } break; case 454: /* Line 1806 of yacc.c */ #line 1691 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 455: /* Line 1806 of yacc.c */ #line 1693 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 456: /* Line 1806 of yacc.c */ #line 1697 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 457: /* Line 1806 of yacc.c */ #line 1698 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 458: /* Line 1806 of yacc.c */ #line 1703 "parser.yy" { (yyval.in) = 0; } break; case 460: /* Line 1806 of yacc.c */ #line 1705 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 461: /* Line 1806 of yacc.c */ #line 1706 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 462: /* Line 1806 of yacc.c */ #line 1708 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1724 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1730 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 467: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 468: /* Line 1806 of yacc.c */ #line 1740 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 469: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 470: /* Line 1806 of yacc.c */ #line 1745 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 471: /* Line 1806 of yacc.c */ #line 1747 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ), true ); } break; case 472: /* Line 1806 of yacc.c */ #line 1749 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 474: /* Line 1806 of yacc.c */ #line 1773 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1775 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1777 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1783 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 479: /* Line 1806 of yacc.c */ #line 1785 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1790 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1796 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 483: /* Line 1806 of yacc.c */ #line 1801 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 484: /* Line 1806 of yacc.c */ #line 1803 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1809 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 487: /* Line 1806 of yacc.c */ #line 1811 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 488: /* Line 1806 of yacc.c */ #line 1813 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 489: /* Line 1806 of yacc.c */ #line 1818 "parser.yy" { (yyval.decl) = 0; } break; case 490: /* Line 1806 of yacc.c */ #line 1820 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 491: /* Line 1806 of yacc.c */ #line 1825 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 492: /* Line 1806 of yacc.c */ #line 1830 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 493: /* Line 1806 of yacc.c */ #line 1832 "parser.yy" { (yyval.decl) = 0; } break; case 494: /* Line 1806 of yacc.c */ #line 1837 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 496: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 497: /* Line 1806 of yacc.c */ #line 1842 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 498: /* Line 1806 of yacc.c */ #line 1847 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 499: /* Line 1806 of yacc.c */ #line 1849 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1851 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 501: /* Line 1806 of yacc.c */ #line 1856 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1858 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1863 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 504: /* Line 1806 of yacc.c */ #line 1868 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 505: /* Line 1806 of yacc.c */ #line 1876 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 506: /* Line 1806 of yacc.c */ #line 1881 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 507: /* Line 1806 of yacc.c */ #line 1886 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 509: /* Line 1806 of yacc.c */ #line 1896 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 512: /* Line 1806 of yacc.c */ #line 1906 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 513: /* Line 1806 of yacc.c */ #line 1911 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 514: /* Line 1806 of yacc.c */ #line 1916 "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 515: /* Line 1806 of yacc.c */ #line 1924 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 516: /* Line 1806 of yacc.c */ #line 1929 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 517: /* Line 1806 of yacc.c */ #line 1939 "parser.yy" {} break; case 518: /* Line 1806 of yacc.c */ #line 1941 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 520: /* Line 1806 of yacc.c */ #line 1953 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 521: /* Line 1806 of yacc.c */ #line 1958 "parser.yy" { (yyval.decl) = 0; } break; case 525: /* Line 1806 of yacc.c */ #line 1966 "parser.yy" {} break; case 526: /* Line 1806 of yacc.c */ #line 1968 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 527: /* Line 1806 of yacc.c */ #line 1973 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 528: /* Line 1806 of yacc.c */ #line 1979 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 530: /* Line 1806 of yacc.c */ #line 1989 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 531: /* Line 1806 of yacc.c */ #line 1995 "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 532: /* Line 1806 of yacc.c */ #line 2004 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 533: /* Line 1806 of yacc.c */ #line 2010 "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 534: /* Line 1806 of yacc.c */ #line 2016 "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 2022 "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 536: /* Line 1806 of yacc.c */ #line 2028 "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 537: /* Line 1806 of yacc.c */ #line 2036 "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 538: /* Line 1806 of yacc.c */ #line 2042 "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 2050 "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 540: /* Line 1806 of yacc.c */ #line 2056 "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 544: /* Line 1806 of yacc.c */ #line 2071 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 547: /* Line 1806 of yacc.c */ #line 2081 "parser.yy" { (yyval.decl) = 0; } break; case 550: /* Line 1806 of yacc.c */ #line 2088 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 551: /* Line 1806 of yacc.c */ #line 2094 "parser.yy" { (yyval.decl) = 0; } break; case 557: /* Line 1806 of yacc.c */ #line 2109 "parser.yy" {} break; case 558: /* Line 1806 of yacc.c */ #line 2110 "parser.yy" {} break; case 559: /* Line 1806 of yacc.c */ #line 2111 "parser.yy" {} break; case 560: /* Line 1806 of yacc.c */ #line 2112 "parser.yy" {} break; case 561: /* 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 2150 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 564: /* Line 1806 of yacc.c */ #line 2152 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2157 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2162 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 567: /* Line 1806 of yacc.c */ #line 2167 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2169 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2171 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 570: /* Line 1806 of yacc.c */ #line 2176 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2178 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2180 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2182 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2187 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2189 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 576: /* 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 2202 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2207 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2209 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2211 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 582: /* Line 1806 of yacc.c */ #line 2216 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2220 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 585: /* Line 1806 of yacc.c */ #line 2225 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2227 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 587: /* Line 1806 of yacc.c */ #line 2229 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 591: /* Line 1806 of yacc.c */ #line 2244 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 592: /* Line 1806 of yacc.c */ #line 2246 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2248 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 594: /* Line 1806 of yacc.c */ #line 2253 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 597: /* Line 1806 of yacc.c */ #line 2262 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2264 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2266 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 600: /* 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 2284 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2286 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 606: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 609: /* Line 1806 of yacc.c */ #line 2306 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2308 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2310 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2312 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 613: /* Line 1806 of yacc.c */ #line 2317 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2319 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2321 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 616: /* 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 2334 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2341 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2343 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 623: /* Line 1806 of yacc.c */ #line 2350 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2352 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 627: /* Line 1806 of yacc.c */ #line 2361 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2363 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2365 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 630: /* 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 2399 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2401 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2406 "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 2411 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2419 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2421 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2423 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 639: /* Line 1806 of yacc.c */ #line 2428 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2430 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2435 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2437 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2452 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2454 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2459 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 647: /* Line 1806 of yacc.c */ #line 2461 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2463 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 649: /* Line 1806 of yacc.c */ #line 2465 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2467 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 652: /* Line 1806 of yacc.c */ #line 2473 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2475 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2477 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 655: /* Line 1806 of yacc.c */ #line 2482 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 656: /* Line 1806 of yacc.c */ #line 2484 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 657: /* Line 1806 of yacc.c */ #line 2486 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 658: /* Line 1806 of yacc.c */ #line 2492 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 659: /* Line 1806 of yacc.c */ #line 2494 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 661: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 662: /* Line 1806 of yacc.c */ #line 2502 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 663: /* Line 1806 of yacc.c */ #line 2504 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2506 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 667: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2528 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 669: /* Line 1806 of yacc.c */ #line 2530 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2532 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 671: /* Line 1806 of yacc.c */ #line 2534 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2536 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 674: /* Line 1806 of yacc.c */ #line 2542 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2544 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 676: /* Line 1806 of yacc.c */ #line 2546 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 677: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 678: /* Line 1806 of yacc.c */ #line 2553 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2555 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 681: /* Line 1806 of yacc.c */ #line 2562 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2573 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 684: /* Line 1806 of yacc.c */ #line 2576 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 685: /* Line 1806 of yacc.c */ #line 2578 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 686: /* Line 1806 of yacc.c */ #line 2581 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 687: /* Line 1806 of yacc.c */ #line 2583 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 688: /* Line 1806 of yacc.c */ #line 2585 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 690: /* Line 1806 of yacc.c */ #line 2599 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2601 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2606 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 693: /* Line 1806 of yacc.c */ #line 2608 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2610 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2612 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2614 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 698: /* Line 1806 of yacc.c */ #line 2620 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2622 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2624 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 701: /* Line 1806 of yacc.c */ #line 2629 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2631 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 705: /* Line 1806 of yacc.c */ #line 2641 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2651 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2653 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2655 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2657 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2659 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2668 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2670 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2672 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2674 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2676 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2678 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2680 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2682 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2684 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2686 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2691 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2693 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 726: /* Line 1806 of yacc.c */ #line 2698 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 727: /* Line 1806 of yacc.c */ #line 2700 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 729: /* Line 1806 of yacc.c */ #line 2727 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2738 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2740 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2742 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2744 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2746 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2748 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2755 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2757 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2759 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2761 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2763 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2765 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2770 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2775 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 747: /* Line 1806 of yacc.c */ #line 2777 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 748: /* Line 1806 of yacc.c */ #line 2779 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 751: /* Line 1806 of yacc.c */ #line 2803 "parser.yy" { (yyval.en) = 0; } break; case 752: /* Line 1806 of yacc.c */ #line 2805 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9210 "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 2808 "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: //