/* 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 42 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" using namespace std; extern DeclarationNode * parseTree; extern LinkageSpec::Spec linkage; extern TypedefTable typedefTable; stack< LinkageSpec::Spec > linkageStack; void appendStr( string *to, string *from ) { // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string. to->insert( to->length() - 1, from->substr( 1, from->length() - 2 ) ); } // appendStr /* Line 268 of yacc.c */ #line 100 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, CHARACTERconstant = 335, STRINGliteral = 336, REALDECIMALconstant = 337, REALFRACTIONconstant = 338, FLOATINGconstant = 339, ZERO = 340, ONE = 341, ARROW = 342, ICR = 343, DECR = 344, LS = 345, RS = 346, LE = 347, GE = 348, EQ = 349, NE = 350, ANDAND = 351, OROR = 352, ELLIPSIS = 353, MULTassign = 354, DIVassign = 355, MODassign = 356, PLUSassign = 357, MINUSassign = 358, LSassign = 359, RSassign = 360, ANDassign = 361, ERassign = 362, ORassign = 363, ATassign = 364, THEN = 365 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define CHARACTERconstant 335 #define STRINGliteral 336 #define REALDECIMALconstant 337 #define REALFRACTIONconstant 338 #define FLOATINGconstant 339 #define ZERO 340 #define ONE 341 #define ARROW 342 #define ICR 343 #define DECR 344 #define LS 345 #define RS 346 #define LE 347 #define GE 348 #define EQ 349 #define NE 350 #define ANDAND 351 #define OROR 352 #define ELLIPSIS 353 #define MULTassign 354 #define DIVassign 355 #define MODassign 356 #define PLUSassign 357 #define MINUSassign 358 #define LSassign 359 #define RSassign 360 #define ANDassign 361 #define ERassign 362 #define ORassign 363 #define ATassign 364 #define THEN 365 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 120 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantExpr *constant; ForCtl *fctl; LabelNode *label; InitializerNode *in; OperKinds op; std::string *str; bool flag; /* Line 293 of yacc.c */ #line 375 "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 387 "Parser/parser.cc" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 249 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10266 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 135 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 243 /* YYNRULES -- Number of rules. */ #define YYNRULES 755 /* YYNRULES -- Number of states. */ #define YYNSTATES 1538 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 365 #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, 123, 2, 2, 2, 126, 120, 2, 111, 112, 119, 121, 118, 122, 115, 125, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 132, 134, 127, 133, 128, 131, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 113, 2, 114, 129, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 116, 130, 117, 124, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 40, 42, 44, 46, 50, 54, 56, 63, 68, 72, 80, 83, 87, 95, 98, 101, 109, 114, 116, 120, 121, 123, 125, 129, 131, 134, 141, 145, 153, 157, 165, 168, 171, 174, 175, 178, 180, 182, 184, 187, 190, 193, 196, 199, 202, 207, 210, 215, 222, 224, 229, 234, 236, 238, 240, 242, 244, 246, 248, 253, 255, 259, 263, 267, 269, 273, 277, 279, 283, 287, 289, 293, 297, 301, 305, 307, 311, 315, 317, 321, 323, 327, 329, 333, 335, 339, 341, 345, 347, 353, 358, 360, 362, 366, 367, 369, 371, 373, 375, 377, 379, 381, 383, 385, 387, 389, 391, 393, 400, 408, 410, 414, 416, 420, 421, 423, 425, 427, 429, 431, 433, 435, 437, 439, 446, 451, 454, 462, 464, 468, 470, 473, 475, 478, 480, 483, 486, 492, 500, 506, 516, 522, 532, 534, 538, 540, 542, 546, 550, 553, 555, 558, 561, 562, 564, 567, 571, 572, 574, 577, 581, 585, 590, 591, 593, 595, 598, 604, 612, 619, 626, 631, 635, 640, 643, 647, 650, 654, 658, 662, 666, 672, 676, 680, 685, 687, 693, 700, 706, 713, 723, 734, 744, 755, 758, 760, 763, 766, 769, 771, 778, 787, 798, 811, 826, 827, 829, 830, 832, 834, 838, 843, 851, 852, 854, 858, 860, 864, 866, 868, 870, 874, 876, 878, 880, 884, 885, 887, 891, 896, 898, 902, 904, 906, 910, 914, 918, 922, 926, 929, 933, 940, 944, 948, 953, 955, 958, 961, 965, 971, 979, 987, 993, 1003, 1006, 1009, 1015, 1019, 1025, 1030, 1034, 1039, 1044, 1052, 1056, 1060, 1064, 1068, 1073, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1097, 1099, 1101, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1119, 1125, 1127, 1130, 1134, 1136, 1139, 1141, 1143, 1145, 1147, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1186, 1189, 1193, 1197, 1199, 1203, 1205, 1208, 1211, 1214, 1219, 1224, 1229, 1234, 1236, 1239, 1242, 1246, 1248, 1251, 1254, 1256, 1259, 1262, 1266, 1268, 1271, 1274, 1276, 1278, 1283, 1286, 1287, 1294, 1302, 1305, 1308, 1311, 1312, 1315, 1318, 1322, 1325, 1329, 1331, 1334, 1338, 1341, 1344, 1349, 1350, 1352, 1355, 1358, 1360, 1361, 1363, 1366, 1369, 1375, 1378, 1379, 1387, 1390, 1395, 1396, 1399, 1400, 1402, 1404, 1406, 1412, 1418, 1424, 1426, 1432, 1438, 1448, 1450, 1456, 1457, 1459, 1461, 1467, 1469, 1471, 1477, 1483, 1485, 1489, 1493, 1498, 1500, 1502, 1504, 1506, 1509, 1511, 1515, 1519, 1521, 1524, 1526, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1555, 1557, 1559, 1561, 1564, 1565, 1568, 1571, 1573, 1578, 1579, 1581, 1584, 1588, 1593, 1596, 1599, 1601, 1604, 1607, 1613, 1619, 1627, 1634, 1636, 1639, 1642, 1646, 1648, 1651, 1654, 1659, 1662, 1667, 1668, 1673, 1676, 1678, 1680, 1682, 1683, 1686, 1692, 1698, 1712, 1714, 1716, 1720, 1724, 1727, 1731, 1735, 1738, 1743, 1745, 1752, 1762, 1763, 1775, 1777, 1781, 1785, 1789, 1791, 1793, 1799, 1802, 1808, 1809, 1811, 1813, 1817, 1818, 1820, 1822, 1824, 1826, 1827, 1834, 1837, 1839, 1842, 1847, 1850, 1854, 1858, 1862, 1867, 1873, 1879, 1885, 1892, 1894, 1896, 1898, 1902, 1903, 1909, 1910, 1912, 1914, 1917, 1924, 1926, 1930, 1931, 1933, 1938, 1940, 1942, 1944, 1946, 1949, 1951, 1954, 1957, 1959, 1963, 1966, 1970, 1974, 1977, 1982, 1987, 1991, 2000, 2004, 2007, 2009, 2012, 2019, 2028, 2032, 2035, 2039, 2043, 2048, 2053, 2057, 2059, 2061, 2063, 2068, 2075, 2079, 2082, 2086, 2090, 2095, 2100, 2104, 2107, 2109, 2112, 2115, 2117, 2121, 2124, 2128, 2132, 2135, 2140, 2145, 2149, 2156, 2165, 2169, 2172, 2174, 2177, 2180, 2183, 2187, 2191, 2194, 2199, 2204, 2208, 2215, 2224, 2228, 2231, 2233, 2236, 2239, 2241, 2243, 2246, 2250, 2254, 2257, 2262, 2269, 2278, 2280, 2283, 2286, 2288, 2291, 2294, 2298, 2302, 2304, 2309, 2314, 2318, 2324, 2333, 2337, 2340, 2344, 2346, 2352, 2358, 2365, 2372, 2374, 2377, 2380, 2382, 2385, 2388, 2392, 2396, 2398, 2403, 2408, 2412, 2418, 2427, 2431, 2433, 2436, 2438, 2441, 2448, 2454, 2461, 2469, 2477, 2479, 2482, 2485, 2487, 2490, 2493, 2497, 2501, 2503, 2508, 2513, 2517, 2526, 2530, 2532, 2534, 2537, 2539, 2541, 2544, 2548, 2551, 2555, 2558, 2562, 2566, 2569, 2574, 2578, 2581, 2585, 2588, 2593, 2597, 2600, 2607, 2614, 2621, 2629, 2631, 2634, 2636, 2638, 2640, 2643, 2647, 2650, 2654, 2657, 2661, 2665, 2670, 2673, 2677, 2682, 2685, 2691, 2698, 2705, 2706, 2708, 2709 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 306, 0, -1, -1, -1, 79, -1, 82, -1, 83, -1, 84, -1, 80, -1, 72, -1, 76, -1, 142, -1, 72, -1, 76, -1, 72, -1, 142, -1, 85, -1, 86, -1, 144, -1, 81, -1, 144, 81, -1, 72, -1, 142, -1, 172, -1, 111, 174, 112, -1, 111, 178, 112, -1, 145, -1, 146, 113, 136, 169, 137, 114, -1, 146, 111, 147, 112, -1, 146, 115, 141, -1, 146, 115, 113, 136, 149, 137, 114, -1, 146, 83, -1, 146, 87, 141, -1, 146, 87, 113, 136, 149, 137, 114, -1, 146, 88, -1, 146, 89, -1, 111, 279, 112, 116, 283, 376, 117, -1, 146, 116, 147, 117, -1, 148, -1, 147, 118, 148, -1, -1, 169, -1, 150, -1, 149, 118, 150, -1, 151, -1, 82, 150, -1, 82, 113, 136, 149, 137, 114, -1, 151, 115, 150, -1, 151, 115, 113, 136, 149, 137, 114, -1, 151, 87, 150, -1, 151, 87, 113, 136, 149, 137, 114, -1, 79, 152, -1, 84, 152, -1, 141, 152, -1, -1, 152, 83, -1, 146, -1, 138, -1, 143, -1, 40, 156, -1, 154, 156, -1, 155, 156, -1, 88, 153, -1, 89, 153, -1, 37, 153, -1, 37, 111, 279, 112, -1, 66, 153, -1, 66, 111, 279, 112, -1, 38, 111, 279, 118, 141, 112, -1, 76, -1, 76, 111, 148, 112, -1, 76, 111, 280, 112, -1, 119, -1, 120, -1, 121, -1, 122, -1, 123, -1, 124, -1, 153, -1, 111, 279, 112, 156, -1, 156, -1, 157, 119, 156, -1, 157, 125, 156, -1, 157, 126, 156, -1, 157, -1, 158, 121, 157, -1, 158, 122, 157, -1, 158, -1, 159, 90, 158, -1, 159, 91, 158, -1, 159, -1, 160, 127, 159, -1, 160, 128, 159, -1, 160, 92, 159, -1, 160, 93, 159, -1, 160, -1, 161, 94, 160, -1, 161, 95, 160, -1, 161, -1, 162, 120, 161, -1, 162, -1, 163, 129, 162, -1, 163, -1, 164, 130, 163, -1, 164, -1, 165, 96, 164, -1, 165, -1, 166, 97, 165, -1, 166, -1, 166, 131, 174, 132, 167, -1, 166, 131, 132, 167, -1, 167, -1, 167, -1, 153, 171, 169, -1, -1, 169, -1, 133, -1, 109, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 107, -1, 108, -1, 113, 136, 118, 173, 137, 114, -1, 113, 136, 169, 118, 173, 137, 114, -1, 170, -1, 173, 118, 170, -1, 169, -1, 174, 118, 169, -1, -1, 174, -1, 177, -1, 178, -1, 182, -1, 183, -1, 195, -1, 197, -1, 198, -1, 203, -1, 129, 146, 116, 147, 117, 134, -1, 72, 132, 316, 176, -1, 116, 117, -1, 116, 136, 136, 214, 179, 137, 117, -1, 180, -1, 179, 136, 180, -1, 217, -1, 40, 217, -1, 312, -1, 176, 137, -1, 176, -1, 181, 176, -1, 175, 134, -1, 41, 111, 174, 112, 176, -1, 41, 111, 174, 112, 176, 42, 176, -1, 43, 111, 174, 112, 188, -1, 43, 111, 174, 112, 116, 136, 210, 189, 117, -1, 53, 111, 174, 112, 188, -1, 53, 111, 174, 112, 116, 136, 210, 191, 117, -1, 168, -1, 168, 98, 168, -1, 314, -1, 184, -1, 185, 118, 184, -1, 44, 185, 132, -1, 45, 132, -1, 186, -1, 187, 186, -1, 187, 176, -1, -1, 190, -1, 187, 181, -1, 190, 187, 181, -1, -1, 192, -1, 187, 194, -1, 187, 181, 193, -1, 192, 187, 194, -1, 192, 187, 181, 193, -1, -1, 194, -1, 56, -1, 56, 134, -1, 47, 111, 174, 112, 176, -1, 46, 176, 47, 111, 174, 112, 134, -1, 48, 111, 136, 196, 112, 176, -1, 175, 137, 134, 175, 134, 175, -1, 217, 175, 134, 175, -1, 51, 72, 134, -1, 51, 119, 174, 134, -1, 50, 134, -1, 50, 72, 134, -1, 49, 134, -1, 49, 72, 134, -1, 52, 175, 134, -1, 61, 170, 134, -1, 62, 170, 134, -1, 62, 170, 63, 169, 134, -1, 57, 178, 199, -1, 57, 178, 201, -1, 57, 178, 199, 201, -1, 200, -1, 58, 111, 98, 112, 178, -1, 200, 58, 111, 98, 112, 178, -1, 59, 111, 98, 112, 178, -1, 200, 59, 111, 98, 112, 178, -1, 58, 111, 136, 136, 202, 137, 112, 178, 137, -1, 200, 58, 111, 136, 136, 202, 137, 112, 178, 137, -1, 59, 111, 136, 136, 202, 137, 112, 178, 137, -1, 200, 59, 111, 136, 136, 202, 137, 112, 178, 137, -1, 60, 178, -1, 230, -1, 230, 313, -1, 230, 361, -1, 370, 141, -1, 370, -1, 64, 204, 111, 143, 112, 134, -1, 64, 204, 111, 143, 132, 205, 112, 134, -1, 64, 204, 111, 143, 132, 205, 132, 205, 112, 134, -1, 64, 204, 111, 143, 132, 205, 132, 205, 132, 208, 112, 134, -1, 64, 204, 51, 111, 143, 132, 132, 205, 132, 208, 132, 209, 112, 134, -1, -1, 11, -1, -1, 206, -1, 207, -1, 206, 118, 207, -1, 143, 111, 168, 112, -1, 113, 168, 114, 143, 111, 168, 112, -1, -1, 143, -1, 208, 118, 143, -1, 141, -1, 209, 118, 141, -1, 137, -1, 211, -1, 217, -1, 211, 136, 217, -1, 137, -1, 213, -1, 227, -1, 213, 136, 227, -1, -1, 215, -1, 29, 216, 134, -1, 215, 29, 216, 134, -1, 278, -1, 216, 118, 278, -1, 218, -1, 227, -1, 219, 137, 134, -1, 224, 137, 134, -1, 221, 137, 134, -1, 297, 137, 134, -1, 300, 137, 134, -1, 220, 281, -1, 236, 220, 281, -1, 219, 137, 118, 136, 276, 281, -1, 371, 276, 315, -1, 374, 276, 315, -1, 232, 374, 276, 315, -1, 222, -1, 232, 222, -1, 236, 222, -1, 236, 232, 222, -1, 221, 137, 118, 136, 276, -1, 374, 276, 111, 136, 264, 137, 112, -1, 223, 276, 111, 136, 264, 137, 112, -1, 113, 136, 266, 137, 114, -1, 113, 136, 266, 137, 118, 136, 267, 137, 114, -1, 3, 220, -1, 3, 222, -1, 224, 137, 118, 136, 141, -1, 3, 230, 313, -1, 225, 137, 118, 136, 313, -1, 232, 3, 230, 313, -1, 230, 3, 313, -1, 230, 3, 232, 313, -1, 3, 141, 133, 169, -1, 226, 137, 118, 136, 141, 133, 169, -1, 228, 137, 134, -1, 225, 137, 134, -1, 226, 137, 134, -1, 244, 137, 134, -1, 229, 313, 315, 281, -1, 228, 118, 316, 313, 315, 281, -1, 240, -1, 244, -1, 246, -1, 287, -1, 241, -1, 245, -1, 247, -1, 288, -1, -1, 232, -1, 233, -1, 232, 233, -1, 234, -1, 318, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 111, 235, 290, 112, -1, 237, -1, 232, 237, -1, 236, 232, 237, -1, 238, -1, 237, 238, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 241, -1, 236, 241, -1, 240, 238, -1, 240, 238, 232, -1, 240, 238, 241, -1, 242, -1, 231, 243, 231, -1, 239, -1, 232, 239, -1, 242, 233, -1, 242, 239, -1, 28, 111, 280, 112, -1, 28, 111, 174, 112, -1, 78, 111, 280, 112, -1, 78, 111, 174, 112, -1, 245, -1, 236, 245, -1, 244, 238, -1, 244, 238, 232, -1, 248, -1, 232, 248, -1, 245, 233, -1, 247, -1, 236, 247, -1, 246, 238, -1, 246, 238, 232, -1, 74, -1, 232, 74, -1, 247, 233, -1, 249, -1, 260, -1, 251, 116, 252, 117, -1, 251, 278, -1, -1, 251, 278, 250, 116, 252, 117, -1, 251, 111, 296, 112, 116, 252, 117, -1, 251, 289, -1, 31, 316, -1, 32, 316, -1, -1, 252, 253, -1, 254, 134, -1, 40, 254, 134, -1, 255, 134, -1, 40, 255, 134, -1, 370, -1, 370, 278, -1, 254, 118, 278, -1, 254, 118, -1, 230, 256, -1, 255, 118, 316, 256, -1, -1, 258, -1, 322, 257, -1, 335, 257, -1, 361, -1, -1, 258, -1, 132, 168, -1, 30, 316, -1, 259, 116, 262, 376, 117, -1, 259, 278, -1, -1, 259, 278, 261, 116, 262, 376, 117, -1, 278, 263, -1, 262, 118, 278, 263, -1, -1, 133, 168, -1, -1, 265, -1, 267, -1, 266, -1, 266, 137, 118, 136, 267, -1, 267, 137, 118, 136, 98, -1, 266, 137, 118, 136, 98, -1, 271, -1, 267, 137, 118, 136, 271, -1, 266, 137, 118, 136, 271, -1, 266, 137, 118, 136, 267, 137, 118, 136, 271, -1, 272, -1, 267, 137, 118, 136, 272, -1, -1, 269, -1, 270, -1, 270, 137, 118, 136, 98, -1, 274, -1, 273, -1, 270, 137, 118, 136, 274, -1, 270, 137, 118, 136, 273, -1, 273, -1, 366, 276, 377, -1, 374, 276, 377, -1, 232, 374, 276, 377, -1, 222, -1, 274, -1, 366, -1, 374, -1, 232, 374, -1, 375, -1, 229, 340, 377, -1, 229, 344, 377, -1, 229, -1, 229, 355, -1, 141, -1, 275, 118, 141, -1, 139, -1, 74, -1, 75, -1, 140, -1, 74, -1, 75, -1, 141, -1, 74, -1, 75, -1, 370, -1, 230, -1, 230, 361, -1, 370, -1, 375, -1, 230, -1, 230, 349, -1, -1, 133, 282, -1, 109, 282, -1, 169, -1, 116, 283, 376, 117, -1, -1, 282, -1, 284, 282, -1, 283, 118, 282, -1, 283, 118, 284, 282, -1, 285, 132, -1, 278, 132, -1, 286, -1, 285, 286, -1, 115, 278, -1, 113, 136, 169, 137, 114, -1, 113, 136, 314, 137, 114, -1, 113, 136, 168, 98, 168, 137, 114, -1, 115, 113, 136, 149, 137, 114, -1, 288, -1, 236, 288, -1, 287, 238, -1, 287, 238, 232, -1, 289, -1, 232, 289, -1, 288, 233, -1, 75, 111, 296, 112, -1, 291, 377, -1, 290, 118, 291, 377, -1, -1, 293, 278, 292, 294, -1, 230, 340, -1, 33, -1, 35, -1, 34, -1, -1, 294, 295, -1, 130, 278, 111, 296, 112, -1, 130, 116, 136, 302, 117, -1, 130, 111, 136, 290, 137, 112, 116, 136, 302, 117, 111, 296, 112, -1, 280, -1, 169, -1, 296, 118, 280, -1, 296, 118, 169, -1, 33, 298, -1, 237, 33, 298, -1, 297, 118, 298, -1, 299, 294, -1, 299, 294, 133, 280, -1, 278, -1, 277, 111, 136, 290, 137, 112, -1, 36, 278, 111, 136, 290, 137, 112, 116, 117, -1, -1, 36, 278, 111, 136, 290, 137, 112, 116, 301, 302, 117, -1, 303, -1, 302, 136, 303, -1, 304, 137, 134, -1, 305, 137, 134, -1, 220, -1, 222, -1, 304, 137, 118, 136, 276, -1, 230, 313, -1, 305, 137, 118, 136, 313, -1, -1, 307, -1, 309, -1, 307, 136, 309, -1, -1, 307, -1, 217, -1, 311, -1, 203, -1, -1, 5, 81, 310, 116, 308, 117, -1, 40, 309, -1, 312, -1, 327, 178, -1, 331, 136, 212, 178, -1, 221, 178, -1, 229, 327, 178, -1, 232, 327, 178, -1, 236, 327, 178, -1, 236, 232, 327, 178, -1, 229, 331, 136, 212, 178, -1, 232, 331, 136, 212, 178, -1, 236, 331, 136, 212, 178, -1, 236, 232, 331, 136, 212, 178, -1, 322, -1, 335, -1, 327, -1, 168, 124, 168, -1, -1, 64, 111, 144, 112, 316, -1, -1, 317, -1, 318, -1, 317, 318, -1, 39, 111, 111, 319, 112, 112, -1, 320, -1, 319, 118, 320, -1, -1, 321, -1, 321, 111, 175, 112, -1, 276, -1, 238, -1, 239, -1, 233, -1, 323, 316, -1, 324, -1, 325, 316, -1, 326, 316, -1, 139, -1, 111, 323, 112, -1, 154, 322, -1, 154, 232, 322, -1, 111, 324, 112, -1, 323, 353, -1, 111, 324, 112, 353, -1, 111, 325, 112, 354, -1, 111, 325, 112, -1, 111, 324, 112, 111, 136, 268, 137, 112, -1, 111, 326, 112, -1, 328, 316, -1, 329, -1, 330, 316, -1, 323, 111, 136, 268, 137, 112, -1, 111, 329, 112, 111, 136, 268, 137, 112, -1, 111, 328, 112, -1, 154, 327, -1, 154, 232, 327, -1, 111, 329, 112, -1, 111, 329, 112, 353, -1, 111, 330, 112, 354, -1, 111, 330, 112, -1, 332, -1, 333, -1, 334, -1, 323, 111, 275, 112, -1, 111, 333, 112, 111, 275, 112, -1, 111, 332, 112, -1, 154, 331, -1, 154, 232, 331, -1, 111, 333, 112, -1, 111, 333, 112, 353, -1, 111, 334, 112, 354, -1, 111, 334, 112, -1, 336, 316, -1, 337, -1, 338, 316, -1, 339, 316, -1, 345, -1, 111, 336, 112, -1, 154, 335, -1, 154, 232, 335, -1, 111, 337, 112, -1, 336, 353, -1, 111, 337, 112, 353, -1, 111, 338, 112, 354, -1, 111, 338, 112, -1, 336, 111, 136, 268, 137, 112, -1, 111, 337, 112, 111, 136, 268, 137, 112, -1, 111, 339, 112, -1, 323, 316, -1, 341, -1, 342, 316, -1, 343, 316, -1, 154, 340, -1, 154, 232, 340, -1, 111, 341, 112, -1, 323, 359, -1, 111, 341, 112, 353, -1, 111, 342, 112, 354, -1, 111, 342, 112, -1, 323, 111, 136, 268, 137, 112, -1, 111, 341, 112, 111, 136, 268, 137, 112, -1, 111, 343, 112, -1, 345, 316, -1, 346, -1, 347, 316, -1, 348, 316, -1, 74, -1, 75, -1, 154, 344, -1, 154, 232, 344, -1, 111, 346, 112, -1, 345, 359, -1, 111, 346, 112, 359, -1, 345, 111, 136, 268, 137, 112, -1, 111, 346, 112, 111, 136, 268, 137, 112, -1, 350, -1, 351, 316, -1, 352, 316, -1, 154, -1, 154, 232, -1, 154, 349, -1, 154, 232, 349, -1, 111, 350, 112, -1, 353, -1, 111, 350, 112, 353, -1, 111, 351, 112, 354, -1, 111, 351, 112, -1, 111, 136, 268, 137, 112, -1, 111, 350, 112, 111, 136, 268, 137, 112, -1, 111, 352, 112, -1, 113, 114, -1, 113, 114, 354, -1, 354, -1, 113, 136, 169, 137, 114, -1, 113, 136, 119, 137, 114, -1, 354, 113, 136, 169, 137, 114, -1, 354, 113, 136, 119, 137, 114, -1, 356, -1, 357, 316, -1, 358, 316, -1, 154, -1, 154, 232, -1, 154, 355, -1, 154, 232, 355, -1, 111, 356, 112, -1, 359, -1, 111, 356, 112, 359, -1, 111, 357, 112, 354, -1, 111, 357, 112, -1, 111, 136, 268, 137, 112, -1, 111, 356, 112, 111, 136, 268, 137, 112, -1, 111, 358, 112, -1, 360, -1, 360, 354, -1, 354, -1, 113, 114, -1, 113, 136, 232, 119, 137, 114, -1, 113, 136, 232, 137, 114, -1, 113, 136, 232, 169, 137, 114, -1, 113, 136, 7, 231, 169, 137, 114, -1, 113, 136, 232, 7, 169, 137, 114, -1, 362, -1, 363, 316, -1, 364, 316, -1, 154, -1, 154, 232, -1, 154, 361, -1, 154, 232, 361, -1, 111, 362, 112, -1, 353, -1, 111, 362, 112, 353, -1, 111, 363, 112, 354, -1, 111, 363, 112, -1, 111, 362, 112, 111, 136, 268, 137, 112, -1, 111, 364, 112, -1, 366, -1, 374, -1, 232, 374, -1, 367, -1, 368, -1, 154, 230, -1, 232, 154, 230, -1, 154, 375, -1, 232, 154, 375, -1, 154, 365, -1, 232, 154, 365, -1, 113, 114, 230, -1, 369, 230, -1, 113, 114, 354, 230, -1, 369, 354, 230, -1, 354, 230, -1, 113, 114, 367, -1, 369, 367, -1, 113, 114, 354, 367, -1, 369, 354, 367, -1, 354, 367, -1, 113, 136, 232, 119, 137, 114, -1, 113, 136, 232, 169, 137, 114, -1, 113, 136, 236, 169, 137, 114, -1, 113, 136, 236, 232, 169, 137, 114, -1, 374, -1, 232, 374, -1, 371, -1, 372, -1, 373, -1, 154, 230, -1, 232, 154, 230, -1, 154, 375, -1, 232, 154, 375, -1, 154, 370, -1, 232, 154, 370, -1, 113, 114, 230, -1, 113, 114, 354, 230, -1, 354, 230, -1, 113, 114, 372, -1, 113, 114, 354, 372, -1, 354, 372, -1, 113, 136, 267, 137, 114, -1, 374, 111, 136, 264, 137, 112, -1, 223, 111, 136, 264, 137, 112, -1, -1, 118, -1, -1, 133, 169, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 305, 305, 309, 316, 317, 318, 319, 320, 324, 325, 326, 330, 331, 335, 336, 340, 341, 345, 349, 350, 361, 363, 365, 366, 368, 373, 374, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 407, 408, 414, 415, 419, 420, 424, 425, 427, 429, 431, 433, 435, 440, 442, 444, 450, 451, 459, 462, 464, 466, 471, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 511, 512, 518, 519, 520, 521, 525, 526, 533, 534, 536, 538, 543, 544, 546, 551, 552, 554, 559, 560, 562, 564, 566, 571, 572, 574, 579, 580, 585, 586, 591, 592, 597, 598, 603, 604, 609, 610, 613, 620, 625, 626, 634, 635, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 660, 662, 667, 668, 673, 674, 680, 681, 687, 688, 689, 690, 691, 692, 693, 694, 695, 705, 712, 714, 724, 725, 730, 732, 738, 740, 744, 745, 750, 755, 758, 760, 762, 772, 774, 785, 786, 788, 792, 794, 798, 799, 804, 805, 809, 814, 815, 819, 821, 827, 828, 832, 834, 836, 838, 844, 845, 849, 851, 856, 858, 860, 865, 867, 872, 874, 878, 881, 885, 888, 892, 894, 896, 898, 903, 905, 907, 912, 914, 916, 918, 920, 925, 927, 929, 931, 936, 948, 949, 954, 956, 961, 965, 967, 969, 971, 973, 979, 980, 986, 987, 991, 992, 997, 999, 1005, 1006, 1008, 1013, 1018, 1028, 1030, 1034, 1035, 1040, 1042, 1046, 1047, 1051, 1053, 1057, 1058, 1062, 1063, 1067, 1068, 1083, 1084, 1085, 1086, 1087, 1091, 1096, 1103, 1113, 1118, 1123, 1131, 1136, 1141, 1146, 1151, 1181, 1186, 1193, 1195, 1202, 1207, 1212, 1223, 1228, 1233, 1238, 1243, 1252, 1257, 1265, 1266, 1267, 1268, 1274, 1279, 1287, 1288, 1289, 1290, 1294, 1295, 1296, 1297, 1302, 1303, 1312, 1313, 1318, 1319, 1324, 1326, 1328, 1330, 1332, 1335, 1334, 1346, 1347, 1349, 1359, 1360, 1365, 1367, 1369, 1371, 1373, 1376, 1378, 1381, 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1416, 1417, 1419, 1421, 1423, 1428, 1429, 1435, 1436, 1438, 1440, 1445, 1447, 1449, 1451, 1456, 1457, 1459, 1461, 1466, 1467, 1469, 1474, 1475, 1477, 1479, 1484, 1486, 1488, 1493, 1494, 1498, 1500, 1506, 1505, 1509, 1511, 1516, 1518, 1524, 1525, 1530, 1531, 1533, 1534, 1543, 1544, 1546, 1548, 1553, 1555, 1561, 1562, 1564, 1567, 1570, 1575, 1576, 1581, 1586, 1590, 1592, 1598, 1597, 1604, 1606, 1612, 1613, 1621, 1622, 1626, 1627, 1628, 1630, 1632, 1639, 1640, 1642, 1644, 1649, 1650, 1656, 1657, 1661, 1662, 1667, 1668, 1669, 1671, 1679, 1680, 1682, 1685, 1687, 1691, 1692, 1693, 1695, 1697, 1701, 1706, 1714, 1715, 1724, 1726, 1731, 1732, 1733, 1737, 1738, 1739, 1743, 1744, 1745, 1749, 1750, 1751, 1756, 1757, 1758, 1759, 1765, 1766, 1768, 1773, 1774, 1779, 1780, 1781, 1782, 1783, 1798, 1799, 1804, 1805, 1811, 1813, 1816, 1818, 1820, 1843, 1844, 1846, 1848, 1853, 1854, 1856, 1861, 1866, 1867, 1873, 1872, 1876, 1880, 1882, 1884, 1890, 1891, 1896, 1901, 1903, 1908, 1910, 1911, 1913, 1918, 1920, 1922, 1927, 1929, 1934, 1939, 1947, 1953, 1952, 1966, 1967, 1972, 1973, 1977, 1982, 1987, 1995, 2000, 2011, 2012, 2017, 2018, 2024, 2025, 2029, 2030, 2031, 2034, 2033, 2044, 2053, 2059, 2065, 2074, 2080, 2086, 2092, 2098, 2106, 2112, 2120, 2126, 2135, 2136, 2137, 2141, 2145, 2147, 2152, 2153, 2157, 2158, 2163, 2169, 2170, 2173, 2175, 2176, 2180, 2181, 2182, 2183, 2217, 2219, 2220, 2222, 2227, 2232, 2237, 2239, 2241, 2246, 2248, 2250, 2252, 2257, 2259, 2268, 2270, 2271, 2276, 2278, 2280, 2285, 2287, 2289, 2294, 2296, 2298, 2307, 2308, 2309, 2313, 2315, 2317, 2322, 2324, 2326, 2331, 2333, 2335, 2350, 2352, 2353, 2355, 2360, 2361, 2366, 2368, 2370, 2375, 2377, 2379, 2381, 2386, 2388, 2390, 2400, 2402, 2403, 2405, 2410, 2412, 2414, 2419, 2421, 2423, 2425, 2430, 2432, 2434, 2465, 2467, 2468, 2470, 2475, 2480, 2488, 2490, 2492, 2497, 2499, 2504, 2506, 2520, 2521, 2523, 2528, 2530, 2532, 2534, 2536, 2541, 2542, 2544, 2546, 2551, 2553, 2555, 2561, 2563, 2565, 2569, 2571, 2573, 2575, 2589, 2590, 2592, 2597, 2599, 2601, 2603, 2605, 2610, 2611, 2613, 2615, 2620, 2622, 2624, 2630, 2631, 2633, 2642, 2645, 2647, 2650, 2652, 2654, 2667, 2668, 2670, 2675, 2677, 2679, 2681, 2683, 2688, 2689, 2691, 2693, 2698, 2700, 2708, 2709, 2710, 2715, 2716, 2720, 2722, 2724, 2726, 2728, 2730, 2737, 2739, 2741, 2743, 2745, 2748, 2750, 2752, 2754, 2756, 2761, 2763, 2765, 2770, 2796, 2797, 2799, 2803, 2804, 2808, 2810, 2812, 2814, 2816, 2818, 2825, 2827, 2829, 2831, 2833, 2835, 2840, 2847, 2849, 2867, 2869, 2874, 2875 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "CHARACTERconstant", "STRINGliteral", "REALDECIMALconstant", "REALFRACTIONconstant", "FLOATINGconstant", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "'*'", "'&'", "'+'", "'-'", "'!'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "':'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "field_name", "fraction_constants", "unary_expression", "ptrref_operator", "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", "assignment_operator", "tuple", "tuple_expression_list", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "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", "$@2", "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", "$@3", "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", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "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", "variable_type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 40, 41, 91, 93, 46, 123, 125, 44, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 58, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 135, 136, 137, 138, 138, 138, 138, 138, 139, 139, 139, 140, 140, 141, 141, 142, 142, 143, 144, 144, 145, 145, 145, 145, 145, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 146, 147, 147, 148, 148, 149, 149, 150, 150, 150, 150, 150, 150, 150, 151, 151, 151, 152, 152, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 154, 154, 155, 155, 155, 155, 156, 156, 157, 157, 157, 157, 158, 158, 158, 159, 159, 159, 160, 160, 160, 160, 160, 161, 161, 161, 162, 162, 163, 163, 164, 164, 165, 165, 166, 166, 167, 167, 167, 168, 169, 169, 170, 170, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 172, 172, 173, 173, 174, 174, 175, 175, 176, 176, 176, 176, 176, 176, 176, 176, 176, 177, 178, 178, 179, 179, 180, 180, 180, 180, 181, 181, 182, 183, 183, 183, 183, 183, 183, 184, 184, 184, 185, 185, 186, 186, 187, 187, 188, 189, 189, 190, 190, 191, 191, 192, 192, 192, 192, 193, 193, 194, 194, 195, 195, 195, 196, 196, 197, 197, 197, 197, 197, 197, 197, 197, 197, 197, 198, 198, 198, 199, 199, 199, 199, 199, 200, 200, 200, 200, 201, 202, 202, 202, 202, 202, 203, 203, 203, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 214, 214, 215, 215, 216, 216, 217, 217, 218, 218, 218, 218, 218, 219, 219, 219, 220, 220, 220, 221, 221, 221, 221, 221, 222, 222, 223, 223, 224, 224, 224, 225, 225, 225, 225, 225, 226, 226, 227, 227, 227, 227, 228, 228, 229, 229, 229, 229, 230, 230, 230, 230, 231, 231, 232, 232, 233, 233, 234, 234, 234, 234, 234, 235, 234, 236, 236, 236, 237, 237, 238, 238, 238, 238, 238, 238, 238, 238, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 239, 240, 240, 240, 240, 240, 241, 241, 242, 242, 242, 242, 243, 243, 243, 243, 244, 244, 244, 244, 245, 245, 245, 246, 246, 246, 246, 247, 247, 247, 248, 248, 249, 249, 250, 249, 249, 249, 251, 251, 252, 252, 253, 253, 253, 253, 254, 254, 254, 254, 255, 255, 256, 256, 256, 256, 256, 257, 257, 258, 259, 260, 260, 261, 260, 262, 262, 263, 263, 264, 264, 265, 265, 265, 265, 265, 266, 266, 266, 266, 267, 267, 268, 268, 269, 269, 270, 270, 270, 270, 271, 271, 271, 271, 271, 272, 272, 272, 272, 272, 273, 273, 274, 274, 275, 275, 276, 276, 276, 277, 277, 277, 278, 278, 278, 279, 279, 279, 280, 280, 280, 280, 281, 281, 281, 282, 282, 283, 283, 283, 283, 283, 284, 284, 285, 285, 286, 286, 286, 286, 286, 287, 287, 287, 287, 288, 288, 288, 289, 290, 290, 292, 291, 291, 293, 293, 293, 294, 294, 295, 295, 295, 296, 296, 296, 296, 297, 297, 297, 298, 298, 299, 299, 300, 301, 300, 302, 302, 303, 303, 304, 304, 304, 305, 305, 306, 306, 307, 307, 308, 308, 309, 309, 309, 310, 309, 309, 311, 311, 311, 312, 312, 312, 312, 312, 312, 312, 312, 312, 313, 313, 313, 314, 315, 315, 316, 316, 317, 317, 318, 319, 319, 320, 320, 320, 321, 321, 321, 321, 322, 322, 322, 322, 323, 323, 324, 324, 324, 325, 325, 325, 325, 326, 326, 327, 327, 327, 328, 328, 328, 329, 329, 329, 330, 330, 330, 331, 331, 331, 332, 332, 332, 333, 333, 333, 334, 334, 334, 335, 335, 335, 335, 336, 336, 337, 337, 337, 338, 338, 338, 338, 339, 339, 339, 340, 340, 340, 340, 341, 341, 341, 342, 342, 342, 342, 343, 343, 343, 344, 344, 344, 344, 345, 345, 346, 346, 346, 347, 347, 348, 348, 349, 349, 349, 350, 350, 350, 350, 350, 351, 351, 351, 351, 352, 352, 352, 353, 353, 353, 354, 354, 354, 354, 355, 355, 355, 356, 356, 356, 356, 356, 357, 357, 357, 357, 358, 358, 358, 359, 359, 359, 360, 360, 360, 360, 360, 360, 361, 361, 361, 362, 362, 362, 362, 362, 363, 363, 363, 363, 364, 364, 365, 365, 365, 366, 366, 367, 367, 367, 367, 367, 367, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 369, 369, 369, 369, 370, 370, 370, 371, 371, 372, 372, 372, 372, 372, 372, 373, 373, 373, 373, 373, 373, 374, 375, 375, 376, 376, 377, 377 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 3, 1, 6, 4, 3, 7, 2, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 1, 3, 1, 2, 6, 3, 7, 3, 7, 2, 2, 2, 0, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 4, 6, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 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, 1, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 7, 1, 3, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 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, 0, 6, 7, 2, 2, 2, 0, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 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, 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[] = { 298, 298, 318, 316, 319, 317, 320, 321, 304, 306, 305, 0, 307, 332, 324, 329, 327, 328, 326, 325, 330, 331, 336, 333, 334, 335, 551, 551, 551, 0, 0, 0, 298, 225, 308, 322, 323, 9, 363, 0, 10, 16, 17, 0, 2, 72, 73, 569, 11, 298, 529, 527, 252, 3, 458, 3, 265, 0, 3, 3, 3, 253, 3, 0, 0, 0, 299, 300, 302, 298, 311, 314, 344, 290, 337, 342, 291, 352, 292, 359, 356, 366, 0, 0, 367, 293, 477, 481, 3, 3, 0, 2, 523, 528, 533, 303, 0, 0, 551, 581, 551, 2, 592, 593, 594, 298, 0, 735, 736, 0, 14, 0, 15, 298, 274, 275, 0, 299, 294, 295, 296, 297, 530, 309, 396, 552, 553, 374, 375, 14, 449, 450, 13, 445, 448, 0, 507, 502, 493, 449, 450, 0, 0, 532, 226, 0, 298, 0, 0, 0, 0, 0, 0, 0, 0, 298, 298, 0, 737, 299, 586, 598, 741, 734, 732, 739, 0, 0, 0, 259, 2, 0, 536, 443, 444, 442, 0, 0, 0, 0, 551, 0, 638, 639, 0, 0, 549, 545, 551, 566, 551, 551, 547, 2, 546, 551, 605, 551, 551, 608, 0, 0, 0, 298, 298, 316, 364, 2, 298, 266, 301, 312, 345, 357, 482, 0, 2, 0, 458, 267, 299, 338, 353, 360, 478, 0, 2, 0, 315, 339, 346, 347, 0, 354, 358, 361, 365, 450, 298, 376, 369, 373, 0, 398, 479, 483, 0, 0, 0, 1, 298, 2, 534, 580, 582, 298, 2, 745, 299, 748, 549, 549, 0, 299, 0, 0, 277, 551, 547, 2, 298, 0, 0, 298, 554, 2, 505, 2, 558, 0, 0, 0, 0, 0, 0, 21, 69, 4, 8, 19, 5, 6, 7, 0, 0, 298, 2, 74, 75, 76, 77, 57, 22, 58, 18, 26, 56, 78, 298, 0, 80, 84, 87, 90, 95, 98, 100, 102, 104, 106, 108, 112, 499, 23, 456, 498, 0, 454, 455, 0, 570, 585, 588, 591, 597, 600, 603, 2, 743, 298, 746, 2, 72, 298, 3, 430, 0, 438, 299, 298, 311, 337, 291, 352, 359, 3, 3, 412, 416, 426, 431, 477, 298, 432, 710, 711, 298, 433, 435, 2, 587, 599, 733, 2, 2, 254, 2, 463, 0, 461, 460, 459, 146, 2, 2, 256, 2, 2, 255, 2, 285, 2, 286, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571, 610, 0, 458, 2, 565, 574, 664, 567, 568, 537, 298, 2, 604, 613, 606, 607, 0, 280, 298, 298, 343, 299, 0, 299, 298, 738, 742, 740, 538, 298, 549, 260, 268, 313, 0, 2, 539, 298, 503, 340, 341, 287, 355, 362, 0, 298, 0, 752, 403, 0, 480, 504, 257, 258, 524, 298, 440, 0, 298, 242, 0, 2, 244, 0, 299, 0, 262, 2, 263, 282, 0, 0, 2, 298, 549, 298, 490, 492, 491, 0, 0, 754, 0, 298, 0, 298, 494, 298, 564, 562, 563, 561, 0, 556, 559, 0, 0, 298, 64, 298, 78, 59, 298, 66, 298, 298, 62, 63, 2, 132, 0, 0, 452, 0, 451, 732, 298, 20, 31, 0, 34, 35, 40, 2, 0, 40, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 117, 116, 0, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 650, 457, 647, 551, 551, 655, 484, 298, 2, 589, 590, 0, 601, 602, 0, 744, 747, 298, 298, 0, 712, 299, 716, 707, 708, 714, 0, 2, 2, 672, 551, 754, 621, 551, 551, 754, 551, 635, 551, 551, 686, 439, 669, 551, 551, 677, 684, 298, 434, 299, 0, 0, 298, 722, 299, 727, 754, 719, 298, 724, 754, 298, 298, 0, 0, 21, 2, 0, 22, 0, 464, 752, 0, 0, 470, 246, 0, 298, 0, 0, 0, 549, 573, 577, 579, 609, 612, 616, 619, 572, 611, 0, 288, 662, 0, 298, 281, 0, 0, 0, 0, 279, 2, 0, 264, 540, 298, 0, 0, 298, 2, 368, 388, 377, 0, 0, 382, 376, 753, 0, 0, 401, 0, 299, 3, 419, 3, 423, 422, 595, 0, 535, 298, 72, 3, 298, 438, 299, 3, 432, 433, 2, 0, 0, 0, 489, 310, 298, 0, 485, 487, 3, 2, 2, 0, 506, 3, 0, 558, 134, 0, 0, 227, 0, 0, 0, 0, 41, 0, 0, 298, 24, 0, 25, 0, 696, 701, 453, 693, 551, 551, 0, 114, 3, 2, 32, 0, 38, 0, 2, 29, 0, 113, 81, 82, 83, 85, 86, 88, 89, 93, 94, 91, 92, 96, 97, 99, 101, 103, 105, 107, 0, 0, 298, 0, 0, 0, 651, 652, 648, 649, 501, 500, 298, 0, 718, 298, 723, 299, 298, 666, 709, 665, 2, 298, 0, 0, 0, 0, 0, 0, 0, 0, 687, 0, 673, 624, 640, 674, 2, 620, 627, 436, 622, 623, 437, 2, 634, 643, 636, 637, 670, 671, 685, 713, 717, 715, 754, 272, 2, 749, 2, 427, 721, 726, 428, 3, 406, 3, 3, 3, 458, 0, 0, 2, 472, 469, 753, 0, 465, 2, 468, 471, 0, 298, 247, 269, 3, 276, 278, 0, 458, 2, 575, 576, 2, 614, 615, 0, 663, 541, 3, 349, 348, 351, 350, 298, 542, 0, 543, 376, 0, 0, 298, 0, 0, 696, 386, 389, 393, 551, 393, 392, 385, 378, 551, 380, 383, 298, 403, 397, 111, 404, 752, 0, 0, 441, 245, 0, 0, 3, 2, 672, 434, 0, 531, 0, 754, 755, 493, 0, 298, 298, 298, 0, 555, 557, 135, 0, 0, 220, 0, 0, 0, 228, 229, 65, 0, 67, 70, 71, 0, 133, 0, 0, 0, 697, 698, 694, 695, 463, 79, 115, 130, 3, 114, 0, 28, 40, 3, 0, 37, 110, 0, 3, 654, 658, 661, 653, 3, 596, 720, 725, 2, 72, 298, 3, 3, 299, 0, 3, 626, 630, 633, 642, 676, 680, 683, 298, 3, 625, 641, 675, 298, 298, 429, 298, 298, 0, 0, 0, 0, 261, 111, 0, 3, 3, 0, 466, 0, 462, 0, 0, 250, 298, 0, 0, 134, 0, 0, 0, 0, 0, 134, 0, 0, 114, 114, 21, 0, 0, 3, 136, 137, 2, 148, 138, 139, 140, 141, 142, 143, 150, 152, 0, 0, 0, 289, 298, 298, 551, 0, 544, 298, 379, 381, 0, 395, 697, 390, 394, 391, 384, 388, 371, 402, 0, 583, 2, 668, 667, 0, 673, 2, 486, 488, 508, 3, 516, 517, 0, 2, 512, 3, 3, 0, 0, 560, 227, 0, 0, 0, 227, 0, 0, 700, 704, 706, 699, 752, 114, 0, 3, 54, 0, 54, 54, 3, 42, 44, 39, 0, 3, 109, 0, 2, 656, 657, 0, 298, 0, 0, 0, 3, 642, 0, 2, 628, 629, 2, 644, 2, 678, 679, 0, 0, 72, 0, 3, 3, 3, 3, 414, 413, 417, 751, 2, 2, 750, 0, 0, 0, 0, 3, 467, 3, 0, 248, 151, 3, 299, 298, 0, 0, 0, 0, 2, 0, 196, 0, 194, 0, 0, 0, 0, 0, 0, 0, 551, 0, 156, 153, 298, 0, 0, 271, 283, 3, 3, 550, 617, 372, 387, 400, 298, 270, 298, 0, 519, 496, 298, 0, 0, 495, 510, 0, 0, 0, 221, 0, 230, 68, 2, 702, 703, 0, 131, 128, 0, 51, 2, 45, 52, 53, 0, 0, 0, 0, 27, 0, 659, 298, 584, 728, 729, 730, 0, 681, 298, 298, 298, 3, 3, 0, 689, 0, 0, 0, 0, 298, 298, 3, 548, 473, 474, 0, 251, 299, 0, 0, 0, 0, 298, 197, 195, 192, 0, 198, 0, 0, 0, 0, 202, 205, 203, 199, 0, 200, 134, 40, 149, 147, 249, 0, 0, 421, 425, 424, 0, 513, 2, 514, 2, 515, 509, 298, 233, 0, 231, 0, 233, 298, 36, 129, 55, 0, 43, 33, 2, 49, 2, 47, 30, 3, 731, 3, 3, 3, 0, 0, 688, 690, 631, 645, 273, 2, 411, 3, 410, 0, 476, 134, 0, 0, 134, 3, 0, 134, 193, 0, 2, 2, 214, 204, 0, 0, 0, 145, 0, 578, 618, 2, 0, 0, 2, 234, 0, 0, 222, 0, 3, 3, 0, 0, 0, 0, 0, 0, 691, 692, 298, 0, 475, 157, 0, 0, 2, 170, 134, 159, 0, 187, 0, 134, 0, 2, 161, 0, 2, 0, 2, 2, 2, 201, 37, 298, 518, 520, 511, 0, 0, 0, 0, 0, 0, 3, 3, 660, 632, 646, 682, 415, 134, 163, 166, 0, 165, 169, 3, 172, 171, 0, 134, 189, 134, 3, 0, 298, 0, 298, 0, 2, 0, 2, 144, 2, 235, 236, 0, 232, 223, 705, 46, 0, 0, 158, 0, 0, 168, 238, 173, 2, 240, 188, 0, 191, 177, 206, 3, 215, 219, 208, 3, 0, 298, 0, 298, 0, 0, 0, 50, 48, 164, 167, 134, 0, 174, 298, 134, 134, 0, 178, 0, 0, 696, 216, 217, 218, 0, 207, 3, 209, 3, 298, 224, 237, 154, 175, 160, 134, 241, 190, 185, 183, 179, 162, 134, 0, 697, 0, 0, 0, 0, 155, 176, 186, 180, 184, 183, 181, 3, 3, 0, 0, 497, 182, 210, 212, 3, 3, 211, 213 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 800, 464, 301, 47, 133, 134, 302, 303, 304, 305, 306, 752, 753, 1113, 1114, 1115, 1225, 307, 378, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 1010, 514, 959, 543, 323, 960, 933, 1036, 1502, 1038, 1039, 1040, 1041, 1503, 1042, 1043, 1420, 1421, 1383, 1384, 1385, 1481, 1482, 1486, 1487, 1522, 1523, 1044, 1342, 1045, 1046, 1278, 1279, 1280, 1464, 1047, 145, 939, 940, 941, 1362, 1444, 1456, 1457, 465, 466, 860, 861, 1018, 51, 52, 53, 54, 55, 345, 157, 58, 59, 60, 61, 62, 347, 64, 65, 263, 67, 68, 273, 349, 350, 71, 72, 73, 118, 75, 203, 352, 119, 78, 120, 80, 81, 451, 82, 450, 679, 680, 681, 893, 1065, 894, 83, 84, 454, 452, 687, 842, 843, 355, 356, 690, 691, 692, 357, 358, 359, 360, 462, 176, 135, 136, 518, 325, 169, 636, 637, 638, 639, 640, 85, 121, 87, 485, 486, 925, 487, 276, 491, 326, 88, 137, 138, 89, 1301, 1087, 1088, 1089, 1090, 90, 91, 708, 92, 272, 93, 94, 186, 1012, 670, 409, 125, 95, 497, 498, 499, 187, 267, 189, 190, 191, 268, 98, 99, 100, 101, 102, 103, 104, 194, 195, 196, 197, 198, 812, 598, 599, 600, 601, 199, 603, 604, 605, 567, 568, 569, 570, 742, 105, 607, 608, 609, 610, 611, 612, 953, 744, 745, 746, 588, 363, 364, 365, 366, 327, 163, 107, 108, 109, 368, 685, 715 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1333 static const yytype_int16 yypact[] = { 6694, 7975, -1333, -14, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 26, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 109, 109, 109, 759, 860, 66, 6930, 241, -1333, -1333, -1333, -1333, -1333, 199, -1333, -1333, -1333, 1264, 207, -1333, -1333, -1333, -1333, 8320, -1333, -1333, -1333, -1333, 3, 216, -1333, 1096, -1333, -1333, -1333, -1333, 265, 1996, 389, 54, 5394, -1333, -1333, 8320, 780, -1333, -1333, 554, 416, 3688, 749, 995, 554, 1130, -1333, -1333, 768, 826, -1333, 554, 1144, -1333, 313, -1333, 443, 462, -1333, -1333, -1333, -1333, 358, 216, 109, -1333, 109, -1333, -1333, -1333, -1333, 8461, 1096, -1333, -1333, 1096, -1333, 414, -1333, 8545, -1333, -1333, 2376, 8575, -1333, 1138, 1138, 1138, -1333, -1333, -1333, 109, -1333, -1333, -1333, 370, 444, 488, -1333, -1333, -1333, 518, -1333, -1333, -1333, -1333, -1333, 525, 576, -1333, -1333, 50, 8059, 1902, 238, 538, 578, 604, 613, 618, 635, 8659, 6327, 649, -1333, 8431, -1333, -1333, -1333, -1333, 661, -1333, -10, 9338, 9338, -1333, 662, 181, -1333, -1333, -1333, -1333, 680, 348, 393, 400, 109, 685, -1333, -1333, 1996, 2098, 801, -1333, 51, -1333, 109, 109, 216, -1333, -1333, 180, -1333, 109, 109, -1333, 2242, 712, 751, 1138, 6116, -1333, -1333, -1333, 8320, -1333, -1333, 554, -1333, -1333, -1333, 216, -1333, 1096, 3, -1333, 7196, -1333, 1138, 1138, 1138, 216, -1333, 759, -1333, 4572, -1333, -1333, 739, 1138, -1333, 1138, -1333, 199, 8059, -1333, 775, -1333, 860, 777, 1138, -1333, 759, 771, 804, -1333, 6930, 594, -1333, -1333, -1333, 4461, -1333, -1333, 5315, -1333, 801, 101, 9515, 8575, 2376, 2242, -1333, 187, -1333, -1333, 8545, 1096, 786, 10191, -1333, -1333, 434, -1333, 9931, 803, 866, 9574, 842, 9515, 9633, -1333, 845, -1333, -1333, -1333, -1333, -1333, -1333, 9692, 9692, 7829, 207, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 885, -1333, 1691, 2462, 8059, 9515, -1333, 558, 367, 614, 669, 742, 852, 846, 858, 883, -13, -1333, -1333, -1333, 737, -1333, 269, -1333, -1333, 1902, -1333, -1333, 465, 880, -1333, 586, 880, -1333, -1333, 8461, -1333, 890, 897, 8174, -1333, -1333, 1514, 1088, 7619, 6116, 554, -1333, 554, 1138, 1138, -1333, -1333, -1333, -1333, -1333, -1333, 1138, 8461, 1096, -1333, -1333, 8659, 1872, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 9279, 9515, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 2376, -1333, 105, 903, 926, 928, 796, 931, 941, 943, 2098, -1333, -1333, 952, 3, 954, -1333, -1333, 961, -1333, -1333, -1333, 4461, -1333, -1333, -1333, -1333, -1333, 2242, -1333, 8059, 8059, -1333, 1138, 2376, 6237, 7691, -1333, -1333, -1333, -1333, 4461, 101, -1333, -1333, 554, 216, -1333, -1333, 4461, -1333, 5995, -1333, -1333, 1138, 1138, 394, 7535, 966, 959, 955, 974, 1138, -1333, -1333, -1333, -1333, 5606, -1333, 424, 5852, -1333, 216, 977, -1333, 2376, 10015, 9751, -1333, -1333, -1333, -1333, 884, 2242, -1333, 7691, 801, 6812, -1333, -1333, -1333, 1296, 456, 986, 860, 10191, 1468, 8545, -1333, 10191, -1333, -1333, -1333, -1333, 473, -1333, 988, 866, 242, 7829, -1333, 8689, -1333, -1333, 7829, -1333, 7944, 7829, -1333, -1333, 207, -1333, 485, 1009, 881, 1014, -1333, -1333, 6085, -1333, -1333, 360, -1333, -1333, 9515, -1333, 362, 9515, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 9515, -1333, -1333, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 9515, 3091, 737, 1207, -1333, -1333, 109, 109, -1333, -1333, 8059, -1333, -1333, 961, 594, -1333, 961, 9810, -1333, -1333, 8659, 6085, 993, -1333, 8575, -1333, -1333, 661, -1333, 1039, 587, 1045, 2359, 209, 986, -1333, 109, 109, 986, 212, -1333, 109, 109, 961, -1333, -1333, 109, 109, -1333, 880, 8773, 1096, 10160, 415, 496, 8773, -1333, 5315, -1333, 986, -1333, 8461, -1333, 126, 7313, 7313, 1096, 9397, 1029, -1333, 1354, 1033, 1043, -1333, 1060, 9338, 407, -1333, 1151, 1096, 7313, 594, 2376, 594, 801, 631, 880, -1333, -1333, 692, 880, -1333, -1333, -1333, 866, -1333, 880, 216, 5606, -1333, 494, 1073, 520, 1074, -1333, 890, 216, -1333, -1333, 4461, 216, 1071, 8689, 207, -1333, 972, -1333, 401, 438, 860, -1333, 860, 1075, 9515, -1333, 860, 10160, -1333, -1333, 1079, -1333, -1333, -1333, 594, -1333, 10088, 897, -1333, 7313, 960, 7619, -1333, -1333, 661, 1076, 1081, 1296, 2130, -1333, -1333, 10191, 9515, -1333, -1333, 1085, -1333, -1333, 1093, -1333, 1085, 1098, 9931, 9515, 1097, 1094, 38, 1119, 1115, 1124, 1125, -1333, 1126, 1127, 6085, -1333, 9515, -1333, 881, 1631, -1333, -1333, -1333, 109, 109, 9456, 9515, 1132, -1333, -1333, 577, -1333, 9515, -1333, -1333, 843, -1333, -1333, -1333, -1333, 558, 558, 367, 367, 614, 614, 614, 614, 669, 669, 742, 852, 846, 858, 883, 9515, 296, 5606, 1131, 1133, 1136, 1207, -1333, -1333, -1333, -1333, -1333, 5606, 616, -1333, 8461, -1333, 6448, 8289, -1333, -1333, -1333, 587, 5606, 990, 1140, 1141, 1142, 1145, 1146, 1147, 1149, -1333, 2845, 2359, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 961, -1333, -1333, -1333, 986, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 1150, 1152, -1333, 3, 1132, 9397, -1333, -1333, -1333, 9279, 1154, -1333, -1333, -1333, -1333, 860, 5689, 1243, -1333, -1333, -1333, -1333, 1143, 3, -1333, -1333, 961, -1333, -1333, 961, 14, 961, -1333, -1333, -1333, -1333, -1333, -1333, 6327, -1333, 216, -1333, -1333, 452, 487, 6327, 1790, 9515, 2983, -1333, -1333, 1153, 20, 1153, -1333, 860, -1333, 109, -1333, -1333, 8090, 955, -1333, -1333, -1333, 959, 1161, 1157, -1333, -1333, 1163, 1164, -1333, 960, 1700, -1333, 539, -1333, 2130, 986, -1333, -1333, 1167, 10191, 8545, 8059, 1169, -1333, -1333, 1165, 1170, 1171, -1333, 9515, 1173, 310, 1177, -1333, 1180, 594, 1180, -1333, -1333, 1180, -1333, 1195, 1197, 1201, 1631, -1333, -1333, -1333, 9279, -1333, -1333, -1333, 1196, 9515, 730, -1333, 9515, -1333, 730, -1333, -1333, 9515, -1333, 748, 880, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 897, 8174, -1333, -1333, 6569, 1203, -1333, 758, 880, -1333, 763, 830, 880, -1333, 1138, 4995, -1333, -1333, -1333, 5606, 5606, -1333, 7691, 7691, 1205, 1210, 1223, 1209, -1333, 551, 162, 1132, -1333, 730, -1333, 9338, -1333, 9515, 513, -1333, 5964, 1214, 1227, 9220, 1234, 1235, 42, 160, 163, 9515, 1237, 216, 9515, 9515, 1226, 304, 1229, -1333, -1333, -1333, 1244, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 860, 1248, 9515, -1333, 5606, 5606, 109, 1254, -1333, 8205, -1333, -1333, 773, -1333, 2983, -1333, -1333, -1333, -1333, 972, -1333, -1333, 1250, -1333, -1333, -1333, -1333, 1257, 1700, -1333, -1333, 1241, -1333, 1085, -1333, -1333, 2376, 1256, -1333, -1333, -1333, 617, 1258, -1333, 38, 1266, 9515, 1245, 38, 38, 1274, 878, 880, -1333, -1333, 1060, 9515, 1276, 1196, -1333, 841, -1333, -1333, 1270, -1333, 215, -1333, 1279, 1270, -1333, 1282, -1333, -1333, 961, 1283, 6206, 1284, 1285, 1286, -1333, -1333, 1290, -1333, -1333, 961, -1333, -1333, -1333, -1333, 961, 9515, 9515, 897, 1291, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 9515, 9515, 1295, 1297, 1270, -1333, -1333, 860, -1333, -1333, -1333, 7124, 8545, 9515, 9515, 1350, 9515, -1333, 1278, -1333, 1280, -1333, 1288, 9515, 1293, 9515, 1056, 1298, 72, 109, 2402, -1333, -1333, 5689, 1287, 521, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 9036, -1333, 7691, 1305, -1333, -1333, 8545, 522, 524, -1333, 1308, 1302, 866, 1318, -1333, 325, -1333, -1333, -1333, -1333, 961, 1324, -1333, -1333, 1328, 1363, -1333, -1333, 1363, 1363, 730, 1333, 1026, 1220, -1333, 1339, -1333, 5606, -1333, -1333, -1333, -1333, 1340, -1333, 5606, 5606, 5606, -1333, -1333, 1341, -1333, 1342, 1345, 1347, 600, 7385, 7502, -1333, -1333, -1333, -1333, 1352, -1333, 7763, 633, 634, 1353, 658, 5821, -1333, -1333, -1333, 528, -1333, 659, 1362, 1364, 216, 1401, 965, -1333, -1333, 9515, -1333, 9220, 9515, -1333, -1333, -1333, 1365, 1367, -1333, -1333, -1333, 1358, -1333, -1333, -1333, -1333, -1333, -1333, 8545, 866, 1373, -1333, 1368, 866, 5606, -1333, -1333, -1333, 730, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 1384, 1391, -1333, -1333, -1333, -1333, -1333, -1333, -1333, 1404, -1333, 1408, -1333, 9220, 198, 9515, 9220, -1333, 1406, 9515, -1333, 323, 1378, 1427, -1333, -1333, 1416, 1417, 1395, -1333, 910, -1333, -1333, -1333, 1096, 2376, 1413, -1333, 326, 9515, -1333, 663, -1333, 1270, 730, 730, 1420, 1424, 1425, 1434, -1333, -1333, 7691, 1429, -1333, 1489, 9515, 1426, -1333, -1333, 9130, -1333, 689, -1333, 1414, 9220, 1418, -1333, -1333, 1445, -1333, 1449, -1333, 1467, 1469, -1333, 1435, 8545, -1333, -1333, -1333, 866, 594, 1456, 1436, 1460, 1466, 1270, 1270, -1333, -1333, -1333, -1333, -1333, 9220, 194, -1333, 376, -1333, -1333, 7048, -1333, -1333, 1447, 9515, -1333, 9515, 7048, 216, 8689, 216, 8689, 1470, -1333, 1471, -1333, -1333, 1477, -1333, -1333, 720, -1333, -1333, -1333, -1333, 1473, 1481, -1333, 9515, 9515, -1333, -1333, 991, 94, -1333, -1333, 1462, -1333, 991, -1333, -1333, 2158, 594, -1333, -1333, 216, 8689, 216, 8689, 1487, 1463, 594, -1333, -1333, -1333, -1333, 9130, 1484, 991, 5522, 9515, 9040, 1485, 991, 1493, 2158, 3005, -1333, -1333, -1333, 1494, -1333, -1333, -1333, -1333, 8059, -1333, -1333, -1333, 8905, -1333, 9130, -1333, -1333, 1474, 8815, -1333, -1333, 9040, 216, 3005, 216, 1498, 1500, 729, -1333, 8905, -1333, -1333, -1333, 8815, -1333, -1333, -1333, 216, 216, -1333, -1333, -1333, -1333, -1333, -1333, -1333, -1333 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1333, 3826, 2645, -1333, 849, -1333, 762, 867, -112, 956, -1333, 580, -517, -490, -904, -999, -1333, -62, 4003, 0, -1333, 676, 547, 572, 581, 571, 1057, 1058, 1059, 1055, 1061, -1333, 963, -485, 4467, -910, -1333, -1333, 665, 184, -691, 319, -1333, 356, -1333, 440, -1283, -1333, -1333, 176, -1333, -1072, -1062, 285, -1333, -1333, -1333, -1333, 107, -1332, -1333, -1333, -1333, -1333, -1333, -1333, 359, -1109, 16, -1333, -288, -1333, 535, 330, -1333, 208, -1333, -237, -1333, -1333, -1333, 596, -693, -1333, -1333, 9, -933, 372, 2238, -1333, -1333, -1333, -57, -1333, 110, 36, -194, 1419, 3198, -1333, -1333, 12, 61, 1486, 1572, -1333, 1265, -1333, -1333, 21, 1950, -1333, 2034, 1735, -1333, -1333, -1333, -611, -1333, 975, 976, 584, 761, 136, -1333, -1333, -1333, 967, 755, -456, -1333, -528, -433, 832, -1333, -1333, -922, -915, -420, 1560, 1084, 19, -1333, 388, 467, -359, -203, -145, 706, 811, -1333, 1028, -1333, 2348, 798, -442, 958, -1333, -1333, 740, -1333, -233, -1333, 118, -1333, -1333, -1333, -1243, 466, -1333, -1333, -1333, 1188, -1333, -1, -1333, -1333, -832, -108, -1152, -131, 3669, -1333, 4255, -1333, 951, -1333, -125, 120, -178, -173, -170, 7, -41, -40, -39, 619, -5, 25, 46, -4, -167, -166, -158, -157, -296, -519, -516, -510, -538, -311, -552, -1333, -1333, -514, 1111, 1112, 1114, 1610, 4174, -565, -560, -546, -522, -389, -1333, -475, -720, -716, -715, -584, -222, -287, -1333, -1333, 47, 102, -51, -1333, 3453, 108, -602, -196 }; /* 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 -527 static const yytype_int16 yytable[] = { 49, 113, 149, 150, 151, 449, 396, 97, 266, 425, 114, 397, 69, 757, 398, 436, 50, 399, 400, 732, 949, 76, 380, 381, 950, 951, 401, 402, 1049, 831, 814, 143, 49, 806, 934, 854, 602, 116, 152, 97, 693, 805, 743, 147, 69, 704, 717, 807, 50, 49, 722, 597, 784, 76, 259, 407, 160, 813, 1360, 31, 404, 70, 1118, 185, 664, 666, 208, 122, 153, 49, 192, 808, 904, 215, 802, 621, 225, 803, 218, 625, 1148, 1149, 201, 804, 563, 158, 396, 1165, 1150, 154, 31, 397, 422, 70, 398, 522, 162, 399, 400, 844, 844, 279, 106, 106, 340, 113, 401, 402, 374, 1159, 63, 1227, 167, 113, 1173, 844, 265, 270, 564, 289, 96, 589, 1182, 1183, 375, 260, 1056, 211, 261, 471, 473, 721, 202, 408, 106, 1282, 168, 123, -239, -239, 404, 257, 63, 149, 150, 151, 308, 147, 31, 158, 734, 937, 96, 1510, 160, 113, 343, 165, 1441, 208, 162, 280, 251, 148, 408, 406, 370, 1048, 501, 96, 949, 106, 846, 844, 950, 951, 1174, 142, 660, 152, 1525, 405, 324, 188, 185, 185, 96, 863, 711, 96, 802, 338, 160, 803, 845, 845, 1222, 669, 467, 804, 265, 908, 1509, 898, 658, 673, 1283, 817, 49, 153, 845, -239, 472, 824, 788, 160, 251, 330, 408, 31, 208, 165, 1520, 149, 150, 151, 31, 439, 1422, 1524, 154, 1312, 1175, 1315, 1317, 1177, 435, 472, 308, 806, 427, 693, 1380, 1381, 430, 916, 998, 985, 31, 459, 49, 31, 144, 807, 328, 431, 705, 97, 270, 714, 1155, 405, 69, 270, 265, 265, 50, 96, 845, 974, 113, 76, 160, 997, 324, 1059, 76, 808, 655, 96, 802, 438, 1178, 803, 602, 647, 1156, 1150, 582, 804, 479, 416, 1452, 408, 1176, 308, 793, 496, 477, 384, 408, 1422, 1232, 704, 395, 188, 430, 1072, 308, 484, 146, 70, 1426, 662, 1382, 385, 432, 431, 1156, 667, 815, 155, 594, 822, 566, 594, 1468, 1164, 96, 147, 1233, 517, 170, 1148, 1149, 1165, 370, 840, 1179, 113, 96, 1150, 519, 343, 158, 443, 328, 595, 613, 251, 330, 655, 106, 814, 727, 162, 1049, 806, 467, 693, 63, 1496, 618, 1498, 456, 468, 618, 1380, 1381, 693, 96, 807, 56, 115, 728, 581, 285, 467, 432, 586, 693, 572, 622, 180, 475, 467, 626, 573, 726, 41, 42, 589, 200, 265, 1480, 808, 589, 831, 619, 656, 1485, 818, 623, 185, 56, 821, 1063, 1367, 1426, 211, 370, 172, 817, 1426, 738, 510, 165, 376, 141, -294, 1505, 265, 1097, 308, 308, 1512, 838, 265, 969, 618, 841, 246, 110, 1426, 110, 884, 76, 1305, 209, 1391, 1426, 219, 1098, 249, 1405, 41, 42, 41, 42, 96, 113, 591, 1095, 252, 1417, 76, 704, 1306, 1406, 324, 324, 1150, -522, 76, 1411, 1412, 387, 596, 265, 251, 240, 243, 656, 750, 1116, 755, 265, 1104, 618, 515, 49, -12, 388, 370, 710, 1083, 678, 97, 549, 550, 113, 1165, 69, 855, 1453, 1048, 50, 682, 1165, 116, 602, 76, 308, 1221, 113, 978, 674, 308, 1454, 308, 308, 389, 573, 998, 705, 996, 867, 741, 391, 899, 856, 343, 633, 188, 484, 468, 324, 390, 484, 834, 211, 328, 328, 835, 392, 900, 695, 865, 517, 857, 517, 70, 696, 517, 468, 324, 517, 262, 414, 519, 1165, 519, 468, 895, 519, -446, 901, 519, 2, 205, 4, 5, 6, 7, 489, 566, 566, 490, 712, 1147, 899, 433, 902, 308, 713, 1343, 574, 1341, 408, 693, 693, 441, 106, 618, 343, 723, 1060, 613, 702, 1104, 63, 724, 437, 595, 898, 595, 795, 737, 328, -447, 96, 1136, 1138, 738, 596, 901, 878, 663, 665, 324, 836, 1213, 738, 618, 837, 467, 938, 328, 618, 791, 613, 1061, 56, 35, 618, 36, 996, 618, 618, 275, 453, 1162, 880, 833, 693, 693, 277, 1001, 738, 1162, 1296, 913, 1298, 618, 1008, 265, 738, 1163, 847, 830, 331, 516, 1390, 836, 586, 1288, 1297, 1079, 1299, 37, 839, 862, 1344, 40, 1053, -112, 110, 705, 161, -112, 1257, 1258, 41, 42, 897, 113, 438, 546, 892, 41, 42, 328, 193, 547, 548, 216, 515, 278, 226, 963, 332, 515, 704, 76, 515, 964, 1091, 577, 799, 408, 594, 618, 918, 613, 551, 552, 45, 46, 1014, 710, 710, 678, 396, 801, 1330, 596, 333, 397, 1331, 76, 398, 832, 682, 399, 400, 334, 591, 1080, 976, 1209, 335, 1458, 401, 402, 696, 573, 343, 1460, 1458, 1461, 741, 741, 868, 496, 408, 1337, 1338, 336, 778, 484, 211, 738, 738, 2, 205, 4, 5, 6, 7, 589, 369, 553, 554, 111, 211, 635, 161, 404, 1354, 949, 1340, 1345, 373, 950, 951, 1408, 738, 738, 371, 382, 1292, 1405, 468, 566, 2, 205, 4, 5, 6, 7, 1506, 386, 618, 1507, 981, 671, 555, 556, 896, 595, 1140, 1427, 110, 871, 161, 408, 1211, 738, 468, 1109, 1215, 595, 1110, 227, 1111, 41, 42, 693, 35, 394, 36, 697, 1333, 423, 693, 693, 693, 161, 977, 801, 596, 129, 1474, 130, 131, 132, 557, 558, 1475, 440, 110, 1530, 139, 237, 41, 42, 702, 573, 565, 35, 408, 36, 56, 41, 42, 211, 45, 46, 516, 1121, 308, 408, 424, 516, 214, 406, 516, 48, 112, 1132, 1160, 408, 69, 446, 1135, 716, 594, 720, 1407, 238, 241, 76, 343, -3, 239, 330, 408, 693, 405, 343, 892, -370, 892, -399, 795, 1419, 112, 112, 110, 48, 139, 140, 480, 705, 113, 457, 175, 416, 651, 408, 48, 41, 42, 110, 500, 214, 48, 918, 918, 801, 1109, 70, 710, 1110, 48, 1111, 41, 42, 113, 308, 48, 596, 110, 48, 139, 140, 48, 1084, 458, 655, 678, 1137, 242, 594, 895, 41, 42, 289, 371, 112, 112, 682, 741, 504, 1226, 175, 509, 214, 175, 506, 967, 964, 106, 484, 1086, 324, 522, 1478, 1419, 729, 63, 730, 559, 48, 731, 560, 48, 735, 1204, 562, 705, 343, 938, 48, 544, 545, 938, 938, 561, 1218, 1492, 408, 740, 337, 408, 477, 330, 408, -295, 702, 45, 46, 618, 618, 583, 8, 9, 10, 11, 12, 1062, -3, 896, 461, 48, 648, 876, 830, 214, 544, 308, 851, 371, 1350, 1351, 883, 48, 1400, 964, 885, 106, 1066, 1167, 1066, 31, 1380, 1381, 328, 649, 1104, 650, 76, 596, 652, 37, 438, 182, 183, 40, 1228, 1229, 48, 48, 653, 544, 654, 214, 41, 42, 113, 656, 214, 34, 657, 892, 897, 175, 48, 659, 892, 903, 917, 905, 594, 256, 48, 453, 684, 918, 45, 46, 70, 683, 890, 48, 408, 265, 48, 686, 832, 688, 45, 46, -243, 112, 678, 762, 763, 110, 725, 1303, 815, 330, 594, 891, 1109, 682, 796, 1110, 112, 1111, 41, 42, 112, 1275, 1276, 1277, 48, 112, 714, 175, 739, 106, 764, 765, 343, 747, 175, 770, 771, 468, 48, 48, -296, 766, 767, 768, 769, 48, 1314, 8, 9, 10, 11, 12, 48, 214, -297, 8, 9, 10, 11, 12, 798, 8, 9, 10, 11, 12, 809, 37, -14, 182, 183, 40, -15, 270, 113, 37, 31, 173, 174, 40, 41, 42, 852, 218, 31, 853, 1037, 859, 41, 42, 31, 896, 879, 881, 886, 308, 896, 1361, -420, 906, -526, 1361, 175, 48, 34, 921, 593, 69, 594, 618, 713, 929, 34, 113, 45, 46, 76, 931, 34, 175, 48, 48, 1084, 175, 8, 9, 10, 11, 12, 759, 760, 761, 111, 214, 211, 936, 935, 48, 942, 56, 943, 48, 702, 944, 945, 946, 947, 1058, 635, 1086, 971, 634, 972, 31, 1019, 973, 70, 961, 1403, 987, 988, 989, 618, 618, 990, 991, 992, 48, 993, -408, 270, -407, 74, 1518, 214, 308, 106, 48, 1016, 1050, 1073, 34, 1074, 1052, 1075, 1076, 1082, 1167, 1092, 1093, 738, 1096, 891, 751, 1068, 48, 76, 106, 756, 110, 1442, 48, 1099, 956, 74, 63, 1109, 1085, 113, 1110, 1094, 1111, 41, 42, 1101, 106, 1102, 1084, 396, 702, 1103, 1106, 1130, 397, 1151, 565, 398, 408, 1154, 399, 400, 438, 1168, 45, 46, 1152, 70, 112, 401, 402, 1316, 221, 48, 37, 1086, 1169, 461, 40, 1153, 1170, 48, 635, 1171, 1172, 48, 1180, 41, 42, 48, 1264, 1265, 112, 1267, 112, 1491, 1184, 265, 1191, -3, 1272, 1186, 1274, 404, 1196, 1199, 37, 1201, 106, 489, 40, 1205, 1210, 43, 618, 1402, 468, 1214, 1212, 41, 42, 45, 46, 214, 1217, 1181, 1230, 655, 1223, 112, 56, 1234, 1236, 1238, 112, 1266, 1239, 1240, 1241, 113, 1243, 106, 1287, 1250, 864, 709, 866, 1259, 1084, 1260, 1269, 214, 1270, 45, 46, 1294, 214, 66, 117, 351, 1271, 957, 113, 1300, 110, 1273, 139, 140, 1304, 113, 1281, 113, 1302, 113, 1167, 1086, 1019, 41, 42, 1308, 1309, 1167, 112, 76, 1310, 1313, 149, 150, 151, 66, 76, 1318, 1320, 1326, 1327, 1328, 912, 1329, 48, 1277, 48, 175, 1339, 1490, 1336, 850, 159, 1465, 113, 1465, 113, 1346, 1357, 1347, 1393, 1355, 175, 1356, 1466, 48, 1466, 113, 1363, 70, 405, 214, 220, 1490, 1490, 175, 70, 877, 445, 1167, 48, 160, 1374, 308, 112, 214, 1364, 106, 76, 1375, 1465, 1037, 1465, 48, 656, 112, 48, 112, 1490, 74, -409, 1466, 1389, 1466, 74, 370, 1378, 1386, 258, 1395, 106, 1397, 1398, 1399, 1404, 1418, 1413, 106, 468, 324, 1414, 1415, 209, 219, 110, 468, 139, 140, 70, 48, 1416, 1331, 1428, 112, 1262, 112, 1430, 41, 42, 112, 228, 1432, 1423, 229, 56, 1434, 233, 112, 235, 1436, 329, 1438, 1445, 1440, 1446, 244, 1447, 175, 258, 348, 48, 48, 1085, 718, 1448, 1459, 1469, 1471, 719, 106, 37, 1476, 173, 174, 40, 48, 214, 468, 1473, 1477, 1484, 1500, 1499, 41, 42, 1504, 1511, 1353, 403, 1513, 1515, 328, 1521, 475, 1528, 970, 1529, 874, 221, 1185, 772, 775, 773, 421, 774, 975, 426, 428, 776, 369, 1108, 159, 1286, 1479, 1392, 1531, 986, 1348, 1216, 437, 1365, 1349, 212, 1462, 56, 8, 9, 10, 11, 12, 1190, 231, 444, 907, 887, 888, 447, 1198, 448, 909, 1379, 544, 1067, 1387, 1071, 790, 1105, 455, 1015, 1081, 48, 858, 707, 66, 31, 923, 1295, 1085, 469, 932, 780, 781, 48, 782, 74, 0, 0, 0, 476, 0, 0, 0, 0, 212, 0, 0, 428, 0, 351, 0, 506, 228, 34, 74, 0, 0, 0, 1425, 0, 1100, 0, 74, 1429, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 634, 0, 0, 0, 1112, 351, 112, 0, 1112, 0, 0, 212, 0, 0, 0, 0, 0, 1451, 0, 31, 968, 0, 740, 351, 408, 74, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 48, 258, 48, 0, 0, 587, 0, 494, 0, 112, 34, 615, 0, 0, 0, 0, 1085, 523, 1112, 0, 0, 524, 525, 526, 620, 214, 0, 0, 620, 351, 0, 1463, 48, 1467, 0, 212, 0, 0, 0, 56, 0, 410, 0, 0, 213, 527, 56, 528, 418, 529, 530, 0, 0, 112, 917, 1009, 594, 0, 0, 0, 0, 0, 45, 46, 0, 1519, 634, 0, 1495, 0, 1497, 1519, 112, 212, 1145, 1146, 112, 469, 212, 228, 0, 233, 1519, 0, 0, 0, 1519, 0, 0, 0, 0, 348, 351, 495, 0, 213, 469, 907, 56, 0, 0, 0, 0, 0, 469, 37, 0, 182, 183, 40, 0, 0, 1526, 0, 1527, 1112, 0, 0, 41, 42, 410, 0, 689, 112, 0, 428, 0, 1534, 1535, 1193, 1194, 0, 0, 0, 0, 351, 351, 213, 0, 0, 703, 0, 66, 907, 890, 0, 408, 0, 0, 0, 428, 351, 45, 46, 428, 8, 9, 10, 11, 12, 112, 0, 0, 212, 0, 0, 0, 228, 0, 351, 0, 0, 0, 0, 48, 1119, 0, 571, 0, 48, 74, 0, 0, 348, 31, 575, 0, 37, 578, 173, 174, 40, 0, 77, 0, 0, 48, 0, 213, 0, 41, 42, 0, 0, 0, 0, 74, 214, 0, 351, 0, 0, 34, 0, 0, 0, 0, 37, 0, 0, 112, 40, 0, 1009, 0, 77, 373, 0, 783, 0, 41, 42, 0, 0, 0, 1112, 213, 1112, 1112, 0, 0, 213, 0, 212, 351, 620, 794, 0, 410, 0, 0, 0, 418, 0, 0, 0, 43, 811, 0, 212, 0, 0, 222, 694, 45, 46, 0, 0, 0, 0, 0, 0, 112, 0, 0, 587, 0, 79, 0, 0, 587, 0, 0, 0, 212, 0, 620, 351, 0, 348, 348, 0, 0, 0, 0, 0, 0, 351, 0, 0, 0, 0, 907, 221, 214, 348, 0, 0, 351, 79, 0, 37, 1319, 182, 183, 40, 1112, 0, 0, 1321, 1322, 1323, 0, 689, 41, 42, 213, 0, 410, 0, 0, 0, 0, 0, 469, 0, 0, 0, 0, 0, 112, 0, 112, 112, 0, 0, 223, 0, 0, 353, 184, 8, 9, 10, 11, 12, 0, 0, 45, 46, 469, 907, 907, 348, 0, 0, 0, 0, 74, 0, 0, 0, 922, 1112, 1112, 428, 0, 0, 0, 0, 31, 0, 1366, 8, 9, 10, 11, 12, 0, 0, 351, 0, 0, 0, 0, 0, 0, 351, 703, 0, 0, 0, 212, 952, 0, 0, 213, 0, 34, 0, 0, 1443, 31, 37, 0, 182, 183, 40, 571, 571, 0, 112, 0, 0, 0, 0, 41, 42, 0, 0, 212, 0, 0, 354, 0, 212, 0, 0, 0, 0, 34, 689, 0, 77, 0, 37, 0, 213, 77, 40, 175, 689, 184, 494, 620, 0, 0, 984, 41, 42, 45, 46, 689, 0, 694, 0, 0, 0, 48, 48, 0, 1493, 995, 37, 0, 182, 183, 40, 112, 112, 1501, 57, 57, 0, 709, 0, 41, 42, 0, 0, 0, 0, 45, 46, 0, 8, 9, 10, 11, 12, 0, 869, 0, 0, 212, 872, 0, 351, 351, 0, 351, 351, 1489, 57, 408, 0, 112, 0, 212, 0, 45, 46, 66, 0, 31, 0, 0, 79, 74, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 495, 0, 0, 222, 0, 794, 0, 0, 57, 0, 0, 57, 703, 34, 0, 1064, 0, 0, 37, 0, 182, 183, 40, 351, 351, 0, 213, 0, 0, 0, 907, 41, 42, 0, 0, 0, 48, 112, 0, 0, 0, 1078, 0, 694, 0, 0, 112, 907, 0, 0, 428, 117, 86, 694, 213, 0, 0, 264, 0, 213, 48, 48, 0, 0, 694, 45, 46, 0, 0, 77, 212, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 353, 86, 48, 0, 223, 77, 0, 0, 0, 0, 0, 351, 0, 77, 571, 346, 0, 0, 0, 31, 0, 587, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 426, 0, 907, 907, 224, 689, 689, 0, 348, 348, 0, 213, 0, 34, 0, 353, 0, 77, 37, 221, 182, 183, 40, 0, 0, 213, 1166, 0, 0, 0, 0, 41, 42, 0, 0, 37, 79, 182, 183, 40, 74, 0, 0, 0, 0, 57, 0, 0, 41, 42, 354, 0, 351, 0, 351, 79, 0, 593, 353, 594, 689, 689, 0, 79, 0, 45, 46, 0, 0, 0, 0, 0, 523, 0, 264, 57, 524, 525, 526, 0, 0, 354, 45, 46, 0, 0, 0, 0, 0, 351, 0, 361, 0, 410, 0, 0, 351, 351, 351, 354, 527, 79, 528, 0, 529, 1285, 0, 351, 351, 0, 0, 0, 0, 0, 0, 0, 213, 0, 0, 0, 74, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 703, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 212, 0, 0, 694, 694, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 351, 0, 0, 0, 0, 353, 353, 0, 0, 1122, 0, 0, 0, 0, 1263, 0, 0, 0, 0, 0, 0, 353, 0, 542, 0, 1133, 86, 0, 0, 0, 0, 86, 0, 0, 0, 66, 0, 0, 0, 353, 0, 0, 694, 694, 0, 0, 354, 689, 0, 703, 77, 0, 0, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 0, 0, 0, 0, 0, 0, 77, 0, 0, 353, 0, 0, 0, 0, 689, 0, 0, 0, 0, 354, 354, 689, 689, 689, 0, 346, 0, 0, 0, 0, 410, 0, 348, 348, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 353, 1166, 0, 74, 0, 0, 0, 0, 0, 354, 74, 224, 166, 0, 171, 0, 0, 177, 178, 179, 79, 181, 0, 0, 0, 1219, 0, 0, 0, 0, 0, 0, 57, 213, 117, 232, 0, 0, 0, 0, 689, 0, 0, 353, 0, 0, 79, 247, 248, 354, 0, 0, 212, 353, 0, 0, 0, 0, 0, 222, 0, 0, 74, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 346, 1293, 0, 0, 86, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 348, 0, 694, 0, 0, 0, 0, 0, 0, 694, 694, 694, 0, 361, 0, 77, 0, 0, 354, 0, 0, 0, 0, 0, 0, 117, 0, 346, 354, 0, 0, 361, 0, 86, 223, 0, 0, 353, 0, 354, 212, 0, 0, 0, 353, 0, 0, 0, 1166, 0, 0, 0, 0, 0, 0, 1166, 0, 994, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 346, 346, 694, 0, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 213, 1166, 0, 0, 0, 0, 0, 0, 1514, 0, 284, 34, 0, 0, 0, 354, 285, 0, 0, 0, 286, 0, 354, 287, 288, 289, 290, 291, 292, 41, 42, 361, 293, 294, 0, 0, 0, 0, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 353, 0, 353, 353, 0, 0, 295, 0, 376, 0, 0, 0, 0, 0, 342, 46, 297, 298, 299, 300, 77, 0, 0, 0, 0, 361, 361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 585, 0, 592, 0, 361, 0, 8, 9, 10, 11, 12, 213, 0, 616, 617, 0, 0, 353, 353, 0, 0, 0, 361, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 86, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 354, 0, 354, 354, 0, 0, 0, 0, 0, 0, 31, 0, 86, 0, 0, 361, 34, 0, 0, 0, 79, 37, 0, 182, 183, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 34, 0, 0, 353, 0, 37, 0, 182, 183, 40, 0, 0, 361, 0, 0, 0, 354, 354, 41, 42, 0, 0, 890, 0, 408, 0, 57, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1489, 222, 408, 0, 346, 0, 0, 0, 45, 46, 0, 361, 281, 282, 0, 283, 0, 0, 0, 0, 0, 361, 77, 0, 0, 0, 0, 224, 0, 0, 0, 0, 361, 0, 353, 0, 353, 0, 0, 0, 0, 284, 0, 354, 0, 0, 0, 285, 0, 0, 57, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 353, 353, 353, 0, 0, 0, 0, 223, 295, 0, 376, 353, 353, 0, 86, 0, 45, 46, 297, 298, 299, 300, 0, 0, 77, 0, 0, 0, 79, 777, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 354, 0, 354, 361, 0, 0, 346, 346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 57, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 354, 0, 230, 0, 234, 0, 236, 354, 354, 354, 0, 0, 0, 245, 0, 0, 0, 0, 354, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 234, 236, 245, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 910, 0, 911, 0, 0, 0, 354, 0, 0, 914, 915, 0, 361, 361, 920, 361, 361, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 926, 0, 0, 0, 0, 930, 86, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592, 0, 0, 0, 0, 0, 0, 0, 361, 361, 57, 57, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 210, 0, 234, 236, 245, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 79, 0, 0, 210, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 493, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1004, 0, 1005, 1006, 1007, 0, 346, 346, 0, 0, 0, 0, 0, 0, 57, 164, 0, 0, 0, 57, 0, 1051, 0, 0, 0, 0, 0, 0, 224, 0, 79, 0, 217, 0, 0, 1057, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 57, 0, 0, 0, 0, 0, 0, 210, 0, 361, 0, 361, 234, 236, 0, 0, 0, 0, 0, 0, 245, 0, 1077, 0, 0, 0, 0, 164, 0, 0, 0, 271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 0, 0, 0, 0, 0, 0, 361, 361, 361, 0, 0, 0, 0, 164, 0, 210, 0, 361, 361, 1107, 0, 0, 0, 367, 1117, 0, 372, 0, 346, 1120, 86, 0, 0, 210, 1124, 0, 0, 0, 210, 1126, 210, 1127, 1128, 0, 0, 1131, 0, 0, 0, 0, 0, 0, 0, 57, 1143, 0, 210, 0, 0, 210, 210, 0, 0, 0, 0, 0, 0, 210, 0, 361, 1157, 1158, 0, 0, 0, 164, 57, 0, 0, 0, 0, 210, 0, 57, 0, 0, 0, 217, 210, 0, 0, 0, 0, 0, 0, 0, 1187, 0, 0, 1189, 0, 0, 0, 0, 0, 164, 0, 0, 0, 124, 127, 128, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 372, 0, 0, 0, 0, 57, 0, 164, 361, 0, 0, 31, 1203, 0, 0, 0, 0, 0, 1207, 1208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 520, 0, 0, 0, 0, 1224, 0, 34, 0, 0, 1231, 0, 0, 164, 0, 1235, 0, 0, 0, 253, 0, 254, 0, 0, 86, 0, 1242, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 210, 0, 1249, 0, 1251, 1252, 1253, 1254, 0, 0, 0, 590, 0, 0, 0, 0, 614, 0, 0, 1261, 0, 1157, 0, 0, 0, 171, 0, 0, 210, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 1289, 1290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412, 413, 0, 0, 0, 417, 0, 419, 420, 0, 0, 156, 0, 0, 0, 0, 0, 164, 164, 0, 0, 0, 0, 367, 0, 0, 0, 0, 210, 0, 0, 0, 0, 1324, 1325, 0, 0, 0, 0, 0, 0, 0, 210, 1335, 520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 493, 0, 0, 0, 0, 255, 0, 0, 0, 706, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 520, 0, 520, 0, 0, 520, 0, 164, 520, 1370, 0, 1371, 1372, 1373, 0, 0, 0, 0, 0, 367, 0, 0, 0, 1377, 0, 0, 210, 0, 0, 0, 0, 1388, 0, 0, 0, 0, 0, 210, 0, 0, 0, 383, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 1409, 1410, 0, 0, 0, 0, 0, 0, 415, 0, 0, 0, 0, 0, 0, 164, 0, 0, 0, 0, 0, 0, 429, 0, 0, 0, 367, 0, 0, 797, 0, 434, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442, 0, 0, 0, 1449, 1450, 0, 0, 0, 0, 0, 0, 0, 0, 590, 0, 0, 1455, 0, 590, 0, 0, 0, 0, 1455, 460, 0, 0, 367, 367, 470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478, 367, 0, 0, 0, 0, 488, 0, 492, 0, 0, 0, 0, 0, 1488, 0, 0, 0, 1494, 0, 0, 0, 0, 0, 0, 210, 0, 521, 0, 0, 0, 0, 0, 520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1516, 0, 1517, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 367, 0, 919, 0, 0, 0, 0, 0, 0, 580, 0, 0, 0, 584, 0, 0, 0, 1532, 1533, 0, 0, 0, 0, 0, 0, 1536, 1537, 0, 210, 0, 0, 0, 0, 0, 0, 706, 0, 0, 0, 210, 0, 627, 0, 0, 0, 628, 629, 0, 630, 0, 0, 0, 0, 0, 0, 641, 642, 0, 643, 644, 0, 645, 0, 646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 580, 0, 0, 0, 785, 786, 0, 0, 661, 0, 0, 0, 0, 614, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 816, 672, 0, 819, 820, 0, 823, 0, 825, 826, 0, 210, 0, 827, 828, 0, 126, 126, 126, 503, 0, 505, 508, 0, 0, 0, 0, 698, 0, 0, 0, 511, 512, 701, 0, 0, 0, 0, 460, 0, 0, 0, 0, 0, 0, 0, 505, 505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 362, 0, 0, 0, 0, 367, 0, 0, 0, 736, 0, 0, 706, 0, 0, 0, 505, 0, 0, 0, 0, 0, 0, 126, 754, 126, 0, 520, 0, 0, 0, 0, 411, 0, 210, 0, 0, 0, 0, 411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274, 505, 164, 0, 0, 0, 0, 0, 0, 0, 0, 779, 0, 0, 0, 0, 0, 0, 0, 0, 789, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 954, 955, 0, 0, 0, 0, 810, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 590, 126, 0, 0, 0, 0, 0, 411, 0, 126, 0, 126, 126, 0, 0, 0, 126, 0, 126, 126, 0, 367, 367, 0, 849, 0, 0, 210, 0, 0, 463, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 882, 0, 0, 0, 411, 0, 31, 0, 889, 0, 0, 0, 411, 576, 0, 411, 579, 0, 520, 0, 0, 0, 0, 362, 0, 0, 0, 606, 126, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 250, 0, 38, 39, 0, 0, 0, 624, 0, 0, 0, 927, 928, 0, 0, 0, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 505, 0, 0, 411, 1069, 0, 0, 411, 0, 0, 962, -3, 706, 0, 0, 966, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -298, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 31, 0, 322, 0, 0, 0, 0, 0, 217, 0, 0, 0, 344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 379, 0, 0, 0, 34, 0, 999, 0, 0, 0, 0, 0, 0, 1000, 411, -298, 0, 362, 0, 0, 706, 0, 0, 0, 0, 0, 1002, 0, 1003, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1013, 0, 0, 0, 0, 0, 1017, 0, 0, 0, 0, 0, 0, 505, 0, 411, 0, 0, 1054, 362, 0, 1055, 0, 0, 0, 0, 0, 0, 0, 322, 0, 0, 367, 367, 0, 0, 210, 0, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 1195, 0, 0, 0, 474, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411, 411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, 0, 0, 0, 0, 0, 0, 792, 362, 0, 0, 0, 0, 0, 0, 0, 0, 606, 0, 606, 606, 0, 0, 0, 0, 0, 606, 0, 0, 0, 505, 0, 0, 0, 0, 0, 829, 362, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 0, 0, 1125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 411, 870, 126, 126, 411, 873, 0, 367, 0, 0, 0, 875, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 0, 0, 0, 0, 0, 0, 126, 411, 1284, 126, 126, 0, 126, 0, 126, 126, 0, 0, 0, 126, 126, 1188, 0, 0, 0, 0, 0, 0, 0, 0, 362, 606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 520, 0, 520, 0, 0, 0, 0, 0, 505, 0, 0, 0, 0, 0, 1200, 0, 0, 0, 0, 1202, 0, 0, 0, 0, 362, 0, 0, 1206, 411, 411, 0, 0, 0, 0, 0, 0, 0, 520, 0, 520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 700, 0, 0, 505, 0, 0, 0, 0, 0, 0, 1237, 0, 0, 0, 0, 164, 0, 0, 0, 0, 411, 1244, 0, 0, 1245, 0, 1246, 0, 0, 0, 0, 0, 0, 0, 0, 505, 606, 0, 606, 733, 0, 1255, 1256, 0, 0, 0, 0, 505, 606, 0, 0, 749, 0, 0, 0, 0, 0, 733, 0, 0, 733, 1268, 0, 126, 126, 1141, 0, 0, 8, 9, 10, 11, 12, 758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, 0, 0, 0, 0, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 787, 0, 0, 0, 1307, 0, 0, 344, 0, 0, 0, 749, 1311, 0, 0, 0, 362, 0, 0, 0, 0, 284, 34, 362, 411, 0, 411, 285, 0, 0, 411, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 606, 606, 0, 0, 0, 0, 848, 0, 505, 0, 0, 0, 0, 0, 379, 295, 0, 376, 0, 0, 0, 0, 0, 1142, 46, 297, 298, 299, 300, 0, 0, 1358, 0, 1359, 0, 411, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1368, 0, 1369, 0, 0, 411, 1123, 0, 0, 0, 0, 126, 0, 0, 0, 362, 126, 1376, 505, 505, 0, 411, 1134, 0, 606, 606, 1139, 0, 0, 0, 0, 0, 1394, 1396, 0, 0, 362, 362, 0, 0, 0, 924, 0, 1401, 0, 0, 1206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 749, 0, 948, 0, 0, 1424, 0, 0, 0, 0, 0, 0, 958, 0, 1431, 0, 0, 1433, 965, 1435, 1437, 1439, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411, 0, 411, 0, 0, 0, 0, 411, 0, 0, 0, 0, 0, 0, 0, 0, 606, 0, 0, 0, 0, 0, 0, 0, 0, 982, 983, 1470, 0, 1472, 0, 1206, 0, 0, 0, 0, 0, 0, 0, 411, 1220, 344, 0, 0, 0, 0, 0, 1483, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 0, 0, 0, 0, 1011, 0, 0, 0, 379, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 344, 0, 0, 0, 0, 31, 0, 344, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 34, 505, 0, 0, 0, 0, 0, 206, 39, 0, 0, 0, 0, 0, 322, 204, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 379, 26, 27, 28, 0, 958, 362, 362, 733, 0, 31, 45, 46, 0, 0, 0, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1129, 0, 0, 0, 505, 505, 0, 0, 0, 0, 34, 1144, 35, 0, 36, 37, 0, 206, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 379, 0, 1161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 958, 958, 0, 0, 0, 0, 43, 0, 207, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 1192, 0, 0, 0, 0, 0, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 362, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 958, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 848, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1247, 1248, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 44, 26, 27, 28, 411, 0, 45, 46, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411, 411, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 411, 0, 0, 0, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, -418, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 1020, 1021, 0, 1022, 0, 0, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 0, 0, 0, 1031, 0, 0, 1352, 1032, 1033, 733, 33, 0, 284, 34, 0, 35, 0, 36, 1034, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 296, 0, 0, 170, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 1035, 0, 0, 0, 0, -134, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 0, 0, 295, 0, 296, 0, 0, 41, 42, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, -134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -299, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -299, 0, 295, 0, 296, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 295, 0, 341, 0, 0, 0, 0, 748, 342, 46, 297, 298, 299, 300, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 206, 39, 0, 0, 0, 0, 295, 0, 341, 0, 0, 0, 0, 748, 45, 46, 297, 298, 299, 300, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 341, 0, 0, 0, 0, 0, 342, 46, 297, 298, 299, 300, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 206, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 979, 0, 0, 0, 0, 0, 980, 46, 297, 298, 299, 300, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 206, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, -521, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, -525, 0, 45, 46, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -298, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -298, 204, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 44, 0, 31, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 207, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 206, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 207, 0, 0, 0, 0, 0, 45, 46, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, -405, 668, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1332, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 668, 0, 0, 0, 0, 0, 45, 46, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 675, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1334, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 668, 0, 0, 0, 0, 0, 45, 46, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 676, 26, 27, 28, 677, 0, 45, 46, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 269, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 668, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 207, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 0, 0, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 513, 0, 0, 170, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 0, 0, 295, -40, 296, 0, 0, 41, 42, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 44, 26, 27, 28, 0, 0, 45, 46, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 675, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 295, 0, 296, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 676, 26, 27, 28, 1070, 0, 45, 46, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 675, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 295, 0, 341, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 676, 26, 27, 28, 1197, 0, 45, 46, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 38, 39, 40, 0, 0, 0, 295, 0, 376, 0, 0, 41, 42, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 37, 0, 206, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 43, 0, 269, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 256, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 206, 39, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 269, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 337, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 676, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 281, 282, 0, 283, 1021, 0, 1022, 0, 0, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 0, 0, 1508, 1031, 0, 0, 0, 1032, 1033, 0, 33, 0, 284, 0, 0, 0, 0, 668, 1034, 0, 0, 0, 286, 45, 46, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 170, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 281, 282, 1035, 283, 1021, 0, 1022, -134, 0, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 0, 0, 0, 1031, 0, 0, 0, 1032, 1033, 0, 33, 0, 284, 0, 0, 0, 0, 0, 1034, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 170, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 0, 0, 1035, 0, 0, 0, 0, -134, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 281, 282, 0, 283, 1021, 0, 1022, 1380, 1381, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 0, 0, 1508, 1031, 0, 0, 0, 1032, 1033, 34, 33, 35, 284, 36, 0, 0, 38, 39, 1034, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 1291, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 170, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 281, 282, 1035, 283, 1021, 0, 1022, 1380, 1381, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 0, 0, 0, 1031, 0, 0, 0, 1032, 1033, 0, 33, 0, 284, 0, 0, 0, 0, 0, 1034, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 170, 0, 0, 45, 46, 297, 298, 299, 300, 0, 0, 281, 282, 1035, 283, 1021, 0, 1022, 0, 0, 1023, 1024, 1025, 1026, 1027, 1028, 1029, 1030, 0, 0, 0, 1031, 0, 0, 0, 1032, 1033, 0, 33, 0, 284, 0, 0, 0, 0, 0, 1034, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 170, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 1035, 0, 631, 0, 139, 140, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 632, 0, 633, 377, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 377, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 0, 0, 748, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 956, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502, 0, 376, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507, 0, 376, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510, 0, 376, 0, 0, 0, 0, 0, 45, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 0, 0, 0, 699, 46, 297, 298, 299, 300, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 291, 292, 41, 42, 0, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 0, 376, 0, 0, 0, 0, 0, 342, 46, 297, 298, 299, 300, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 173, 174, 40, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 204, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 463, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 481, 482, 483, 34, 0, 35, 31, 36, 0, 0, 206, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1333)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 43, 43, 43, 238, 184, 0, 116, 203, 1, 184, 0, 530, 184, 218, 0, 184, 184, 509, 740, 0, 167, 168, 740, 740, 184, 184, 860, 613, 595, 32, 32, 593, 725, 637, 347, 1, 43, 32, 460, 593, 517, 43, 32, 478, 488, 593, 32, 49, 492, 347, 566, 32, 105, 186, 49, 595, 1301, 39, 185, 0, 966, 63, 423, 424, 66, 81, 43, 69, 63, 593, 683, 66, 593, 362, 69, 593, 69, 366, 1002, 1003, 28, 593, 97, 49, 264, 1020, 1003, 43, 39, 264, 200, 32, 264, 81, 49, 264, 264, 627, 628, 51, 0, 1, 155, 105, 264, 264, 118, 1013, 0, 1110, 109, 113, 72, 643, 116, 117, 131, 81, 0, 343, 1032, 1033, 134, 106, 112, 66, 109, 260, 261, 490, 78, 113, 32, 63, 133, 111, 44, 45, 265, 105, 32, 184, 184, 184, 146, 147, 39, 113, 509, 113, 32, 1485, 147, 155, 156, 49, 1401, 159, 113, 111, 111, 43, 113, 64, 159, 860, 280, 49, 890, 69, 628, 701, 890, 890, 134, 111, 415, 184, 1512, 185, 146, 63, 184, 185, 66, 643, 484, 69, 709, 155, 185, 709, 627, 628, 1106, 434, 255, 709, 200, 686, 1485, 678, 407, 442, 134, 596, 208, 184, 643, 117, 111, 602, 573, 208, 111, 112, 113, 39, 220, 113, 1505, 264, 264, 264, 39, 220, 1380, 1512, 184, 1230, 72, 1232, 1233, 72, 217, 111, 238, 799, 204, 661, 44, 45, 208, 701, 811, 799, 39, 250, 250, 39, 11, 799, 146, 208, 478, 250, 258, 133, 98, 265, 250, 263, 264, 265, 250, 147, 701, 783, 270, 250, 265, 811, 238, 886, 255, 799, 403, 159, 799, 220, 119, 799, 595, 393, 124, 1202, 339, 799, 271, 111, 98, 113, 134, 295, 583, 278, 111, 118, 113, 1453, 87, 736, 184, 185, 270, 909, 308, 273, 111, 250, 1384, 421, 116, 134, 208, 270, 124, 427, 111, 114, 113, 111, 324, 113, 1435, 1020, 208, 329, 115, 295, 116, 1255, 1256, 1268, 329, 624, 1029, 339, 220, 1256, 295, 343, 308, 227, 238, 347, 348, 111, 112, 476, 250, 918, 112, 308, 1188, 917, 415, 779, 250, 1470, 362, 1472, 246, 255, 366, 44, 45, 789, 250, 917, 0, 1, 132, 339, 72, 434, 270, 343, 800, 112, 363, 118, 264, 442, 367, 118, 500, 85, 86, 613, 3, 393, 1456, 917, 618, 981, 362, 403, 1462, 597, 366, 403, 32, 601, 891, 1311, 1480, 348, 403, 55, 801, 1485, 118, 111, 308, 113, 30, 3, 1482, 421, 112, 423, 424, 1487, 622, 427, 132, 429, 626, 118, 72, 1505, 72, 672, 415, 112, 66, 116, 1512, 69, 132, 0, 118, 85, 86, 85, 86, 329, 450, 343, 937, 97, 1376, 434, 889, 132, 132, 423, 424, 1376, 0, 442, 1368, 1369, 118, 347, 468, 111, 82, 83, 476, 113, 964, 113, 476, 952, 478, 295, 480, 111, 134, 476, 484, 927, 450, 480, 121, 122, 490, 1424, 480, 638, 118, 1188, 480, 450, 1431, 463, 811, 480, 502, 1105, 504, 792, 112, 507, 132, 509, 510, 118, 118, 1078, 736, 811, 647, 517, 118, 118, 113, 521, 115, 403, 488, 415, 490, 134, 492, 114, 469, 423, 424, 118, 134, 134, 112, 645, 502, 132, 504, 480, 118, 507, 434, 509, 510, 133, 192, 502, 1483, 504, 442, 678, 507, 111, 118, 510, 4, 5, 6, 7, 8, 9, 130, 565, 566, 133, 112, 1002, 118, 215, 134, 573, 118, 1268, 111, 1268, 113, 999, 1000, 225, 480, 583, 584, 112, 134, 587, 478, 1064, 480, 118, 220, 593, 1069, 595, 584, 112, 490, 111, 480, 990, 991, 118, 484, 118, 112, 423, 424, 573, 114, 1096, 118, 613, 118, 672, 728, 509, 618, 583, 620, 134, 250, 69, 624, 71, 922, 627, 628, 111, 242, 118, 112, 614, 1054, 1055, 111, 833, 118, 118, 118, 698, 118, 643, 847, 645, 118, 134, 629, 613, 112, 295, 1343, 114, 618, 134, 134, 118, 134, 72, 624, 642, 134, 76, 867, 114, 72, 889, 49, 118, 1155, 1156, 85, 86, 678, 675, 615, 119, 678, 85, 86, 573, 63, 125, 126, 66, 502, 111, 69, 112, 112, 507, 1125, 672, 510, 118, 929, 111, 111, 113, 113, 701, 702, 703, 90, 91, 119, 120, 853, 709, 710, 675, 890, 593, 114, 595, 112, 890, 118, 698, 890, 613, 675, 890, 890, 112, 618, 923, 112, 112, 112, 1424, 890, 890, 118, 118, 736, 1428, 1431, 1430, 740, 741, 111, 724, 113, 112, 112, 112, 564, 713, 689, 118, 118, 4, 5, 6, 7, 8, 9, 981, 111, 92, 93, 1, 703, 377, 147, 892, 1285, 1489, 112, 112, 111, 1489, 1489, 112, 118, 118, 159, 117, 1200, 118, 672, 783, 4, 5, 6, 7, 8, 9, 1483, 111, 792, 1484, 794, 439, 127, 128, 678, 799, 994, 112, 72, 111, 185, 113, 1094, 118, 698, 79, 1098, 811, 82, 33, 84, 85, 86, 1237, 69, 134, 71, 465, 1255, 111, 1244, 1245, 1246, 208, 792, 709, 710, 72, 112, 74, 75, 76, 94, 95, 118, 220, 72, 112, 74, 75, 85, 86, 736, 118, 111, 69, 113, 71, 480, 85, 86, 794, 119, 120, 502, 111, 860, 113, 111, 507, 66, 64, 510, 0, 1, 111, 1015, 113, 860, 134, 111, 487, 113, 489, 1363, 111, 82, 860, 882, 134, 116, 112, 113, 1307, 892, 889, 890, 116, 892, 116, 882, 1380, 29, 30, 72, 32, 74, 75, 116, 1125, 904, 134, 57, 111, 112, 113, 43, 85, 86, 72, 111, 117, 49, 917, 918, 799, 79, 860, 922, 82, 57, 84, 85, 86, 928, 929, 63, 811, 72, 66, 74, 75, 69, 928, 134, 1064, 904, 111, 116, 113, 1069, 85, 86, 81, 329, 82, 83, 904, 952, 111, 113, 106, 111, 159, 109, 283, 117, 118, 860, 927, 928, 929, 81, 1452, 1453, 502, 860, 504, 120, 106, 507, 129, 109, 510, 1086, 96, 1202, 981, 1094, 116, 308, 309, 1098, 1099, 130, 111, 1465, 113, 111, 113, 113, 111, 112, 113, 3, 889, 119, 120, 1002, 1003, 114, 10, 11, 12, 13, 14, 890, 114, 892, 251, 147, 112, 660, 981, 220, 343, 1020, 633, 403, 58, 59, 669, 159, 117, 118, 673, 928, 895, 1020, 897, 39, 44, 45, 929, 112, 1514, 112, 1020, 922, 112, 72, 984, 74, 75, 76, 1111, 1112, 184, 185, 112, 378, 112, 258, 85, 86, 1059, 1064, 263, 67, 111, 1064, 1069, 217, 200, 114, 1069, 682, 111, 684, 113, 113, 208, 688, 118, 1078, 119, 120, 1020, 116, 111, 217, 113, 1086, 220, 133, 981, 116, 119, 120, 116, 227, 1059, 549, 550, 72, 111, 1212, 111, 112, 113, 132, 79, 1059, 114, 82, 242, 84, 85, 86, 246, 58, 59, 60, 250, 251, 133, 271, 112, 1020, 551, 552, 1125, 112, 278, 557, 558, 1020, 264, 265, 3, 553, 554, 555, 556, 271, 113, 10, 11, 12, 13, 14, 278, 348, 3, 10, 11, 12, 13, 14, 114, 10, 11, 12, 13, 14, 114, 72, 132, 74, 75, 76, 132, 1166, 1167, 72, 39, 74, 75, 76, 85, 86, 132, 1167, 39, 118, 860, 29, 85, 86, 39, 1064, 112, 112, 116, 1188, 1069, 1302, 112, 117, 117, 1306, 346, 329, 67, 117, 111, 1188, 113, 1202, 118, 111, 67, 1206, 119, 120, 1188, 112, 67, 363, 346, 347, 1206, 367, 10, 11, 12, 13, 14, 546, 547, 548, 463, 428, 1166, 134, 132, 363, 112, 860, 118, 367, 1125, 112, 112, 112, 112, 884, 853, 1206, 112, 377, 112, 39, 859, 112, 1188, 118, 1359, 112, 112, 112, 1255, 1256, 112, 112, 112, 393, 112, 112, 1263, 112, 0, 1499, 469, 1268, 1167, 403, 117, 29, 112, 67, 118, 133, 114, 114, 112, 1268, 112, 112, 118, 111, 132, 524, 899, 421, 1268, 1188, 529, 72, 1405, 427, 118, 116, 32, 1188, 79, 928, 1301, 82, 132, 84, 85, 86, 112, 1206, 112, 1301, 1489, 1202, 112, 118, 112, 1489, 112, 111, 1489, 113, 112, 1489, 1489, 1263, 111, 119, 120, 118, 1268, 463, 1489, 1489, 113, 69, 468, 72, 1301, 111, 577, 76, 118, 1023, 476, 956, 111, 111, 480, 111, 85, 86, 484, 1168, 1169, 487, 1171, 489, 1465, 132, 1359, 112, 117, 1178, 134, 1180, 1490, 112, 117, 72, 112, 1268, 130, 76, 117, 116, 111, 1376, 1358, 1268, 134, 114, 85, 86, 119, 120, 587, 112, 1031, 118, 1514, 114, 524, 1020, 114, 112, 112, 529, 47, 114, 114, 114, 1401, 112, 1301, 117, 114, 644, 111, 646, 114, 1401, 114, 134, 615, 134, 119, 120, 112, 620, 0, 1, 156, 134, 747, 1424, 117, 72, 134, 74, 75, 112, 1431, 134, 1433, 132, 1435, 1424, 1401, 1050, 85, 86, 117, 114, 1431, 577, 1424, 83, 114, 1489, 1489, 1489, 32, 1431, 114, 114, 114, 114, 112, 696, 112, 593, 60, 595, 614, 111, 1465, 114, 113, 49, 1433, 1470, 1435, 1472, 111, 116, 111, 98, 112, 629, 112, 1433, 614, 1435, 1483, 111, 1424, 1490, 689, 69, 1489, 1490, 642, 1431, 661, 229, 1483, 629, 1490, 114, 1499, 633, 703, 134, 1401, 1483, 114, 1470, 1188, 1472, 642, 1514, 644, 645, 646, 1514, 250, 112, 1470, 112, 1472, 255, 1514, 114, 1339, 105, 98, 1424, 111, 111, 134, 117, 42, 112, 1431, 1424, 1499, 112, 112, 1166, 1167, 72, 1431, 74, 75, 1483, 678, 112, 118, 134, 682, 1162, 684, 134, 85, 86, 688, 70, 112, 132, 73, 1188, 112, 76, 696, 78, 98, 147, 98, 112, 134, 134, 85, 112, 724, 155, 156, 709, 710, 1206, 111, 114, 134, 112, 112, 116, 1483, 72, 114, 74, 75, 76, 724, 794, 1483, 117, 114, 134, 134, 111, 85, 86, 117, 117, 1284, 185, 112, 112, 1499, 134, 1489, 112, 779, 112, 657, 349, 1035, 559, 562, 560, 200, 561, 789, 203, 204, 563, 111, 961, 208, 1188, 1453, 1345, 1524, 800, 1277, 1099, 1263, 1306, 1278, 66, 1431, 1268, 10, 11, 12, 13, 14, 1050, 75, 229, 686, 675, 675, 233, 1069, 235, 688, 1337, 981, 897, 1340, 905, 577, 956, 244, 853, 925, 799, 639, 480, 250, 39, 713, 1206, 1301, 255, 724, 565, 565, 811, 565, 415, -1, -1, -1, 265, -1, -1, -1, -1, 117, -1, -1, 273, -1, 429, -1, 1020, 211, 67, 434, -1, -1, -1, 1384, -1, 943, -1, 442, 1389, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 853, -1, -1, -1, 962, 460, 859, -1, 966, -1, -1, 159, -1, -1, -1, -1, -1, 1418, -1, 39, 777, -1, 111, 478, 113, 480, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, 890, 339, 892, -1, -1, 343, -1, 278, -1, 899, 67, 349, -1, -1, -1, -1, 1401, 83, 1013, -1, -1, 87, 88, 89, 362, 984, -1, -1, 366, 521, -1, 1432, 922, 1434, -1, 220, -1, -1, -1, 1424, -1, 188, -1, -1, 66, 111, 1431, 113, 195, 115, 116, -1, -1, 943, 111, 849, 113, -1, -1, -1, -1, -1, 119, 120, -1, 1503, 956, -1, 1469, -1, 1471, 1509, 962, 258, 999, 1000, 966, 415, 263, 350, -1, 352, 1520, -1, -1, -1, 1524, -1, -1, -1, -1, 429, 584, 278, -1, 117, 434, 891, 1483, -1, -1, -1, -1, -1, 442, 72, -1, 74, 75, 76, -1, -1, 1513, -1, 1515, 1110, -1, -1, 85, 86, 267, -1, 460, 1013, -1, 463, -1, 1528, 1529, 1054, 1055, -1, -1, -1, -1, 627, 628, 159, -1, -1, 478, -1, 480, 937, 111, -1, 113, -1, -1, -1, 488, 643, 119, 120, 492, 10, 11, 12, 13, 14, 1050, -1, -1, 348, -1, -1, -1, 438, -1, 661, -1, -1, -1, -1, 1064, 969, -1, 324, -1, 1069, 672, -1, -1, 521, 39, 332, -1, 72, 335, 74, 75, 76, -1, 0, -1, -1, 1086, -1, 220, -1, 85, 86, -1, -1, -1, -1, 698, 1166, -1, 701, -1, -1, 67, -1, -1, -1, -1, 72, -1, -1, 1110, 76, -1, 1017, -1, 32, 111, -1, 566, -1, 85, 86, -1, -1, -1, 1230, 258, 1232, 1233, -1, -1, 263, -1, 428, 736, 583, 584, -1, 395, -1, -1, -1, 399, -1, -1, -1, 111, 595, -1, 444, -1, -1, 69, 460, 119, 120, -1, -1, -1, -1, -1, -1, 1162, -1, -1, 613, -1, 0, -1, -1, 618, -1, -1, -1, 469, -1, 624, 779, -1, 627, 628, -1, -1, -1, -1, -1, -1, 789, -1, -1, -1, -1, 1096, 795, 1263, 643, -1, -1, 800, 32, -1, 72, 1237, 74, 75, 76, 1311, -1, -1, 1244, 1245, 1246, -1, 661, 85, 86, 348, -1, 475, -1, -1, -1, -1, -1, 672, -1, -1, -1, -1, -1, 1230, -1, 1232, 1233, -1, -1, 69, -1, -1, 156, 111, 10, 11, 12, 13, 14, -1, -1, 119, 120, 698, 1155, 1156, 701, -1, -1, -1, -1, 860, -1, -1, -1, 710, 1368, 1369, 713, -1, -1, -1, -1, 39, -1, 1307, 10, 11, 12, 13, 14, -1, -1, 882, -1, -1, -1, -1, -1, -1, 889, 736, -1, -1, -1, 587, 741, -1, -1, 428, -1, 67, -1, -1, 1406, 39, 72, -1, 74, 75, 76, 565, 566, -1, 1311, -1, -1, -1, -1, 85, 86, -1, -1, 615, -1, -1, 156, -1, 620, -1, -1, -1, -1, 67, 779, -1, 250, -1, 72, -1, 469, 255, 76, 1358, 789, 111, 724, 792, -1, -1, 795, 85, 86, 119, 120, 800, -1, 661, -1, -1, -1, 1358, 1359, -1, 1466, 810, 72, -1, 74, 75, 76, 1368, 1369, 1475, 0, 1, -1, 111, -1, 85, 86, -1, -1, -1, -1, 119, 120, -1, 10, 11, 12, 13, 14, -1, 648, -1, -1, 689, 652, -1, 999, 1000, -1, 1002, 1003, 111, 32, 113, -1, 1406, -1, 703, -1, 119, 120, 860, -1, 39, -1, -1, 250, 1020, -1, -1, -1, 255, -1, -1, -1, -1, -1, -1, 724, -1, -1, 349, -1, 882, -1, -1, 66, -1, -1, 69, 889, 67, -1, 892, -1, -1, 72, -1, 74, 75, 76, 1054, 1055, -1, 587, -1, -1, -1, 1363, 85, 86, -1, -1, -1, 1465, 1466, -1, -1, -1, 918, -1, 779, -1, -1, 1475, 1380, -1, -1, 927, 928, 0, 789, 615, -1, -1, 111, -1, 620, 1489, 1490, -1, -1, 800, 119, 120, -1, -1, 415, 794, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 429, 32, 1514, -1, 349, 434, -1, -1, -1, -1, -1, 1125, -1, 442, 783, 156, -1, -1, -1, 39, -1, 981, -1, -1, -1, -1, -1, -1, -1, -1, -1, 460, -1, -1, 994, -1, 1452, 1453, 69, 999, 1000, -1, 1002, 1003, -1, 689, -1, 67, -1, 478, -1, 480, 72, 1167, 74, 75, 76, -1, -1, 703, 1020, -1, -1, -1, -1, 85, 86, -1, -1, 72, 415, 74, 75, 76, 1188, -1, -1, -1, -1, 220, -1, -1, 85, 86, 429, -1, 1200, -1, 1202, 434, -1, 111, 521, 113, 1054, 1055, -1, 442, -1, 119, 120, -1, -1, -1, -1, -1, 83, -1, 111, 250, 87, 88, 89, -1, -1, 460, 119, 120, -1, -1, -1, -1, -1, 1237, -1, 156, -1, 896, -1, -1, 1244, 1245, 1246, 478, 111, 480, 113, -1, 115, 116, -1, 1255, 1256, -1, -1, -1, -1, -1, -1, -1, 794, -1, -1, -1, 1268, 584, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1125, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 521, 984, -1, -1, 999, 1000, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 1307, -1, -1, -1, -1, 627, 628, -1, -1, 971, -1, -1, -1, -1, 1167, -1, -1, -1, -1, -1, -1, 643, -1, 133, -1, 987, 250, -1, -1, -1, -1, 255, -1, -1, -1, 1188, -1, -1, -1, 661, -1, -1, 1054, 1055, -1, -1, 584, 1200, -1, 1202, 672, -1, -1, 1206, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1376, -1, -1, -1, -1, -1, -1, 698, -1, -1, 701, -1, -1, -1, -1, 1237, -1, -1, -1, -1, 627, 628, 1244, 1245, 1246, -1, 429, -1, -1, -1, -1, 1062, -1, 1255, 1256, -1, 643, -1, -1, -1, -1, -1, -1, -1, -1, 736, 1268, -1, 1424, -1, -1, -1, -1, -1, 661, 1431, 349, 53, -1, 55, -1, -1, 58, 59, 60, 672, 62, -1, -1, -1, 1101, -1, -1, -1, -1, -1, -1, 480, 984, 1301, 76, -1, -1, -1, -1, 1307, -1, -1, 779, -1, -1, 698, 88, 89, 701, -1, -1, 1166, 789, -1, -1, -1, -1, -1, 795, -1, -1, 1483, -1, 800, -1, -1, -1, -1, -1, -1, -1, -1, 521, 1200, -1, -1, 415, -1, -1, -1, -1, -1, -1, 736, -1, -1, -1, -1, -1, -1, 429, -1, -1, -1, -1, 434, -1, -1, -1, -1, -1, -1, -1, 442, -1, -1, -1, -1, 1376, -1, 1237, -1, -1, -1, -1, -1, -1, 1244, 1245, 1246, -1, 460, -1, 860, -1, -1, 779, -1, -1, -1, -1, -1, -1, 1401, -1, 584, 789, -1, -1, 478, -1, 480, 795, -1, -1, 882, -1, 800, 1263, -1, -1, -1, 889, -1, -1, -1, 1424, -1, -1, -1, -1, -1, -1, 1431, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 627, 628, 1307, -1, 521, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 643, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, 860, -1, -1, -1, -1, -1, -1, 1166, 1483, -1, -1, -1, -1, -1, -1, 1490, -1, 66, 67, -1, -1, -1, 882, 72, -1, -1, -1, 76, -1, 889, 79, 80, 81, 82, 83, 84, 85, 86, 584, 88, 89, -1, -1, -1, -1, 701, -1, -1, -1, -1, -1, -1, -1, -1, -1, 999, 1000, -1, 1002, 1003, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 1020, -1, -1, -1, -1, 627, 628, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 342, -1, 344, -1, 643, -1, 10, 11, 12, 13, 14, 1263, -1, 355, 356, -1, -1, 1054, 1055, -1, -1, -1, 661, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 672, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 999, 1000, -1, 1002, 1003, -1, -1, -1, -1, -1, -1, 39, -1, 698, -1, -1, 701, 67, -1, -1, -1, 1020, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, 67, -1, -1, 1125, -1, 72, -1, 74, 75, 76, -1, -1, 736, -1, -1, -1, 1054, 1055, 85, 86, -1, -1, 111, -1, 113, -1, 860, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, 1167, 113, -1, 882, -1, -1, -1, 119, 120, -1, 779, 37, 38, -1, 40, -1, -1, -1, -1, -1, 789, 1188, -1, -1, -1, -1, 795, -1, -1, -1, -1, 800, -1, 1200, -1, 1202, -1, -1, -1, -1, 66, -1, 1125, -1, -1, -1, 72, -1, -1, 928, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 1237, -1, -1, -1, -1, -1, -1, 1244, 1245, 1246, -1, -1, -1, -1, 1167, 111, -1, 113, 1255, 1256, -1, 860, -1, 119, 120, 121, 122, 123, 124, -1, -1, 1268, -1, -1, -1, 1188, 132, -1, -1, -1, -1, -1, -1, 882, -1, -1, -1, 1200, -1, 1202, 889, -1, -1, 1002, 1003, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1307, 1020, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, -1, 1237, -1, 75, -1, 77, -1, 79, 1244, 1245, 1246, -1, -1, -1, 86, -1, -1, -1, -1, 1255, 1256, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1268, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 117, -1, 119, 120, 121, -1, -1, -1, -1, -1, -1, 1376, -1, -1, -1, -1, -1, -1, -1, -1, 690, -1, 692, -1, -1, -1, 1307, -1, -1, 699, 700, -1, 999, 1000, 704, 1002, 1003, -1, -1, -1, -1, -1, 159, -1, -1, -1, -1, 717, -1, -1, -1, -1, 722, 1020, -1, -1, -1, -1, -1, 1424, -1, -1, -1, -1, -1, -1, 1431, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 749, -1, -1, -1, -1, -1, -1, -1, 1054, 1055, 1166, 1167, -1, -1, -1, -1, 1376, -1, -1, -1, -1, -1, -1, -1, 220, -1, 222, 223, 224, -1, -1, -1, 1188, -1, -1, -1, -1, -1, -1, 1483, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1206, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 258, -1, 1424, -1, -1, 263, -1, -1, -1, 1431, -1, -1, -1, -1, -1, -1, -1, 1125, -1, -1, 278, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 842, -1, 844, 845, 846, -1, 1255, 1256, -1, -1, -1, -1, -1, -1, 1263, 49, -1, -1, -1, 1268, -1, 863, -1, -1, -1, -1, -1, -1, 1167, -1, 1483, -1, 66, -1, -1, 877, -1, -1, -1, -1, 329, -1, -1, -1, -1, -1, -1, -1, -1, 1188, -1, -1, 1301, -1, -1, -1, -1, -1, -1, 348, -1, 1200, -1, 1202, 353, 354, -1, -1, -1, -1, -1, -1, 361, -1, 916, -1, -1, -1, -1, 113, -1, -1, -1, 117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1237, -1, -1, -1, -1, -1, -1, 1244, 1245, 1246, -1, -1, -1, -1, 146, -1, 403, -1, 1255, 1256, 960, -1, -1, -1, 156, 965, -1, 159, -1, 1376, 970, 1268, -1, -1, 421, 975, -1, -1, -1, 426, 980, 428, 982, 983, -1, -1, 986, -1, -1, -1, -1, -1, -1, -1, 1401, 995, -1, 444, -1, -1, 447, 448, -1, -1, -1, -1, -1, -1, 455, -1, 1307, 1011, 1012, -1, -1, -1, 208, 1424, -1, -1, -1, -1, 469, -1, 1431, -1, -1, -1, 220, 476, -1, -1, -1, -1, -1, -1, -1, 1037, -1, -1, 1040, -1, -1, -1, -1, -1, 238, -1, -1, -1, 26, 27, 28, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 263, -1, -1, -1, -1, 1483, -1, 270, 1376, -1, -1, 39, 1083, -1, -1, -1, -1, -1, 1089, 1090, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 295, -1, -1, -1, -1, 1108, -1, 67, -1, -1, 1113, -1, -1, 308, -1, 1118, -1, -1, -1, 98, -1, 100, -1, -1, 1424, -1, 1129, -1, -1, -1, -1, 1431, -1, -1, -1, -1, -1, 587, -1, 1142, -1, 1144, 1145, 1146, 1147, -1, -1, -1, 343, -1, -1, -1, -1, 348, -1, -1, 1159, -1, 1161, -1, -1, -1, 1165, -1, -1, 615, -1, -1, -1, -1, 620, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1483, -1, -1, -1, -1, -1, -1, 1193, 1194, -1, -1, -1, -1, -1, -1, -1, -1, -1, 180, -1, -1, -1, -1, -1, -1, -1, -1, -1, 190, 191, -1, -1, -1, 195, -1, 197, 198, -1, -1, 44, -1, -1, -1, -1, -1, 423, 424, -1, -1, -1, -1, 429, -1, -1, -1, -1, 689, -1, -1, -1, -1, 1247, 1248, -1, -1, -1, -1, -1, -1, -1, 703, 1257, 450, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 91, -1, -1, -1, -1, 724, -1, -1, -1, -1, 101, -1, -1, -1, 478, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 490, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 502, -1, 504, -1, -1, 507, -1, 509, 510, 1319, -1, 1321, 1322, 1323, -1, -1, -1, -1, -1, 521, -1, -1, -1, 1333, -1, -1, 783, -1, -1, -1, -1, 1341, -1, -1, -1, -1, -1, 794, -1, -1, -1, 170, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 811, -1, 1366, 1367, -1, -1, -1, -1, -1, -1, 193, -1, -1, -1, -1, -1, -1, 573, -1, -1, -1, -1, -1, -1, 207, -1, -1, -1, 584, -1, -1, 587, -1, 216, -1, -1, -1, -1, -1, -1, -1, -1, -1, 226, -1, -1, -1, 1411, 1412, -1, -1, -1, -1, -1, -1, -1, -1, 613, -1, -1, 1424, -1, 618, -1, -1, -1, -1, 1431, 251, -1, -1, 627, 628, 256, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 269, 643, -1, -1, -1, -1, 275, -1, 277, -1, -1, -1, -1, -1, 1464, -1, -1, -1, 1468, -1, -1, -1, -1, -1, -1, 922, -1, 296, -1, -1, -1, -1, -1, 675, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1496, -1, 1498, -1, -1, -1, -1, -1, -1, 952, -1, -1, -1, 701, -1, 703, -1, -1, -1, -1, -1, -1, 337, -1, -1, -1, 341, -1, -1, -1, 1526, 1527, -1, -1, -1, -1, -1, -1, 1534, 1535, -1, 984, -1, -1, -1, -1, -1, -1, 736, -1, -1, -1, 995, -1, 369, -1, -1, -1, 373, 374, -1, 376, -1, -1, -1, -1, -1, -1, 383, 384, -1, 386, 387, -1, 389, -1, 391, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 408, -1, -1, -1, 569, 570, -1, -1, 416, -1, -1, -1, -1, 794, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1064, -1, -1, 596, 440, -1, 599, 600, -1, 602, -1, 604, 605, -1, 1078, -1, 609, 610, -1, 26, 27, 28, 281, -1, 283, 284, -1, -1, -1, -1, 466, -1, -1, -1, 293, 294, 472, -1, -1, -1, -1, 477, -1, -1, -1, -1, -1, -1, -1, 308, 309, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 155, 156, -1, -1, -1, -1, 882, -1, -1, -1, 513, -1, -1, 889, -1, -1, -1, 343, -1, -1, -1, -1, -1, -1, 98, 528, 100, -1, 904, -1, -1, -1, -1, 188, -1, 1166, -1, -1, -1, -1, 195, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 125, 378, 929, -1, -1, -1, -1, -1, -1, -1, -1, 565, -1, -1, -1, -1, -1, -1, -1, -1, 574, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 745, 746, -1, -1, -1, -1, 594, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 981, 180, -1, -1, -1, -1, -1, 267, -1, 188, -1, 190, 191, -1, -1, -1, 195, -1, 197, 198, -1, 1002, 1003, -1, 632, -1, -1, 1263, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 668, -1, -1, -1, 324, -1, 39, -1, 676, -1, -1, -1, 332, 333, -1, 335, 336, -1, 1059, -1, -1, -1, -1, 343, -1, -1, -1, 347, 267, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 707, -1, 74, 75, -1, -1, -1, 366, -1, -1, -1, 718, 719, -1, -1, -1, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, -1, -1, 395, 901, -1, -1, 399, -1, -1, 750, 116, 1125, -1, -1, 755, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, 429, -1, -1, -1, -1, -1, -1, -1, 39, -1, 146, -1, -1, -1, -1, -1, 1166, -1, -1, -1, 156, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 167, 168, -1, -1, -1, 67, -1, 815, -1, -1, -1, -1, -1, -1, 822, 475, 78, -1, 478, -1, -1, 1202, -1, -1, -1, -1, -1, 835, -1, 837, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 850, -1, -1, -1, -1, -1, 856, -1, -1, -1, -1, -1, -1, 686, -1, 517, -1, -1, 868, 521, -1, 871, -1, -1, -1, -1, -1, -1, -1, 238, -1, -1, 1255, 1256, -1, -1, 1514, -1, -1, -1, 1263, -1, -1, -1, -1, -1, -1, -1, -1, 1056, -1, -1, -1, 262, -1, -1, -1, -1, -1, -1, -1, -1, -1, 565, 566, -1, -1, -1, -1, -1, -1, -1, -1, -1, 747, -1, -1, -1, -1, -1, -1, 583, 584, -1, -1, -1, -1, -1, -1, -1, -1, 593, -1, 595, 596, -1, -1, -1, -1, -1, 602, -1, -1, -1, 777, -1, -1, -1, -1, -1, 612, 613, -1, -1, -1, -1, 618, -1, -1, -1, -1, -1, -1, -1, -1, 627, 628, -1, -1, 979, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 643, -1, -1, -1, -1, 648, 649, 569, 570, 652, 653, -1, 1376, -1, -1, -1, 659, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 377, -1, -1, -1, -1, -1, -1, 596, 678, 1184, 599, 600, -1, 602, -1, 604, 605, -1, -1, -1, 609, 610, 1040, -1, -1, -1, -1, -1, -1, -1, -1, 701, 702, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1433, -1, 1435, -1, -1, -1, -1, -1, 891, -1, -1, -1, -1, -1, 1074, -1, -1, -1, -1, 1079, -1, -1, -1, -1, 736, -1, -1, 1087, 740, 741, -1, -1, -1, -1, -1, -1, -1, 1470, -1, 1472, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 470, -1, -1, 937, -1, -1, -1, -1, -1, -1, 1121, -1, -1, -1, -1, 1499, -1, -1, -1, -1, 783, 1132, -1, -1, 1135, -1, 1137, -1, -1, -1, -1, -1, -1, -1, -1, 969, 799, -1, 801, 509, -1, 1152, 1153, -1, -1, -1, -1, 981, 811, -1, -1, 521, -1, -1, -1, -1, -1, 527, -1, -1, 530, 1172, -1, 745, 746, 7, -1, -1, 10, 11, 12, 13, 14, 543, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1020, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 573, -1, -1, -1, 1218, -1, -1, 580, -1, -1, -1, 584, 1226, -1, -1, -1, 882, -1, -1, -1, -1, 66, 67, 889, 890, -1, 892, 72, -1, -1, 896, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 917, 918, -1, -1, -1, -1, 630, -1, 1096, -1, -1, -1, -1, -1, 638, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, 1296, -1, 1298, -1, 952, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1314, -1, 1316, -1, -1, 971, 972, -1, -1, -1, -1, 896, -1, -1, -1, 981, 901, 1331, 1155, 1156, -1, 987, 988, -1, 990, 991, 992, -1, -1, -1, -1, -1, 1346, 1347, -1, -1, 1002, 1003, -1, -1, -1, 714, -1, 1357, -1, -1, 1360, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 736, -1, 738, -1, -1, 1382, -1, -1, -1, -1, -1, -1, 748, -1, 1391, -1, -1, 1394, 754, 1396, 1397, 1398, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1062, -1, 1064, -1, -1, -1, -1, 1069, -1, -1, -1, -1, -1, -1, -1, -1, 1078, -1, -1, -1, -1, -1, -1, -1, -1, 794, 795, 1437, -1, 1439, -1, 1441, -1, -1, -1, -1, -1, -1, -1, 1101, 1102, 810, -1, -1, -1, -1, -1, 1457, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1125, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1056, -1, -1, -1, -1, 849, -1, -1, -1, 853, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 882, -1, -1, -1, -1, 39, -1, 889, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1363, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1202, -1, -1, -1, -1, -1, 67, 1380, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 929, 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, 956, 30, 31, 32, -1, 961, 1255, 1256, 964, -1, 39, 119, 120, -1, -1, -1, 1184, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 984, -1, -1, -1, 1452, 1453, -1, -1, -1, -1, 67, 995, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, 1015, -1, 1017, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1032, 1033, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, 1052, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1376, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1106, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, 1125, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1140, 1141, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 113, 30, 31, 32, 1465, -1, 119, 120, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1489, 1490, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, 1514, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 112, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, 1282, 61, 62, 1285, 64, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, -1, 134, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, -1, -1, 111, -1, 113, -1, -1, 85, 86, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, 134, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1499, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, 117, -1, 119, 120, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 113, -1, 39, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 112, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 113, -1, -1, -1, -1, -1, 119, 120, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, 40, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 113, -1, -1, -1, -1, -1, 119, 120, 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, 113, 30, 31, 32, 117, -1, 119, 120, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, -1, -1, 111, 112, 113, -1, -1, 85, 86, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 113, 30, 31, 32, -1, -1, 119, 120, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 113, 30, 31, 32, 117, -1, 119, 120, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 113, 30, 31, 32, 117, -1, 119, 120, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, 111, -1, 113, -1, -1, 85, 86, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 113, 30, 31, 32, -1, -1, 119, 120, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 113, 30, 31, 32, -1, -1, 119, 120, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, 113, -1, -1, -1, -1, -1, 119, 120, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 113, 30, 31, 32, -1, -1, 119, 120, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, 37, 38, -1, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, 113, 72, -1, -1, -1, 76, 119, 120, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, 37, 38, 129, 40, 41, -1, 43, 134, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, -1, -1, 129, -1, -1, -1, -1, 134, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, 98, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, 37, 38, 129, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, -1, -1, 37, 38, 129, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, 129, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, 115, 116, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, 116, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 85, 86, -1, 88, 89, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, 113, -1, -1, -1, -1, -1, 119, 120, 121, 122, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, -1, -1, 85, 86, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, 34, 35, 67, -1, 69, 39, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 85, 86, 111, 113, 119, 120, 139, 142, 154, 203, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 236, 237, 238, 239, 240, 241, 242, 244, 245, 246, 247, 248, 249, 251, 259, 260, 287, 288, 289, 297, 300, 306, 307, 309, 311, 312, 318, 323, 327, 328, 329, 330, 331, 332, 333, 334, 354, 371, 372, 373, 374, 72, 141, 142, 154, 220, 222, 230, 232, 241, 245, 247, 288, 81, 111, 316, 317, 318, 316, 316, 72, 74, 75, 76, 140, 141, 277, 278, 298, 299, 74, 75, 278, 111, 309, 11, 204, 111, 154, 323, 328, 329, 330, 332, 333, 334, 114, 136, 223, 230, 232, 327, 331, 370, 371, 374, 375, 137, 109, 133, 281, 116, 137, 178, 74, 75, 139, 276, 137, 137, 137, 118, 137, 74, 75, 111, 154, 313, 322, 323, 324, 325, 326, 327, 331, 335, 336, 337, 338, 339, 345, 3, 28, 78, 243, 3, 5, 74, 113, 154, 222, 233, 237, 239, 248, 289, 327, 331, 374, 220, 222, 232, 241, 245, 247, 288, 327, 331, 33, 238, 238, 233, 239, 137, 238, 233, 238, 233, 75, 111, 116, 278, 289, 116, 278, 238, 233, 118, 137, 137, 0, 136, 111, 178, 316, 316, 136, 113, 230, 232, 372, 276, 276, 133, 232, 111, 154, 313, 323, 327, 113, 154, 374, 310, 235, 318, 111, 294, 111, 111, 51, 111, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 83, 84, 88, 89, 111, 113, 121, 122, 123, 124, 138, 142, 143, 144, 145, 146, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 169, 172, 230, 280, 296, 370, 375, 232, 112, 112, 112, 112, 112, 112, 112, 113, 230, 354, 372, 113, 119, 154, 169, 222, 223, 229, 232, 236, 237, 241, 244, 245, 247, 266, 267, 271, 272, 273, 274, 288, 354, 366, 367, 368, 369, 374, 375, 111, 327, 331, 374, 111, 118, 134, 113, 116, 154, 169, 282, 282, 117, 136, 118, 134, 111, 118, 134, 118, 134, 118, 134, 316, 134, 323, 324, 325, 326, 336, 337, 338, 339, 232, 322, 335, 64, 315, 113, 316, 353, 354, 316, 316, 178, 136, 111, 316, 353, 316, 316, 232, 313, 111, 111, 231, 232, 230, 232, 136, 230, 370, 375, 178, 136, 276, 281, 222, 237, 327, 331, 178, 136, 298, 232, 241, 134, 232, 232, 296, 252, 250, 262, 278, 261, 232, 298, 134, 134, 309, 136, 141, 275, 3, 137, 212, 213, 227, 229, 232, 136, 315, 111, 315, 169, 323, 232, 111, 136, 276, 116, 33, 34, 35, 230, 290, 291, 293, 136, 130, 133, 295, 136, 233, 238, 239, 276, 319, 320, 321, 111, 143, 111, 153, 111, 153, 156, 111, 153, 111, 111, 153, 153, 113, 169, 174, 178, 230, 279, 370, 374, 136, 81, 83, 87, 88, 89, 111, 113, 115, 116, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 133, 171, 156, 156, 119, 125, 126, 121, 122, 90, 91, 92, 93, 127, 128, 94, 95, 120, 129, 130, 96, 97, 131, 111, 154, 349, 350, 351, 352, 353, 112, 118, 111, 353, 354, 111, 353, 354, 136, 230, 372, 114, 136, 137, 230, 232, 365, 366, 374, 375, 137, 111, 113, 154, 323, 340, 341, 342, 343, 344, 345, 346, 347, 348, 354, 355, 356, 357, 358, 359, 360, 154, 374, 232, 137, 137, 154, 230, 232, 367, 276, 230, 354, 367, 276, 136, 136, 136, 136, 72, 113, 115, 142, 278, 282, 283, 284, 285, 286, 136, 136, 136, 136, 136, 136, 313, 112, 112, 112, 112, 112, 112, 112, 322, 335, 111, 281, 114, 212, 136, 313, 174, 280, 174, 280, 313, 113, 212, 315, 178, 136, 212, 112, 40, 113, 117, 230, 253, 254, 255, 370, 116, 118, 376, 133, 263, 116, 232, 268, 269, 270, 273, 274, 112, 118, 178, 136, 119, 169, 136, 229, 232, 267, 366, 374, 307, 308, 111, 154, 340, 112, 118, 133, 377, 278, 290, 111, 116, 278, 280, 290, 112, 118, 111, 143, 112, 132, 279, 279, 279, 148, 169, 280, 279, 136, 112, 118, 112, 111, 154, 353, 361, 362, 363, 364, 112, 118, 169, 113, 141, 147, 148, 136, 113, 141, 147, 169, 156, 156, 156, 157, 157, 158, 158, 159, 159, 159, 159, 160, 160, 161, 162, 163, 164, 165, 132, 174, 136, 350, 351, 352, 232, 349, 316, 316, 169, 280, 136, 275, 230, 354, 367, 232, 236, 114, 374, 114, 111, 136, 323, 341, 342, 343, 346, 356, 357, 358, 114, 136, 232, 340, 344, 355, 111, 316, 359, 377, 316, 316, 377, 111, 316, 359, 316, 316, 316, 316, 354, 230, 365, 375, 276, 114, 118, 114, 118, 377, 230, 367, 377, 264, 265, 266, 267, 264, 276, 169, 136, 113, 278, 132, 118, 376, 282, 113, 132, 286, 29, 214, 215, 276, 264, 141, 313, 141, 315, 111, 353, 354, 111, 353, 354, 144, 354, 178, 268, 112, 112, 112, 112, 136, 178, 212, 178, 116, 254, 255, 136, 111, 132, 154, 256, 258, 322, 323, 335, 361, 118, 134, 118, 134, 278, 252, 278, 117, 167, 168, 262, 137, 137, 141, 227, 137, 137, 264, 111, 154, 374, 137, 117, 232, 291, 169, 292, 137, 136, 136, 111, 137, 112, 320, 174, 175, 132, 134, 113, 143, 205, 206, 207, 112, 118, 112, 112, 112, 112, 169, 362, 363, 364, 232, 361, 316, 316, 116, 156, 169, 170, 173, 118, 136, 112, 118, 169, 136, 117, 167, 132, 268, 112, 112, 112, 349, 268, 112, 230, 367, 113, 119, 154, 169, 169, 232, 346, 268, 112, 112, 112, 112, 112, 112, 112, 7, 232, 340, 344, 355, 136, 136, 377, 136, 136, 137, 137, 137, 137, 281, 167, 168, 169, 314, 136, 282, 284, 117, 136, 216, 278, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 72, 129, 175, 176, 177, 178, 179, 180, 182, 183, 195, 197, 198, 203, 217, 312, 29, 137, 133, 281, 136, 136, 112, 137, 178, 252, 134, 134, 323, 168, 232, 257, 258, 257, 278, 316, 117, 263, 376, 112, 118, 114, 114, 137, 232, 118, 377, 294, 112, 290, 220, 222, 230, 302, 303, 304, 305, 296, 112, 112, 132, 168, 111, 112, 132, 118, 141, 112, 112, 112, 361, 283, 118, 137, 173, 79, 82, 84, 141, 149, 150, 151, 148, 137, 149, 167, 137, 111, 353, 354, 137, 136, 137, 137, 137, 169, 112, 137, 111, 353, 354, 111, 359, 111, 359, 354, 231, 7, 119, 137, 169, 268, 268, 267, 271, 271, 272, 112, 118, 118, 112, 98, 124, 137, 137, 149, 282, 169, 118, 134, 217, 221, 232, 236, 111, 111, 176, 111, 111, 72, 134, 72, 134, 72, 119, 175, 111, 178, 170, 170, 132, 146, 134, 137, 136, 137, 216, 112, 169, 268, 268, 316, 112, 117, 256, 117, 136, 112, 136, 137, 313, 117, 136, 137, 137, 112, 116, 205, 114, 168, 134, 205, 207, 112, 111, 353, 354, 376, 170, 114, 137, 152, 113, 150, 152, 152, 118, 137, 87, 115, 114, 137, 112, 136, 112, 114, 114, 114, 137, 112, 136, 136, 136, 169, 169, 137, 114, 137, 137, 137, 137, 136, 136, 168, 168, 114, 114, 137, 278, 232, 174, 174, 47, 174, 136, 134, 134, 134, 174, 134, 174, 58, 59, 60, 199, 200, 201, 134, 63, 134, 316, 116, 180, 117, 134, 137, 137, 98, 273, 274, 112, 303, 118, 134, 118, 134, 117, 301, 132, 143, 112, 112, 132, 136, 117, 114, 83, 136, 150, 114, 113, 150, 113, 150, 114, 268, 114, 268, 268, 268, 137, 137, 114, 114, 112, 112, 114, 118, 98, 267, 98, 137, 114, 112, 112, 111, 112, 175, 196, 217, 134, 112, 111, 111, 178, 201, 58, 59, 169, 176, 147, 112, 112, 116, 136, 136, 302, 143, 208, 111, 134, 208, 268, 149, 136, 136, 137, 137, 137, 137, 114, 114, 136, 137, 114, 176, 44, 45, 116, 186, 187, 188, 174, 176, 137, 112, 175, 116, 188, 98, 136, 98, 136, 111, 111, 134, 117, 136, 276, 313, 117, 118, 132, 168, 112, 137, 137, 149, 149, 112, 112, 112, 112, 271, 42, 168, 184, 185, 314, 132, 136, 176, 186, 112, 134, 176, 134, 136, 112, 136, 112, 136, 98, 136, 98, 136, 134, 302, 143, 141, 209, 112, 134, 112, 114, 137, 137, 176, 98, 118, 132, 137, 210, 211, 217, 134, 175, 175, 210, 178, 202, 230, 370, 178, 202, 112, 136, 112, 136, 117, 112, 118, 114, 114, 168, 184, 187, 189, 190, 136, 134, 187, 191, 192, 137, 111, 154, 313, 361, 141, 137, 178, 202, 178, 202, 111, 134, 141, 176, 181, 117, 187, 217, 175, 56, 181, 194, 117, 187, 112, 232, 112, 137, 137, 296, 176, 181, 134, 193, 194, 181, 194, 178, 178, 112, 112, 112, 193, 137, 137, 178, 178, 137, 137 }; #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 305 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 309 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 316 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 317 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 318 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 7: /* Line 1806 of yacc.c */ #line 319 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 8: /* Line 1806 of yacc.c */ #line 320 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 18: /* Line 1806 of yacc.c */ #line 345 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].str) ); } break; case 19: /* Line 1806 of yacc.c */ #line 349 "parser.yy" { (yyval.str) = (yyvsp[(1) - (1)].tok); } break; case 20: /* Line 1806 of yacc.c */ #line 351 "parser.yy" { appendStr( (yyvsp[(1) - (2)].str), (yyvsp[(2) - (2)].tok) ); // append 2nd juxtaposed string to 1st delete (yyvsp[(2) - (2)].tok); // allocated by lexer (yyval.str) = (yyvsp[(1) - (2)].str); // conversion from tok to str } break; case 21: /* Line 1806 of yacc.c */ #line 362 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 22: /* Line 1806 of yacc.c */ #line 364 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 367 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 25: /* Line 1806 of yacc.c */ #line 369 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 379 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 28: /* Line 1806 of yacc.c */ #line 381 "parser.yy" { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 383 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 387 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (2)].en), build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) ) ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 389 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 33: /* Line 1806 of yacc.c */ #line 391 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 393 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 35: /* Line 1806 of yacc.c */ #line 395 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 36: /* Line 1806 of yacc.c */ #line 397 "parser.yy" { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); } break; case 37: /* Line 1806 of yacc.c */ #line 399 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined - use location of '{'? (yyval.en) = new ExpressionNode( new ConstructorExpr( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_last( (yyvsp[(3) - (4)].en) ) ) ) ); } break; case 39: /* Line 1806 of yacc.c */ #line 409 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 40: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = 0; } break; case 43: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 426 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (2)].tok) ) ), maybeMoveBuild( (yyvsp[(2) - (2)].en) ) ) ); } break; case 46: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (6)].tok) ) ), build_tuple( (yyvsp[(4) - (6)].en) ) ) ); } break; case 47: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild( (yyvsp[(3) - (3)].en) ) ) ); } break; case 48: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 49: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild( (yyvsp[(3) - (3)].en) ) ) ); } break; case 50: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 51: /* Line 1806 of yacc.c */ #line 441 "parser.yy" { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_constantInteger( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } break; case 52: /* Line 1806 of yacc.c */ #line 443 "parser.yy" { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_field_name_FLOATINGconstant( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } break; case 53: /* Line 1806 of yacc.c */ #line 445 "parser.yy" { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_varref( (yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } break; case 54: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { (yyval.en) = nullptr; } break; case 55: /* Line 1806 of yacc.c */ #line 452 "parser.yy" { Expression * constant = build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) ); (yyval.en) = (yyvsp[(1) - (2)].en) != nullptr ? new ExpressionNode( build_fieldSel( (yyvsp[(1) - (2)].en), constant ) ) : new ExpressionNode( constant ); } break; case 57: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 58: /* Line 1806 of yacc.c */ #line 465 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 59: /* Line 1806 of yacc.c */ #line 467 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 60: /* Line 1806 of yacc.c */ #line 472 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new ExpressionNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 61: /* Line 1806 of yacc.c */ #line 485 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 62: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 491 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 65: /* Line 1806 of yacc.c */ #line 493 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 66: /* Line 1806 of yacc.c */ #line 495 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 67: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 68: /* Line 1806 of yacc.c */ #line 499 "parser.yy" { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 69: /* Line 1806 of yacc.c */ #line 501 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 70: /* Line 1806 of yacc.c */ #line 503 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 71: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 511 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 73: /* Line 1806 of yacc.c */ #line 512 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 74: /* Line 1806 of yacc.c */ #line 518 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 75: /* Line 1806 of yacc.c */ #line 519 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 76: /* Line 1806 of yacc.c */ #line 520 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 77: /* Line 1806 of yacc.c */ #line 521 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 79: /* Line 1806 of yacc.c */ #line 527 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 535 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 537 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 83: /* Line 1806 of yacc.c */ #line 539 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 545 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 547 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 88: /* Line 1806 of yacc.c */ #line 553 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 89: /* Line 1806 of yacc.c */ #line 555 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 91: /* Line 1806 of yacc.c */ #line 561 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 92: /* Line 1806 of yacc.c */ #line 563 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 93: /* Line 1806 of yacc.c */ #line 565 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 94: /* Line 1806 of yacc.c */ #line 567 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 96: /* Line 1806 of yacc.c */ #line 573 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 97: /* Line 1806 of yacc.c */ #line 575 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 581 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 101: /* Line 1806 of yacc.c */ #line 587 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 593 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 105: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 107: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 109: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 110: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 113: /* Line 1806 of yacc.c */ #line 627 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 114: /* Line 1806 of yacc.c */ #line 634 "parser.yy" { (yyval.en) = nullptr; } break; case 116: /* Line 1806 of yacc.c */ #line 639 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 117: /* Line 1806 of yacc.c */ #line 640 "parser.yy" { (yyval.op) = OperKinds::AtAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 641 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 119: /* Line 1806 of yacc.c */ #line 642 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 120: /* Line 1806 of yacc.c */ #line 643 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 121: /* Line 1806 of yacc.c */ #line 644 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 122: /* Line 1806 of yacc.c */ #line 645 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 123: /* Line 1806 of yacc.c */ #line 646 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 124: /* Line 1806 of yacc.c */ #line 647 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 125: /* Line 1806 of yacc.c */ #line 648 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 126: /* Line 1806 of yacc.c */ #line 649 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 127: /* Line 1806 of yacc.c */ #line 650 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 128: /* Line 1806 of yacc.c */ #line 661 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( (yyvsp[(4) - (6)].en) ) ) ); } break; case 129: /* Line 1806 of yacc.c */ #line 663 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_last( (yyvsp[(5) - (7)].en) ) ) ); } break; case 131: /* Line 1806 of yacc.c */ #line 669 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 133: /* Line 1806 of yacc.c */ #line 675 "parser.yy" { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 134: /* Line 1806 of yacc.c */ #line 680 "parser.yy" { (yyval.en) = 0; } break; case 138: /* Line 1806 of yacc.c */ #line 689 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 144: /* Line 1806 of yacc.c */ #line 696 "parser.yy" { Token fn; fn.str = new string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( build_expr( new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_last( (yyvsp[(4) - (6)].en) ) ) ) ) ); } break; case 145: /* Line 1806 of yacc.c */ #line 706 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 146: /* Line 1806 of yacc.c */ #line 713 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); } break; case 147: /* Line 1806 of yacc.c */ #line 720 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); } break; case 149: /* Line 1806 of yacc.c */ #line 726 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 150: /* Line 1806 of yacc.c */ #line 731 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 151: /* Line 1806 of yacc.c */ #line 733 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 152: /* Line 1806 of yacc.c */ #line 739 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 155: /* Line 1806 of yacc.c */ #line 746 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 156: /* Line 1806 of yacc.c */ #line 751 "parser.yy" { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); } break; case 157: /* Line 1806 of yacc.c */ #line 757 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); } break; case 158: /* Line 1806 of yacc.c */ #line 759 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); } break; case 159: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 160: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); // The semantics of the declaration list is changed to include associated initialization, which is performed // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound // statement around the switch. Statements after the initial declaration list can never be executed, and // therefore, are removed from the grammar even though C allows it. The change also applies to choose // statement. (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 161: /* Line 1806 of yacc.c */ #line 773 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 162: /* Line 1806 of yacc.c */ #line 775 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 163: /* Line 1806 of yacc.c */ #line 785 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 164: /* Line 1806 of yacc.c */ #line 787 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 166: /* Line 1806 of yacc.c */ #line 792 "parser.yy" { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); } break; case 167: /* Line 1806 of yacc.c */ #line 794 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_last( new StatementNode( build_case( (yyvsp[(3) - (3)].en) ) ) ) ); } break; case 168: /* Line 1806 of yacc.c */ #line 798 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 169: /* Line 1806 of yacc.c */ #line 799 "parser.yy" { (yyval.sn) = new StatementNode( build_default() ); } break; case 171: /* Line 1806 of yacc.c */ #line 805 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); } break; case 172: /* Line 1806 of yacc.c */ #line 809 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 173: /* Line 1806 of yacc.c */ #line 814 "parser.yy" { (yyval.sn) = 0; } break; case 175: /* Line 1806 of yacc.c */ #line 820 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 176: /* Line 1806 of yacc.c */ #line 822 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(3) - (3)].sn) ) ) ) ) ); } break; case 177: /* Line 1806 of yacc.c */ #line 827 "parser.yy" { (yyval.sn) = 0; } break; case 179: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 180: /* Line 1806 of yacc.c */ #line 835 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(2) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 181: /* Line 1806 of yacc.c */ #line 837 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 182: /* Line 1806 of yacc.c */ #line 839 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_last( (yyvsp[(2) - (4)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(3) - (4)].sn)->set_last( (yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 183: /* Line 1806 of yacc.c */ #line 844 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 185: /* Line 1806 of yacc.c */ #line 850 "parser.yy" { (yyval.sn) = 0; } break; case 186: /* Line 1806 of yacc.c */ #line 852 "parser.yy" { (yyval.sn) = 0; } break; case 187: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 188: /* Line 1806 of yacc.c */ #line 859 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn), true ) ); } break; case 189: /* Line 1806 of yacc.c */ #line 861 "parser.yy" { (yyval.sn) = new StatementNode( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); } break; case 190: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 191: /* Line 1806 of yacc.c */ #line 868 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 192: /* Line 1806 of yacc.c */ #line 873 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); } break; case 193: /* Line 1806 of yacc.c */ #line 877 "parser.yy" { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); } break; case 194: /* Line 1806 of yacc.c */ #line 880 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Continue ) ); } break; case 195: /* Line 1806 of yacc.c */ #line 884 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); } break; case 196: /* Line 1806 of yacc.c */ #line 887 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 197: /* Line 1806 of yacc.c */ #line 891 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); } break; case 199: /* Line 1806 of yacc.c */ #line 895 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 897 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 899 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 904 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), (yyvsp[(3) - (3)].sn), 0 ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 906 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), 0, (yyvsp[(3) - (3)].sn) ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 908 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (4)].sn), (yyvsp[(3) - (4)].sn), (yyvsp[(4) - (4)].sn) ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 915 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 917 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 208: /* Line 1806 of yacc.c */ #line 919 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 921 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 210: /* Line 1806 of yacc.c */ #line 926 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 211: /* Line 1806 of yacc.c */ #line 928 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 212: /* Line 1806 of yacc.c */ #line 930 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 213: /* Line 1806 of yacc.c */ #line 932 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 214: /* Line 1806 of yacc.c */ #line 937 "parser.yy" { (yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) ); } break; case 216: /* Line 1806 of yacc.c */ #line 950 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 217: /* Line 1806 of yacc.c */ #line 955 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 218: /* Line 1806 of yacc.c */ #line 957 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 220: /* Line 1806 of yacc.c */ #line 966 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ) ); } break; case 221: /* Line 1806 of yacc.c */ #line 968 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ) ); } break; case 222: /* Line 1806 of yacc.c */ #line 970 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ) ); } break; case 223: /* Line 1806 of yacc.c */ #line 972 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].en) ) ); } break; case 224: /* Line 1806 of yacc.c */ #line 974 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].en), (yyvsp[(12) - (14)].label) ) ); } break; case 225: /* Line 1806 of yacc.c */ #line 979 "parser.yy" { (yyval.flag) = false; } break; case 226: /* Line 1806 of yacc.c */ #line 981 "parser.yy" { (yyval.flag) = true; } break; case 227: /* Line 1806 of yacc.c */ #line 986 "parser.yy" { (yyval.en) = 0; } break; case 230: /* Line 1806 of yacc.c */ #line 993 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 231: /* Line 1806 of yacc.c */ #line 998 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); } break; case 232: /* Line 1806 of yacc.c */ #line 1000 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); } break; case 233: /* Line 1806 of yacc.c */ #line 1005 "parser.yy" { (yyval.en) = 0; } break; case 234: /* Line 1806 of yacc.c */ #line 1007 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 235: /* Line 1806 of yacc.c */ #line 1009 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); } break; case 236: /* Line 1806 of yacc.c */ #line 1014 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->labels.push_back( *(yyvsp[(1) - (1)].tok) ); delete (yyvsp[(1) - (1)].tok); // allocated by lexer } break; case 237: /* Line 1806 of yacc.c */ #line 1019 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->labels.push_back( *(yyvsp[(3) - (3)].tok) ); delete (yyvsp[(3) - (3)].tok); // allocated by lexer } break; case 238: /* Line 1806 of yacc.c */ #line 1029 "parser.yy" { (yyval.decl) = 0; } break; case 241: /* Line 1806 of yacc.c */ #line 1036 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 242: /* Line 1806 of yacc.c */ #line 1041 "parser.yy" { (yyval.decl) = 0; } break; case 245: /* Line 1806 of yacc.c */ #line 1048 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 250: /* Line 1806 of yacc.c */ #line 1062 "parser.yy" {} break; case 251: /* Line 1806 of yacc.c */ #line 1063 "parser.yy" {} break; case 259: /* Line 1806 of yacc.c */ #line 1092 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1099 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 261: /* Line 1806 of yacc.c */ #line 1104 "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) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1114 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 263: /* Line 1806 of yacc.c */ #line 1119 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1124 "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 265: /* Line 1806 of yacc.c */ #line 1132 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 266: /* Line 1806 of yacc.c */ #line 1137 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 267: /* Line 1806 of yacc.c */ #line 1142 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 268: /* Line 1806 of yacc.c */ #line 1147 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1152 "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 270: /* Line 1806 of yacc.c */ #line 1183 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 271: /* Line 1806 of yacc.c */ #line 1187 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 272: /* Line 1806 of yacc.c */ #line 1194 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 273: /* Line 1806 of yacc.c */ #line 1198 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 274: /* Line 1806 of yacc.c */ #line 1203 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 275: /* Line 1806 of yacc.c */ #line 1208 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1213 "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 277: /* Line 1806 of yacc.c */ #line 1224 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 278: /* Line 1806 of yacc.c */ #line 1229 "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 279: /* Line 1806 of yacc.c */ #line 1234 "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 280: /* Line 1806 of yacc.c */ #line 1239 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 281: /* Line 1806 of yacc.c */ #line 1244 "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 282: /* Line 1806 of yacc.c */ #line 1253 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 283: /* Line 1806 of yacc.c */ #line 1258 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 288: /* Line 1806 of yacc.c */ #line 1275 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 289: /* Line 1806 of yacc.c */ #line 1280 "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 298: /* Line 1806 of yacc.c */ #line 1302 "parser.yy" { (yyval.decl) = 0; } break; case 301: /* Line 1806 of yacc.c */ #line 1314 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 304: /* Line 1806 of yacc.c */ #line 1325 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 305: /* Line 1806 of yacc.c */ #line 1327 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 306: /* Line 1806 of yacc.c */ #line 1329 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 307: /* Line 1806 of yacc.c */ #line 1331 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 308: /* Line 1806 of yacc.c */ #line 1333 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 309: /* Line 1806 of yacc.c */ #line 1335 "parser.yy" { typedefTable.enterScope(); } break; case 310: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 312: /* Line 1806 of yacc.c */ #line 1348 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1350 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 315: /* Line 1806 of yacc.c */ #line 1361 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 316: /* Line 1806 of yacc.c */ #line 1366 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 317: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 318: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 319: /* Line 1806 of yacc.c */ #line 1372 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 320: /* Line 1806 of yacc.c */ #line 1375 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isInline = true; } break; case 321: /* Line 1806 of yacc.c */ #line 1377 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 322: /* Line 1806 of yacc.c */ #line 1380 "parser.yy" { (yyval.decl) = new DeclarationNode; (yyval.decl)->isNoreturn = true; } break; case 323: /* Line 1806 of yacc.c */ #line 1382 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 324: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 325: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 326: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 327: /* Line 1806 of yacc.c */ #line 1393 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 328: /* Line 1806 of yacc.c */ #line 1395 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Long ); } break; case 329: /* Line 1806 of yacc.c */ #line 1397 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Short ); } break; case 330: /* Line 1806 of yacc.c */ #line 1399 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Signed ); } break; case 331: /* Line 1806 of yacc.c */ #line 1401 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); } break; case 332: /* Line 1806 of yacc.c */ #line 1403 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 333: /* Line 1806 of yacc.c */ #line 1405 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 334: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Complex ); } break; case 335: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); } break; case 336: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 338: /* Line 1806 of yacc.c */ #line 1418 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1420 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1422 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1424 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1430 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1439 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1441 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1446 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 349: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1450 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1452 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1460 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1468 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1470 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1476 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1480 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1485 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1487 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1489 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 368: /* Line 1806 of yacc.c */ #line 1499 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), nullptr, nullptr, (yyvsp[(3) - (4)].decl), true ); } break; case 369: /* Line 1806 of yacc.c */ #line 1501 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), nullptr, nullptr, false ); } break; case 370: /* Line 1806 of yacc.c */ #line 1506 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 371: /* Line 1806 of yacc.c */ #line 1508 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), nullptr, (yyvsp[(5) - (6)].decl), true ); } break; case 372: /* Line 1806 of yacc.c */ #line 1510 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), nullptr, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); } break; case 373: /* Line 1806 of yacc.c */ #line 1512 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 374: /* Line 1806 of yacc.c */ #line 1517 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 375: /* Line 1806 of yacc.c */ #line 1519 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 376: /* Line 1806 of yacc.c */ #line 1524 "parser.yy" { (yyval.decl) = 0; } break; case 377: /* Line 1806 of yacc.c */ #line 1526 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 379: /* Line 1806 of yacc.c */ #line 1532 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 381: /* Line 1806 of yacc.c */ #line 1535 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 383: /* Line 1806 of yacc.c */ #line 1545 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1547 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1549 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1554 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1556 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1561 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 389: /* Line 1806 of yacc.c */ #line 1563 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 390: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 391: /* Line 1806 of yacc.c */ #line 1569 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1575 "parser.yy" { (yyval.en) = 0; } break; case 394: /* Line 1806 of yacc.c */ #line 1577 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 395: /* Line 1806 of yacc.c */ #line 1582 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 397: /* Line 1806 of yacc.c */ #line 1591 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( nullptr, (yyvsp[(3) - (5)].decl) ); } break; case 398: /* Line 1806 of yacc.c */ #line 1593 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 399: /* Line 1806 of yacc.c */ #line 1598 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1600 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 401: /* Line 1806 of yacc.c */ #line 1605 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 402: /* Line 1806 of yacc.c */ #line 1607 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 403: /* Line 1806 of yacc.c */ #line 1612 "parser.yy" { (yyval.en) = 0; } break; case 404: /* Line 1806 of yacc.c */ #line 1614 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 405: /* Line 1806 of yacc.c */ #line 1621 "parser.yy" { (yyval.decl) = 0; } break; case 409: /* Line 1806 of yacc.c */ #line 1629 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 410: /* Line 1806 of yacc.c */ #line 1631 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 411: /* Line 1806 of yacc.c */ #line 1633 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 413: /* Line 1806 of yacc.c */ #line 1641 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 414: /* Line 1806 of yacc.c */ #line 1643 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 415: /* Line 1806 of yacc.c */ #line 1645 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 417: /* Line 1806 of yacc.c */ #line 1651 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 418: /* Line 1806 of yacc.c */ #line 1656 "parser.yy" { (yyval.decl) = 0; } break; case 421: /* Line 1806 of yacc.c */ #line 1663 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 424: /* Line 1806 of yacc.c */ #line 1670 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 425: /* Line 1806 of yacc.c */ #line 1672 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1681 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 428: /* Line 1806 of yacc.c */ #line 1684 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 429: /* Line 1806 of yacc.c */ #line 1686 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 436: /* Line 1806 of yacc.c */ #line 1702 "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 437: /* Line 1806 of yacc.c */ #line 1707 "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 439: /* Line 1806 of yacc.c */ #line 1716 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 440: /* Line 1806 of yacc.c */ #line 1725 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 441: /* Line 1806 of yacc.c */ #line 1727 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 453: /* Line 1806 of yacc.c */ #line 1752 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 457: /* Line 1806 of yacc.c */ #line 1760 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 458: /* Line 1806 of yacc.c */ #line 1765 "parser.yy" { (yyval.in) = 0; } break; case 459: /* Line 1806 of yacc.c */ #line 1767 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 460: /* Line 1806 of yacc.c */ #line 1769 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 461: /* Line 1806 of yacc.c */ #line 1773 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 462: /* Line 1806 of yacc.c */ #line 1774 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 463: /* Line 1806 of yacc.c */ #line 1779 "parser.yy" { (yyval.in) = 0; } break; case 465: /* Line 1806 of yacc.c */ #line 1781 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1782 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); } break; case 467: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_last( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 469: /* Line 1806 of yacc.c */ #line 1800 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1806 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); } break; case 472: /* Line 1806 of yacc.c */ #line 1812 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1815 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 474: /* Line 1806 of yacc.c */ #line 1817 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 475: /* Line 1806 of yacc.c */ #line 1819 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1821 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 478: /* Line 1806 of yacc.c */ #line 1845 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 479: /* Line 1806 of yacc.c */ #line 1847 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1849 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1855 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 483: /* Line 1806 of yacc.c */ #line 1857 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1862 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1868 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 487: /* Line 1806 of yacc.c */ #line 1873 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 488: /* Line 1806 of yacc.c */ #line 1875 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 490: /* Line 1806 of yacc.c */ #line 1881 "parser.yy" { (yyval.tclass) = DeclarationNode::Otype; } break; case 491: /* Line 1806 of yacc.c */ #line 1883 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 492: /* Line 1806 of yacc.c */ #line 1885 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 493: /* Line 1806 of yacc.c */ #line 1890 "parser.yy" { (yyval.decl) = 0; } break; case 494: /* Line 1806 of yacc.c */ #line 1892 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 495: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 496: /* Line 1806 of yacc.c */ #line 1902 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 497: /* Line 1806 of yacc.c */ #line 1904 "parser.yy" { (yyval.decl) = 0; } break; case 498: /* Line 1806 of yacc.c */ #line 1909 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1912 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); } break; case 501: /* Line 1806 of yacc.c */ #line 1914 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 502: /* Line 1806 of yacc.c */ #line 1919 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 503: /* Line 1806 of yacc.c */ #line 1921 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1923 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 505: /* Line 1806 of yacc.c */ #line 1928 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 506: /* Line 1806 of yacc.c */ #line 1930 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1935 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 508: /* Line 1806 of yacc.c */ #line 1940 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 509: /* Line 1806 of yacc.c */ #line 1948 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 ); } break; case 510: /* Line 1806 of yacc.c */ #line 1953 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 511: /* Line 1806 of yacc.c */ #line 1958 "parser.yy" { typedefTable.leaveTrait(); typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID ); (yyval.decl) = DeclarationNode::newTrait( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) ); } break; case 513: /* Line 1806 of yacc.c */ #line 1968 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 516: /* Line 1806 of yacc.c */ #line 1978 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 517: /* Line 1806 of yacc.c */ #line 1983 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 518: /* Line 1806 of yacc.c */ #line 1988 "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 519: /* Line 1806 of yacc.c */ #line 1996 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 520: /* Line 1806 of yacc.c */ #line 2001 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 521: /* Line 1806 of yacc.c */ #line 2011 "parser.yy" {} break; case 522: /* Line 1806 of yacc.c */ #line 2013 "parser.yy" { parseTree = parseTree != nullptr ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl); } break; case 524: /* Line 1806 of yacc.c */ #line 2019 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl) != nullptr ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 525: /* Line 1806 of yacc.c */ #line 2024 "parser.yy" { (yyval.decl) = 0; } break; case 529: /* Line 1806 of yacc.c */ #line 2032 "parser.yy" {} break; case 530: /* Line 1806 of yacc.c */ #line 2034 "parser.yy" { linkageStack.push( linkage ); // handle nested extern "C"/"Cforall" linkage = LinkageSpec::linkageCheck( (yyvsp[(2) - (2)].tok) ); } break; case 531: /* Line 1806 of yacc.c */ #line 2039 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 532: /* Line 1806 of yacc.c */ #line 2045 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 534: /* Line 1806 of yacc.c */ #line 2060 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 535: /* Line 1806 of yacc.c */ #line 2066 "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 536: /* Line 1806 of yacc.c */ #line 2075 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2081 "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 538: /* Line 1806 of yacc.c */ #line 2087 "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 539: /* Line 1806 of yacc.c */ #line 2093 "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 540: /* Line 1806 of yacc.c */ #line 2099 "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 541: /* Line 1806 of yacc.c */ #line 2107 "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 542: /* Line 1806 of yacc.c */ #line 2113 "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 543: /* Line 1806 of yacc.c */ #line 2121 "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 544: /* Line 1806 of yacc.c */ #line 2127 "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 548: /* Line 1806 of yacc.c */ #line 2142 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 550: /* Line 1806 of yacc.c */ #line 2147 "parser.yy" { delete (yyvsp[(3) - (5)].str); } break; case 551: /* Line 1806 of yacc.c */ #line 2152 "parser.yy" { (yyval.decl) = 0; } break; case 554: /* Line 1806 of yacc.c */ #line 2159 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 555: /* Line 1806 of yacc.c */ #line 2165 "parser.yy" { (yyval.decl) = 0; } break; case 560: /* Line 1806 of yacc.c */ #line 2176 "parser.yy" { delete (yyvsp[(3) - (4)].en); } break; case 561: /* Line 1806 of yacc.c */ #line 2180 "parser.yy" { delete (yyvsp[(1) - (1)].tok); } break; case 562: /* Line 1806 of yacc.c */ #line 2181 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 563: /* Line 1806 of yacc.c */ #line 2182 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 564: /* Line 1806 of yacc.c */ #line 2183 "parser.yy" { delete (yyvsp[(1) - (1)].decl); } break; case 565: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2221 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2223 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2228 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2233 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 571: /* Line 1806 of yacc.c */ #line 2238 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2240 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2242 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 574: /* Line 1806 of yacc.c */ #line 2247 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2249 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2251 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2253 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 578: /* Line 1806 of yacc.c */ #line 2258 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2260 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 580: /* Line 1806 of yacc.c */ #line 2269 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2272 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2277 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2279 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2281 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 586: /* Line 1806 of yacc.c */ #line 2286 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 587: /* Line 1806 of yacc.c */ #line 2288 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2290 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 589: /* Line 1806 of yacc.c */ #line 2295 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 595: /* Line 1806 of yacc.c */ #line 2314 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2316 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2318 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 598: /* Line 1806 of yacc.c */ #line 2323 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2325 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2327 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 601: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 604: /* Line 1806 of yacc.c */ #line 2351 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2362 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 610: /* Line 1806 of yacc.c */ #line 2367 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2369 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2371 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 613: /* Line 1806 of yacc.c */ #line 2376 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2378 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2382 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 617: /* Line 1806 of yacc.c */ #line 2387 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2389 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2391 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 620: /* Line 1806 of yacc.c */ #line 2401 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2404 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2406 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2411 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2413 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2415 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 627: /* Line 1806 of yacc.c */ #line 2420 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2422 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2424 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2426 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 631: /* Line 1806 of yacc.c */ #line 2431 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2433 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2435 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 634: /* Line 1806 of yacc.c */ #line 2466 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2469 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2471 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2476 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2481 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2489 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2491 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2493 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 643: /* Line 1806 of yacc.c */ #line 2498 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2505 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2507 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2522 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 649: /* Line 1806 of yacc.c */ #line 2524 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2529 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 651: /* Line 1806 of yacc.c */ #line 2531 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2533 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2537 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 656: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 657: /* Line 1806 of yacc.c */ #line 2545 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 658: /* Line 1806 of yacc.c */ #line 2547 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 659: /* Line 1806 of yacc.c */ #line 2552 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 660: /* Line 1806 of yacc.c */ #line 2554 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 661: /* Line 1806 of yacc.c */ #line 2556 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 662: /* Line 1806 of yacc.c */ #line 2562 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 663: /* Line 1806 of yacc.c */ #line 2564 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2570 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 666: /* Line 1806 of yacc.c */ #line 2572 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 667: /* Line 1806 of yacc.c */ #line 2574 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2576 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2591 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 671: /* Line 1806 of yacc.c */ #line 2593 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2598 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 673: /* Line 1806 of yacc.c */ #line 2600 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2602 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2604 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 676: /* Line 1806 of yacc.c */ #line 2606 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 678: /* Line 1806 of yacc.c */ #line 2612 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2614 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 680: /* Line 1806 of yacc.c */ #line 2616 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 681: /* Line 1806 of yacc.c */ #line 2621 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 682: /* Line 1806 of yacc.c */ #line 2623 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 683: /* Line 1806 of yacc.c */ #line 2625 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 685: /* Line 1806 of yacc.c */ #line 2632 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 687: /* Line 1806 of yacc.c */ #line 2643 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 688: /* Line 1806 of yacc.c */ #line 2646 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2648 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 690: /* Line 1806 of yacc.c */ #line 2651 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 691: /* Line 1806 of yacc.c */ #line 2653 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 692: /* Line 1806 of yacc.c */ #line 2655 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 694: /* Line 1806 of yacc.c */ #line 2669 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2671 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2676 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 697: /* Line 1806 of yacc.c */ #line 2678 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2680 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2682 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2684 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 702: /* Line 1806 of yacc.c */ #line 2690 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 703: /* Line 1806 of yacc.c */ #line 2692 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2694 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 705: /* Line 1806 of yacc.c */ #line 2699 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2701 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 709: /* Line 1806 of yacc.c */ #line 2711 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2721 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2723 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2725 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2727 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2729 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2731 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2738 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2740 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2742 "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 2744 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2746 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2749 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2751 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2753 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2755 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2757 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 728: /* Line 1806 of yacc.c */ #line 2762 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 729: /* Line 1806 of yacc.c */ #line 2764 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 730: /* Line 1806 of yacc.c */ #line 2769 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 731: /* Line 1806 of yacc.c */ #line 2771 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 733: /* Line 1806 of yacc.c */ #line 2798 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2809 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2811 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2813 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2815 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2817 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2819 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2826 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2828 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2830 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2832 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2834 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2836 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 749: /* Line 1806 of yacc.c */ #line 2841 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 750: /* Line 1806 of yacc.c */ #line 2848 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 751: /* Line 1806 of yacc.c */ #line 2850 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 754: /* Line 1806 of yacc.c */ #line 2874 "parser.yy" { (yyval.en) = 0; } break; case 755: /* Line 1806 of yacc.c */ #line 2876 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9093 "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 2879 "parser.yy" // ----end of grammar---- extern char *yytext; void yyerror( const char * ) { cout << "Error "; if ( yyfilename ) { cout << "in file " << yyfilename << " "; } // if cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //