/* 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 "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 92 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, BOOL = 279, COMPLEX = 280, IMAGINARY = 281, TYPEOF = 282, LABEL = 283, ENUM = 284, STRUCT = 285, UNION = 286, TYPE = 287, FTYPE = 288, DTYPE = 289, CONTEXT = 290, SIZEOF = 291, ATTRIBUTE = 292, EXTENSION = 293, IF = 294, ELSE = 295, SWITCH = 296, CASE = 297, DEFAULT = 298, DO = 299, WHILE = 300, FOR = 301, BREAK = 302, CONTINUE = 303, GOTO = 304, RETURN = 305, CHOOSE = 306, FALLTHRU = 307, TRY = 308, CATCH = 309, FINALLY = 310, THROW = 311, ASM = 312, ALIGNAS = 313, ALIGNOF = 314, ATOMIC = 315, GENERIC = 316, NORETURN = 317, STATICASSERT = 318, THREADLOCAL = 319, IDENTIFIER = 320, QUOTED_IDENTIFIER = 321, TYPEDEFname = 322, TYPEGENname = 323, ATTR_IDENTIFIER = 324, ATTR_TYPEDEFname = 325, ATTR_TYPEGENname = 326, INTEGERconstant = 327, FLOATINGconstant = 328, CHARACTERconstant = 329, STRINGliteral = 330, ZERO = 331, ONE = 332, ARROW = 333, ICR = 334, DECR = 335, LS = 336, RS = 337, LE = 338, GE = 339, EQ = 340, NE = 341, ANDAND = 342, OROR = 343, ELLIPSIS = 344, MULTassign = 345, DIVassign = 346, MODassign = 347, PLUSassign = 348, MINUSassign = 349, LSassign = 350, RSassign = 351, ANDassign = 352, ERassign = 353, ORassign = 354, THEN = 355 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define BOOL 279 #define COMPLEX 280 #define IMAGINARY 281 #define TYPEOF 282 #define LABEL 283 #define ENUM 284 #define STRUCT 285 #define UNION 286 #define TYPE 287 #define FTYPE 288 #define DTYPE 289 #define CONTEXT 290 #define SIZEOF 291 #define ATTRIBUTE 292 #define EXTENSION 293 #define IF 294 #define ELSE 295 #define SWITCH 296 #define CASE 297 #define DEFAULT 298 #define DO 299 #define WHILE 300 #define FOR 301 #define BREAK 302 #define CONTINUE 303 #define GOTO 304 #define RETURN 305 #define CHOOSE 306 #define FALLTHRU 307 #define TRY 308 #define CATCH 309 #define FINALLY 310 #define THROW 311 #define ASM 312 #define ALIGNAS 313 #define ALIGNOF 314 #define ATOMIC 315 #define GENERIC 316 #define NORETURN 317 #define STATICASSERT 318 #define THREADLOCAL 319 #define IDENTIFIER 320 #define QUOTED_IDENTIFIER 321 #define TYPEDEFname 322 #define TYPEGENname 323 #define ATTR_IDENTIFIER 324 #define ATTR_TYPEDEFname 325 #define ATTR_TYPEGENname 326 #define INTEGERconstant 327 #define FLOATINGconstant 328 #define CHARACTERconstant 329 #define STRINGliteral 330 #define ZERO 331 #define ONE 332 #define ARROW 333 #define ICR 334 #define DECR 335 #define LS 336 #define RS 337 #define LE 338 #define GE 339 #define EQ 340 #define NE 341 #define ANDAND 342 #define OROR 343 #define ELLIPSIS 344 #define MULTassign 345 #define DIVassign 346 #define MODassign 347 #define PLUSassign 348 #define MINUSassign 349 #define LSassign 350 #define RSassign 351 #define ANDassign 352 #define ERassign 353 #define ORassign 354 #define THEN 355 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 107 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; InitializerNode *in; /* Line 293 of yacc.c */ #line 342 "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 354 "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 246 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 11363 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 125 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 236 /* YYNRULES -- Number of rules. */ #define YYNRULES 732 /* YYNRULES -- Number of states. */ #define YYNSTATES 1505 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 355 #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, 110, 2, 2, 2, 117, 112, 2, 101, 102, 111, 113, 108, 114, 105, 116, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 109, 124, 118, 123, 119, 122, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 103, 2, 104, 120, 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, 106, 121, 107, 115, 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 }; #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, 32, 34, 36, 38, 40, 44, 48, 50, 57, 62, 66, 74, 78, 86, 89, 92, 100, 102, 106, 107, 109, 113, 121, 131, 133, 137, 139, 143, 151, 155, 163, 165, 168, 171, 174, 177, 180, 183, 186, 191, 193, 198, 203, 206, 211, 214, 216, 218, 220, 222, 224, 229, 234, 236, 240, 244, 248, 250, 254, 258, 260, 264, 268, 270, 274, 278, 282, 286, 288, 292, 296, 298, 302, 304, 308, 310, 314, 316, 320, 322, 326, 328, 334, 339, 345, 347, 349, 353, 357, 360, 361, 363, 366, 372, 379, 387, 389, 393, 395, 397, 399, 401, 403, 405, 407, 409, 411, 413, 415, 419, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 443, 446, 454, 456, 460, 462, 465, 467, 470, 472, 475, 478, 484, 492, 498, 508, 514, 524, 526, 530, 532, 534, 538, 542, 545, 547, 550, 553, 554, 556, 559, 563, 564, 566, 569, 573, 577, 582, 583, 585, 587, 590, 596, 604, 611, 618, 623, 627, 632, 635, 639, 642, 646, 650, 654, 657, 661, 665, 670, 672, 678, 685, 695, 706, 709, 711, 714, 717, 720, 722, 729, 738, 749, 762, 763, 765, 767, 771, 776, 778, 782, 784, 786, 788, 792, 794, 796, 798, 802, 803, 805, 809, 814, 816, 820, 822, 824, 828, 832, 836, 840, 844, 847, 851, 858, 862, 866, 871, 873, 876, 879, 883, 889, 898, 906, 914, 920, 930, 933, 936, 942, 946, 952, 957, 961, 966, 971, 979, 983, 987, 991, 995, 1000, 1007, 1009, 1011, 1013, 1015, 1017, 1019, 1021, 1023, 1024, 1026, 1028, 1031, 1033, 1035, 1037, 1039, 1041, 1043, 1045, 1046, 1052, 1054, 1057, 1061, 1063, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1113, 1116, 1120, 1124, 1126, 1130, 1132, 1135, 1138, 1141, 1146, 1151, 1156, 1161, 1163, 1166, 1169, 1173, 1175, 1178, 1181, 1183, 1186, 1189, 1193, 1195, 1198, 1201, 1203, 1205, 1210, 1213, 1219, 1227, 1230, 1233, 1236, 1238, 1241, 1244, 1248, 1251, 1255, 1257, 1260, 1264, 1267, 1270, 1275, 1276, 1278, 1281, 1284, 1286, 1287, 1289, 1292, 1295, 1301, 1308, 1311, 1314, 1319, 1320, 1323, 1324, 1326, 1328, 1330, 1336, 1342, 1348, 1350, 1356, 1362, 1372, 1374, 1380, 1381, 1383, 1385, 1391, 1393, 1395, 1401, 1407, 1409, 1413, 1417, 1422, 1424, 1426, 1428, 1430, 1433, 1435, 1439, 1443, 1445, 1448, 1450, 1454, 1456, 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1479, 1481, 1483, 1485, 1488, 1489, 1492, 1494, 1499, 1501, 1504, 1508, 1513, 1516, 1519, 1521, 1524, 1527, 1533, 1539, 1547, 1554, 1556, 1559, 1562, 1566, 1568, 1571, 1574, 1579, 1582, 1587, 1588, 1593, 1596, 1598, 1600, 1602, 1603, 1606, 1612, 1618, 1632, 1634, 1636, 1640, 1644, 1647, 1651, 1655, 1658, 1663, 1665, 1672, 1682, 1683, 1695, 1697, 1701, 1705, 1709, 1711, 1713, 1719, 1722, 1728, 1729, 1731, 1733, 1737, 1738, 1740, 1742, 1744, 1746, 1747, 1754, 1757, 1759, 1762, 1767, 1770, 1774, 1778, 1782, 1787, 1793, 1799, 1805, 1812, 1814, 1816, 1818, 1822, 1823, 1829, 1830, 1832, 1834, 1837, 1844, 1846, 1850, 1851, 1853, 1858, 1860, 1862, 1864, 1866, 1869, 1871, 1874, 1877, 1879, 1883, 1886, 1890, 1894, 1897, 1902, 1907, 1911, 1920, 1924, 1927, 1929, 1932, 1939, 1948, 1952, 1955, 1959, 1963, 1968, 1973, 1977, 1979, 1981, 1983, 1988, 1995, 1999, 2002, 2006, 2010, 2015, 2020, 2024, 2027, 2029, 2032, 2035, 2037, 2041, 2044, 2048, 2052, 2055, 2060, 2065, 2069, 2076, 2085, 2089, 2092, 2094, 2097, 2100, 2103, 2107, 2111, 2114, 2119, 2124, 2128, 2135, 2144, 2148, 2151, 2153, 2156, 2159, 2161, 2163, 2166, 2170, 2174, 2177, 2182, 2189, 2198, 2200, 2203, 2206, 2208, 2211, 2214, 2218, 2222, 2224, 2229, 2234, 2238, 2244, 2253, 2257, 2260, 2264, 2266, 2272, 2278, 2285, 2292, 2294, 2297, 2300, 2302, 2305, 2308, 2312, 2316, 2318, 2323, 2328, 2332, 2338, 2347, 2351, 2353, 2356, 2358, 2361, 2368, 2374, 2381, 2389, 2397, 2399, 2402, 2405, 2407, 2410, 2413, 2417, 2421, 2423, 2428, 2433, 2437, 2446, 2450, 2452, 2454, 2457, 2459, 2461, 2464, 2468, 2471, 2475, 2478, 2482, 2486, 2489, 2494, 2498, 2501, 2505, 2508, 2513, 2517, 2520, 2527, 2534, 2541, 2549, 2551, 2554, 2556, 2558, 2560, 2563, 2567, 2570, 2574, 2577, 2581, 2585, 2590, 2593, 2597, 2602, 2605, 2611, 2617, 2624, 2631, 2632, 2634, 2635 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 289, 0, -1, -1, -1, 72, -1, 73, -1, 74, -1, 65, -1, 69, -1, 132, -1, 65, -1, 69, -1, 65, -1, 76, -1, 77, -1, 75, -1, 133, 75, -1, 65, -1, 132, -1, 128, -1, 133, -1, 101, 160, 102, -1, 101, 164, 102, -1, 134, -1, 135, 103, 126, 155, 127, 104, -1, 135, 101, 136, 102, -1, 135, 105, 131, -1, 135, 105, 103, 126, 138, 127, 104, -1, 135, 78, 131, -1, 135, 78, 103, 126, 138, 127, 104, -1, 135, 79, -1, 135, 80, -1, 101, 262, 102, 106, 266, 359, 107, -1, 137, -1, 136, 108, 137, -1, -1, 155, -1, 131, 109, 155, -1, 103, 126, 155, 127, 104, 109, 155, -1, 103, 126, 155, 108, 158, 127, 104, 109, 155, -1, 139, -1, 138, 108, 139, -1, 131, -1, 131, 105, 139, -1, 131, 105, 103, 126, 138, 127, 104, -1, 131, 78, 139, -1, 131, 78, 103, 126, 138, 127, 104, -1, 135, -1, 79, 140, -1, 80, 140, -1, 38, 142, -1, 141, 142, -1, 110, 142, -1, 111, 142, -1, 36, 140, -1, 36, 101, 262, 102, -1, 69, -1, 69, 101, 263, 102, -1, 69, 101, 137, 102, -1, 59, 140, -1, 59, 101, 262, 102, -1, 87, 131, -1, 112, -1, 113, -1, 114, -1, 115, -1, 140, -1, 101, 262, 102, 142, -1, 101, 262, 102, 157, -1, 142, -1, 143, 111, 142, -1, 143, 116, 142, -1, 143, 117, 142, -1, 143, -1, 144, 113, 143, -1, 144, 114, 143, -1, 144, -1, 145, 81, 144, -1, 145, 82, 144, -1, 145, -1, 146, 118, 145, -1, 146, 119, 145, -1, 146, 83, 145, -1, 146, 84, 145, -1, 146, -1, 147, 85, 146, -1, 147, 86, 146, -1, 147, -1, 148, 112, 147, -1, 148, -1, 149, 120, 148, -1, 149, -1, 150, 121, 149, -1, 150, -1, 151, 87, 150, -1, 151, -1, 152, 88, 151, -1, 152, -1, 152, 122, 160, 109, 153, -1, 152, 122, 109, 153, -1, 152, 122, 160, 109, 157, -1, 153, -1, 153, -1, 140, 123, 155, -1, 140, 159, 155, -1, 157, 360, -1, -1, 155, -1, 103, 104, -1, 103, 126, 155, 127, 104, -1, 103, 126, 108, 158, 127, 104, -1, 103, 126, 155, 108, 158, 127, 104, -1, 156, -1, 158, 108, 156, -1, 90, -1, 91, -1, 92, -1, 93, -1, 94, -1, 95, -1, 96, -1, 97, -1, 98, -1, 99, -1, 155, -1, 160, 108, 155, -1, -1, 160, -1, 163, -1, 164, -1, 168, -1, 169, -1, 181, -1, 183, -1, 184, -1, 189, -1, 131, 109, 299, 162, -1, 106, 107, -1, 106, 126, 126, 198, 165, 127, 107, -1, 166, -1, 165, 126, 166, -1, 201, -1, 38, 201, -1, 295, -1, 162, 127, -1, 162, -1, 167, 162, -1, 161, 124, -1, 39, 101, 160, 102, 162, -1, 39, 101, 160, 102, 162, 40, 162, -1, 41, 101, 160, 102, 174, -1, 41, 101, 160, 102, 106, 126, 194, 175, 107, -1, 51, 101, 160, 102, 174, -1, 51, 101, 160, 102, 106, 126, 194, 177, 107, -1, 154, -1, 154, 89, 154, -1, 297, -1, 170, -1, 171, 108, 170, -1, 42, 171, 109, -1, 43, 109, -1, 172, -1, 173, 172, -1, 173, 162, -1, -1, 176, -1, 173, 167, -1, 176, 173, 167, -1, -1, 178, -1, 173, 180, -1, 173, 167, 179, -1, 178, 173, 180, -1, 178, 173, 167, 179, -1, -1, 180, -1, 52, -1, 52, 124, -1, 45, 101, 160, 102, 162, -1, 44, 162, 45, 101, 160, 102, 124, -1, 46, 101, 126, 182, 102, 162, -1, 161, 127, 124, 161, 124, 161, -1, 201, 161, 124, 161, -1, 49, 131, 124, -1, 49, 111, 160, 124, -1, 48, 124, -1, 48, 131, 124, -1, 47, 124, -1, 47, 131, 124, -1, 50, 161, 124, -1, 56, 155, 124, -1, 56, 124, -1, 53, 164, 185, -1, 53, 164, 187, -1, 53, 164, 185, 187, -1, 186, -1, 54, 101, 89, 102, 164, -1, 186, 54, 101, 89, 102, 164, -1, 54, 101, 126, 126, 188, 127, 102, 164, 127, -1, 186, 54, 101, 126, 126, 188, 127, 102, 164, 127, -1, 55, 164, -1, 214, -1, 214, 296, -1, 214, 344, -1, 353, 131, -1, 353, -1, 57, 215, 101, 154, 102, 124, -1, 57, 215, 101, 154, 109, 190, 102, 124, -1, 57, 215, 101, 154, 109, 190, 109, 190, 102, 124, -1, 57, 215, 101, 154, 109, 190, 109, 190, 109, 193, 102, 124, -1, -1, 191, -1, 192, -1, 191, 108, 192, -1, 75, 101, 154, 102, -1, 75, -1, 193, 108, 75, -1, 127, -1, 195, -1, 201, -1, 195, 126, 201, -1, 127, -1, 197, -1, 211, -1, 197, 126, 211, -1, -1, 199, -1, 28, 200, 124, -1, 199, 28, 200, 124, -1, 261, -1, 200, 108, 261, -1, 202, -1, 211, -1, 203, 127, 124, -1, 208, 127, 124, -1, 205, 127, 124, -1, 280, 127, 124, -1, 283, 127, 124, -1, 204, 264, -1, 220, 204, 264, -1, 203, 127, 108, 126, 259, 264, -1, 354, 259, 298, -1, 357, 259, 298, -1, 216, 357, 259, 298, -1, 206, -1, 216, 206, -1, 220, 206, -1, 220, 216, 206, -1, 205, 127, 108, 126, 259, -1, 103, 104, 259, 101, 126, 247, 127, 102, -1, 357, 259, 101, 126, 247, 127, 102, -1, 207, 259, 101, 126, 247, 127, 102, -1, 103, 126, 249, 127, 104, -1, 103, 126, 249, 127, 108, 126, 250, 127, 104, -1, 3, 204, -1, 3, 206, -1, 208, 127, 108, 126, 131, -1, 3, 214, 296, -1, 209, 127, 108, 126, 296, -1, 216, 3, 214, 296, -1, 214, 3, 296, -1, 214, 3, 216, 296, -1, 3, 131, 123, 155, -1, 210, 127, 108, 126, 131, 123, 155, -1, 212, 127, 124, -1, 209, 127, 124, -1, 210, 127, 124, -1, 229, 127, 124, -1, 213, 296, 298, 264, -1, 212, 108, 299, 296, 298, 264, -1, 225, -1, 229, -1, 231, -1, 270, -1, 226, -1, 230, -1, 232, -1, 271, -1, -1, 216, -1, 217, -1, 216, 217, -1, 218, -1, 301, -1, 10, -1, 12, -1, 11, -1, 14, -1, 60, -1, -1, 13, 101, 219, 273, 102, -1, 221, -1, 216, 221, -1, 220, 216, 221, -1, 222, -1, 221, 222, -1, 223, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 62, -1, 64, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 24, -1, 25, -1, 26, -1, 226, -1, 220, 226, -1, 225, 222, -1, 225, 222, 216, -1, 225, 222, 226, -1, 227, -1, 215, 228, 215, -1, 224, -1, 216, 224, -1, 227, 217, -1, 227, 224, -1, 27, 101, 263, 102, -1, 27, 101, 160, 102, -1, 71, 101, 263, 102, -1, 71, 101, 160, 102, -1, 230, -1, 220, 230, -1, 229, 222, -1, 229, 222, 216, -1, 233, -1, 216, 233, -1, 230, 217, -1, 232, -1, 220, 232, -1, 231, 222, -1, 231, 222, 216, -1, 67, -1, 216, 67, -1, 232, 217, -1, 234, -1, 244, -1, 235, 106, 236, 107, -1, 235, 261, -1, 235, 261, 106, 236, 107, -1, 235, 101, 279, 102, 106, 236, 107, -1, 235, 272, -1, 30, 299, -1, 31, 299, -1, 237, -1, 236, 237, -1, 238, 124, -1, 38, 238, 124, -1, 239, 124, -1, 38, 239, 124, -1, 353, -1, 353, 261, -1, 238, 108, 261, -1, 238, 108, -1, 214, 240, -1, 239, 108, 299, 240, -1, -1, 242, -1, 305, 241, -1, 318, 241, -1, 344, -1, -1, 242, -1, 109, 154, -1, 29, 299, -1, 243, 106, 245, 359, 107, -1, 243, 261, 106, 245, 359, 107, -1, 243, 261, -1, 261, 246, -1, 245, 108, 261, 246, -1, -1, 123, 154, -1, -1, 248, -1, 250, -1, 249, -1, 249, 127, 108, 126, 250, -1, 250, 127, 108, 126, 89, -1, 249, 127, 108, 126, 89, -1, 254, -1, 250, 127, 108, 126, 254, -1, 249, 127, 108, 126, 254, -1, 249, 127, 108, 126, 250, 127, 108, 126, 254, -1, 255, -1, 250, 127, 108, 126, 255, -1, -1, 252, -1, 253, -1, 253, 127, 108, 126, 89, -1, 257, -1, 256, -1, 253, 127, 108, 126, 257, -1, 253, 127, 108, 126, 256, -1, 256, -1, 349, 259, 360, -1, 357, 259, 360, -1, 216, 357, 259, 360, -1, 206, -1, 257, -1, 349, -1, 357, -1, 216, 357, -1, 358, -1, 213, 323, 360, -1, 213, 327, 360, -1, 213, -1, 213, 338, -1, 131, -1, 258, 108, 131, -1, 129, -1, 67, -1, 68, -1, 130, -1, 67, -1, 68, -1, 131, -1, 67, -1, 68, -1, 353, -1, 214, -1, 214, 344, -1, 353, -1, 358, -1, 214, -1, 214, 332, -1, -1, 123, 265, -1, 155, -1, 106, 266, 359, 107, -1, 265, -1, 267, 265, -1, 266, 108, 265, -1, 266, 108, 267, 265, -1, 268, 109, -1, 261, 109, -1, 269, -1, 268, 269, -1, 105, 261, -1, 103, 126, 155, 127, 104, -1, 103, 126, 297, 127, 104, -1, 103, 126, 154, 89, 154, 127, 104, -1, 105, 103, 126, 138, 127, 104, -1, 271, -1, 220, 271, -1, 270, 222, -1, 270, 222, 216, -1, 272, -1, 216, 272, -1, 271, 217, -1, 68, 101, 279, 102, -1, 274, 360, -1, 273, 108, 274, 360, -1, -1, 276, 261, 275, 277, -1, 214, 323, -1, 32, -1, 34, -1, 33, -1, -1, 277, 278, -1, 121, 261, 101, 279, 102, -1, 121, 106, 126, 285, 107, -1, 121, 101, 126, 273, 127, 102, 106, 126, 285, 107, 101, 279, 102, -1, 263, -1, 155, -1, 279, 108, 263, -1, 279, 108, 155, -1, 32, 281, -1, 221, 32, 281, -1, 280, 108, 281, -1, 282, 277, -1, 282, 277, 123, 263, -1, 261, -1, 260, 101, 126, 273, 127, 102, -1, 35, 261, 101, 126, 273, 127, 102, 106, 107, -1, -1, 35, 261, 101, 126, 273, 127, 102, 106, 284, 285, 107, -1, 286, -1, 285, 126, 286, -1, 287, 127, 124, -1, 288, 127, 124, -1, 204, -1, 206, -1, 287, 127, 108, 126, 259, -1, 214, 296, -1, 288, 127, 108, 126, 296, -1, -1, 290, -1, 292, -1, 290, 126, 292, -1, -1, 290, -1, 201, -1, 294, -1, 189, -1, -1, 5, 75, 293, 106, 291, 107, -1, 38, 292, -1, 295, -1, 310, 164, -1, 314, 126, 196, 164, -1, 205, 164, -1, 213, 310, 164, -1, 216, 310, 164, -1, 220, 310, 164, -1, 220, 216, 310, 164, -1, 213, 314, 126, 196, 164, -1, 216, 314, 126, 196, 164, -1, 220, 314, 126, 196, 164, -1, 220, 216, 314, 126, 196, 164, -1, 305, -1, 310, -1, 318, -1, 154, 115, 154, -1, -1, 57, 101, 133, 102, 299, -1, -1, 300, -1, 301, -1, 300, 301, -1, 37, 101, 101, 302, 102, 102, -1, 303, -1, 302, 108, 303, -1, -1, 304, -1, 304, 101, 161, 102, -1, 259, -1, 223, -1, 224, -1, 217, -1, 306, 299, -1, 307, -1, 308, 299, -1, 309, 299, -1, 129, -1, 101, 306, 102, -1, 111, 305, -1, 111, 216, 305, -1, 101, 307, 102, -1, 306, 336, -1, 101, 307, 102, 336, -1, 101, 308, 102, 337, -1, 101, 308, 102, -1, 101, 307, 102, 101, 126, 251, 127, 102, -1, 101, 309, 102, -1, 311, 299, -1, 312, -1, 313, 299, -1, 306, 101, 126, 251, 127, 102, -1, 101, 312, 102, 101, 126, 251, 127, 102, -1, 101, 311, 102, -1, 111, 310, -1, 111, 216, 310, -1, 101, 312, 102, -1, 101, 312, 102, 336, -1, 101, 313, 102, 337, -1, 101, 313, 102, -1, 315, -1, 316, -1, 317, -1, 306, 101, 258, 102, -1, 101, 316, 102, 101, 258, 102, -1, 101, 315, 102, -1, 111, 314, -1, 111, 216, 314, -1, 101, 316, 102, -1, 101, 316, 102, 336, -1, 101, 317, 102, 337, -1, 101, 317, 102, -1, 319, 299, -1, 320, -1, 321, 299, -1, 322, 299, -1, 328, -1, 101, 319, 102, -1, 111, 318, -1, 111, 216, 318, -1, 101, 320, 102, -1, 319, 336, -1, 101, 320, 102, 336, -1, 101, 321, 102, 337, -1, 101, 321, 102, -1, 319, 101, 126, 251, 127, 102, -1, 101, 320, 102, 101, 126, 251, 127, 102, -1, 101, 322, 102, -1, 306, 299, -1, 324, -1, 325, 299, -1, 326, 299, -1, 111, 323, -1, 111, 216, 323, -1, 101, 324, 102, -1, 306, 342, -1, 101, 324, 102, 336, -1, 101, 325, 102, 337, -1, 101, 325, 102, -1, 306, 101, 126, 251, 127, 102, -1, 101, 324, 102, 101, 126, 251, 127, 102, -1, 101, 326, 102, -1, 328, 299, -1, 329, -1, 330, 299, -1, 331, 299, -1, 67, -1, 68, -1, 111, 327, -1, 111, 216, 327, -1, 101, 329, 102, -1, 328, 342, -1, 101, 329, 102, 342, -1, 328, 101, 126, 251, 127, 102, -1, 101, 329, 102, 101, 126, 251, 127, 102, -1, 333, -1, 334, 299, -1, 335, 299, -1, 111, -1, 111, 216, -1, 111, 332, -1, 111, 216, 332, -1, 101, 333, 102, -1, 336, -1, 101, 333, 102, 336, -1, 101, 334, 102, 337, -1, 101, 334, 102, -1, 101, 126, 251, 127, 102, -1, 101, 333, 102, 101, 126, 251, 127, 102, -1, 101, 335, 102, -1, 103, 104, -1, 103, 104, 337, -1, 337, -1, 103, 126, 155, 127, 104, -1, 103, 126, 111, 127, 104, -1, 337, 103, 126, 155, 127, 104, -1, 337, 103, 126, 111, 127, 104, -1, 339, -1, 340, 299, -1, 341, 299, -1, 111, -1, 111, 216, -1, 111, 338, -1, 111, 216, 338, -1, 101, 339, 102, -1, 342, -1, 101, 339, 102, 342, -1, 101, 340, 102, 337, -1, 101, 340, 102, -1, 101, 126, 251, 127, 102, -1, 101, 339, 102, 101, 126, 251, 127, 102, -1, 101, 341, 102, -1, 343, -1, 343, 337, -1, 337, -1, 103, 104, -1, 103, 126, 216, 111, 127, 104, -1, 103, 126, 216, 127, 104, -1, 103, 126, 216, 155, 127, 104, -1, 103, 126, 7, 215, 155, 127, 104, -1, 103, 126, 216, 7, 155, 127, 104, -1, 345, -1, 346, 299, -1, 347, 299, -1, 111, -1, 111, 216, -1, 111, 344, -1, 111, 216, 344, -1, 101, 345, 102, -1, 336, -1, 101, 345, 102, 336, -1, 101, 346, 102, 337, -1, 101, 346, 102, -1, 101, 345, 102, 101, 126, 251, 127, 102, -1, 101, 347, 102, -1, 349, -1, 357, -1, 216, 357, -1, 350, -1, 351, -1, 111, 214, -1, 216, 111, 214, -1, 111, 358, -1, 216, 111, 358, -1, 111, 348, -1, 216, 111, 348, -1, 103, 104, 214, -1, 352, 214, -1, 103, 104, 337, 214, -1, 352, 337, 214, -1, 337, 214, -1, 103, 104, 350, -1, 352, 350, -1, 103, 104, 337, 350, -1, 352, 337, 350, -1, 337, 350, -1, 103, 126, 216, 111, 127, 104, -1, 103, 126, 216, 155, 127, 104, -1, 103, 126, 220, 155, 127, 104, -1, 103, 126, 220, 216, 155, 127, 104, -1, 357, -1, 216, 357, -1, 354, -1, 355, -1, 356, -1, 111, 214, -1, 216, 111, 214, -1, 111, 358, -1, 216, 111, 358, -1, 111, 353, -1, 216, 111, 353, -1, 103, 104, 214, -1, 103, 104, 337, 214, -1, 337, 214, -1, 103, 104, 355, -1, 103, 104, 337, 355, -1, 337, 355, -1, 103, 126, 250, 127, 104, -1, 103, 104, 101, 247, 102, -1, 357, 101, 126, 247, 127, 102, -1, 207, 101, 126, 247, 127, 102, -1, -1, 108, -1, -1, 123, 155, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 279, 279, 285, 294, 295, 296, 300, 301, 302, 306, 307, 311, 315, 316, 320, 321, 327, 329, 331, 333, 335, 337, 342, 343, 349, 351, 353, 354, 356, 357, 359, 362, 367, 368, 374, 375, 376, 381, 383, 388, 389, 393, 395, 397, 399, 401, 406, 407, 409, 411, 413, 415, 417, 423, 425, 427, 429, 431, 433, 435, 437, 442, 443, 444, 445, 449, 450, 452, 457, 458, 460, 462, 467, 468, 470, 475, 476, 478, 483, 484, 486, 488, 490, 495, 496, 498, 503, 504, 509, 510, 515, 516, 521, 522, 527, 528, 533, 534, 536, 538, 543, 548, 549, 551, 553, 559, 560, 566, 568, 570, 572, 577, 578, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 596, 597, 603, 604, 610, 611, 612, 613, 614, 615, 616, 617, 621, 626, 628, 638, 639, 644, 646, 648, 650, 654, 655, 660, 665, 668, 670, 672, 677, 679, 687, 688, 690, 694, 695, 700, 701, 706, 707, 711, 716, 717, 721, 723, 729, 730, 734, 736, 738, 740, 746, 747, 751, 752, 756, 758, 760, 765, 767, 772, 774, 778, 781, 785, 788, 792, 794, 796, 801, 803, 805, 814, 816, 818, 823, 825, 830, 843, 844, 849, 851, 856, 860, 862, 864, 866, 870, 872, 876, 877, 881, 885, 886, 892, 894, 898, 899, 904, 906, 910, 911, 915, 917, 921, 922, 926, 927, 931, 932, 947, 948, 949, 950, 951, 955, 960, 967, 977, 982, 987, 995, 1000, 1005, 1010, 1015, 1023, 1045, 1050, 1057, 1059, 1066, 1071, 1076, 1087, 1092, 1097, 1102, 1107, 1116, 1121, 1129, 1130, 1131, 1132, 1138, 1143, 1151, 1152, 1153, 1154, 1158, 1159, 1160, 1161, 1166, 1167, 1176, 1177, 1182, 1183, 1188, 1190, 1192, 1194, 1196, 1199, 1198, 1210, 1211, 1213, 1223, 1224, 1229, 1233, 1235, 1237, 1239, 1241, 1243, 1245, 1247, 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, 1280, 1281, 1283, 1285, 1287, 1292, 1293, 1299, 1300, 1302, 1304, 1309, 1311, 1313, 1315, 1320, 1321, 1323, 1325, 1330, 1331, 1333, 1338, 1339, 1341, 1343, 1348, 1350, 1352, 1357, 1358, 1362, 1364, 1366, 1368, 1370, 1375, 1377, 1382, 1384, 1389, 1390, 1392, 1393, 1398, 1399, 1401, 1403, 1408, 1410, 1416, 1417, 1419, 1422, 1425, 1430, 1431, 1436, 1441, 1445, 1447, 1449, 1454, 1456, 1462, 1463, 1471, 1472, 1476, 1477, 1478, 1480, 1482, 1489, 1490, 1492, 1494, 1499, 1500, 1506, 1507, 1511, 1512, 1517, 1518, 1519, 1521, 1529, 1530, 1532, 1535, 1537, 1541, 1542, 1543, 1545, 1547, 1551, 1556, 1564, 1565, 1574, 1576, 1581, 1582, 1583, 1587, 1588, 1589, 1593, 1594, 1595, 1599, 1600, 1601, 1606, 1607, 1608, 1609, 1615, 1616, 1621, 1622, 1626, 1627, 1628, 1629, 1644, 1645, 1650, 1651, 1657, 1659, 1662, 1664, 1666, 1689, 1690, 1692, 1694, 1699, 1700, 1702, 1707, 1712, 1713, 1719, 1718, 1722, 1726, 1728, 1730, 1736, 1737, 1742, 1747, 1749, 1754, 1756, 1757, 1759, 1764, 1766, 1768, 1773, 1775, 1780, 1785, 1793, 1799, 1798, 1812, 1813, 1818, 1819, 1823, 1828, 1833, 1841, 1846, 1857, 1858, 1869, 1870, 1876, 1877, 1881, 1882, 1883, 1886, 1885, 1896, 1901, 1906, 1912, 1921, 1927, 1933, 1939, 1945, 1953, 1959, 1967, 1973, 1982, 1983, 1984, 1988, 1992, 1994, 1997, 1999, 2003, 2004, 2008, 2012, 2013, 2016, 2018, 2019, 2023, 2024, 2025, 2026, 2060, 2061, 2062, 2063, 2067, 2072, 2077, 2079, 2081, 2086, 2088, 2090, 2092, 2097, 2099, 2109, 2110, 2111, 2115, 2117, 2119, 2124, 2126, 2128, 2133, 2135, 2137, 2146, 2147, 2148, 2152, 2154, 2156, 2161, 2163, 2165, 2170, 2172, 2174, 2189, 2190, 2191, 2192, 2196, 2197, 2202, 2204, 2206, 2211, 2213, 2215, 2217, 2222, 2224, 2226, 2236, 2237, 2238, 2239, 2243, 2245, 2247, 2252, 2254, 2256, 2258, 2263, 2265, 2267, 2298, 2299, 2300, 2301, 2305, 2310, 2318, 2320, 2322, 2327, 2329, 2334, 2336, 2350, 2351, 2352, 2356, 2358, 2360, 2362, 2364, 2369, 2370, 2372, 2374, 2379, 2381, 2383, 2389, 2391, 2393, 2397, 2399, 2401, 2403, 2417, 2418, 2419, 2423, 2425, 2427, 2429, 2431, 2436, 2437, 2439, 2441, 2446, 2448, 2450, 2456, 2457, 2459, 2468, 2471, 2473, 2476, 2478, 2480, 2493, 2494, 2495, 2499, 2501, 2503, 2505, 2507, 2512, 2513, 2515, 2517, 2522, 2524, 2532, 2533, 2534, 2539, 2540, 2544, 2546, 2548, 2550, 2552, 2554, 2561, 2563, 2565, 2567, 2569, 2571, 2573, 2575, 2577, 2579, 2584, 2586, 2588, 2593, 2619, 2620, 2622, 2626, 2627, 2631, 2633, 2635, 2637, 2639, 2641, 2648, 2650, 2652, 2654, 2656, 2658, 2663, 2668, 2670, 2672, 2690, 2692, 2697, 2698 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "TYPE", "FTYPE", "DTYPE", "CONTEXT", "SIZEOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "FALLTHRU", "TRY", "CATCH", "FINALLY", "THROW", "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", "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_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "label_declaration_opt", "label_declaration_list", "label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@2", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "context_specifier", "$@3", "context_declaration_list", "context_declaration", "new_context_declaring_list", "context_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@4", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 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, 125, 126, 127, 128, 128, 128, 129, 129, 129, 130, 130, 131, 132, 132, 133, 133, 134, 134, 134, 134, 134, 134, 135, 135, 135, 135, 135, 135, 135, 135, 135, 135, 136, 136, 137, 137, 137, 137, 137, 138, 138, 139, 139, 139, 139, 139, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 140, 141, 141, 141, 141, 142, 142, 142, 143, 143, 143, 143, 144, 144, 144, 145, 145, 145, 146, 146, 146, 146, 146, 147, 147, 147, 148, 148, 149, 149, 150, 150, 151, 151, 152, 152, 153, 153, 153, 153, 154, 155, 155, 155, 155, 156, 156, 157, 157, 157, 157, 158, 158, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 160, 160, 161, 161, 162, 162, 162, 162, 162, 162, 162, 162, 163, 164, 164, 165, 165, 166, 166, 166, 166, 167, 167, 168, 169, 169, 169, 169, 169, 169, 170, 170, 170, 171, 171, 172, 172, 173, 173, 174, 175, 175, 176, 176, 177, 177, 178, 178, 178, 178, 179, 179, 180, 180, 181, 181, 181, 182, 182, 183, 183, 183, 183, 183, 183, 183, 183, 183, 184, 184, 184, 185, 185, 185, 186, 186, 187, 188, 188, 188, 188, 188, 189, 189, 189, 189, 190, 190, 191, 191, 192, 193, 193, 194, 194, 195, 195, 196, 196, 197, 197, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 202, 202, 202, 203, 203, 203, 204, 204, 204, 205, 205, 205, 205, 205, 206, 206, 206, 207, 207, 208, 208, 208, 209, 209, 209, 209, 209, 210, 210, 211, 211, 211, 211, 212, 212, 213, 213, 213, 213, 214, 214, 214, 214, 215, 215, 216, 216, 217, 217, 218, 218, 218, 218, 218, 219, 218, 220, 220, 220, 221, 221, 222, 223, 223, 223, 223, 223, 223, 223, 223, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, 225, 225, 225, 225, 225, 226, 226, 227, 227, 227, 227, 228, 228, 228, 228, 229, 229, 229, 229, 230, 230, 230, 231, 231, 231, 231, 232, 232, 232, 233, 233, 234, 234, 234, 234, 234, 235, 235, 236, 236, 237, 237, 237, 237, 238, 238, 238, 238, 239, 239, 240, 240, 240, 240, 240, 241, 241, 242, 243, 244, 244, 244, 245, 245, 246, 246, 247, 247, 248, 248, 248, 248, 248, 249, 249, 249, 249, 250, 250, 251, 251, 252, 252, 253, 253, 253, 253, 254, 254, 254, 254, 254, 255, 255, 255, 255, 255, 256, 256, 257, 257, 258, 258, 259, 259, 259, 260, 260, 260, 261, 261, 261, 262, 262, 262, 263, 263, 263, 263, 264, 264, 265, 265, 266, 266, 266, 266, 267, 267, 268, 268, 269, 269, 269, 269, 269, 270, 270, 270, 270, 271, 271, 271, 272, 273, 273, 275, 274, 274, 276, 276, 276, 277, 277, 278, 278, 278, 279, 279, 279, 279, 280, 280, 280, 281, 281, 282, 282, 283, 284, 283, 285, 285, 286, 286, 287, 287, 287, 288, 288, 289, 289, 290, 290, 291, 291, 292, 292, 292, 293, 292, 292, 294, 294, 294, 295, 295, 295, 295, 295, 295, 295, 295, 295, 296, 296, 296, 297, 298, 298, 299, 299, 300, 300, 301, 302, 302, 303, 303, 303, 304, 304, 304, 304, 305, 305, 305, 305, 306, 306, 307, 307, 307, 308, 308, 308, 308, 309, 309, 310, 310, 310, 311, 311, 311, 312, 312, 312, 313, 313, 313, 314, 314, 314, 315, 315, 315, 316, 316, 316, 317, 317, 317, 318, 318, 318, 318, 319, 319, 320, 320, 320, 321, 321, 321, 321, 322, 322, 322, 323, 323, 323, 323, 324, 324, 324, 325, 325, 325, 325, 326, 326, 326, 327, 327, 327, 327, 328, 328, 329, 329, 329, 330, 330, 331, 331, 332, 332, 332, 333, 333, 333, 333, 333, 334, 334, 334, 334, 335, 335, 335, 336, 336, 336, 337, 337, 337, 337, 338, 338, 338, 339, 339, 339, 339, 339, 340, 340, 340, 340, 341, 341, 341, 342, 342, 342, 343, 343, 343, 343, 343, 343, 344, 344, 344, 345, 345, 345, 345, 345, 346, 346, 346, 346, 347, 347, 348, 348, 348, 349, 349, 350, 350, 350, 350, 350, 350, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 352, 352, 352, 352, 353, 353, 353, 354, 354, 355, 355, 355, 355, 355, 355, 356, 356, 356, 356, 356, 356, 357, 358, 358, 358, 359, 359, 360, 360 }; /* 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, 2, 1, 1, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 2, 2, 2, 2, 2, 2, 2, 4, 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, 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, 2, 3, 3, 4, 1, 5, 6, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 0, 1, 1, 3, 4, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 5, 7, 2, 2, 2, 1, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 6, 2, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 1, 4, 1, 2, 3, 4, 2, 2, 1, 2, 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[] = { 278, 278, 299, 297, 300, 298, 301, 302, 284, 286, 285, 0, 287, 313, 305, 310, 308, 309, 307, 306, 311, 312, 314, 315, 316, 527, 527, 527, 0, 0, 0, 278, 278, 288, 303, 304, 7, 343, 0, 8, 13, 14, 0, 2, 278, 545, 9, 505, 503, 231, 3, 436, 3, 244, 0, 3, 3, 3, 232, 3, 0, 0, 0, 279, 280, 282, 278, 291, 294, 296, 324, 270, 317, 322, 271, 332, 272, 339, 336, 346, 0, 0, 347, 273, 453, 457, 3, 3, 0, 2, 499, 504, 509, 283, 0, 0, 527, 557, 527, 2, 568, 569, 570, 278, 0, 711, 712, 0, 12, 278, 0, 254, 255, 0, 279, 274, 275, 276, 277, 506, 289, 375, 528, 529, 353, 354, 12, 427, 428, 11, 423, 426, 0, 483, 478, 469, 427, 428, 0, 0, 508, 0, 279, 278, 0, 0, 0, 0, 0, 0, 0, 0, 278, 278, 2, 0, 713, 279, 562, 574, 717, 710, 708, 715, 0, 0, 238, 2, 0, 512, 421, 422, 420, 0, 0, 0, 0, 527, 0, 614, 615, 0, 0, 525, 521, 527, 542, 527, 527, 522, 2, 523, 527, 581, 527, 527, 584, 0, 0, 0, 278, 278, 297, 344, 2, 278, 245, 281, 292, 325, 337, 458, 0, 2, 0, 436, 246, 279, 318, 333, 340, 454, 0, 2, 0, 295, 319, 326, 327, 0, 334, 338, 341, 345, 428, 278, 278, 349, 352, 0, 378, 455, 459, 0, 0, 0, 1, 278, 2, 510, 556, 558, 278, 2, 721, 279, 724, 525, 525, 279, 0, 0, 0, 257, 527, 522, 2, 278, 0, 0, 278, 530, 2, 481, 2, 534, 0, 0, 0, 0, 17, 56, 4, 5, 6, 15, 0, 0, 0, 278, 2, 0, 278, 62, 63, 64, 65, 19, 18, 20, 23, 47, 66, 0, 69, 73, 76, 79, 84, 87, 89, 91, 93, 95, 97, 102, 475, 731, 434, 474, 0, 432, 433, 0, 546, 561, 564, 567, 573, 576, 579, 343, 0, 2, 719, 0, 278, 722, 2, 278, 3, 408, 0, 416, 279, 278, 291, 317, 271, 332, 339, 3, 3, 390, 394, 404, 409, 453, 278, 410, 686, 687, 278, 411, 413, 278, 2, 563, 575, 709, 2, 2, 233, 2, 0, 0, 438, 437, 137, 2, 2, 235, 2, 2, 234, 2, 265, 2, 266, 0, 264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 547, 586, 0, 436, 2, 541, 550, 640, 543, 544, 513, 278, 2, 580, 589, 582, 583, 0, 260, 278, 278, 323, 0, 279, 0, 278, 714, 718, 716, 514, 278, 525, 239, 247, 293, 0, 2, 515, 278, 479, 320, 321, 267, 335, 342, 0, 278, 2, 367, 278, 355, 0, 0, 361, 708, 278, 729, 381, 0, 456, 480, 236, 237, 500, 278, 418, 0, 278, 221, 0, 2, 223, 0, 279, 0, 241, 2, 242, 262, 0, 0, 2, 278, 525, 278, 466, 468, 467, 0, 0, 731, 0, 278, 0, 278, 470, 278, 540, 538, 539, 537, 0, 532, 535, 66, 101, 0, 278, 54, 50, 278, 59, 278, 278, 48, 49, 61, 2, 124, 0, 0, 430, 0, 429, 108, 278, 52, 53, 16, 0, 30, 31, 35, 2, 0, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 0, 0, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 2, 626, 435, 623, 527, 527, 631, 460, 278, 2, 565, 566, 0, 577, 578, 0, 2, 720, 723, 108, 278, 2, 278, 0, 688, 279, 692, 683, 684, 690, 0, 2, 2, 648, 527, 731, 597, 527, 527, 731, 527, 611, 527, 527, 662, 417, 645, 527, 527, 653, 660, 278, 412, 279, 0, 0, 278, 698, 279, 703, 731, 695, 278, 700, 731, 278, 278, 278, 0, 108, 0, 17, 2, 0, 0, 440, 729, 0, 0, 446, 225, 0, 278, 0, 0, 0, 525, 549, 553, 555, 585, 588, 592, 595, 548, 587, 0, 268, 638, 0, 278, 261, 0, 0, 0, 0, 259, 2, 0, 243, 516, 278, 0, 0, 0, 0, 278, 278, 0, 0, 672, 365, 368, 372, 527, 372, 677, 371, 669, 527, 527, 348, 356, 364, 357, 527, 359, 362, 278, 730, 0, 0, 379, 729, 279, 3, 397, 3, 401, 400, 571, 0, 511, 278, 3, 3, 278, 416, 279, 3, 410, 411, 2, 0, 0, 0, 465, 290, 278, 461, 463, 3, 2, 2, 0, 482, 3, 0, 534, 126, 0, 210, 0, 0, 2, 0, 0, 36, 0, 0, 108, 278, 21, 0, 22, 0, 672, 431, 0, 106, 3, 2, 28, 2, 0, 33, 0, 2, 26, 103, 104, 70, 71, 72, 74, 75, 77, 78, 82, 83, 80, 81, 85, 86, 88, 90, 92, 94, 96, 0, 0, 732, 278, 0, 0, 0, 627, 628, 624, 625, 477, 476, 278, 0, 3, 278, 694, 278, 699, 279, 278, 278, 278, 642, 685, 641, 2, 278, 0, 0, 0, 0, 0, 0, 0, 0, 663, 0, 649, 600, 616, 650, 2, 596, 603, 414, 598, 599, 415, 2, 610, 619, 612, 613, 646, 647, 661, 689, 693, 691, 731, 252, 2, 725, 2, 405, 697, 702, 406, 0, 384, 3, 3, 3, 3, 436, 3, 0, 2, 448, 445, 730, 0, 441, 2, 444, 447, 0, 278, 226, 248, 3, 256, 258, 0, 436, 2, 551, 552, 2, 590, 591, 0, 639, 517, 3, 329, 328, 331, 330, 278, 518, 0, 519, 278, 358, 360, 2, 0, 0, 0, 0, 374, 673, 674, 369, 373, 370, 670, 671, 363, 367, 350, 381, 376, 382, 0, 0, 0, 419, 224, 0, 0, 3, 2, 648, 412, 0, 507, 0, 731, 469, 0, 278, 278, 278, 0, 531, 533, 127, 0, 206, 0, 0, 211, 212, 55, 60, 278, 0, 58, 57, 0, 125, 673, 0, 67, 68, 107, 112, 3, 106, 0, 0, 0, 25, 35, 3, 0, 99, 0, 3, 630, 634, 637, 629, 3, 572, 3, 696, 701, 2, 278, 3, 3, 279, 0, 3, 602, 606, 609, 618, 652, 656, 659, 278, 3, 601, 617, 651, 278, 278, 407, 278, 278, 726, 0, 0, 0, 0, 240, 0, 101, 0, 3, 3, 0, 442, 0, 439, 0, 0, 229, 278, 0, 0, 126, 0, 0, 0, 0, 0, 126, 0, 0, 0, 2, 0, 0, 3, 128, 129, 2, 139, 130, 131, 132, 133, 134, 135, 141, 143, 0, 0, 0, 269, 278, 278, 527, 0, 520, 278, 108, 676, 680, 682, 675, 366, 380, 377, 559, 2, 644, 643, 0, 649, 2, 462, 464, 484, 3, 492, 493, 0, 2, 488, 3, 3, 0, 0, 536, 0, 0, 210, 0, 3, 37, 729, 106, 0, 3, 641, 42, 3, 40, 3, 34, 0, 3, 98, 100, 0, 2, 632, 633, 0, 0, 278, 0, 0, 0, 3, 618, 0, 2, 604, 605, 2, 620, 2, 654, 655, 0, 0, 3, 0, 3, 3, 3, 3, 392, 391, 395, 2, 2, 728, 727, 109, 0, 0, 0, 0, 3, 443, 3, 0, 227, 142, 3, 279, 278, 0, 0, 0, 0, 2, 187, 0, 185, 0, 0, 0, 0, 0, 0, 191, 0, 108, 527, 147, 144, 278, 0, 0, 251, 263, 3, 3, 526, 593, 351, 2, 678, 679, 278, 250, 278, 0, 495, 472, 278, 0, 0, 471, 486, 0, 207, 0, 213, 106, 0, 0, 113, 110, 0, 0, 0, 0, 0, 0, 24, 0, 635, 278, 560, 249, 704, 705, 706, 0, 657, 278, 278, 278, 3, 3, 0, 665, 0, 0, 0, 0, 278, 278, 3, 524, 109, 450, 0, 0, 230, 279, 0, 0, 0, 0, 278, 188, 186, 0, 183, 189, 0, 0, 0, 192, 195, 193, 190, 126, 140, 138, 228, 0, 0, 278, 399, 403, 402, 0, 489, 2, 490, 2, 491, 485, 278, 214, 0, 0, 3, 641, 32, 111, 2, 45, 2, 43, 41, 29, 109, 27, 3, 707, 3, 3, 3, 0, 0, 664, 666, 607, 621, 253, 2, 389, 3, 388, 0, 452, 449, 126, 0, 0, 126, 3, 0, 126, 184, 0, 2, 200, 194, 0, 136, 554, 594, 3, 2, 0, 0, 2, 208, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 667, 668, 278, 0, 451, 148, 0, 0, 2, 161, 126, 150, 0, 178, 0, 126, 0, 2, 152, 0, 2, 2, 0, 278, 494, 496, 487, 0, 0, 111, 38, 3, 3, 636, 608, 622, 658, 393, 126, 154, 157, 0, 156, 160, 3, 163, 162, 0, 126, 180, 126, 3, 0, 278, 0, 2, 681, 2, 209, 216, 0, 0, 0, 149, 0, 0, 159, 217, 164, 2, 219, 179, 0, 182, 168, 196, 3, 201, 205, 0, 278, 0, 39, 46, 44, 155, 158, 126, 0, 165, 278, 126, 126, 0, 169, 0, 0, 672, 202, 203, 204, 197, 3, 278, 145, 166, 151, 126, 220, 181, 176, 174, 170, 153, 126, 0, 673, 0, 0, 146, 167, 177, 171, 175, 174, 172, 3, 0, 473, 173, 198, 3, 199 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 826, 468, 297, 45, 130, 131, 298, 299, 300, 301, 773, 755, 1122, 1123, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 1032, 518, 978, 317, 979, 546, 958, 1057, 1476, 1059, 1060, 1061, 1062, 1477, 1063, 1064, 1412, 1413, 1381, 1382, 1383, 1460, 1461, 1465, 1466, 1494, 1495, 1065, 1345, 1066, 1067, 1284, 1285, 1286, 1448, 1068, 962, 963, 964, 1363, 1440, 1441, 469, 470, 887, 888, 1040, 48, 49, 50, 51, 52, 341, 155, 55, 56, 57, 58, 59, 343, 61, 62, 259, 64, 65, 270, 345, 346, 68, 69, 70, 71, 115, 73, 200, 348, 116, 76, 117, 78, 79, 80, 449, 450, 451, 452, 690, 924, 691, 81, 82, 456, 711, 868, 869, 351, 352, 714, 715, 716, 353, 354, 355, 356, 466, 335, 132, 133, 522, 319, 166, 644, 645, 646, 647, 648, 83, 118, 85, 489, 490, 950, 491, 273, 495, 320, 86, 134, 135, 87, 1305, 1103, 1104, 1105, 1106, 88, 89, 732, 90, 269, 91, 92, 183, 1034, 678, 405, 122, 93, 501, 502, 503, 184, 264, 186, 187, 188, 265, 96, 97, 98, 99, 100, 101, 102, 191, 192, 193, 194, 195, 838, 605, 606, 607, 608, 196, 610, 611, 612, 571, 572, 573, 574, 695, 103, 614, 615, 616, 617, 618, 619, 923, 697, 698, 699, 595, 359, 360, 361, 362, 321, 161, 105, 106, 107, 364, 709, 568 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1269 static const yytype_int16 yypact[] = { 5632, 9056, -1269, 25, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 17, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 113, 113, 113, 803, 791, 56, 6940, 839, -1269, -1269, -1269, -1269, -1269, 59, -1269, -1269, -1269, 628, 90, 8532, -1269, -1269, -1269, -1269, -1269, -1269, 88, 155, -1269, 911, -1269, -1269, -1269, -1269, 140, 1450, 287, 96, 4240, -1269, -1269, 8601, 1048, -1269, -1269, -1269, 1246, 329, 6299, 1010, 880, 1246, 1728, -1269, -1269, 332, 328, -1269, 1246, 1769, -1269, 227, -1269, 369, 379, -1269, -1269, -1269, -1269, 256, 155, 113, -1269, 113, -1269, -1269, -1269, -1269, 9292, 911, -1269, -1269, 911, -1269, 9351, 266, -1269, -1269, 1507, 9410, -1269, 839, 839, 839, -1269, -1269, -1269, 113, -1269, -1269, -1269, 291, 341, 348, -1269, -1269, -1269, 361, -1269, -1269, -1269, -1269, -1269, 391, 401, -1269, 469, 839, 8040, 1076, 326, 352, 486, 522, 542, 576, 588, 8805, 6382, 474, 482, -1269, 8669, -1269, -1269, -1269, -1269, 571, -1269, 47, 5492, -1269, 596, 239, -1269, -1269, -1269, -1269, 597, 315, 324, 359, 113, 614, -1269, -1269, 1450, 2466, 659, -1269, 128, -1269, 113, 113, 155, -1269, -1269, 131, -1269, 113, 113, -1269, 3629, 647, 656, 839, 10211, -1269, -1269, 665, 8532, -1269, -1269, 1246, -1269, -1269, -1269, 155, -1269, 911, 88, -1269, 7183, -1269, 839, 839, 839, 155, -1269, 803, -1269, 6072, -1269, -1269, 652, 839, -1269, 839, -1269, 59, 8040, 9115, 675, -1269, 791, 684, 839, -1269, 803, 674, 681, -1269, 6940, 744, -1269, -1269, -1269, 8471, -1269, -1269, 5138, -1269, 659, 73, 9410, 10491, 1507, 3629, -1269, 138, -1269, -1269, 9351, 911, 708, 11267, -1269, -1269, 713, -1269, 11002, 10719, 10776, 10719, 10833, -1269, 737, -1269, -1269, -1269, -1269, 10890, 10890, 744, 4439, 751, 10719, 8146, -1269, -1269, -1269, -1269, -1269, -1269, 766, -1269, 828, 1924, 10719, -1269, 465, 544, 763, 389, 621, 755, 754, 759, 813, 65, -1269, -1269, 782, 510, -1269, 307, -1269, -1269, 1076, -1269, -1269, 774, 807, -1269, 784, 807, 815, 59, -1269, -1269, 821, 9292, -1269, 826, 7828, -1269, -1269, 715, 2130, 7574, 10211, 1246, -1269, 1246, 839, 839, -1269, -1269, -1269, -1269, -1269, -1269, 839, 9469, 911, -1269, -1269, 9528, 1378, -1269, 9174, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 831, 4897, 10719, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 1507, -1269, 728, 842, 859, 891, 817, 925, 926, 927, 2466, -1269, -1269, 865, 88, 869, -1269, -1269, 928, -1269, -1269, -1269, 8471, -1269, -1269, -1269, -1269, -1269, 3629, -1269, 8040, 8040, -1269, 1507, 11295, 911, 7639, -1269, -1269, -1269, -1269, 8471, 73, -1269, -1269, 1246, 155, -1269, -1269, 8471, -1269, 6187, -1269, -1269, 839, 839, 339, 9587, 909, 1932, 2385, -1269, 377, 414, 791, -1269, 9115, 924, 912, 791, 839, -1269, -1269, -1269, -1269, 9947, -1269, 512, 7494, -1269, 155, 930, -1269, 1507, 11077, 10548, -1269, -1269, -1269, -1269, 824, 3629, -1269, 7704, 659, 6831, -1269, -1269, -1269, 746, 592, 782, 791, 11267, 530, 9351, -1269, 11267, -1269, -1269, -1269, -1269, 613, -1269, 932, -1269, -1269, 12, 4439, -1269, -1269, 4439, -1269, 7934, 4439, -1269, -1269, -1269, 933, -1269, 625, 936, 545, 939, -1269, 8873, 5389, -1269, -1269, -1269, 67, -1269, -1269, 10605, -1269, 249, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 10491, 10491, -1269, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 10719, 4719, 10491, -1269, 510, 1578, -1269, -1269, 113, 113, -1269, -1269, 8040, -1269, -1269, 928, 744, -1269, 928, 10662, -1269, -1269, -1269, 4020, 5389, 938, 8252, 941, -1269, 9646, -1269, -1269, 571, -1269, 942, 1657, 947, 1802, 198, 782, -1269, 113, 113, 782, 245, -1269, 113, 113, 928, -1269, -1269, 113, 113, -1269, 807, 9705, 911, 11208, 419, 426, 9705, -1269, 9882, -1269, 782, -1269, 9469, -1269, 144, 7291, 7291, 7291, 911, -1269, 10434, 934, 831, 353, 949, -1269, 951, 5492, 583, -1269, 1032, 911, 7291, 744, 1507, 744, 659, 795, 807, -1269, -1269, 800, 807, -1269, -1269, -1269, 986, -1269, 807, 155, 9947, -1269, 635, 960, 638, 961, -1269, 962, 155, -1269, -1269, 8471, 155, 958, 436, 443, 9764, 6494, 2437, 10719, 2673, -1269, -1269, 956, 32, 956, -1269, -1269, -1269, 113, 113, -1269, -1269, 791, -1269, 113, -1269, -1269, 2798, 791, 968, 10719, -1269, 924, 11208, -1269, -1269, 967, -1269, -1269, -1269, 744, -1269, 11143, 10719, -1269, 7291, 584, 7574, -1269, -1269, 571, 969, 972, 746, 2082, -1269, -1269, 11267, -1269, -1269, 965, -1269, -1269, 984, -1269, 965, 989, 11002, 10491, 944, 1017, 991, 992, 751, 987, 996, -1269, 997, 1000, 2971, 6158, -1269, 10491, -1269, 545, 1808, -1269, 5683, 10491, 998, -1269, -1269, 831, 639, -1269, 10491, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 465, 465, 544, 544, 763, 763, 763, 763, 389, 389, 621, 755, 754, 759, 813, 10719, 616, -1269, 9947, 1005, 1006, 1007, 1578, -1269, -1269, -1269, -1269, -1269, 9947, 643, 10719, 7291, -1269, 9469, -1269, 6606, 8358, 9233, 6382, -1269, -1269, -1269, 1657, 9947, 846, 1012, 1013, 1015, 1019, 1020, 1023, 1024, -1269, 3182, 1802, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 928, -1269, -1269, -1269, 782, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 1025, -1269, 1026, 1029, -1269, -1269, 88, 998, 10434, -1269, -1269, -1269, 4897, 1028, -1269, -1269, -1269, -1269, 791, 5798, 1104, -1269, -1269, -1269, -1269, 1027, 88, -1269, -1269, 928, -1269, -1269, 928, 142, 928, -1269, -1269, -1269, -1269, -1269, -1269, 8737, -1269, 155, -1269, 9115, -1269, -1269, 1034, 761, 1031, 1038, 1041, -1269, 2673, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 1932, -1269, 912, -1269, -1269, 1044, 1046, 1047, -1269, -1269, 1042, 1050, -1269, 584, 1953, -1269, 534, -1269, 2082, 782, -1269, 1054, 11267, 9823, 8040, 1055, -1269, -1269, 1051, 1056, -1269, 1059, 169, 1057, -1269, 1058, 1058, 5389, 10491, -1269, -1269, 1058, -1269, 1808, 4897, -1269, -1269, -1269, -1269, 1060, 10491, 1062, 744, 10434, -1269, 10605, -1269, 744, -1269, 10491, -1269, 840, 807, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 831, 7828, -1269, -1269, 6718, 1067, -1269, 864, 807, -1269, 871, 882, 807, -1269, 839, 3327, -1269, -1269, -1269, 9947, 9947, -1269, 7639, 7639, -1269, 1063, 1064, 1068, 1071, -1269, 1074, 541, 48, 998, -1269, 744, -1269, 5492, -1269, 10491, 455, -1269, 6043, 1080, 1081, 10377, 1083, 1084, 55, 173, 23, 10491, 1085, 155, 4287, 1089, 1086, 1065, -1269, -1269, -1269, 1087, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 791, 1094, 10491, -1269, 9947, 9947, 113, 1095, -1269, 8997, 8935, 889, 807, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 1098, 1953, -1269, -1269, 1082, -1269, 965, -1269, -1269, 1507, 1097, -1269, -1269, -1269, 650, 1096, -1269, 10719, 1077, 1017, 1017, 1102, -1269, 951, 10491, 1111, 1060, 559, 61, 1108, -1269, 1102, -1269, 1113, 1108, -1269, -1269, 1118, -1269, -1269, 928, 1120, 1121, 6270, 1123, 1124, 1125, -1269, -1269, 1122, -1269, -1269, 928, -1269, -1269, -1269, -1269, 928, 10491, 10491, 10719, 1127, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 10719, 10719, 1128, 1133, 1108, -1269, -1269, 791, -1269, -1269, -1269, 7118, 9823, 10491, 10491, 1180, 10491, -1269, -1269, 1114, -1269, 1117, 10491, 1135, 1137, 10491, 901, -1269, 1138, 8499, 113, -1269, -1269, 5798, 1140, 467, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 928, 10183, -1269, 7704, 1147, -1269, -1269, 9823, 476, 481, -1269, 1157, 1165, -1269, 201, -1269, 10491, 1166, 1167, -1269, -1269, 1168, 257, 313, 744, 1169, 1171, -1269, 1172, -1269, 9947, -1269, -1269, -1269, -1269, -1269, 1174, -1269, 9947, 9947, 9947, -1269, -1269, 1175, -1269, 1179, 1182, 1183, 573, 7358, 7466, -1269, -1269, 609, -1269, 1184, 1185, -1269, 7769, 651, 662, 1141, 664, 5921, -1269, -1269, 508, -1269, -1269, 687, 1189, 155, 1237, 1240, -1269, -1269, 10377, -1269, -1269, -1269, 1193, 1197, 9947, -1269, -1269, -1269, 1196, -1269, -1269, -1269, -1269, -1269, -1269, 9823, -1269, 1190, 1231, 1060, 253, -1269, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 1204, -1269, -1269, -1269, -1269, -1269, -1269, 1211, 1215, -1269, -1269, -1269, -1269, -1269, -1269, -1269, 1219, -1269, 1218, -1269, -1269, 10377, 147, 10491, 10377, -1269, 1225, 10491, -1269, 264, 1239, -1269, -1269, 1229, -1269, -1269, -1269, -1269, -1269, 911, 1507, 1233, -1269, -1269, 704, 1228, 10491, 744, 744, 1248, 1249, 1250, 1251, -1269, -1269, 7639, 1256, -1269, 1301, 10719, 1259, -1269, -1269, 10297, -1269, 716, -1269, 1224, 10377, 1235, -1269, -1269, 1268, -1269, 1282, 1270, 9823, -1269, -1269, -1269, 1252, 1302, 1273, -1269, 1108, 1108, -1269, -1269, -1269, -1269, -1269, 10377, 54, -1269, 897, -1269, -1269, 7049, -1269, -1269, 1255, 10491, -1269, 10491, 7049, 155, 9587, 1283, -1269, -1269, 1280, -1269, -1269, 10491, 1284, 1285, -1269, 10719, 10719, -1269, -1269, 966, 99, -1269, -1269, 1266, -1269, 966, -1269, -1269, 2561, 744, 155, 9587, 1290, -1269, -1269, -1269, -1269, -1269, 10297, 1286, 966, 3510, 10491, 10217, 1287, 966, 1294, 2561, 3047, -1269, -1269, -1269, -1269, -1269, 8040, -1269, 10062, -1269, 10297, -1269, -1269, 1274, 9981, -1269, -1269, 10217, 155, 3047, 1297, 717, -1269, 10062, -1269, -1269, -1269, 9981, -1269, -1269, 155, -1269, -1269, -1269, -1269, -1269 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1269, 3902, 2604, -1269, 354, -1269, -1, 2, 742, -1269, -1269, -1269, -489, -961, -282, 4749, -1269, 570, 459, 468, 357, 464, 844, 848, 849, 847, 850, -1269, -229, -231, 4555, 296, -694, -919, -1269, 166, -721, 143, -1269, 86, -1269, 216, -1143, -1269, -1269, -17, -1269, -1146, -1036, 71, -1269, -1269, -1269, -1269, -75, -1160, -1269, -1269, -1269, -1269, -1269, -1269, 141, -26, 21, 316, -1269, 320, -1269, 13, -1269, -294, -1269, -1269, -1269, 364, -829, -1269, -1269, 11, -963, 125, 1704, -1269, -1269, -1269, -72, -1269, 82, 49, -18, 1039, 3754, -1269, -1269, 81, 133, 536, -256, 1629, -1269, 1307, -1269, -1269, 224, 1625, -1269, 1893, 1163, -1269, -1269, -426, -421, 993, 994, 507, 747, 306, -1269, -1269, 980, 516, -433, -1269, -199, 75, 591, -1269, -1269, -894, -1000, 6, 910, 861, 176, -1269, 721, 158, -317, -210, -149, 478, 577, -1269, 809, -1269, 2211, 740, -443, 722, -1269, -1269, 511, -1269, -232, -1269, -46, -1269, -1269, -1269, -1268, 243, -1269, -1269, -1269, 981, -1269, -7, -1269, -1269, -827, -35, -1227, -161, 1978, -1269, 3527, -1269, 719, -1269, -157, 41, -172, -170, -163, 4, -41, -36, -34, 777, 24, 33, 45, -143, -151, -150, -145, -139, -288, -529, -505, -476, -564, -323, -560, -1269, -1269, -516, 899, 906, 915, 1643, 4256, -522, -566, -549, -514, -546, -1269, -372, -680, -674, -672, -603, -208, -186, -1269, -1269, 64, 293, -93, -1269, 3162, 208, -613, -396 }; /* 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 -503 static const yytype_int16 yytable[] = { 110, 146, 46, 445, 95, 432, 147, 918, 148, 392, 256, 393, 111, 919, 141, 920, 377, 857, 394, 498, 609, 47, 403, 1161, 140, 400, 1127, 959, 701, 707, 395, 396, 881, 46, 832, 95, 397, 1360, 839, 401, 831, 94, 398, 774, 46, 506, 46, 505, 158, 740, 113, 833, 47, 745, 806, 604, 46, 843, 1069, 337, 1070, 1119, 46, 850, 189, 46, 149, 212, 46, 30, 222, 828, 94, 976, 1171, 150, 696, 215, 263, 1177, 840, 66, 60, 145, 918, 94, 834, 151, 108, 392, 919, 393, 920, 156, 738, 829, 475, 477, 394, 935, 119, 185, 672, 674, 94, 400, 46, 94, 160, 46, 395, 396, 66, 60, 749, 46, 397, 668, 120, 401, 108, 750, 398, 198, 830, 53, 112, 1429, 1159, 1160, 402, 596, 108, 67, 1189, 404, 677, 1167, 169, 1234, 146, -218, -218, 1436, 681, 147, 46, 148, 158, 766, 30, 1414, 254, 565, 46, 371, 53, 139, 156, 46, 143, 367, 418, 1168, 67, 30, 1235, 199, 30, 1168, 770, 372, 628, 160, 476, 30, 632, 744, 439, 1185, 471, 249, 421, 46, 46, 94, 158, 566, 206, 1378, 1379, 216, 318, 666, 152, 757, 208, 460, 94, 46, 735, 334, 872, 873, 828, 149, -218, 46, 844, 158, 1414, 165, 847, 1176, 150, 1161, 46, 528, 890, 46, 146, 435, 391, 185, 74, 147, 151, 148, 829, 248, 173, 404, 412, 864, 404, 30, 1418, 867, 108, 481, 463, 404, 663, 587, 1077, 476, 94, 465, 177, 46, 422, 95, 163, 1380, 426, 74, 664, 830, 94, 832, 810, 167, 1161, 46, 46, 1005, 158, 567, 47, 427, 46, 1111, 337, 1017, 729, 410, 833, 46, 1112, 609, 257, 843, 30, 258, 318, 448, 701, 516, 94, 994, 197, 692, 942, 104, 104, 1129, 828, 1187, 429, 841, 453, 601, 479, 1307, 1484, 694, 1378, 1379, 437, 1309, 1308, 834, 1177, 1418, 108, 1018, 426, 163, 1418, 488, 829, 1483, 108, 663, 104, 46, 1497, 367, 66, 60, 1191, 427, -274, 1418, 472, 243, 1492, 664, 521, 471, 1418, 156, 433, 1496, 46, 46, 848, 380, 601, 830, 434, 322, 776, 523, 655, -109, 160, 248, 471, 104, 1313, 46, 1365, 381, 94, 46, 471, 1159, 1160, 246, 1389, 1069, 53, 1070, 1161, 520, -109, 832, 108, -498, 67, 997, 670, 596, 603, 586, 911, 675, 593, 260, 431, 46, -10, 108, 833, 136, 137, 108, 857, 136, 234, 46, 817, 367, 1459, 1403, 1404, 626, 172, 576, 1464, 630, 596, 428, 334, 577, 1315, 596, 108, 46, 136, 137, 840, 383, 46, 1479, 46, 248, 324, 834, 1486, 337, 385, 235, 239, 870, 870, 870, 236, 384, 185, 682, -424, 322, 483, 866, 1346, 577, 386, -425, 46, 500, 870, 1177, 325, 519, 877, 921, 172, 505, 1177, 172, 272, 1021, 1147, 1149, 110, 387, 318, 318, 717, 74, 555, 556, 46, 428, 74, 208, 729, 934, 1409, 505, 46, 388, 367, 702, 46, 1080, 95, 693, 46, 498, 274, 472, 894, 448, 1125, 882, 448, 1177, 163, 703, 275, 1230, 448, 47, 172, 557, 558, 1099, 453, 754, 472, 453, 609, 392, 113, 393, 173, 453, 472, 679, 704, 860, 394, 94, 870, 861, 771, 603, 862, 754, 400, 777, 863, 629, 395, 396, 705, 633, 104, 488, 397, 318, 702, 488, 401, 598, 398, 1016, 1085, 704, 729, 1096, 1344, 721, 521, 728, 696, 521, 914, 318, 521, 1174, 726, 66, 60, 915, 172, 988, 276, 523, 1018, 334, 523, 1174, 548, 523, 365, 1175, 465, 549, 550, 366, 1300, 671, 673, 1442, 326, 1302, 46, 1291, 337, 520, 1442, 108, 520, 136, 137, 520, 1301, 1085, 46, 225, 46, 1303, 208, 226, 471, 53, 230, 569, 232, 404, 719, 870, 762, 67, 892, 241, 720, 570, 172, 46, 327, 1388, 318, 322, 322, 172, 999, 741, 1347, 1480, 817, 74, 742, 815, 862, 46, 593, 827, 1095, 603, 328, -102, 764, 1031, 404, -102, 939, 891, 46, 893, 74, 46, 765, 551, 552, 701, 1016, -109, 74, -109, 1029, 751, 337, -109, 752, 856, 819, 758, 370, 519, 593, 717, 519, 1332, 329, 519, 865, 1333, -109, -109, 1074, 943, 883, 601, 642, 46, 330, 46, 884, 36, 736, 944, 172, 39, 382, 1444, 737, 1445, 322, 378, 40, 41, 559, 560, 74, 871, 871, 871, -449, 172, -449, 746, 402, 172, -449, 938, 322, 747, 1107, 817, 762, 989, 871, 761, 917, 42, 693, 1036, 799, 762, 334, 46, 46, 905, 390, 144, 907, 984, 1481, 762, 225, 996, 762, 985, 419, 46, 138, 720, 1222, 1340, 903, 434, 448, 420, 577, 762, 1128, 728, 472, 910, 1341, 663, 1343, 912, 726, 424, 762, 453, 762, 692, 827, 603, 442, 104, 172, 664, 36, 455, 170, 171, 39, 322, 488, 694, 918, 1348, 458, 40, 41, 596, 919, 762, 920, 859, 461, 598, 871, 237, 240, 211, 472, 462, 1399, 717, 334, 108, 1031, 36, 1400, 874, 484, 39, 366, 717, 1419, 1500, 238, 159, 40, 41, 762, 577, 889, 46, 858, 248, 324, 404, 717, 598, 493, 728, 494, 190, 512, 46, 213, 528, 726, 223, 553, 554, 208, 733, 509, 8, 9, 10, 11, 12, 211, 524, 108, 734, 136, 137, 208, 526, 527, 324, 404, 998, 827, 561, 126, 815, 127, 128, 129, 547, 562, 578, 30, 404, 603, 1224, 563, 505, 225, -275, 230, 581, 1056, 404, 1172, 871, 8, 9, 10, 11, 12, 817, 895, 211, 404, 33, 564, 898, 819, 404, 74, 567, 529, 530, 531, 527, 333, 46, 787, 788, 789, 790, -421, 30, 412, 659, 404, 159, 585, 500, 46, 481, 324, 404, 729, 532, 588, 533, 46, 534, 368, 638, 1263, 1264, 505, 505, 33, 1131, 172, 404, 656, 527, 74, 841, 324, 601, 46, 208, 1314, 1316, 1317, 1282, 1283, 211, 815, 159, 457, 657, 448, 693, 1100, 1143, 665, 404, 66, 60, 225, 693, 1146, 667, 601, 172, 36, 453, 170, 171, 39, 1121, 159, 1148, 754, 601, 1121, 40, 41, 603, 1210, 172, 404, 658, 436, 211, 1151, 1079, 925, 211, 925, 488, 1102, 318, 172, 1437, 1438, 729, 1378, 1379, 783, 784, 53, 685, 2, 202, 4, 5, 6, 7, 67, 785, 786, 791, 792, 717, 717, 660, 661, 662, 1058, 253, 708, 748, 1121, 710, -222, 759, 763, 63, 114, 767, 820, -12, 1056, 822, 824, 1186, 1188, 1190, 856, 835, 2, 202, 4, 5, 6, 7, 879, 880, 886, 285, 906, 908, 913, 688, 909, 1217, 960, -398, 63, 142, 34, 737, 35, 933, -502, 1471, 1101, 947, 224, 717, 717, 157, 211, 954, 8, 9, 10, 11, 12, 956, 961, 965, 966, 643, 968, 1158, 969, 970, 368, 172, 971, 337, 46, 217, 980, 991, 992, 993, 34, 74, 35, 30, 1007, 1008, 1085, 1009, 780, 781, 782, 1010, 1011, 1179, 472, 1012, 1013, 1024, -386, 448, 815, -385, 1071, 1082, -3, 1038, 33, 434, 1081, 1193, 1083, 36, 255, 1084, 453, 39, 1091, 1411, 1089, 505, 1073, 1088, 40, 41, 1092, 1090, 1098, 1108, 1109, 762, 1110, 527, 322, 211, 974, 1113, 1120, 53, 1117, 1141, 1164, 1162, 1163, 1165, 706, 67, 368, 42, 1166, 457, 104, 1180, 1181, 323, 1183, 1184, 1192, 144, 1182, 1198, 215, 255, 344, 1196, -3, 1197, 1203, 1208, 46, 1056, 1214, 1225, 1223, 493, 1218, 1457, 1411, 505, 505, 858, 1228, 728, 739, 211, 743, 1232, 1236, 1239, 726, 1296, 1241, 399, 1243, 1244, 1249, 1273, 210, 1245, 1246, 1247, 1100, 1256, 1265, 1121, 1121, 1121, 417, 1266, 1276, 142, 423, 1277, 1342, 1490, 157, 334, 104, 1290, 717, 1298, 2, 202, 4, 5, 6, 7, 717, 717, 717, 1279, 904, 1280, 1287, 172, 1304, 440, 74, 1306, 1102, 443, 1310, 444, 1312, 1318, 1311, 1319, 1320, 210, 1322, 1328, 459, 66, 60, 1329, 1330, 1331, 63, 1056, 1338, 1339, 1349, 473, 1283, 527, 1352, 1354, 392, 726, 393, 1355, 717, 480, 1357, 206, 216, 394, 1362, 72, 34, 423, 35, 208, 400, 1365, 1361, 1372, 1100, 395, 396, 1373, 210, -387, 1376, 397, 1397, 53, 401, 1387, 1391, 398, 1393, 663, 1401, 67, 211, 104, 1335, 975, 72, 1056, 1398, 1410, 1056, 1058, 1101, 664, 1271, 1272, 1420, 1274, 1405, 1406, 1407, 1408, 1102, 1278, 1179, 472, 1281, 1422, 46, 46, 211, 878, 1333, 1121, 1121, 211, 1415, 1350, 1424, 1426, 1428, 218, 718, 255, 1430, 1431, 594, 1443, 210, 1056, 1432, 527, 622, 1451, 1056, 1453, 1455, 1456, 1463, 1475, 990, 1478, 1485, 433, 1487, 627, 1493, 1499, 53, 627, 995, 434, 255, 793, 1100, 901, 67, 1056, 794, 796, 795, 1231, 1470, 797, 1289, 1006, 210, 1390, 1458, 1501, 210, 929, 74, 1351, 1474, 146, 1226, 932, 1101, 1353, 147, 1227, 148, 1202, 1446, 1086, 712, 683, 684, 926, 812, 36, 1102, 170, 171, 39, 1087, 1472, 473, 46, 1116, 211, 40, 41, 885, 1037, 1056, 949, 347, 1097, 1299, 1056, 344, 731, 957, 211, 802, 473, 46, 46, 104, 158, 1449, 803, 1056, 473, 1056, 370, 0, 0, 1056, 1377, 804, 1056, 1385, 0, 0, 1450, 46, 1056, 367, 104, 0, 1056, 0, 1179, 472, 74, 0, 1449, 0, 713, 1179, 472, 423, 210, 1384, 479, 1447, 0, 104, 0, 0, 36, 1450, 179, 180, 39, 1101, 727, 0, 63, 318, 1417, 40, 41, 0, 0, 1421, 423, 0, 441, 1396, 423, 0, 1473, 0, 0, 0, 53, 0, 1179, 472, 0, 0, 0, 53, 67, 172, 181, 0, 1435, 72, 0, 67, 0, 211, 72, 0, 182, 0, 255, 344, 0, 0, 0, 104, 0, 0, 527, 36, 1498, 179, 180, 39, 0, 0, 718, 0, 0, 0, 40, 41, 1503, 210, 53, 8, 9, 10, 11, 12, 0, 0, 67, 0, 0, 104, 0, 0, 643, 0, 0, 0, 0, 0, 1041, 261, 805, 1156, 1157, 509, 0, 0, 30, 0, 0, 262, 0, 1491, 0, 0, 0, 0, 75, 1491, 627, 818, 0, 594, 0, 0, 0, 0, 1491, 210, 0, 33, 1491, 74, 837, 0, 0, 0, 0, 0, 74, 0, 0, 0, 0, 218, 0, 0, 0, 75, 0, 0, 594, 0, 0, 0, 0, 594, 0, 1205, 1206, 0, 0, 627, 0, 0, 344, 344, 344, 0, 0, 0, 569, 0, 404, 0, 322, 0, 0, 74, 0, 104, 570, 344, 219, 209, 0, 0, 643, 0, 0, 0, 0, 0, 0, 228, 0, 54, 54, 0, 0, 713, 104, 0, 718, 172, 0, 0, 0, 104, 0, 72, 473, 0, 718, 36, 527, 255, 727, 39, 0, 922, 0, 0, -276, 347, 40, 41, 54, 718, 72, 8, 9, 10, 11, 12, 209, 211, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 0, 210, 825, 0, 601, 473, 0, 0, 344, 30, 0, 54, 602, 0, 54, 347, -277, 948, 0, 0, 423, 0, 349, 8, 9, 10, 11, 12, 0, 210, 209, 0, 33, 347, 210, 72, 1041, 0, 0, 0, 0, 0, 255, 727, 0, 0, 0, 0, 973, 0, 30, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 406, 33, 0, 0, 347, 1321, 0, 414, 0, 0, 0, 30, 713, 1323, 1324, 1325, 0, 30, 209, 0, 0, 0, 713, 0, 0, 344, 0, 627, 0, 342, 1004, 627, 818, 0, 33, 0, 0, 713, 0, 36, 33, 179, 180, 39, 75, 0, 0, 1015, 210, 75, 40, 41, 0, 0, 0, 0, 209, 1356, 0, 0, 209, 0, 210, 0, 0, 77, 0, 1269, 347, 0, 0, 0, 0, 0, 0, 600, 499, 601, 0, 406, 0, 764, 0, 404, 0, 602, 0, 0, 0, 0, 211, 765, 0, 54, 0, 0, 77, 0, 63, 0, 0, 718, 718, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 347, 347, 0, 0, 0, 0, 627, 0, 0, 54, 0, 0, 0, 0, 0, 0, 347, 220, 0, 575, 0, 8, 9, 10, 11, 12, 0, 579, 219, 0, 582, 209, 0, 0, 347, 0, 0, 0, 0, 210, 0, 1094, 0, 718, 718, 72, 0, 0, 30, 423, 114, 347, 0, 0, 0, 36, 0, 179, 180, 39, 0, 121, 124, 125, 344, 0, 40, 41, 211, 0, 0, 33, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 0, 0, 0, 0, 0, 72, 0, 0, 347, 687, 406, 404, 75, 0, 414, 0, 594, 688, 0, 689, 0, 0, 350, 545, 0, 0, 349, 0, 209, 142, 943, 75, 601, 0, 713, 713, 0, 344, 344, 75, 944, 0, 0, 347, 0, 209, 0, 0, 0, 0, 250, 0, 251, 0, 0, 0, 0, 1178, 0, 0, 0, 0, 0, 0, 0, 349, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 209, 0, 0, 0, 0, 349, 347, 75, 0, 0, 0, 0, 713, 713, 0, 0, 347, 30, 627, 347, 406, 1297, 0, 0, 218, 0, 347, 342, 0, 0, 0, 347, 0, 0, 0, 0, 0, 0, 77, 0, 33, 0, 0, 77, 0, 36, 0, 0, 349, 39, 718, 0, 0, 389, 0, 0, 40, 41, 718, 718, 718, 0, 0, 408, 409, 210, 0, 0, 413, 0, 415, 416, 0, 727, 0, 0, 0, 0, 0, 0, 0, 733, 0, 0, 0, 0, 54, 0, 0, 0, 0, 734, 72, 36, 0, 179, 180, 39, 0, 0, 0, 0, 718, 0, 40, 41, 0, 0, 0, 84, 575, 575, 349, 0, 0, 0, 1270, 0, 0, 0, 0, 209, 0, 0, 0, 0, 0, 342, 0, 600, 0, 601, 0, 255, 0, 0, 220, 63, 0, 602, 84, 0, 0, 0, 0, 0, 0, 0, 0, 209, 713, 0, 727, 0, 209, 0, 114, 349, 349, 349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 0, 349, 221, 0, 0, 0, 713, 0, 0, 0, 0, 0, 0, 0, 713, 713, 713, 0, 342, 349, 0, 0, 0, 0, 896, 344, 344, 0, 899, 77, 75, 0, 0, 0, 0, 0, 349, 0, 0, 1178, 0, 0, 0, 350, 0, 0, 0, 0, 77, 0, 0, 347, 347, 0, 347, 347, 77, 0, 713, 0, 0, 406, 0, 342, 342, 342, 210, 209, 0, 114, 0, 0, 75, 0, 72, 349, 0, 0, 0, 0, 342, 209, 350, 0, 0, 0, 0, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 499, 77, 0, 0, 0, 0, 347, 347, 0, 349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 344, 25, 26, 27, 0, 350, 0, 0, 0, 30, 446, 0, 0, 349, 0, 0, 342, 0, 0, 0, 210, 114, 0, 349, 0, 0, 349, 0, 0, 0, 347, 219, 33, 349, 209, 575, 0, 0, 349, 37, 38, 0, 1178, 0, 0, 84, 0, 0, 0, 1178, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 350, 0, 0, 0, 218, 0, 447, 0, 0, 0, 700, 0, 0, 0, 109, 0, 0, 0, 0, 1178, 36, 30, 179, 180, 39, 72, 1488, 0, 0, 0, 75, 40, 41, 0, 0, 0, 342, 0, 347, 0, 347, 0, 0, 342, 33, 350, 350, 350, 0, 36, 0, 179, 180, 39, 0, 0, 687, 0, 404, 0, 40, 41, 350, 0, 0, 0, 689, 347, 0, 807, 808, 0, 0, 0, 221, 347, 347, 347, 406, 0, 350, 0, 0, 0, 0, 181, 347, 347, 0, 0, 0, 77, 0, 0, 0, 182, 0, 350, 0, 842, 72, 0, 845, 846, 0, 849, 0, 851, 852, 54, 349, 0, 853, 854, 0, 0, 0, 0, 0, 347, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 350, 0, 0, 0, 84, 0, 0, 0, 36, 0, 179, 180, 39, 0, 0, 209, 1132, 0, 357, 40, 41, 0, 0, 84, 0, 0, 349, 349, 0, 349, 349, 84, 1144, 0, 0, 350, 164, 0, 168, 54, 0, 174, 175, 176, 1468, 178, 404, 0, 0, 75, 0, 0, 0, 342, 1469, 0, 0, 357, 927, 928, 229, 0, 0, 347, 930, 8, 9, 10, 11, 12, 0, 0, 244, 245, 0, 357, 350, 84, 0, 0, 0, 0, 349, 349, 0, 0, 350, 0, 0, 350, 0, 0, 30, 0, 220, 0, 350, 0, 0, 0, 0, 350, 0, 0, 0, 72, 0, 1211, 342, 342, 0, 0, 72, 0, 0, 33, 0, 0, 357, 0, 36, 0, 179, 180, 39, 0, 0, 0, 54, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349, 0, 0, 0, 0, 0, 0, 0, 72, 0, 0, 0, 0, 687, 0, 404, 0, 0, 0, 77, 0, 0, 0, 689, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 0, 0, 0, 219, 0, 0, 209, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 75, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 446, 0, 349, 0, 349, 0, 0, 0, 0, 357, 357, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 350, 0, 357, 0, 0, 37, 38, 349, 0, 0, 0, 0, 0, 0, 0, 349, 349, 349, 0, 0, 357, 0, 54, 54, 0, 0, 349, 349, 0, 0, 0, 84, 0, 0, 0, 0, 0, 357, 0, 209, 75, 447, 0, 0, 54, 931, 0, 0, 0, 109, 0, 0, 350, 350, 0, 350, 350, 0, 0, 349, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 77, 357, 0, 0, 0, 0, 0, 0, 592, 599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 623, 624, 0, 0, 0, 0, 0, 0, 0, 0, 342, 342, 0, 350, 350, 0, 357, 0, 0, 54, 0, 0, 0, 0, 54, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -278, 349, 25, 26, 27, 0, 0, 0, 0, 0, 30, 54, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 0, 0, 357, 0, 0, 0, 350, 221, 33, 357, 0, 0, 0, 0, 357, 37, 38, 0, 75, -278, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 1207, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, 0, 333, 0, 0, 0, 342, 0, 0, 0, 109, 0, 30, 0, 0, 75, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 84, 54, 0, 0, 0, 0, 0, 0, 350, 33, 350, 0, 0, 0, 36, 0, 179, 180, 39, 0, 0, 0, 54, 0, 0, 40, 41, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0, 350, 0, 0, 0, 0, 0, 0, 0, 350, 350, 350, 0, 0, 1468, 0, 404, 0, 0, 0, 350, 350, 0, 0, 1469, 0, 0, 0, 0, 0, 0, 0, 54, 0, 77, 0, 0, 0, 0, 0, 0, 1288, 0, 0, 357, 0, 0, 0, 0, 0, 0, 0, 0, 350, 0, 1014, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 214, 0, 0, 0, 0, 357, 357, 0, 357, 357, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 84, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 350, 0, 288, 0, 162, 0, 0, 0, 0, 268, 0, 0, 0, 0, 0, 0, 289, 0, 373, 357, 357, 0, 0, 0, 0, 291, 813, 293, 294, 295, 296, 0, 0, 0, 0, 0, 0, 0, 162, 0, 0, 0, 77, 0, 0, 0, 0, 0, 363, 77, 0, 936, 369, 937, 0, 0, 0, 0, 0, 0, 940, 941, 0, 0, 0, 946, 0, 1152, 0, 0, 8, 9, 10, 11, 12, 0, 0, 951, 0, 0, 357, 0, 955, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 277, 30, 278, 0, 162, 0, 0, 0, 0, 0, 981, 0, 0, 0, 0, 0, 214, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 221, 0, 280, 0, 0, 0, 281, 162, 454, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 84, 0, 0, 288, 0, 0, 592, 0, 0, 0, 369, 0, 0, 357, 0, 357, 0, 289, 162, 373, 0, 0, 0, 0, 0, 0, 291, 1153, 293, 294, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 454, 0, 357, 162, 0, 0, 0, 0, 0, 0, 357, 357, 357, 0, 0, 0, 0, 0, 0, 0, 0, 357, 357, 1025, 1026, 1027, 1028, 0, 1030, 0, 0, 0, 0, 0, 0, 84, 0, 0, 0, 0, 0, 0, 0, 1072, 0, 0, 0, 0, 0, 0, 597, 0, 0, 0, 357, 621, 0, 1078, 0, 0, 0, 0, 1, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 1093, 30, 0, 0, 0, 0, 123, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, 162, 162, 1118, 0, 357, 0, 363, 0, 0, 1126, 0, 0, 0, 1130, 0, 0, 0, 0, 1134, 0, 1135, 0, 0, 0, 1137, 1138, 1139, 454, 0, 1142, 454, 0, 43, 0, 0, 0, 454, 0, 1154, 0, 109, 0, 123, 0, 123, 0, 84, 0, 0, 0, 0, 0, 0, 84, 0, 0, 1169, 1170, 8, 9, 10, 11, 12, 730, 0, 0, 0, 0, 271, 0, 0, 0, 0, 0, 0, 162, 0, 0, 0, 0, 0, 1199, 0, 0, 1201, 30, 0, 0, 454, 0, 0, 454, 84, 162, 454, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 33, 0, 0, 0, 0, 36, 0, 179, 180, 39, 0, 0, 0, 0, 1216, 123, 40, 41, 0, 0, 1220, 1221, 0, 123, 0, 123, 123, 0, 0, 1229, 123, 0, 123, 123, 1233, 0, 0, 1237, 0, 1238, 0, 261, 1240, 0, 0, 0, 0, 0, 0, 0, 162, 262, 0, 0, 0, 1248, 0, 0, 0, 0, 0, 0, 363, 0, 597, 0, 0, 823, 1255, 0, 1257, 1258, 1259, 1260, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1267, 0, 1268, 0, 0, 0, 168, 597, 0, 0, 0, 0, 597, 0, 0, 0, 123, 0, 0, 0, 0, 363, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1292, 1293, 0, 0, 363, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 0, 231, 0, 233, 0, 0, 0, 0, 0, 0, 242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 730, 0, 0, 0, 0, 0, 0, 0, 0, 1326, 1327, 0, 0, 0, 0, 0, 0, 0, 0, 1337, 207, 454, 231, 233, 242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 945, 0, 0, 0, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 0, 1364, 0, 0, 0, 0, 0, 0, 0, 0, 730, 0, 0, 1368, 0, 1369, 1370, 1371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1375, 0, 0, 0, 0, 0, 153, 0, 0, 1386, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1394, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 0, 231, 233, 242, 363, 0, 0, 0, 621, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, 0, 0, 1433, 1434, 207, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 1439, 0, 0, 0, 0, 0, 0, 1439, 0, 497, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -278, 0, 25, 26, 27, 1467, 0, 0, 0, 153, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 0, 0, 0, 0, 0, 454, 0, 207, 1489, 0, 33, 0, 0, 0, 0, 36, 0, 331, 332, 39, 0, -278, 411, 0, 0, 0, 40, 41, 207, 0, 123, 123, 1502, 231, 233, 0, 425, 1504, 0, 0, 0, 242, 0, 0, 0, 430, 162, 0, 0, 0, 0, 634, 0, 333, 0, 438, 0, 0, 0, 363, 123, 625, 0, 123, 123, 0, 123, 0, 123, 123, 0, 0, 0, 123, 123, 0, 0, 0, 0, 0, 464, 0, 0, 207, 0, 474, 0, 0, 0, 0, 0, 0, 0, 597, 0, 0, 0, 0, 482, 0, 0, 207, 0, 0, 492, 0, 496, 207, 0, 0, 0, 0, 0, 0, 363, 363, 0, 0, 0, 0, 0, 0, 525, 0, 207, 0, 0, 207, 207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 123, 0, 0, 0, 0, 123, 123, 207, 0, 0, 0, 123, 0, 0, 207, 584, 0, 0, 0, 0, 589, 0, 454, 201, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 635, 25, 26, 27, 636, 637, 0, 639, 0, 30, 0, 0, 0, 649, 650, 0, 651, 652, 0, 653, 0, 654, 0, 0, 0, 0, 0, 0, 0, 0, 730, 0, 33, 0, 34, 0, 35, 36, 584, 203, 38, 39, 0, 0, 0, 0, 669, 0, 40, 41, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 680, 0, 214, 42, 0, 204, 0, 0, 279, 0, 207, 686, 0, 205, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 722, 0, 288, 0, 207, 730, 725, 0, 0, 207, 0, 464, 0, 0, 0, 0, 289, 0, 373, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 0, 0, 0, 0, 0, 336, 358, 0, 1194, 0, 0, 0, 0, 0, 0, 0, 760, 0, 0, 0, 363, 363, 0, 0, 0, 0, 0, 0, 0, 214, 0, 0, 775, 0, 0, 0, 0, 0, 407, 0, 0, 0, 0, 0, 0, 407, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 207, 25, 26, 27, 801, 0, 0, 0, 277, 30, 278, 0, 0, 811, 207, 0, 0, 0, 0, 0, 814, 0, 0, 0, 0, 821, 0, 0, 0, 0, 0, 279, 33, 0, 497, 0, 836, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 407, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 289, 0, 517, 876, 0, 167, 0, 0, 0, 291, 292, 293, 294, 295, 296, 0, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 0, 407, 0, 0, 0, 821, 0, 0, 0, 407, 580, 0, 407, 583, 454, 0, 0, 0, 207, 0, 0, 0, 358, 0, 0, 0, 613, 0, 0, 0, 0, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 454, 0, 0, 0, 631, 0, 0, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 162, 0, 0, 0, 0, 0, 952, 953, 0, 0, 407, 0, 0, 0, 407, 0, 0, 0, 967, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 982, 0, 983, 0, 207, 0, 987, 0, 0, 358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316, 0, 0, 0, 207, 0, 407, 0, 0, 0, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 0, 0, 0, 123, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 407, 0, 0, 358, 0, 0, 0, 0, 1019, 0, 0, 0, 0, 0, 0, 1020, 0, 0, 0, 0, 277, 0, 278, 207, 0, 0, 0, 0, 1022, 0, 1023, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 407, 279, 1035, 336, 358, 0, 0, 280, 1039, 0, 0, 281, 0, 316, 282, 283, 284, 285, 40, 41, 1075, 286, 287, 1076, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 478, 0, 0, 589, 0, 289, 0, 373, 0, 0, 407, 407, 0, 798, 291, 375, 293, 294, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, 0, 816, 358, 0, 358, 207, 0, 0, 0, 0, 0, 0, 0, 613, 0, 613, 613, 0, 0, 0, 0, 0, 613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 855, 358, 0, 0, 0, 0, 358, 0, 0, 0, 0, 0, 0, 0, 0, 358, 358, 358, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1136, 0, 0, 0, 0, 358, 0, 0, 0, 0, 407, 897, 0, 0, 407, 900, 0, 0, 0, 0, 0, 902, 0, 0, 0, 0, 0, 376, 0, 0, 207, 277, 0, 278, 0, 0, 0, 0, 0, 336, 358, 407, 0, 407, 0, 0, 0, 407, 0, 0, 0, 0, 0, 0, 279, 525, 0, 0, 0, 0, 640, 1200, 136, 137, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 358, 613, 0, 288, 0, 0, 0, 0, 0, 0, 0, 1213, 0, 0, 0, 0, 1215, 289, 0, 641, 0, 642, 374, 0, 1219, 0, 291, 375, 293, 294, 295, 296, 0, 0, 336, 358, 0, 0, 0, 407, 407, 0, 0, 207, 504, 508, 504, 511, 724, 0, 0, 0, 1242, 0, 514, 515, 0, 0, 0, 504, 504, 0, 0, 0, 1250, 0, 0, 1251, 0, 1252, 0, 504, 0, 0, 0, 0, 0, 0, 0, 0, 407, 0, 0, 1261, 1262, 0, 756, 0, 0, 358, 0, 0, 0, 0, 0, 816, 358, 0, 0, 769, 613, 0, 613, 0, 0, 1275, 756, 504, 0, 0, 0, 0, 613, 0, 0, 0, 0, 0, 0, 778, 779, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 800, 0, 504, 0, 0, 0, 0, 0, 0, 0, 809, 0, 0, 0, 0, 0, 0, 340, 0, 0, 0, 0, 769, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 816, 0, 25, 26, 27, 0, 0, 0, 407, 0, 30, 0, 0, 407, 0, 0, 0, 0, 0, 0, 0, 407, 0, 0, 0, 0, 0, 0, 0, 875, 0, 0, 0, 33, 613, 613, 376, 1358, 0, 1359, 203, 38, 0, 0, 0, 0, 0, 0, 0, 0, 1366, 0, 1367, 0, 0, 0, 0, 0, 358, 0, 0, 0, 0, 0, 407, 0, 0, 0, 0, 0, 1374, 0, 0, 0, 0, 0, 340, 207, 0, 0, 0, 0, 407, 1133, 267, 0, 1392, 0, 0, 0, 0, 0, 358, 0, 1395, 0, 0, 1219, 407, 1145, 0, 613, 613, 1150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 358, 0, 0, 1416, 0, 0, 0, 0, 0, 0, 0, 0, 1423, 0, 0, 1425, 1427, 0, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 504, 769, 0, 972, 0, 0, 0, 0, 0, 977, 0, 0, 0, 0, 0, 1452, 986, 1219, 0, 0, 0, 0, 0, 816, 407, 1212, 504, 0, 0, 1462, 0, 0, 0, 0, 0, 0, 613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1002, 1003, 0, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 358, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 1033, 0, 0, 0, 376, 0, 504, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 34, 336, 35, 280, 0, 37, 38, 281, 504, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 358, 504, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 338, 0, 0, 0, 0, 768, 0, 291, 339, 293, 294, 295, 296, 0, 0, 0, 0, 316, 0, 0, 0, 0, 0, 0, 504, 358, 358, 0, 0, 0, 1114, 1115, 0, 0, 0, 0, 277, 376, 278, 0, 0, 0, 0, 977, 0, 0, 1124, 0, 756, 0, 0, 0, 0, 0, 0, 504, 0, 0, 0, 279, 0, 0, 0, 0, 0, 280, 0, 1140, 0, 281, 504, 0, 282, 283, 284, 285, 40, 41, 1155, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 289, 1173, 373, 0, 0, 374, 0, 0, 0, 291, 375, 293, 294, 295, 296, 0, 1195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1204, 0, 358, 0, -497, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 0, 977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 875, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 407, 1253, 1254, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 407, 407, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 504, 0, 0, 0, 279, 44, 407, 0, 0, 0, 280, 0, 504, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 977, 289, 0, 373, 0, 0, 974, 0, 504, 0, 291, 375, 293, 294, 295, 296, 0, 0, 1, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 277, 30, 1042, 1043, 0, 1044, 0, 0, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 1053, 0, 0, 1054, 32, 0, 279, 33, 504, 34, 0, 35, 640, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 1055, 504, 0, 167, 0, 0, 0, 291, 292, 293, 294, 295, 296, 0, 0, 504, 504, 0, 0, 1402, 0, -126, 0, 1, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 34, 0, 35, 280, 1454, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 1055, 0, 0, 0, 0, 0, 316, 291, 292, 293, 294, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, -126, 1, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 277, 30, 278, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -278, 0, 0, 279, 33, 0, 34, 0, 35, 280, 30, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 504, 0, 0, 288, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -278, 289, 0, 43, 0, 0, 0, 0, 0, 0, 291, 292, 293, 294, 295, 296, 0, 0, 0, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 504, 504, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -279, 0, 0, 279, 33, 0, 34, 0, 35, 280, 30, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -279, 289, 0, 916, 0, 0, 0, 0, 768, 0, 291, 339, 293, 294, 295, 296, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 279, 33, 0, 34, 0, 35, 280, 30, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 916, 0, 0, 0, 0, 768, 0, 291, 591, 293, 294, 295, 296, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 34, 0, 35, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 338, 0, 0, 0, 0, 0, 0, 291, 339, 293, 294, 295, 296, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 34, 0, 35, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 916, 0, 0, 0, 0, 0, 0, 291, 339, 293, 294, 295, 296, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 34, 0, 35, 280, 0, 203, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 1000, 0, 0, 0, 0, 0, 0, 291, 1001, 293, 294, 295, 296, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 34, 0, 35, 280, 0, 203, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, -501, 0, 0, 0, 44, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 33, 0, 34, 0, 35, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 43, 0, 0, 0, 0, 0, 0, 0, 44, 1, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -278, 0, 25, 26, 27, 28, 0, 0, 29, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, -278, 201, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 43, 0, 0, 30, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 203, 38, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 204, 0, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 203, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 204, 0, 0, 0, 0, 0, 0, 0, 205, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, -383, 676, 30, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 676, 0, 0, 0, 0, 0, 0, 0, 625, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 1336, 0, 0, 0, 108, 0, 37, 38, 0, 0, 0, 0, 0, 0, 676, 0, 0, 0, 0, 0, 0, 0, 625, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 203, 38, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 266, 0, 0, 0, 0, 0, 0, 0, 620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 676, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 590, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 203, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 204, 0, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 0, 0, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 590, -3, 0, 0, 0, 0, 0, 291, 591, 293, 294, 295, 296, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 0, 0, 640, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, -35, 753, 0, 0, 0, 0, 0, 0, 291, 292, 293, 294, 295, 296, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 0, 0, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 290, 0, 0, 0, 0, 0, 0, 291, 292, 293, 294, 295, 296, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 0, 0, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 154, 0, 0, 0, 0, 0, 0, 291, 292, 293, 294, 295, 296, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 0, 0, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 590, 0, 0, 0, 0, 0, 0, 291, 591, 293, 294, 295, 296, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 277, 30, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 33, 0, 0, 0, 0, 280, 0, 37, 38, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 467, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -278, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 33, 0, 25, 26, 27, 36, 0, 331, 332, 39, 30, -278, 0, 0, 0, 0, 40, 41, -3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 37, 38, 39, 333, 0, 0, 0, 0, 0, 40, 41, 109, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 42, 0, 154, 0, 0, 30, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 37, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 42, 0, 43, 0, 30, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 203, 38, 39, 0, 0, 0, 0, 0, 0, 40, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 42, 0, 266, 0, 30, 0, 0, 0, 0, 0, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 331, 332, 39, 0, 0, 0, 0, 0, 0, 40, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 634, 0, 333, 0, 30, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 36, 0, 331, 332, 39, 0, 0, 0, 0, 0, 0, 40, 41, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -278, 0, 25, 26, 27, 0, 0, 0, 333, 0, 30, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, -278, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -278, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 634, 0, 333, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 0, 0, -278, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 446, 634, 0, 333, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 447, 0, 0, 0, 1209, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 108, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 446, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 447, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 634, 0, 333, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 634, 0, 333, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 154, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 203, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 266, 0, 0, 0, 0, 0, 0, 0, 267, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 333, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 447, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 203, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 266, 0, 0, 0, 0, 0, 0, 0, 620, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 590, 0, 0, 0, 0, 0, 0, 0, 625, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 333, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 37, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 203, 38, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 0, 277, 0, 278, 1043, 0, 1044, 0, 0, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1482, 1053, 0, 0, 1054, 32, 0, 279, 0, 0, 0, 0, 0, 640, 0, 0, -396, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 167, 0, 0, 0, 291, 375, 293, 294, 295, 296, 0, 277, 0, 278, 1043, 0, 1044, 0, -126, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 1053, 0, 0, 1054, 32, 0, 279, 0, 0, 0, 0, 0, 640, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 167, 0, 0, 0, 291, 375, 293, 294, 295, 296, 0, 0, 0, 0, 0, 0, 0, 0, -126, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 34, 0, 35, 30, 0, 37, 38, 0, 277, 0, 278, 1043, 0, 1044, 1378, 1379, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1482, 1053, 33, 1295, 1054, 32, 0, 279, 0, 37, 38, 0, 0, 640, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 167, 0, 0, 0, 291, 375, 293, 294, 295, 296, 277, 0, 278, 1043, 0, 1044, 1378, 1379, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 1053, 0, 0, 1054, 32, 0, 279, 0, 0, 0, 0, 0, 640, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 167, 0, 0, 0, 291, 375, 293, 294, 295, 296, 277, 0, 278, 1043, 0, 1044, 0, 0, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 0, 1053, 0, 0, 1054, 32, 0, 279, 0, 0, 0, 0, 0, 640, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 167, 0, 0, 0, 291, 375, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 0, 0, 768, 0, 291, 375, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 0, 0, 0, 0, 291, 723, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 640, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 289, 0, 772, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 289, 0, 373, 0, 0, 0, 0, 0, 0, 291, 813, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 289, 0, 0, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 507, 0, 0, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 277, 0, 278, 0, 0, 0, 0, 0, 510, 0, 0, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 279, 0, 0, 0, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 284, 285, 40, 41, 0, 286, 287, 0, 0, 0, 0, 0, 0, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513, 0, 0, 0, 0, 0, 0, 0, 0, 291, 375, 293, 294, 295, 296, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 36, 0, 170, 171, 39, 0, 0, 0, 0, 0, 0, 40, 41, 201, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 203, 38, 467, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 37, 38, 2, 202, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 34, 0, 35, 0, 0, 203, 38, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 485, 486, 487, 0, 0, 30, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 0, 25, 26, 27, 33, 0, 0, 0, 0, 30, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 203, 38 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1269)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 1, 42, 0, 235, 0, 215, 42, 687, 42, 181, 103, 181, 1, 687, 32, 687, 165, 620, 181, 275, 343, 0, 183, 1023, 31, 182, 987, 748, 449, 455, 181, 181, 645, 31, 600, 31, 181, 1305, 602, 182, 600, 0, 181, 532, 42, 276, 44, 276, 44, 492, 1, 600, 31, 496, 570, 343, 54, 603, 887, 152, 887, 980, 60, 609, 60, 63, 42, 63, 66, 37, 66, 600, 31, 767, 1035, 42, 448, 66, 113, 1042, 602, 0, 0, 42, 764, 44, 600, 42, 65, 261, 764, 261, 764, 44, 490, 600, 257, 258, 261, 712, 75, 60, 419, 420, 63, 262, 104, 66, 44, 107, 261, 261, 31, 31, 102, 113, 261, 411, 101, 262, 65, 109, 261, 27, 600, 0, 1, 1395, 1022, 1023, 57, 339, 65, 0, 111, 103, 430, 89, 52, 78, 181, 42, 43, 89, 438, 181, 144, 181, 144, 521, 37, 1378, 103, 88, 152, 108, 31, 101, 109, 157, 101, 157, 197, 115, 31, 37, 105, 71, 37, 115, 103, 124, 358, 109, 101, 37, 362, 494, 224, 124, 252, 95, 200, 181, 182, 144, 182, 122, 63, 42, 43, 66, 143, 403, 104, 512, 63, 243, 157, 197, 488, 152, 635, 636, 733, 181, 107, 205, 604, 205, 1437, 123, 608, 1042, 181, 1215, 214, 75, 651, 217, 261, 217, 181, 182, 0, 261, 181, 261, 733, 101, 54, 103, 101, 629, 103, 37, 1382, 633, 65, 101, 247, 103, 399, 336, 102, 101, 205, 248, 108, 247, 201, 247, 44, 106, 205, 31, 399, 733, 217, 825, 577, 106, 1262, 261, 262, 825, 262, 123, 247, 205, 268, 102, 365, 837, 482, 189, 825, 275, 109, 602, 104, 827, 37, 107, 235, 236, 707, 288, 247, 805, 3, 448, 725, 0, 1, 989, 825, 124, 212, 101, 236, 103, 261, 102, 1464, 448, 42, 43, 222, 1228, 109, 825, 1275, 1459, 65, 837, 267, 109, 1464, 270, 825, 1464, 65, 480, 31, 323, 1486, 323, 247, 247, 1051, 267, 3, 1479, 252, 108, 1479, 480, 289, 411, 1486, 292, 217, 1486, 342, 343, 101, 108, 103, 825, 217, 143, 103, 289, 389, 102, 292, 101, 430, 66, 103, 359, 109, 124, 323, 363, 438, 1261, 1262, 0, 106, 1200, 247, 1200, 1374, 289, 123, 943, 65, 0, 247, 814, 417, 591, 343, 336, 680, 422, 339, 123, 214, 389, 101, 65, 943, 67, 68, 65, 1001, 67, 68, 399, 588, 399, 1440, 1366, 1367, 358, 54, 102, 1446, 362, 620, 205, 365, 108, 103, 625, 65, 417, 67, 68, 944, 108, 422, 1461, 424, 101, 102, 943, 1466, 524, 108, 101, 106, 634, 635, 636, 106, 124, 399, 102, 101, 235, 268, 631, 1275, 108, 124, 101, 448, 275, 651, 1416, 102, 289, 103, 688, 104, 688, 1423, 107, 101, 859, 1010, 1011, 467, 108, 419, 420, 464, 247, 83, 84, 472, 267, 252, 344, 686, 710, 1374, 710, 480, 124, 480, 108, 484, 913, 484, 448, 488, 747, 101, 411, 655, 446, 985, 646, 449, 1462, 292, 124, 101, 1116, 455, 484, 152, 118, 119, 952, 446, 512, 430, 449, 837, 687, 467, 687, 342, 455, 438, 435, 108, 104, 687, 484, 725, 108, 529, 488, 104, 532, 689, 534, 108, 359, 687, 687, 124, 363, 247, 492, 687, 494, 108, 496, 689, 339, 687, 837, 922, 108, 760, 949, 1275, 469, 507, 482, 930, 510, 124, 512, 513, 108, 482, 484, 484, 124, 214, 798, 101, 507, 1094, 524, 510, 108, 111, 513, 104, 124, 581, 116, 117, 101, 108, 419, 420, 1416, 102, 108, 588, 124, 685, 507, 1423, 65, 510, 67, 68, 513, 124, 973, 600, 67, 602, 124, 473, 71, 680, 484, 74, 101, 76, 103, 102, 814, 108, 484, 653, 83, 108, 111, 268, 621, 102, 1346, 577, 419, 420, 275, 816, 101, 124, 1462, 820, 411, 106, 588, 104, 637, 591, 600, 108, 602, 102, 104, 101, 876, 103, 108, 722, 652, 650, 654, 430, 653, 111, 113, 114, 1080, 948, 102, 438, 104, 874, 507, 759, 108, 510, 620, 589, 513, 101, 507, 625, 669, 510, 104, 102, 513, 631, 108, 123, 124, 894, 101, 103, 103, 105, 687, 102, 689, 109, 65, 102, 111, 342, 69, 101, 1420, 108, 1422, 494, 107, 76, 77, 85, 86, 484, 634, 635, 636, 103, 359, 105, 102, 57, 363, 109, 720, 512, 108, 954, 909, 108, 109, 651, 102, 687, 101, 689, 880, 566, 108, 685, 733, 734, 102, 124, 111, 102, 102, 1463, 108, 208, 102, 108, 108, 101, 747, 29, 108, 102, 102, 668, 622, 707, 101, 108, 108, 989, 686, 680, 677, 102, 922, 102, 681, 686, 104, 108, 707, 108, 930, 733, 734, 124, 484, 424, 922, 65, 106, 67, 68, 69, 577, 737, 930, 1468, 102, 106, 76, 77, 1001, 1468, 108, 1468, 621, 124, 591, 725, 80, 81, 63, 722, 124, 102, 801, 759, 65, 1039, 65, 108, 637, 106, 69, 101, 811, 102, 102, 80, 44, 76, 77, 108, 108, 650, 825, 620, 101, 102, 103, 826, 625, 121, 760, 123, 60, 101, 837, 63, 75, 760, 66, 81, 82, 713, 101, 278, 10, 11, 12, 13, 14, 114, 104, 65, 111, 67, 68, 727, 291, 292, 102, 103, 816, 825, 112, 65, 820, 67, 68, 69, 303, 120, 101, 37, 103, 837, 1110, 121, 1110, 346, 3, 348, 101, 887, 103, 1037, 814, 10, 11, 12, 13, 14, 1081, 101, 157, 103, 60, 87, 101, 821, 103, 680, 123, 78, 79, 80, 339, 103, 909, 555, 556, 557, 558, 101, 37, 101, 102, 103, 144, 101, 747, 922, 101, 102, 103, 1136, 101, 104, 103, 930, 105, 157, 104, 1167, 1168, 1167, 1168, 60, 101, 588, 103, 102, 375, 722, 101, 102, 103, 948, 818, 1234, 1235, 1236, 54, 55, 217, 909, 182, 239, 102, 913, 922, 953, 101, 101, 103, 887, 887, 434, 930, 101, 104, 103, 621, 65, 913, 67, 68, 69, 982, 205, 101, 985, 103, 987, 76, 77, 948, 101, 637, 103, 102, 217, 255, 1014, 911, 692, 259, 694, 952, 953, 954, 650, 108, 109, 1215, 42, 43, 551, 552, 887, 104, 4, 5, 6, 7, 8, 9, 887, 553, 554, 559, 560, 1019, 1020, 102, 102, 102, 887, 103, 108, 101, 1035, 123, 106, 104, 102, 0, 1, 102, 104, 109, 1045, 104, 104, 1048, 1049, 1050, 1001, 104, 4, 5, 6, 7, 8, 9, 109, 108, 28, 75, 102, 102, 106, 109, 104, 1102, 124, 102, 31, 32, 62, 108, 64, 107, 107, 1449, 953, 107, 32, 1075, 1076, 44, 344, 101, 10, 11, 12, 13, 14, 102, 75, 102, 102, 374, 109, 1022, 102, 102, 323, 747, 102, 1196, 1102, 66, 108, 102, 102, 102, 62, 887, 64, 37, 102, 102, 1488, 102, 548, 549, 550, 102, 102, 1042, 1042, 102, 102, 102, 102, 1080, 1081, 102, 28, 102, 124, 107, 60, 1004, 104, 1053, 102, 65, 103, 102, 1080, 69, 104, 1378, 102, 1378, 123, 107, 76, 77, 104, 108, 102, 102, 102, 108, 101, 591, 954, 423, 106, 108, 104, 1042, 108, 102, 102, 108, 108, 102, 453, 1042, 399, 101, 104, 458, 887, 101, 101, 144, 101, 101, 101, 111, 1045, 124, 1179, 152, 153, 104, 107, 109, 102, 102, 1196, 1200, 102, 124, 106, 121, 107, 1436, 1437, 1436, 1437, 1001, 108, 1136, 491, 473, 493, 104, 108, 104, 1136, 1213, 102, 182, 102, 102, 102, 45, 63, 104, 104, 104, 1219, 104, 104, 1234, 1235, 1236, 197, 104, 124, 200, 201, 124, 101, 1475, 205, 1196, 953, 107, 1242, 102, 4, 5, 6, 7, 8, 9, 1250, 1251, 1252, 124, 669, 124, 124, 909, 107, 226, 1042, 102, 1219, 230, 104, 232, 104, 104, 107, 104, 104, 114, 104, 104, 241, 1200, 1200, 104, 102, 102, 247, 1288, 104, 104, 101, 252, 55, 723, 54, 102, 1468, 1215, 1468, 102, 1294, 262, 106, 1178, 1179, 1468, 75, 0, 62, 270, 64, 1178, 1469, 109, 124, 104, 1305, 1468, 1468, 104, 157, 102, 104, 1468, 1359, 1200, 1469, 102, 89, 1468, 101, 1488, 104, 1200, 594, 1042, 1261, 767, 31, 1340, 107, 40, 1343, 1200, 1219, 1488, 1180, 1181, 124, 1183, 102, 102, 102, 102, 1305, 1189, 1275, 1275, 1192, 124, 1358, 1359, 622, 642, 108, 1366, 1367, 627, 109, 1283, 102, 89, 102, 66, 464, 336, 124, 75, 339, 124, 217, 1382, 109, 813, 345, 102, 1387, 107, 104, 104, 124, 101, 801, 107, 107, 1270, 102, 358, 124, 102, 1275, 362, 811, 1270, 365, 561, 1395, 665, 1275, 1410, 562, 564, 563, 1117, 1449, 565, 1200, 826, 255, 1348, 1437, 1496, 259, 702, 1200, 1284, 1452, 1468, 1112, 708, 1305, 1288, 1468, 1113, 1468, 1071, 1423, 930, 458, 446, 446, 694, 581, 65, 1395, 67, 68, 69, 932, 1450, 411, 1449, 974, 713, 76, 77, 647, 880, 1459, 737, 153, 950, 1219, 1464, 425, 484, 747, 727, 569, 430, 1468, 1469, 1179, 1469, 1425, 569, 1477, 438, 1479, 101, -1, -1, 1483, 1340, 569, 1486, 1343, -1, -1, 1425, 1488, 1492, 1488, 1200, -1, 1496, -1, 1416, 1416, 1275, -1, 1452, -1, 464, 1423, 1423, 467, 344, 1342, 1468, 1424, -1, 1219, -1, -1, 65, 1452, 67, 68, 69, 1395, 482, -1, 484, 1475, 1382, 76, 77, -1, -1, 1387, 492, -1, 226, 1358, 496, -1, 1451, -1, -1, -1, 1416, -1, 1462, 1462, -1, -1, -1, 1423, 1416, 1196, 101, -1, 1410, 247, -1, 1423, -1, 818, 252, -1, 111, -1, 524, 525, -1, -1, -1, 1275, -1, -1, 1001, 65, 1487, 67, 68, 69, -1, -1, 669, -1, -1, -1, 76, 77, 1499, 423, 1462, 10, 11, 12, 13, 14, -1, -1, 1462, -1, -1, 1305, -1, -1, 880, -1, -1, -1, -1, -1, 886, 101, 570, 1019, 1020, 1042, -1, -1, 37, -1, -1, 111, -1, 1477, -1, -1, -1, -1, 0, 1483, 588, 589, -1, 591, -1, -1, -1, -1, 1492, 473, -1, 60, 1496, 1416, 602, -1, -1, -1, -1, -1, 1423, -1, -1, -1, -1, 345, -1, -1, -1, 31, -1, -1, 620, -1, -1, -1, -1, 625, -1, 1075, 1076, -1, -1, 631, -1, -1, 634, 635, 636, -1, -1, -1, 101, -1, 103, -1, 1475, -1, -1, 1462, -1, 1395, 111, 651, 66, 63, -1, -1, 974, -1, -1, -1, -1, -1, -1, 73, -1, 0, 1, -1, -1, 669, 1416, -1, 801, 1358, -1, -1, -1, 1423, -1, 411, 680, -1, 811, 65, 1153, 685, 686, 69, -1, 689, -1, -1, 3, 425, 76, 77, 31, 826, 430, 10, 11, 12, 13, 14, 114, 1004, 438, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1462, -1, 594, 101, -1, 103, 722, -1, -1, 725, 37, -1, 63, 111, -1, 66, 464, 3, 734, -1, -1, 737, -1, 153, 10, 11, 12, 13, 14, -1, 622, 157, -1, 60, 482, 627, 484, 1071, -1, -1, -1, -1, -1, 759, 760, -1, -1, -1, -1, 765, -1, 37, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 185, 60, -1, -1, 525, 1242, -1, 192, -1, -1, -1, 37, 801, 1250, 1251, 1252, -1, 37, 217, -1, -1, -1, 811, -1, -1, 814, -1, 816, -1, 153, 819, 820, 821, -1, 60, -1, -1, 826, -1, 65, 60, 67, 68, 69, 247, -1, -1, 836, 713, 252, 76, 77, -1, -1, -1, -1, 255, 1294, -1, -1, 259, -1, 727, -1, -1, 0, -1, 1174, 589, -1, -1, -1, -1, -1, -1, 101, 275, 103, -1, 264, -1, 101, -1, 103, -1, 111, -1, -1, -1, -1, 1178, 111, -1, 217, -1, -1, 31, -1, 887, -1, -1, 1019, 1020, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 634, 635, 636, -1, -1, -1, -1, 909, -1, -1, 247, -1, -1, -1, -1, -1, -1, 651, 66, -1, 318, -1, 10, 11, 12, 13, 14, -1, 326, 345, -1, 329, 344, -1, -1, 669, -1, -1, -1, -1, 818, -1, 944, -1, 1075, 1076, 680, -1, -1, 37, 952, 953, 686, -1, -1, -1, 65, -1, 67, 68, 69, -1, 25, 26, 27, 967, -1, 76, 77, 1270, -1, -1, 60, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, -1, -1, -1, -1, -1, 722, -1, -1, 725, 101, 391, 103, 411, -1, 395, -1, 1001, 109, -1, 111, -1, -1, 153, 123, -1, -1, 425, -1, 423, 1014, 101, 430, 103, -1, 1019, 1020, -1, 1022, 1023, 438, 111, -1, -1, 760, -1, 440, -1, -1, -1, -1, 96, -1, 98, -1, -1, -1, -1, 1042, -1, -1, -1, -1, -1, -1, -1, 464, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 473, -1, -1, -1, -1, 482, 801, 484, -1, -1, -1, -1, 1075, 1076, -1, -1, 811, 37, 1081, 814, 479, 1213, -1, -1, 819, -1, 821, 425, -1, -1, -1, 826, -1, -1, -1, -1, -1, -1, 247, -1, 60, -1, -1, 252, -1, 65, -1, -1, 525, 69, 1242, -1, -1, 177, -1, -1, 76, 77, 1250, 1251, 1252, -1, -1, 187, 188, 1004, -1, -1, 192, -1, 194, 195, -1, 1136, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, 484, -1, -1, -1, -1, 111, 887, 65, -1, 67, 68, 69, -1, -1, -1, -1, 1294, -1, 76, 77, -1, -1, -1, 0, 569, 570, 589, -1, -1, -1, 1179, -1, -1, -1, -1, 594, -1, -1, -1, -1, -1, 525, -1, 101, -1, 103, -1, 1196, -1, -1, 345, 1200, -1, 111, 31, -1, -1, -1, -1, -1, -1, -1, -1, 622, 1213, -1, 1215, -1, 627, -1, 1219, 634, 635, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 967, -1, 651, 66, -1, -1, -1, 1242, -1, -1, -1, -1, -1, -1, -1, 1250, 1251, 1252, -1, 589, 669, -1, -1, -1, -1, 656, 1261, 1262, -1, 660, 411, 680, -1, -1, -1, -1, -1, 686, -1, -1, 1275, -1, -1, -1, 425, -1, -1, -1, -1, 430, -1, -1, 1019, 1020, -1, 1022, 1023, 438, -1, 1294, -1, -1, 693, -1, 634, 635, 636, 1178, 713, -1, 1305, -1, -1, 722, -1, 1042, 725, -1, -1, -1, -1, 651, 727, 464, -1, -1, -1, -1, -1, -1, 153, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 482, 747, 484, -1, -1, -1, -1, 1075, 1076, -1, 760, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 1374, 29, 30, 31, -1, 525, -1, -1, -1, 37, 38, -1, -1, 801, -1, -1, 725, -1, -1, -1, 1270, 1395, -1, 811, -1, -1, 814, -1, -1, -1, 1136, 819, 60, 821, 818, 805, -1, -1, 826, 67, 68, -1, 1416, -1, -1, 247, -1, -1, -1, 1423, 252, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, 589, -1, -1, -1, 1179, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, 1462, 65, 37, 67, 68, 69, 1200, 1469, -1, -1, -1, 887, 76, 77, -1, -1, -1, 814, -1, 1213, -1, 1215, -1, -1, 821, 60, 634, 635, 636, -1, 65, -1, 67, 68, 69, -1, -1, 101, -1, 103, -1, 76, 77, 651, -1, -1, -1, 111, 1242, -1, 573, 574, -1, -1, -1, 345, 1250, 1251, 1252, 917, -1, 669, -1, -1, -1, -1, 101, 1261, 1262, -1, -1, -1, 680, -1, -1, -1, 111, -1, 686, -1, 603, 1275, -1, 606, 607, -1, 609, -1, 611, 612, 887, 967, -1, 616, 617, -1, -1, -1, -1, -1, 1294, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 722, -1, -1, 725, -1, -1, -1, 411, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 1004, 991, -1, 425, 76, 77, -1, -1, 430, -1, -1, 1019, 1020, -1, 1022, 1023, 438, 1007, -1, -1, 760, 50, -1, 52, 953, -1, 55, 56, 57, 101, 59, 103, -1, -1, 1042, -1, -1, -1, 967, 111, -1, -1, 464, 698, 699, 74, -1, -1, 1374, 704, 10, 11, 12, 13, 14, -1, -1, 86, 87, -1, 482, 801, 484, -1, -1, -1, -1, 1075, 1076, -1, -1, 811, -1, -1, 814, -1, -1, 37, -1, 819, -1, 821, -1, -1, -1, -1, 826, -1, -1, -1, 1416, -1, 1082, 1022, 1023, -1, -1, 1423, -1, -1, 60, -1, -1, 525, -1, 65, -1, 67, 68, 69, -1, -1, -1, 1042, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1136, -1, -1, -1, -1, -1, -1, -1, 1462, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, 887, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 589, -1, -1, -1, 1179, -1, -1, 1178, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 1200, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, 1213, -1, 1215, -1, -1, -1, -1, 634, 635, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 967, -1, 651, -1, -1, 67, 68, 1242, -1, -1, -1, -1, -1, -1, -1, 1250, 1251, 1252, -1, -1, 669, -1, 1178, 1179, -1, -1, 1261, 1262, -1, -1, -1, 680, -1, -1, -1, -1, -1, 686, -1, 1270, 1275, 103, -1, -1, 1200, 107, -1, -1, -1, 111, -1, -1, 1019, 1020, -1, 1022, 1023, -1, -1, 1294, -1, -1, -1, 1219, -1, -1, -1, -1, -1, -1, -1, -1, -1, 722, -1, 1042, 725, -1, -1, -1, -1, -1, -1, 339, 340, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 351, 352, -1, -1, -1, -1, -1, -1, -1, -1, 1261, 1262, -1, 1075, 1076, -1, 760, -1, -1, 1270, -1, -1, -1, -1, 1275, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1374, 29, 30, 31, -1, -1, -1, -1, -1, 37, 1305, -1, -1, 801, -1, -1, -1, -1, -1, -1, -1, -1, -1, 811, -1, -1, 814, -1, -1, -1, 1136, 819, 60, 821, -1, -1, -1, -1, 826, 67, 68, -1, 1416, 71, -1, -1, -1, -1, -1, 1423, -1, -1, -1, -1, -1, -1, 1077, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1179, -1, 103, -1, -1, -1, 1374, -1, -1, -1, 111, -1, 37, -1, -1, 1462, -1, -1, -1, -1, -1, 1200, -1, -1, -1, -1, 887, 1395, -1, -1, -1, -1, -1, -1, 1213, 60, 1215, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, 1416, -1, -1, 76, 77, -1, -1, 1423, -1, -1, -1, -1, -1, -1, -1, 1242, -1, -1, -1, -1, -1, -1, -1, 1250, 1251, 1252, -1, -1, 101, -1, 103, -1, -1, -1, 1261, 1262, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 1462, -1, 1275, -1, -1, -1, -1, -1, -1, 1197, -1, -1, 967, -1, -1, -1, -1, -1, -1, -1, -1, 1294, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, 44, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, 63, -1, -1, -1, -1, 1019, 1020, -1, 1022, 1023, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, 1042, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, 1374, -1, 87, -1, 109, -1, -1, -1, -1, 114, -1, -1, -1, -1, -1, -1, 101, -1, 103, 1075, 1076, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, -1, 143, -1, -1, -1, 1416, -1, -1, -1, -1, -1, 153, 1423, -1, 714, 157, 716, -1, -1, -1, -1, -1, -1, 723, 724, -1, -1, -1, 728, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, 740, -1, -1, 1136, -1, 745, -1, -1, -1, -1, -1, 1462, -1, -1, -1, -1, -1, -1, -1, 36, 37, 38, -1, 205, -1, -1, -1, -1, -1, 769, -1, -1, -1, -1, -1, 217, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, 1179, -1, 65, -1, -1, -1, 69, 235, 236, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, 1200, -1, -1, 87, -1, -1, 813, -1, -1, -1, 259, -1, -1, 1213, -1, 1215, -1, 101, 267, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, 289, -1, 1242, 292, -1, -1, -1, -1, -1, -1, 1250, 1251, 1252, -1, -1, -1, -1, -1, -1, -1, -1, 1261, 1262, 870, 871, 872, 873, -1, 875, -1, -1, -1, -1, -1, -1, 1275, -1, -1, -1, -1, -1, -1, -1, 890, -1, -1, -1, -1, -1, -1, 339, -1, -1, -1, 1294, 344, -1, 904, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 942, 37, -1, -1, -1, -1, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, -1, 419, 420, 979, -1, 1374, -1, 425, -1, -1, 986, -1, -1, -1, 990, -1, -1, -1, -1, 995, -1, 997, -1, -1, -1, 1001, 1002, 1003, 446, -1, 1006, 449, -1, 103, -1, -1, -1, 455, -1, 1015, -1, 111, -1, 96, -1, 98, -1, 1416, -1, -1, -1, -1, -1, -1, 1423, -1, -1, 1033, 1034, 10, 11, 12, 13, 14, 482, -1, -1, -1, -1, 122, -1, -1, -1, -1, -1, -1, 494, -1, -1, -1, -1, -1, 1058, -1, -1, 1061, 37, -1, -1, 507, -1, -1, 510, 1462, 512, 513, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 525, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, 1099, 177, 76, 77, -1, -1, 1105, 1106, -1, 185, -1, 187, 188, -1, -1, 1114, 192, -1, 194, 195, 1119, -1, -1, 1122, -1, 1124, -1, 101, 1127, -1, -1, -1, -1, -1, -1, -1, 577, 111, -1, -1, -1, 1140, -1, -1, -1, -1, -1, -1, 589, -1, 591, -1, -1, 594, 1153, -1, 1155, 1156, 1157, 1158, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1171, -1, 1173, -1, -1, -1, 1177, 620, -1, -1, -1, -1, 625, -1, -1, -1, 264, -1, -1, -1, -1, 634, 635, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1205, 1206, -1, -1, 651, -1, -1, -1, 63, -1, -1, -1, -1, -1, -1, -1, -1, -1, 73, -1, 75, -1, 77, -1, -1, -1, -1, -1, -1, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, 686, -1, -1, -1, -1, -1, -1, -1, -1, 1253, 1254, -1, -1, -1, -1, -1, -1, -1, -1, 1263, 114, 707, 116, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 725, -1, 727, -1, -1, -1, -1, -1, -1, 142, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 157, -1, 1309, -1, -1, -1, -1, -1, -1, -1, -1, 760, -1, -1, 1321, -1, 1323, 1324, 1325, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1335, -1, -1, -1, -1, -1, 43, -1, -1, 1344, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1356, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 217, -1, 219, 220, 221, 814, -1, -1, -1, 818, -1, -1, 821, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, 99, -1, -1, -1, -1, -1, 1403, 1404, 255, -1, -1, -1, 259, -1, -1, -1, -1, -1, -1, 1416, -1, -1, -1, -1, -1, -1, 1423, -1, 275, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 1448, -1, -1, -1, 154, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, -1, -1, -1, -1, -1, 913, -1, 323, 1474, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, 71, 190, -1, -1, -1, 76, 77, 344, -1, 573, 574, 1498, 349, 350, -1, 204, 1503, -1, -1, -1, 357, -1, -1, -1, 213, 954, -1, -1, -1, -1, 101, -1, 103, -1, 223, -1, -1, -1, 967, 603, 111, -1, 606, 607, -1, 609, -1, 611, 612, -1, -1, -1, 616, 617, -1, -1, -1, -1, -1, 248, -1, -1, 399, -1, 253, -1, -1, -1, -1, -1, -1, -1, 1001, -1, -1, -1, -1, 266, -1, -1, 417, -1, -1, 272, -1, 274, 423, -1, -1, -1, -1, -1, -1, 1022, 1023, -1, -1, -1, -1, -1, -1, 290, -1, 440, -1, -1, 443, 444, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 459, -1, -1, -1, -1, -1, -1, 693, -1, -1, -1, -1, 698, 699, 473, -1, -1, -1, 704, -1, -1, 480, 333, -1, -1, -1, -1, 338, -1, 1080, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 366, 29, 30, 31, 370, 371, -1, 373, -1, 37, -1, -1, -1, 379, 380, -1, 382, 383, -1, 385, -1, 387, -1, -1, -1, -1, -1, -1, -1, -1, 1136, -1, 60, -1, 62, -1, 64, 65, 404, 67, 68, 69, -1, -1, -1, -1, 412, -1, 76, 77, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 436, -1, 1178, 101, -1, 103, -1, -1, 59, -1, 594, 447, -1, 111, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, 470, -1, 87, -1, 622, 1215, 476, -1, -1, 627, -1, 481, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, 152, 153, -1, 124, -1, -1, -1, -1, -1, -1, -1, 517, -1, -1, -1, 1261, 1262, -1, -1, -1, -1, -1, -1, -1, 1270, -1, -1, 533, -1, -1, -1, -1, -1, 185, -1, -1, -1, -1, -1, -1, 192, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, 713, 29, 30, 31, 569, -1, -1, -1, 36, 37, 38, -1, -1, 578, 727, -1, -1, -1, -1, -1, 585, -1, -1, -1, -1, 590, -1, -1, -1, -1, -1, 59, 60, -1, 747, -1, 601, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, 264, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1374, -1, -1, -1, 101, -1, 103, 641, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, 805, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 818, -1, 318, -1, -1, -1, 676, -1, -1, -1, 326, 327, -1, 329, 330, 1425, -1, -1, -1, 837, -1, -1, -1, 339, -1, -1, -1, 343, -1, -1, -1, -1, 1077, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1452, -1, -1, -1, 362, -1, -1, 365, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 731, -1, -1, -1, 1475, -1, -1, -1, -1, -1, 741, 742, -1, -1, 391, -1, -1, -1, 395, -1, -1, -1, 753, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 770, -1, 772, -1, 922, -1, 776, -1, -1, 425, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 143, -1, -1, -1, 948, -1, 448, -1, -1, -1, 153, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 165, -1, -1, -1, 1197, -1, -1, 973, -1, -1, -1, -1, -1, -1, -1, 479, -1, -1, 482, -1, -1, -1, -1, 841, -1, -1, -1, -1, -1, -1, 848, -1, -1, -1, -1, 36, -1, 38, 1004, -1, -1, -1, -1, 861, -1, 863, -1, -1, -1, 1015, -1, -1, -1, -1, -1, -1, -1, 521, 59, 877, 524, 525, -1, -1, 65, 883, -1, -1, 69, -1, 235, 72, 73, 74, 75, 76, 77, 895, 79, 80, 898, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, 260, -1, -1, 916, -1, 101, -1, 103, -1, -1, 569, 570, -1, 109, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, -1, 588, 589, -1, 591, 1094, -1, -1, -1, -1, -1, -1, -1, 600, -1, 602, 603, -1, -1, -1, -1, -1, 609, -1, -1, -1, -1, -1, -1, -1, -1, -1, 619, 620, -1, -1, -1, -1, 625, -1, -1, -1, -1, -1, -1, -1, -1, 634, 635, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1000, -1, -1, -1, -1, 651, -1, -1, -1, -1, 656, 657, -1, -1, 660, 661, -1, -1, -1, -1, -1, 667, -1, -1, -1, -1, -1, 374, -1, -1, 1178, 36, -1, 38, -1, -1, -1, -1, -1, 685, 686, 687, -1, 689, -1, -1, -1, 693, -1, -1, -1, -1, -1, -1, 59, 1055, -1, -1, -1, -1, 65, 1061, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, 725, 726, -1, 87, -1, -1, -1, -1, -1, -1, -1, 1090, -1, -1, -1, -1, 1095, 101, -1, 103, -1, 105, 106, -1, 1103, -1, 110, 111, 112, 113, 114, 115, -1, -1, 759, 760, -1, -1, -1, 764, 765, -1, -1, 1270, 276, 277, 278, 279, 474, -1, -1, -1, 1131, -1, 286, 287, -1, -1, -1, 291, 292, -1, -1, -1, 1143, -1, -1, 1146, -1, 1148, -1, 303, -1, -1, -1, -1, -1, -1, -1, -1, 805, -1, -1, 1162, 1163, -1, 512, -1, -1, 814, -1, -1, -1, -1, -1, 820, 821, -1, -1, 525, 825, -1, 827, -1, -1, 1184, 532, 339, -1, -1, -1, -1, 837, -1, -1, -1, -1, -1, -1, 545, 546, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1210, -1, -1, -1, -1, -1, -1, -1, -1, -1, 567, -1, 375, -1, -1, -1, -1, -1, -1, -1, 577, -1, -1, -1, -1, -1, -1, 584, -1, -1, -1, -1, 589, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 909, -1, 29, 30, 31, -1, -1, -1, 917, -1, 37, -1, -1, 922, -1, -1, -1, -1, -1, -1, -1, 930, -1, -1, -1, -1, -1, -1, -1, 639, -1, -1, -1, 60, 943, 944, 646, 1300, -1, 1302, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, 1313, -1, 1315, -1, -1, -1, -1, -1, 967, -1, -1, -1, -1, -1, 973, -1, -1, -1, -1, -1, 1333, -1, -1, -1, -1, -1, 686, 1488, -1, -1, -1, -1, 991, 992, 111, -1, 1349, -1, -1, -1, -1, -1, 1001, -1, 1357, -1, -1, 1360, 1007, 1008, -1, 1010, 1011, 1012, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1022, 1023, -1, -1, 1380, -1, -1, -1, -1, -1, -1, -1, -1, 1389, -1, -1, 1392, 1393, -1, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 760, -1, 762, -1, -1, -1, -1, -1, 768, -1, -1, -1, -1, -1, 1427, 775, 1429, -1, -1, -1, -1, -1, 1081, 1082, 1083, 591, -1, -1, 1441, -1, -1, -1, -1, -1, -1, 1094, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 818, 819, -1, 821, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 836, 1136, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, 876, -1, -1, -1, 880, -1, 688, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, 1196, 64, 65, -1, 67, 68, 69, 710, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, 1215, 723, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, 954, -1, -1, -1, -1, -1, -1, 767, 1261, 1262, -1, -1, -1, 967, 968, -1, -1, -1, -1, 36, 974, 38, -1, -1, -1, -1, 980, -1, -1, 983, -1, 985, -1, -1, -1, -1, -1, -1, 798, -1, -1, -1, 59, -1, -1, -1, -1, -1, 65, -1, 1004, -1, 69, 813, -1, 72, 73, 74, 75, 76, 77, 1015, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1037, 101, 1039, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, 1054, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1073, -1, 1374, -1, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, -1, 1117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 57, -1, 1136, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, 1449, 1151, 1152, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, 1468, 1469, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 989, -1, -1, -1, 59, 111, 1488, -1, -1, -1, 65, -1, 1001, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1228, 101, -1, 103, -1, -1, 106, -1, 1042, -1, 110, 111, 112, 113, 114, 115, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, 60, 1110, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 1153, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, 1167, 1168, -1, -1, 1365, -1, 124, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, 1432, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, 1475, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, 124, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 59, 60, -1, 62, -1, 64, 65, 37, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, 1378, -1, -1, 87, -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -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, 1436, 1437, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 59, 60, -1, 62, -1, 64, 65, 37, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, 101, -1, 103, -1, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, 37, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, 60, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 57, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 57, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 32, -1, -1, 35, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, -1, 71, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, 103, -1, -1, 37, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -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, -1, -1, 29, 30, 31, -1, -1, -1, 102, 103, 37, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 60, -1, 62, -1, 64, 37, -1, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, 89, -1, -1, -1, 65, -1, 67, 68, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, 104, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, 102, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 59, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, 60, -1, 62, -1, 64, 37, -1, 67, 68, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 60, -1, 29, 30, 31, 65, -1, 67, 68, 69, 37, 71, -1, -1, -1, -1, 76, 77, 106, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, 103, -1, -1, -1, -1, -1, 76, 77, 111, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 101, -1, 103, -1, -1, 37, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 101, -1, 103, -1, 37, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 101, -1, 103, -1, 37, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, 101, -1, 103, -1, 37, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, 103, -1, 37, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, -1, -1, 71, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, -1, -1, 71, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, 65, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 38, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, -1, 36, -1, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, 102, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, 36, -1, 38, 39, -1, 41, -1, 124, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, -1, -1, -1, -1, -1, -1, -1, -1, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 60, -1, 62, -1, 64, 37, -1, 67, 68, -1, 36, -1, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 60, 89, 56, 57, -1, 59, -1, 67, 68, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, 36, -1, 38, 39, -1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, 36, -1, 38, 39, -1, 41, -1, -1, 44, 45, 46, 47, 48, 49, 50, 51, -1, 53, -1, -1, 56, 57, -1, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, 106, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, 108, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, 103, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, 36, -1, 38, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 59, -1, -1, -1, -1, -1, 65, -1, -1, -1, 69, -1, -1, 72, 73, 74, 75, 76, 77, -1, 79, 80, -1, -1, -1, -1, -1, -1, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, 110, 111, 112, 113, 114, 115, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, 65, -1, 67, 68, 69, -1, -1, -1, -1, -1, -1, 76, 77, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, -1, -1, -1, -1, -1, 37, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, 62, -1, 64, -1, -1, 67, 68, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 32, 33, 34, -1, -1, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -1, -1, 29, 30, 31, 60, -1, -1, -1, -1, 37, -1, 67, 68, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 60, -1, -1, -1, -1, -1, -1, 67, 68 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 29, 30, 31, 32, 35, 37, 38, 57, 60, 62, 64, 65, 67, 68, 69, 76, 77, 101, 103, 111, 129, 132, 189, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 220, 221, 222, 223, 224, 225, 226, 227, 229, 230, 231, 232, 233, 234, 235, 243, 244, 270, 271, 272, 280, 283, 289, 290, 292, 294, 295, 301, 306, 310, 311, 312, 313, 314, 315, 316, 317, 337, 354, 355, 356, 357, 65, 111, 131, 204, 206, 214, 216, 226, 230, 232, 271, 75, 101, 299, 300, 301, 299, 299, 65, 67, 68, 69, 130, 131, 260, 261, 281, 282, 67, 68, 261, 101, 292, 215, 216, 101, 111, 306, 311, 312, 313, 315, 316, 317, 104, 126, 103, 207, 214, 216, 310, 314, 353, 354, 357, 358, 127, 123, 264, 106, 127, 164, 67, 68, 129, 259, 127, 127, 127, 108, 127, 67, 68, 101, 111, 296, 305, 306, 307, 308, 309, 310, 314, 318, 319, 320, 321, 322, 328, 3, 27, 71, 228, 3, 5, 67, 103, 111, 206, 217, 221, 224, 233, 272, 310, 314, 357, 204, 206, 216, 226, 230, 232, 271, 310, 314, 32, 222, 222, 217, 224, 127, 222, 217, 222, 217, 68, 101, 106, 261, 272, 106, 261, 222, 217, 108, 127, 127, 0, 126, 101, 164, 299, 299, 126, 103, 214, 216, 355, 259, 259, 216, 123, 101, 111, 296, 306, 310, 103, 111, 357, 293, 219, 301, 101, 277, 101, 101, 101, 36, 38, 59, 65, 69, 72, 73, 74, 75, 79, 80, 87, 101, 103, 110, 111, 112, 113, 114, 115, 128, 132, 133, 134, 135, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 155, 157, 214, 263, 279, 353, 358, 216, 102, 102, 102, 102, 102, 102, 102, 67, 68, 103, 214, 259, 337, 355, 103, 111, 155, 206, 207, 213, 216, 220, 221, 226, 229, 230, 232, 249, 250, 254, 255, 256, 257, 271, 337, 349, 350, 351, 352, 357, 358, 104, 101, 310, 314, 357, 101, 108, 124, 103, 106, 111, 155, 265, 107, 126, 108, 124, 101, 108, 124, 108, 124, 108, 124, 299, 124, 306, 307, 308, 309, 319, 320, 321, 322, 216, 305, 318, 57, 298, 103, 299, 336, 337, 299, 299, 164, 126, 101, 299, 336, 299, 299, 216, 296, 101, 101, 215, 214, 216, 104, 126, 214, 353, 358, 164, 126, 259, 264, 206, 221, 310, 314, 164, 126, 281, 216, 226, 124, 216, 216, 279, 38, 103, 214, 236, 237, 238, 239, 353, 357, 106, 245, 261, 106, 216, 281, 124, 124, 292, 126, 131, 258, 3, 127, 196, 197, 211, 213, 216, 126, 298, 101, 298, 155, 306, 216, 101, 126, 259, 106, 32, 33, 34, 214, 273, 274, 276, 126, 121, 123, 278, 126, 217, 223, 224, 259, 302, 303, 304, 140, 153, 154, 101, 140, 142, 101, 140, 101, 101, 140, 140, 131, 103, 155, 160, 164, 214, 262, 353, 104, 126, 142, 142, 75, 78, 79, 80, 101, 103, 105, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 123, 159, 142, 111, 116, 117, 113, 114, 81, 82, 83, 84, 118, 119, 85, 86, 112, 120, 121, 87, 88, 122, 123, 360, 101, 111, 332, 333, 334, 335, 336, 102, 108, 101, 336, 337, 101, 336, 337, 126, 101, 214, 355, 104, 126, 103, 111, 127, 214, 216, 348, 349, 357, 358, 127, 101, 103, 111, 306, 323, 324, 325, 326, 327, 328, 329, 330, 331, 337, 338, 339, 340, 341, 342, 343, 111, 357, 216, 127, 127, 111, 214, 216, 350, 259, 214, 337, 350, 259, 101, 126, 126, 126, 104, 126, 65, 103, 105, 261, 265, 266, 267, 268, 269, 126, 126, 126, 126, 126, 126, 296, 102, 102, 102, 102, 102, 102, 102, 305, 318, 101, 264, 104, 196, 126, 296, 160, 263, 160, 263, 296, 103, 196, 298, 164, 126, 196, 102, 238, 239, 104, 126, 101, 109, 111, 240, 242, 305, 306, 318, 336, 344, 345, 346, 347, 107, 237, 108, 124, 108, 124, 261, 236, 108, 359, 123, 246, 245, 216, 251, 252, 253, 256, 257, 102, 108, 164, 126, 111, 155, 126, 213, 216, 250, 349, 357, 290, 291, 101, 111, 323, 102, 108, 360, 261, 273, 101, 106, 261, 263, 273, 102, 108, 101, 102, 109, 262, 262, 103, 131, 137, 155, 263, 262, 104, 126, 102, 108, 102, 101, 111, 344, 102, 108, 155, 103, 131, 103, 136, 137, 126, 103, 131, 155, 155, 142, 142, 142, 143, 143, 144, 144, 145, 145, 145, 145, 146, 146, 147, 148, 149, 150, 151, 109, 160, 155, 126, 333, 334, 335, 216, 332, 299, 299, 155, 263, 126, 258, 111, 126, 214, 337, 350, 216, 220, 104, 126, 104, 357, 104, 101, 126, 306, 324, 325, 326, 329, 339, 340, 341, 104, 126, 216, 323, 327, 338, 101, 299, 342, 360, 299, 299, 360, 101, 299, 342, 299, 299, 299, 299, 337, 214, 348, 358, 259, 104, 108, 104, 108, 360, 214, 350, 360, 247, 248, 249, 250, 247, 247, 259, 155, 126, 103, 261, 109, 108, 359, 265, 103, 109, 269, 28, 198, 199, 259, 247, 131, 296, 131, 298, 101, 336, 337, 101, 336, 337, 133, 337, 164, 251, 102, 102, 102, 102, 104, 164, 196, 164, 106, 124, 124, 103, 306, 345, 346, 347, 154, 216, 344, 241, 242, 241, 299, 299, 261, 299, 107, 261, 107, 154, 359, 127, 127, 131, 211, 127, 127, 247, 101, 111, 357, 127, 107, 216, 274, 275, 127, 126, 126, 101, 127, 102, 303, 160, 161, 124, 75, 190, 191, 192, 102, 102, 126, 109, 102, 102, 102, 155, 216, 106, 142, 157, 155, 156, 158, 108, 127, 126, 126, 102, 108, 155, 126, 153, 109, 251, 102, 102, 102, 332, 251, 102, 247, 214, 350, 103, 111, 155, 155, 216, 329, 251, 102, 102, 102, 102, 102, 102, 102, 7, 216, 323, 327, 338, 126, 126, 360, 126, 126, 102, 127, 127, 127, 127, 264, 127, 153, 154, 155, 297, 126, 265, 267, 107, 126, 200, 261, 38, 39, 41, 44, 45, 46, 47, 48, 49, 50, 51, 53, 56, 103, 131, 161, 162, 163, 164, 165, 166, 168, 169, 181, 183, 184, 189, 201, 295, 28, 127, 123, 264, 126, 126, 102, 127, 164, 236, 104, 102, 102, 102, 344, 240, 246, 107, 102, 108, 104, 104, 127, 216, 108, 360, 277, 102, 273, 204, 206, 214, 285, 286, 287, 288, 279, 102, 102, 101, 102, 109, 108, 155, 155, 266, 108, 127, 158, 104, 131, 138, 139, 155, 137, 127, 138, 153, 157, 127, 101, 336, 337, 127, 127, 126, 127, 127, 127, 155, 102, 127, 101, 336, 337, 101, 342, 101, 342, 337, 215, 7, 111, 127, 155, 251, 251, 250, 254, 254, 255, 108, 108, 102, 102, 104, 89, 115, 127, 127, 138, 265, 155, 108, 124, 201, 205, 216, 220, 101, 101, 162, 101, 101, 124, 131, 124, 131, 111, 131, 161, 101, 164, 124, 155, 104, 109, 124, 127, 126, 127, 200, 102, 155, 251, 251, 299, 102, 107, 101, 336, 337, 126, 102, 126, 127, 296, 107, 126, 127, 127, 102, 106, 154, 124, 190, 192, 108, 127, 359, 156, 104, 127, 78, 105, 108, 127, 127, 104, 127, 102, 126, 102, 102, 104, 104, 104, 127, 102, 126, 126, 126, 155, 155, 127, 104, 127, 127, 127, 127, 126, 126, 154, 154, 104, 104, 127, 127, 261, 216, 160, 160, 45, 160, 126, 124, 124, 160, 124, 124, 160, 54, 55, 185, 186, 187, 124, 299, 166, 107, 124, 127, 127, 126, 89, 256, 257, 102, 286, 108, 124, 108, 124, 107, 284, 102, 102, 109, 158, 104, 107, 104, 103, 139, 103, 139, 139, 104, 104, 104, 251, 104, 251, 251, 251, 127, 127, 104, 104, 102, 102, 104, 108, 89, 250, 89, 127, 104, 104, 102, 102, 101, 102, 161, 182, 201, 124, 102, 101, 164, 187, 54, 162, 102, 102, 251, 106, 126, 126, 285, 124, 75, 193, 127, 109, 126, 126, 127, 127, 127, 127, 104, 104, 126, 127, 104, 162, 42, 43, 106, 172, 173, 174, 160, 162, 127, 102, 161, 106, 174, 89, 126, 101, 127, 126, 259, 296, 107, 102, 108, 104, 155, 138, 138, 102, 102, 102, 102, 254, 40, 154, 170, 171, 297, 109, 126, 162, 172, 102, 124, 162, 124, 126, 102, 126, 89, 126, 102, 285, 124, 75, 109, 127, 127, 162, 89, 108, 109, 127, 194, 195, 201, 124, 161, 161, 194, 164, 188, 214, 353, 102, 126, 107, 155, 104, 104, 154, 170, 173, 175, 176, 126, 124, 173, 177, 178, 127, 101, 111, 296, 344, 131, 164, 188, 101, 162, 167, 107, 173, 201, 161, 52, 167, 180, 107, 173, 102, 216, 127, 279, 162, 167, 124, 179, 180, 167, 180, 164, 102, 102, 179, 127, 164, 127 }; #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 279 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 285 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 294 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 295 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 296 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 15: /* Line 1806 of yacc.c */ #line 320 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 321 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 328 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 330 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 332 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 20: /* Line 1806 of yacc.c */ #line 334 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 21: /* Line 1806 of yacc.c */ #line 336 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 22: /* Line 1806 of yacc.c */ #line 338 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 24: /* Line 1806 of yacc.c */ #line 348 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Index ), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ); } break; case 25: /* Line 1806 of yacc.c */ #line 350 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 26: /* Line 1806 of yacc.c */ #line 352 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 28: /* Line 1806 of yacc.c */ #line 355 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 30: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); } break; case 31: /* Line 1806 of yacc.c */ #line 360 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); } break; case 32: /* Line 1806 of yacc.c */ #line 363 "parser.yy" { (yyval.en) = 0; } break; case 34: /* Line 1806 of yacc.c */ #line 369 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 374 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 377 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_asArgName( (yyvsp[(1) - (3)].tok) ); } break; case 38: /* Line 1806 of yacc.c */ #line 382 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_asArgName( (yyvsp[(3) - (7)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 384 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_asArgName( 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 389 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 394 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 396 "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 398 "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 400 "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 402 "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 408 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); } break; case 49: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); } break; case 50: /* Line 1806 of yacc.c */ #line 412 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 51: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 52: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neg ), (yyvsp[(2) - (2)].en) ); } break; case 53: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PointTo ), (yyvsp[(2) - (2)].en) ); } break; case 54: /* Line 1806 of yacc.c */ #line 424 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); } break; case 55: /* Line 1806 of yacc.c */ #line 426 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 56: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (1)].tok) )); } break; case 57: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 58: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ); } break; case 59: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); } break; case 60: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 61: /* Line 1806 of yacc.c */ #line 438 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LabelAddress ), new VarRefNode( (yyvsp[(2) - (2)].tok), true )); } break; case 62: /* Line 1806 of yacc.c */ #line 442 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); } break; case 63: /* Line 1806 of yacc.c */ #line 443 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 64: /* Line 1806 of yacc.c */ #line 444 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 65: /* Line 1806 of yacc.c */ #line 445 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 67: /* Line 1806 of yacc.c */ #line 451 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 68: /* Line 1806 of yacc.c */ #line 453 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 70: /* Line 1806 of yacc.c */ #line 459 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mul ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 71: /* Line 1806 of yacc.c */ #line 461 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Div ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 72: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mod ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 74: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Plus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 75: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Minus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 77: /* Line 1806 of yacc.c */ #line 477 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 78: /* Line 1806 of yacc.c */ #line 479 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::RShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 80: /* Line 1806 of yacc.c */ #line 485 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 81: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 82: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 83: /* Line 1806 of yacc.c */ #line 491 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 85: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Eq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 86: /* Line 1806 of yacc.c */ #line 499 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 88: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::BitAnd ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 90: /* Line 1806 of yacc.c */ #line 511 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Xor ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 92: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::BitOr ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 94: /* Line 1806 of yacc.c */ #line 523 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::And ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 96: /* Line 1806 of yacc.c */ #line 529 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Or ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 98: /* Line 1806 of yacc.c */ #line 535 "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 99: /* Line 1806 of yacc.c */ #line 537 "parser.yy" { (yyval.en)=new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 100: /* Line 1806 of yacc.c */ #line 539 "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 103: /* Line 1806 of yacc.c */ #line 550 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 104: /* Line 1806 of yacc.c */ #line 552 "parser.yy" { (yyval.en) =new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 105: /* Line 1806 of yacc.c */ #line 554 "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 106: /* Line 1806 of yacc.c */ #line 559 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 108: /* Line 1806 of yacc.c */ #line 567 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 109: /* Line 1806 of yacc.c */ #line 569 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 110: /* Line 1806 of yacc.c */ #line 571 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 111: /* Line 1806 of yacc.c */ #line 573 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 113: /* Line 1806 of yacc.c */ #line 579 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 114: /* Line 1806 of yacc.c */ #line 583 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 115: /* Line 1806 of yacc.c */ #line 584 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 116: /* Line 1806 of yacc.c */ #line 585 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 117: /* Line 1806 of yacc.c */ #line 586 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 118: /* Line 1806 of yacc.c */ #line 587 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 119: /* Line 1806 of yacc.c */ #line 588 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 589 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 590 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 591 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 592 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 125: /* Line 1806 of yacc.c */ #line 598 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Comma ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 126: /* Line 1806 of yacc.c */ #line 603 "parser.yy" { (yyval.en) = 0; } break; case 130: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 136: /* Line 1806 of yacc.c */ #line 622 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) );} break; case 137: /* Line 1806 of yacc.c */ #line 627 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 138: /* Line 1806 of yacc.c */ #line 634 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 140: /* Line 1806 of yacc.c */ #line 640 "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 141: /* Line 1806 of yacc.c */ #line 645 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 142: /* Line 1806 of yacc.c */ #line 647 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 143: /* Line 1806 of yacc.c */ #line 649 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 656 "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 147: /* Line 1806 of yacc.c */ #line 661 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 148: /* Line 1806 of yacc.c */ #line 667 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 149: /* Line 1806 of yacc.c */ #line 669 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 150: /* Line 1806 of yacc.c */ #line 671 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 151: /* Line 1806 of yacc.c */ #line 673 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); /* xxx */ } break; case 152: /* Line 1806 of yacc.c */ #line 678 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 153: /* Line 1806 of yacc.c */ #line 680 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); } break; case 154: /* Line 1806 of yacc.c */ #line 687 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 155: /* Line 1806 of yacc.c */ #line 689 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 158: /* Line 1806 of yacc.c */ #line 696 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents( (yyvsp[(1) - (3)].en) ))->set_link( (yyvsp[(3) - (3)].en) ) ); } break; case 159: /* Line 1806 of yacc.c */ #line 700 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); } break; case 160: /* Line 1806 of yacc.c */ #line 701 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 162: /* Line 1806 of yacc.c */ #line 707 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 163: /* Line 1806 of yacc.c */ #line 711 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 164: /* Line 1806 of yacc.c */ #line 716 "parser.yy" { (yyval.sn) = 0; } break; case 166: /* Line 1806 of yacc.c */ #line 722 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 167: /* Line 1806 of yacc.c */ #line 724 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 168: /* Line 1806 of yacc.c */ #line 729 "parser.yy" { (yyval.sn) = 0; } break; case 170: /* Line 1806 of yacc.c */ #line 735 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 171: /* Line 1806 of yacc.c */ #line 737 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn) ))); } break; case 172: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 173: /* Line 1806 of yacc.c */ #line 741 "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 174: /* Line 1806 of yacc.c */ #line 746 "parser.yy" { (yyval.sn) = 0; } break; case 176: /* Line 1806 of yacc.c */ #line 751 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru, 0, 0 ); } break; case 177: /* Line 1806 of yacc.c */ #line 752 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru, 0, 0 ); } break; case 178: /* Line 1806 of yacc.c */ #line 757 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 179: /* Line 1806 of yacc.c */ #line 759 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 180: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 181: /* Line 1806 of yacc.c */ #line 766 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 182: /* Line 1806 of yacc.c */ #line 768 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 183: /* Line 1806 of yacc.c */ #line 773 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 184: /* Line 1806 of yacc.c */ #line 777 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 185: /* Line 1806 of yacc.c */ #line 780 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, 0, 0 ); } break; case 186: /* Line 1806 of yacc.c */ #line 784 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 187: /* Line 1806 of yacc.c */ #line 787 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, 0, 0 ); } break; case 188: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 189: /* Line 1806 of yacc.c */ #line 793 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 190: /* Line 1806 of yacc.c */ #line 795 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 191: /* Line 1806 of yacc.c */ #line 797 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, 0, 0 ); } break; case 192: /* Line 1806 of yacc.c */ #line 802 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 193: /* Line 1806 of yacc.c */ #line 804 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 194: /* Line 1806 of yacc.c */ #line 806 "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 196: /* Line 1806 of yacc.c */ #line 817 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 197: /* Line 1806 of yacc.c */ #line 819 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 824 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 199: /* Line 1806 of yacc.c */ #line 826 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 831 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 202: /* Line 1806 of yacc.c */ #line 845 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 203: /* Line 1806 of yacc.c */ #line 850 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 204: /* Line 1806 of yacc.c */ #line 852 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 206: /* Line 1806 of yacc.c */ #line 861 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Asm, 0, 0 ); } break; case 207: /* Line 1806 of yacc.c */ #line 863 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Asm, 0, 0 ); } break; case 208: /* Line 1806 of yacc.c */ #line 865 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Asm, 0, 0 ); } break; case 209: /* Line 1806 of yacc.c */ #line 867 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Asm, 0, 0 ); } break; case 214: /* Line 1806 of yacc.c */ #line 881 "parser.yy" {} break; case 215: /* Line 1806 of yacc.c */ #line 885 "parser.yy" {} break; case 217: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { (yyval.decl) = 0; } break; case 220: /* Line 1806 of yacc.c */ #line 900 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 221: /* Line 1806 of yacc.c */ #line 905 "parser.yy" { (yyval.decl) = 0; } break; case 224: /* Line 1806 of yacc.c */ #line 912 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 229: /* Line 1806 of yacc.c */ #line 926 "parser.yy" {} break; case 230: /* Line 1806 of yacc.c */ #line 927 "parser.yy" {} break; case 238: /* Line 1806 of yacc.c */ #line 956 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl); } break; case 239: /* Line 1806 of yacc.c */ #line 963 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 240: /* Line 1806 of yacc.c */ #line 968 "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 241: /* Line 1806 of yacc.c */ #line 978 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 242: /* Line 1806 of yacc.c */ #line 983 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 243: /* Line 1806 of yacc.c */ #line 988 "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 244: /* Line 1806 of yacc.c */ #line 996 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 245: /* Line 1806 of yacc.c */ #line 1001 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 246: /* Line 1806 of yacc.c */ #line 1006 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 247: /* Line 1806 of yacc.c */ #line 1011 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 248: /* Line 1806 of yacc.c */ #line 1016 "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 249: /* Line 1806 of yacc.c */ #line 1024 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 250: /* Line 1806 of yacc.c */ #line 1047 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 251: /* Line 1806 of yacc.c */ #line 1051 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 252: /* Line 1806 of yacc.c */ #line 1058 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 253: /* Line 1806 of yacc.c */ #line 1062 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 254: /* Line 1806 of yacc.c */ #line 1067 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 255: /* Line 1806 of yacc.c */ #line 1072 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 256: /* Line 1806 of yacc.c */ #line 1077 "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 257: /* Line 1806 of yacc.c */ #line 1088 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 258: /* Line 1806 of yacc.c */ #line 1093 "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 259: /* Line 1806 of yacc.c */ #line 1098 "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 260: /* Line 1806 of yacc.c */ #line 1103 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 261: /* Line 1806 of yacc.c */ #line 1108 "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 262: /* Line 1806 of yacc.c */ #line 1117 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 263: /* Line 1806 of yacc.c */ #line 1122 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 268: /* Line 1806 of yacc.c */ #line 1139 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1144 "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 278: /* Line 1806 of yacc.c */ #line 1166 "parser.yy" { (yyval.decl) = 0; } break; case 281: /* Line 1806 of yacc.c */ #line 1178 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 283: /* Line 1806 of yacc.c */ #line 1184 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Attribute ); } break; case 284: /* Line 1806 of yacc.c */ #line 1189 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 285: /* Line 1806 of yacc.c */ #line 1191 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 286: /* Line 1806 of yacc.c */ #line 1193 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 287: /* Line 1806 of yacc.c */ #line 1195 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 288: /* Line 1806 of yacc.c */ #line 1197 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 289: /* Line 1806 of yacc.c */ #line 1199 "parser.yy" { typedefTable.enterScope(); } break; case 290: /* Line 1806 of yacc.c */ #line 1203 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 292: /* Line 1806 of yacc.c */ #line 1212 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 293: /* Line 1806 of yacc.c */ #line 1214 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 295: /* Line 1806 of yacc.c */ #line 1225 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 297: /* Line 1806 of yacc.c */ #line 1234 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 298: /* Line 1806 of yacc.c */ #line 1236 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 299: /* Line 1806 of yacc.c */ #line 1238 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 300: /* Line 1806 of yacc.c */ #line 1240 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 301: /* Line 1806 of yacc.c */ #line 1242 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 302: /* Line 1806 of yacc.c */ #line 1244 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 303: /* Line 1806 of yacc.c */ #line 1246 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 304: /* Line 1806 of yacc.c */ #line 1248 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 305: /* Line 1806 of yacc.c */ #line 1253 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 306: /* Line 1806 of yacc.c */ #line 1255 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 307: /* Line 1806 of yacc.c */ #line 1257 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 308: /* Line 1806 of yacc.c */ #line 1259 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 309: /* Line 1806 of yacc.c */ #line 1261 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 310: /* Line 1806 of yacc.c */ #line 1263 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 311: /* Line 1806 of yacc.c */ #line 1265 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 312: /* Line 1806 of yacc.c */ #line 1267 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 313: /* Line 1806 of yacc.c */ #line 1269 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 314: /* Line 1806 of yacc.c */ #line 1271 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 315: /* Line 1806 of yacc.c */ #line 1273 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 316: /* Line 1806 of yacc.c */ #line 1275 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 318: /* Line 1806 of yacc.c */ #line 1282 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 319: /* Line 1806 of yacc.c */ #line 1284 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 320: /* 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 321: /* Line 1806 of yacc.c */ #line 1288 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 323: /* Line 1806 of yacc.c */ #line 1294 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 325: /* Line 1806 of yacc.c */ #line 1301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 326: /* Line 1806 of yacc.c */ #line 1303 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 327: /* Line 1806 of yacc.c */ #line 1305 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 328: /* Line 1806 of yacc.c */ #line 1310 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 329: /* Line 1806 of yacc.c */ #line 1312 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 330: /* Line 1806 of yacc.c */ #line 1314 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 331: /* Line 1806 of yacc.c */ #line 1316 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 333: /* Line 1806 of yacc.c */ #line 1322 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 334: /* Line 1806 of yacc.c */ #line 1324 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 335: /* Line 1806 of yacc.c */ #line 1326 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1332 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1334 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1340 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1342 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1344 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1349 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1351 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1353 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1363 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 349: /* Line 1806 of yacc.c */ #line 1365 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); } break; case 350: /* Line 1806 of yacc.c */ #line 1367 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), (yyvsp[(2) - (5)].tok), 0, (yyvsp[(4) - (5)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1369 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1371 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 353: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 354: /* Line 1806 of yacc.c */ #line 1378 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 355: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 356: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 360: /* Line 1806 of yacc.c */ #line 1394 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 362: /* Line 1806 of yacc.c */ #line 1400 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1402 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1404 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 367: /* Line 1806 of yacc.c */ #line 1416 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 368: /* Line 1806 of yacc.c */ #line 1418 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 369: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 370: /* Line 1806 of yacc.c */ #line 1424 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 372: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.en) = 0; } break; case 373: /* Line 1806 of yacc.c */ #line 1432 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 374: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 376: /* Line 1806 of yacc.c */ #line 1446 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 377: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 378: /* Line 1806 of yacc.c */ #line 1450 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 379: /* Line 1806 of yacc.c */ #line 1455 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1457 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.en) = 0; } break; case 382: /* Line 1806 of yacc.c */ #line 1464 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 383: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = 0; } break; case 387: /* Line 1806 of yacc.c */ #line 1479 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1481 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 389: /* Line 1806 of yacc.c */ #line 1483 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 391: /* Line 1806 of yacc.c */ #line 1491 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1493 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1501 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1506 "parser.yy" { (yyval.decl) = 0; } break; case 399: /* Line 1806 of yacc.c */ #line 1513 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 402: /* Line 1806 of yacc.c */ #line 1520 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 403: /* Line 1806 of yacc.c */ #line 1522 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 405: /* Line 1806 of yacc.c */ #line 1531 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 406: /* Line 1806 of yacc.c */ #line 1534 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 407: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1546 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 414: /* Line 1806 of yacc.c */ #line 1552 "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 415: /* Line 1806 of yacc.c */ #line 1557 "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 417: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 418: /* Line 1806 of yacc.c */ #line 1575 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1577 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 431: /* Line 1806 of yacc.c */ #line 1602 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 435: /* Line 1806 of yacc.c */ #line 1610 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 436: /* Line 1806 of yacc.c */ #line 1615 "parser.yy" { (yyval.in) = 0; } break; case 437: /* Line 1806 of yacc.c */ #line 1617 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 438: /* Line 1806 of yacc.c */ #line 1621 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 439: /* Line 1806 of yacc.c */ #line 1622 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 441: /* Line 1806 of yacc.c */ #line 1627 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 442: /* Line 1806 of yacc.c */ #line 1628 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 443: /* Line 1806 of yacc.c */ #line 1630 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 445: /* Line 1806 of yacc.c */ #line 1646 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 447: /* Line 1806 of yacc.c */ #line 1652 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 448: /* Line 1806 of yacc.c */ #line 1658 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(2) - (2)].tok) ); } break; case 449: /* Line 1806 of yacc.c */ #line 1661 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 450: /* Line 1806 of yacc.c */ #line 1663 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 451: /* Line 1806 of yacc.c */ #line 1665 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ); } break; case 452: /* Line 1806 of yacc.c */ #line 1667 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 454: /* Line 1806 of yacc.c */ #line 1691 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1693 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1695 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 458: /* Line 1806 of yacc.c */ #line 1701 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1703 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1708 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 462: /* Line 1806 of yacc.c */ #line 1714 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1719 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 464: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1727 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 467: /* Line 1806 of yacc.c */ #line 1729 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 468: /* Line 1806 of yacc.c */ #line 1731 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 469: /* Line 1806 of yacc.c */ #line 1736 "parser.yy" { (yyval.decl) = 0; } break; case 470: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { typedefTable.openContext( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newContextUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 472: /* Line 1806 of yacc.c */ #line 1748 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 473: /* Line 1806 of yacc.c */ #line 1750 "parser.yy" { (yyval.decl) = 0; } break; case 474: /* Line 1806 of yacc.c */ #line 1755 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1758 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 477: /* Line 1806 of yacc.c */ #line 1760 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 478: /* Line 1806 of yacc.c */ #line 1765 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 479: /* Line 1806 of yacc.c */ #line 1767 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1769 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1774 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1776 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 483: /* Line 1806 of yacc.c */ #line 1781 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 484: /* Line 1806 of yacc.c */ #line 1786 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 486: /* Line 1806 of yacc.c */ #line 1799 "parser.yy" { typedefTable.enterContext( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 487: /* Line 1806 of yacc.c */ #line 1804 "parser.yy" { typedefTable.leaveContext(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1814 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 492: /* Line 1806 of yacc.c */ #line 1824 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 493: /* Line 1806 of yacc.c */ #line 1829 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 494: /* Line 1806 of yacc.c */ #line 1834 "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 495: /* Line 1806 of yacc.c */ #line 1842 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 496: /* Line 1806 of yacc.c */ #line 1847 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 497: /* Line 1806 of yacc.c */ #line 1857 "parser.yy" {} break; case 498: /* Line 1806 of yacc.c */ #line 1859 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 500: /* Line 1806 of yacc.c */ #line 1871 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 501: /* Line 1806 of yacc.c */ #line 1876 "parser.yy" { (yyval.decl) = 0; } break; case 505: /* Line 1806 of yacc.c */ #line 1884 "parser.yy" {} break; case 506: /* Line 1806 of yacc.c */ #line 1886 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1891 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 508: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 510: /* Line 1806 of yacc.c */ #line 1907 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 511: /* Line 1806 of yacc.c */ #line 1913 "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 512: /* Line 1806 of yacc.c */ #line 1922 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 513: /* Line 1806 of yacc.c */ #line 1928 "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 514: /* Line 1806 of yacc.c */ #line 1934 "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 515: /* Line 1806 of yacc.c */ #line 1940 "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 516: /* Line 1806 of yacc.c */ #line 1946 "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 517: /* Line 1806 of yacc.c */ #line 1954 "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 518: /* Line 1806 of yacc.c */ #line 1960 "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 519: /* Line 1806 of yacc.c */ #line 1968 "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 520: /* Line 1806 of yacc.c */ #line 1974 "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 524: /* Line 1806 of yacc.c */ #line 1989 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2023 "parser.yy" {} break; case 538: /* Line 1806 of yacc.c */ #line 2024 "parser.yy" {} break; case 539: /* Line 1806 of yacc.c */ #line 2025 "parser.yy" {} break; case 540: /* Line 1806 of yacc.c */ #line 2026 "parser.yy" {} break; case 545: /* Line 1806 of yacc.c */ #line 2068 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 546: /* Line 1806 of yacc.c */ #line 2073 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 547: /* Line 1806 of yacc.c */ #line 2078 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 548: /* Line 1806 of yacc.c */ #line 2080 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 549: /* Line 1806 of yacc.c */ #line 2082 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 550: /* Line 1806 of yacc.c */ #line 2087 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 551: /* Line 1806 of yacc.c */ #line 2089 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 552: /* Line 1806 of yacc.c */ #line 2091 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 553: /* Line 1806 of yacc.c */ #line 2093 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 554: /* Line 1806 of yacc.c */ #line 2098 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 555: /* Line 1806 of yacc.c */ #line 2100 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 559: /* Line 1806 of yacc.c */ #line 2116 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 560: /* Line 1806 of yacc.c */ #line 2118 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 561: /* Line 1806 of yacc.c */ #line 2120 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 562: /* Line 1806 of yacc.c */ #line 2125 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2127 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 564: /* Line 1806 of yacc.c */ #line 2129 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 565: /* Line 1806 of yacc.c */ #line 2134 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2136 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2138 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 571: /* Line 1806 of yacc.c */ #line 2153 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2155 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2157 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2162 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2164 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2166 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 577: /* Line 1806 of yacc.c */ #line 2171 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2175 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 585: /* Line 1806 of yacc.c */ #line 2198 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 586: /* Line 1806 of yacc.c */ #line 2203 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 587: /* Line 1806 of yacc.c */ #line 2205 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2207 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 589: /* Line 1806 of yacc.c */ #line 2212 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2214 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2216 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 592: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 593: /* Line 1806 of yacc.c */ #line 2223 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2225 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2227 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 600: /* Line 1806 of yacc.c */ #line 2244 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2246 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2248 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 603: /* Line 1806 of yacc.c */ #line 2253 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 607: /* Line 1806 of yacc.c */ #line 2264 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2266 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2268 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 614: /* Line 1806 of yacc.c */ #line 2306 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2311 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2319 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2321 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2323 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 619: /* Line 1806 of yacc.c */ #line 2328 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2330 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2335 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2337 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2357 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 627: /* Line 1806 of yacc.c */ #line 2359 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2361 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2363 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2365 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 632: /* Line 1806 of yacc.c */ #line 2371 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2373 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2375 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 635: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 636: /* Line 1806 of yacc.c */ #line 2382 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2384 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 638: /* Line 1806 of yacc.c */ #line 2390 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 639: /* Line 1806 of yacc.c */ #line 2392 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2398 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 642: /* Line 1806 of yacc.c */ #line 2400 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 643: /* Line 1806 of yacc.c */ #line 2402 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2404 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2424 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 649: /* Line 1806 of yacc.c */ #line 2426 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2428 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2430 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2432 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 654: /* Line 1806 of yacc.c */ #line 2438 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2440 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2442 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 657: /* Line 1806 of yacc.c */ #line 2447 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 658: /* Line 1806 of yacc.c */ #line 2449 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2451 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 661: /* Line 1806 of yacc.c */ #line 2458 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2469 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 664: /* Line 1806 of yacc.c */ #line 2472 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2474 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 666: /* Line 1806 of yacc.c */ #line 2477 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 667: /* Line 1806 of yacc.c */ #line 2479 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 668: /* Line 1806 of yacc.c */ #line 2481 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 672: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 673: /* Line 1806 of yacc.c */ #line 2502 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2504 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2506 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 676: /* Line 1806 of yacc.c */ #line 2508 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 678: /* Line 1806 of yacc.c */ #line 2514 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 680: /* Line 1806 of yacc.c */ #line 2518 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 681: /* Line 1806 of yacc.c */ #line 2523 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2525 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 685: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 688: /* Line 1806 of yacc.c */ #line 2545 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2547 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 690: /* Line 1806 of yacc.c */ #line 2549 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2553 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2555 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2562 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2564 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2566 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2568 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2570 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2572 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2574 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2576 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2578 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 703: /* Line 1806 of yacc.c */ #line 2580 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2585 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 705: /* Line 1806 of yacc.c */ #line 2587 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 706: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 707: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 709: /* Line 1806 of yacc.c */ #line 2621 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2632 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2634 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2636 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2638 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2640 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2642 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2649 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2651 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2653 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2655 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2657 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2659 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2664 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 727: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 728: /* Line 1806 of yacc.c */ #line 2673 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 731: /* Line 1806 of yacc.c */ #line 2697 "parser.yy" { (yyval.en) = 0; } break; case 732: /* Line 1806 of yacc.c */ #line 2699 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 8845 "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 2702 "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: //