/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 44 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile extern char *yytext; #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" DeclarationNode *theTree = 0; // the resulting parse tree LinkageSpec::Type linkage = LinkageSpec::Cforall; std::stack< LinkageSpec::Type > linkageStack; TypedefTable typedefTable; /* Line 268 of yacc.c */ #line 94 "Parser/parser.cc" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 1 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { TYPEDEF = 258, AUTO = 259, EXTERN = 260, REGISTER = 261, STATIC = 262, INLINE = 263, FORTRAN = 264, CONST = 265, VOLATILE = 266, RESTRICT = 267, FORALL = 268, LVALUE = 269, VOID = 270, CHAR = 271, SHORT = 272, INT = 273, LONG = 274, FLOAT = 275, DOUBLE = 276, SIGNED = 277, UNSIGNED = 278, VALIST = 279, BOOL = 280, COMPLEX = 281, IMAGINARY = 282, TYPEOF = 283, LABEL = 284, ENUM = 285, STRUCT = 286, UNION = 287, OTYPE = 288, FTYPE = 289, DTYPE = 290, TRAIT = 291, SIZEOF = 292, OFFSETOF = 293, ATTRIBUTE = 294, EXTENSION = 295, IF = 296, ELSE = 297, SWITCH = 298, CASE = 299, DEFAULT = 300, DO = 301, WHILE = 302, FOR = 303, BREAK = 304, CONTINUE = 305, GOTO = 306, RETURN = 307, CHOOSE = 308, DISABLE = 309, ENABLE = 310, FALLTHRU = 311, TRY = 312, CATCH = 313, CATCHRESUME = 314, FINALLY = 315, THROW = 316, THROWRESUME = 317, AT = 318, ASM = 319, ALIGNAS = 320, ALIGNOF = 321, ATOMIC = 322, GENERIC = 323, NORETURN = 324, STATICASSERT = 325, THREADLOCAL = 326, IDENTIFIER = 327, QUOTED_IDENTIFIER = 328, TYPEDEFname = 329, TYPEGENname = 330, ATTR_IDENTIFIER = 331, ATTR_TYPEDEFname = 332, ATTR_TYPEGENname = 333, INTEGERconstant = 334, FLOATINGconstant = 335, CHARACTERconstant = 336, STRINGliteral = 337, ZERO = 338, ONE = 339, ARROW = 340, ICR = 341, DECR = 342, LS = 343, RS = 344, LE = 345, GE = 346, EQ = 347, NE = 348, ANDAND = 349, OROR = 350, ELLIPSIS = 351, MULTassign = 352, DIVassign = 353, MODassign = 354, PLUSassign = 355, MINUSassign = 356, LSassign = 357, RSassign = 358, ANDassign = 359, ERassign = 360, ORassign = 361, ATassign = 362, THEN = 363 }; #endif /* Tokens. */ #define TYPEDEF 258 #define AUTO 259 #define EXTERN 260 #define REGISTER 261 #define STATIC 262 #define INLINE 263 #define FORTRAN 264 #define CONST 265 #define VOLATILE 266 #define RESTRICT 267 #define FORALL 268 #define LVALUE 269 #define VOID 270 #define CHAR 271 #define SHORT 272 #define INT 273 #define LONG 274 #define FLOAT 275 #define DOUBLE 276 #define SIGNED 277 #define UNSIGNED 278 #define VALIST 279 #define BOOL 280 #define COMPLEX 281 #define IMAGINARY 282 #define TYPEOF 283 #define LABEL 284 #define ENUM 285 #define STRUCT 286 #define UNION 287 #define OTYPE 288 #define FTYPE 289 #define DTYPE 290 #define TRAIT 291 #define SIZEOF 292 #define OFFSETOF 293 #define ATTRIBUTE 294 #define EXTENSION 295 #define IF 296 #define ELSE 297 #define SWITCH 298 #define CASE 299 #define DEFAULT 300 #define DO 301 #define WHILE 302 #define FOR 303 #define BREAK 304 #define CONTINUE 305 #define GOTO 306 #define RETURN 307 #define CHOOSE 308 #define DISABLE 309 #define ENABLE 310 #define FALLTHRU 311 #define TRY 312 #define CATCH 313 #define CATCHRESUME 314 #define FINALLY 315 #define THROW 316 #define THROWRESUME 317 #define AT 318 #define ASM 319 #define ALIGNAS 320 #define ALIGNOF 321 #define ATOMIC 322 #define GENERIC 323 #define NORETURN 324 #define STATICASSERT 325 #define THREADLOCAL 326 #define IDENTIFIER 327 #define QUOTED_IDENTIFIER 328 #define TYPEDEFname 329 #define TYPEGENname 330 #define ATTR_IDENTIFIER 331 #define ATTR_TYPEDEFname 332 #define ATTR_TYPEGENname 333 #define INTEGERconstant 334 #define FLOATINGconstant 335 #define CHARACTERconstant 336 #define STRINGliteral 337 #define ZERO 338 #define ONE 339 #define ARROW 340 #define ICR 341 #define DECR 342 #define LS 343 #define RS 344 #define LE 345 #define GE 346 #define EQ 347 #define NE 348 #define ANDAND 349 #define OROR 350 #define ELLIPSIS 351 #define MULTassign 352 #define DIVassign 353 #define MODassign 354 #define PLUSassign 355 #define MINUSassign 356 #define LSassign 357 #define RSassign 358 #define ANDassign 359 #define ERassign 360 #define ORassign 361 #define ATassign 362 #define THEN 363 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 112 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantNode *constant; LabelNode *label; InitializerNode *in; bool flag; /* Line 293 of yacc.c */ #line 362 "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 374 "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 11449 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 240 /* YYNRULES -- Number of rules. */ #define YYNRULES 754 /* YYNRULES -- Number of states. */ #define YYNSTATES 1581 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 363 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 118, 2, 2, 2, 125, 120, 2, 109, 110, 119, 121, 116, 122, 113, 124, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 117, 132, 126, 131, 127, 130, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 111, 2, 112, 128, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 114, 129, 115, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 34, 36, 38, 42, 46, 48, 55, 60, 64, 72, 76, 84, 87, 90, 98, 103, 105, 109, 110, 112, 116, 124, 134, 136, 140, 142, 146, 154, 158, 166, 168, 170, 172, 175, 178, 181, 184, 187, 190, 193, 198, 205, 207, 212, 217, 220, 225, 228, 230, 232, 234, 236, 238, 243, 248, 250, 254, 258, 262, 264, 268, 272, 274, 278, 282, 284, 288, 292, 296, 300, 302, 306, 310, 312, 316, 318, 322, 324, 328, 330, 334, 336, 340, 342, 348, 353, 359, 361, 363, 367, 371, 374, 375, 377, 380, 386, 393, 401, 403, 407, 409, 411, 413, 415, 417, 419, 421, 423, 425, 427, 429, 433, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 459, 464, 467, 475, 477, 481, 483, 486, 488, 491, 493, 496, 499, 505, 513, 519, 529, 535, 545, 547, 551, 553, 555, 559, 563, 566, 568, 571, 574, 575, 577, 580, 584, 585, 587, 590, 594, 598, 603, 604, 606, 608, 611, 617, 625, 632, 639, 644, 648, 653, 656, 660, 663, 667, 671, 675, 679, 685, 689, 693, 698, 700, 706, 713, 719, 726, 736, 747, 757, 768, 771, 773, 776, 779, 782, 784, 791, 800, 811, 824, 839, 840, 842, 843, 845, 847, 851, 856, 864, 865, 867, 871, 873, 877, 879, 881, 883, 887, 889, 891, 893, 897, 898, 900, 904, 909, 911, 915, 917, 919, 923, 927, 931, 935, 939, 942, 946, 953, 957, 961, 966, 968, 971, 974, 978, 984, 993, 1001, 1009, 1015, 1025, 1028, 1031, 1037, 1041, 1047, 1052, 1056, 1061, 1066, 1074, 1078, 1082, 1086, 1090, 1095, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1119, 1121, 1123, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1141, 1147, 1149, 1152, 1156, 1158, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1181, 1183, 1185, 1187, 1189, 1191, 1193, 1195, 1197, 1199, 1201, 1203, 1205, 1207, 1210, 1213, 1217, 1221, 1223, 1227, 1229, 1232, 1235, 1238, 1243, 1248, 1253, 1258, 1260, 1263, 1266, 1270, 1272, 1275, 1278, 1280, 1283, 1286, 1290, 1292, 1295, 1298, 1300, 1302, 1307, 1310, 1311, 1318, 1326, 1329, 1332, 1335, 1337, 1340, 1343, 1347, 1350, 1354, 1356, 1359, 1363, 1366, 1369, 1374, 1375, 1377, 1380, 1383, 1385, 1386, 1388, 1391, 1394, 1400, 1403, 1404, 1412, 1415, 1420, 1421, 1424, 1425, 1427, 1429, 1431, 1437, 1443, 1449, 1451, 1457, 1463, 1473, 1475, 1481, 1482, 1484, 1486, 1492, 1494, 1496, 1502, 1508, 1510, 1514, 1518, 1523, 1525, 1527, 1529, 1531, 1534, 1536, 1540, 1544, 1546, 1549, 1551, 1555, 1557, 1559, 1561, 1563, 1565, 1567, 1569, 1571, 1573, 1575, 1577, 1580, 1582, 1584, 1586, 1589, 1590, 1593, 1596, 1598, 1603, 1604, 1606, 1609, 1613, 1618, 1621, 1624, 1626, 1629, 1631, 1634, 1640, 1646, 1654, 1661, 1663, 1666, 1669, 1673, 1675, 1678, 1681, 1686, 1689, 1694, 1695, 1700, 1703, 1705, 1707, 1709, 1710, 1713, 1719, 1725, 1739, 1741, 1743, 1747, 1751, 1754, 1758, 1762, 1765, 1770, 1772, 1779, 1789, 1790, 1802, 1804, 1808, 1812, 1816, 1818, 1820, 1826, 1829, 1835, 1836, 1838, 1840, 1844, 1845, 1847, 1849, 1851, 1853, 1854, 1861, 1864, 1866, 1869, 1874, 1877, 1881, 1885, 1889, 1894, 1900, 1906, 1912, 1919, 1921, 1923, 1925, 1929, 1930, 1936, 1937, 1939, 1941, 1944, 1951, 1953, 1957, 1958, 1960, 1965, 1967, 1969, 1971, 1973, 1976, 1978, 1981, 1984, 1986, 1990, 1993, 1997, 2001, 2004, 2009, 2014, 2018, 2027, 2031, 2034, 2036, 2039, 2046, 2055, 2059, 2062, 2066, 2070, 2075, 2080, 2084, 2086, 2088, 2090, 2095, 2102, 2106, 2109, 2113, 2117, 2122, 2127, 2131, 2134, 2136, 2139, 2142, 2144, 2148, 2151, 2155, 2159, 2162, 2167, 2172, 2176, 2183, 2192, 2196, 2199, 2201, 2204, 2207, 2210, 2214, 2218, 2221, 2226, 2231, 2235, 2242, 2251, 2255, 2258, 2260, 2263, 2266, 2268, 2270, 2273, 2277, 2281, 2284, 2289, 2296, 2305, 2307, 2310, 2313, 2315, 2318, 2321, 2325, 2329, 2331, 2336, 2341, 2345, 2351, 2360, 2364, 2367, 2371, 2373, 2379, 2385, 2392, 2399, 2401, 2404, 2407, 2409, 2412, 2415, 2419, 2423, 2425, 2430, 2435, 2439, 2445, 2454, 2458, 2460, 2463, 2465, 2468, 2475, 2481, 2488, 2496, 2504, 2506, 2509, 2512, 2514, 2517, 2520, 2524, 2528, 2530, 2535, 2540, 2544, 2553, 2557, 2559, 2561, 2564, 2566, 2568, 2571, 2575, 2578, 2582, 2585, 2589, 2593, 2596, 2601, 2605, 2608, 2612, 2615, 2620, 2624, 2627, 2634, 2641, 2648, 2656, 2658, 2661, 2663, 2665, 2667, 2670, 2674, 2677, 2681, 2684, 2688, 2692, 2697, 2700, 2704, 2709, 2712, 2718, 2724, 2731, 2738, 2739, 2741, 2742 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 301, 0, -1, -1, -1, 79, -1, 80, -1, 81, -1, 72, -1, 76, -1, 140, -1, 72, -1, 76, -1, 72, -1, 140, -1, 83, -1, 84, -1, 82, -1, 141, 82, -1, 72, -1, 140, -1, 109, 168, 110, -1, 109, 172, 110, -1, 142, -1, 143, 111, 134, 163, 135, 112, -1, 143, 109, 144, 110, -1, 143, 113, 139, -1, 143, 113, 111, 134, 146, 135, 112, -1, 143, 85, 139, -1, 143, 85, 111, 134, 146, 135, 112, -1, 143, 86, -1, 143, 87, -1, 109, 274, 110, 114, 278, 371, 115, -1, 143, 114, 144, 115, -1, 145, -1, 144, 116, 145, -1, -1, 163, -1, 139, 117, 163, -1, 111, 134, 163, 135, 112, 117, 163, -1, 111, 134, 163, 116, 166, 135, 112, 117, 163, -1, 147, -1, 146, 116, 147, -1, 139, -1, 139, 113, 147, -1, 139, 113, 111, 134, 146, 135, 112, -1, 139, 85, 147, -1, 139, 85, 111, 134, 146, 135, 112, -1, 143, -1, 136, -1, 141, -1, 86, 148, -1, 87, 148, -1, 40, 150, -1, 149, 150, -1, 118, 150, -1, 119, 150, -1, 37, 148, -1, 37, 109, 274, 110, -1, 38, 109, 274, 116, 139, 110, -1, 76, -1, 76, 109, 275, 110, -1, 76, 109, 145, 110, -1, 66, 148, -1, 66, 109, 274, 110, -1, 94, 139, -1, 120, -1, 121, -1, 122, -1, 123, -1, 148, -1, 109, 274, 110, 150, -1, 109, 274, 110, 165, -1, 150, -1, 151, 119, 150, -1, 151, 124, 150, -1, 151, 125, 150, -1, 151, -1, 152, 121, 151, -1, 152, 122, 151, -1, 152, -1, 153, 88, 152, -1, 153, 89, 152, -1, 153, -1, 154, 126, 153, -1, 154, 127, 153, -1, 154, 90, 153, -1, 154, 91, 153, -1, 154, -1, 155, 92, 154, -1, 155, 93, 154, -1, 155, -1, 156, 120, 155, -1, 156, -1, 157, 128, 156, -1, 157, -1, 158, 129, 157, -1, 158, -1, 159, 94, 158, -1, 159, -1, 160, 95, 159, -1, 160, -1, 160, 130, 168, 117, 161, -1, 160, 130, 117, 161, -1, 160, 130, 168, 117, 165, -1, 161, -1, 161, -1, 148, 131, 163, -1, 148, 167, 163, -1, 165, 372, -1, -1, 163, -1, 111, 112, -1, 111, 134, 163, 135, 112, -1, 111, 134, 116, 166, 135, 112, -1, 111, 134, 163, 116, 166, 135, 112, -1, 164, -1, 166, 116, 164, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 163, -1, 168, 116, 163, -1, -1, 168, -1, 171, -1, 172, -1, 176, -1, 177, -1, 189, -1, 191, -1, 192, -1, 197, -1, 128, 143, 114, 144, 115, 132, -1, 139, 117, 311, 170, -1, 114, 115, -1, 114, 134, 134, 208, 173, 135, 115, -1, 174, -1, 173, 134, 174, -1, 211, -1, 40, 211, -1, 307, -1, 170, 135, -1, 170, -1, 175, 170, -1, 169, 132, -1, 41, 109, 168, 110, 170, -1, 41, 109, 168, 110, 170, 42, 170, -1, 43, 109, 168, 110, 182, -1, 43, 109, 168, 110, 114, 134, 204, 183, 115, -1, 53, 109, 168, 110, 182, -1, 53, 109, 168, 110, 114, 134, 204, 185, 115, -1, 162, -1, 162, 96, 162, -1, 309, -1, 178, -1, 179, 116, 178, -1, 44, 179, 117, -1, 45, 117, -1, 180, -1, 181, 180, -1, 181, 170, -1, -1, 184, -1, 181, 175, -1, 184, 181, 175, -1, -1, 186, -1, 181, 188, -1, 181, 175, 187, -1, 186, 181, 188, -1, 186, 181, 175, 187, -1, -1, 188, -1, 56, -1, 56, 132, -1, 47, 109, 168, 110, 170, -1, 46, 170, 47, 109, 168, 110, 132, -1, 48, 109, 134, 190, 110, 170, -1, 169, 135, 132, 169, 132, 169, -1, 211, 169, 132, 169, -1, 51, 139, 132, -1, 51, 119, 168, 132, -1, 50, 132, -1, 50, 139, 132, -1, 49, 132, -1, 49, 139, 132, -1, 52, 169, 132, -1, 61, 164, 132, -1, 62, 164, 132, -1, 62, 164, 63, 163, 132, -1, 57, 172, 193, -1, 57, 172, 195, -1, 57, 172, 193, 195, -1, 194, -1, 58, 109, 96, 110, 172, -1, 194, 58, 109, 96, 110, 172, -1, 59, 109, 96, 110, 172, -1, 194, 59, 109, 96, 110, 172, -1, 58, 109, 134, 134, 196, 135, 110, 172, 135, -1, 194, 58, 109, 134, 134, 196, 135, 110, 172, 135, -1, 59, 109, 134, 134, 196, 135, 110, 172, 135, -1, 194, 59, 109, 134, 134, 196, 135, 110, 172, 135, -1, 60, 172, -1, 224, -1, 224, 308, -1, 224, 356, -1, 365, 139, -1, 365, -1, 64, 198, 109, 141, 110, 132, -1, 64, 198, 109, 141, 117, 199, 110, 132, -1, 64, 198, 109, 141, 117, 199, 117, 199, 110, 132, -1, 64, 198, 109, 141, 117, 199, 117, 199, 117, 202, 110, 132, -1, 64, 198, 51, 109, 141, 117, 117, 199, 117, 202, 117, 203, 110, 132, -1, -1, 11, -1, -1, 200, -1, 201, -1, 200, 116, 201, -1, 141, 109, 162, 110, -1, 111, 162, 112, 141, 109, 162, 110, -1, -1, 141, -1, 202, 116, 141, -1, 139, -1, 203, 116, 139, -1, 135, -1, 205, -1, 211, -1, 205, 134, 211, -1, 135, -1, 207, -1, 221, -1, 207, 134, 221, -1, -1, 209, -1, 29, 210, 132, -1, 209, 29, 210, 132, -1, 273, -1, 210, 116, 273, -1, 212, -1, 221, -1, 213, 135, 132, -1, 218, 135, 132, -1, 215, 135, 132, -1, 292, 135, 132, -1, 295, 135, 132, -1, 214, 276, -1, 230, 214, 276, -1, 213, 135, 116, 134, 271, 276, -1, 366, 271, 310, -1, 369, 271, 310, -1, 226, 369, 271, 310, -1, 216, -1, 226, 216, -1, 230, 216, -1, 230, 226, 216, -1, 215, 135, 116, 134, 271, -1, 111, 112, 271, 109, 134, 259, 135, 110, -1, 369, 271, 109, 134, 259, 135, 110, -1, 217, 271, 109, 134, 259, 135, 110, -1, 111, 134, 261, 135, 112, -1, 111, 134, 261, 135, 116, 134, 262, 135, 112, -1, 3, 214, -1, 3, 216, -1, 218, 135, 116, 134, 139, -1, 3, 224, 308, -1, 219, 135, 116, 134, 308, -1, 226, 3, 224, 308, -1, 224, 3, 308, -1, 224, 3, 226, 308, -1, 3, 139, 131, 163, -1, 220, 135, 116, 134, 139, 131, 163, -1, 222, 135, 132, -1, 219, 135, 132, -1, 220, 135, 132, -1, 239, 135, 132, -1, 223, 308, 310, 276, -1, 222, 116, 311, 308, 310, 276, -1, 235, -1, 239, -1, 241, -1, 282, -1, 236, -1, 240, -1, 242, -1, 283, -1, -1, 226, -1, 227, -1, 226, 227, -1, 228, -1, 313, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 229, 285, 110, -1, 231, -1, 226, 231, -1, 230, 226, 231, -1, 232, -1, 231, 232, -1, 233, -1, 5, -1, 7, -1, 4, -1, 6, -1, 8, -1, 9, -1, 69, -1, 71, -1, 16, -1, 21, -1, 20, -1, 18, -1, 19, -1, 17, -1, 22, -1, 23, -1, 15, -1, 25, -1, 26, -1, 27, -1, 24, -1, 236, -1, 230, 236, -1, 235, 232, -1, 235, 232, 226, -1, 235, 232, 236, -1, 237, -1, 225, 238, 225, -1, 234, -1, 226, 234, -1, 237, 227, -1, 237, 234, -1, 28, 109, 275, 110, -1, 28, 109, 168, 110, -1, 78, 109, 275, 110, -1, 78, 109, 168, 110, -1, 240, -1, 230, 240, -1, 239, 232, -1, 239, 232, 226, -1, 243, -1, 226, 243, -1, 240, 227, -1, 242, -1, 230, 242, -1, 241, 232, -1, 241, 232, 226, -1, 74, -1, 226, 74, -1, 242, 227, -1, 244, -1, 255, -1, 246, 114, 247, 115, -1, 246, 273, -1, -1, 246, 273, 245, 114, 247, 115, -1, 246, 109, 291, 110, 114, 247, 115, -1, 246, 284, -1, 31, 311, -1, 32, 311, -1, 248, -1, 247, 248, -1, 249, 132, -1, 40, 249, 132, -1, 250, 132, -1, 40, 250, 132, -1, 365, -1, 365, 273, -1, 249, 116, 273, -1, 249, 116, -1, 224, 251, -1, 250, 116, 311, 251, -1, -1, 253, -1, 317, 252, -1, 330, 252, -1, 356, -1, -1, 253, -1, 117, 162, -1, 30, 311, -1, 254, 114, 257, 371, 115, -1, 254, 273, -1, -1, 254, 273, 256, 114, 257, 371, 115, -1, 273, 258, -1, 257, 116, 273, 258, -1, -1, 131, 162, -1, -1, 260, -1, 262, -1, 261, -1, 261, 135, 116, 134, 262, -1, 262, 135, 116, 134, 96, -1, 261, 135, 116, 134, 96, -1, 266, -1, 262, 135, 116, 134, 266, -1, 261, 135, 116, 134, 266, -1, 261, 135, 116, 134, 262, 135, 116, 134, 266, -1, 267, -1, 262, 135, 116, 134, 267, -1, -1, 264, -1, 265, -1, 265, 135, 116, 134, 96, -1, 269, -1, 268, -1, 265, 135, 116, 134, 269, -1, 265, 135, 116, 134, 268, -1, 268, -1, 361, 271, 372, -1, 369, 271, 372, -1, 226, 369, 271, 372, -1, 216, -1, 269, -1, 361, -1, 369, -1, 226, 369, -1, 370, -1, 223, 335, 372, -1, 223, 339, 372, -1, 223, -1, 223, 350, -1, 139, -1, 270, 116, 139, -1, 137, -1, 74, -1, 75, -1, 138, -1, 74, -1, 75, -1, 139, -1, 74, -1, 75, -1, 365, -1, 224, -1, 224, 356, -1, 365, -1, 370, -1, 224, -1, 224, 344, -1, -1, 131, 277, -1, 107, 277, -1, 163, -1, 114, 278, 371, 115, -1, -1, 277, -1, 279, 277, -1, 278, 116, 277, -1, 278, 116, 279, 277, -1, 280, 117, -1, 273, 117, -1, 281, -1, 280, 281, -1, 80, -1, 113, 273, -1, 111, 134, 163, 135, 112, -1, 111, 134, 309, 135, 112, -1, 111, 134, 162, 96, 162, 135, 112, -1, 113, 111, 134, 146, 135, 112, -1, 283, -1, 230, 283, -1, 282, 232, -1, 282, 232, 226, -1, 284, -1, 226, 284, -1, 283, 227, -1, 75, 109, 291, 110, -1, 286, 372, -1, 285, 116, 286, 372, -1, -1, 288, 273, 287, 289, -1, 224, 335, -1, 33, -1, 35, -1, 34, -1, -1, 289, 290, -1, 129, 273, 109, 291, 110, -1, 129, 114, 134, 297, 115, -1, 129, 109, 134, 285, 135, 110, 114, 134, 297, 115, 109, 291, 110, -1, 275, -1, 163, -1, 291, 116, 275, -1, 291, 116, 163, -1, 33, 293, -1, 231, 33, 293, -1, 292, 116, 293, -1, 294, 289, -1, 294, 289, 131, 275, -1, 273, -1, 272, 109, 134, 285, 135, 110, -1, 36, 273, 109, 134, 285, 135, 110, 114, 115, -1, -1, 36, 273, 109, 134, 285, 135, 110, 114, 296, 297, 115, -1, 298, -1, 297, 134, 298, -1, 299, 135, 132, -1, 300, 135, 132, -1, 214, -1, 216, -1, 299, 135, 116, 134, 271, -1, 224, 308, -1, 300, 135, 116, 134, 308, -1, -1, 302, -1, 304, -1, 302, 134, 304, -1, -1, 302, -1, 211, -1, 306, -1, 197, -1, -1, 5, 82, 305, 114, 303, 115, -1, 40, 304, -1, 307, -1, 322, 172, -1, 326, 134, 206, 172, -1, 215, 172, -1, 223, 322, 172, -1, 226, 322, 172, -1, 230, 322, 172, -1, 230, 226, 322, 172, -1, 223, 326, 134, 206, 172, -1, 226, 326, 134, 206, 172, -1, 230, 326, 134, 206, 172, -1, 230, 226, 326, 134, 206, 172, -1, 317, -1, 322, -1, 330, -1, 162, 123, 162, -1, -1, 64, 109, 141, 110, 311, -1, -1, 312, -1, 313, -1, 312, 313, -1, 39, 109, 109, 314, 110, 110, -1, 315, -1, 314, 116, 315, -1, -1, 316, -1, 316, 109, 169, 110, -1, 271, -1, 233, -1, 234, -1, 227, -1, 318, 311, -1, 319, -1, 320, 311, -1, 321, 311, -1, 137, -1, 109, 318, 110, -1, 119, 317, -1, 119, 226, 317, -1, 109, 319, 110, -1, 318, 348, -1, 109, 319, 110, 348, -1, 109, 320, 110, 349, -1, 109, 320, 110, -1, 109, 319, 110, 109, 134, 263, 135, 110, -1, 109, 321, 110, -1, 323, 311, -1, 324, -1, 325, 311, -1, 318, 109, 134, 263, 135, 110, -1, 109, 324, 110, 109, 134, 263, 135, 110, -1, 109, 323, 110, -1, 119, 322, -1, 119, 226, 322, -1, 109, 324, 110, -1, 109, 324, 110, 348, -1, 109, 325, 110, 349, -1, 109, 325, 110, -1, 327, -1, 328, -1, 329, -1, 318, 109, 270, 110, -1, 109, 328, 110, 109, 270, 110, -1, 109, 327, 110, -1, 119, 326, -1, 119, 226, 326, -1, 109, 328, 110, -1, 109, 328, 110, 348, -1, 109, 329, 110, 349, -1, 109, 329, 110, -1, 331, 311, -1, 332, -1, 333, 311, -1, 334, 311, -1, 340, -1, 109, 331, 110, -1, 119, 330, -1, 119, 226, 330, -1, 109, 332, 110, -1, 331, 348, -1, 109, 332, 110, 348, -1, 109, 333, 110, 349, -1, 109, 333, 110, -1, 331, 109, 134, 263, 135, 110, -1, 109, 332, 110, 109, 134, 263, 135, 110, -1, 109, 334, 110, -1, 318, 311, -1, 336, -1, 337, 311, -1, 338, 311, -1, 119, 335, -1, 119, 226, 335, -1, 109, 336, 110, -1, 318, 354, -1, 109, 336, 110, 348, -1, 109, 337, 110, 349, -1, 109, 337, 110, -1, 318, 109, 134, 263, 135, 110, -1, 109, 336, 110, 109, 134, 263, 135, 110, -1, 109, 338, 110, -1, 340, 311, -1, 341, -1, 342, 311, -1, 343, 311, -1, 74, -1, 75, -1, 119, 339, -1, 119, 226, 339, -1, 109, 341, 110, -1, 340, 354, -1, 109, 341, 110, 354, -1, 340, 109, 134, 263, 135, 110, -1, 109, 341, 110, 109, 134, 263, 135, 110, -1, 345, -1, 346, 311, -1, 347, 311, -1, 119, -1, 119, 226, -1, 119, 344, -1, 119, 226, 344, -1, 109, 345, 110, -1, 348, -1, 109, 345, 110, 348, -1, 109, 346, 110, 349, -1, 109, 346, 110, -1, 109, 134, 263, 135, 110, -1, 109, 345, 110, 109, 134, 263, 135, 110, -1, 109, 347, 110, -1, 111, 112, -1, 111, 112, 349, -1, 349, -1, 111, 134, 163, 135, 112, -1, 111, 134, 119, 135, 112, -1, 349, 111, 134, 163, 135, 112, -1, 349, 111, 134, 119, 135, 112, -1, 351, -1, 352, 311, -1, 353, 311, -1, 119, -1, 119, 226, -1, 119, 350, -1, 119, 226, 350, -1, 109, 351, 110, -1, 354, -1, 109, 351, 110, 354, -1, 109, 352, 110, 349, -1, 109, 352, 110, -1, 109, 134, 263, 135, 110, -1, 109, 351, 110, 109, 134, 263, 135, 110, -1, 109, 353, 110, -1, 355, -1, 355, 349, -1, 349, -1, 111, 112, -1, 111, 134, 226, 119, 135, 112, -1, 111, 134, 226, 135, 112, -1, 111, 134, 226, 163, 135, 112, -1, 111, 134, 7, 225, 163, 135, 112, -1, 111, 134, 226, 7, 163, 135, 112, -1, 357, -1, 358, 311, -1, 359, 311, -1, 119, -1, 119, 226, -1, 119, 356, -1, 119, 226, 356, -1, 109, 357, 110, -1, 348, -1, 109, 357, 110, 348, -1, 109, 358, 110, 349, -1, 109, 358, 110, -1, 109, 357, 110, 109, 134, 263, 135, 110, -1, 109, 359, 110, -1, 361, -1, 369, -1, 226, 369, -1, 362, -1, 363, -1, 119, 224, -1, 226, 119, 224, -1, 119, 370, -1, 226, 119, 370, -1, 119, 360, -1, 226, 119, 360, -1, 111, 112, 224, -1, 364, 224, -1, 111, 112, 349, 224, -1, 364, 349, 224, -1, 349, 224, -1, 111, 112, 362, -1, 364, 362, -1, 111, 112, 349, 362, -1, 364, 349, 362, -1, 349, 362, -1, 111, 134, 226, 119, 135, 112, -1, 111, 134, 226, 163, 135, 112, -1, 111, 134, 230, 163, 135, 112, -1, 111, 134, 230, 226, 163, 135, 112, -1, 369, -1, 226, 369, -1, 366, -1, 367, -1, 368, -1, 119, 224, -1, 226, 119, 224, -1, 119, 370, -1, 226, 119, 370, -1, 119, 365, -1, 226, 119, 365, -1, 111, 112, 224, -1, 111, 112, 349, 224, -1, 349, 224, -1, 111, 112, 367, -1, 111, 112, 349, 367, -1, 349, 367, -1, 111, 134, 262, 135, 112, -1, 111, 112, 109, 259, 110, -1, 369, 109, 134, 259, 135, 110, -1, 217, 109, 134, 259, 135, 110, -1, -1, 116, -1, -1, 131, 163, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 292, 292, 298, 307, 308, 309, 313, 314, 315, 319, 320, 324, 325, 329, 330, 334, 335, 341, 343, 345, 347, 352, 353, 359, 363, 365, 366, 368, 369, 371, 373, 375, 383, 384, 390, 391, 392, 397, 399, 404, 405, 409, 413, 415, 417, 419, 424, 427, 429, 431, 433, 435, 437, 439, 441, 447, 449, 451, 453, 455, 457, 459, 461, 463, 468, 469, 470, 471, 475, 476, 478, 483, 484, 486, 488, 493, 494, 496, 501, 502, 504, 509, 510, 512, 514, 516, 521, 522, 524, 529, 530, 535, 536, 541, 542, 547, 548, 553, 554, 559, 560, 562, 564, 569, 574, 575, 577, 579, 585, 586, 592, 594, 596, 598, 603, 604, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 622, 623, 629, 630, 636, 637, 638, 639, 640, 641, 642, 643, 644, 653, 660, 662, 672, 673, 678, 680, 682, 684, 688, 689, 694, 699, 702, 704, 706, 711, 713, 721, 722, 724, 728, 729, 734, 735, 740, 741, 745, 750, 751, 755, 757, 763, 764, 768, 770, 772, 774, 780, 781, 785, 786, 790, 792, 794, 799, 801, 806, 808, 812, 815, 819, 822, 826, 828, 832, 834, 841, 843, 845, 854, 856, 858, 860, 862, 867, 869, 871, 873, 878, 891, 892, 897, 899, 904, 908, 910, 912, 914, 916, 922, 923, 929, 930, 934, 935, 940, 942, 948, 949, 951, 956, 958, 965, 967, 971, 972, 977, 979, 983, 984, 988, 990, 994, 995, 999, 1000, 1004, 1005, 1020, 1021, 1022, 1023, 1024, 1028, 1033, 1040, 1050, 1055, 1060, 1068, 1073, 1078, 1083, 1088, 1096, 1118, 1123, 1130, 1132, 1139, 1144, 1149, 1160, 1165, 1170, 1175, 1180, 1189, 1194, 1202, 1203, 1204, 1205, 1211, 1216, 1224, 1225, 1226, 1227, 1231, 1232, 1233, 1234, 1239, 1240, 1249, 1250, 1255, 1256, 1261, 1263, 1265, 1267, 1269, 1272, 1271, 1283, 1284, 1286, 1296, 1297, 1302, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1325, 1327, 1329, 1331, 1333, 1335, 1337, 1339, 1341, 1343, 1345, 1347, 1349, 1355, 1356, 1358, 1360, 1362, 1367, 1368, 1374, 1375, 1377, 1379, 1384, 1386, 1388, 1390, 1395, 1396, 1398, 1400, 1405, 1406, 1408, 1413, 1414, 1416, 1418, 1423, 1425, 1427, 1432, 1433, 1437, 1439, 1445, 1444, 1448, 1450, 1455, 1457, 1462, 1464, 1469, 1470, 1472, 1473, 1478, 1479, 1481, 1483, 1488, 1490, 1496, 1497, 1499, 1502, 1505, 1510, 1511, 1516, 1521, 1525, 1527, 1533, 1532, 1539, 1541, 1547, 1548, 1556, 1557, 1561, 1562, 1563, 1565, 1567, 1574, 1575, 1577, 1579, 1584, 1585, 1591, 1592, 1596, 1597, 1602, 1603, 1604, 1606, 1614, 1615, 1617, 1620, 1622, 1626, 1627, 1628, 1630, 1632, 1636, 1641, 1649, 1650, 1659, 1661, 1666, 1667, 1668, 1672, 1673, 1674, 1678, 1679, 1680, 1684, 1685, 1686, 1691, 1692, 1693, 1694, 1700, 1701, 1703, 1708, 1709, 1714, 1715, 1716, 1717, 1718, 1733, 1734, 1739, 1740, 1748, 1750, 1752, 1755, 1757, 1759, 1782, 1783, 1785, 1787, 1792, 1793, 1795, 1800, 1805, 1806, 1812, 1811, 1815, 1819, 1821, 1823, 1829, 1830, 1835, 1840, 1842, 1847, 1849, 1850, 1852, 1857, 1859, 1861, 1866, 1868, 1873, 1878, 1886, 1892, 1891, 1905, 1906, 1911, 1912, 1916, 1921, 1926, 1934, 1939, 1950, 1951, 1962, 1963, 1969, 1970, 1974, 1975, 1976, 1979, 1978, 1989, 1994, 1999, 2005, 2014, 2020, 2026, 2032, 2038, 2046, 2052, 2060, 2066, 2075, 2076, 2077, 2081, 2085, 2087, 2092, 2093, 2097, 2098, 2103, 2109, 2110, 2113, 2115, 2116, 2120, 2121, 2122, 2123, 2157, 2159, 2160, 2162, 2167, 2172, 2177, 2179, 2181, 2186, 2188, 2190, 2192, 2197, 2199, 2209, 2211, 2212, 2217, 2219, 2221, 2226, 2228, 2230, 2235, 2237, 2239, 2248, 2249, 2250, 2254, 2256, 2258, 2263, 2265, 2267, 2272, 2274, 2276, 2291, 2293, 2294, 2296, 2301, 2302, 2307, 2309, 2311, 2316, 2318, 2320, 2322, 2327, 2329, 2331, 2341, 2343, 2344, 2346, 2351, 2353, 2355, 2360, 2362, 2364, 2366, 2371, 2373, 2375, 2406, 2408, 2409, 2411, 2416, 2421, 2429, 2431, 2433, 2438, 2440, 2445, 2447, 2461, 2462, 2464, 2469, 2471, 2473, 2475, 2477, 2482, 2483, 2485, 2487, 2492, 2494, 2496, 2502, 2504, 2506, 2510, 2512, 2514, 2516, 2530, 2531, 2533, 2538, 2540, 2542, 2544, 2546, 2551, 2552, 2554, 2556, 2561, 2563, 2565, 2571, 2572, 2574, 2583, 2586, 2588, 2591, 2593, 2595, 2608, 2609, 2611, 2616, 2618, 2620, 2622, 2624, 2629, 2630, 2632, 2634, 2639, 2641, 2649, 2650, 2651, 2656, 2657, 2661, 2663, 2665, 2667, 2669, 2671, 2678, 2680, 2682, 2684, 2686, 2688, 2690, 2692, 2694, 2696, 2701, 2703, 2705, 2710, 2736, 2737, 2739, 2743, 2744, 2748, 2750, 2752, 2754, 2756, 2758, 2765, 2767, 2769, 2771, 2773, 2775, 2780, 2785, 2787, 2789, 2807, 2809, 2814, 2815 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER", "STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL", "LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TRAIT", "SIZEOF", "OFFSETOF", "ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT", "DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE", "DISABLE", "ENABLE", "FALLTHRU", "TRY", "CATCH", "CATCHRESUME", "FINALLY", "THROW", "THROWRESUME", "AT", "ASM", "ALIGNAS", "ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT", "THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant", "STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "':'", "'!'", "'*'", "'&'", "'+'", "'-'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "unary_expression", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "tuple", "tuple_expression_list", "assignment_operator", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "storage_class_name", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "$@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", "type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 40, 41, 91, 93, 46, 123, 125, 44, 58, 33, 42, 38, 43, 45, 126, 47, 37, 60, 62, 94, 124, 63, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 133, 134, 135, 136, 136, 136, 137, 137, 137, 138, 138, 139, 139, 140, 140, 141, 141, 142, 142, 142, 142, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 144, 144, 145, 145, 145, 145, 145, 146, 146, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 149, 149, 150, 150, 150, 151, 151, 151, 151, 152, 152, 152, 153, 153, 153, 154, 154, 154, 154, 154, 155, 155, 155, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 161, 161, 162, 163, 163, 163, 163, 164, 164, 165, 165, 165, 165, 166, 166, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 168, 168, 169, 169, 170, 170, 170, 170, 170, 170, 170, 170, 170, 171, 172, 172, 173, 173, 174, 174, 174, 174, 175, 175, 176, 177, 177, 177, 177, 177, 177, 178, 178, 178, 179, 179, 180, 180, 181, 181, 182, 183, 183, 184, 184, 185, 185, 186, 186, 186, 186, 187, 187, 188, 188, 189, 189, 189, 190, 190, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 192, 192, 192, 193, 193, 193, 193, 193, 194, 194, 194, 194, 195, 196, 196, 196, 196, 196, 197, 197, 197, 197, 197, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 202, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 212, 212, 212, 213, 213, 213, 214, 214, 214, 215, 215, 215, 215, 215, 216, 216, 216, 217, 217, 218, 218, 218, 219, 219, 219, 219, 219, 220, 220, 221, 221, 221, 221, 222, 222, 223, 223, 223, 223, 224, 224, 224, 224, 225, 225, 226, 226, 227, 227, 228, 228, 228, 228, 228, 229, 228, 230, 230, 230, 231, 231, 232, 233, 233, 233, 233, 233, 233, 233, 233, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 235, 235, 235, 235, 235, 236, 236, 237, 237, 237, 237, 238, 238, 238, 238, 239, 239, 239, 239, 240, 240, 240, 241, 241, 241, 241, 242, 242, 242, 243, 243, 244, 244, 245, 244, 244, 244, 246, 246, 247, 247, 248, 248, 248, 248, 249, 249, 249, 249, 250, 250, 251, 251, 251, 251, 251, 252, 252, 253, 254, 255, 255, 256, 255, 257, 257, 258, 258, 259, 259, 260, 260, 260, 260, 260, 261, 261, 261, 261, 262, 262, 263, 263, 264, 264, 265, 265, 265, 265, 266, 266, 266, 266, 266, 267, 267, 267, 267, 267, 268, 268, 269, 269, 270, 270, 271, 271, 271, 272, 272, 272, 273, 273, 273, 274, 274, 274, 275, 275, 275, 275, 276, 276, 276, 277, 277, 278, 278, 278, 278, 278, 279, 279, 280, 280, 281, 281, 281, 281, 281, 281, 282, 282, 282, 282, 283, 283, 283, 284, 285, 285, 287, 286, 286, 288, 288, 288, 289, 289, 290, 290, 290, 291, 291, 291, 291, 292, 292, 292, 293, 293, 294, 294, 295, 296, 295, 297, 297, 298, 298, 299, 299, 299, 300, 300, 301, 301, 302, 302, 303, 303, 304, 304, 304, 305, 304, 304, 306, 306, 306, 307, 307, 307, 307, 307, 307, 307, 307, 307, 308, 308, 308, 309, 310, 310, 311, 311, 312, 312, 313, 314, 314, 315, 315, 315, 316, 316, 316, 316, 317, 317, 317, 317, 318, 318, 319, 319, 319, 320, 320, 320, 320, 321, 321, 322, 322, 322, 323, 323, 323, 324, 324, 324, 325, 325, 325, 326, 326, 326, 327, 327, 327, 328, 328, 328, 329, 329, 329, 330, 330, 330, 330, 331, 331, 332, 332, 332, 333, 333, 333, 333, 334, 334, 334, 335, 335, 335, 335, 336, 336, 336, 337, 337, 337, 337, 338, 338, 338, 339, 339, 339, 339, 340, 340, 341, 341, 341, 342, 342, 343, 343, 344, 344, 344, 345, 345, 345, 345, 345, 346, 346, 346, 346, 347, 347, 347, 348, 348, 348, 349, 349, 349, 349, 350, 350, 350, 351, 351, 351, 351, 351, 352, 352, 352, 352, 353, 353, 353, 354, 354, 354, 355, 355, 355, 355, 355, 355, 356, 356, 356, 357, 357, 357, 357, 357, 358, 358, 358, 358, 359, 359, 360, 360, 360, 361, 361, 362, 362, 362, 362, 362, 362, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 364, 364, 364, 364, 365, 365, 365, 366, 366, 367, 367, 367, 367, 367, 367, 368, 368, 368, 368, 368, 368, 369, 370, 370, 370, 371, 371, 372, 372 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 6, 4, 3, 7, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 3, 7, 9, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 4, 6, 1, 4, 4, 2, 4, 2, 1, 1, 1, 1, 1, 4, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 5, 1, 1, 3, 3, 2, 0, 1, 2, 5, 6, 7, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 1, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 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, 1, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 294, 294, 315, 313, 316, 314, 317, 318, 300, 302, 301, 0, 303, 329, 321, 326, 324, 325, 323, 322, 327, 328, 333, 330, 331, 332, 549, 549, 549, 0, 0, 0, 294, 220, 304, 319, 320, 7, 360, 0, 8, 14, 15, 0, 2, 294, 567, 9, 527, 525, 247, 3, 455, 3, 260, 0, 3, 3, 3, 248, 3, 0, 0, 0, 295, 296, 298, 294, 307, 310, 312, 341, 286, 334, 339, 287, 349, 288, 356, 353, 363, 0, 0, 364, 289, 475, 479, 3, 3, 0, 2, 521, 526, 531, 299, 0, 0, 549, 579, 549, 2, 590, 591, 592, 294, 0, 733, 734, 0, 12, 294, 0, 13, 270, 271, 0, 295, 290, 291, 292, 293, 528, 305, 393, 550, 551, 371, 372, 12, 446, 447, 11, 442, 445, 0, 505, 500, 491, 446, 447, 0, 0, 530, 221, 0, 294, 0, 0, 0, 0, 0, 0, 0, 0, 294, 294, 2, 0, 735, 295, 584, 596, 739, 732, 730, 737, 0, 0, 0, 254, 2, 0, 534, 440, 441, 439, 0, 0, 0, 0, 549, 0, 636, 637, 0, 0, 547, 543, 549, 564, 549, 549, 544, 2, 545, 549, 603, 549, 549, 606, 0, 0, 0, 294, 294, 313, 361, 2, 294, 261, 297, 308, 342, 354, 480, 0, 2, 0, 455, 262, 295, 335, 350, 357, 476, 0, 2, 0, 311, 336, 343, 344, 0, 351, 355, 358, 362, 447, 294, 294, 366, 370, 0, 395, 477, 481, 0, 0, 0, 1, 294, 2, 532, 578, 580, 294, 2, 743, 295, 746, 547, 547, 295, 0, 0, 0, 273, 549, 544, 2, 294, 0, 0, 294, 552, 2, 503, 2, 556, 0, 0, 0, 0, 0, 0, 18, 59, 4, 5, 6, 16, 0, 0, 0, 294, 2, 0, 294, 65, 66, 67, 68, 48, 19, 49, 22, 47, 69, 0, 72, 76, 79, 82, 87, 90, 92, 94, 96, 98, 100, 105, 497, 753, 453, 496, 0, 451, 452, 0, 568, 583, 586, 589, 595, 598, 601, 360, 0, 2, 741, 0, 294, 744, 2, 294, 3, 427, 0, 435, 295, 294, 307, 334, 287, 349, 356, 3, 3, 409, 413, 423, 428, 475, 294, 429, 708, 709, 294, 430, 432, 294, 2, 585, 597, 731, 2, 2, 249, 2, 460, 0, 458, 457, 456, 141, 2, 2, 251, 2, 2, 250, 2, 281, 2, 282, 0, 280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 569, 608, 0, 455, 2, 563, 572, 662, 565, 566, 535, 294, 2, 602, 611, 604, 605, 0, 276, 294, 294, 340, 295, 0, 295, 0, 294, 736, 740, 738, 536, 294, 547, 255, 263, 309, 0, 2, 537, 294, 501, 337, 338, 283, 352, 359, 0, 294, 2, 385, 294, 373, 0, 0, 379, 730, 0, 751, 400, 0, 478, 502, 252, 253, 522, 294, 437, 0, 294, 237, 0, 2, 239, 0, 295, 0, 257, 2, 258, 278, 0, 0, 2, 294, 547, 294, 488, 490, 489, 0, 0, 753, 0, 294, 0, 294, 492, 294, 562, 560, 561, 559, 0, 554, 557, 0, 0, 294, 56, 294, 69, 52, 294, 62, 294, 294, 50, 51, 64, 2, 127, 0, 0, 449, 0, 448, 111, 294, 54, 55, 17, 0, 29, 30, 35, 2, 0, 35, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 0, 0, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 2, 648, 454, 645, 549, 549, 653, 482, 294, 2, 587, 588, 0, 599, 600, 0, 2, 742, 745, 111, 294, 2, 294, 0, 710, 295, 714, 705, 706, 712, 0, 2, 2, 670, 549, 753, 619, 549, 549, 753, 549, 633, 549, 549, 684, 436, 667, 549, 549, 675, 682, 294, 431, 295, 0, 0, 294, 720, 295, 725, 753, 717, 294, 722, 753, 294, 294, 294, 0, 111, 0, 18, 5, 2, 0, 19, 0, 461, 751, 0, 0, 467, 241, 0, 294, 0, 0, 0, 547, 571, 575, 577, 607, 610, 614, 617, 570, 609, 0, 284, 660, 0, 294, 277, 0, 0, 0, 0, 275, 2, 0, 259, 538, 294, 0, 0, 0, 0, 294, 294, 0, 0, 694, 383, 386, 390, 549, 390, 699, 389, 691, 549, 549, 365, 374, 382, 375, 549, 377, 380, 294, 752, 0, 0, 398, 0, 295, 3, 416, 3, 420, 419, 593, 0, 533, 294, 3, 3, 294, 435, 295, 3, 429, 430, 2, 0, 0, 0, 487, 306, 294, 483, 485, 3, 2, 2, 0, 504, 3, 0, 556, 129, 0, 0, 222, 0, 0, 0, 2, 0, 0, 36, 0, 0, 111, 294, 20, 0, 21, 0, 694, 450, 0, 109, 3, 2, 27, 2, 0, 33, 0, 2, 25, 0, 106, 107, 73, 74, 75, 77, 78, 80, 81, 85, 86, 83, 84, 88, 89, 91, 93, 95, 97, 99, 0, 0, 754, 294, 0, 0, 0, 649, 650, 646, 647, 499, 498, 294, 0, 3, 294, 716, 294, 721, 295, 294, 294, 294, 664, 707, 663, 2, 294, 0, 0, 0, 0, 0, 0, 0, 0, 685, 0, 671, 622, 638, 672, 2, 618, 625, 433, 620, 621, 434, 2, 632, 641, 634, 635, 668, 669, 683, 711, 715, 713, 753, 268, 2, 747, 2, 424, 719, 724, 425, 0, 403, 3, 3, 3, 3, 455, 3, 0, 2, 470, 466, 752, 0, 462, 469, 2, 465, 468, 0, 294, 242, 264, 3, 272, 274, 0, 455, 2, 573, 574, 2, 612, 613, 0, 661, 539, 3, 346, 345, 348, 347, 294, 540, 0, 541, 294, 376, 378, 2, 0, 0, 0, 0, 104, 392, 695, 696, 387, 391, 388, 692, 693, 381, 385, 294, 400, 394, 401, 751, 0, 0, 438, 240, 0, 0, 3, 2, 670, 431, 0, 529, 0, 753, 491, 0, 294, 294, 294, 0, 553, 555, 130, 0, 0, 215, 0, 0, 0, 223, 224, 57, 0, 63, 294, 0, 61, 60, 0, 128, 695, 460, 70, 71, 110, 115, 3, 109, 0, 0, 0, 24, 35, 3, 0, 32, 102, 0, 3, 652, 656, 659, 651, 3, 594, 3, 718, 723, 2, 294, 3, 3, 295, 0, 3, 624, 628, 631, 640, 674, 678, 681, 294, 3, 623, 639, 673, 294, 294, 426, 294, 294, 748, 0, 0, 0, 0, 256, 0, 104, 0, 3, 3, 0, 463, 0, 459, 0, 0, 245, 294, 0, 0, 129, 0, 0, 0, 0, 0, 129, 0, 0, 109, 109, 2, 0, 0, 0, 3, 131, 132, 2, 143, 133, 134, 135, 136, 137, 138, 145, 147, 0, 0, 0, 285, 294, 294, 549, 0, 542, 294, 111, 698, 702, 704, 697, 384, 368, 399, 0, 581, 2, 666, 665, 0, 671, 2, 484, 486, 506, 3, 514, 515, 0, 2, 510, 3, 3, 0, 0, 558, 222, 0, 0, 0, 222, 0, 0, 3, 37, 751, 109, 0, 3, 663, 42, 3, 40, 3, 34, 0, 3, 101, 103, 0, 2, 654, 655, 0, 0, 294, 0, 0, 0, 3, 640, 0, 2, 626, 627, 2, 642, 2, 676, 677, 0, 0, 3, 0, 3, 3, 3, 3, 411, 410, 414, 2, 2, 750, 749, 112, 0, 0, 0, 0, 3, 464, 3, 0, 243, 146, 3, 295, 294, 0, 0, 0, 0, 2, 191, 0, 189, 0, 0, 0, 0, 0, 0, 0, 0, 111, 0, 549, 151, 148, 294, 0, 0, 267, 279, 3, 3, 548, 615, 369, 2, 700, 701, 397, 294, 266, 294, 0, 517, 494, 294, 0, 0, 493, 508, 0, 0, 0, 216, 0, 225, 58, 109, 0, 0, 116, 113, 0, 0, 0, 0, 0, 0, 23, 0, 657, 294, 582, 265, 726, 727, 728, 0, 679, 294, 294, 294, 3, 3, 0, 687, 0, 0, 0, 0, 294, 294, 3, 546, 471, 472, 0, 0, 246, 295, 0, 0, 0, 0, 294, 192, 190, 0, 187, 193, 0, 0, 0, 0, 197, 200, 198, 194, 0, 195, 35, 129, 144, 142, 244, 0, 0, 294, 418, 422, 421, 0, 511, 2, 512, 2, 513, 507, 294, 228, 0, 226, 0, 228, 3, 663, 31, 114, 2, 45, 2, 43, 41, 28, 112, 26, 3, 729, 3, 3, 3, 0, 0, 686, 688, 629, 643, 269, 2, 408, 3, 407, 0, 474, 471, 129, 0, 0, 129, 3, 0, 129, 188, 0, 2, 2, 209, 199, 0, 0, 0, 0, 140, 576, 616, 3, 2, 0, 0, 2, 229, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 689, 690, 294, 0, 473, 152, 0, 0, 2, 165, 129, 154, 0, 182, 0, 129, 0, 2, 156, 0, 2, 0, 2, 2, 2, 196, 32, 0, 294, 516, 518, 509, 0, 0, 0, 0, 114, 38, 3, 3, 658, 630, 644, 680, 412, 129, 158, 161, 0, 160, 164, 3, 167, 166, 0, 129, 184, 129, 3, 0, 294, 0, 294, 0, 2, 0, 2, 139, 703, 2, 230, 231, 0, 227, 218, 0, 0, 0, 153, 0, 0, 163, 233, 168, 2, 235, 183, 0, 186, 172, 201, 3, 210, 214, 203, 3, 0, 294, 0, 294, 0, 0, 0, 39, 46, 44, 159, 162, 129, 0, 169, 294, 129, 129, 0, 173, 0, 0, 694, 211, 212, 213, 0, 202, 3, 204, 3, 294, 219, 232, 149, 170, 155, 129, 236, 185, 180, 178, 174, 157, 129, 0, 695, 0, 0, 0, 0, 150, 171, 181, 175, 179, 178, 176, 3, 3, 0, 0, 495, 177, 205, 207, 3, 3, 206, 208 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 840, 475, 302, 46, 132, 133, 303, 304, 305, 306, 786, 787, 1148, 1149, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 1052, 526, 997, 322, 998, 555, 974, 1079, 1545, 1081, 1082, 1083, 1084, 1546, 1085, 1086, 1462, 1463, 1424, 1425, 1426, 1524, 1525, 1529, 1530, 1565, 1566, 1087, 1382, 1088, 1089, 1316, 1317, 1318, 1506, 1090, 144, 980, 981, 982, 1403, 1487, 1498, 1499, 476, 477, 902, 903, 1060, 49, 50, 51, 52, 53, 346, 157, 56, 57, 58, 59, 60, 348, 62, 63, 262, 65, 66, 273, 350, 351, 69, 70, 71, 72, 117, 74, 203, 353, 118, 77, 119, 79, 80, 462, 81, 456, 457, 458, 459, 701, 940, 702, 82, 83, 465, 463, 722, 882, 883, 356, 357, 725, 726, 727, 358, 359, 360, 361, 473, 340, 134, 135, 530, 324, 169, 655, 656, 657, 658, 659, 84, 120, 86, 496, 497, 966, 498, 276, 502, 325, 87, 136, 137, 88, 1340, 1126, 1127, 1128, 1129, 89, 90, 743, 91, 272, 92, 93, 186, 1054, 689, 411, 124, 94, 508, 509, 510, 187, 267, 189, 190, 191, 268, 97, 98, 99, 100, 101, 102, 103, 194, 195, 196, 197, 198, 852, 614, 615, 616, 617, 199, 619, 620, 621, 580, 581, 582, 583, 706, 104, 623, 624, 625, 626, 627, 628, 939, 708, 709, 710, 604, 364, 365, 366, 367, 326, 163, 106, 107, 108, 369, 720, 577 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1332 static const yytype_int16 yypact[] = { 3506, 8076, -1332, 12, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 61, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 102, 102, 102, 1011, 1062, 86, 5961, 228, -1332, -1332, -1332, -1332, -1332, 138, -1332, -1332, -1332, 684, 144, 9470, -1332, -1332, -1332, -1332, -1332, -1332, 190, 182, -1332, 1658, -1332, -1332, -1332, -1332, 201, 1834, 303, 32, 4928, -1332, -1332, 9508, 1650, -1332, -1332, -1332, 615, 401, 4443, 184, 589, 615, 1225, -1332, -1332, 848, 938, -1332, 615, 1259, -1332, 301, -1332, 486, 503, -1332, -1332, -1332, -1332, 316, 182, 102, -1332, 102, -1332, -1332, -1332, -1332, 9240, 1658, -1332, -1332, 1658, -1332, 9354, 391, -1332, -1332, -1332, 1948, 9876, -1332, 810, 810, 810, -1332, -1332, -1332, 102, -1332, -1332, -1332, 426, 447, 456, -1332, -1332, -1332, 477, -1332, -1332, -1332, -1332, -1332, 485, 495, -1332, -1332, 36, 8974, 2459, 272, 545, 579, 623, 632, 671, 733, 8777, 7372, 596, 719, -1332, 9546, -1332, -1332, -1332, -1332, 739, -1332, 209, 3245, 3245, -1332, 760, 213, -1332, -1332, -1332, -1332, 770, 237, 353, 362, 102, 755, -1332, -1332, 1834, 1803, 846, -1332, 70, -1332, 102, 102, 182, -1332, -1332, 98, -1332, 102, 102, -1332, 2479, 820, 843, 810, 5405, -1332, -1332, 844, 9470, -1332, -1332, 615, -1332, -1332, -1332, 182, -1332, 1658, 190, -1332, 7926, -1332, 810, 810, 810, 182, -1332, 1011, -1332, 2880, -1332, -1332, 827, 810, -1332, 810, -1332, 138, 8974, 8891, 857, -1332, 1062, 864, 810, -1332, 1011, 870, 879, -1332, 5961, 735, -1332, -1332, -1332, 9437, -1332, -1332, 3894, -1332, 846, 69, 9876, 6310, 1948, 2479, -1332, 114, -1332, -1332, 9354, 1658, 875, 11374, -1332, -1332, 546, -1332, 11116, 886, 926, 10861, 905, 10919, 10938, -1332, 919, -1332, -1332, -1332, -1332, 10996, 10996, 735, 8632, 928, 10919, 9088, -1332, -1332, -1332, -1332, -1332, -1332, 949, -1332, 840, 2531, 10919, -1332, 516, 336, 425, 270, 704, 934, 936, 960, 997, 52, -1332, -1332, 974, 356, -1332, 290, -1332, -1332, 2459, -1332, -1332, 600, 996, -1332, 701, 996, 1007, 138, -1332, -1332, 1010, 9240, -1332, 1018, 8746, -1332, -1332, 1849, 1084, 8347, 5405, 615, -1332, 615, 810, 810, -1332, -1332, -1332, -1332, -1332, -1332, 810, 9914, 1658, -1332, -1332, 9987, 1975, -1332, 9012, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1030, 3059, 10919, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1948, -1332, 773, 1012, 1034, 1040, 889, 1045, 1051, 1053, 1803, -1332, -1332, 1063, 190, 1064, -1332, -1332, 1066, -1332, -1332, -1332, 9437, -1332, -1332, -1332, -1332, -1332, 2479, -1332, 8974, 8974, -1332, 810, 1948, 6923, 1658, 8420, -1332, -1332, -1332, -1332, 9437, 69, -1332, -1332, 615, 182, -1332, -1332, 9437, -1332, 3625, -1332, -1332, 810, 810, 464, 10025, 1068, 907, 9695, -1332, 437, 475, 1062, -1332, 1067, 1069, 1047, 1070, 810, -1332, -1332, -1332, -1332, 10283, -1332, 522, 6793, -1332, 182, 1074, -1332, 1948, 11198, 6368, -1332, -1332, -1332, -1332, 939, 2479, -1332, 8493, 846, 5374, -1332, -1332, -1332, 828, 610, 974, 1062, 11374, 861, 9354, -1332, 11374, -1332, -1332, -1332, -1332, 618, -1332, 1073, 926, 326, 8632, -1332, 10025, -1332, -1332, 8632, -1332, 8860, 8632, -1332, -1332, -1332, 1077, -1332, 619, 1082, 630, 1087, -1332, 5066, 7012, -1332, -1332, -1332, 47, -1332, -1332, 10784, -1332, 474, 10784, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 6310, 6310, -1332, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 10919, 4001, 6310, -1332, 356, 777, -1332, -1332, 102, 102, -1332, -1332, 8974, -1332, -1332, 1066, 735, -1332, 1066, 10842, -1332, -1332, -1332, 6075, 7012, 1086, 9202, 1093, -1332, 10055, -1332, -1332, 739, -1332, 1094, 690, 1096, 1090, 157, 974, -1332, 102, 102, 974, 166, -1332, 102, 102, 1066, -1332, -1332, 102, 102, -1332, 996, 10137, 1658, 11343, 372, 531, 10137, -1332, 6678, -1332, 974, -1332, 9914, -1332, 285, 8042, 8042, 8042, 1658, -1332, 5183, 1085, 453, 1030, 955, 1095, 1097, -1332, 1099, 3245, 590, -1332, 1182, 1658, 8042, 735, 1948, 735, 846, 706, 996, -1332, -1332, 806, 996, -1332, -1332, -1332, 926, -1332, 996, 182, 10283, -1332, 647, 1107, 688, 1108, -1332, 1109, 182, -1332, -1332, 9437, 182, 1105, 497, 502, 10167, 7492, 1400, 10919, 1678, -1332, -1332, 1103, 62, 1103, -1332, -1332, -1332, 102, 102, -1332, -1332, 1062, -1332, 102, -1332, -1332, 8891, 1062, 1110, 10919, -1332, 1062, 11343, -1332, -1332, 1113, -1332, -1332, -1332, 735, -1332, 11271, 10919, -1332, 8042, 718, 8347, -1332, -1332, 739, 1114, 1115, 828, 2655, -1332, -1332, 11374, -1332, -1332, 1116, -1332, -1332, 1122, -1332, 1116, 1123, 11116, 6310, 163, 1092, 54, 1131, 1128, 1135, 928, 1130, 1138, -1332, 1140, 1141, 9733, 7132, -1332, 6310, -1332, 630, 1274, -1332, 5523, 6310, 1139, -1332, -1332, 1030, 695, -1332, 6310, -1332, -1332, 741, -1332, -1332, -1332, -1332, -1332, 516, 516, 336, 336, 425, 425, 425, 425, 270, 270, 704, 934, 936, 960, 997, 10919, 754, -1332, 10283, 1150, 1151, 1153, 777, -1332, -1332, -1332, -1332, -1332, 10283, 748, 10919, 8042, -1332, 9914, -1332, 7612, 9316, 9126, 7372, -1332, -1332, -1332, 690, 10283, 950, 1164, 1165, 1171, 1172, 1179, 1180, 1181, -1332, 3591, 1090, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1066, -1332, -1332, -1332, 974, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1183, -1332, 1184, 1187, -1332, -1332, 190, 1139, 5183, -1332, -1332, -1332, 3059, 1185, -1332, -1332, -1332, -1332, -1332, 1062, 6532, 1270, -1332, -1332, -1332, -1332, 1173, 190, -1332, -1332, 1066, -1332, -1332, 1066, 152, 1066, -1332, -1332, -1332, -1332, -1332, -1332, 9584, -1332, 182, -1332, 8891, -1332, -1332, 1193, 795, 1199, 1200, 1204, -1332, -1332, 1678, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 907, 9763, 1047, -1332, -1332, 1069, 1205, 1201, -1332, -1332, 1206, 1207, -1332, 718, 1989, -1332, 634, -1332, 2655, 974, -1332, 1211, 11374, 10205, 8974, 1214, -1332, -1332, 1212, 1217, 1213, -1332, 10919, 229, 205, 1215, -1332, 1202, 735, 1202, 7012, 6310, -1332, -1332, 1202, -1332, 1274, 3059, -1332, -1332, -1332, -1332, 1220, 6310, 1228, 735, 5183, -1332, 10784, -1332, 735, -1332, -1332, 6310, -1332, 863, 996, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1030, 8746, -1332, -1332, 7732, 1219, -1332, 876, 996, -1332, 883, 896, 996, -1332, 810, 4775, -1332, -1332, -1332, 10283, 10283, -1332, 8420, 8420, -1332, 1221, 1226, 1233, 1235, -1332, 1234, 643, 137, 1139, -1332, 735, -1332, 3245, -1332, 6310, 517, -1332, 6892, 1245, 1249, 10726, 1253, 1258, 330, 380, 387, 6310, 1265, 182, 6310, 6310, 1256, 294, 1269, 1250, -1332, -1332, -1332, 1277, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1062, 1285, 6310, -1332, 10283, 10283, 102, 1287, -1332, 9845, 9622, 932, 996, -1332, -1332, -1332, -1332, -1332, 1286, -1332, -1332, -1332, -1332, 1293, 1989, -1332, -1332, 1275, -1332, 1116, -1332, -1332, 1948, 1290, -1332, -1332, -1332, 749, 1292, -1332, 54, 1295, 10919, 1279, 54, 54, 1305, 1301, -1332, 1099, 6310, 1308, 1220, 605, 89, 1306, -1332, 1301, -1332, 1312, 1306, -1332, -1332, 1317, -1332, -1332, 1066, 1319, 1322, 7252, 1323, 1325, 1326, -1332, -1332, 1329, -1332, -1332, 1066, -1332, -1332, -1332, -1332, 1066, 6310, 6310, 10919, 1330, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 10919, 10919, 1332, 1335, 1306, -1332, -1332, 1062, -1332, -1332, -1332, 7853, 10205, 6310, 6310, 1394, 6310, -1332, -1332, 1321, -1332, 1324, 6310, 1327, 1331, 6310, 1013, 1333, 97, 8265, 1262, 102, -1332, -1332, 6532, 1334, 537, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1066, -1332, 10544, -1332, 8493, 1345, -1332, -1332, 10205, 562, 563, -1332, 1343, 1344, 926, 1352, -1332, 450, -1332, -1332, 6310, 1355, 1349, -1332, -1332, 1356, 543, 613, 735, 1357, 1358, -1332, 1361, -1332, 10283, -1332, -1332, -1332, -1332, -1332, 1365, -1332, 10283, 10283, 10283, -1332, -1332, 1367, -1332, 1368, 1371, 1372, 668, 8115, 8231, -1332, -1332, 457, -1332, 1376, 1378, -1332, 8566, 750, 782, 1387, 793, 6762, -1332, -1332, 598, -1332, -1332, 803, 1388, 1393, 182, 1445, 882, -1332, -1332, 6310, -1332, 10784, 10726, -1332, -1332, -1332, 1396, 1404, 10283, -1332, -1332, -1332, 1401, -1332, -1332, -1332, -1332, -1332, -1332, 10205, 926, 254, -1332, 1384, 926, 1220, 366, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1405, -1332, -1332, -1332, -1332, -1332, -1332, 1406, 1409, -1332, -1332, -1332, -1332, -1332, -1332, -1332, 1414, -1332, 1413, -1332, -1332, 10726, 84, 6310, 10726, -1332, 1417, 6310, -1332, 99, 1433, 1434, -1332, -1332, 1422, 1425, 1408, 852, -1332, -1332, -1332, -1332, -1332, 1658, 1948, 1421, 949, 918, 10919, -1332, 832, 1426, 6310, 735, 735, 1427, 1431, 1440, 1441, -1332, -1332, 8420, 1428, -1332, 1501, 10919, 1437, -1332, -1332, 10637, -1332, 845, -1332, 1424, 10726, 1436, -1332, -1332, 1460, -1332, 1461, -1332, 1476, 1481, -1332, 1446, 1471, 10205, -1332, -1332, -1332, 926, 735, 1472, 1452, 1468, -1332, 1306, 1306, -1332, -1332, -1332, -1332, -1332, 10726, 295, -1332, 940, -1332, -1332, 5671, -1332, -1332, 1454, 6310, -1332, 6310, 5671, 182, 10025, 182, 10025, 1478, -1332, 1482, -1332, -1332, -1332, 1480, 949, -1332, 850, -1332, -1332, 6310, 1479, 1487, -1332, 10919, 10919, -1332, -1332, 1054, 123, -1332, -1332, 1465, -1332, 1054, -1332, -1332, 1818, 735, -1332, -1332, 182, 10025, 182, 10025, 1492, 1474, 735, -1332, -1332, -1332, -1332, -1332, 10637, 1488, 1054, 6242, 6310, 10548, 1495, 1054, 1502, 1818, 2347, -1332, -1332, -1332, 1505, -1332, -1332, -1332, -1332, 8974, -1332, -1332, -1332, 10415, -1332, 10637, -1332, -1332, 1484, 10322, -1332, -1332, 10548, 182, 2347, 182, 1509, 1510, 853, -1332, 10415, -1332, -1332, -1332, 10322, -1332, -1332, -1332, 182, 182, -1332, -1332, -1332, -1332, -1332, -1332, -1332, -1332 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1332, 4383, 1919, -1332, 1457, -1332, 41, 0, -257, -1332, 544, -527, -514, -956, -190, 3713, -1332, 1485, 580, 585, 548, 602, 1055, 1052, 1056, 1059, 1061, -1332, -217, -341, 5350, -699, -697, -922, -1332, -83, -701, -678, -1332, 561, -1332, 399, -1087, -1332, -1332, 141, -1332, -1329, -838, 252, -1332, -1332, -1332, -1332, 71, -1078, -1332, -1332, -1332, -1332, -1332, -1332, 325, -1308, 57, -1332, -297, -1332, 504, 305, -1332, 173, -1332, -305, -1332, -1332, -1332, 558, -799, -1332, -1332, 11, -1027, 151, 658, -1332, -1332, -1332, -52, -1332, 117, 913, -200, 1494, 4071, -1332, -1332, 19, 107, 365, -232, 1565, -1332, 2150, -1332, -1332, 134, 2571, -1332, 3063, 1550, -1332, -1332, -1332, -643, -431, 1210, 1216, 707, 947, 188, -1332, -1332, -1332, 945, 723, -404, -1332, -520, -362, 293, -1332, -1332, -990, -995, 965, 1194, 1083, 304, -1332, 150, 317, -75, -197, -129, 679, 781, -1332, 1020, -1332, 3338, 1566, -427, 948, -1332, -1332, 710, -1332, -230, -1332, -89, -1332, -1332, -1332, -1266, 433, -1332, -1332, -1332, 1195, -1332, 22, -1332, -1332, -865, -105, -1331, -98, 1750, -1332, 2253, -1332, 929, -1332, -168, 288, -180, -179, -173, 2, -34, -29, -28, 687, 75, 77, 92, -161, -162, -153, -151, -148, -320, -530, -516, -495, -552, -307, -529, -1332, -1332, -506, 1106, 1117, 1121, 2218, 5180, -562, -569, -544, -538, -550, -1332, -429, -691, -685, -671, -611, -246, -241, -1332, -1332, 1149, 273, -84, -1332, 3714, 76, -612, -441 }; /* 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 -525 static const yytype_int16 yytable[] = { 47, 112, 96, 427, 398, 399, 768, 933, 452, 148, 266, 400, 113, 934, 149, 150, 791, 406, 871, 67, 259, 439, 401, 512, 407, 712, 707, 935, 613, 112, 112, 402, 47, 403, 96, 1203, 404, 1092, 382, 383, 846, 618, 111, 47, 895, 47, 505, 160, 1187, 854, 1153, 67, 1185, 1186, 142, 47, 749, 48, 975, 853, 201, 47, 857, 192, 47, 847, 215, 47, 864, 225, 342, 848, 751, 820, 1401, 947, 756, 1145, 218, 842, 845, 112, 112, 995, 398, 399, 933, 279, 409, 48, 1464, 400, 934, 843, 121, 424, 1468, 406, 605, 1197, 779, 31, 401, 1091, 407, 47, 935, 68, 47, 31, 202, 402, 679, 403, 844, 47, 404, 61, 151, 109, 152, 165, 637, 884, 884, 884, 641, 739, 1421, 1422, 41, 42, 688, 408, 75, 153, 290, 31, 446, 68, 692, 31, 884, 1421, 1422, 280, 47, 574, 160, 61, 148, 54, 114, 31, 47, 149, 150, 467, 783, 47, 1320, 372, 482, 484, 1464, 978, 75, -234, -234, 1510, 122, 211, 858, 410, 1265, 746, 861, 1484, 483, 251, 140, 410, 575, 54, 47, 47, 165, 160, 2, 205, 4, 5, 6, 7, 1468, 141, 31, 878, 1423, 1468, 47, 881, 1266, 478, 1539, 31, 1541, 418, 47, 410, 160, 527, 677, 1432, 842, 209, 884, 47, 219, 1468, 47, 327, 442, 488, 1080, 410, 1468, 112, 843, 1321, 148, 240, 243, 1193, 536, 149, 150, 674, -234, 143, 886, 887, 112, 740, 675, 536, 112, 145, 1187, 844, 47, 112, 96, 35, 760, 36, 154, 596, 905, 151, 1194, 152, 1099, 1202, 47, 47, 855, 160, 610, 67, 846, 47, 470, 105, 105, 862, 153, 610, 47, 1203, 976, 885, 885, 885, 435, 1102, 342, 703, 95, 1038, 666, 857, 472, 112, 705, 847, 170, 167, 1187, 1037, 885, 848, 1185, 1186, 618, 105, 200, 48, 884, 842, 1025, 536, 1155, 1014, 327, 1136, -3, 180, 681, 674, 95, 168, 1137, 843, 686, 376, 675, 441, 47, 386, 372, 147, 958, 95, 524, 739, 536, 1346, 1135, 1111, 105, 377, 682, 684, 844, 387, 435, 47, 47, 188, 683, 685, 95, 389, 605, 95, 831, 68, 937, 176, 564, 565, 1092, 1404, 47, 478, 285, 61, 47, 390, 1217, 440, 479, 165, 885, 1220, 1221, 41, 42, 653, 950, 251, 329, 605, 75, 478, 926, 1208, 605, 75, 846, 1494, 464, 478, 483, 47, 566, 567, 854, 880, 585, 54, 109, 521, -290, 47, 586, 372, 536, 260, 871, 739, 261, 41, 42, 847, 576, 246, 1194, 916, 607, 848, 1187, 47, 1017, 251, 755, 1459, 1091, 47, 527, 47, 1041, 228, 95, 527, 761, 229, 527, 1203, 233, 1552, 235, 762, 1262, 770, 1203, 95, 342, 244, 1553, 740, 109, 1453, 1454, 47, 211, 560, 561, 109, 112, 1563, 1211, 41, 42, 578, 885, 410, 1567, 391, 41, 42, 397, 188, 112, 579, -112, 1568, 393, 47, 1173, 1175, 936, 1408, 874, 392, 249, 47, 875, 372, 1151, 47, 813, 96, 394, 47, 95, -112, 112, 1203, 112, 327, 327, -520, 936, 979, 1215, 1383, 95, 1107, 67, 824, 1213, 562, 563, 111, 712, 707, 398, 399, 653, 438, 263, 105, 1119, 400, 505, 740, 896, 654, 1261, 1036, 406, -469, 479, -10, 401, 112, 95, 407, 653, 1122, 112, 653, 618, 402, 109, 403, 48, 1080, 404, 75, 486, 713, 479, 1038, -443, 41, 42, 907, 1344, 767, 479, 1107, -469, -444, -469, 1345, 909, 714, -469, 75, -112, -112, 693, 490, 228, 327, 784, 75, 586, 767, 507, 790, 767, 789, 275, 211, -112, 1019, 112, 715, -291, 831, 277, 1008, 327, 47, 68, 8, 9, 10, 11, 12, 278, 1381, 737, 716, 61, 47, 717, 47, 342, 713, 172, 109, 95, 833, 715, 2, 205, 4, 5, 6, 7, 75, 41, 42, 31, 929, 47, 472, 730, 1200, 930, 557, 612, 1134, 731, 478, 558, 559, 54, 876, 1036, 1394, 47, 877, 750, 1201, 754, 176, 112, 1200, 1350, 330, 34, 252, 55, 55, 1523, 47, 327, 112, 47, 112, 1528, 1500, 638, 1326, 897, 712, 642, 1051, 1500, 500, 607, 501, 1335, 1337, 1184, 955, 1431, 831, 35, 109, 36, 1548, 342, 331, 55, 1049, 1555, 188, 1336, 1338, 41, 42, 47, 1420, 47, 898, 1428, 652, 906, 872, 908, 899, 370, 587, 607, 410, 1096, 112, 775, -112, 228, -112, 233, 112, 747, -112, 55, 112, 1352, 55, 748, 1549, 757, 774, 1384, 112, 161, 332, 758, 775, -112, -112, 441, 777, 1130, 410, 333, 704, 47, 47, 876, 1467, 193, 778, 1118, 216, 1471, 416, 226, -105, 37, 920, 47, -105, 40, 936, 37, 775, 105, 1056, 40, 41, 42, 1502, 674, 1503, 954, 41, 42, 605, 436, 675, 703, 95, 1369, 334, 1493, 612, 1370, 705, 444, 8, 9, 10, 11, 12, 1154, 43, 1254, 1393, 568, 569, 922, 839, 739, 610, 892, 146, 775, 1003, 228, 109, 479, 611, 590, 1004, 410, 347, 737, 910, 31, 410, 41, 42, 8, 9, 10, 11, 12, 75, 1550, 959, 371, 610, 763, 211, 764, 161, 1177, 765, 1252, 960, 771, 47, 1256, 933, 1051, 335, 34, 211, 373, 934, 375, 31, 479, 47, 1294, 1295, 833, 528, 1007, 1004, 1016, 1250, 1377, 935, 831, 945, 731, 586, 775, 75, 1562, 948, 775, 1009, 161, 464, 1562, 384, 979, 34, 55, 388, 979, 979, 251, 329, 410, 1562, 578, 396, 410, 1562, 737, 941, 1378, 941, 653, 161, 579, 841, 775, 612, 37, 112, 653, 1380, 40, 329, 410, 443, 55, 775, 408, 41, 42, 1385, 115, 913, 740, 410, 936, 775, 109, 67, 138, 237, 47, 537, 538, 539, 1198, 425, 1372, 41, 42, 109, 873, 138, 139, 744, 47, 211, 1390, 1391, 1450, 1078, 41, 42, 47, 745, 1447, 540, 888, 541, 426, 542, 543, 1469, 431, 238, 158, 449, 1516, 775, 239, 1573, 47, 904, 1517, 1441, 1004, 586, 752, -367, 1157, 919, 410, 753, 936, 936, -396, 37, 1123, 182, 183, 40, 112, 1169, 932, 410, 704, 491, 41, 42, 1172, 653, 610, 511, 1342, 740, 418, 670, 410, 112, 468, 690, 653, 1174, 112, 610, 290, 68, 109, 469, 138, 139, 515, 373, 698, 257, 410, 61, 1245, 41, 42, 158, 699, 1139, 700, 109, 520, 138, 139, 536, 841, 612, 1447, 1448, 75, 732, 41, 42, 532, 1237, 1147, 410, 654, 767, 327, 1147, 488, 329, 410, 1061, 242, 54, 570, 112, 1495, 1496, 323, 855, 329, 610, 507, 1449, 571, 653, 891, 339, 112, 112, 112, 1313, 1314, 1315, 528, 1351, 1353, 1354, 1535, 528, 1461, 1205, 528, 128, 1402, 129, 130, 131, 1402, 572, 347, 573, 373, 112, 41, 42, 1147, 872, 1421, 1422, 8, 9, 10, 11, 12, 576, 1078, 338, 1010, 1212, 1214, 1216, 801, 802, 803, 804, -440, 429, 1015, 594, 1124, 433, 667, 1302, 1303, 47, 1305, 841, 1107, 31, 597, 441, 1309, 1026, 109, 1312, 138, 139, 342, 612, 797, 798, 647, 654, 668, 41, 42, 799, 800, 55, 669, 323, 455, 1521, 1461, 671, 37, 34, 182, 183, 40, 672, 37, 673, 182, 183, 40, 41, 42, 68, 805, 806, 676, 41, 42, 105, 678, 256, 721, 479, 696, 718, 759, 433, 723, 719, 495, 936, -238, 772, 1485, 347, 776, 609, 162, 610, 75, 780, 834, 609, 112, 610, -12, 611, 936, 836, 838, 529, 849, 611, 158, 901, -13, 54, 893, 894, 218, 921, 923, 928, 699, 924, 47, -417, 977, 949, 704, 653, -292, -524, 963, 970, 748, 972, 704, 8, 9, 10, 11, 12, 918, 983, 105, 1061, 984, 985, 67, 987, 988, 925, 989, 990, 612, 927, 595, 999, 347, 602, 1123, 162, 1011, 1012, -293, 1013, 31, 112, 112, 112, 1078, 8, 9, 10, 11, 12, 1027, 1028, 635, 936, 936, 737, 639, 1029, 1030, 339, 8, 9, 10, 11, 12, 1031, 1032, 1033, 34, 1044, -405, 1445, 1427, -404, 31, 1093, 1058, 347, 347, 347, 1095, 1103, 1147, 1147, 1147, 1104, 1105, 211, 1561, 31, 1106, 1112, 993, 1113, 1114, 1115, 347, 1121, 653, 653, 1131, 1205, 34, 1132, 775, 1167, 1133, 1138, 1182, 1183, 68, 105, 1143, 1188, 323, 323, 1146, 34, 1189, 1190, 61, 1191, 1192, 537, 538, 539, 1300, 1123, 398, 399, 1206, 209, 219, 434, 1207, 400, 737, 75, 1209, 767, 1078, 406, 455, 1210, 1222, 455, 401, 540, 407, 541, 1218, 542, 1322, 653, 54, 402, 653, 403, 1225, 777, 404, 410, 1224, 115, 460, 674, 1232, 1233, -3, 778, 347, 1230, 675, 1235, 1124, 47, 47, 1240, 1534, 1242, 500, 1246, 1251, 1253, 441, 112, 112, 1255, 495, 68, 323, 1258, 495, 1259, 1078, 434, 1263, 1078, 1267, 479, 1270, 653, 529, 1272, 529, 1274, 653, 529, 1275, 323, 529, 1276, 728, 1277, 1278, 1280, 75, 1304, 1287, 531, 1296, 339, 162, 1297, 112, 1325, 1147, 1147, 440, 1307, 1123, 1333, 1308, 54, 1339, 1310, 653, 1341, 1343, 1311, 1348, 1319, 1078, 1347, 1349, 1355, 1356, 1078, 37, 1357, 182, 183, 40, 1359, 105, 1365, 1366, 1367, 1368, 41, 42, 1205, 347, 1101, 1375, 1486, 1376, 1124, 1205, 347, 64, 116, 1379, 1386, 148, 323, 105, 1078, 1387, 149, 150, 1315, 1395, 47, 112, 698, 829, 410, 175, 602, 1396, 1398, 1405, 112, 1415, 700, 105, 1416, 1408, 653, -406, 1419, 64, 1430, 653, 1434, 1436, 1438, 47, 47, 1439, 160, 1446, 1455, 1451, 159, 1440, 1456, 870, 1460, 1370, 1205, 653, 602, 653, 1536, 1457, 1458, 653, 879, 1465, 653, 1470, 47, 1544, 372, 55, 220, 175, 653, 1078, 175, 1358, 653, 1472, 1078, 1474, 1476, 1478, 68, 1360, 1361, 1362, 1480, 1482, 105, 68, 1483, 1488, 479, 1489, 1490, 1501, 1078, 1511, 1078, 479, 1519, 1513, 1078, 1124, 1515, 1078, 1527, 258, 1520, 75, 1542, 460, 1547, 1078, 460, 1543, 75, 1078, 339, 1554, 175, 1556, 105, 213, 1558, 1564, 54, 327, 1571, 1572, 1223, 1397, 808, 54, 807, 1324, 55, 809, 212, 214, 455, 810, 68, 1219, 811, 1522, 1433, 1574, 231, 328, 1389, 1257, 479, 347, 728, 1504, 241, 258, 349, 1406, 1229, 942, 1108, 2, 205, 4, 5, 6, 7, 75, 495, 531, 694, 531, 729, 213, 531, 951, 695, 531, 1110, 1142, 826, 175, 1057, 1120, 54, 900, 405, 1334, 212, 214, 227, 816, 339, 742, 973, 8, 9, 10, 11, 12, 0, 423, 817, 965, 428, 430, 818, 347, 347, 159, 1444, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 105, 31, 0, 35, 55, 36, 0, 447, 212, 214, 0, 450, 175, 451, 37, 0, 173, 174, 40, 175, 0, 0, 466, 105, 0, 41, 42, 1018, 64, 34, 105, 829, 0, 480, 37, 0, 182, 183, 40, 0, 0, 0, 0, 487, 0, 41, 42, 0, 0, 0, 0, 430, 517, 0, 213, 0, 0, 0, 0, 0, 123, 126, 127, 0, 728, 534, 535, 0, 0, 212, 214, 698, 0, 410, 728, 0, 0, 556, 0, 0, 0, 700, 0, 105, 0, 0, 0, 0, 175, 728, 0, 0, 213, 0, 0, 0, 213, 8, 9, 10, 11, 12, 0, 0, 486, 175, 0, 212, 214, 175, 0, 212, 214, 535, 0, 0, 0, 0, 0, 258, 0, 829, 603, 0, 0, 455, 31, 506, 631, 0, 0, 253, 0, 254, 0, 0, 0, 0, 0, 0, 0, 636, 0, 0, 455, 636, 55, 55, 258, 535, 0, 460, 0, 0, 34, 0, 0, 0, 729, 37, 1388, 182, 183, 40, 0, 495, 1125, 323, 0, 55, 41, 42, 175, 0, 37, 0, 182, 183, 40, 0, 0, 0, 0, 213, 0, 41, 42, 0, 0, 55, 37, 0, 182, 183, 40, 480, 184, 0, 212, 214, 0, 41, 42, 0, 0, 37, 185, 173, 174, 40, 349, 1532, 0, 410, 395, 480, 41, 42, 870, 0, 0, 1533, 0, 480, 414, 415, 0, 184, 0, 419, 0, 421, 422, 0, 347, 347, 0, 185, 0, 0, 0, 0, 371, 55, 0, 0, 0, 0, 55, 724, 0, 0, 430, 0, 166, 0, 171, 0, 0, 177, 178, 179, 0, 181, 213, 0, 0, 738, 0, 64, 0, 0, 0, 0, 0, 0, 0, 430, 232, 212, 214, 430, 55, 8, 9, 10, 11, 12, 728, 728, 247, 248, 0, 729, 0, 0, 212, 0, 0, 455, 829, 0, 0, 729, 37, 0, 182, 183, 40, 0, 258, 349, 31, 0, 213, 41, 42, 0, 729, 1505, 0, 1509, 0, 0, 0, 0, 794, 795, 796, 212, 214, 37, 0, 173, 174, 40, 0, 0, 175, 0, 34, 264, 41, 42, 0, 0, 728, 728, 0, 0, 0, 265, 0, 0, 0, 0, 1538, 819, 1540, 347, 0, 460, 0, 0, 0, 0, 0, 0, 375, 535, 0, 175, 0, 0, 0, 636, 832, 0, 603, 0, 460, 0, 959, 0, 610, 55, 0, 175, 0, 851, 0, 0, 960, 0, 0, 0, 0, 0, 0, 0, 0, 1569, 175, 1570, 0, 0, 0, 603, 55, 0, 0, 0, 603, 0, 0, 55, 1577, 1578, 636, 339, 0, 349, 349, 349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 213, 0, 0, 349, 0, 0, 0, 1125, 0, 0, 0, 0, 0, 0, 0, 212, 214, 0, 0, 0, 0, 724, 0, 0, 0, 0, 0, 0, 213, 73, 0, 55, 480, 213, 0, 0, 0, 258, 738, 0, 0, 938, 0, 212, 214, 0, 0, 0, 212, 214, 0, 0, 0, 1331, 0, 0, 0, 0, 0, 0, 0, 0, 175, 0, 221, 0, 535, 0, 0, 0, 0, 0, 0, 0, 480, 0, 0, 349, 0, 0, 729, 729, 0, 0, 0, 728, 964, 0, 0, 430, 0, 0, 0, 728, 728, 728, 0, 0, 460, 0, 1125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 601, 608, 994, 258, 738, 0, 0, 0, 0, 992, 0, 213, 632, 633, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 213, 212, 214, 729, 729, 0, 728, 0, 0, 0, 0, 0, 0, 0, 0, 212, 214, 352, 0, 0, 0, 724, 0, 0, 535, 0, 0, 0, 0, 0, 0, 724, 0, 0, 349, 506, 636, 0, 0, 1024, 636, 832, 0, 0, 821, 822, 724, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1035, 0, 0, 0, 0, 0, 125, 0, 125, 0, 0, 0, 1125, 8, 9, 10, 11, 12, 856, 0, 0, 859, 860, 0, 863, 0, 865, 866, 0, 0, 0, 867, 868, 274, 0, 448, 0, 175, 213, 0, 0, 0, 31, 0, 1507, 0, 1507, 0, 0, 0, 0, 0, 64, 212, 214, 0, 73, 0, 0, 0, 0, 73, 412, 0, 0, 0, 0, 0, 0, 420, 34, 0, 0, 0, 636, 37, 0, 182, 183, 40, 0, 1507, 0, 1507, 0, 0, 41, 42, 0, 125, 0, 1332, 0, 0, 0, 0, 0, 125, 0, 125, 125, 0, 0, 0, 125, 0, 125, 125, 0, 0, 1117, 323, 1532, 0, 410, 943, 944, 0, 430, 116, 0, 946, 1533, 729, 0, 8, 9, 10, 11, 12, 0, 729, 729, 729, 0, 0, 349, 0, 0, 0, 0, 412, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 31, 0, 221, 0, 0, 0, 0, 0, 535, 0, 0, 0, 0, 0, 0, 0, 0, 603, 0, 0, 31, 0, 125, 0, 0, 729, 0, 0, 34, 0, 428, 0, 0, 37, 0, 724, 724, 40, 349, 349, 0, 0, 0, 584, 41, 42, 0, 0, 34, 517, 0, 588, 0, 37, 591, 182, 183, 40, 1204, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 73, 43, 0, 0, 76, 0, 0, 213, 0, 0, 0, 146, 0, 0, 0, 352, 0, 0, 0, 0, 73, 264, 212, 214, 724, 724, 0, 0, 73, 0, 636, 265, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412, 0, 0, 0, 420, 0, 352, 0, 0, 1508, 0, 1508, 0, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 222, 352, 0, 73, 0, 0, 952, 0, 953, 0, 0, 0, 0, 0, 0, 956, 957, 0, 738, 0, 962, 0, 0, 1508, 554, 1508, 535, 8, 9, 10, 11, 12, 967, 0, 0, 0, 0, 971, 0, 0, 0, 175, 0, 0, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 1301, 0, 1000, 0, 0, 412, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 0, 0, 0, 0, 64, 34, 0, 0, 0, 354, 37, 0, 0, 0, 40, 0, 0, 0, 724, 0, 738, 41, 42, 0, 116, 0, 0, 0, 0, 601, 0, 352, 0, 0, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 744, 0, 0, 724, 0, 212, 214, 0, 0, 0, 745, 724, 724, 724, 0, 0, 0, 0, 0, 0, 0, 0, 349, 349, 0, 0, 0, 0, 0, 352, 352, 352, 584, 584, 0, 0, 1204, 0, 0, 1045, 1046, 1047, 1048, 0, 1050, 0, 0, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 724, 1094, 0, 76, 0, 0, 0, 352, 0, 0, 0, 116, 125, 125, 0, 1100, 0, 0, 73, 0, 0, 0, 0, 0, 352, 0, 1234, 0, 213, 0, 0, 0, 0, 175, 0, 0, 0, 0, 0, 0, 0, 0, 125, 212, 214, 125, 125, 0, 125, 0, 125, 125, 0, 0, 1116, 125, 125, 0, 0, 0, 73, 0, 911, 352, 0, 0, 914, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 0, 349, 0, 0, 0, 0, 0, 1144, 0, 31, 0, 222, 412, 352, 1152, 0, 0, 0, 0, 1156, 0, 0, 0, 0, 1160, 0, 1161, 116, 0, 0, 1163, 1164, 1165, 0, 0, 1168, 0, 34, 0, 0, 0, 0, 0, 0, 1180, 0, 0, 125, -294, 0, 1204, 0, 125, 125, 0, 352, 0, 1204, 125, 0, 0, 0, 1195, 1196, 1323, 352, 0, 0, 352, 0, 0, 0, 0, 221, 0, 352, 0, 0, 76, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 1226, 0, 0, 1228, 354, 0, 0, 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, 76, 0, 0, 0, 1204, 0, 0, 0, 0, 0, 0, 1557, 0, 0, 0, 0, 0, 0, 0, 0, 0, 584, 0, 0, 0, 1244, 354, 0, 0, 0, 0, 1248, 1249, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 1260, 354, 0, 76, 78, 1264, 0, 0, 1268, 0, 1269, 0, 0, 1271, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1279, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 281, 282, 1286, 283, 1288, 1289, 1290, 1291, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1298, 0, 1299, 0, 0, 0, 171, 0, 0, 284, 0, 0, 0, 0, 223, 649, 0, 138, 139, 286, 352, 0, 287, 650, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 412, 1327, 1328, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 354, 651, 0, 652, 379, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 352, 352, 0, 352, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1363, 1364, 0, 0, 0, 0, 0, 0, 0, 73, 1374, 354, 354, 354, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1158, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1170, 0, 352, 352, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 0, 1407, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 1411, 0, 1412, 1413, 1414, 281, 282, 0, 283, 0, 0, 0, 0, 0, 1418, 0, 0, 0, 0, 0, 0, 0, 0, 1429, 0, 0, 0, 76, 0, 0, 354, 0, 0, 0, 284, 352, 78, 0, 0, 1442, 285, 78, 0, 0, 286, 1238, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 85, 293, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 125, 0, 294, 221, 378, 0, 0, 379, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 85, 0, 1491, 1492, 0, 0, 0, 73, 0, 0, 0, 0, 0, 0, 0, 1497, 354, 0, 0, 0, 0, 352, 1497, 352, 0, 0, 354, 0, 0, 354, 0, 0, 0, 0, 222, 224, 354, 0, 0, 0, 0, 354, 0, 223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 0, 1531, 0, 0, 0, 1537, 0, 352, 352, 352, 0, 0, 0, 0, 0, 0, 0, 0, 352, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 1559, 0, 1560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 0, 0, 0, 125, 0, 352, 78, 0, 0, 0, 0, 0, 0, 0, 1575, 1576, 0, 0, 0, 362, 0, 355, 1579, 1580, 0, 0, 78, 0, 0, 0, 0, 0, -519, 0, 78, 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, 355, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 355, 0, 78, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 85, 41, 42, 0, 0, 85, 0, 0, 355, 0, 1034, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 354, 354, 0, 354, 354, 43, 73, 44, 0, 0, 0, 0, 0, 73, 0, 45, 0, 0, 281, 282, 31, 283, 0, 76, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -295, 0, 0, 0, 284, 34, 0, 0, 355, 0, 285, 31, 0, 0, 286, 354, 354, 287, 288, 289, 290, 41, 42, 73, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 224, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, -295, 0, 0, 355, 355, 355, 296, 827, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 85, 0, 0, 0, 164, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 85, 222, 0, 217, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 76, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 354, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 0, 0, 362, 0, 85, 271, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 354, 354, 354, 0, 0, 0, 0, 164, 0, 0, 0, 354, 354, 0, 0, 0, 0, 368, 0, 362, 0, 374, 0, 0, 0, 76, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 355, 0, 0, 0, 0, 223, 0, 355, 0, 354, 0, 0, 355, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 164, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 217, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 461, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 78, 0, 0, 206, 39, 0, 0, 0, 0, 0, 0, 374, 0, 0, 0, 0, 362, 362, 362, 164, 0, 0, 0, 354, 0, 0, 0, 0, 0, 514, 0, 516, 519, 0, 0, 362, 0, 0, 0, 522, 523, 0, 0, 461, 516, 516, 164, 0, 270, 0, 0, 0, 0, 362, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 362, 0, 76, 281, 282, 0, 283, 0, 0, 76, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 516, 606, 0, 0, 0, 0, 630, 0, 0, 0, 284, 0, 0, 0, 85, 0, 285, 362, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 516, 0, 293, 0, 76, 0, 0, 0, 0, 355, 355, 0, 355, 355, 0, 0, 0, 294, 362, 378, 0, 0, 0, 0, 0, 812, 296, 380, 298, 299, 300, 301, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 164, 164, 0, 0, 0, 0, 230, 368, 234, 0, 236, 0, 0, 0, 362, 0, 0, 245, 0, 0, 0, 355, 355, 0, 362, 0, 0, 362, 461, 0, 0, 461, 224, 0, 362, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 234, 236, 245, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 461, 0, 461, 210, 0, 461, 0, 164, 461, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 0, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 516, 0, 0, 78, 210, 0, 234, 236, 245, 0, 0, 0, 0, 164, 0, 0, 0, 355, 0, 355, 0, 0, 0, 0, 0, 368, 516, 606, 0, 0, 837, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 210, 0, 0, 0, 210, 0, 0, 355, 0, 0, 0, 0, 0, 0, 606, 355, 355, 355, 0, 606, 504, 0, 0, 0, 0, 0, 355, 355, 368, 368, 368, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 368, 362, 362, 0, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 210, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 741, 516, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 234, 236, 155, 0, 0, 0, 0, 461, 245, 516, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 0, 0, 368, 0, 961, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 250, 0, 0, 210, 0, 0, 0, 355, 0, 31, 255, 0, 0, 0, 741, 0, 0, 0, 0, 0, 516, 210, 0, 0, 0, 0, 210, 362, 210, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 210, 210, 0, 0, 516, 0, 0, 0, 78, 0, 0, 0, 0, 0, 0, 78, 210, 0, 155, 516, 0, 368, 224, 0, 0, 630, 0, 0, 368, 0, 210, 0, 385, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417, 0, 0, 362, 0, 362, 0, 0, 0, 0, 0, 0, 0, 78, 432, 0, 0, 0, 0, 0, 0, 0, 0, 437, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445, 0, 362, 0, 0, 0, 0, 0, 0, 0, 362, 362, 362, 0, 0, 0, 0, 0, 0, 0, 0, 362, 362, 0, 0, 471, 0, 0, 0, 0, 481, 0, 0, 461, 0, 85, 0, 0, 0, 0, 0, 0, 0, 489, 0, 0, 0, 0, 0, 499, 0, 503, 461, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 533, 0, 0, 0, 0, 0, 164, 0, 0, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 0, 368, 0, 210, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593, 516, 0, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 516, 606, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 644, 362, 368, 368, 645, 646, 0, 648, 0, 0, 0, 0, 0, 0, 660, 661, 0, 662, 663, 0, 664, 516, 665, 0, 0, 0, 0, 0, 1178, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 593, 0, 210, 0, 0, 0, 0, 0, 680, 0, 0, 85, 0, 0, 0, 0, 210, 0, 85, 281, 282, 31, 283, 461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 691, 0, 0, 504, 0, 0, 0, 0, 0, 0, 0, 697, 0, 0, 0, 284, 34, 0, 0, 0, 0, 285, 516, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 733, 291, 292, 0, 85, 0, 736, 0, 0, 293, 0, 471, 0, 0, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 0, 210, 0, 516, 296, 1179, 298, 299, 300, 301, 0, 0, 0, 0, 210, 0, 0, 516, 516, 773, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 0, 0, 0, 210, 0, 788, 0, 0, 0, 0, 0, 0, 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, 741, 26, 27, 28, 815, 0, 0, 0, 0, 0, 31, 0, 0, 825, 0, 0, 0, 0, 0, 0, 828, 0, 0, 0, 0, 835, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 850, 0, 34, 0, 35, 0, 36, 37, 0, 206, 39, 40, 0, 368, 368, 0, 210, 0, 41, 42, 0, 0, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 890, 210, 0, 43, 0, 207, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 0, 0, 835, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 210, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 0, 0, 0, 0, 0, 0, 0, 250, 0, 0, 0, 0, 0, 368, 0, 34, 516, 968, 969, 0, 0, 0, 38, 39, 0, 0, -294, 0, 0, 0, 0, 986, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1001, 0, 1002, 0, 0, 0, 1006, 0, 0, 643, 0, 338, 0, 0, 0, 0, 0, 0, 0, 110, 0, 0, 210, 461, 0, 461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 282, 0, 283, 0, 0, 461, 0, 461, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1039, 0, 0, 0, 0, 0, 0, 1040, 0, 0, 0, 284, 0, 0, 0, 0, 0, 285, 164, 0, 1042, 286, 1043, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 1055, 210, 0, 293, 0, 0, 0, 1059, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 1097, 378, 0, 1098, 0, 0, 781, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 210, 0, 0, 413, 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, 1162, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 33, 0, 0, 34, 0, 35, 31, 36, 37, 413, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 533, 0, 0, 0, 0, 0, 0, 1227, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 43, 0, 44, 0, 0, 0, -523, 0, 0, 0, 45, 0, 321, 1241, 0, 0, 0, 0, 1243, 0, 413, 0, 345, 0, 0, 0, 1247, 0, 413, 589, 0, 413, 592, 0, 381, 381, 0, 0, 0, 0, 0, 363, 0, 0, 0, 622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1273, 0, 0, 0, 0, 0, 0, 640, 0, 0, 341, 0, 1281, 0, 0, 1282, 0, 1283, 0, 0, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 1292, 1293, 0, 0, 0, 0, 413, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 321, 284, 0, 0, 0, 1306, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 363, 485, 0, 0, 0, 293, 0, 0, 1329, 0, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 294, 0, 378, 413, 0, 993, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 363, 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, -294, 0, 26, 27, 28, 29, 0, 0, 30, 0, 413, 31, 0, 341, 363, 0, 0, 0, 0, 1399, 0, 1400, 0, 0, 0, 0, 0, 0, 0, 0, 381, 0, 0, 0, 1409, 0, 1410, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -294, 0, 0, 0, 1417, 0, 0, 0, 0, 413, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1435, 1437, 0, 0, 0, 0, 0, 0, 830, 363, 0, 363, 1443, 44, 0, 1247, 0, 0, 0, 0, 622, 110, 622, 622, 0, 0, 0, 0, 0, 622, 0, 0, 0, 0, 0, 0, 0, 1466, 0, 869, 363, 0, 0, 0, 0, 363, 1473, 0, 0, 1475, 0, 1477, 1479, 1481, 363, 363, 363, 0, 0, 0, 0, 0, 735, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 413, 912, 0, 0, 413, 915, 0, 0, 0, 0, 0, 917, 0, 0, 0, 1512, 0, 1514, 0, 0, 1247, 0, 0, 769, 0, 0, 0, 0, 0, 341, 363, 413, 0, 413, 0, 1526, 782, 413, 0, 0, 0, 0, 0, 769, 0, 0, 769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 792, 793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 622, 0, 0, 0, 0, 0, 0, 0, 0, 814, 0, 0, 0, 0, 0, 0, 0, 0, 0, 823, 0, 0, 0, 0, 0, 0, 345, 0, 0, 0, 0, 782, 0, 0, 0, 341, 363, 0, 0, 0, 413, 413, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 889, 413, 31, 32, 0, 0, 0, 0, 0, 381, 363, 0, 0, 0, 0, 0, 830, 363, 0, 0, 0, 622, 0, 622, 0, 0, 0, 33, 0, 0, 34, 0, 35, 622, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 345, 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, 0, 0, 45, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 830, 26, 27, 28, 0, 0, 0, 0, 413, 0, 31, 0, 0, 0, 413, 0, 0, 0, 0, 782, 0, 991, 413, 0, 0, 0, 0, 996, 0, 0, 0, 0, 0, 0, 1005, 622, 622, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, -294, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1022, 1023, 643, 345, 338, 0, 0, 0, 0, 413, 1159, 0, 634, 0, 0, 0, 0, 0, 345, 363, 0, 0, 0, 0, 0, 413, 1171, 0, 622, 622, 1176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1053, 0, 0, 0, 381, 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, 0, 0, 31, 0, 830, 413, 1239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 622, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 321, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1140, 1141, 0, 0, 0, 0, 363, 381, 0, 0, 0, 281, 282, 996, 283, 0, 1150, 44, 769, 0, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1166, 0, 284, 0, 0, 0, 0, 0, 285, 0, 0, 1181, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 341, 0, 293, 281, 282, 381, 283, 1199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 363, 996, 996, 0, 0, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 1231, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 0, 0, 0, 294, 0, 378, 0, 0, 0, 0, 0, 0, 296, 734, 298, 299, 300, 301, 0, 996, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 889, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1284, 1285, 0, 0, 0, 0, 0, 0, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 1062, 1063, 0, 1064, 0, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 363, 284, 34, 0, 35, 0, 36, 649, 0, 38, 39, 286, 996, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 1076, 0, 0, 170, 0, 0, 0, 296, 297, 298, 299, 300, 301, 0, 0, 0, 0, 1077, 0, 0, 0, -129, 0, 0, 0, 0, 0, 1392, 0, 769, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 413, 413, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 206, 39, 0, 0, 0, 0, 1452, 0, 0, 0, 0, 0, 0, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 629, 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, 1518, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 109, 0, 38, 39, 0, 0, 294, 0, 1076, 0, 0, 41, 42, 0, 0, 296, 297, 298, 299, 300, 301, 0, 0, 0, 0, 0, 0, 321, 0, -129, 1, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 35, 31, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 206, 39, 0, 0, 294, 0, 44, 0, 0, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 343, 0, 0, 0, 0, 781, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 931, 0, 0, 0, 0, 781, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 931, 0, 0, 0, 0, 781, 0, 296, 600, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 343, 0, 0, 0, 0, 0, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 931, 0, 0, 0, 0, 0, 0, 296, 344, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 206, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 1020, 0, 0, 0, 0, 0, 0, 296, 1021, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 35, 0, 36, 285, 0, 206, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 0, 0, 0, 0, 296, 380, 298, 299, 300, 301, 204, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 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, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 207, 31, 0, 0, 0, 0, 0, 0, 270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 206, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 207, 0, 0, 0, 0, 0, 0, 0, 208, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 34, 0, 35, 0, 36, 0, 31, 38, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 109, 0, 38, 39, -402, 687, 31, 0, 0, 0, 0, 41, 42, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 44, 0, 38, 39, 0, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1371, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 0, 0, 0, 0, 0, 0, 0, 634, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 0, 26, 27, 28, 34, 0, 35, 0, 36, 0, 31, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1373, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 687, -294, 0, 0, 0, 0, 41, 42, 634, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 338, 26, 27, 28, 0, 0, 0, 0, 110, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 269, 31, 0, 0, 0, 0, 0, 0, 629, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 687, 31, 0, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 599, 31, 0, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 206, 39, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 0, 0, 0, 0, 207, 0, 0, 0, 0, 0, 0, 0, 270, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 34, 0, 0, 0, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 525, 0, 0, 170, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 0, 285, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 336, 337, 40, 0, 294, 0, 599, -3, 0, 41, 42, 0, 0, 296, 600, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 338, 0, 26, 27, 28, 0, 0, 0, 110, 281, 282, 31, 283, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 284, 34, 0, 0, 31, 453, 649, 0, 38, 39, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, -35, 766, 0, 0, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 454, 0, 26, 27, 28, 0, 0, 0, 110, 281, 282, 31, 283, 0, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 284, 34, 26, 27, 28, 0, 285, 0, 38, 39, 286, 31, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 295, 38, 39, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 643, 0, 338, 0, 281, 282, 31, 283, 0, 0, 110, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 284, 34, 26, 27, 28, 0, 285, 0, 38, 39, 286, 31, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 156, 38, 39, 0, 0, 0, 0, 296, 297, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 643, 0, 338, 0, 281, 282, 31, 283, 0, 0, 634, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 284, 34, 26, 27, 28, 0, 285, 0, 38, 39, 286, 31, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 599, 38, 39, 0, 0, 0, 0, 296, 600, 298, 299, 300, 301, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 256, 0, 281, 282, 31, 283, 0, 0, 110, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 284, 34, 26, 27, 28, 0, 285, 0, 38, 39, 286, 31, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 294, 0, 378, 38, 39, 0, 0, 0, 0, 296, 380, 298, 299, 300, 301, 474, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 156, 0, 26, 27, 28, 0, 0, 0, 110, 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, 0, 38, 39, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 37, 0, 38, 39, 40, 31, 0, 0, 0, -3, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 43, 37, 156, 38, 39, 40, 31, 0, 0, 0, 45, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 43, 37, 44, 206, 39, 40, 31, 0, 0, 0, 45, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 34, 26, 27, 28, 43, 37, 269, 336, 337, 40, 31, 0, 0, 0, 208, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 643, 0, 338, 38, 39, 0, 0, -294, 0, 0, 634, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 643, 0, 338, 31, 453, 0, 0, 0, 0, 0, 634, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -294, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 453, 0, 0, 454, 38, 39, 0, 711, -294, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 338, 0, 0, 0, 0, 0, 0, 0, 110, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 454, 26, 27, 28, 1109, 0, 0, 0, 110, 0, 31, 453, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 34, 0, 0, 31, 0, 0, 0, 38, 39, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 206, 39, 0, 31, 0, 0, 454, 0, 0, 0, 1236, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 269, 38, 39, 0, 0, 0, 0, 0, 270, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 256, 31, 0, 0, 0, 0, 0, 0, 634, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 338, 38, 39, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 206, 39, 0, 0, 0, 0, 0, 454, 0, 0, 0, 0, 0, 0, 0, 110, 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, 0, 0, 629, 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, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 34, 26, 27, 28, 0, 0, 0, 38, 39, 0, 31, 0, 0, 0, 599, 0, 0, 0, 0, 0, 0, 0, 634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 338, 38, 39, 0, 0, 0, 0, 0, 110, 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, 44, 0, 0, 0, 0, 0, 31, 0, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 281, 282, 0, 283, 1063, 0, 1064, 0, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 1551, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 0, 0, 0, 0, -415, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 1077, 0, 281, 282, -129, 283, 1063, 0, 1064, 0, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 0, 0, 0, 0, 0, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 1077, 0, 0, 0, -129, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 281, 282, 0, 283, 1063, 0, 1064, 1421, 1422, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 1551, 1073, 0, 0, 0, 1074, 1075, 34, 33, 35, 284, 36, 0, 0, 38, 39, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 1330, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 281, 282, 1077, 283, 1063, 0, 1064, 1421, 1422, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 0, 0, 0, 0, 0, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 0, 0, 281, 282, 1077, 283, 1063, 0, 1064, 0, 0, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 0, 0, 0, 1073, 0, 0, 0, 1074, 1075, 0, 33, 0, 284, 0, 0, 0, 0, 0, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 170, 0, 0, 0, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 1077, 0, 649, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 281, 282, 0, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 785, 0, 0, 281, 282, 0, 283, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 284, 291, 292, 0, 0, 0, 285, 0, 0, 293, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 294, 0, 378, 0, 293, 281, 282, 0, 283, 296, 827, 298, 299, 300, 301, 0, 0, 0, 0, 513, 0, 0, 0, 0, 281, 282, 0, 283, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 284, 291, 292, 0, 0, 0, 285, 0, 0, 293, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 294, 0, 0, 0, 293, 281, 282, 0, 283, 296, 380, 298, 299, 300, 301, 0, 0, 0, 0, 518, 0, 0, 0, 0, 0, 0, 0, 0, 296, 380, 298, 299, 300, 301, 284, 0, 0, 0, 0, 0, 285, 0, 0, 0, 286, 0, 0, 287, 288, 289, 290, 41, 42, 0, 291, 292, 0, 0, 0, 0, 0, 0, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 521, 0, 0, 0, 0, 0, 0, 0, 0, 296, 380, 298, 299, 300, 301, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 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, 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, 474, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 2, 205, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 492, 493, 494, 34, 0, 35, 31, 36, 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) == (-1332)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 0, 203, 184, 184, 520, 698, 238, 43, 115, 184, 1, 698, 43, 43, 543, 185, 629, 0, 104, 218, 184, 280, 185, 456, 455, 698, 348, 29, 30, 184, 32, 184, 32, 1062, 184, 902, 167, 168, 609, 348, 1, 43, 656, 45, 278, 45, 1043, 611, 1006, 32, 1042, 1043, 32, 55, 497, 0, 759, 611, 28, 61, 612, 61, 64, 609, 64, 67, 618, 67, 154, 609, 499, 579, 1340, 718, 503, 999, 67, 609, 609, 81, 82, 780, 264, 264, 777, 51, 186, 32, 1421, 264, 777, 609, 82, 200, 1425, 265, 344, 1055, 529, 39, 264, 902, 265, 105, 777, 0, 108, 39, 78, 264, 417, 264, 609, 115, 264, 0, 43, 72, 43, 45, 363, 643, 644, 645, 367, 489, 44, 45, 83, 84, 437, 64, 0, 43, 82, 39, 227, 32, 445, 39, 662, 44, 45, 109, 146, 95, 146, 32, 184, 0, 1, 39, 154, 184, 184, 246, 111, 159, 63, 159, 260, 261, 1495, 111, 32, 44, 45, 1477, 109, 64, 613, 111, 85, 495, 617, 1443, 109, 109, 30, 111, 130, 32, 184, 185, 110, 185, 4, 5, 6, 7, 8, 9, 1523, 109, 39, 638, 114, 1528, 200, 642, 113, 255, 1512, 39, 1514, 109, 208, 111, 208, 294, 409, 114, 744, 64, 736, 217, 67, 1548, 220, 145, 220, 109, 902, 111, 1555, 227, 744, 132, 264, 81, 82, 96, 82, 264, 264, 405, 115, 11, 644, 645, 242, 489, 405, 82, 246, 109, 1243, 744, 250, 251, 250, 69, 511, 71, 112, 341, 662, 184, 123, 184, 110, 1062, 264, 265, 109, 265, 111, 250, 839, 271, 250, 0, 1, 109, 184, 111, 278, 1306, 117, 643, 644, 645, 208, 928, 370, 455, 0, 851, 395, 841, 251, 293, 455, 839, 114, 107, 1293, 851, 662, 839, 1292, 1293, 611, 32, 3, 250, 828, 839, 839, 82, 1009, 819, 238, 110, 132, 116, 423, 487, 32, 131, 117, 839, 429, 116, 487, 220, 328, 116, 328, 43, 736, 45, 293, 697, 82, 1259, 109, 951, 67, 132, 425, 426, 839, 132, 270, 347, 348, 61, 425, 426, 64, 116, 600, 67, 597, 250, 699, 55, 90, 91, 1227, 109, 364, 417, 72, 250, 368, 132, 1071, 220, 255, 297, 736, 1074, 1075, 83, 84, 379, 721, 109, 110, 629, 250, 437, 691, 1065, 634, 255, 959, 96, 242, 445, 109, 395, 126, 127, 960, 640, 110, 250, 72, 109, 3, 405, 116, 405, 82, 105, 1021, 773, 108, 83, 84, 959, 131, 116, 123, 676, 344, 959, 1417, 423, 828, 109, 501, 1417, 1227, 429, 513, 431, 873, 68, 146, 518, 110, 72, 521, 1466, 75, 1528, 77, 117, 1143, 520, 1473, 159, 532, 84, 1528, 697, 72, 1409, 1410, 455, 349, 121, 122, 72, 460, 1548, 132, 83, 84, 109, 828, 111, 1555, 116, 83, 84, 184, 185, 474, 119, 110, 1555, 116, 479, 1030, 1031, 699, 117, 112, 132, 0, 487, 116, 487, 1004, 491, 575, 491, 132, 495, 208, 131, 498, 1526, 500, 425, 426, 0, 721, 762, 119, 1306, 220, 938, 491, 586, 132, 88, 89, 474, 947, 946, 698, 698, 520, 217, 131, 250, 965, 698, 758, 773, 657, 379, 1142, 851, 700, 80, 417, 109, 698, 537, 250, 700, 540, 968, 542, 543, 851, 698, 72, 698, 491, 1227, 698, 417, 264, 116, 437, 1117, 109, 83, 84, 664, 110, 520, 445, 992, 111, 109, 113, 117, 666, 132, 117, 437, 115, 116, 110, 271, 211, 501, 537, 445, 116, 540, 278, 542, 543, 111, 109, 480, 131, 830, 590, 116, 3, 834, 109, 812, 520, 597, 491, 10, 11, 12, 13, 14, 109, 1306, 489, 132, 491, 609, 460, 611, 696, 116, 53, 72, 328, 598, 116, 4, 5, 6, 7, 8, 9, 491, 83, 84, 39, 132, 630, 590, 110, 116, 132, 119, 348, 978, 116, 691, 124, 125, 491, 112, 964, 1323, 646, 116, 498, 132, 500, 347, 652, 116, 111, 110, 67, 96, 0, 1, 1498, 661, 586, 663, 664, 665, 1504, 1466, 364, 132, 80, 1102, 368, 890, 1473, 129, 600, 131, 116, 116, 1042, 733, 1383, 924, 69, 72, 71, 1525, 772, 110, 32, 888, 1530, 405, 132, 132, 83, 84, 698, 1377, 700, 111, 1380, 113, 663, 629, 665, 117, 112, 109, 634, 111, 909, 713, 116, 110, 351, 112, 353, 719, 110, 116, 64, 723, 111, 67, 116, 1526, 110, 110, 132, 731, 45, 110, 116, 116, 131, 132, 631, 109, 970, 111, 110, 455, 744, 745, 112, 1425, 61, 119, 116, 64, 1430, 192, 67, 112, 72, 110, 758, 116, 76, 978, 72, 116, 491, 894, 76, 83, 84, 1470, 938, 1472, 731, 83, 84, 1021, 215, 938, 946, 491, 112, 110, 1460, 495, 116, 946, 225, 10, 11, 12, 13, 14, 1009, 109, 1135, 1322, 92, 93, 110, 109, 1162, 111, 652, 119, 116, 110, 441, 72, 691, 119, 109, 116, 111, 155, 697, 109, 39, 111, 83, 84, 10, 11, 12, 13, 14, 691, 1527, 109, 109, 111, 513, 724, 515, 146, 1034, 518, 1133, 119, 521, 839, 1137, 1532, 1059, 110, 67, 738, 159, 1532, 109, 39, 733, 851, 1193, 1194, 835, 294, 115, 116, 110, 110, 110, 1532, 1103, 713, 116, 116, 116, 733, 1546, 719, 116, 117, 185, 723, 1552, 115, 1133, 67, 220, 109, 1137, 1138, 109, 110, 111, 1563, 109, 132, 111, 1567, 773, 703, 110, 705, 894, 208, 119, 609, 116, 611, 72, 901, 902, 110, 76, 110, 111, 220, 250, 116, 64, 83, 84, 110, 1, 109, 1162, 111, 1135, 116, 72, 902, 74, 75, 924, 85, 86, 87, 1057, 109, 1292, 83, 84, 72, 630, 74, 75, 109, 938, 832, 58, 59, 110, 902, 83, 84, 946, 119, 116, 109, 646, 111, 109, 113, 114, 110, 112, 109, 45, 132, 110, 116, 114, 110, 964, 661, 116, 115, 116, 116, 109, 114, 109, 680, 111, 114, 1193, 1194, 114, 72, 969, 74, 75, 76, 984, 109, 698, 111, 700, 114, 83, 84, 109, 993, 111, 109, 1253, 1243, 109, 110, 111, 1001, 132, 442, 1004, 109, 1006, 111, 82, 902, 72, 132, 74, 75, 109, 328, 109, 104, 111, 902, 1125, 83, 84, 110, 117, 984, 119, 72, 109, 74, 75, 82, 744, 745, 116, 117, 902, 476, 83, 84, 112, 109, 1001, 111, 894, 1004, 970, 1006, 109, 110, 111, 901, 114, 902, 120, 1055, 116, 117, 145, 109, 110, 111, 758, 1404, 128, 1065, 111, 154, 1068, 1069, 1070, 58, 59, 60, 513, 1265, 1266, 1267, 1507, 518, 1421, 1062, 521, 72, 1341, 74, 75, 76, 1345, 129, 432, 94, 405, 1093, 83, 84, 1055, 1021, 44, 45, 10, 11, 12, 13, 14, 131, 1065, 111, 815, 1068, 1069, 1070, 564, 565, 566, 567, 109, 204, 825, 109, 969, 208, 110, 1206, 1207, 1125, 1209, 839, 1557, 39, 112, 1024, 1215, 840, 72, 1218, 74, 75, 1222, 851, 560, 561, 112, 993, 110, 83, 84, 562, 563, 491, 110, 238, 239, 1494, 1495, 110, 72, 67, 74, 75, 76, 110, 72, 110, 74, 75, 76, 83, 84, 1062, 568, 569, 109, 83, 84, 902, 112, 111, 131, 1062, 112, 114, 109, 270, 114, 116, 273, 1404, 114, 112, 1447, 533, 110, 109, 45, 111, 1062, 110, 112, 109, 1200, 111, 117, 119, 1421, 112, 112, 294, 112, 119, 297, 29, 117, 1062, 117, 116, 1205, 110, 110, 114, 117, 112, 1222, 110, 132, 115, 938, 1227, 3, 115, 115, 109, 116, 110, 946, 10, 11, 12, 13, 14, 679, 110, 969, 1093, 116, 110, 1227, 117, 110, 688, 110, 110, 964, 692, 341, 116, 598, 344, 1247, 110, 110, 110, 3, 110, 39, 1265, 1266, 1267, 1227, 10, 11, 12, 13, 14, 110, 110, 363, 1494, 1495, 1162, 367, 110, 110, 370, 10, 11, 12, 13, 14, 110, 110, 110, 67, 110, 110, 1400, 1379, 110, 39, 29, 115, 643, 644, 645, 131, 112, 1265, 1266, 1267, 110, 110, 1204, 1542, 39, 110, 110, 114, 116, 112, 112, 662, 110, 1322, 1323, 110, 1306, 67, 110, 116, 110, 117, 116, 1039, 1040, 1227, 1062, 116, 116, 425, 426, 112, 67, 116, 110, 1227, 110, 112, 85, 86, 87, 1200, 1340, 1532, 1532, 109, 1204, 1205, 208, 109, 1532, 1243, 1227, 109, 1322, 1323, 1533, 453, 109, 112, 456, 1532, 109, 1533, 111, 109, 113, 114, 1377, 1227, 1532, 1380, 1532, 132, 109, 1532, 111, 117, 474, 239, 1557, 1097, 1098, 115, 119, 736, 110, 1557, 110, 1247, 1399, 1400, 115, 1507, 110, 129, 115, 114, 112, 1301, 1409, 1410, 132, 499, 1306, 501, 110, 503, 116, 1377, 270, 112, 1380, 116, 1306, 112, 1425, 513, 110, 515, 110, 1430, 518, 110, 520, 521, 112, 471, 112, 112, 110, 1306, 47, 112, 294, 112, 532, 297, 112, 1448, 115, 1409, 1410, 1301, 132, 1443, 110, 132, 1306, 115, 132, 1460, 117, 110, 132, 115, 132, 1425, 112, 112, 112, 112, 1430, 72, 112, 74, 75, 76, 112, 1205, 112, 112, 110, 110, 83, 84, 1466, 828, 926, 112, 1448, 112, 1340, 1473, 835, 0, 1, 109, 109, 1532, 586, 1227, 1460, 109, 1532, 1532, 60, 110, 1507, 1508, 109, 597, 111, 55, 600, 110, 114, 132, 1517, 112, 119, 1247, 112, 117, 1523, 110, 112, 32, 110, 1528, 96, 96, 109, 1532, 1533, 109, 1533, 115, 110, 112, 45, 132, 110, 629, 42, 116, 1526, 1546, 634, 1548, 1508, 110, 110, 1552, 640, 117, 1555, 132, 1557, 1517, 1557, 902, 67, 105, 1563, 1523, 108, 1273, 1567, 132, 1528, 110, 110, 96, 1466, 1281, 1282, 1283, 96, 132, 1306, 1473, 110, 110, 1466, 132, 117, 132, 1546, 110, 1548, 1473, 112, 110, 1552, 1443, 115, 1555, 132, 104, 112, 1466, 109, 453, 115, 1563, 456, 132, 1473, 1567, 696, 115, 154, 110, 1340, 64, 110, 132, 1466, 1542, 110, 110, 1077, 1329, 571, 1473, 570, 1227, 969, 572, 64, 64, 718, 573, 1526, 1073, 574, 1495, 1385, 1567, 74, 146, 1316, 1138, 1526, 986, 680, 1473, 81, 154, 155, 1345, 1093, 705, 946, 4, 5, 6, 7, 8, 9, 1526, 748, 513, 453, 515, 471, 116, 518, 723, 453, 521, 948, 993, 590, 217, 894, 966, 1526, 658, 185, 1247, 116, 116, 33, 578, 772, 491, 758, 10, 11, 12, 13, 14, -1, 200, 578, 748, 203, 204, 578, 1042, 1043, 208, 1399, -1, -1, -1, -1, -1, 159, -1, -1, -1, -1, -1, -1, 1443, 39, -1, 69, 1062, 71, -1, 229, 159, 159, -1, 233, 271, 235, 72, -1, 74, 75, 76, 278, -1, -1, 244, 1466, -1, 83, 84, 830, 250, 67, 1473, 834, -1, 255, 72, -1, 74, 75, 76, -1, -1, -1, -1, 265, -1, 83, 84, -1, -1, -1, -1, 273, 283, -1, 220, -1, -1, -1, -1, -1, 26, 27, 28, -1, 815, 296, 297, -1, -1, 220, 220, 109, -1, 111, 825, -1, -1, 308, -1, -1, -1, 119, -1, 1526, -1, -1, -1, -1, 347, 840, -1, -1, 258, -1, -1, -1, 262, 10, 11, 12, 13, 14, -1, -1, 1532, 364, -1, 258, 258, 368, -1, 262, 262, 344, -1, -1, -1, -1, -1, 341, -1, 924, 344, -1, -1, 928, 39, 278, 350, -1, -1, 97, -1, 99, -1, -1, -1, -1, -1, -1, -1, 363, -1, -1, 947, 367, 1204, 1205, 370, 380, -1, 718, -1, -1, 67, -1, -1, -1, 680, 72, 1315, 74, 75, 76, -1, 968, 969, 970, -1, 1227, 83, 84, 431, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, 349, -1, 83, 84, -1, -1, 1247, 72, -1, 74, 75, 76, 417, 109, -1, 349, 349, -1, 83, 84, -1, -1, 72, 119, 74, 75, 76, 432, 109, -1, 111, 180, 437, 83, 84, 1021, -1, -1, 119, -1, 445, 190, 191, -1, 109, -1, 195, -1, 197, 198, -1, 1292, 1293, -1, 119, -1, -1, -1, -1, 109, 1301, -1, -1, -1, -1, 1306, 471, -1, -1, 474, -1, 51, -1, 53, -1, -1, 56, 57, 58, -1, 60, 430, -1, -1, 489, -1, 491, -1, -1, -1, -1, -1, -1, -1, 499, 75, 430, 430, 503, 1340, 10, 11, 12, 13, 14, 1039, 1040, 87, 88, -1, 815, -1, -1, 447, -1, -1, 1102, 1103, -1, -1, 825, 72, -1, 74, 75, 76, -1, 532, 533, 39, -1, 480, 83, 84, -1, 840, 1474, -1, 1476, -1, -1, -1, -1, 557, 558, 559, 480, 480, 72, -1, 74, 75, 76, -1, -1, 597, -1, 67, 109, 83, 84, -1, -1, 1097, 1098, -1, -1, -1, 119, -1, -1, -1, -1, 1511, 579, 1513, 1417, -1, 928, -1, -1, -1, -1, -1, -1, 109, 600, -1, 630, -1, -1, -1, 597, 598, -1, 600, -1, 947, -1, 109, -1, 111, 1443, -1, 646, -1, 611, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, 1556, 661, 1558, -1, -1, -1, 629, 1466, -1, -1, -1, 634, -1, -1, 1473, 1571, 1572, 640, 1222, -1, 643, 644, 645, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, -1, -1, 603, -1, -1, 662, -1, -1, -1, 1247, -1, -1, -1, -1, -1, -1, -1, 603, 603, -1, -1, -1, -1, 680, -1, -1, -1, -1, -1, -1, 631, 32, -1, 1526, 691, 636, -1, -1, -1, 696, 697, -1, -1, 700, -1, 631, 631, -1, -1, -1, 636, 636, -1, -1, -1, 1241, -1, -1, -1, -1, -1, -1, -1, -1, 758, -1, 67, -1, 734, -1, -1, -1, -1, -1, -1, -1, 733, -1, -1, 736, -1, -1, 1039, 1040, -1, -1, -1, 1273, 745, -1, -1, 748, -1, -1, -1, 1281, 1282, 1283, -1, -1, 1102, -1, 1340, -1, -1, -1, -1, -1, -1, -1, -1, -1, 344, 345, 780, 772, 773, -1, -1, -1, -1, 778, -1, 724, 356, 357, -1, -1, 26, 27, 28, -1, -1, -1, -1, -1, -1, 738, 724, 724, 1097, 1098, -1, 1329, -1, -1, -1, -1, -1, -1, -1, -1, 738, 738, 155, -1, -1, -1, 815, -1, -1, 827, -1, -1, -1, -1, -1, -1, 825, -1, -1, 828, 758, 830, -1, -1, 833, 834, 835, -1, -1, 582, 583, 840, -1, -1, -1, -1, -1, -1, -1, -1, -1, 850, -1, -1, -1, -1, -1, 97, -1, 99, -1, -1, -1, 1443, 10, 11, 12, 13, 14, 612, -1, -1, 615, 616, -1, 618, -1, 620, 621, -1, -1, -1, 625, 626, 124, -1, 229, -1, 924, 832, -1, -1, -1, 39, -1, 1475, -1, 1477, -1, -1, -1, -1, -1, 902, 832, 832, -1, 250, -1, -1, -1, -1, 255, 188, -1, -1, -1, -1, -1, -1, 195, 67, -1, -1, -1, 924, 72, -1, 74, 75, 76, -1, 1512, -1, 1514, -1, -1, 83, 84, -1, 180, -1, 1241, -1, -1, -1, -1, -1, 188, -1, 190, 191, -1, -1, -1, 195, -1, 197, 198, -1, -1, 960, 1542, 109, -1, 111, 709, 710, -1, 968, 969, -1, 715, 119, 1273, -1, 10, 11, 12, 13, 14, -1, 1281, 1282, 1283, -1, -1, 986, -1, -1, -1, -1, 267, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 39, -1, 350, -1, -1, -1, -1, -1, 1021, -1, -1, -1, -1, -1, -1, -1, -1, 1021, -1, -1, 39, -1, 267, -1, -1, 1329, -1, -1, 67, -1, 1034, -1, -1, 72, -1, 1039, 1040, 76, 1042, 1043, -1, -1, -1, 323, 83, 84, -1, -1, 67, 1062, -1, 331, -1, 72, 334, 74, 75, 76, 1062, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, 417, 109, -1, -1, 0, -1, -1, 1024, -1, -1, -1, 119, -1, -1, -1, 432, -1, -1, -1, -1, 437, 109, 1024, 1024, 1097, 1098, -1, -1, 445, -1, 1103, 119, -1, -1, -1, -1, 32, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 397, -1, -1, -1, 401, -1, 471, -1, -1, 1475, -1, 1477, -1, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 67, 489, -1, 491, -1, -1, 725, -1, 727, -1, -1, -1, -1, -1, -1, 734, 735, -1, 1162, -1, 739, -1, -1, 1512, 131, 1514, 1179, 10, 11, 12, 13, 14, 751, -1, -1, -1, -1, 756, -1, -1, -1, 1222, -1, -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 1205, -1, 782, -1, -1, 486, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1222, -1, -1, -1, -1, 1227, 67, -1, -1, -1, 155, 72, -1, -1, -1, 76, -1, -1, -1, 1241, -1, 1243, 83, 84, -1, 1247, -1, -1, -1, -1, 827, -1, 598, -1, -1, -1, -1, -1, 1204, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, -1, 1273, -1, 1204, 1204, -1, -1, -1, 119, 1281, 1282, 1283, -1, -1, -1, -1, -1, -1, -1, -1, 1292, 1293, -1, -1, -1, -1, -1, 643, 644, 645, 578, 579, -1, -1, 1306, -1, -1, 884, 885, 886, 887, -1, 889, -1, -1, -1, 662, -1, -1, -1, -1, -1, -1, -1, -1, 250, -1, 1329, 905, -1, 255, -1, -1, -1, 680, -1, -1, -1, 1340, 582, 583, -1, 919, -1, -1, 691, -1, -1, -1, -1, -1, 697, -1, 1099, -1, 1301, -1, -1, -1, -1, 1399, -1, -1, -1, -1, -1, -1, -1, -1, 612, 1301, 1301, 615, 616, -1, 618, -1, 620, 621, -1, -1, 958, 625, 626, -1, -1, -1, 733, -1, 667, 736, -1, -1, 671, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, 1417, -1, -1, -1, -1, -1, 998, -1, 39, -1, 350, 704, 773, 1005, -1, -1, -1, -1, 1010, -1, -1, -1, -1, 1015, -1, 1017, 1443, -1, -1, 1021, 1022, 1023, -1, -1, 1026, -1, 67, -1, -1, -1, -1, -1, -1, 1035, -1, -1, 704, 78, -1, 1466, -1, 709, 710, -1, 815, -1, 1473, 715, -1, -1, -1, 1053, 1054, 1224, 825, -1, -1, 828, -1, -1, -1, -1, 833, -1, 835, -1, -1, 417, -1, 840, -1, -1, -1, -1, -1, -1, -1, -1, 1080, -1, -1, 1083, 432, -1, -1, -1, -1, 437, -1, -1, -1, -1, -1, -1, -1, 445, -1, -1, -1, 1526, -1, -1, -1, -1, -1, -1, 1533, -1, -1, -1, -1, -1, -1, -1, -1, -1, 819, -1, -1, -1, 1122, 471, -1, -1, -1, -1, 1128, 1129, -1, -1, -1, 902, -1, -1, -1, -1, -1, -1, 1140, 489, -1, 491, 0, 1145, -1, -1, 1148, -1, 1150, -1, -1, 1153, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1166, -1, -1, -1, -1, -1, -1, -1, -1, -1, 32, 37, 38, 1179, 40, 1181, 1182, 1183, 1184, 533, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1197, -1, 1199, -1, -1, -1, 1203, -1, -1, 66, -1, -1, -1, -1, 67, 72, -1, 74, 75, 76, 986, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 932, 1232, 1233, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 598, 111, -1, 113, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, 1039, 1040, -1, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1284, 1285, -1, -1, -1, -1, -1, -1, -1, 1062, 1294, 643, 644, 645, -1, 155, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1011, -1, -1, -1, 662, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1027, -1, 1097, 1098, -1, -1, 680, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 691, -1, -1, 1346, -1, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, 1358, -1, 1360, 1361, 1362, 37, 38, -1, 40, -1, -1, -1, -1, -1, 1372, -1, -1, -1, -1, -1, -1, -1, -1, 1381, -1, -1, -1, 733, -1, -1, 736, -1, -1, -1, 66, 1162, 250, -1, -1, 1397, 72, 255, -1, -1, 76, 1104, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, 0, 94, -1, -1, -1, -1, 773, -1, -1, -1, -1, -1, -1, -1, 1099, -1, 109, 1205, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, 32, -1, 1453, 1454, -1, -1, -1, 1227, -1, -1, -1, -1, -1, -1, -1, 1466, 815, -1, -1, -1, -1, 1241, 1473, 1243, -1, -1, 825, -1, -1, 828, -1, -1, -1, -1, 833, 67, 835, -1, -1, -1, -1, 840, -1, 350, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1273, -1, 1506, -1, -1, -1, 1510, -1, 1281, 1282, 1283, -1, -1, -1, -1, -1, -1, -1, -1, 1292, 1293, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1306, -1, 1539, -1, 1541, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 902, -1, -1, -1, 1224, -1, 1329, 417, -1, -1, -1, -1, -1, -1, -1, 1569, 1570, -1, -1, -1, 155, -1, 432, 1577, 1578, -1, -1, 437, -1, -1, -1, -1, -1, 0, -1, 445, 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, 471, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, 489, -1, 491, -1, -1, 986, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1417, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, 250, 83, 84, -1, -1, 255, -1, -1, 533, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 1039, 1040, -1, 1042, 1043, 109, 1466, 111, -1, -1, -1, -1, -1, 1473, -1, 119, -1, -1, 37, 38, 39, 40, -1, 1062, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, 66, 67, -1, -1, 598, -1, 72, 39, -1, -1, 76, 1097, 1098, 79, 80, 81, 82, 83, 84, 1526, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, 350, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 78, -1, -1, 643, 644, 645, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 662, -1, -1, -1, -1, -1, -1, -1, 1162, -1, -1, -1, -1, -1, -1, -1, -1, -1, 680, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 691, 417, -1, -1, -1, 45, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, 432, -1, -1, -1, -1, 437, 1205, -1, 64, -1, -1, -1, -1, 445, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 733, -1, 1227, 736, -1, -1, -1, -1, -1, -1, -1, -1, -1, 471, -1, -1, 1241, -1, 1243, -1, -1, -1, -1, -1, -1, -1, -1, -1, 110, -1, -1, 489, -1, 491, 116, -1, -1, -1, -1, -1, 773, -1, -1, -1, -1, -1, -1, -1, 1273, -1, -1, -1, -1, -1, -1, -1, 1281, 1282, 1283, -1, -1, -1, -1, 145, -1, -1, -1, 1292, 1293, -1, -1, -1, -1, 155, -1, 533, -1, 159, -1, -1, -1, 1306, 815, -1, -1, -1, -1, -1, -1, -1, -1, -1, 825, -1, -1, 828, -1, -1, -1, -1, 833, -1, 835, -1, 1329, -1, -1, 840, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 208, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 220, -1, 598, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 238, 239, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 902, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, 262, -1, -1, -1, -1, 643, 644, 645, 270, -1, -1, -1, 1417, -1, -1, -1, -1, -1, 281, -1, 283, 284, -1, -1, 662, -1, -1, -1, 291, 292, -1, -1, 294, 296, 297, 297, -1, 119, -1, -1, -1, -1, 680, -1, -1, 308, -1, -1, -1, -1, -1, -1, -1, 691, -1, -1, -1, -1, -1, 697, -1, 1466, 37, 38, -1, 40, -1, -1, 1473, -1, -1, -1, -1, 986, -1, -1, -1, -1, -1, -1, -1, 344, 344, -1, -1, -1, -1, 349, -1, -1, -1, 66, -1, -1, -1, 733, -1, 72, 736, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 380, -1, 94, -1, 1526, -1, -1, -1, -1, 1039, 1040, -1, 1042, 1043, -1, -1, -1, 109, 773, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 123, 1062, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, -1, 425, 426, -1, -1, -1, -1, 74, 432, 76, -1, 78, -1, -1, -1, 815, -1, -1, 85, -1, -1, -1, 1097, 1098, -1, 825, -1, -1, 828, 453, -1, -1, 456, 833, -1, 835, -1, -1, -1, -1, 840, -1, -1, -1, -1, -1, -1, -1, -1, 116, -1, 118, 119, 120, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 489, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 501, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1162, -1, 513, -1, 515, 159, -1, 518, -1, 520, 521, -1, -1, -1, -1, 902, -1, -1, -1, -1, -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1205, -1, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, -1, -1, 1227, 220, -1, 222, 223, 224, -1, -1, -1, -1, 586, -1, -1, -1, 1241, -1, 1243, -1, -1, -1, -1, -1, 598, 600, 600, -1, -1, 603, -1, -1, -1, -1, -1, -1, 986, -1, -1, -1, -1, 258, -1, -1, -1, 262, -1, -1, 1273, -1, -1, -1, -1, -1, -1, 629, 1281, 1282, 1283, -1, 634, 278, -1, -1, -1, -1, -1, 1292, 1293, 643, 644, 645, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1306, -1, -1, -1, -1, -1, -1, 662, 1039, 1040, -1, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1329, -1, -1, -1, -1, -1, -1, 328, 1062, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 697, 699, -1, -1, -1, -1, -1, -1, -1, 349, -1, -1, -1, -1, 354, 355, 44, -1, -1, -1, -1, 718, 362, 721, 1097, 1098, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 734, -1, -1, 736, -1, 738, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 90, -1, -1, 405, -1, -1, -1, 1417, -1, 39, 100, -1, -1, -1, 773, -1, -1, -1, -1, -1, 780, 423, -1, -1, -1, -1, 428, 1162, 430, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 447, -1, -1, 450, 451, -1, -1, 812, -1, -1, -1, 1466, -1, -1, -1, -1, -1, -1, 1473, 466, -1, 156, 827, -1, 828, 1205, -1, -1, 832, -1, -1, 835, -1, 480, -1, 170, -1, -1, -1, -1, 487, -1, -1, -1, -1, -1, -1, 1227, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 193, -1, -1, 1241, -1, 1243, -1, -1, -1, -1, -1, -1, -1, 1526, 207, -1, -1, -1, -1, -1, -1, -1, -1, 216, -1, -1, -1, -1, -1, -1, -1, -1, -1, 226, -1, 1273, -1, -1, -1, -1, -1, -1, -1, 1281, 1282, 1283, -1, -1, -1, -1, -1, -1, -1, -1, 1292, 1293, -1, -1, 251, -1, -1, -1, -1, 256, -1, -1, 928, -1, 1306, -1, -1, -1, -1, -1, -1, -1, 269, -1, -1, -1, -1, -1, 275, -1, 277, 947, -1, -1, -1, -1, -1, 1329, -1, -1, -1, -1, -1, -1, 603, -1, -1, -1, 295, -1, -1, -1, -1, -1, 970, -1, -1, -1, -1, -1, -1, 978, -1, -1, -1, -1, -1, -1, -1, -1, 986, -1, 631, -1, -1, -1, -1, 636, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 338, 1009, -1, -1, -1, 343, -1, -1, -1, -1, -1, -1, -1, 1021, 1021, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 371, 1417, 1042, 1043, 375, 376, -1, 378, -1, -1, -1, -1, -1, -1, 385, 386, -1, 388, 389, -1, 391, 1062, 393, -1, -1, -1, -1, -1, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 410, -1, 724, -1, -1, -1, -1, -1, 418, -1, -1, 1466, -1, -1, -1, -1, 738, -1, 1473, 37, 38, 39, 40, 1102, -1, -1, -1, -1, -1, -1, -1, -1, -1, 443, -1, -1, 758, -1, -1, -1, -1, -1, -1, -1, 454, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, 1135, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 477, 86, 87, -1, 1526, -1, 483, -1, -1, 94, -1, 488, -1, -1, -1, -1, 1162, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, 819, -1, 1179, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 832, -1, -1, 1193, 1194, 525, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1204, -1, -1, -1, 851, -1, 541, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 1243, 30, 31, 32, 578, -1, -1, -1, -1, -1, 39, -1, -1, 587, -1, -1, -1, -1, -1, -1, 594, -1, -1, -1, -1, 599, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 610, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, 1292, 1293, -1, 938, -1, 83, 84, -1, -1, 1301, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 651, 964, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 992, -1, -1, -1, -1, -1, -1, 687, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 1024, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 1035, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1404, -1, -1, -1, -1, -1, -1, -1, 742, -1, -1, -1, -1, -1, 1417, -1, 67, 1421, 752, 753, -1, -1, -1, 74, 75, -1, -1, 78, -1, -1, -1, -1, 766, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 783, -1, 785, -1, -1, -1, 789, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, 1117, 1475, -1, 1477, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1494, 1495, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, 1512, -1, 1514, -1, -1, -1, -1, -1, -1, -1, -1, -1, 855, -1, -1, -1, -1, -1, -1, 862, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, 1542, -1, 875, 76, 877, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, 891, 1204, -1, 94, -1, -1, -1, 898, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, 910, 111, -1, 913, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, 931, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 154, 155, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 188, -1, -1, -1, 1301, -1, -1, 195, -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, 1020, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 64, -1, -1, 67, -1, 69, 39, 71, 72, 267, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, 1076, -1, -1, -1, -1, -1, -1, 1083, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, 115, -1, -1, -1, 119, -1, 145, 1113, -1, -1, -1, -1, 1118, -1, 323, -1, 155, -1, -1, -1, 1126, -1, 331, 332, -1, 334, 335, -1, 167, 168, -1, -1, -1, -1, -1, 344, -1, -1, -1, 348, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1157, -1, -1, -1, -1, -1, -1, 367, -1, -1, 370, -1, 1169, -1, -1, 1172, -1, 1174, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, 1188, 1189, -1, -1, -1, -1, 397, -1, -1, -1, 401, -1, -1, -1, -1, -1, -1, 238, 66, -1, -1, -1, 1210, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, 432, 263, -1, -1, -1, 94, -1, -1, 1237, -1, -1, -1, -1, -1, -1, -1, 1557, -1, -1, -1, 109, -1, 111, 455, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 486, -1, -1, 489, -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, 28, -1, 30, 31, 32, 33, -1, -1, 36, -1, 529, 39, -1, 532, 533, -1, -1, -1, -1, 1335, -1, 1337, -1, -1, -1, -1, -1, -1, -1, -1, 379, -1, -1, -1, 1350, -1, 1352, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, -1, -1, -1, 1370, -1, -1, -1, -1, 578, 579, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1386, 1387, -1, -1, -1, -1, -1, -1, 597, 598, -1, 600, 1398, 111, -1, 1401, -1, -1, -1, -1, 609, 119, 611, 612, -1, -1, -1, -1, -1, 618, -1, -1, -1, -1, -1, -1, -1, 1423, -1, 628, 629, -1, -1, -1, -1, 634, 1432, -1, -1, 1435, -1, 1437, 1438, 1439, 643, 644, 645, -1, -1, -1, -1, -1, 481, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 662, -1, -1, -1, -1, 667, 668, -1, -1, 671, 672, -1, -1, -1, -1, -1, 678, -1, -1, -1, 1479, -1, 1481, -1, -1, 1484, -1, -1, 520, -1, -1, -1, -1, -1, 696, 697, 698, -1, 700, -1, 1499, 533, 704, -1, -1, -1, -1, -1, 540, -1, -1, 543, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 554, 555, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 736, 737, -1, -1, -1, -1, -1, -1, -1, -1, 576, -1, -1, -1, -1, -1, -1, -1, -1, -1, 586, -1, -1, -1, -1, -1, -1, 593, -1, -1, -1, -1, 598, -1, -1, -1, 772, 773, -1, -1, -1, 777, 778, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 648, 819, 39, 40, -1, -1, -1, -1, -1, 657, 828, -1, -1, -1, -1, -1, 834, 835, -1, -1, -1, 839, -1, 841, -1, -1, -1, 64, -1, -1, 67, -1, 69, 851, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 924, 30, 31, 32, -1, -1, -1, -1, 932, -1, 39, -1, -1, -1, 938, -1, -1, -1, -1, 773, -1, 775, 946, -1, -1, -1, -1, 781, -1, -1, -1, -1, -1, -1, 788, 959, 960, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 78, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, 986, -1, -1, -1, -1, -1, 992, -1, -1, -1, -1, -1, -1, -1, -1, -1, 832, 833, 109, 835, 111, -1, -1, -1, -1, 1011, 1012, -1, 119, -1, -1, -1, -1, -1, 850, 1021, -1, -1, -1, -1, -1, 1027, 1028, -1, 1030, 1031, 1032, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 890, -1, -1, -1, 894, 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, -1, 1103, 1104, 1105, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1117, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 970, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 986, 987, -1, -1, -1, -1, 1162, 993, -1, -1, -1, 37, 38, 999, 40, -1, 1002, 111, 1004, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1024, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, 1035, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 1222, -1, 94, 37, 38, 1057, 40, 1059, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 1243, 1074, 1075, -1, -1, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, 1095, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1292, 1293, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, 1143, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1162, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1177, 1178, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 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, -1, 61, 62, -1, 64, 1417, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, 1259, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, -1, -1, 132, -1, -1, -1, -1, -1, 1320, -1, 1322, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1507, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 1532, 1533, -1, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1557, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, 1408, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, 119, 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, 1490, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, -1, -1, 1542, -1, 132, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, 72, -1, 74, 75, 110, 111, 39, -1, -1, -1, -1, 83, 84, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, 111, -1, 74, 75, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, 111, 78, -1, -1, -1, -1, 83, 84, 119, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, -1, -1, 119, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, -1, 111, 112, -1, 83, 84, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 111, -1, 30, 31, 32, -1, -1, -1, 119, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, -1, 39, 40, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, 110, 111, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 111, -1, 30, 31, 32, -1, -1, -1, 119, 37, 38, 39, 40, -1, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 109, -1, 111, -1, 37, 38, 39, 40, -1, -1, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 109, -1, 111, -1, 37, 38, 39, 40, -1, -1, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 111, -1, 37, 38, 39, 40, -1, -1, 119, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 66, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 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, 111, -1, 30, 31, 32, -1, -1, -1, 119, -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, -1, 74, 75, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, 72, -1, 74, 75, 76, 39, -1, -1, -1, 114, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, -1, -1, 119, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, -1, -1, 119, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, 109, 72, 111, 74, 75, 76, 39, -1, -1, -1, 119, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 109, -1, 111, 74, 75, -1, -1, 78, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, 109, -1, 111, 39, 40, -1, -1, -1, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, 40, -1, -1, 111, 74, 75, -1, 115, 78, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, -1, -1, 119, -1, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, 67, -1, -1, 39, -1, -1, -1, 74, 75, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, -1, -1, 111, -1, -1, -1, 115, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 111, 74, 75, -1, -1, -1, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, 111, 39, -1, -1, -1, -1, -1, -1, 119, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, 111, 74, 75, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, -1, -1, 119, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 67, 30, 31, 32, -1, -1, -1, 74, 75, -1, 39, -1, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, 111, 74, 75, -1, -1, -1, -1, -1, 119, 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, 111, -1, -1, -1, -1, -1, 39, -1, 119, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, 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, 110, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, 37, 38, 132, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 128, -1, -1, -1, 132, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, 37, 38, -1, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, 56, 57, -1, -1, -1, 61, 62, 67, 64, 69, 66, 71, -1, -1, 74, 75, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 96, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, -1, -1, 37, 38, 128, 40, 41, -1, 43, -1, -1, 46, 47, 48, 49, 50, 51, 52, 53, -1, -1, -1, 57, -1, -1, -1, 61, 62, -1, 64, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, -1, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, 128, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 94, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, -1, -1, -1, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, 66, 86, 87, -1, -1, -1, 72, -1, -1, 94, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, 94, 37, 38, -1, 40, 118, 119, 120, 121, 122, 123, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, -1, 118, 119, 120, 121, 122, 123, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, -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, 83, 84, 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, 83, 84, 109, 111, 119, 137, 140, 197, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 230, 231, 232, 233, 234, 235, 236, 237, 239, 240, 241, 242, 243, 244, 246, 254, 255, 282, 283, 284, 292, 295, 301, 302, 304, 306, 307, 313, 318, 322, 323, 324, 325, 326, 327, 328, 329, 349, 366, 367, 368, 369, 72, 119, 139, 140, 214, 216, 224, 226, 236, 240, 242, 283, 82, 109, 311, 312, 313, 311, 311, 72, 74, 75, 76, 138, 139, 272, 273, 293, 294, 74, 75, 273, 109, 304, 11, 198, 109, 119, 318, 323, 324, 325, 327, 328, 329, 112, 134, 111, 217, 224, 226, 322, 326, 365, 366, 369, 370, 135, 107, 131, 276, 114, 135, 172, 74, 75, 137, 271, 135, 135, 135, 116, 135, 74, 75, 109, 119, 308, 317, 318, 319, 320, 321, 322, 326, 330, 331, 332, 333, 334, 340, 3, 28, 78, 238, 3, 5, 74, 111, 119, 216, 227, 231, 234, 243, 284, 322, 326, 369, 214, 216, 226, 236, 240, 242, 283, 322, 326, 33, 232, 232, 227, 234, 135, 232, 227, 232, 227, 75, 109, 114, 273, 284, 114, 273, 232, 227, 116, 135, 135, 0, 134, 109, 172, 311, 311, 134, 111, 224, 226, 367, 271, 271, 226, 131, 109, 119, 308, 318, 322, 111, 119, 369, 305, 229, 313, 109, 289, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 94, 109, 111, 118, 119, 120, 121, 122, 123, 136, 140, 141, 142, 143, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 163, 165, 224, 275, 291, 365, 370, 226, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 224, 271, 349, 367, 111, 119, 163, 216, 217, 223, 226, 230, 231, 236, 239, 240, 242, 261, 262, 266, 267, 268, 269, 283, 349, 361, 362, 363, 364, 369, 370, 112, 109, 322, 326, 369, 109, 116, 132, 111, 114, 119, 163, 277, 277, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 311, 132, 318, 319, 320, 321, 331, 332, 333, 334, 226, 317, 330, 64, 310, 111, 311, 348, 349, 311, 311, 172, 134, 109, 311, 348, 311, 311, 226, 308, 109, 109, 225, 226, 224, 226, 112, 134, 224, 365, 370, 172, 134, 271, 276, 216, 231, 322, 326, 172, 134, 293, 226, 236, 132, 226, 226, 291, 40, 111, 224, 247, 248, 249, 250, 365, 369, 245, 257, 273, 256, 226, 293, 132, 132, 304, 134, 139, 270, 3, 135, 206, 207, 221, 223, 226, 134, 310, 109, 310, 163, 318, 226, 109, 134, 271, 114, 33, 34, 35, 224, 285, 286, 288, 134, 129, 131, 290, 134, 227, 233, 234, 271, 314, 315, 316, 109, 141, 109, 148, 109, 148, 150, 109, 148, 109, 109, 148, 148, 139, 111, 163, 168, 172, 224, 274, 365, 112, 134, 150, 150, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 131, 167, 150, 119, 124, 125, 121, 122, 88, 89, 90, 91, 126, 127, 92, 93, 120, 128, 129, 94, 95, 130, 131, 372, 109, 119, 344, 345, 346, 347, 348, 110, 116, 109, 348, 349, 109, 348, 349, 134, 109, 224, 367, 112, 134, 111, 119, 135, 224, 226, 360, 361, 369, 370, 135, 109, 111, 119, 318, 335, 336, 337, 338, 339, 340, 341, 342, 343, 349, 350, 351, 352, 353, 354, 355, 119, 369, 226, 135, 135, 119, 224, 226, 362, 271, 224, 349, 362, 271, 109, 134, 134, 134, 112, 134, 72, 80, 111, 113, 140, 273, 277, 278, 279, 280, 281, 134, 134, 134, 134, 134, 134, 308, 110, 110, 110, 110, 110, 110, 110, 317, 330, 109, 276, 112, 206, 134, 308, 168, 275, 168, 275, 308, 111, 206, 310, 172, 134, 206, 110, 249, 250, 112, 134, 109, 117, 119, 251, 253, 317, 318, 330, 348, 356, 357, 358, 359, 115, 248, 116, 132, 116, 132, 273, 114, 116, 371, 131, 258, 114, 226, 263, 264, 265, 268, 269, 110, 116, 172, 134, 119, 163, 134, 223, 226, 262, 361, 369, 302, 303, 109, 119, 335, 110, 116, 372, 273, 285, 109, 114, 273, 275, 285, 110, 116, 109, 141, 110, 117, 274, 274, 274, 111, 139, 145, 163, 275, 274, 112, 134, 110, 116, 110, 109, 119, 356, 110, 116, 163, 111, 139, 111, 144, 145, 134, 111, 139, 144, 163, 163, 150, 150, 150, 151, 151, 152, 152, 153, 153, 153, 153, 154, 154, 155, 156, 157, 158, 159, 117, 168, 163, 134, 345, 346, 347, 226, 344, 311, 311, 163, 275, 134, 270, 119, 134, 224, 349, 362, 226, 230, 112, 134, 112, 369, 112, 109, 134, 318, 336, 337, 338, 341, 351, 352, 353, 112, 134, 226, 335, 339, 350, 109, 311, 354, 372, 311, 311, 372, 109, 311, 354, 311, 311, 311, 311, 349, 224, 360, 370, 271, 112, 116, 112, 116, 372, 224, 362, 372, 259, 260, 261, 262, 259, 259, 271, 163, 134, 111, 273, 117, 116, 371, 277, 80, 111, 117, 281, 29, 208, 209, 271, 259, 139, 308, 139, 310, 109, 348, 349, 109, 348, 349, 141, 349, 172, 263, 110, 110, 110, 110, 112, 172, 206, 172, 114, 132, 132, 111, 318, 357, 358, 359, 161, 162, 226, 356, 252, 253, 252, 311, 311, 273, 311, 247, 273, 115, 162, 257, 135, 135, 139, 221, 135, 135, 259, 109, 119, 369, 135, 115, 226, 286, 287, 135, 134, 134, 109, 135, 110, 315, 168, 169, 117, 132, 111, 141, 199, 200, 201, 110, 116, 110, 134, 117, 110, 110, 110, 163, 226, 114, 150, 165, 163, 164, 166, 116, 135, 134, 134, 110, 116, 163, 134, 115, 161, 117, 263, 110, 110, 110, 344, 263, 110, 259, 224, 362, 111, 119, 163, 163, 226, 341, 263, 110, 110, 110, 110, 110, 110, 110, 7, 226, 335, 339, 350, 134, 134, 372, 134, 134, 110, 135, 135, 135, 135, 276, 135, 161, 162, 163, 309, 134, 277, 279, 115, 134, 210, 273, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 111, 128, 139, 169, 170, 171, 172, 173, 174, 176, 177, 189, 191, 192, 197, 211, 307, 29, 135, 131, 276, 134, 134, 110, 135, 172, 247, 112, 110, 110, 110, 356, 251, 115, 258, 371, 110, 116, 112, 112, 135, 226, 116, 372, 289, 110, 285, 214, 216, 224, 297, 298, 299, 300, 291, 110, 110, 117, 162, 109, 110, 117, 116, 139, 163, 163, 278, 116, 135, 166, 112, 139, 146, 147, 163, 145, 135, 146, 161, 165, 135, 109, 348, 349, 135, 135, 134, 135, 135, 135, 163, 110, 135, 109, 348, 349, 109, 354, 109, 354, 349, 225, 7, 119, 135, 163, 263, 263, 262, 266, 266, 267, 116, 116, 110, 110, 112, 96, 123, 135, 135, 146, 277, 163, 116, 132, 211, 215, 226, 230, 109, 109, 170, 109, 109, 132, 139, 132, 139, 119, 139, 169, 109, 172, 164, 164, 112, 143, 117, 132, 135, 134, 135, 210, 110, 163, 263, 263, 311, 110, 115, 109, 348, 349, 115, 134, 110, 134, 135, 308, 115, 134, 135, 135, 110, 114, 199, 112, 162, 132, 199, 201, 110, 116, 135, 371, 164, 112, 135, 85, 113, 116, 135, 135, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 163, 163, 135, 112, 135, 135, 135, 135, 134, 134, 162, 162, 112, 112, 135, 135, 273, 226, 168, 168, 47, 168, 134, 132, 132, 168, 132, 132, 168, 58, 59, 60, 193, 194, 195, 132, 63, 132, 114, 311, 174, 115, 132, 135, 135, 134, 96, 268, 269, 110, 298, 116, 132, 116, 132, 115, 296, 117, 141, 110, 110, 117, 166, 112, 115, 112, 111, 147, 111, 147, 147, 112, 112, 112, 263, 112, 263, 263, 263, 135, 135, 112, 112, 110, 110, 112, 116, 96, 262, 96, 135, 112, 112, 110, 110, 109, 110, 169, 190, 211, 132, 110, 109, 109, 172, 195, 58, 59, 163, 144, 170, 110, 110, 263, 114, 134, 134, 297, 141, 202, 109, 132, 202, 135, 117, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 170, 44, 45, 114, 180, 181, 182, 168, 170, 135, 110, 169, 114, 182, 96, 134, 96, 134, 109, 109, 132, 115, 135, 134, 271, 308, 115, 116, 117, 162, 110, 112, 163, 146, 146, 110, 110, 110, 110, 266, 42, 162, 178, 179, 309, 117, 134, 170, 180, 110, 132, 170, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 110, 297, 141, 139, 203, 110, 132, 117, 135, 135, 170, 96, 116, 117, 135, 204, 205, 211, 132, 169, 169, 204, 172, 196, 224, 365, 172, 196, 110, 134, 110, 134, 115, 110, 116, 163, 112, 112, 162, 178, 181, 183, 184, 134, 132, 181, 185, 186, 135, 109, 119, 308, 356, 139, 135, 172, 196, 172, 196, 109, 132, 139, 170, 175, 115, 181, 211, 169, 56, 175, 188, 115, 181, 110, 226, 110, 135, 135, 291, 170, 175, 132, 187, 188, 175, 188, 172, 172, 110, 110, 110, 187, 135, 135, 172, 172, 135, 135 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (YYLEX_PARAM) #else # define YYLEX yylex () #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule) #else static void yy_reduce_print (yyvsp, yyrule) YYSTYPE *yyvsp; int yyrule; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #else static void yydestruct (yymsg, yytype, yyvaluep) const char *yymsg; int yytype; YYSTYPE *yyvaluep; #endif { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void) #else int yyparse () #endif #endif { int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 292 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 298 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 307 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); } break; case 5: /* Line 1806 of yacc.c */ #line 308 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); } break; case 6: /* Line 1806 of yacc.c */ #line 309 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); } break; case 16: /* Line 1806 of yacc.c */ #line 334 "parser.yy" { (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 335 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); } break; case 18: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 19: /* Line 1806 of yacc.c */ #line 344 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 20: /* Line 1806 of yacc.c */ #line 346 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 348 "parser.yy" { (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); } break; case 23: /* Line 1806 of yacc.c */ #line 358 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Index ), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ); } break; case 24: /* Line 1806 of yacc.c */ #line 360 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); } break; case 25: /* Line 1806 of yacc.c */ #line 364 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 27: /* Line 1806 of yacc.c */ #line 367 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); } break; case 29: /* Line 1806 of yacc.c */ #line 370 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); } break; case 30: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); } break; case 31: /* Line 1806 of yacc.c */ #line 374 "parser.yy" { (yyval.en) = new CompoundLiteralNode( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 376 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_link( (yyvsp[(3) - (4)].en) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 390 "parser.yy" { (yyval.en) = 0; } break; case 37: /* Line 1806 of yacc.c */ #line 393 "parser.yy" { (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); } break; case 38: /* Line 1806 of yacc.c */ #line 398 "parser.yy" { (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 400 "parser.yy" { (yyval.en) = (yyvsp[(9) - (9)].en)->set_argName( new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (9)].en)->set_link( flattenCommas( (yyvsp[(5) - (9)].en) )))); } break; case 41: /* Line 1806 of yacc.c */ #line 405 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 42: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); } break; case 43: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 44: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); } break; case 46: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); } break; case 48: /* Line 1806 of yacc.c */ #line 428 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 49: /* Line 1806 of yacc.c */ #line 430 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].constant); } break; case 50: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); } break; case 51: /* Line 1806 of yacc.c */ #line 434 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); } break; case 52: /* Line 1806 of yacc.c */ #line 436 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 53: /* Line 1806 of yacc.c */ #line 438 "parser.yy" { (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 54: /* Line 1806 of yacc.c */ #line 440 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neg ), (yyvsp[(2) - (2)].en) ); } break; case 55: /* Line 1806 of yacc.c */ #line 442 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PointTo ), (yyvsp[(2) - (2)].en) ); } break; case 56: /* Line 1806 of yacc.c */ #line 448 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); } break; case 57: /* Line 1806 of yacc.c */ #line 450 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 58: /* Line 1806 of yacc.c */ #line 452 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::OffsetOf ), new TypeValueNode( (yyvsp[(3) - (6)].decl) ), new VarRefNode( (yyvsp[(5) - (6)].tok) )); } break; case 59: /* Line 1806 of yacc.c */ #line 454 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (1)].tok) )); } break; case 60: /* Line 1806 of yacc.c */ #line 456 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); } break; case 61: /* Line 1806 of yacc.c */ #line 458 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ); } break; case 62: /* Line 1806 of yacc.c */ #line 460 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); } break; case 63: /* Line 1806 of yacc.c */ #line 462 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 464 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LabelAddress ), new VarRefNode( (yyvsp[(2) - (2)].tok), true ) ); } break; case 65: /* Line 1806 of yacc.c */ #line 468 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); } break; case 66: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); } break; case 67: /* Line 1806 of yacc.c */ #line 470 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); } break; case 68: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); } break; case 70: /* Line 1806 of yacc.c */ #line 477 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 71: /* Line 1806 of yacc.c */ #line 479 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); } break; case 73: /* Line 1806 of yacc.c */ #line 485 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mul ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 74: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Div ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 75: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mod ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 77: /* Line 1806 of yacc.c */ #line 495 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Plus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 78: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Minus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 80: /* Line 1806 of yacc.c */ #line 503 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 81: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::RShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 83: /* Line 1806 of yacc.c */ #line 511 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 84: /* Line 1806 of yacc.c */ #line 513 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 85: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 86: /* Line 1806 of yacc.c */ #line 517 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 88: /* Line 1806 of yacc.c */ #line 523 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Eq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 89: /* Line 1806 of yacc.c */ #line 525 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 91: /* Line 1806 of yacc.c */ #line 531 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::BitAnd ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 93: /* Line 1806 of yacc.c */ #line 537 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Xor ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 95: /* Line 1806 of yacc.c */ #line 543 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::BitOr ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 97: /* Line 1806 of yacc.c */ #line 549 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::And ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 99: /* Line 1806 of yacc.c */ #line 555 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Or ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 101: /* Line 1806 of yacc.c */ #line 561 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); } break; case 102: /* Line 1806 of yacc.c */ #line 563 "parser.yy" { (yyval.en)=new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 103: /* Line 1806 of yacc.c */ #line 565 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); } break; case 106: /* Line 1806 of yacc.c */ #line 576 "parser.yy" { (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 107: /* Line 1806 of yacc.c */ #line 578 "parser.yy" { (yyval.en) =new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 108: /* Line 1806 of yacc.c */ #line 580 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); } break; case 109: /* Line 1806 of yacc.c */ #line 585 "parser.yy" { (yyval.en) = new NullExprNode; } break; case 111: /* Line 1806 of yacc.c */ #line 593 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); } break; case 112: /* Line 1806 of yacc.c */ #line 595 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); } break; case 113: /* Line 1806 of yacc.c */ #line 597 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); } break; case 114: /* Line 1806 of yacc.c */ #line 599 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); } break; case 116: /* Line 1806 of yacc.c */ #line 605 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 117: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); } break; case 118: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); } break; case 119: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); } break; case 120: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); } break; case 121: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); } break; case 122: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); } break; case 123: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); } break; case 124: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); } break; case 125: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); } break; case 126: /* Line 1806 of yacc.c */ #line 618 "parser.yy" { (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); } break; case 128: /* Line 1806 of yacc.c */ #line 624 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Comma ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 129: /* Line 1806 of yacc.c */ #line 629 "parser.yy" { (yyval.en) = 0; } break; case 133: /* Line 1806 of yacc.c */ #line 638 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 139: /* Line 1806 of yacc.c */ #line 645 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( StatementNode::Exp, new CompositeExprNode( new VarRefNode( fn ), (ExpressionNode *)(new CompositeExprNode( new OperatorNode( OperatorNode::AddressOf ), (yyvsp[(2) - (6)].en) ))->set_link( (yyvsp[(4) - (6)].en) ) ), 0 ); } break; case 140: /* Line 1806 of yacc.c */ #line 654 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 141: /* Line 1806 of yacc.c */ #line 661 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); } break; case 142: /* Line 1806 of yacc.c */ #line 668 "parser.yy" { (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); } break; case 144: /* Line 1806 of yacc.c */ #line 674 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 145: /* Line 1806 of yacc.c */ #line 679 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 681 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 147: /* Line 1806 of yacc.c */ #line 683 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 150: /* Line 1806 of yacc.c */ #line 690 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 151: /* Line 1806 of yacc.c */ #line 695 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); } break; case 152: /* Line 1806 of yacc.c */ #line 701 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 153: /* Line 1806 of yacc.c */ #line 703 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); } break; case 154: /* Line 1806 of yacc.c */ #line 705 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 155: /* Line 1806 of yacc.c */ #line 707 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); /* xxx */ } break; case 156: /* Line 1806 of yacc.c */ #line 712 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 157: /* Line 1806 of yacc.c */ #line 714 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); } break; case 158: /* Line 1806 of yacc.c */ #line 721 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 159: /* Line 1806 of yacc.c */ #line 723 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 162: /* Line 1806 of yacc.c */ #line 730 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents( (yyvsp[(1) - (3)].en) ))->set_link( (yyvsp[(3) - (3)].en) ) ); } break; case 163: /* Line 1806 of yacc.c */ #line 734 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); } break; case 164: /* Line 1806 of yacc.c */ #line 735 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Default ); } break; case 166: /* Line 1806 of yacc.c */ #line 741 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); } break; case 167: /* Line 1806 of yacc.c */ #line 745 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 168: /* Line 1806 of yacc.c */ #line 750 "parser.yy" { (yyval.sn) = 0; } break; case 170: /* Line 1806 of yacc.c */ #line 756 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 171: /* Line 1806 of yacc.c */ #line 758 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 172: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { (yyval.sn) = 0; } break; case 174: /* Line 1806 of yacc.c */ #line 769 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 175: /* Line 1806 of yacc.c */ #line 771 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn) ))); } break; case 176: /* Line 1806 of yacc.c */ #line 773 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 177: /* Line 1806 of yacc.c */ #line 775 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_link( (yyvsp[(2) - (4)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(3) - (4)].sn),*(yyvsp[(4) - (4)].sn) ))))); } break; case 178: /* Line 1806 of yacc.c */ #line 780 "parser.yy" { (yyval.sn) = 0; } break; case 180: /* Line 1806 of yacc.c */ #line 785 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 181: /* Line 1806 of yacc.c */ #line 786 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Fallthru ); } break; case 182: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); } break; case 183: /* Line 1806 of yacc.c */ #line 793 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); } break; case 184: /* Line 1806 of yacc.c */ #line 795 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); } break; case 185: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 186: /* Line 1806 of yacc.c */ #line 802 "parser.yy" { (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 187: /* Line 1806 of yacc.c */ #line 807 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); } break; case 188: /* Line 1806 of yacc.c */ #line 811 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); } break; case 189: /* Line 1806 of yacc.c */ #line 814 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue ); } break; case 190: /* Line 1806 of yacc.c */ #line 818 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); } break; case 191: /* Line 1806 of yacc.c */ #line 821 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break ); } break; case 192: /* Line 1806 of yacc.c */ #line 825 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); } break; case 193: /* Line 1806 of yacc.c */ #line 827 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); } break; case 194: /* Line 1806 of yacc.c */ #line 829 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 195: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); } break; case 196: /* Line 1806 of yacc.c */ #line 835 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (5)].en), 0 ); } break; case 197: /* Line 1806 of yacc.c */ #line 842 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 198: /* Line 1806 of yacc.c */ #line 844 "parser.yy" { (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); } break; case 199: /* Line 1806 of yacc.c */ #line 846 "parser.yy" { (yyvsp[(3) - (4)].pn)->set_link( (yyvsp[(4) - (4)].pn) ); (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (4)].sn),*(yyvsp[(3) - (4)].pn) )))); } break; case 201: /* Line 1806 of yacc.c */ #line 857 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 202: /* Line 1806 of yacc.c */ #line 859 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 861 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); } break; case 204: /* Line 1806 of yacc.c */ #line 863 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 868 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 206: /* Line 1806 of yacc.c */ #line 870 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 872 "parser.yy" { (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); } break; case 208: /* Line 1806 of yacc.c */ #line 874 "parser.yy" { (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 879 "parser.yy" { (yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) ); std::cout << "Just created a finally node" << std::endl; } break; case 211: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 212: /* Line 1806 of yacc.c */ #line 898 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 213: /* Line 1806 of yacc.c */ #line 900 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 215: /* Line 1806 of yacc.c */ #line 909 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); } break; case 216: /* Line 1806 of yacc.c */ #line 911 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); } break; case 217: /* Line 1806 of yacc.c */ #line 913 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ); } break; case 218: /* Line 1806 of yacc.c */ #line 915 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].constant) ); } break; case 219: /* Line 1806 of yacc.c */ #line 917 "parser.yy" { (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].constant), (yyvsp[(12) - (14)].label) ); } break; case 220: /* Line 1806 of yacc.c */ #line 922 "parser.yy" { (yyval.flag) = false; } break; case 221: /* Line 1806 of yacc.c */ #line 924 "parser.yy" { (yyval.flag) = true; } break; case 222: /* Line 1806 of yacc.c */ #line 929 "parser.yy" { (yyval.en) = 0; } break; case 225: /* Line 1806 of yacc.c */ #line 936 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); } break; case 226: /* Line 1806 of yacc.c */ #line 941 "parser.yy" { (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); } break; case 227: /* Line 1806 of yacc.c */ #line 943 "parser.yy" { (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); } break; case 228: /* Line 1806 of yacc.c */ #line 948 "parser.yy" { (yyval.constant) = 0; } break; case 229: /* Line 1806 of yacc.c */ #line 950 "parser.yy" { (yyval.constant) = (yyvsp[(1) - (1)].constant); } break; case 230: /* Line 1806 of yacc.c */ #line 952 "parser.yy" { (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); } break; case 231: /* Line 1806 of yacc.c */ #line 957 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); } break; case 232: /* Line 1806 of yacc.c */ #line 959 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); } break; case 233: /* Line 1806 of yacc.c */ #line 966 "parser.yy" { (yyval.decl) = 0; } break; case 236: /* Line 1806 of yacc.c */ #line 973 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 237: /* Line 1806 of yacc.c */ #line 978 "parser.yy" { (yyval.decl) = 0; } break; case 240: /* Line 1806 of yacc.c */ #line 985 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 245: /* Line 1806 of yacc.c */ #line 999 "parser.yy" {} break; case 246: /* Line 1806 of yacc.c */ #line 1000 "parser.yy" {} break; case 254: /* Line 1806 of yacc.c */ #line 1029 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 255: /* Line 1806 of yacc.c */ #line 1036 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 256: /* Line 1806 of yacc.c */ #line 1041 "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 257: /* Line 1806 of yacc.c */ #line 1051 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 258: /* Line 1806 of yacc.c */ #line 1056 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1061 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) ); (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1069 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 261: /* Line 1806 of yacc.c */ #line 1074 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 262: /* Line 1806 of yacc.c */ #line 1079 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 263: /* Line 1806 of yacc.c */ #line 1084 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1089 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1097 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 266: /* Line 1806 of yacc.c */ #line 1120 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 267: /* Line 1806 of yacc.c */ #line 1124 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 268: /* Line 1806 of yacc.c */ #line 1131 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1135 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 270: /* Line 1806 of yacc.c */ #line 1140 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 271: /* Line 1806 of yacc.c */ #line 1145 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 272: /* Line 1806 of yacc.c */ #line 1150 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (5)].tok), TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneType( (yyvsp[(5) - (5)].tok) ) ); } break; case 273: /* Line 1806 of yacc.c */ #line 1161 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 274: /* Line 1806 of yacc.c */ #line 1166 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) )->addTypedef() ); } break; case 275: /* Line 1806 of yacc.c */ #line 1171 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addType( (yyvsp[(3) - (4)].decl) )->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1176 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 277: /* Line 1806 of yacc.c */ #line 1181 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(4) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addTypedef()->addType( (yyvsp[(1) - (4)].decl) ); } break; case 278: /* Line 1806 of yacc.c */ #line 1190 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 279: /* Line 1806 of yacc.c */ #line 1195 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 284: /* Line 1806 of yacc.c */ #line 1212 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 285: /* Line 1806 of yacc.c */ #line 1217 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneBaseType( (yyvsp[(4) - (6)].decl)->addInitializer( (yyvsp[(6) - (6)].in) ) ) ); } break; case 294: /* Line 1806 of yacc.c */ #line 1239 "parser.yy" { (yyval.decl) = 0; } break; case 297: /* Line 1806 of yacc.c */ #line 1251 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 300: /* Line 1806 of yacc.c */ #line 1262 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 301: /* Line 1806 of yacc.c */ #line 1264 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 302: /* Line 1806 of yacc.c */ #line 1266 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 303: /* Line 1806 of yacc.c */ #line 1268 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 304: /* Line 1806 of yacc.c */ #line 1270 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 305: /* Line 1806 of yacc.c */ #line 1272 "parser.yy" { typedefTable.enterScope(); } break; case 306: /* Line 1806 of yacc.c */ #line 1276 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 308: /* Line 1806 of yacc.c */ #line 1285 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1287 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 311: /* Line 1806 of yacc.c */ #line 1298 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1307 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 314: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 315: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 316: /* Line 1806 of yacc.c */ #line 1313 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 317: /* Line 1806 of yacc.c */ #line 1315 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 318: /* Line 1806 of yacc.c */ #line 1317 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 319: /* Line 1806 of yacc.c */ #line 1319 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 320: /* Line 1806 of yacc.c */ #line 1321 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 321: /* Line 1806 of yacc.c */ #line 1326 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 322: /* Line 1806 of yacc.c */ #line 1328 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 323: /* Line 1806 of yacc.c */ #line 1330 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 324: /* Line 1806 of yacc.c */ #line 1332 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 325: /* Line 1806 of yacc.c */ #line 1334 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 326: /* Line 1806 of yacc.c */ #line 1336 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 327: /* Line 1806 of yacc.c */ #line 1338 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 328: /* Line 1806 of yacc.c */ #line 1340 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 329: /* Line 1806 of yacc.c */ #line 1342 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 330: /* Line 1806 of yacc.c */ #line 1344 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 331: /* Line 1806 of yacc.c */ #line 1346 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 332: /* Line 1806 of yacc.c */ #line 1348 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 333: /* Line 1806 of yacc.c */ #line 1350 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 335: /* Line 1806 of yacc.c */ #line 1357 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 336: /* Line 1806 of yacc.c */ #line 1359 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 337: /* Line 1806 of yacc.c */ #line 1361 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1363 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1369 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 342: /* Line 1806 of yacc.c */ #line 1376 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1378 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1380 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 345: /* Line 1806 of yacc.c */ #line 1385 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 346: /* Line 1806 of yacc.c */ #line 1387 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1391 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1397 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1399 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1401 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1415 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1424 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1426 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1428 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1438 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1440 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); } break; case 367: /* Line 1806 of yacc.c */ #line 1445 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 368: /* Line 1806 of yacc.c */ #line 1447 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), 0, (yyvsp[(5) - (6)].decl)); } break; case 369: /* Line 1806 of yacc.c */ #line 1449 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); } break; case 370: /* Line 1806 of yacc.c */ #line 1451 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 371: /* Line 1806 of yacc.c */ #line 1456 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 372: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 373: /* Line 1806 of yacc.c */ #line 1463 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 374: /* Line 1806 of yacc.c */ #line 1465 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 376: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 378: /* Line 1806 of yacc.c */ #line 1474 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 380: /* Line 1806 of yacc.c */ #line 1480 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1482 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1484 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1489 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1491 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 385: /* Line 1806 of yacc.c */ #line 1496 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 386: /* Line 1806 of yacc.c */ #line 1498 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 387: /* Line 1806 of yacc.c */ #line 1501 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 388: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 390: /* Line 1806 of yacc.c */ #line 1510 "parser.yy" { (yyval.en) = 0; } break; case 391: /* Line 1806 of yacc.c */ #line 1512 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 392: /* Line 1806 of yacc.c */ #line 1517 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 394: /* Line 1806 of yacc.c */ #line 1526 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1528 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 396: /* Line 1806 of yacc.c */ #line 1533 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 397: /* Line 1806 of yacc.c */ #line 1535 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 398: /* Line 1806 of yacc.c */ #line 1540 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 399: /* Line 1806 of yacc.c */ #line 1542 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 400: /* Line 1806 of yacc.c */ #line 1547 "parser.yy" { (yyval.en) = 0; } break; case 401: /* Line 1806 of yacc.c */ #line 1549 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 402: /* Line 1806 of yacc.c */ #line 1556 "parser.yy" { (yyval.decl) = 0; } break; case 406: /* Line 1806 of yacc.c */ #line 1564 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 407: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 408: /* Line 1806 of yacc.c */ #line 1568 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 410: /* Line 1806 of yacc.c */ #line 1576 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 411: /* Line 1806 of yacc.c */ #line 1578 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1580 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 414: /* Line 1806 of yacc.c */ #line 1586 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 415: /* Line 1806 of yacc.c */ #line 1591 "parser.yy" { (yyval.decl) = 0; } break; case 418: /* Line 1806 of yacc.c */ #line 1598 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 421: /* Line 1806 of yacc.c */ #line 1605 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1607 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 424: /* Line 1806 of yacc.c */ #line 1616 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 425: /* Line 1806 of yacc.c */ #line 1619 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 426: /* Line 1806 of yacc.c */ #line 1621 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 431: /* Line 1806 of yacc.c */ #line 1631 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 433: /* Line 1806 of yacc.c */ #line 1637 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1642 "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 436: /* Line 1806 of yacc.c */ #line 1651 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 437: /* Line 1806 of yacc.c */ #line 1660 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 438: /* Line 1806 of yacc.c */ #line 1662 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 450: /* Line 1806 of yacc.c */ #line 1687 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 454: /* Line 1806 of yacc.c */ #line 1695 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1700 "parser.yy" { (yyval.in) = 0; } break; case 456: /* Line 1806 of yacc.c */ #line 1702 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 457: /* Line 1806 of yacc.c */ #line 1704 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 458: /* Line 1806 of yacc.c */ #line 1708 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1709 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 460: /* Line 1806 of yacc.c */ #line 1714 "parser.yy" { (yyval.in) = 0; } break; case 462: /* Line 1806 of yacc.c */ #line 1716 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1717 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1719 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1735 "parser.yy" { (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); } break; case 468: /* Line 1806 of yacc.c */ #line 1741 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); } break; case 469: /* Line 1806 of yacc.c */ #line 1749 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(1) - (1)].tok) ) ); } break; case 470: /* Line 1806 of yacc.c */ #line 1751 "parser.yy" { (yyval.en) = new DesignatorNode( new VarRefNode( (yyvsp[(2) - (2)].tok) ) ); } break; case 471: /* Line 1806 of yacc.c */ #line 1754 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 472: /* Line 1806 of yacc.c */ #line 1756 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(3) - (5)].en), true ); } break; case 473: /* Line 1806 of yacc.c */ #line 1758 "parser.yy" { (yyval.en) = new DesignatorNode( new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ), true ); } break; case 474: /* Line 1806 of yacc.c */ #line 1760 "parser.yy" { (yyval.en) = new DesignatorNode( (yyvsp[(4) - (6)].en) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1786 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1788 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1794 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 481: /* Line 1806 of yacc.c */ #line 1796 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1801 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 484: /* Line 1806 of yacc.c */ #line 1807 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 485: /* Line 1806 of yacc.c */ #line 1812 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 486: /* Line 1806 of yacc.c */ #line 1814 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 488: /* Line 1806 of yacc.c */ #line 1820 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 489: /* Line 1806 of yacc.c */ #line 1822 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 490: /* Line 1806 of yacc.c */ #line 1824 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 491: /* Line 1806 of yacc.c */ #line 1829 "parser.yy" { (yyval.decl) = 0; } break; case 492: /* Line 1806 of yacc.c */ #line 1831 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); } break; case 493: /* Line 1806 of yacc.c */ #line 1836 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 494: /* Line 1806 of yacc.c */ #line 1841 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 495: /* Line 1806 of yacc.c */ #line 1843 "parser.yy" { (yyval.decl) = 0; } break; case 496: /* Line 1806 of yacc.c */ #line 1848 "parser.yy" { (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1851 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); } break; case 499: /* Line 1806 of yacc.c */ #line 1853 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); } break; case 500: /* Line 1806 of yacc.c */ #line 1858 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 501: /* Line 1806 of yacc.c */ #line 1860 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1862 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1867 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1869 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 505: /* Line 1806 of yacc.c */ #line 1874 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 506: /* Line 1806 of yacc.c */ #line 1879 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1887 "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 508: /* Line 1806 of yacc.c */ #line 1892 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 509: /* Line 1806 of yacc.c */ #line 1897 "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 511: /* Line 1806 of yacc.c */ #line 1907 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1917 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 515: /* Line 1806 of yacc.c */ #line 1922 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 516: /* Line 1806 of yacc.c */ #line 1927 "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 517: /* Line 1806 of yacc.c */ #line 1935 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 518: /* Line 1806 of yacc.c */ #line 1940 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 519: /* Line 1806 of yacc.c */ #line 1950 "parser.yy" {} break; case 520: /* Line 1806 of yacc.c */ #line 1952 "parser.yy" { if ( theTree ) { theTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { theTree = (yyvsp[(1) - (1)].decl); } } break; case 522: /* Line 1806 of yacc.c */ #line 1964 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 523: /* Line 1806 of yacc.c */ #line 1969 "parser.yy" { (yyval.decl) = 0; } break; case 527: /* Line 1806 of yacc.c */ #line 1977 "parser.yy" {} break; case 528: /* Line 1806 of yacc.c */ #line 1979 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 529: /* Line 1806 of yacc.c */ #line 1984 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 530: /* Line 1806 of yacc.c */ #line 1990 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 532: /* Line 1806 of yacc.c */ #line 2000 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 533: /* Line 1806 of yacc.c */ #line 2006 "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 534: /* Line 1806 of yacc.c */ #line 2015 "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 2021 "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 536: /* Line 1806 of yacc.c */ #line 2027 "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 537: /* Line 1806 of yacc.c */ #line 2033 "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 538: /* Line 1806 of yacc.c */ #line 2039 "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 539: /* Line 1806 of yacc.c */ #line 2047 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(2) - (5)].decl)->addOldDeclList( (yyvsp[(4) - (5)].decl) )->addFunctionBody( (yyvsp[(5) - (5)].sn) )->addType( (yyvsp[(1) - (5)].decl) ); } break; case 540: /* Line 1806 of yacc.c */ #line 2053 "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 541: /* Line 1806 of yacc.c */ #line 2061 "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 542: /* Line 1806 of yacc.c */ #line 2067 "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 546: /* Line 1806 of yacc.c */ #line 2082 "parser.yy" { (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); } break; case 549: /* Line 1806 of yacc.c */ #line 2092 "parser.yy" { (yyval.decl) = 0; } break; case 552: /* Line 1806 of yacc.c */ #line 2099 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 553: /* Line 1806 of yacc.c */ #line 2105 "parser.yy" { (yyval.decl) = 0; } break; case 559: /* Line 1806 of yacc.c */ #line 2120 "parser.yy" {} break; case 560: /* Line 1806 of yacc.c */ #line 2121 "parser.yy" {} break; case 561: /* Line 1806 of yacc.c */ #line 2122 "parser.yy" {} break; case 562: /* Line 1806 of yacc.c */ #line 2123 "parser.yy" {} break; case 563: /* Line 1806 of yacc.c */ #line 2158 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2161 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2163 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 567: /* Line 1806 of yacc.c */ #line 2168 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2173 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 569: /* Line 1806 of yacc.c */ #line 2178 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2180 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 571: /* Line 1806 of yacc.c */ #line 2182 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 572: /* Line 1806 of yacc.c */ #line 2187 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 573: /* Line 1806 of yacc.c */ #line 2189 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 574: /* Line 1806 of yacc.c */ #line 2191 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2193 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 576: /* Line 1806 of yacc.c */ #line 2198 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2200 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 578: /* Line 1806 of yacc.c */ #line 2210 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2213 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 582: /* Line 1806 of yacc.c */ #line 2220 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2222 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 584: /* Line 1806 of yacc.c */ #line 2227 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2229 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 586: /* Line 1806 of yacc.c */ #line 2231 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 587: /* Line 1806 of yacc.c */ #line 2236 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2238 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2240 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 593: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2257 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2259 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 596: /* Line 1806 of yacc.c */ #line 2264 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2266 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2268 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 599: /* Line 1806 of yacc.c */ #line 2273 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2275 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 601: /* Line 1806 of yacc.c */ #line 2277 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 602: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2295 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2303 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 608: /* Line 1806 of yacc.c */ #line 2308 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2310 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 610: /* Line 1806 of yacc.c */ #line 2312 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 611: /* Line 1806 of yacc.c */ #line 2317 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2319 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 613: /* Line 1806 of yacc.c */ #line 2321 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 614: /* Line 1806 of yacc.c */ #line 2323 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 615: /* Line 1806 of yacc.c */ #line 2328 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2330 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 618: /* Line 1806 of yacc.c */ #line 2342 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2352 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 625: /* Line 1806 of yacc.c */ #line 2361 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2363 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2365 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2367 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 629: /* Line 1806 of yacc.c */ #line 2372 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2374 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2376 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 632: /* Line 1806 of yacc.c */ #line 2407 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2410 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2412 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2417 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2422 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2430 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2432 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2434 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 641: /* Line 1806 of yacc.c */ #line 2439 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2441 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2446 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2448 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2463 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2465 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2470 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 649: /* Line 1806 of yacc.c */ #line 2472 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2474 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2476 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 652: /* Line 1806 of yacc.c */ #line 2478 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 654: /* Line 1806 of yacc.c */ #line 2484 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 655: /* Line 1806 of yacc.c */ #line 2486 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 656: /* Line 1806 of yacc.c */ #line 2488 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 657: /* Line 1806 of yacc.c */ #line 2493 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 658: /* Line 1806 of yacc.c */ #line 2495 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2497 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 660: /* Line 1806 of yacc.c */ #line 2503 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 661: /* Line 1806 of yacc.c */ #line 2505 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2511 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 664: /* Line 1806 of yacc.c */ #line 2513 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 665: /* Line 1806 of yacc.c */ #line 2515 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2517 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2532 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2534 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2539 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 671: /* Line 1806 of yacc.c */ #line 2541 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2543 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2545 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2547 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 676: /* Line 1806 of yacc.c */ #line 2553 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2555 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2557 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 679: /* Line 1806 of yacc.c */ #line 2562 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 680: /* Line 1806 of yacc.c */ #line 2564 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 681: /* Line 1806 of yacc.c */ #line 2566 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 683: /* Line 1806 of yacc.c */ #line 2573 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 685: /* Line 1806 of yacc.c */ #line 2584 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 686: /* Line 1806 of yacc.c */ #line 2587 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 687: /* Line 1806 of yacc.c */ #line 2589 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 688: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 689: /* Line 1806 of yacc.c */ #line 2594 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 690: /* Line 1806 of yacc.c */ #line 2596 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 692: /* Line 1806 of yacc.c */ #line 2610 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2612 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 694: /* Line 1806 of yacc.c */ #line 2617 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 695: /* Line 1806 of yacc.c */ #line 2619 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2621 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2623 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 698: /* Line 1806 of yacc.c */ #line 2625 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 700: /* Line 1806 of yacc.c */ #line 2631 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2633 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 702: /* Line 1806 of yacc.c */ #line 2635 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 703: /* Line 1806 of yacc.c */ #line 2640 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2642 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 707: /* Line 1806 of yacc.c */ #line 2652 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2662 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2664 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2666 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2668 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2670 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2672 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2679 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2681 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2683 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2685 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2687 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2689 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2691 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2693 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2695 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2697 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 726: /* Line 1806 of yacc.c */ #line 2702 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2704 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 728: /* Line 1806 of yacc.c */ #line 2709 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 729: /* Line 1806 of yacc.c */ #line 2711 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 731: /* Line 1806 of yacc.c */ #line 2738 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2749 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2751 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2753 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2755 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2757 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2759 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2766 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2768 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2770 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2772 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2774 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2776 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2781 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2786 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 749: /* Line 1806 of yacc.c */ #line 2788 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 750: /* Line 1806 of yacc.c */ #line 2790 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 753: /* Line 1806 of yacc.c */ #line 2814 "parser.yy" { (yyval.en) = 0; } break; case 754: /* Line 1806 of yacc.c */ #line 2816 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9264 "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 2819 "parser.yy" // ----end of grammar---- void yyerror( const char * ) { std::cout << "Error "; if ( yyfilename ) { std::cout << "in file " << yyfilename << " "; } // if std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //