/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 42 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" extern DeclarationNode *parseTree; extern LinkageSpec::Type linkage; extern TypedefTable typedefTable; std::stack< LinkageSpec::Type > linkageStack; void appendStr( std::string &to, std::string *from ) { // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string. to.insert( to.length() - 1, from->substr( 1, from->length() - 2 ) ); } // appendStr /* Line 268 of yacc.c */ #line 99 "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 115 "parser.yy" Token tok; ParseNode *pn; ExpressionNode *en; DeclarationNode *decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode *sn; ConstantExpr *constant; ForCtl *fctl; LabelNode *label; InitializerNode *in; OperKinds op; bool flag; /* Line 293 of yacc.c */ #line 369 "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 381 "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 250 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 10977 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 133 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 240 /* YYNRULES -- Number of rules. */ #define YYNRULES 749 /* YYNRULES -- Number of states. */ #define YYNSTATES 1553 /* 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, 121, 2, 2, 2, 124, 118, 2, 109, 110, 117, 119, 116, 120, 113, 123, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 130, 132, 125, 131, 126, 129, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 111, 2, 112, 127, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 114, 128, 115, 122, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 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, 114, 118, 120, 124, 132, 136, 144, 146, 148, 150, 153, 156, 159, 162, 165, 168, 173, 176, 181, 188, 190, 195, 200, 202, 204, 206, 208, 210, 212, 214, 219, 224, 226, 230, 234, 238, 240, 244, 248, 250, 254, 258, 260, 264, 268, 272, 276, 278, 282, 286, 288, 292, 294, 298, 300, 304, 306, 310, 312, 316, 318, 324, 329, 335, 337, 339, 343, 346, 347, 349, 351, 353, 355, 357, 359, 361, 363, 365, 367, 369, 371, 374, 380, 387, 395, 397, 401, 403, 407, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 433, 438, 441, 449, 451, 455, 457, 460, 462, 465, 467, 470, 473, 479, 487, 493, 503, 509, 519, 521, 525, 527, 529, 533, 537, 540, 542, 545, 548, 549, 551, 554, 558, 559, 561, 564, 568, 572, 577, 578, 580, 582, 585, 591, 599, 606, 613, 618, 622, 627, 630, 634, 637, 641, 645, 649, 653, 659, 663, 667, 672, 674, 680, 687, 693, 700, 710, 721, 731, 742, 745, 747, 750, 753, 756, 758, 765, 774, 785, 798, 813, 814, 816, 817, 819, 821, 825, 830, 838, 839, 841, 845, 847, 851, 853, 855, 857, 861, 863, 865, 867, 871, 872, 874, 878, 883, 885, 889, 891, 893, 897, 901, 905, 909, 913, 916, 920, 927, 931, 935, 940, 942, 945, 948, 952, 958, 967, 975, 983, 989, 999, 1002, 1005, 1011, 1015, 1021, 1026, 1030, 1035, 1040, 1048, 1052, 1056, 1060, 1064, 1069, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1093, 1095, 1097, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1115, 1121, 1123, 1126, 1130, 1132, 1135, 1137, 1139, 1141, 1143, 1145, 1147, 1149, 1151, 1153, 1155, 1157, 1159, 1161, 1163, 1165, 1167, 1169, 1171, 1173, 1175, 1177, 1179, 1182, 1185, 1189, 1193, 1195, 1199, 1201, 1204, 1207, 1210, 1215, 1220, 1225, 1230, 1232, 1235, 1238, 1242, 1244, 1247, 1250, 1252, 1255, 1258, 1262, 1264, 1267, 1270, 1272, 1274, 1279, 1282, 1283, 1290, 1298, 1301, 1304, 1307, 1308, 1311, 1314, 1318, 1321, 1325, 1327, 1330, 1334, 1337, 1340, 1345, 1346, 1348, 1351, 1354, 1356, 1357, 1359, 1362, 1365, 1371, 1374, 1375, 1383, 1386, 1391, 1392, 1395, 1396, 1398, 1400, 1402, 1408, 1414, 1420, 1422, 1428, 1434, 1444, 1446, 1452, 1453, 1455, 1457, 1463, 1465, 1467, 1473, 1479, 1481, 1485, 1489, 1494, 1496, 1498, 1500, 1502, 1505, 1507, 1511, 1515, 1517, 1520, 1522, 1526, 1528, 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1551, 1553, 1555, 1557, 1560, 1561, 1564, 1567, 1569, 1574, 1575, 1577, 1580, 1584, 1589, 1592, 1595, 1597, 1600, 1603, 1609, 1615, 1623, 1630, 1632, 1635, 1638, 1642, 1644, 1647, 1650, 1655, 1658, 1663, 1664, 1669, 1672, 1674, 1676, 1678, 1679, 1682, 1688, 1694, 1708, 1710, 1712, 1716, 1720, 1723, 1727, 1731, 1734, 1739, 1741, 1748, 1758, 1759, 1771, 1773, 1777, 1781, 1785, 1787, 1789, 1795, 1798, 1804, 1805, 1807, 1809, 1813, 1814, 1816, 1818, 1820, 1822, 1823, 1830, 1833, 1835, 1838, 1843, 1846, 1850, 1854, 1858, 1863, 1869, 1875, 1881, 1888, 1890, 1892, 1894, 1898, 1899, 1905, 1906, 1908, 1910, 1913, 1920, 1922, 1926, 1927, 1929, 1934, 1936, 1938, 1940, 1942, 1945, 1947, 1950, 1953, 1955, 1959, 1962, 1966, 1970, 1973, 1978, 1983, 1987, 1996, 2000, 2003, 2005, 2008, 2015, 2024, 2028, 2031, 2035, 2039, 2044, 2049, 2053, 2055, 2057, 2059, 2064, 2071, 2075, 2078, 2082, 2086, 2091, 2096, 2100, 2103, 2105, 2108, 2111, 2113, 2117, 2120, 2124, 2128, 2131, 2136, 2141, 2145, 2152, 2161, 2165, 2168, 2170, 2173, 2176, 2179, 2183, 2187, 2190, 2195, 2200, 2204, 2211, 2220, 2224, 2227, 2229, 2232, 2235, 2237, 2239, 2242, 2246, 2250, 2253, 2258, 2265, 2274, 2276, 2279, 2282, 2284, 2287, 2290, 2294, 2298, 2300, 2305, 2310, 2314, 2320, 2329, 2333, 2336, 2340, 2342, 2348, 2354, 2361, 2368, 2370, 2373, 2376, 2378, 2381, 2384, 2388, 2392, 2394, 2399, 2404, 2408, 2414, 2423, 2427, 2429, 2432, 2434, 2437, 2444, 2450, 2457, 2465, 2473, 2475, 2478, 2481, 2483, 2486, 2489, 2493, 2497, 2499, 2504, 2509, 2513, 2522, 2526, 2528, 2530, 2533, 2535, 2537, 2540, 2544, 2547, 2551, 2554, 2558, 2562, 2565, 2570, 2574, 2577, 2581, 2584, 2589, 2593, 2596, 2603, 2610, 2617, 2625, 2627, 2630, 2632, 2634, 2636, 2639, 2643, 2646, 2650, 2653, 2657, 2661, 2666, 2669, 2673, 2678, 2681, 2687, 2693, 2700, 2707, 2708, 2710, 2711 }; /* 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, 169, 110, -1, 109, 173, 110, -1, 142, -1, 143, 111, 134, 164, 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, 164, -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, 40, 151, -1, 149, 151, -1, 150, 151, -1, 86, 148, -1, 87, 148, -1, 37, 148, -1, 37, 109, 274, 110, -1, 66, 148, -1, 66, 109, 274, 110, -1, 38, 109, 274, 116, 139, 110, -1, 76, -1, 76, 109, 145, 110, -1, 76, 109, 275, 110, -1, 117, -1, 118, -1, 119, -1, 120, -1, 121, -1, 122, -1, 148, -1, 109, 274, 110, 151, -1, 109, 274, 110, 167, -1, 151, -1, 152, 117, 151, -1, 152, 123, 151, -1, 152, 124, 151, -1, 152, -1, 153, 119, 152, -1, 153, 120, 152, -1, 153, -1, 154, 88, 153, -1, 154, 89, 153, -1, 154, -1, 155, 125, 154, -1, 155, 126, 154, -1, 155, 90, 154, -1, 155, 91, 154, -1, 155, -1, 156, 92, 155, -1, 156, 93, 155, -1, 156, -1, 157, 118, 156, -1, 157, -1, 158, 127, 157, -1, 158, -1, 159, 128, 158, -1, 159, -1, 160, 94, 159, -1, 160, -1, 161, 95, 160, -1, 161, -1, 161, 129, 169, 130, 162, -1, 161, 129, 130, 162, -1, 161, 129, 169, 130, 167, -1, 162, -1, 162, -1, 148, 166, 164, -1, 167, 372, -1, -1, 164, -1, 131, -1, 97, -1, 98, -1, 99, -1, 100, -1, 101, -1, 102, -1, 103, -1, 104, -1, 105, -1, 106, -1, 111, 112, -1, 111, 134, 164, 135, 112, -1, 111, 134, 116, 168, 135, 112, -1, 111, 134, 164, 116, 168, 135, 112, -1, 165, -1, 168, 116, 165, -1, 164, -1, 169, 116, 164, -1, -1, 169, -1, 172, -1, 173, -1, 177, -1, 178, -1, 190, -1, 192, -1, 193, -1, 198, -1, 127, 143, 114, 144, 115, 132, -1, 72, 130, 311, 171, -1, 114, 115, -1, 114, 134, 134, 209, 174, 135, 115, -1, 175, -1, 174, 134, 175, -1, 212, -1, 40, 212, -1, 307, -1, 171, 135, -1, 171, -1, 176, 171, -1, 170, 132, -1, 41, 109, 169, 110, 171, -1, 41, 109, 169, 110, 171, 42, 171, -1, 43, 109, 169, 110, 183, -1, 43, 109, 169, 110, 114, 134, 205, 184, 115, -1, 53, 109, 169, 110, 183, -1, 53, 109, 169, 110, 114, 134, 205, 186, 115, -1, 163, -1, 163, 96, 163, -1, 309, -1, 179, -1, 180, 116, 179, -1, 44, 180, 130, -1, 45, 130, -1, 181, -1, 182, 181, -1, 182, 171, -1, -1, 185, -1, 182, 176, -1, 185, 182, 176, -1, -1, 187, -1, 182, 189, -1, 182, 176, 188, -1, 187, 182, 189, -1, 187, 182, 176, 188, -1, -1, 189, -1, 56, -1, 56, 132, -1, 47, 109, 169, 110, 171, -1, 46, 171, 47, 109, 169, 110, 132, -1, 48, 109, 134, 191, 110, 171, -1, 170, 135, 132, 170, 132, 170, -1, 212, 170, 132, 170, -1, 51, 72, 132, -1, 51, 117, 169, 132, -1, 50, 132, -1, 50, 72, 132, -1, 49, 132, -1, 49, 72, 132, -1, 52, 170, 132, -1, 61, 165, 132, -1, 62, 165, 132, -1, 62, 165, 63, 164, 132, -1, 57, 173, 194, -1, 57, 173, 196, -1, 57, 173, 194, 196, -1, 195, -1, 58, 109, 96, 110, 173, -1, 195, 58, 109, 96, 110, 173, -1, 59, 109, 96, 110, 173, -1, 195, 59, 109, 96, 110, 173, -1, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 58, 109, 134, 134, 197, 135, 110, 173, 135, -1, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 195, 59, 109, 134, 134, 197, 135, 110, 173, 135, -1, 60, 173, -1, 225, -1, 225, 308, -1, 225, 356, -1, 365, 139, -1, 365, -1, 64, 199, 109, 141, 110, 132, -1, 64, 199, 109, 141, 130, 200, 110, 132, -1, 64, 199, 109, 141, 130, 200, 130, 200, 110, 132, -1, 64, 199, 109, 141, 130, 200, 130, 200, 130, 203, 110, 132, -1, 64, 199, 51, 109, 141, 130, 130, 200, 130, 203, 130, 204, 110, 132, -1, -1, 11, -1, -1, 201, -1, 202, -1, 201, 116, 202, -1, 141, 109, 163, 110, -1, 111, 163, 112, 141, 109, 163, 110, -1, -1, 141, -1, 203, 116, 141, -1, 139, -1, 204, 116, 139, -1, 135, -1, 206, -1, 212, -1, 206, 134, 212, -1, 135, -1, 208, -1, 222, -1, 208, 134, 222, -1, -1, 210, -1, 29, 211, 132, -1, 210, 29, 211, 132, -1, 273, -1, 211, 116, 273, -1, 213, -1, 222, -1, 214, 135, 132, -1, 219, 135, 132, -1, 216, 135, 132, -1, 292, 135, 132, -1, 295, 135, 132, -1, 215, 276, -1, 231, 215, 276, -1, 214, 135, 116, 134, 271, 276, -1, 366, 271, 310, -1, 369, 271, 310, -1, 227, 369, 271, 310, -1, 217, -1, 227, 217, -1, 231, 217, -1, 231, 227, 217, -1, 216, 135, 116, 134, 271, -1, 111, 112, 271, 109, 134, 259, 135, 110, -1, 369, 271, 109, 134, 259, 135, 110, -1, 218, 271, 109, 134, 259, 135, 110, -1, 111, 134, 261, 135, 112, -1, 111, 134, 261, 135, 116, 134, 262, 135, 112, -1, 3, 215, -1, 3, 217, -1, 219, 135, 116, 134, 139, -1, 3, 225, 308, -1, 220, 135, 116, 134, 308, -1, 227, 3, 225, 308, -1, 225, 3, 308, -1, 225, 3, 227, 308, -1, 3, 139, 131, 164, -1, 221, 135, 116, 134, 139, 131, 164, -1, 223, 135, 132, -1, 220, 135, 132, -1, 221, 135, 132, -1, 239, 135, 132, -1, 224, 308, 310, 276, -1, 223, 116, 311, 308, 310, 276, -1, 235, -1, 239, -1, 241, -1, 282, -1, 236, -1, 240, -1, 242, -1, 283, -1, -1, 227, -1, 228, -1, 227, 228, -1, 229, -1, 313, -1, 10, -1, 12, -1, 11, -1, 14, -1, 67, -1, -1, 13, 109, 230, 285, 110, -1, 232, -1, 227, 232, -1, 231, 227, 232, -1, 233, -1, 232, 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, 231, 236, -1, 235, 233, -1, 235, 233, 227, -1, 235, 233, 236, -1, 237, -1, 226, 238, 226, -1, 234, -1, 227, 234, -1, 237, 228, -1, 237, 234, -1, 28, 109, 275, 110, -1, 28, 109, 169, 110, -1, 78, 109, 275, 110, -1, 78, 109, 169, 110, -1, 240, -1, 231, 240, -1, 239, 233, -1, 239, 233, 227, -1, 243, -1, 227, 243, -1, 240, 228, -1, 242, -1, 231, 242, -1, 241, 233, -1, 241, 233, 227, -1, 74, -1, 227, 74, -1, 242, 228, -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, -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, 225, 251, -1, 250, 116, 311, 251, -1, -1, 253, -1, 317, 252, -1, 330, 252, -1, 356, -1, -1, 253, -1, 130, 163, -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, 163, -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, 227, 369, 271, 372, -1, 217, -1, 269, -1, 361, -1, 369, -1, 227, 369, -1, 370, -1, 224, 335, 372, -1, 224, 339, 372, -1, 224, -1, 224, 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, 225, -1, 225, 356, -1, 365, -1, 370, -1, 225, -1, 225, 344, -1, -1, 131, 277, -1, 107, 277, -1, 164, -1, 114, 278, 371, 115, -1, -1, 277, -1, 279, 277, -1, 278, 116, 277, -1, 278, 116, 279, 277, -1, 280, 130, -1, 273, 130, -1, 281, -1, 280, 281, -1, 113, 273, -1, 111, 134, 164, 135, 112, -1, 111, 134, 309, 135, 112, -1, 111, 134, 163, 96, 163, 135, 112, -1, 113, 111, 134, 146, 135, 112, -1, 283, -1, 231, 283, -1, 282, 233, -1, 282, 233, 227, -1, 284, -1, 227, 284, -1, 283, 228, -1, 75, 109, 291, 110, -1, 286, 372, -1, 285, 116, 286, 372, -1, -1, 288, 273, 287, 289, -1, 225, 335, -1, 33, -1, 35, -1, 34, -1, -1, 289, 290, -1, 128, 273, 109, 291, 110, -1, 128, 114, 134, 297, 115, -1, 128, 109, 134, 285, 135, 110, 114, 134, 297, 115, 109, 291, 110, -1, 275, -1, 164, -1, 291, 116, 275, -1, 291, 116, 164, -1, 33, 293, -1, 232, 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, 215, -1, 217, -1, 299, 135, 116, 134, 271, -1, 225, 308, -1, 300, 135, 116, 134, 308, -1, -1, 302, -1, 304, -1, 302, 134, 304, -1, -1, 302, -1, 212, -1, 306, -1, 198, -1, -1, 5, 82, 305, 114, 303, 115, -1, 40, 304, -1, 307, -1, 322, 173, -1, 326, 134, 207, 173, -1, 216, 173, -1, 224, 322, 173, -1, 227, 322, 173, -1, 231, 322, 173, -1, 231, 227, 322, 173, -1, 224, 326, 134, 207, 173, -1, 227, 326, 134, 207, 173, -1, 231, 326, 134, 207, 173, -1, 231, 227, 326, 134, 207, 173, -1, 317, -1, 330, -1, 322, -1, 163, 122, 163, -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, 170, 110, -1, 271, -1, 233, -1, 234, -1, 228, -1, 318, 311, -1, 319, -1, 320, 311, -1, 321, 311, -1, 137, -1, 109, 318, 110, -1, 149, 317, -1, 149, 227, 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, 149, 322, -1, 149, 227, 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, 149, 326, -1, 149, 227, 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, 149, 330, -1, 149, 227, 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, 149, 335, -1, 149, 227, 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, 149, 339, -1, 149, 227, 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, 149, -1, 149, 227, -1, 149, 344, -1, 149, 227, 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, 164, 135, 112, -1, 111, 134, 117, 135, 112, -1, 349, 111, 134, 164, 135, 112, -1, 349, 111, 134, 117, 135, 112, -1, 351, -1, 352, 311, -1, 353, 311, -1, 149, -1, 149, 227, -1, 149, 350, -1, 149, 227, 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, 227, 117, 135, 112, -1, 111, 134, 227, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 7, 226, 164, 135, 112, -1, 111, 134, 227, 7, 164, 135, 112, -1, 357, -1, 358, 311, -1, 359, 311, -1, 149, -1, 149, 227, -1, 149, 356, -1, 149, 227, 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, 227, 369, -1, 362, -1, 363, -1, 149, 225, -1, 227, 149, 225, -1, 149, 370, -1, 227, 149, 370, -1, 149, 360, -1, 227, 149, 360, -1, 111, 112, 225, -1, 364, 225, -1, 111, 112, 349, 225, -1, 364, 349, 225, -1, 349, 225, -1, 111, 112, 362, -1, 364, 362, -1, 111, 112, 349, 362, -1, 364, 349, 362, -1, 349, 362, -1, 111, 134, 227, 117, 135, 112, -1, 111, 134, 227, 164, 135, 112, -1, 111, 134, 231, 164, 135, 112, -1, 111, 134, 231, 227, 164, 135, 112, -1, 369, -1, 227, 369, -1, 366, -1, 367, -1, 368, -1, 149, 225, -1, 227, 149, 225, -1, 149, 370, -1, 227, 149, 370, -1, 149, 365, -1, 227, 149, 365, -1, 111, 112, 225, -1, 111, 112, 349, 225, -1, 349, 225, -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, 218, 109, 134, 259, 135, 110, -1, -1, 116, -1, -1, 131, 164, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 298, 298, 304, 313, 314, 315, 319, 320, 321, 325, 326, 330, 331, 335, 336, 340, 341, 352, 354, 356, 358, 363, 364, 370, 374, 376, 377, 379, 380, 382, 384, 386, 395, 396, 402, 403, 407, 408, 412, 416, 418, 420, 422, 427, 430, 432, 434, 439, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 479, 480, 486, 487, 488, 489, 493, 494, 496, 501, 502, 504, 506, 511, 512, 514, 519, 520, 522, 527, 528, 530, 532, 534, 539, 540, 542, 547, 548, 553, 554, 559, 560, 565, 566, 571, 572, 577, 578, 581, 583, 588, 593, 594, 596, 602, 603, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 623, 625, 627, 629, 634, 635, 640, 641, 647, 648, 654, 655, 656, 657, 658, 659, 660, 661, 662, 672, 679, 681, 691, 692, 697, 699, 705, 707, 711, 712, 717, 722, 725, 727, 729, 739, 741, 752, 753, 755, 759, 761, 765, 766, 771, 772, 776, 781, 782, 786, 788, 794, 795, 799, 801, 803, 805, 811, 812, 816, 818, 823, 825, 827, 832, 834, 839, 841, 845, 848, 852, 855, 859, 861, 863, 865, 870, 872, 874, 879, 881, 883, 885, 887, 892, 894, 896, 898, 903, 915, 916, 921, 923, 928, 932, 934, 936, 938, 940, 946, 947, 953, 954, 958, 959, 964, 966, 972, 973, 975, 980, 982, 989, 991, 995, 996, 1001, 1003, 1007, 1008, 1012, 1014, 1018, 1019, 1023, 1024, 1028, 1029, 1044, 1045, 1046, 1047, 1048, 1052, 1057, 1064, 1074, 1079, 1084, 1092, 1097, 1102, 1107, 1112, 1120, 1142, 1147, 1154, 1156, 1163, 1168, 1173, 1184, 1189, 1194, 1199, 1204, 1213, 1218, 1226, 1227, 1228, 1229, 1235, 1240, 1248, 1249, 1250, 1251, 1255, 1256, 1257, 1258, 1263, 1264, 1273, 1274, 1279, 1280, 1285, 1287, 1289, 1291, 1293, 1296, 1295, 1307, 1308, 1310, 1320, 1321, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1345, 1347, 1349, 1351, 1353, 1355, 1357, 1359, 1361, 1363, 1365, 1367, 1369, 1375, 1376, 1378, 1380, 1382, 1387, 1388, 1394, 1395, 1397, 1399, 1404, 1406, 1408, 1410, 1415, 1416, 1418, 1420, 1425, 1426, 1428, 1433, 1434, 1436, 1438, 1443, 1445, 1447, 1452, 1453, 1457, 1459, 1465, 1464, 1468, 1470, 1475, 1477, 1483, 1484, 1489, 1490, 1492, 1493, 1502, 1503, 1505, 1507, 1512, 1514, 1520, 1521, 1523, 1526, 1529, 1534, 1535, 1540, 1545, 1549, 1551, 1557, 1556, 1563, 1565, 1571, 1572, 1580, 1581, 1585, 1586, 1587, 1589, 1591, 1598, 1599, 1601, 1603, 1608, 1609, 1615, 1616, 1620, 1621, 1626, 1627, 1628, 1630, 1638, 1639, 1641, 1644, 1646, 1650, 1651, 1652, 1654, 1656, 1660, 1665, 1673, 1674, 1683, 1685, 1690, 1691, 1692, 1696, 1697, 1698, 1702, 1703, 1704, 1708, 1709, 1710, 1715, 1716, 1717, 1718, 1724, 1725, 1727, 1732, 1733, 1738, 1739, 1740, 1741, 1742, 1757, 1758, 1763, 1764, 1770, 1772, 1775, 1777, 1779, 1802, 1803, 1805, 1807, 1812, 1813, 1815, 1820, 1825, 1826, 1832, 1831, 1835, 1839, 1841, 1843, 1849, 1850, 1855, 1860, 1862, 1867, 1869, 1870, 1872, 1877, 1879, 1881, 1886, 1888, 1893, 1898, 1906, 1912, 1911, 1925, 1926, 1931, 1932, 1936, 1941, 1946, 1954, 1959, 1970, 1971, 1982, 1983, 1989, 1990, 1994, 1995, 1996, 1999, 1998, 2009, 2018, 2024, 2030, 2039, 2045, 2051, 2057, 2063, 2071, 2077, 2085, 2091, 2100, 2101, 2102, 2106, 2110, 2112, 2117, 2118, 2122, 2123, 2128, 2134, 2135, 2138, 2140, 2141, 2145, 2146, 2147, 2148, 2182, 2184, 2185, 2187, 2192, 2197, 2202, 2204, 2206, 2211, 2213, 2215, 2217, 2222, 2224, 2233, 2235, 2236, 2241, 2243, 2245, 2250, 2252, 2254, 2259, 2261, 2263, 2272, 2273, 2274, 2278, 2280, 2282, 2287, 2289, 2291, 2296, 2298, 2300, 2315, 2317, 2318, 2320, 2325, 2326, 2331, 2333, 2335, 2340, 2342, 2344, 2346, 2351, 2353, 2355, 2365, 2367, 2368, 2370, 2375, 2377, 2379, 2384, 2386, 2388, 2390, 2395, 2397, 2399, 2430, 2432, 2433, 2435, 2440, 2445, 2453, 2455, 2457, 2462, 2464, 2469, 2471, 2485, 2486, 2488, 2493, 2495, 2497, 2499, 2501, 2506, 2507, 2509, 2511, 2516, 2518, 2520, 2526, 2528, 2530, 2534, 2536, 2538, 2540, 2554, 2555, 2557, 2562, 2564, 2566, 2568, 2570, 2575, 2576, 2578, 2580, 2585, 2587, 2589, 2595, 2596, 2598, 2607, 2610, 2612, 2615, 2617, 2619, 2632, 2633, 2635, 2640, 2642, 2644, 2646, 2648, 2653, 2654, 2656, 2658, 2663, 2665, 2673, 2674, 2675, 2680, 2681, 2685, 2687, 2689, 2691, 2693, 2695, 2702, 2704, 2706, 2708, 2710, 2712, 2714, 2716, 2718, 2720, 2725, 2727, 2729, 2734, 2760, 2761, 2763, 2767, 2768, 2772, 2774, 2776, 2778, 2780, 2782, 2789, 2791, 2793, 2795, 2797, 2799, 2804, 2809, 2811, 2813, 2831, 2833, 2838, 2839 }; #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", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "assignment_operator", "tuple", "tuple_expression_list", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "old_declaration_list_opt", "old_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "new_declaration", "new_variable_declaration", "new_variable_specifier", "new_function_declaration", "new_function_specifier", "new_function_return", "new_typedef_declaration", "typedef_declaration", "typedef_expression", "old_declaration", "declaring_list", "declaration_specifier", "type_specifier", "type_qualifier_list_opt", "type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1", "declaration_qualifier_list", "storage_class_list", "storage_class", "basic_type_name", "basic_declaration_specifier", "basic_type_specifier", "direct_type_name", "indirect_type_name", "sue_declaration_specifier", "sue_type_specifier", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type_name", "aggregate_name", "$@2", "aggregate_key", "field_declaration_list", "field_declaration", "new_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name", "$@3", "enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt", "new_parameter_type_list", "new_parameter_list", "new_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "new_parameter_declaration", "new_abstract_parameter_declaration", "parameter_declaration", "abstract_parameter_declaration", "identifier_list", "identifier_or_type_name", "no_01_identifier_or_type_name", "no_attr_identifier_or_type_name", "type_name_no_function", "type_name", "initializer_opt", "initializer", "initializer_list", "designation", "designator_list", "designator", "typegen_declaration_specifier", "typegen_type_specifier", "typegen_name", "type_parameter_list", "type_parameter", "$@4", "type_class", "assertion_list_opt", "assertion", "type_name_list", "type_declaring_list", "type_declarator", "type_declarator_name", "trait_specifier", "$@5", "trait_declaration_list", "trait_declaration", "new_trait_declaring_list", "trait_declaring_list", "translation_unit", "external_definition_list", "external_definition_list_opt", "external_definition", "$@6", "external_function_definition", "function_definition", "declarator", "subrange", "asm_name_opt", "attribute_list_opt", "attribute_list", "attribute", "attribute_parameter_list", "attrib", "any_word", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "old_function_declarator", "old_function_no_ptr", "old_function_ptr", "old_function_array", "variable_type_redeclarator", "paren_type", "type_ptr", "type_array", "type_function", "identifier_parameter_declarator", "identifier_parameter_ptr", "identifier_parameter_array", "identifier_parameter_function", "type_parameter_redeclarator", "typedef", "type_parameter_ptr", "type_parameter_array", "type_parameter_function", "abstract_declarator", "abstract_ptr", "abstract_array", "abstract_function", "array_dimension", "multi_array_dimension", "abstract_parameter_declarator", "abstract_parameter_ptr", "abstract_parameter_array", "abstract_parameter_function", "array_parameter_dimension", "array_parameter_1st_dimension", "variable_abstract_declarator", "variable_abstract_ptr", "variable_abstract_array", "variable_abstract_function", "new_identifier_parameter_declarator_tuple", "new_identifier_parameter_declarator_no_tuple", "new_identifier_parameter_ptr", "new_identifier_parameter_array", "new_array_parameter_1st_dimension", "new_abstract_declarator_tuple", "new_abstract_declarator_no_tuple", "new_abstract_ptr", "new_abstract_array", "new_abstract_tuple", "new_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 40, 41, 91, 93, 46, 123, 125, 44, 42, 38, 43, 45, 33, 126, 47, 37, 60, 62, 94, 124, 63, 58, 61, 59 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint16 yyr1[] = { 0, 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, 146, 146, 147, 147, 147, 147, 147, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 149, 149, 150, 150, 150, 150, 151, 151, 151, 152, 152, 152, 152, 153, 153, 153, 154, 154, 154, 155, 155, 155, 155, 155, 156, 156, 156, 157, 157, 158, 158, 159, 159, 160, 160, 161, 161, 162, 162, 162, 162, 163, 164, 164, 164, 165, 165, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 167, 167, 167, 167, 168, 168, 169, 169, 170, 170, 171, 171, 171, 171, 171, 171, 171, 171, 171, 172, 173, 173, 174, 174, 175, 175, 175, 175, 176, 176, 177, 178, 178, 178, 178, 178, 178, 179, 179, 179, 180, 180, 181, 181, 182, 182, 183, 184, 184, 185, 185, 186, 186, 187, 187, 187, 187, 188, 188, 189, 189, 190, 190, 190, 191, 191, 192, 192, 192, 192, 192, 192, 192, 192, 192, 192, 193, 193, 193, 194, 194, 194, 194, 194, 195, 195, 195, 195, 196, 197, 197, 197, 197, 197, 198, 198, 198, 198, 198, 199, 199, 200, 200, 201, 201, 202, 202, 203, 203, 203, 204, 204, 205, 205, 206, 206, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 213, 213, 213, 213, 213, 214, 214, 214, 215, 215, 215, 216, 216, 216, 216, 216, 217, 217, 217, 218, 218, 219, 219, 219, 220, 220, 220, 220, 220, 221, 221, 222, 222, 222, 222, 223, 223, 224, 224, 224, 224, 225, 225, 225, 225, 226, 226, 227, 227, 228, 228, 229, 229, 229, 229, 229, 230, 229, 231, 231, 231, 232, 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, 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, 1, 3, 1, 3, 7, 3, 7, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 4, 6, 1, 4, 4, 1, 1, 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, 2, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 6, 7, 1, 3, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 8, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 3, 3, 3, 3, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 1, 3, 1, 2, 2, 2, 4, 4, 4, 4, 1, 2, 2, 3, 1, 2, 2, 1, 2, 2, 3, 1, 2, 2, 1, 1, 4, 2, 0, 6, 7, 2, 2, 2, 0, 2, 2, 3, 2, 3, 1, 2, 3, 2, 2, 4, 0, 1, 2, 2, 1, 0, 1, 2, 2, 5, 2, 0, 7, 2, 4, 0, 2, 0, 1, 1, 1, 5, 5, 5, 1, 5, 5, 9, 1, 5, 0, 1, 1, 5, 1, 1, 5, 5, 1, 3, 3, 4, 1, 1, 1, 1, 2, 1, 3, 3, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 0, 2, 2, 1, 4, 0, 1, 2, 3, 4, 2, 2, 1, 2, 2, 5, 5, 7, 6, 1, 2, 2, 3, 1, 2, 2, 4, 2, 4, 0, 4, 2, 1, 1, 1, 0, 2, 5, 5, 13, 1, 1, 3, 3, 2, 3, 3, 2, 4, 1, 6, 9, 0, 11, 1, 3, 3, 3, 1, 1, 5, 2, 5, 0, 1, 1, 3, 0, 1, 1, 1, 1, 0, 6, 2, 1, 2, 4, 2, 3, 3, 3, 4, 5, 5, 5, 6, 1, 1, 1, 3, 0, 5, 0, 1, 1, 2, 6, 1, 3, 0, 1, 4, 1, 1, 1, 1, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 6, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 3, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 3, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 3, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 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[] = { 291, 291, 311, 309, 312, 310, 313, 314, 297, 299, 298, 0, 300, 325, 317, 322, 320, 321, 319, 318, 323, 324, 329, 326, 327, 328, 544, 544, 544, 0, 0, 0, 291, 217, 301, 315, 316, 7, 356, 0, 8, 14, 15, 0, 2, 60, 61, 562, 9, 291, 522, 520, 244, 3, 451, 3, 257, 0, 3, 3, 3, 245, 3, 0, 0, 0, 292, 293, 295, 291, 304, 307, 337, 283, 330, 335, 284, 345, 285, 352, 349, 359, 0, 0, 360, 286, 470, 474, 3, 3, 0, 2, 516, 521, 526, 296, 0, 0, 544, 574, 544, 2, 585, 586, 587, 291, 0, 728, 729, 0, 12, 0, 13, 291, 267, 268, 0, 292, 287, 288, 289, 290, 523, 302, 389, 545, 546, 367, 368, 12, 442, 443, 11, 438, 441, 0, 500, 495, 486, 442, 443, 0, 0, 525, 218, 0, 291, 0, 0, 0, 0, 0, 0, 0, 0, 291, 291, 2, 0, 730, 292, 579, 591, 734, 727, 725, 732, 0, 0, 0, 251, 2, 0, 529, 436, 437, 435, 0, 0, 0, 0, 544, 0, 631, 632, 0, 0, 542, 538, 544, 559, 544, 544, 540, 2, 539, 544, 598, 544, 544, 601, 0, 0, 0, 291, 291, 309, 357, 2, 291, 258, 294, 305, 338, 350, 475, 0, 2, 0, 451, 259, 292, 331, 346, 353, 471, 0, 2, 0, 308, 332, 339, 340, 0, 347, 351, 354, 358, 443, 291, 369, 362, 366, 0, 391, 472, 476, 0, 0, 0, 1, 291, 2, 527, 573, 575, 291, 2, 738, 292, 741, 542, 542, 0, 292, 0, 0, 270, 544, 540, 2, 291, 0, 0, 291, 547, 2, 498, 2, 551, 0, 0, 0, 0, 0, 0, 18, 57, 4, 5, 6, 16, 0, 0, 291, 2, 62, 63, 64, 65, 45, 19, 46, 22, 44, 66, 291, 0, 69, 73, 76, 79, 84, 87, 89, 91, 93, 95, 97, 102, 492, 748, 449, 491, 0, 447, 448, 0, 563, 578, 581, 584, 590, 593, 596, 356, 0, 2, 736, 0, 291, 739, 2, 60, 291, 3, 423, 0, 431, 292, 291, 304, 330, 284, 345, 352, 3, 3, 405, 409, 419, 424, 470, 291, 425, 703, 704, 291, 426, 428, 291, 2, 580, 592, 726, 2, 2, 246, 2, 456, 0, 454, 453, 452, 138, 2, 2, 248, 2, 2, 247, 2, 278, 2, 279, 0, 277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564, 603, 0, 451, 2, 558, 567, 657, 560, 561, 530, 291, 2, 597, 606, 599, 600, 0, 273, 291, 291, 336, 292, 0, 292, 0, 291, 731, 735, 733, 531, 291, 542, 252, 260, 306, 0, 2, 532, 291, 496, 333, 334, 280, 348, 355, 0, 291, 0, 746, 396, 0, 473, 497, 249, 250, 517, 291, 433, 0, 291, 234, 0, 2, 236, 0, 292, 0, 254, 2, 255, 275, 0, 0, 2, 291, 542, 291, 483, 485, 484, 0, 0, 748, 0, 291, 0, 291, 487, 291, 557, 555, 556, 554, 0, 549, 552, 0, 0, 291, 52, 291, 66, 47, 291, 54, 291, 291, 50, 51, 2, 124, 0, 0, 445, 0, 444, 725, 118, 291, 17, 0, 29, 30, 35, 2, 0, 35, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 107, 0, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 2, 643, 450, 640, 544, 544, 648, 477, 291, 2, 582, 583, 0, 594, 595, 0, 2, 737, 740, 118, 291, 0, 2, 705, 292, 709, 700, 701, 707, 0, 2, 2, 665, 544, 748, 614, 544, 544, 748, 544, 628, 544, 544, 679, 432, 662, 544, 544, 670, 677, 291, 427, 292, 0, 0, 291, 715, 292, 720, 748, 712, 291, 717, 748, 291, 291, 291, 0, 118, 0, 18, 2, 0, 19, 0, 457, 746, 0, 0, 463, 238, 0, 291, 0, 0, 0, 542, 566, 570, 572, 602, 605, 609, 612, 565, 604, 0, 281, 655, 0, 291, 274, 0, 0, 0, 0, 272, 2, 0, 256, 533, 291, 0, 0, 291, 2, 361, 381, 370, 0, 0, 375, 369, 747, 0, 0, 394, 0, 292, 3, 412, 3, 416, 415, 588, 0, 528, 291, 60, 3, 291, 431, 292, 3, 425, 426, 2, 0, 0, 0, 482, 303, 291, 478, 480, 3, 2, 2, 0, 499, 3, 0, 551, 126, 0, 0, 219, 0, 0, 0, 0, 36, 0, 0, 118, 291, 20, 0, 21, 0, 689, 694, 446, 686, 544, 544, 0, 105, 3, 2, 27, 0, 33, 0, 2, 25, 0, 103, 70, 71, 72, 74, 75, 77, 78, 82, 83, 80, 81, 85, 86, 88, 90, 92, 94, 96, 0, 0, 749, 291, 0, 0, 0, 644, 645, 641, 642, 494, 493, 291, 0, 291, 711, 291, 716, 292, 291, 659, 291, 291, 702, 658, 2, 291, 0, 0, 0, 0, 0, 0, 0, 0, 680, 0, 666, 617, 633, 667, 2, 613, 620, 429, 615, 616, 430, 2, 627, 636, 629, 630, 663, 664, 678, 706, 710, 708, 748, 265, 2, 742, 2, 420, 714, 719, 421, 0, 399, 3, 3, 3, 3, 451, 3, 0, 2, 465, 462, 747, 0, 458, 2, 461, 464, 0, 291, 239, 261, 3, 269, 271, 0, 451, 2, 568, 569, 2, 607, 608, 0, 656, 534, 3, 342, 341, 344, 343, 291, 535, 0, 536, 369, 0, 0, 291, 291, 0, 0, 689, 379, 382, 386, 544, 386, 385, 378, 371, 544, 373, 376, 291, 396, 390, 101, 397, 746, 0, 0, 434, 237, 0, 0, 3, 2, 665, 427, 0, 524, 0, 748, 486, 0, 291, 291, 291, 0, 548, 550, 127, 0, 0, 212, 0, 0, 0, 220, 221, 53, 0, 55, 58, 59, 0, 2, 125, 0, 0, 0, 690, 691, 687, 688, 456, 67, 68, 106, 122, 3, 105, 0, 0, 24, 35, 3, 0, 32, 99, 0, 3, 647, 651, 654, 646, 3, 589, 3, 713, 718, 2, 60, 291, 3, 3, 292, 0, 3, 619, 623, 626, 635, 669, 673, 676, 291, 3, 618, 634, 668, 291, 291, 422, 291, 291, 743, 0, 0, 0, 0, 253, 0, 101, 0, 3, 3, 0, 459, 0, 455, 0, 0, 242, 291, 0, 0, 126, 0, 0, 0, 0, 0, 126, 0, 0, 105, 105, 18, 2, 0, 0, 3, 128, 129, 2, 140, 130, 131, 132, 133, 134, 135, 142, 144, 0, 0, 0, 282, 291, 291, 544, 0, 537, 291, 372, 374, 0, 388, 690, 383, 387, 384, 377, 381, 364, 395, 0, 576, 2, 661, 660, 0, 666, 2, 479, 481, 501, 3, 509, 510, 0, 2, 505, 3, 3, 0, 0, 553, 219, 0, 0, 0, 219, 0, 0, 118, 693, 697, 699, 692, 746, 105, 0, 3, 658, 39, 3, 37, 34, 0, 3, 98, 100, 0, 2, 649, 650, 0, 0, 291, 0, 0, 0, 3, 635, 0, 2, 621, 622, 2, 637, 2, 671, 672, 0, 0, 60, 0, 3, 3, 3, 3, 407, 406, 410, 2, 2, 745, 744, 119, 0, 0, 0, 0, 3, 460, 3, 0, 240, 143, 3, 292, 291, 0, 0, 0, 0, 2, 0, 188, 0, 186, 0, 0, 0, 0, 0, 0, 0, 544, 118, 0, 148, 145, 291, 0, 0, 264, 276, 3, 3, 543, 610, 365, 380, 393, 291, 263, 291, 0, 512, 489, 291, 0, 0, 488, 503, 0, 0, 0, 213, 0, 222, 56, 2, 695, 696, 0, 123, 120, 0, 0, 0, 0, 0, 23, 0, 652, 291, 577, 262, 721, 722, 723, 0, 674, 291, 291, 291, 3, 3, 0, 682, 0, 0, 0, 0, 291, 291, 3, 541, 119, 467, 0, 0, 243, 292, 0, 0, 0, 0, 291, 189, 187, 184, 0, 190, 0, 0, 0, 0, 194, 197, 195, 191, 0, 192, 126, 35, 141, 139, 241, 0, 0, 414, 418, 417, 0, 506, 2, 507, 2, 508, 502, 291, 225, 0, 223, 0, 225, 291, 31, 121, 2, 42, 2, 40, 38, 28, 26, 3, 724, 3, 3, 3, 0, 0, 681, 683, 624, 638, 266, 2, 404, 3, 403, 0, 469, 466, 126, 0, 0, 126, 3, 0, 126, 185, 0, 2, 2, 206, 196, 0, 0, 0, 137, 0, 571, 611, 2, 0, 0, 2, 226, 0, 0, 214, 0, 3, 0, 0, 0, 0, 0, 0, 684, 685, 291, 0, 468, 149, 0, 0, 2, 162, 126, 151, 0, 179, 0, 126, 0, 2, 153, 0, 2, 0, 2, 2, 2, 193, 32, 291, 511, 513, 504, 0, 0, 0, 0, 0, 3, 3, 653, 625, 639, 675, 408, 126, 155, 158, 0, 157, 161, 3, 164, 163, 0, 126, 181, 126, 3, 0, 291, 0, 291, 0, 2, 0, 2, 136, 2, 227, 228, 0, 224, 215, 698, 0, 0, 150, 0, 0, 160, 230, 165, 2, 232, 180, 0, 183, 169, 198, 3, 207, 211, 200, 3, 0, 291, 0, 291, 0, 0, 0, 43, 41, 156, 159, 126, 0, 166, 291, 126, 126, 0, 170, 0, 0, 689, 208, 209, 210, 0, 199, 3, 201, 3, 291, 216, 229, 146, 167, 152, 126, 233, 182, 177, 175, 171, 154, 126, 0, 690, 0, 0, 0, 0, 147, 168, 178, 172, 176, 175, 173, 3, 3, 0, 0, 490, 174, 202, 204, 3, 3, 203, 205 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 812, 467, 300, 47, 133, 134, 301, 302, 303, 304, 760, 761, 1132, 1133, 305, 380, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 1029, 517, 974, 545, 321, 975, 946, 1056, 1517, 1058, 1059, 1060, 1061, 1518, 1062, 1063, 1436, 1437, 1400, 1401, 1402, 1496, 1497, 1501, 1502, 1537, 1538, 1064, 1360, 1065, 1066, 1297, 1298, 1299, 1479, 1067, 145, 952, 953, 954, 1380, 1460, 1471, 1472, 468, 469, 873, 874, 1037, 51, 52, 53, 54, 55, 346, 158, 58, 59, 60, 61, 62, 348, 64, 65, 264, 67, 68, 274, 350, 351, 71, 72, 73, 118, 75, 204, 353, 119, 78, 120, 80, 81, 454, 82, 453, 687, 688, 689, 907, 1085, 908, 83, 84, 457, 455, 695, 854, 855, 856, 857, 698, 699, 700, 358, 359, 360, 361, 465, 339, 135, 136, 521, 323, 170, 644, 645, 646, 647, 648, 85, 121, 87, 488, 489, 938, 490, 277, 494, 324, 88, 137, 138, 89, 1320, 1107, 1108, 1109, 1110, 90, 91, 716, 92, 273, 93, 94, 187, 1031, 678, 411, 125, 95, 500, 501, 502, 188, 268, 190, 191, 192, 269, 98, 99, 100, 101, 102, 103, 104, 195, 196, 197, 198, 199, 824, 604, 605, 606, 607, 200, 609, 610, 611, 571, 572, 573, 574, 750, 105, 613, 614, 615, 616, 617, 618, 967, 752, 753, 754, 594, 364, 365, 366, 367, 325, 164, 107, 108, 109, 369, 693, 568 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1317 static const yytype_int16 yypact[] = { 7252, 8635, -1317, -3, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 23, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 81, 81, 81, 1277, 970, 104, 7368, 277, -1317, -1317, -1317, -1317, -1317, 201, -1317, -1317, -1317, 1047, 187, -1317, -1317, -1317, -1317, 5370, -1317, -1317, -1317, -1317, 35, 48, -1317, 1328, -1317, -1317, -1317, -1317, 235, 1663, 343, 98, 7484, -1317, -1317, 6174, 1066, -1317, -1317, 536, 376, 5540, 978, 1631, 536, 1775, -1317, -1317, 477, 683, -1317, 536, 1892, -1317, 295, -1317, 422, 489, -1317, -1317, -1317, -1317, 346, 48, 81, -1317, 81, -1317, -1317, -1317, -1317, 9392, 1328, -1317, -1317, 1328, -1317, 321, -1317, 9431, -1317, -1317, 2250, 9501, -1317, 668, 668, 668, -1317, -1317, -1317, 81, -1317, -1317, -1317, 373, 399, 410, -1317, -1317, -1317, 420, -1317, -1317, -1317, -1317, -1317, 428, 450, -1317, -1317, 59, 8604, 2904, 144, 440, 493, 498, 531, 544, 560, 8522, 6772, 510, 580, -1317, 9114, -1317, -1317, -1317, -1317, 584, -1317, 153, 4280, 4280, -1317, 570, 283, -1317, -1317, -1317, -1317, 596, 288, 303, 332, 81, 583, -1317, -1317, 1663, 2232, 648, -1317, 73, -1317, 81, 81, 48, -1317, -1317, 80, -1317, 81, 81, -1317, 3694, 599, 613, 668, 6565, -1317, -1317, 661, 5370, -1317, -1317, 536, -1317, -1317, -1317, 48, -1317, 1328, 35, -1317, 7675, -1317, 668, 668, 668, 48, -1317, 1277, -1317, 5446, -1317, -1317, 620, 668, -1317, 668, -1317, 201, 8604, -1317, 673, -1317, 970, 692, 668, -1317, 1277, 697, 707, -1317, 7368, 576, -1317, -1317, -1317, 4822, -1317, -1317, 9720, -1317, 648, 165, 10347, 9501, 2250, 3694, -1317, 109, -1317, -1317, 9431, 1328, 743, 7515, -1317, -1317, 306, -1317, 10675, 770, 800, 2676, 801, 10480, 10499, -1317, 813, -1317, -1317, -1317, -1317, 10556, 10556, 8378, 795, -1317, -1317, -1317, -1317, -1317, -1317, 842, -1317, 685, 1919, 8717, 10480, -1317, 652, 325, 507, 317, 581, 826, 820, 823, 861, 111, -1317, -1317, 827, 703, -1317, 452, -1317, -1317, 2904, -1317, -1317, 278, 856, -1317, 636, 856, 866, 201, -1317, -1317, 872, 9392, -1317, 876, 887, 8830, -1317, -1317, 1020, 2049, 8093, 6565, 536, -1317, 536, 668, 668, -1317, -1317, -1317, -1317, -1317, -1317, 668, 9392, 1328, -1317, -1317, 9540, 1233, -1317, 7824, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 891, 4627, 10480, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 2250, -1317, 552, 901, 904, 912, 862, 920, 922, 924, 2232, -1317, -1317, 932, 35, 936, -1317, -1317, 939, -1317, -1317, -1317, 4822, -1317, -1317, -1317, -1317, -1317, 3694, -1317, 8604, 8604, -1317, 668, 2250, 6684, 1328, 8166, -1317, -1317, -1317, -1317, 4822, 165, -1317, -1317, 536, 48, -1317, -1317, 4822, -1317, 6449, -1317, -1317, 668, 668, 484, 8011, 938, 941, 931, 952, 668, -1317, -1317, -1317, -1317, 9797, -1317, 578, 6327, -1317, 48, 955, -1317, 2250, 10757, 10404, -1317, -1317, -1317, -1317, 881, 3694, -1317, 8239, 648, 3545, -1317, -1317, -1317, 1641, 586, 827, 970, 7515, 592, 9431, -1317, 7515, -1317, -1317, -1317, -1317, 603, -1317, 967, 800, 215, 8378, -1317, 9570, -1317, -1317, 8378, -1317, 8491, 8378, -1317, -1317, 966, -1317, 617, 973, 839, 983, -1317, -1317, 9253, 6415, -1317, 247, -1317, -1317, 10347, -1317, 330, 10347, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 10347, -1317, -1317, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 10480, 4526, 10347, -1317, 703, 751, -1317, -1317, 81, 81, -1317, -1317, 8604, -1317, -1317, 939, 576, -1317, 939, 10423, -1317, -1317, -1317, 8975, 6415, 968, 976, -1317, 9501, -1317, -1317, 584, -1317, 990, 769, 999, 3014, 124, 827, -1317, 81, 81, 827, 125, -1317, 81, 81, 939, -1317, -1317, 81, 81, -1317, 856, 9652, 1328, 10902, 151, 358, 9652, -1317, 9720, -1317, 827, -1317, 9392, -1317, 147, 7790, 7790, 7790, 1328, -1317, 5708, 982, 891, 1167, 995, 996, -1317, 1011, 4280, 230, -1317, 1103, 1328, 7790, 576, 2250, 576, 648, 671, 856, -1317, -1317, 694, 856, -1317, -1317, -1317, 800, -1317, 856, 48, 9797, -1317, 621, 1024, 640, 1026, -1317, 1030, 48, -1317, -1317, 4822, 48, 1032, 9570, 1037, -1317, 1585, -1317, 335, 390, 970, -1317, 970, 1023, 10480, -1317, 970, 10902, -1317, -1317, 1034, -1317, -1317, -1317, 576, -1317, 10830, 887, -1317, 7790, 859, 8093, -1317, -1317, 584, 1025, 1036, 1641, 3247, -1317, -1317, 7515, -1317, -1317, 1039, -1317, -1317, 1043, -1317, 1039, 1048, 10675, 10347, 67, 1027, 133, 1053, 1061, 1068, 1069, -1317, 1072, 1074, 9362, 6534, -1317, 10347, -1317, 839, 2140, -1317, -1317, -1317, 81, 81, 10290, 10347, 1070, -1317, -1317, 675, -1317, 10347, -1317, -1317, 644, -1317, -1317, -1317, -1317, 652, 652, 325, 325, 507, 507, 507, 507, 317, 317, 581, 826, 820, 823, 861, 10480, 333, -1317, 9797, 1079, 1080, 1081, 751, -1317, -1317, -1317, -1317, -1317, 9797, 700, 7790, -1317, 9392, -1317, 6891, 8943, -1317, 7824, 6772, -1317, -1317, 769, 9797, 917, 1082, 1083, 1084, 1087, 1088, 1089, 1091, -1317, 4955, 3014, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 939, -1317, -1317, -1317, 827, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 1098, -1317, 1099, 1101, -1317, -1317, 35, 1070, 5708, -1317, -1317, -1317, 4627, 1102, -1317, -1317, -1317, -1317, 970, 5944, 1191, -1317, -1317, -1317, -1317, 1094, 35, -1317, -1317, 939, -1317, -1317, 939, 24, 939, -1317, -1317, -1317, -1317, -1317, -1317, 9223, -1317, 48, -1317, -1317, 432, 441, 9540, 7010, 2348, 10480, 3377, -1317, -1317, 1092, 94, 1092, -1317, 970, -1317, 81, -1317, -1317, 8748, 931, -1317, -1317, -1317, 941, 1116, 1111, -1317, -1317, 1118, 1119, -1317, 859, 2430, -1317, 455, -1317, 3247, 827, -1317, 1122, 7515, 9682, 8604, 1125, -1317, -1317, 1130, 1135, 1124, -1317, 10480, 166, 222, 1132, -1317, 1138, 576, 1138, -1317, -1317, 1138, 1137, -1317, 1145, 1147, 1148, 2140, -1317, -1317, -1317, 4627, -1317, -1317, -1317, -1317, 1143, 10347, 1149, 576, -1317, 10347, -1317, 576, -1317, -1317, 10347, -1317, 721, 856, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 891, 887, 8830, -1317, -1317, 7129, 1152, -1317, 731, 856, -1317, 745, 763, 856, -1317, 668, 5561, -1317, -1317, -1317, 9797, 9797, -1317, 8166, 8166, -1317, 1154, 1156, 1153, 1155, -1317, 1168, 460, 196, 1070, -1317, 576, -1317, 4280, -1317, 10347, 474, -1317, 6296, 1159, 1170, 10233, 1172, 1175, -14, 3, 11, 10347, 1179, 48, 10347, 10347, 1160, 1177, 282, 1161, -1317, -1317, -1317, 1180, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 970, 1184, 10347, -1317, 9797, 9797, 81, 1188, -1317, 8861, -1317, -1317, 809, -1317, 3377, -1317, -1317, -1317, -1317, 1585, -1317, -1317, 1185, -1317, -1317, -1317, -1317, 1193, 2430, -1317, -1317, 1176, -1317, 1039, -1317, -1317, 2250, 1196, -1317, -1317, -1317, 709, 1198, -1317, 133, 1202, 10480, 1186, 133, 133, 1211, 9253, 789, 856, -1317, -1317, 1011, 10347, 1214, 1143, 505, 224, 1217, -1317, -1317, 1218, 1217, -1317, -1317, 1226, -1317, -1317, 939, 1228, 1230, 6653, 1231, 1232, 1243, -1317, -1317, 1246, -1317, -1317, 939, -1317, -1317, -1317, -1317, 939, 10347, 10347, 887, 1245, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 10480, 10480, 1247, 1251, 1217, -1317, -1317, 970, -1317, -1317, -1317, 4468, 9682, 10347, 10347, 1311, 10347, -1317, 1234, -1317, 1237, -1317, 1239, 10347, 1241, 10347, 1049, 1244, 26, 81, 9084, 750, -1317, -1317, 5944, 1267, 481, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 10053, -1317, 8239, 1274, -1317, -1317, 9682, 482, 512, -1317, 1272, 1259, 800, 1280, -1317, 245, -1317, -1317, -1317, -1317, 939, 1279, -1317, -1317, 1287, 385, 444, 576, 1293, -1317, 1294, -1317, 9797, -1317, -1317, -1317, -1317, -1317, 1295, -1317, 9797, 9797, 9797, -1317, -1317, 1297, -1317, 1298, 1282, 1305, 511, 7863, 7978, -1317, -1317, 348, -1317, 1304, 1310, -1317, 8312, 712, 734, 1308, 739, 6143, -1317, -1317, -1317, 515, -1317, 765, 1318, 1320, 48, 1371, 879, -1317, -1317, 10347, -1317, 10233, 10347, -1317, -1317, -1317, 1322, 1329, -1317, -1317, -1317, 1324, -1317, -1317, -1317, -1317, -1317, -1317, 9682, 800, 265, -1317, 1309, 800, 9797, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 1330, 1331, -1317, -1317, -1317, -1317, -1317, -1317, -1317, 1334, -1317, 1333, -1317, -1317, 10233, 143, 10347, 10233, -1317, 1338, 10347, -1317, 259, 1354, 1356, -1317, -1317, 1346, 1347, 1326, -1317, 880, -1317, -1317, -1317, 1328, 2250, 1345, 842, 364, 10480, -1317, 774, -1317, 576, 576, 1352, 1355, 1357, 1360, -1317, -1317, 8166, 1358, -1317, 1436, 10480, 1349, -1317, -1317, 10145, -1317, 783, -1317, 1350, 10233, 1359, -1317, -1317, 1378, -1317, 1379, -1317, 1394, 1396, -1317, 1361, 9682, -1317, -1317, -1317, 800, 576, 1386, 1367, 1392, 1217, 1217, -1317, -1317, -1317, -1317, -1317, 10233, 275, -1317, 384, -1317, -1317, 7600, -1317, -1317, 1375, 10347, -1317, 10347, 7600, 48, 9570, 48, 9570, 1393, -1317, 1398, -1317, -1317, 1395, 842, -1317, 798, -1317, -1317, -1317, 1399, 1401, -1317, 10480, 10480, -1317, -1317, 964, 167, -1317, -1317, 1388, -1317, 964, -1317, -1317, 2461, 576, -1317, -1317, 48, 9570, 48, 9570, 1409, 1390, 576, -1317, -1317, -1317, -1317, 10145, 1410, 964, 5861, 10347, 10057, 1412, 964, 1414, 2461, 3613, -1317, -1317, -1317, 1420, -1317, -1317, -1317, -1317, 8604, -1317, -1317, -1317, 9924, -1317, 10145, -1317, -1317, 1402, 9836, -1317, -1317, 10057, 48, 3613, 48, 1421, 1429, 817, -1317, 9924, -1317, -1317, -1317, 9836, -1317, -1317, -1317, 48, 48, -1317, -1317, -1317, -1317, -1317, -1317, -1317, -1317 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1317, 4344, 3244, -1317, 633, -1317, 172, 896, -203, -1317, 487, -518, -482, -910, -211, 1511, 0, -1317, 1129, 534, 537, 615, 556, 984, 981, 988, 980, 989, -1317, 4, -451, 4784, -913, -1317, -702, 571, 13, -706, 419, -1317, 190, -1317, 345, -964, -1317, -1317, 85, -1317, -1099, -1138, 197, -1317, -1317, -1317, -1317, 20, -1281, -1317, -1317, -1317, -1317, -1317, -1317, 266, -1095, 50, -1317, -472, -1317, 443, 239, -1317, 118, -1317, -294, -1317, -1317, -1317, 496, -829, -1317, -1317, 8, -952, 28, 2894, -1317, -1317, -1317, -214, -1317, 121, 1028, -198, 1848, 3592, -1317, -1317, 127, 296, 1545, 1505, -1317, 1929, -1317, -1317, 137, 2139, -1317, 2574, 804, -1317, -1317, -1317, -637, -1317, 886, 889, 490, 670, 52, -1317, -1317, -1317, 893, 666, -510, -1317, -116, 40, 1073, -1317, -1317, -889, -983, 933, 1377, 1006, -11, -1317, 1351, 508, -322, -183, -145, 623, 724, -1317, 944, -1317, 2701, 574, -443, 875, -1317, -1317, 659, -1317, -228, -1317, -45, -1317, -1317, -1317, -1253, 370, -1317, -1317, -1317, 1120, -1317, 33, -1317, -1317, -828, -100, -1316, -170, 2264, -1317, 1914, -1317, 868, -1317, -155, 129, -181, -180, -175, 7, -41, -40, -35, 1507, 37, 53, 57, -29, -172, -163, -158, -150, -293, -500, -490, -485, -542, -284, -525, -1317, -1317, -499, 1035, 1038, 1040, 1486, 4616, -563, -531, -513, -491, -561, -1317, -506, -730, -727, -723, -562, -311, -227, -1317, -1317, 378, 19, -93, -1317, 3633, 159, -611, -428 }; /* 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 -520 static const yytype_int16 yytable[] = { 49, 113, 149, 150, 398, 399, 427, 97, 151, 114, 400, 452, 260, 401, 751, 765, 267, 409, 963, 106, 106, 964, 402, 382, 383, 965, 947, 403, 56, 115, 739, 406, 49, 595, 867, 404, 439, 1170, 826, 97, 356, 829, 470, 147, 1068, 1069, 177, 836, 724, 49, 50, 106, 729, 972, 918, 603, 161, 843, 1194, 825, 56, 722, 341, 186, 608, 143, 209, 1378, 818, 49, 193, 793, 1136, 216, 817, 1196, 226, 219, 504, 122, 152, 1438, 50, 1198, 398, 399, 819, 1186, 106, 1301, 400, 474, 476, 401, 210, 261, 153, 220, 262, 814, 154, 424, 402, 672, 674, 113, 526, 403, 820, 815, 280, 406, 31, 113, 816, 404, 266, 271, 1195, 31, 31, 63, 1180, 668, 858, 859, 202, 69, 1199, 96, 1168, 1169, 123, 31, 1076, 1197, 627, 76, 1203, 1204, 631, 876, 168, 677, 149, 150, 306, 147, 31, 526, 151, 681, 1438, 63, 161, 113, 344, 407, 1302, 69, 209, 96, 171, 31, 31, 1457, 169, 372, 281, 76, 713, 728, 148, 111, 963, 830, 203, 964, 96, 833, 912, 965, 252, 446, 410, 186, 186, 1397, 1398, 418, 741, 410, 189, 161, 719, 96, 357, 948, 96, 930, 850, 266, 459, 470, 853, 410, 565, 438, 166, 49, 1185, -231, -231, 142, 1244, 291, 161, 814, 480, 1525, 410, 209, 152, 470, 149, 150, 666, 815, 442, 408, 151, 470, 816, 827, 834, 600, 600, 407, 153, 306, 566, 1170, 154, 922, 950, 173, 1540, 587, 526, 440, 663, 49, 829, 252, 328, 797, 475, 1399, 97, 271, 1015, 482, 1079, 846, 271, 266, 266, 847, 499, 376, 106, 113, 166, 161, 475, 1116, 96, 341, 567, 56, 818, 1014, -231, 1138, 462, 377, 1002, 253, 144, 96, 993, 1170, 1176, 990, 306, 655, 70, 526, 819, 155, 733, 50, 1442, 1397, 1398, 326, 306, 518, 595, 1247, 146, 814, 1092, 595, 397, 189, 356, 608, 1177, 110, 820, 815, 570, 670, 663, 734, 816, 147, 70, 675, 41, 42, 1117, 1495, 372, 1186, 177, 1248, 96, 1500, 113, 869, 1200, 641, 344, 735, 201, 526, 601, 619, 96, 181, 1118, 628, 286, 1324, 1483, 632, 758, 1520, 870, 803, 212, 624, 1527, 41, 42, 624, 435, 826, 113, 1467, 63, 1408, 1381, 1325, 664, 471, 69, -287, 96, 1068, 1069, 416, 1168, 1169, 897, 578, 76, 410, 1511, 513, 1513, 76, 478, 266, 1442, 1177, 326, 386, 818, 1442, 110, 852, 389, 186, 436, 555, 556, 356, 1170, 247, 372, 41, 42, 387, 444, 1018, 819, 391, 390, 1442, 250, 266, 464, 306, 306, 163, 1442, 266, 435, 341, 624, 713, 492, 392, 843, 493, 671, 673, 820, 763, 557, 558, 551, 552, 1156, 1158, 393, 746, 664, 913, 263, 113, 1083, 252, 96, 110, 1361, -466, 1125, -466, 887, 985, 394, 166, 470, 914, 41, 42, 848, 266, 357, 356, 849, 1427, 1428, 602, -466, 266, 1422, 624, -10, 49, 519, 880, 372, 718, 1186, -515, 97, 163, 927, 113, 1423, 1186, 1329, 1103, 1134, 1115, 1468, 868, 106, 597, 1433, 306, 915, 113, -439, 1100, 306, 56, 306, 306, 1469, 1243, 110, 441, 518, -440, 749, 712, 916, 518, 113, 344, 518, 41, 42, 276, 1013, 909, 951, 50, 189, 1015, 1524, 278, 471, 608, 2, 206, 4, 5, 6, 7, 1186, 70, 913, 110, 329, 139, 238, 878, 76, 1331, 1535, 915, 471, 279, 41, 42, 576, 1539, 1080, 357, 471, 848, 577, 570, 570, 1099, -102, 1081, 76, 995, -102, 306, 1125, 786, 803, 1359, 76, 912, 326, 326, 239, 434, 624, 344, 1183, 240, 713, 619, 682, 553, 554, 1183, 1315, 601, 577, 601, 710, 330, 63, 35, 1184, 36, 331, 845, 69, 1473, 96, 1307, 1316, -119, 602, -119, 1473, 624, 76, -119, 370, 1347, 624, 860, 619, 1348, 1317, 357, 624, 746, 679, 624, 624, 624, -119, -119, 111, 875, 215, 332, 1233, 1013, 1318, 212, 1237, 1362, 110, 434, 341, 624, 326, 266, 333, 1407, 242, 911, 705, 41, 42, 252, 328, 410, 110, 1235, 139, 140, 803, 1521, 334, 326, 522, 559, 560, 41, 42, 1026, 8, 9, 10, 11, 12, 113, 163, 384, 906, 595, 703, 371, 176, 215, 356, 375, 704, 519, 720, 1073, 921, 759, 519, 725, 721, 519, 764, 388, 726, 31, 425, 624, 932, 619, 408, 730, 1111, 396, 805, 718, 718, 731, 499, 1033, 426, 398, 399, 1275, 1276, 745, 813, 400, 602, 891, 401, 746, 215, 34, 326, 746, 1475, 176, 1476, 402, 176, 113, 344, 581, 403, 410, 749, 749, 893, 406, 449, 464, 404, 110, 746, 139, 140, 983, 980, 8, 9, 10, 11, 12, 41, 42, 212, 548, 527, 528, 529, 431, 963, 549, 550, 964, 844, 70, 881, 965, 410, 597, 712, 979, 1372, -363, 176, 984, 31, 980, 570, 1522, 530, 215, 531, 243, 532, 533, 624, 471, 624, 884, 998, 410, -392, 624, 344, 341, 992, 601, 569, 1160, 410, 910, 704, 76, 34, 1231, 45, 46, 1355, 601, 877, 577, 879, 471, 746, 460, 1140, 690, 410, 215, 713, 527, 528, 529, 215, 461, 1152, 37, 410, 76, 1356, 40, 813, 602, 357, 1358, 746, 176, 41, 42, 1155, 746, 600, 483, 889, 530, 569, 531, 410, 532, 1304, 710, 1028, 896, 45, 46, 214, 898, 1157, 306, 600, 1363, 926, 407, 811, 503, 600, 746, 291, 522, 1425, 522, 45, 46, 522, 1181, 1422, 522, 106, 1443, 803, 624, 48, 112, 1240, 746, 410, 56, 113, 344, 906, 176, 906, 524, 1489, 921, 507, 951, 176, 713, 1490, 951, 951, 441, 113, 328, 410, 214, 512, 215, 526, 112, 112, 1545, 48, 663, 1424, 932, 932, 577, 909, 805, 718, 1368, 1369, 48, 813, 113, 306, 712, 561, 48, 1435, 562, 748, 1104, 410, 563, 602, 48, 921, 564, 45, 46, 567, 48, 106, 1086, 48, 1086, 214, 48, 749, 337, 931, 1105, 600, 418, 659, 410, 1507, -436, 45, 46, 112, 112, 176, 585, 2, 206, 4, 5, 6, 7, 588, 1137, 480, 328, 410, 212, 63, 1417, 980, 176, 344, -3, 69, 176, 48, 637, 215, 48, 1226, 212, 1397, 1398, 76, 656, 48, 736, 657, 737, 1493, 1435, 738, 624, 624, 742, 658, 1125, 710, 214, 827, 328, 600, 116, 660, 1322, 661, 1082, 662, 910, 1330, 1332, 1333, 306, 1028, 665, 110, 48, 139, 140, 215, 35, 667, 36, 257, 48, 691, 41, 42, 664, 48, 692, 106, 1167, 911, 690, 694, 214, 176, 602, 696, 56, 214, -235, 2, 206, 4, 5, 6, 7, 732, 159, 743, 113, 806, 48, 48, 747, 906, 770, 771, 1078, 807, 906, 772, 773, 37, 755, 174, 175, 40, 48, 932, 228, 212, 326, 810, 41, 42, 48, 266, 1294, 1295, 1296, -3, 821, -12, 341, 48, 778, 779, 48, 1379, 37, 921, 624, 1379, 40, 112, -13, 865, 866, 1120, 371, 41, 42, 872, 258, 892, 35, 894, 36, 920, 112, -519, 159, 895, 112, -413, 344, 899, 48, 112, 902, 1131, 935, 942, 214, 1131, 721, 43, 844, 944, 949, 471, 48, 48, 955, 45, 46, 1188, 215, 48, 70, 774, 775, 776, 777, 322, 48, 76, 956, 957, 958, 921, 921, 959, 338, 960, 712, 976, 271, 113, 987, 988, 989, 1004, 1005, 1006, 215, 219, 1007, 1008, 1009, 215, 1010, 1283, 1284, 1131, 1286, 113, 106, 1021, -401, 306, -400, 1291, 910, 1293, 210, 220, 1035, 910, 1458, 1070, 176, 905, 48, 624, 1072, 1093, 1094, 113, 106, 1095, 1096, 1102, 429, 214, 1112, 1104, 433, 56, 110, 1202, 139, 140, 48, 48, 1113, 746, 106, 1119, 1121, 41, 42, 970, 176, 1114, 1122, 1105, 1123, 1124, 1127, 48, 1130, 1150, 1173, 48, 1174, 710, 322, 1189, 176, 1171, 215, 1172, 624, 624, 642, 214, 1420, 863, 1190, 1175, 1192, 271, 176, 1193, 215, 1533, 306, 1201, 1206, 1205, 48, 1057, 1208, 1213, -3, 690, 441, 1218, 433, 1221, 48, 487, 1223, 492, 37, 106, 174, 175, 40, 440, 1227, 1232, 1350, 1234, 56, 41, 42, 1236, 48, 113, 1239, 520, 398, 399, 48, 1245, 48, 1104, 400, 1251, 63, 401, 1249, 159, 70, 1253, 69, 1255, 106, 1256, 402, 375, 1257, 1258, 710, 403, 76, 1105, 129, 406, 130, 131, 132, 404, 1259, 1261, 1268, 1285, 1277, 41, 42, 112, 1278, 176, 1419, 1288, 48, 586, 1289, 1403, 1290, 592, 1292, 663, 48, 1300, 266, 215, 48, 1506, 141, 1306, 48, 1313, 921, 112, 1319, 112, 1321, 1323, 625, 1345, 624, 1327, 629, 701, 214, 338, 1328, 37, 921, 174, 175, 40, 1334, 1335, 1337, 471, 1343, 1344, 41, 42, 509, 1188, 1346, 1353, 1357, 113, 1131, 1131, 1131, 1354, 112, 76, 214, 1104, 1364, 112, 1365, 214, 1296, 1373, 241, 244, 546, 547, 106, 1375, 1374, 113, 1382, 1391, 1392, -402, 1395, 1105, 113, 1406, 113, 1410, 113, 1412, 322, 322, 1414, 1415, 690, 1416, 106, 1421, 1191, 1429, 149, 150, 1430, 106, 1431, 56, 151, 1432, 921, 921, 546, 1348, 56, 407, 112, 1434, 1439, 1505, 686, 1444, 212, 48, 113, 1366, 113, 1448, 1450, 1452, 1446, 1454, 1456, 116, 48, 1461, 48, 113, 1462, 664, 214, 1463, 1484, 1505, 1505, 70, 1474, 1486, 546, 1488, 1491, 161, 1492, 306, 214, 48, 106, 1514, 487, 1499, 322, 1515, 487, 1528, 1519, 56, 1526, 176, 1505, 1530, 1543, 48, 520, 1536, 520, 372, 112, 520, 1544, 322, 520, 1207, 781, 783, 780, 48, 1129, 112, 48, 112, 782, 338, 1494, 784, 1305, 162, 1131, 1131, 1546, 1409, 471, 1238, 1367, 1383, 1477, 1212, 1188, 471, 900, 194, 213, 901, 217, 1188, 215, 227, 76, 441, 1220, 232, 1087, 48, 70, 76, 1091, 112, 799, 112, 923, 1034, 871, 112, 1126, 456, 1459, 937, 1101, 1314, 945, 112, 0, 701, 715, 789, 322, 0, 790, 214, 791, 0, 0, 0, 48, 48, 229, 801, 0, 230, 471, 0, 234, 213, 236, 0, 1188, 0, 48, 0, 1057, 245, 0, 0, 478, -288, 76, 0, 0, 1478, 0, 1482, 8, 9, 10, 11, 12, 0, 842, 0, 0, 0, 0, 592, 1508, 162, 0, 0, 37, 851, 183, 184, 40, 1516, 0, 0, 213, 0, 373, 41, 42, 31, 0, 0, 326, 1510, 412, 1512, 767, 768, 769, 0, 0, 420, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 904, 0, 410, 0, 34, 0, 0, 0, 45, 46, 0, 0, 0, 48, 0, 0, 0, 686, 0, 37, 0, 905, 162, 40, 1541, 48, 1542, 701, 1371, 0, 41, 42, 213, 0, 443, 0, 643, 701, 0, 1549, 1550, 37, 70, 183, 184, 40, 0, 0, 890, 70, 0, 701, 41, 42, 0, 487, 717, 0, 0, 0, 412, 0, 0, 229, 45, 46, 0, 215, 642, 0, 213, 0, 0, 0, 112, 213, 0, 338, 185, 0, 1396, 0, 0, 1404, -289, 0, 45, 46, 0, 0, 498, 8, 9, 10, 11, 12, 0, 48, 0, 506, 70, 508, 511, 0, 0, 0, 48, 0, 48, 514, 515, 214, 0, 0, 575, 112, 0, 0, 0, 0, 31, 0, 579, 508, 508, 582, 1441, 0, 0, 0, 497, 1445, 0, 1481, 0, 1481, 994, 0, 48, 0, 373, 801, 0, 0, 0, 176, 702, 723, 34, 727, 0, 0, 0, 0, 66, 117, 0, 0, 112, 1466, 213, 508, 215, 0, 0, 0, 0, 986, 0, 1481, 0, 1481, 642, 0, 0, 0, 0, 991, 0, 0, 112, 0, 0, 0, 112, 0, 66, 0, 0, 412, 971, 1003, 0, 420, 0, 0, 0, 508, 0, 0, 0, -290, 229, 160, 234, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 373, 0, 0, 0, 0, 221, 0, 0, 0, 0, 0, 801, 0, 0, 0, 0, 112, 74, 338, 31, 0, 0, 0, 213, 0, 1534, 0, 0, 126, 126, 126, 1534, 0, 0, 686, 0, 0, 701, 701, 0, 213, 259, 1534, 0, 0, 0, 1534, 34, 0, 74, 0, 0, 412, 0, 112, 0, 487, 1106, 322, 0, 0, 0, 0, 0, 0, 213, 0, 0, 48, 0, 0, 0, 0, 48, 229, 0, 0, 0, 0, 214, 864, 0, 0, 327, 0, 0, 222, 0, 0, 0, 48, 259, 349, 0, 0, 701, 701, 176, 0, 0, 126, 0, 126, 0, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 842, 0, 0, 0, 0, 0, 0, 0, 405, 0, 0, 0, 0, 275, 0, 917, 0, 919, 0, 0, 702, 456, 0, 423, 544, 0, 428, 430, 0, 575, 575, 160, 0, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 508, 0, 447, 112, 0, 0, 450, 0, 451, 352, 214, 0, 0, 1165, 1166, 0, 0, 458, 0, 126, 0, 0, 213, 66, 0, 0, 48, 126, 472, 126, 126, 686, 0, 0, 126, 0, 126, 126, 479, 0, 0, 0, 0, 0, 0, 37, 430, 183, 184, 40, 213, 546, 0, 0, 0, 213, 41, 42, 0, 0, 0, 0, 0, 77, 0, 0, 882, 112, 112, 112, 885, 1215, 1216, 801, 8, 9, 10, 11, 12, 1311, 0, 0, 599, 448, 600, 0, 0, 0, 0, 702, 45, 46, 509, 0, 0, 77, 0, 0, 0, 702, 0, 0, 0, 31, 74, 0, 126, 0, 0, 74, 0, 701, 259, 702, 0, 0, 593, 0, 0, 701, 701, 701, 621, 0, 0, 0, 213, 0, 0, 508, 0, 34, 223, 0, 0, 626, 0, 0, 0, 626, 213, 643, 259, 0, 0, 0, 0, 1038, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338, 0, 498, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 748, 0, 410, 0, 0, 0, 0, 1106, 45, 46, 701, 0, 0, 0, 0, 1088, 472, 508, 0, 0, 0, 0, 31, 48, 48, 0, 0, 497, 0, 575, 222, 349, 112, 112, 0, 0, 472, 0, 0, 0, 0, 124, 127, 128, 472, 0, 354, 508, 0, 0, 34, 0, 0, 0, 0, 37, 0, 183, 184, 40, 213, 0, 697, 0, 0, 430, 41, 42, 0, 0, 112, 0, 643, 37, 0, 183, 184, 40, 1336, 0, 711, 0, 66, 0, 41, 42, 1338, 1339, 1340, 0, 430, 0, 185, 0, 430, 0, 0, 74, 0, 1106, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 265, 0, 352, 254, 0, 255, 0, 74, 45, 46, 0, 0, 0, 259, 349, 74, 0, 48, 112, 0, 0, 0, 0, 0, 0, 0, 0, 112, 0, 0, 0, 77, 0, 352, 702, 702, 77, 412, 0, 0, 1384, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 352, 0, 74, 0, 0, 0, 508, 0, 792, 0, 37, 1038, 183, 184, 40, 48, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 626, 804, 0, 0, 8, 9, 10, 11, 12, 395, 1106, 0, 0, 823, 0, 702, 702, 0, 352, 414, 415, 904, 0, 410, 419, 508, 421, 422, 0, 45, 46, 593, 0, 31, 0, 0, 593, 1141, 0, 0, 0, 1480, 626, 1480, 0, 349, 349, 349, 0, 0, 0, 126, 126, 223, 1153, 0, 0, 0, 0, 0, 508, 34, 0, 349, 0, 0, 0, 0, 0, 0, 213, 0, 0, 508, 0, 0, 0, 1480, 0, 1480, 126, 697, 352, 126, 126, 0, 126, 0, 126, 126, 0, 0, 472, 126, 126, 0, 0, 37, 1281, 183, 184, 40, 0, 931, 0, 600, 322, 0, 41, 42, 0, 45, 46, 0, 508, 0, 0, 0, 472, 0, 77, 349, 0, 0, 0, 0, 352, 352, 352, 0, 936, 0, 412, 430, 1504, 354, 410, 0, 79, 0, 77, 0, 45, 46, 352, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 259, 711, 0, 0, 0, 0, 966, 352, 1312, 0, 0, 354, 0, 0, 0, 79, 0, 1241, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 77, 0, 0, 0, 0, 508, 0, 0, 0, 702, 0, 0, 0, 74, 697, 0, 352, 702, 702, 702, 0, 224, 0, 0, 697, 0, 349, 0, 626, 0, 0, 1001, 0, 626, 804, 0, 0, 0, 697, 0, 0, 0, 354, 0, 0, 126, 126, 0, 1012, 0, 0, 352, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508, 508, 0, 0, 0, 213, 0, 0, 0, 0, 0, 0, 0, 0, 86, 0, 702, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 352, 0, 0, 0, 66, 0, 0, 0, 0, 0, 352, 354, 352, 355, 0, 0, 86, 222, 0, 0, 352, 0, 0, 0, 352, 285, 626, 0, 0, 0, 0, 286, 0, 259, 711, 287, 0, 1084, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 225, 0, 354, 354, 354, 0, 0, 0, 0, 0, 1098, 0, 0, 0, 0, 505, 0, 213, 430, 117, 354, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 74, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 126, 79, 0, 0, 0, 126, 79, 0, 352, 0, 0, 0, 0, 794, 795, 0, 0, 0, 0, 0, 0, 77, 593, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 428, 0, 0, 0, 0, 697, 697, 828, 349, 349, 831, 832, 0, 835, 0, 837, 838, 0, 0, 0, 839, 840, 0, 0, 354, 0, 0, 0, 1187, 0, 0, 0, 0, 508, 0, 57, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 697, 697, 224, 0, 57, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 354, 0, 0, 0, 31, 223, 352, 352, 354, 352, 352, 0, 354, 86, 0, 0, 0, 0, 86, 0, 0, 57, 0, 0, 57, 0, 0, 0, 0, 74, 626, 0, 34, 0, 0, 0, 0, 37, 0, 508, 508, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 126, 79, 0, 711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 352, 0, 355, 0, 0, 0, 0, 79, 77, 43, 0, 0, 0, 968, 969, 79, 0, 45, 46, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 1282, 355, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 347, 225, 0, 31, 259, 355, 0, 79, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 697, 0, 711, 0, 352, 0, 117, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 183, 184, 40, 0, 0, 0, 0, 0, 0, 41, 42, 355, 0, 0, 697, 0, 0, 0, 0, 0, 0, 0, 697, 697, 697, 0, 0, 57, 0, 222, 86, 126, 0, 349, 349, 599, 0, 600, 0, 0, 0, 0, 0, 45, 46, 362, 0, 1187, 0, 0, 86, 74, 0, 0, 0, 0, 0, 57, 86, 0, 0, 0, 0, 352, 0, 352, 0, 354, 354, 0, 354, 354, 0, 0, 0, 355, 362, 0, 0, 0, 117, 0, 0, 0, 0, 0, 697, 0, 0, 0, 77, 1089, 0, 0, 362, 352, 86, 0, 0, 0, 0, 0, 0, 352, 352, 352, 0, 0, 0, 0, 0, 0, 0, 0, 352, 352, 0, 0, 0, 355, 355, 355, 0, 0, 0, 354, 354, 0, 74, 0, 0, 0, 0, 0, 0, 0, 0, 355, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 352, 0, 8, 9, 10, 11, 12, 0, 0, 0, 0, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, 0, 355, 354, 0, 31, 0, 1187, 0, 362, 0, 0, 0, 0, 1187, 0, 167, 0, 172, 0, 0, 178, 179, 180, 0, 182, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 355, 37, 233, 0, 352, 40, 0, 0, 347, 223, 0, 0, 41, 42, 248, 249, 362, 362, 362, 0, 0, 0, 1217, 0, 0, 0, 0, 0, 1187, 0, 0, 77, 0, 0, 362, 1529, 0, 0, 717, 0, 0, 0, 0, 354, 355, 354, 45, 46, 0, 0, 0, 74, 362, 0, 355, 0, 355, 0, 74, 57, 0, 224, 0, 86, 355, 0, 0, 0, 355, 8, 9, 10, 11, 12, 0, 354, 0, 0, 0, 0, 0, 0, 0, 354, 354, 354, 0, 0, 0, 86, 0, 0, 362, 0, 354, 354, 0, 0, 31, 0, 0, 347, 0, 0, 0, 0, 0, 0, 77, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 362, 0, 79, 0, 37, 0, 183, 184, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 354, 0, 0, 0, 1303, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 347, 0, 0, 904, 0, 410, 362, 0, 0, 0, 0, 45, 46, 0, 0, 0, 362, 0, 362, 0, 0, 0, 0, 225, 0, 0, 362, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 347, 347, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 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, 86, 26, 27, 28, 29, 77, 0, 30, 0, 0, 31, 32, 77, 590, 0, 598, 355, 355, 0, 355, 355, 0, 0, 0, 0, 0, 622, 623, 0, 347, 362, 0, 0, 0, 0, 33, 0, 0, 34, 79, 35, 0, 36, 37, 0, 38, 39, 40, 0, 8, 9, 10, 11, 12, 41, 42, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 355, 0, 0, 31, 0, 43, 0, 44, 0, 211, 0, -518, 0, 45, 46, 0, 0, 0, 231, 0, 235, 0, 237, 0, 0, 0, 0, 0, 0, 246, 0, 34, 0, 165, 0, 0, 37, 0, 183, 184, 40, 0, 0, 0, 0, 347, 0, 41, 42, 0, 218, 0, 0, 347, 0, 8, 9, 10, 11, 12, 211, 0, 235, 237, 246, 0, 0, 0, 362, 362, 355, 362, 362, 1504, 0, 410, 0, 0, 0, 0, 0, 45, 46, 0, 31, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 165, 0, 0, 0, 272, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 34, 224, 0, 0, 0, 37, 57, 183, 184, 40, 0, 0, 0, 0, 362, 362, 41, 42, 165, 0, 0, 0, 0, 79, 0, 0, 0, 0, 368, 0, 0, 0, 374, 0, 0, 355, 0, 355, 0, 0, 0, 0, 265, 0, 0, 0, 0, 0, 0, 0, 45, 46, 211, 0, 235, 237, 246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 57, 355, 355, 355, 0, 0, 0, 165, 0, 0, 0, 362, 355, 355, 0, 0, 211, 0, 0, 218, 0, 211, 0, 0, 0, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 496, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 0, 0, 0, 0, 0, 0, 0, 374, 0, 0, 355, 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, 86, 0, 347, 347, 0, 0, 0, 0, 211, 0, 0, 0, 362, 0, 362, 0, 523, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 165, 0, 211, 924, 0, 925, 0, 235, 237, 0, 0, 0, 928, 929, 0, 246, 362, 934, 0, 0, 0, 0, 0, 0, 362, 362, 362, 0, 355, 939, 0, 0, 0, 0, 943, 362, 362, 0, 596, 0, 0, 0, 0, 620, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 211, 0, 0, 0, 0, 211, 79, 211, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 211, 211, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 165, 165, 0, 0, 0, 0, 211, 368, 0, 0, 0, 0, 0, 211, 79, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 0, 0, 0, 523, 0, 0, 0, 0, 0, 0, 0, 362, 0, 0, 0, 0, 0, 1022, 1023, 1024, 1025, 57, 1027, 0, 0, 0, 0, 0, 0, 0, 0, 714, 0, 0, 0, 0, 0, 1071, 0, 57, 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, 0, 1077, 0, 0, 0, 523, 0, 523, 86, 0, 523, 0, 165, 523, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 0, 0, 0, 0, 0, 0, 0, 0, 347, 347, 0, 0, 0, 0, 0, 1097, 0, 57, 0, 0, 0, 0, 57, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 0, 0, 211, 57, 0, 0, 0, 211, 1128, 0, 0, 368, 0, 0, 1135, 809, 0, 0, 0, 1139, 0, 0, 0, 0, 1143, 0, 1144, 0, 0, 0, 1146, 0, 1147, 1148, 0, 0, 1151, 0, 0, 0, 0, 596, 0, 0, 0, 1163, 596, 0, 0, 0, 0, 0, 0, 0, 0, 368, 368, 368, 0, 0, 0, 0, 0, 1178, 1179, 0, 0, 0, 0, 0, 0, 0, 0, 368, 0, 0, 347, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1209, 0, 211, 1211, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 523, 282, 283, 0, 284, 0, 0, 496, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 0, 0, 0, 0, 0, 0, 57, 368, 0, 933, 0, 285, 1225, 0, 0, 0, 0, 286, 1229, 1230, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 1246, 0, 0, 1250, 714, 0, 0, 1252, 0, 0, 0, 211, 0, 0, 0, 156, 294, 0, 378, 57, 1260, 379, 0, 211, 45, 46, 296, 297, 298, 299, 0, 0, 0, 1267, 0, 1269, 1270, 1271, 1272, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 0, 0, 1279, 0, 1280, 0, 0, 0, 172, 0, 0, 368, 0, 251, 0, 620, 0, 0, 0, 368, 0, 0, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1308, 1309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 2, 206, 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, 156, 0, 0, 0, 0, 0, 31, 0, 1341, 1342, 0, 0, 0, 0, 385, 0, 0, 0, 1352, 0, 0, 0, 0, 0, 0, 0, 0, 211, 0, 0, 0, 0, 0, 0, 34, 714, 35, 417, 36, 0, 0, 207, 39, 0, 0, 0, 0, 0, 0, 0, 523, 432, 0, 0, 0, 0, 0, 211, 0, 0, 437, 0, 282, 283, 0, 284, 0, 0, 0, 0, 445, 0, 0, 0, 165, 0, 0, 0, 208, 1387, 0, 1388, 1389, 1390, 45, 46, 0, 0, 0, 0, 0, 285, 211, 1394, 0, 463, 0, 286, 0, 0, 473, 287, 1405, 211, 288, 289, 290, 291, 41, 42, 0, 292, 293, 481, 0, 0, 0, 0, 0, 491, 0, 495, 0, 0, 0, 0, 0, 1426, 0, 0, 596, 0, 0, 0, 294, 0, 378, 0, 525, 0, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 368, 368, 0, 0, 785, 0, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 1464, 1465, 0, 0, 0, 211, 0, 0, 0, 0, 584, 0, 0, 1470, 0, 589, 0, 0, 0, 211, 1470, 0, 285, 0, 0, 0, 0, 0, 639, 0, 139, 140, 287, 0, 0, 288, 289, 290, 291, 41, 42, 523, 292, 293, 634, 0, 0, 0, 635, 636, 0, 638, 1503, 0, 0, 0, 1509, 0, 649, 650, 0, 651, 652, 0, 653, 294, 654, 640, 0, 641, 379, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 584, 1531, 0, 1532, 0, 0, 0, 0, 669, 0, 0, 0, 0, 0, 0, 0, 0, 340, 363, 0, 0, 0, 0, 0, 714, 211, 0, 0, 0, 0, 0, 1547, 1548, 680, 0, 0, 0, 0, 0, 1551, 1552, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 413, 706, 0, 0, 0, 0, 0, 709, 218, 0, 0, 0, 463, 466, 2, 206, 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, 714, 0, 0, 744, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 762, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 368, 368, 0, 0, 0, 0, 0, 788, 0, 218, 0, 0, 0, 0, 0, 0, 798, 0, 0, 0, 0, 0, 0, 800, 320, 0, 0, 0, 0, 808, -3, 0, 413, 0, 345, 0, 0, 0, 822, 0, 413, 580, 0, 413, 583, 0, 381, 381, 0, 0, 0, 0, 0, 0, 363, 0, 1011, 0, 612, 8, 9, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 630, 862, 0, 340, 0, 0, 0, 0, 0, 282, 283, 31, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 413, 0, 0, 808, 285, 34, 320, 0, 0, 368, 286, 903, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 477, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251, 0, 0, 0, 0, 294, 0, 378, 0, 0, 940, 941, 0, 343, 46, 296, 297, 298, 299, 0, 0, 0, 0, 523, 0, 523, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 363, 0, 0, 0, 0, 978, 0, 0, 0, 0, 982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523, 0, 523, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 340, 363, 0, 0, 0, 0, 0, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 0, 0, 0, 0, 0, 0, 0, 1016, 0, 0, 0, 0, 0, 0, 1017, 0, 0, 0, 0, 0, 0, 413, 413, 0, 0, 0, 0, 1019, 0, 1020, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 802, 363, 0, 1032, 0, 0, 0, 0, 0, 1036, 0, 612, 0, 612, 612, 0, 0, 0, 0, 0, 612, 1074, 0, 0, 1075, 0, 0, 0, 0, 0, 841, 363, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 363, 0, 0, 0, 0, 0, 708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 413, 883, 0, 0, 413, 886, 0, 0, 0, 0, 0, 888, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 740, 0, 0, 0, 0, 0, 413, 0, 0, 589, 0, 0, 0, 757, 0, 0, 0, 0, 740, 0, 0, 740, 0, 0, 0, 0, 0, 0, 0, 363, 612, 0, 0, 766, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 787, 0, 0, 0, 0, 0, 0, 0, 340, 363, 796, 0, 0, 413, 413, 0, 0, 345, 0, 0, 0, 0, 757, 0, 0, 0, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 525, 0, 26, 27, 28, 0, 1210, 0, 0, 0, 413, 31, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 861, 802, 363, 0, 0, 612, 0, 612, 381, 0, 0, 0, 0, 0, 0, 34, 1222, 612, 0, 0, 37, 1224, 38, 39, 40, 0, 0, 0, 0, 1228, 0, 41, 42, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 0, 0, 0, 43, 0, 157, 0, 0, 1254, 31, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 1262, 0, 0, 1263, 0, 1264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 802, 0, 34, 0, 1273, 1274, 0, 340, 363, 413, 0, 413, 0, -291, 0, 413, 0, 757, 0, 962, 0, 0, 0, 0, 0, 0, 1287, 0, 0, 973, 0, 0, 0, 0, 0, 981, 612, 612, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 1161, 0, 0, 8, 9, 10, 11, 12, 0, 0, 0, 31, 0, 0, 413, 0, 1326, 0, 0, 0, 999, 1000, 0, 0, 345, 0, 0, 0, 0, 0, 282, 283, 31, 284, 0, 413, 1142, 0, 345, 34, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 413, 1154, 0, 612, 612, 1159, 0, 285, 34, 0, 0, 0, 0, 286, 0, 363, 363, 287, 0, 0, 288, 289, 290, 291, 41, 42, 1030, 292, 293, 0, 381, 0, 0, 0, 0, 0, 0, 0, 0, 1376, 0, 1377, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 1385, 0, 1386, 0, 0, 1162, 46, 296, 297, 298, 299, 0, 0, 0, 345, 0, 0, 0, 0, 1393, 0, 0, 0, 0, 0, 413, 0, 413, 0, 0, 0, 0, 413, 0, 0, 1411, 1413, 0, 0, 0, 0, 612, 0, 0, 0, 0, 1418, 0, 0, 1228, 0, 0, 0, 320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 802, 413, 1242, 0, 0, 0, 1440, 0, 282, 283, 0, 284, 0, 0, 0, 1447, 0, 381, 1449, 0, 1451, 1453, 1455, 973, 363, 0, 0, 740, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 1149, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 1164, 1485, 0, 1487, 0, 1228, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1498, 294, 381, 378, 1182, 0, 340, 0, 756, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 973, 973, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1214, 0, 0, 0, 0, 0, 0, 0, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 363, 363, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 973, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 861, 35, 0, 36, 0, 0, 38, 39, 0, 0, 0, 0, 0, 0, 0, 1265, 1266, 0, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 44, 0, 26, 27, 28, 29, 45, 46, 30, 282, 283, 31, 1039, 1040, 0, 1041, 0, 0, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 0, 0, 0, 1050, 0, 0, 0, 1051, 1052, 0, 33, 363, 285, 34, 0, 35, 0, 36, 1053, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 1054, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 1055, 0, 0, 0, 0, -126, 0, 0, 0, 0, 0, 0, 0, 0, 1370, 0, 0, 740, 0, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 1, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 38, 39, 40, 0, 294, 0, 1054, 0, 0, 41, 42, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, -126, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 320, 1, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 294, 0, 44, 0, 0, 41, 42, 0, 45, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -292, 0, 0, 0, 285, 34, 0, 35, 0, 36, 286, 31, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 294, 0, 342, -292, 0, 0, 0, 756, 343, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 961, 0, 0, 0, 0, 756, 343, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 31, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 207, 39, 0, 0, 294, 0, 961, 0, 0, 0, 0, 756, 45, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 342, 0, 0, 0, 0, 0, 343, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 207, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 996, 0, 0, 0, 0, 0, 997, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 961, 0, 0, 0, 0, 0, 343, 46, 296, 297, 298, 299, 2, 206, 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, 282, 283, 31, 284, 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, 285, 34, 0, 35, 0, 36, 286, 0, 207, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, -514, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, 0, 35, 0, 36, 37, 0, 38, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 44, 0, 0, 0, 0, 0, 45, 46, 205, 2, 206, 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, 484, 485, 486, 34, 0, 35, 31, 36, 37, 0, 207, 39, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 43, 0, 208, 0, 0, 0, 0, 0, 45, 46, 1, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 29, 0, 0, 30, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 0, -291, 2, 206, 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, 44, 0, 0, 31, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 37, 0, 207, 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, 208, 0, 0, 0, 0, 0, 45, 46, 2, 206, 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, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 38, 39, -398, 676, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 633, 36, 337, 0, 38, 39, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1349, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 676, 0, 0, 0, 0, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 34, 0, 35, 0, 36, 31, 683, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1351, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 676, 0, 0, 0, 0, 0, 45, 46, 2, 206, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 684, 26, 27, 28, 685, 0, 45, 46, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 207, 39, 0, 2, 206, 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, 270, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 206, 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, 676, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 38, 39, 0, 2, 206, 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, 591, 31, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 35, 0, 36, 0, 0, 207, 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, 282, 283, 31, 284, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 34, 0, 0, 0, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 516, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 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, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 335, 336, 40, 0, 294, -35, 295, 0, 0, 41, 42, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 337, 26, 27, 28, 0, 0, 45, 46, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 0, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 110, 0, 38, 39, 0, 0, 294, 0, 295, 0, 0, 41, 42, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 44, 26, 27, 28, 0, 0, 45, 46, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 683, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 157, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 684, 26, 27, 28, 1090, 0, 45, 46, 282, 283, 31, 284, 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, 285, 34, 0, 0, 31, 683, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 294, 0, 591, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 684, 26, 27, 28, 1219, 0, 45, 46, 282, 283, 31, 284, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 0, 285, 34, 0, 0, 0, 31, 286, 0, 38, 39, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 335, 336, 40, 294, -291, 378, 0, 0, 0, 41, 42, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 633, 0, 337, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 37, 0, 335, 336, 40, 0, -291, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 37, 0, 207, 39, 40, 0, 0, 0, 0, 337, 0, 41, 42, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 270, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 37, 0, 335, 336, 40, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, -291, 633, 0, 337, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 633, 0, 337, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -291, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, -291, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 38, 39, 0, 0, 31, 0, 0, 337, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 257, 0, 38, 39, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 0, 0, 31, 0, 157, 0, 0, 0, 0, 0, 45, 46, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 34, 0, 26, 27, 28, 0, 0, 207, 39, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 270, 0, 38, 39, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 38, 39, 0, 0, 0, 0, 0, 337, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 684, 26, 27, 28, 0, 0, 45, 46, 0, 0, 31, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 0, 0, 26, 27, 28, 0, 0, 0, 0, 34, 0, 31, 0, 0, 0, 0, 38, 39, 0, 0, 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, 591, 0, 0, 0, 0, 0, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 44, 207, 39, 0, 0, 0, 45, 46, 2, 206, 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, 45, 46, 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, 282, 283, 0, 284, 1040, 0, 1041, 0, 0, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 0, 0, 1523, 1050, 0, 0, 0, 1051, 1052, 0, 33, 0, 285, 0, 0, 0, 0, -411, 1053, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1055, 284, 1040, 0, 1041, -126, 0, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 0, 0, 0, 1050, 0, 0, 0, 1051, 1052, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1053, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 1055, 0, 0, 0, 0, -126, 2, 206, 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, 282, 283, 0, 284, 1040, 0, 1041, 1397, 1398, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 0, 0, 1523, 1050, 0, 0, 0, 1051, 1052, 34, 33, 35, 285, 36, 0, 0, 38, 39, 1053, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 1310, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1055, 284, 1040, 0, 1041, 1397, 1398, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 0, 0, 0, 1050, 0, 0, 0, 1051, 1052, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1053, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 0, 0, 282, 283, 1055, 284, 1040, 0, 1041, 0, 0, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 0, 0, 0, 1050, 0, 0, 0, 1051, 1052, 0, 33, 0, 285, 0, 0, 0, 0, 0, 1053, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 171, 0, 0, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 1055, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 0, 970, 0, 0, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 282, 283, 0, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294, 0, 378, 0, 282, 283, 0, 284, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 285, 292, 293, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 294, 0, 378, 0, 282, 283, 0, 284, 707, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 294, 0, 378, 0, 282, 283, 0, 284, 343, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 285, 292, 293, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 294, 0, 0, 0, 282, 283, 0, 284, 45, 46, 296, 297, 298, 299, 0, 0, 0, 0, 0, 510, 0, 0, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 285, 0, 0, 0, 0, 0, 286, 0, 0, 0, 287, 0, 0, 288, 289, 290, 291, 41, 42, 0, 292, 293, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513, 0, 0, 0, 0, 0, 0, 0, 45, 46, 296, 297, 298, 299, 2, 206, 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, 174, 175, 40, 0, 0, 0, 0, 0, 0, 41, 42, 205, 2, 206, 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, 207, 39, 466, 2, 206, 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, 206, 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, 207, 39 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1317)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 43, 43, 185, 185, 204, 0, 43, 1, 185, 239, 105, 185, 520, 533, 116, 187, 748, 0, 1, 748, 185, 168, 169, 748, 732, 185, 0, 1, 512, 186, 32, 344, 645, 185, 219, 1020, 601, 32, 156, 602, 256, 43, 873, 873, 57, 608, 491, 49, 0, 32, 495, 755, 691, 348, 49, 619, 72, 601, 32, 489, 155, 63, 348, 32, 66, 1320, 599, 69, 63, 570, 982, 66, 599, 72, 69, 69, 281, 82, 43, 1397, 32, 72, 265, 265, 599, 1039, 69, 63, 265, 261, 262, 265, 66, 106, 43, 69, 109, 599, 43, 201, 265, 425, 426, 105, 82, 265, 599, 599, 51, 266, 39, 113, 599, 265, 116, 117, 132, 39, 39, 0, 1032, 417, 634, 635, 28, 0, 117, 0, 1019, 1020, 109, 39, 110, 132, 363, 0, 1051, 1052, 367, 651, 107, 437, 185, 185, 146, 147, 39, 82, 185, 445, 1468, 32, 147, 155, 156, 186, 132, 32, 160, 32, 114, 39, 39, 1418, 131, 160, 109, 32, 481, 493, 43, 1, 904, 603, 78, 904, 49, 607, 686, 904, 109, 228, 111, 185, 186, 44, 45, 109, 512, 111, 63, 186, 487, 66, 156, 130, 69, 709, 628, 201, 247, 417, 632, 111, 95, 218, 49, 209, 1039, 44, 45, 109, 1127, 82, 209, 717, 109, 1500, 111, 221, 185, 437, 265, 265, 409, 717, 221, 64, 265, 445, 717, 109, 109, 111, 111, 266, 185, 239, 129, 1224, 185, 694, 111, 55, 1527, 340, 82, 221, 405, 251, 813, 109, 110, 577, 109, 114, 251, 259, 823, 272, 899, 112, 264, 265, 266, 116, 279, 116, 251, 271, 113, 266, 109, 109, 147, 370, 131, 251, 811, 823, 115, 985, 251, 132, 811, 97, 11, 160, 800, 1274, 96, 792, 294, 395, 0, 82, 811, 112, 503, 251, 1401, 44, 45, 146, 306, 294, 619, 85, 109, 811, 923, 624, 185, 186, 432, 601, 122, 72, 811, 811, 322, 423, 479, 110, 811, 327, 32, 429, 83, 84, 110, 1471, 327, 1287, 347, 113, 209, 1477, 340, 111, 1048, 113, 344, 130, 3, 82, 348, 349, 221, 116, 130, 364, 72, 110, 1451, 368, 111, 1497, 130, 588, 66, 363, 1502, 83, 84, 367, 209, 932, 370, 96, 251, 114, 109, 130, 405, 256, 251, 3, 251, 1210, 1210, 193, 1273, 1274, 680, 109, 251, 111, 1485, 109, 1487, 256, 265, 395, 1495, 122, 239, 116, 931, 1500, 72, 630, 116, 405, 216, 90, 91, 525, 1393, 116, 405, 83, 84, 132, 226, 845, 931, 116, 132, 1520, 0, 423, 252, 425, 426, 49, 1527, 429, 271, 524, 432, 744, 128, 132, 998, 131, 425, 426, 931, 111, 125, 126, 119, 120, 1007, 1008, 116, 116, 479, 116, 131, 453, 905, 109, 327, 72, 1287, 111, 966, 113, 665, 130, 132, 306, 680, 132, 83, 84, 112, 471, 432, 589, 116, 1385, 1386, 348, 130, 479, 116, 481, 109, 483, 294, 655, 479, 487, 1440, 0, 483, 113, 706, 493, 130, 1447, 111, 940, 980, 950, 116, 646, 483, 344, 1393, 505, 116, 507, 109, 937, 510, 483, 512, 513, 130, 1126, 72, 221, 505, 109, 520, 481, 132, 510, 524, 525, 513, 83, 84, 109, 823, 686, 735, 483, 405, 1098, 1500, 109, 417, 823, 4, 5, 6, 7, 8, 9, 1498, 251, 116, 72, 110, 74, 75, 653, 417, 111, 1520, 116, 437, 109, 83, 84, 110, 1527, 132, 525, 445, 112, 116, 569, 570, 116, 112, 132, 437, 802, 116, 577, 1084, 566, 807, 1287, 445, 1089, 425, 426, 109, 209, 588, 589, 116, 114, 903, 593, 110, 88, 89, 116, 116, 599, 116, 601, 481, 110, 483, 69, 132, 71, 110, 620, 483, 1440, 483, 132, 132, 110, 487, 112, 1447, 619, 483, 116, 112, 112, 624, 636, 626, 116, 116, 589, 630, 116, 442, 633, 634, 635, 131, 132, 466, 650, 66, 110, 1114, 936, 132, 349, 1118, 132, 72, 271, 743, 651, 493, 653, 110, 1361, 82, 686, 468, 83, 84, 109, 110, 111, 72, 1116, 74, 75, 895, 1498, 110, 512, 294, 92, 93, 83, 84, 860, 10, 11, 12, 13, 14, 683, 306, 115, 686, 998, 110, 109, 57, 117, 808, 109, 116, 505, 110, 880, 694, 527, 510, 109, 116, 513, 532, 109, 114, 39, 109, 709, 710, 711, 64, 110, 942, 132, 589, 717, 718, 116, 731, 866, 109, 904, 904, 1176, 1177, 110, 599, 904, 601, 110, 904, 116, 160, 67, 577, 116, 1444, 106, 1446, 904, 109, 743, 744, 109, 904, 111, 748, 749, 110, 906, 132, 581, 904, 72, 116, 74, 75, 115, 116, 10, 11, 12, 13, 14, 83, 84, 472, 117, 85, 86, 87, 112, 1504, 123, 124, 1504, 619, 483, 109, 1504, 111, 624, 744, 110, 1304, 114, 155, 785, 39, 116, 792, 1499, 109, 221, 111, 114, 113, 114, 800, 680, 802, 109, 804, 111, 114, 807, 808, 902, 110, 811, 109, 1011, 111, 686, 116, 680, 67, 110, 117, 118, 110, 823, 652, 116, 654, 706, 116, 132, 109, 453, 111, 259, 1145, 85, 86, 87, 264, 132, 109, 72, 111, 706, 110, 76, 717, 718, 808, 110, 116, 218, 83, 84, 109, 116, 111, 114, 668, 109, 109, 111, 111, 113, 114, 744, 862, 677, 117, 118, 66, 681, 109, 873, 111, 110, 704, 906, 109, 109, 111, 116, 82, 505, 110, 507, 117, 118, 510, 1034, 116, 513, 873, 110, 1121, 895, 0, 1, 109, 116, 111, 873, 902, 903, 904, 272, 906, 112, 110, 905, 109, 1114, 279, 1224, 116, 1118, 1119, 621, 918, 110, 111, 117, 109, 349, 82, 29, 30, 110, 32, 1084, 1381, 931, 932, 116, 1089, 808, 936, 58, 59, 43, 811, 941, 942, 903, 118, 49, 1397, 127, 109, 941, 111, 128, 823, 57, 950, 94, 117, 118, 131, 63, 941, 909, 66, 911, 160, 69, 966, 111, 109, 941, 111, 109, 110, 111, 1480, 109, 117, 118, 82, 83, 347, 109, 4, 5, 6, 7, 8, 9, 112, 985, 109, 110, 111, 697, 873, 115, 116, 364, 998, 112, 873, 368, 106, 112, 430, 109, 1106, 711, 44, 45, 873, 110, 116, 505, 110, 507, 1467, 1468, 510, 1019, 1020, 513, 110, 1529, 903, 221, 109, 110, 111, 1, 110, 1234, 110, 904, 110, 906, 1247, 1248, 1249, 1039, 1036, 109, 72, 147, 74, 75, 472, 69, 112, 71, 111, 155, 114, 83, 84, 1084, 160, 116, 1039, 1019, 1089, 683, 131, 259, 431, 936, 114, 1039, 264, 114, 4, 5, 6, 7, 8, 9, 109, 49, 112, 1079, 112, 185, 186, 110, 1084, 551, 552, 897, 112, 1089, 553, 554, 72, 110, 74, 75, 76, 201, 1098, 33, 804, 942, 112, 83, 84, 209, 1106, 58, 59, 60, 132, 112, 130, 1206, 218, 559, 560, 221, 1321, 72, 1116, 1121, 1325, 76, 228, 130, 130, 116, 956, 109, 83, 84, 29, 105, 110, 69, 110, 71, 115, 243, 115, 113, 112, 247, 110, 1145, 114, 251, 252, 112, 978, 115, 109, 349, 982, 116, 109, 998, 110, 132, 1039, 265, 266, 110, 117, 118, 1039, 593, 272, 873, 555, 556, 557, 558, 146, 279, 1039, 116, 110, 110, 1176, 1177, 110, 155, 110, 1145, 116, 1187, 1188, 110, 110, 110, 110, 110, 110, 621, 1188, 110, 110, 110, 626, 110, 1189, 1190, 1032, 1192, 1206, 1188, 110, 110, 1210, 110, 1199, 1084, 1201, 1187, 1188, 115, 1089, 1422, 29, 588, 130, 327, 1224, 131, 110, 116, 1228, 1210, 112, 112, 110, 205, 430, 110, 1228, 209, 1210, 72, 1050, 74, 75, 347, 348, 110, 116, 1228, 116, 112, 83, 84, 114, 620, 130, 110, 1228, 110, 110, 116, 364, 112, 110, 110, 368, 110, 1145, 239, 109, 636, 116, 697, 116, 1273, 1274, 379, 472, 1377, 111, 109, 112, 109, 1282, 650, 109, 711, 1514, 1287, 109, 112, 130, 395, 873, 132, 110, 115, 918, 1001, 110, 271, 115, 405, 274, 110, 128, 72, 1287, 74, 75, 76, 1282, 115, 114, 1273, 112, 1287, 83, 84, 132, 423, 1320, 110, 294, 1504, 1504, 429, 112, 431, 1320, 1504, 112, 1210, 1504, 116, 306, 1039, 110, 1210, 110, 1320, 110, 1504, 109, 112, 112, 1224, 1504, 1210, 1320, 72, 1505, 74, 75, 76, 1504, 112, 110, 112, 47, 112, 83, 84, 466, 112, 731, 1376, 132, 471, 340, 132, 1357, 132, 344, 132, 1529, 479, 132, 1377, 804, 483, 1480, 30, 115, 487, 110, 1381, 490, 115, 492, 130, 110, 363, 110, 1393, 115, 367, 463, 593, 370, 112, 72, 1397, 74, 75, 76, 112, 112, 112, 1287, 112, 112, 83, 84, 284, 1287, 110, 112, 109, 1418, 1247, 1248, 1249, 112, 527, 1287, 621, 1418, 109, 532, 109, 626, 60, 110, 82, 83, 306, 307, 1418, 114, 110, 1440, 132, 112, 112, 110, 112, 1418, 1447, 110, 1449, 96, 1451, 96, 425, 426, 109, 109, 1079, 132, 1440, 115, 1042, 110, 1504, 1504, 110, 1447, 110, 1440, 1504, 110, 1467, 1468, 344, 116, 1447, 1505, 581, 42, 130, 1480, 453, 132, 1187, 588, 1485, 1296, 1487, 110, 110, 96, 132, 96, 132, 466, 599, 110, 601, 1498, 132, 1529, 697, 110, 110, 1504, 1505, 1210, 132, 110, 380, 115, 112, 1505, 112, 1514, 711, 620, 1498, 109, 491, 132, 493, 132, 495, 110, 115, 1498, 115, 895, 1529, 110, 110, 636, 505, 132, 507, 1529, 641, 510, 110, 512, 513, 1055, 562, 564, 561, 650, 976, 652, 653, 654, 563, 524, 1468, 565, 1210, 49, 1385, 1386, 1539, 1363, 1440, 1119, 1297, 1325, 1447, 1070, 1440, 1447, 683, 63, 66, 683, 66, 1447, 1001, 69, 1440, 1282, 1089, 75, 911, 686, 1287, 1447, 919, 690, 581, 692, 696, 866, 647, 696, 970, 243, 1423, 721, 938, 1228, 731, 704, -1, 669, 483, 569, 577, -1, 569, 804, 569, -1, -1, -1, 717, 718, 70, 588, -1, 73, 1498, -1, 76, 117, 78, -1, 1498, -1, 731, -1, 1210, 85, -1, -1, 1504, 3, 1498, -1, -1, 1448, -1, 1450, 10, 11, 12, 13, 14, -1, 619, -1, -1, -1, -1, 624, 1481, 147, -1, -1, 72, 630, 74, 75, 76, 1490, -1, -1, 160, -1, 160, 83, 84, 39, -1, -1, 1514, 1484, 189, 1486, 548, 549, 550, -1, -1, 196, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 186, 109, -1, 111, -1, 67, -1, -1, -1, 117, 118, -1, -1, -1, 811, -1, -1, -1, 683, -1, 72, -1, 130, 209, 76, 1528, 823, 1530, 788, 1303, -1, 83, 84, 221, -1, 221, -1, 379, 798, -1, 1543, 1544, 72, 1440, 74, 75, 76, -1, -1, 669, 1447, -1, 812, 83, 84, -1, 721, 109, -1, -1, -1, 268, -1, -1, 212, 117, 118, -1, 1187, 866, -1, 259, -1, -1, -1, 872, 264, -1, 743, 109, -1, 1355, -1, -1, 1358, 3, -1, 117, 118, -1, -1, 279, 10, 11, 12, 13, 14, -1, 895, -1, 282, 1498, 284, 285, -1, -1, -1, 904, -1, 906, 292, 293, 1001, -1, -1, 322, 913, -1, -1, -1, -1, 39, -1, 330, 306, 307, 333, 1401, -1, -1, -1, 279, 1406, -1, 1449, -1, 1451, 802, -1, 936, -1, 327, 807, -1, -1, -1, 1206, 463, 490, 67, 492, -1, -1, -1, -1, 0, 1, -1, -1, 956, 1434, 349, 344, 1282, -1, -1, -1, -1, 788, -1, 1485, -1, 1487, 970, -1, -1, -1, -1, 798, -1, -1, 978, -1, -1, -1, 982, -1, 32, -1, -1, 397, 755, 812, -1, 401, -1, -1, -1, 380, -1, -1, -1, 3, 351, 49, 353, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, 405, -1, -1, -1, -1, 69, -1, -1, -1, -1, -1, 895, -1, -1, -1, -1, 1032, 0, 902, 39, -1, -1, -1, 430, -1, 1518, -1, -1, 26, 27, 28, 1524, -1, -1, 918, -1, -1, 1016, 1017, -1, 447, 105, 1535, -1, -1, -1, 1539, 67, -1, 32, -1, -1, 478, -1, 1070, -1, 940, 941, 942, -1, -1, -1, -1, -1, -1, 472, -1, -1, 1084, -1, -1, -1, -1, 1089, 441, -1, -1, -1, -1, 1187, 641, -1, -1, 147, -1, -1, 69, -1, -1, -1, 1106, 155, 156, -1, -1, 1074, 1075, 1376, -1, -1, 98, -1, 100, -1, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 998, -1, -1, -1, -1, -1, -1, -1, 186, -1, -1, -1, -1, 125, -1, 690, -1, 692, -1, -1, 669, 696, -1, 201, 131, -1, 204, 205, -1, 569, 570, 209, -1, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, -1, 230, 1183, -1, -1, 234, -1, 236, 156, 1282, -1, -1, 1016, 1017, -1, -1, 245, -1, 181, -1, -1, 593, 251, -1, -1, 1206, 189, 256, 191, 192, 1079, -1, -1, 196, -1, 198, 199, 266, -1, -1, -1, -1, -1, -1, 72, 274, 74, 75, 76, 621, 998, -1, -1, -1, 626, 83, 84, -1, -1, -1, -1, -1, 0, -1, -1, 656, 1247, 1248, 1249, 660, 1074, 1075, 1121, 10, 11, 12, 13, 14, 1222, -1, -1, 109, 230, 111, -1, -1, -1, -1, 788, 117, 118, 1039, -1, -1, 32, -1, -1, -1, 798, -1, -1, -1, 39, 251, -1, 268, -1, -1, 256, -1, 1254, 340, 812, -1, -1, 344, -1, -1, 1262, 1263, 1264, 350, -1, -1, -1, 697, -1, -1, 694, -1, 67, 69, -1, -1, 363, -1, -1, -1, 367, 711, 866, 370, -1, -1, -1, -1, 872, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1206, -1, 731, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, 109, -1, 111, -1, -1, -1, -1, 1228, 117, 118, 1326, -1, -1, -1, -1, 913, 417, 755, -1, -1, -1, -1, 39, 1376, 1377, -1, -1, 731, -1, 792, 350, 432, 1385, 1386, -1, -1, 437, -1, -1, -1, -1, 26, 27, 28, 445, -1, 156, 785, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, 804, -1, 463, -1, -1, 466, 83, 84, -1, -1, 1423, -1, 970, 72, -1, 74, 75, 76, 1254, -1, 481, -1, 483, -1, 83, 84, 1262, 1263, 1264, -1, 491, -1, 109, -1, 495, -1, -1, 417, -1, 1320, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 432, 98, -1, 100, -1, 437, 117, 118, -1, -1, -1, 524, 525, 445, -1, 1480, 1481, -1, -1, -1, -1, -1, -1, -1, -1, 1490, -1, -1, -1, 251, -1, 463, 1016, 1017, 256, 910, -1, -1, 1326, 1504, 1505, -1, -1, -1, -1, -1, -1, -1, -1, 481, -1, 483, -1, -1, -1, 905, -1, 570, -1, 72, 1070, 74, 75, 76, 1529, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, 588, 589, -1, -1, 10, 11, 12, 13, 14, 181, 1418, -1, -1, 601, -1, 1074, 1075, -1, 525, 191, 192, 109, -1, 111, 196, 950, 198, 199, -1, 117, 118, 619, -1, 39, -1, -1, 624, 987, -1, -1, -1, 1449, 630, 1451, -1, 633, 634, 635, -1, -1, -1, 573, 574, 350, 1004, -1, -1, -1, -1, -1, 985, 67, -1, 651, -1, -1, -1, -1, -1, -1, 1001, -1, -1, 998, -1, -1, -1, 1485, -1, 1487, 602, 669, 589, 605, 606, -1, 608, -1, 610, 611, -1, -1, 680, 615, 616, -1, -1, 72, 1183, 74, 75, 76, -1, 109, -1, 111, 1514, -1, 83, 84, -1, 117, 118, -1, 1039, -1, -1, -1, 706, -1, 417, 709, -1, -1, -1, -1, 633, 634, 635, -1, 718, -1, 1082, 721, 109, 432, 111, -1, 0, -1, 437, -1, 117, 118, 651, -1, -1, -1, 445, -1, -1, -1, -1, -1, -1, 743, 744, -1, -1, -1, -1, 749, 669, 1222, -1, -1, 463, -1, -1, -1, 32, -1, 1122, 680, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 481, -1, 483, -1, -1, -1, -1, 1116, -1, -1, -1, 1254, -1, -1, -1, 706, 788, -1, 709, 1262, 1263, 1264, -1, 69, -1, -1, 798, -1, 800, -1, 802, -1, -1, 805, -1, 807, 808, -1, -1, -1, 812, -1, -1, -1, 525, -1, -1, 753, 754, -1, 822, -1, -1, 744, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1176, 1177, -1, -1, -1, 1187, -1, -1, -1, -1, -1, -1, -1, -1, 0, -1, 1326, -1, -1, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, 788, -1, -1, -1, 873, -1, -1, -1, -1, -1, 798, 589, 800, 156, -1, -1, 32, 805, -1, -1, 808, -1, -1, -1, 812, 66, 895, -1, -1, -1, -1, 72, -1, 902, 903, 76, -1, 906, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 69, -1, 633, 634, 635, -1, -1, -1, -1, -1, 932, -1, -1, -1, -1, 109, -1, 1282, 940, 941, 651, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, 873, -1, -1, -1, -1, -1, 669, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 680, -1, -1, -1, -1, 910, 251, -1, -1, -1, 915, 256, -1, 903, -1, -1, -1, -1, 573, 574, -1, -1, -1, -1, -1, -1, 706, 998, -1, 709, -1, -1, -1, -1, -1, -1, -1, -1, 156, -1, 1011, -1, -1, -1, -1, 1016, 1017, 602, 1019, 1020, 605, 606, -1, 608, -1, 610, 611, -1, -1, -1, 615, 616, -1, -1, 744, -1, -1, -1, 1039, -1, -1, -1, -1, 1381, -1, 0, 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1397, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 1074, 1075, 350, -1, 32, 788, -1, -1, -1, -1, -1, -1, -1, -1, -1, 798, -1, 800, -1, -1, -1, 39, 805, 1016, 1017, 808, 1019, 1020, -1, 812, 251, -1, -1, -1, -1, 256, -1, -1, 66, -1, -1, 69, -1, -1, -1, -1, 1039, 1121, -1, 67, -1, -1, -1, -1, 72, -1, 1467, 1468, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, 1076, 417, -1, 1145, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1074, 1075, -1, 432, -1, -1, -1, -1, 437, 873, 109, -1, -1, -1, 753, 754, 445, -1, 117, 118, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, 1188, 463, -1, -1, -1, -1, 903, -1, -1, -1, -1, -1, -1, -1, 156, 350, -1, 39, 1206, 481, -1, 483, 1210, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1222, -1, 1224, -1, 1145, -1, 1228, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, 525, -1, -1, 1254, -1, -1, -1, -1, -1, -1, -1, 1262, 1263, 1264, -1, -1, 221, -1, 1188, 417, 1205, -1, 1273, 1274, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 432, -1, 1287, -1, -1, 437, 1210, -1, -1, -1, -1, -1, 251, 445, -1, -1, -1, -1, 1222, -1, 1224, -1, 1016, 1017, -1, 1019, 1020, -1, -1, -1, 589, 463, -1, -1, -1, 1320, -1, -1, -1, -1, -1, 1326, -1, -1, -1, 1039, 915, -1, -1, 481, 1254, 483, -1, -1, -1, -1, -1, -1, 1262, 1263, 1264, -1, -1, -1, -1, -1, -1, -1, -1, 1273, 1274, -1, -1, -1, 633, 634, 635, -1, -1, -1, 1074, 1075, -1, 1287, -1, -1, -1, -1, -1, -1, -1, -1, 651, 525, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1393, -1, 669, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 680, 1326, -1, 10, 11, 12, 13, 14, -1, -1, -1, -1, 1418, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 706, -1, -1, 709, 1145, -1, 39, -1, 1440, -1, 589, -1, -1, -1, -1, 1447, -1, 53, -1, 55, -1, -1, 58, 59, 60, -1, 62, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, 744, 72, 76, -1, 1393, 76, -1, -1, 432, 1188, -1, -1, 83, 84, 88, 89, 633, 634, 635, -1, -1, -1, 1076, -1, -1, -1, -1, -1, 1498, -1, -1, 1210, -1, -1, 651, 1505, -1, -1, 109, -1, -1, -1, -1, 1222, 788, 1224, 117, 118, -1, -1, -1, 1440, 669, -1, 798, -1, 800, -1, 1447, 483, -1, 805, -1, 680, 808, -1, -1, -1, 812, 10, 11, 12, 13, 14, -1, 1254, -1, -1, -1, -1, -1, -1, -1, 1262, 1263, 1264, -1, -1, -1, 706, -1, -1, 709, -1, 1273, 1274, -1, -1, 39, -1, -1, 525, -1, -1, -1, -1, -1, -1, 1287, 1498, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, 744, -1, 873, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, 1326, -1, -1, -1, 1205, -1, -1, -1, -1, -1, -1, -1, 903, -1, -1, -1, -1, -1, 589, -1, -1, 109, -1, 111, 788, -1, -1, -1, -1, 117, 118, -1, -1, -1, 798, -1, 800, -1, -1, -1, -1, 805, -1, -1, 808, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 633, 634, 635, -1, -1, 1393, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 651, -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, 873, 30, 31, 32, 33, 1440, -1, 36, -1, -1, 39, 40, 1447, 343, -1, 345, 1016, 1017, -1, 1019, 1020, -1, -1, -1, -1, -1, 356, 357, -1, 709, 903, -1, -1, -1, -1, 64, -1, -1, 67, 1039, 69, -1, 71, 72, -1, 74, 75, 76, -1, 10, 11, 12, 13, 14, 83, 84, -1, -1, -1, -1, -1, -1, -1, 1498, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1074, 1075, -1, -1, 39, -1, 109, -1, 111, -1, 66, -1, 115, -1, 117, 118, -1, -1, -1, 75, -1, 77, -1, 79, -1, -1, -1, -1, -1, -1, 86, -1, 67, -1, 49, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, 800, -1, 83, 84, -1, 66, -1, -1, 808, -1, 10, 11, 12, 13, 14, 117, -1, 119, 120, 121, -1, -1, -1, 1016, 1017, 1145, 1019, 1020, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, 39, -1, -1, -1, -1, -1, -1, 1039, -1, -1, -1, -1, -1, 113, -1, -1, -1, 117, -1, 160, -1, -1, -1, -1, -1, -1, -1, -1, 67, 1188, -1, -1, -1, 72, 873, 74, 75, 76, -1, -1, -1, -1, 1074, 1075, 83, 84, 146, -1, -1, -1, -1, 1210, -1, -1, -1, -1, 156, -1, -1, -1, 160, -1, -1, 1222, -1, 1224, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 221, -1, 223, 224, 225, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1254, -1, -1, -1, -1, -1, -1, 941, 1262, 1263, 1264, -1, -1, -1, 209, -1, -1, -1, 1145, 1273, 1274, -1, -1, 259, -1, -1, 221, -1, 264, -1, -1, -1, -1, 1287, -1, -1, -1, -1, -1, -1, -1, -1, -1, 279, 239, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1188, -1, -1, -1, -1, -1, -1, -1, 264, -1, -1, 1326, -1, -1, -1, 271, -1, -1, -1, -1, -1, -1, 1210, -1, 1019, 1020, -1, -1, -1, -1, 327, -1, -1, -1, 1222, -1, 1224, -1, 294, -1, -1, -1, -1, -1, 1039, -1, -1, -1, -1, -1, 306, -1, 349, 698, -1, 700, -1, 354, 355, -1, -1, -1, 707, 708, -1, 362, 1254, 712, -1, -1, -1, -1, -1, -1, 1262, 1263, 1264, -1, 1393, 724, -1, -1, -1, -1, 729, 1273, 1274, -1, 344, -1, -1, -1, -1, 349, -1, -1, -1, -1, -1, 1287, -1, -1, -1, -1, -1, -1, -1, -1, 405, -1, -1, -1, 757, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1440, 423, -1, -1, -1, -1, 428, 1447, 430, -1, -1, -1, -1, 1326, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 447, -1, -1, 450, 451, -1, -1, -1, -1, -1, -1, 458, -1, -1, -1, -1, -1, -1, -1, 425, 426, -1, -1, -1, -1, 472, 432, -1, -1, -1, -1, -1, 479, 1498, -1, -1, -1, -1, -1, -1, -1, -1, 1187, 1188, -1, -1, -1, 453, -1, -1, -1, -1, -1, -1, -1, 1393, -1, -1, -1, -1, -1, 856, 857, 858, 859, 1210, 861, -1, -1, -1, -1, -1, -1, -1, -1, 481, -1, -1, -1, -1, -1, 876, -1, 1228, -1, -1, -1, 493, -1, -1, -1, -1, -1, -1, -1, 890, -1, -1, -1, 505, -1, 507, 1440, -1, 510, -1, 512, 513, -1, 1447, -1, -1, -1, -1, -1, -1, -1, -1, -1, 525, -1, -1, -1, -1, -1, -1, -1, -1, 1273, 1274, -1, -1, -1, -1, -1, 930, -1, 1282, -1, -1, -1, -1, 1287, -1, -1, -1, 593, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1498, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 577, -1, -1, 621, 1320, -1, -1, -1, 626, 975, -1, -1, 589, -1, -1, 981, 593, -1, -1, -1, 986, -1, -1, -1, -1, 991, -1, 993, -1, -1, -1, 997, -1, 999, 1000, -1, -1, 1003, -1, -1, -1, -1, 619, -1, -1, -1, 1012, 624, -1, -1, -1, -1, -1, -1, -1, -1, 633, 634, 635, -1, -1, -1, -1, -1, 1030, 1031, -1, -1, -1, -1, -1, -1, -1, -1, 651, -1, -1, 1393, -1, 697, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1057, -1, 711, 1060, -1, -1, -1, -1, -1, -1, -1, 1418, -1, -1, -1, 683, 37, 38, -1, 40, -1, -1, 731, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1440, -1, -1, -1, -1, -1, -1, 1447, 709, -1, 711, -1, 66, 1103, -1, -1, -1, -1, 72, 1109, 1110, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, 1129, -1, -1, 1132, 744, -1, -1, 1136, -1, -1, -1, 792, -1, -1, -1, 44, 109, -1, 111, 1498, 1149, 114, -1, 804, 117, 118, 119, 120, 121, 122, -1, -1, -1, 1162, -1, 1164, 1165, 1166, 1167, -1, -1, -1, 823, -1, -1, -1, -1, -1, -1, -1, -1, 1180, -1, 1182, -1, -1, -1, 1186, -1, -1, 800, -1, 91, -1, 804, -1, -1, -1, 808, -1, -1, -1, 101, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1215, 1216, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 157, -1, -1, -1, -1, -1, 39, -1, 1265, 1266, -1, -1, -1, -1, 171, -1, -1, -1, 1275, -1, -1, -1, -1, -1, -1, -1, -1, 936, -1, -1, -1, -1, -1, -1, 67, 903, 69, 194, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, 918, 208, -1, -1, -1, -1, -1, 966, -1, -1, 217, -1, 37, 38, -1, 40, -1, -1, -1, -1, 227, -1, -1, -1, 942, -1, -1, -1, 111, 1336, -1, 1338, 1339, 1340, 117, 118, -1, -1, -1, -1, -1, 66, 1001, 1350, -1, 252, -1, 72, -1, -1, 257, 76, 1359, 1012, 79, 80, 81, 82, 83, 84, -1, 86, 87, 270, -1, -1, -1, -1, -1, 276, -1, 278, -1, -1, -1, -1, -1, 1384, -1, -1, 998, -1, -1, -1, 109, -1, 111, -1, 295, -1, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, 1019, 1020, -1, -1, 130, -1, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, 1427, 1428, -1, -1, -1, 1084, -1, -1, -1, -1, 337, -1, -1, 1440, -1, 342, -1, -1, -1, 1098, 1447, -1, 66, -1, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, 1079, 86, 87, 371, -1, -1, -1, 375, 376, -1, 378, 1479, -1, -1, -1, 1483, -1, 385, 386, -1, 388, 389, -1, 391, 109, 393, 111, -1, 113, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 410, 1511, -1, 1513, -1, -1, -1, -1, 418, -1, -1, -1, -1, -1, -1, -1, -1, 155, 156, -1, -1, -1, -1, -1, 1145, 1187, -1, -1, -1, -1, -1, 1541, 1542, 443, -1, -1, -1, -1, -1, 1549, 1550, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 189, -1, -1, -1, -1, -1, -1, 196, 469, -1, -1, -1, -1, -1, 475, 1187, -1, -1, -1, 480, 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, 1224, -1, -1, 516, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1282, 531, -1, -1, -1, -1, -1, -1, -1, -1, 268, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, 1273, 1274, -1, -1, -1, -1, -1, 569, -1, 1282, -1, -1, -1, -1, -1, -1, 578, -1, -1, -1, -1, -1, -1, 585, 146, -1, -1, -1, -1, 591, 114, -1, 322, -1, 156, -1, -1, -1, 600, -1, 330, 331, -1, 333, 334, -1, 168, 169, -1, -1, -1, -1, -1, -1, 344, -1, 7, -1, 348, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 367, 640, -1, 370, -1, -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, 397, -1, -1, -1, 401, -1, -1, 676, 66, 67, 239, -1, -1, 1393, 72, 684, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, 263, 432, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 715, -1, -1, -1, -1, 109, -1, 111, -1, -1, 725, 726, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 1449, -1, 1451, -1, -1, -1, -1, -1, -1, -1, -1, -1, 478, -1, -1, 481, -1, -1, -1, -1, 758, -1, -1, -1, -1, 763, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1485, -1, 1487, 1529, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 520, -1, -1, -1, 524, 525, -1, -1, -1, -1, -1, 1514, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 379, -1, -1, -1, -1, -1, -1, -1, 827, -1, -1, -1, -1, -1, -1, 834, -1, -1, -1, -1, -1, -1, 569, 570, -1, -1, -1, -1, 847, -1, 849, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 588, 589, -1, 863, -1, -1, -1, -1, -1, 869, -1, 599, -1, 601, 602, -1, -1, -1, -1, -1, 608, 881, -1, -1, 884, -1, -1, -1, -1, -1, 618, 619, -1, -1, -1, -1, 624, -1, -1, -1, -1, -1, -1, -1, -1, 633, 634, 635, -1, -1, -1, -1, -1, 473, -1, -1, -1, -1, -1, -1, -1, -1, -1, 651, -1, -1, -1, -1, 656, 657, -1, -1, 660, 661, -1, -1, -1, -1, -1, 667, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 512, -1, -1, -1, -1, -1, 686, -1, -1, 961, -1, -1, -1, 525, -1, -1, -1, -1, 530, -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, 709, 710, -1, -1, 545, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 996, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 567, -1, -1, -1, -1, -1, -1, -1, 743, 744, 577, -1, -1, 748, 749, -1, -1, 584, -1, -1, -1, -1, 589, -1, -1, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1054, -1, 30, 31, 32, -1, 1060, -1, -1, -1, 792, 39, -1, -1, -1, -1, -1, -1, 800, -1, -1, -1, -1, -1, 638, 807, 808, -1, -1, 811, -1, 813, 646, -1, -1, -1, -1, -1, -1, 67, 1094, 823, -1, -1, 72, 1099, 74, 75, 76, -1, -1, -1, -1, 1107, -1, 83, 84, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, -1, 109, -1, 111, -1, -1, 1140, 39, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, 1152, -1, -1, 1155, -1, 1157, -1, -1, -1, -1, -1, -1, -1, -1, -1, 895, -1, 67, -1, 1171, 1172, -1, 902, 903, 904, -1, 906, -1, 78, -1, 910, -1, 744, -1, 746, -1, -1, -1, -1, -1, -1, 1193, -1, -1, 756, -1, -1, -1, -1, -1, 762, 931, 932, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 7, -1, -1, 10, 11, 12, 13, 14, -1, -1, -1, 39, -1, -1, 966, -1, 1240, -1, -1, -1, 804, 805, -1, -1, 808, -1, -1, -1, -1, -1, 37, 38, 39, 40, -1, 987, 988, -1, 822, 67, -1, -1, -1, -1, -1, -1, 998, -1, -1, -1, -1, -1, 1004, 1005, -1, 1007, 1008, 1009, -1, 66, 67, -1, -1, -1, -1, 72, -1, 1019, 1020, 76, -1, -1, 79, 80, 81, 82, 83, 84, 862, 86, 87, -1, 866, -1, -1, -1, -1, -1, -1, -1, -1, 1315, -1, 1317, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 1329, -1, 1331, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, 903, -1, -1, -1, -1, 1348, -1, -1, -1, -1, -1, 1082, -1, 1084, -1, -1, -1, -1, 1089, -1, -1, 1364, 1365, -1, -1, -1, -1, 1098, -1, -1, -1, -1, 1375, -1, -1, 1378, -1, -1, -1, 942, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1121, 1122, 1123, -1, -1, -1, 1399, -1, 37, 38, -1, 40, -1, -1, -1, 1408, -1, 970, 1411, -1, 1413, 1414, 1415, 976, 1145, -1, -1, 980, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, -1, -1, -1, -1, -1, 72, -1, -1, -1, 76, 1001, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, 1012, 1453, -1, 1455, -1, 1457, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1472, 109, 1034, 111, 1036, -1, 1206, -1, 116, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 1051, 1052, -1, -1, -1, 1224, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1072, -1, -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 1273, 1274, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1127, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, 1145, 69, -1, 71, -1, -1, 74, 75, -1, -1, -1, -1, -1, -1, -1, 1160, 1161, -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, 111, -1, 30, 31, 32, 33, 117, 118, 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, 1393, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -1, -1, -1, 132, -1, -1, -1, -1, -1, -1, -1, -1, 1301, -1, -1, 1304, -1, -1, -1, -1, -1, -1, -1, 1480, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1504, 1505, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1529, 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, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, -1, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, -1, -1, -1, -1, 132, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, 1514, 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, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, -1, -1, 66, 67, -1, 69, -1, 71, 72, 39, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, 78, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 37, 38, 39, 40, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, 66, 67, -1, 69, 39, 71, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, 116, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 0, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 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, 117, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 64, -1, -1, 67, -1, 69, -1, 71, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 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, 117, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -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, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, 33, -1, -1, 36, -1, -1, 39, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75, -1, -1, 78, 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, 111, -1, -1, 39, -1, -1, 117, 118, -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, -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, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, 67, -1, 69, -1, 71, -1, 39, 74, 75, -1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, 110, 111, 39, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, 109, 71, 111, -1, 74, 75, -1, -1, 117, 118, -1, -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, 117, 118, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, 67, -1, 69, -1, 71, 39, 40, 74, 75, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 96, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, 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, 115, -1, 117, 118, -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, 117, 118, -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, 117, 118, -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, 117, 118, -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, 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, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 66, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 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, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, 109, 110, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, 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, 117, 118, 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, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, 83, 84, -1, 117, 118, 119, 120, 121, 122, 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, 117, 118, 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, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, 117, 118, 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, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, 115, -1, 117, 118, 37, 38, 39, 40, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, 66, 67, -1, -1, -1, 39, 72, -1, 74, 75, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, 109, 78, 111, -1, -1, -1, 83, 84, 117, 118, 119, 120, 121, 122, -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, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 72, -1, 74, 75, 76, -1, 78, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, 111, -1, 83, 84, -1, -1, 117, 118, -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, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 72, -1, 74, 75, 76, -1, -1, -1, -1, -1, -1, 83, 84, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, 78, 109, -1, 111, -1, -1, -1, -1, -1, 117, 118, -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, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, -1, 30, 31, 32, -1, -1, -1, -1, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, 78, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, -1, -1, 39, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, 111, -1, 74, 75, -1, -1, 117, 118, 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, 111, -1, -1, -1, -1, -1, 117, 118, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 67, -1, 30, 31, 32, -1, -1, 74, 75, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, 111, -1, 74, 75, -1, -1, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, 74, 75, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, 117, 118, -1, -1, -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, 111, 30, 31, 32, -1, -1, 117, 118, -1, -1, 39, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, -1, -1, 30, 31, 32, -1, -1, -1, -1, 67, -1, 39, -1, -1, -1, -1, 74, 75, -1, -1, 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, 117, 118, -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, 117, 118, 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, 117, 118, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 40, 41, -1, 43, 132, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, 127, -1, -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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, -1, -1, 37, 38, 127, 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, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 66, -1, -1, -1, 127, -1, 72, -1, -1, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, -1, -1, -1, -1, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, -1, 114, -1, -1, 117, 118, 119, 120, 121, 122, 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, 37, 38, -1, 40, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 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, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, 111, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, 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, -1, 76, -1, -1, 79, 80, 81, 82, 83, 84, -1, 86, 87, -1, -1, 109, -1, -1, -1, 37, 38, -1, 40, 117, 118, 119, 120, 121, 122, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 109, -1, -1, -1, -1, -1, -1, -1, 117, 118, 119, 120, 121, 122, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 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, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 67, -1, 69, -1, 71, -1, -1, 74, 75 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint16 yystos[] = { 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 30, 31, 32, 33, 36, 39, 40, 64, 67, 69, 71, 72, 74, 75, 76, 83, 84, 109, 111, 117, 118, 137, 140, 149, 198, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 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, 139, 140, 149, 215, 217, 225, 227, 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, 199, 109, 149, 318, 323, 324, 325, 327, 328, 329, 112, 134, 111, 218, 225, 227, 322, 326, 365, 366, 369, 370, 135, 107, 131, 276, 114, 135, 173, 74, 75, 137, 271, 135, 135, 135, 116, 135, 74, 75, 109, 149, 308, 317, 318, 319, 320, 321, 322, 326, 330, 331, 332, 333, 334, 340, 3, 28, 78, 238, 3, 5, 74, 111, 149, 217, 228, 232, 234, 243, 284, 322, 326, 369, 215, 217, 227, 236, 240, 242, 283, 322, 326, 33, 233, 233, 228, 234, 135, 233, 228, 233, 228, 75, 109, 114, 273, 284, 114, 273, 233, 228, 116, 135, 135, 0, 134, 109, 173, 311, 311, 134, 111, 225, 227, 367, 271, 271, 131, 227, 109, 149, 308, 318, 322, 111, 149, 369, 305, 230, 313, 109, 289, 109, 109, 51, 109, 37, 38, 40, 66, 72, 76, 79, 80, 81, 82, 86, 87, 109, 111, 119, 120, 121, 122, 136, 140, 141, 142, 143, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 164, 167, 225, 275, 291, 365, 370, 227, 110, 110, 110, 110, 110, 110, 110, 74, 75, 111, 225, 271, 349, 367, 111, 117, 149, 164, 217, 218, 224, 227, 231, 232, 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, 149, 164, 277, 277, 115, 134, 116, 132, 109, 116, 132, 116, 132, 116, 132, 311, 132, 318, 319, 320, 321, 331, 332, 333, 334, 227, 317, 330, 64, 310, 111, 311, 348, 349, 311, 311, 173, 134, 109, 311, 348, 311, 311, 227, 308, 109, 109, 226, 227, 225, 227, 112, 134, 225, 365, 370, 173, 134, 271, 276, 217, 232, 322, 326, 173, 134, 293, 227, 236, 132, 227, 227, 291, 247, 245, 257, 273, 256, 227, 293, 132, 132, 304, 134, 139, 270, 3, 135, 207, 208, 222, 224, 227, 134, 310, 109, 310, 164, 318, 227, 109, 134, 271, 114, 33, 34, 35, 225, 285, 286, 288, 134, 128, 131, 290, 134, 228, 233, 234, 271, 314, 315, 316, 109, 141, 109, 148, 109, 148, 151, 109, 148, 109, 109, 148, 148, 111, 164, 169, 173, 225, 274, 365, 369, 112, 134, 82, 85, 86, 87, 109, 111, 113, 114, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 131, 166, 151, 151, 117, 123, 124, 119, 120, 88, 89, 90, 91, 125, 126, 92, 93, 118, 127, 128, 94, 95, 129, 131, 372, 109, 149, 344, 345, 346, 347, 348, 110, 116, 109, 348, 349, 109, 348, 349, 134, 109, 225, 367, 112, 134, 135, 111, 225, 227, 360, 361, 369, 370, 135, 109, 111, 149, 318, 335, 336, 337, 338, 339, 340, 341, 342, 343, 349, 350, 351, 352, 353, 354, 355, 149, 369, 227, 135, 135, 149, 225, 227, 362, 271, 225, 349, 362, 271, 109, 134, 134, 134, 112, 134, 72, 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, 207, 134, 308, 169, 275, 169, 275, 308, 111, 207, 310, 173, 134, 207, 110, 40, 111, 115, 225, 248, 249, 250, 365, 114, 116, 371, 131, 258, 114, 227, 263, 264, 265, 268, 269, 110, 116, 173, 134, 117, 164, 134, 224, 227, 262, 361, 369, 302, 303, 109, 149, 335, 110, 116, 372, 273, 285, 109, 114, 273, 275, 285, 110, 116, 109, 141, 110, 130, 274, 274, 274, 145, 164, 275, 274, 112, 134, 110, 116, 110, 109, 149, 348, 356, 357, 358, 359, 110, 116, 164, 111, 139, 144, 145, 134, 111, 139, 144, 164, 151, 151, 151, 152, 152, 153, 153, 154, 154, 154, 154, 155, 155, 156, 157, 158, 159, 160, 130, 169, 164, 134, 345, 346, 347, 227, 344, 311, 311, 164, 275, 134, 270, 134, 225, 349, 362, 227, 231, 112, 112, 134, 369, 112, 109, 134, 318, 336, 337, 338, 341, 351, 352, 353, 112, 134, 227, 335, 339, 350, 109, 311, 354, 372, 311, 311, 372, 109, 311, 354, 311, 311, 311, 311, 349, 225, 360, 370, 271, 112, 116, 112, 116, 372, 225, 362, 372, 259, 260, 261, 262, 259, 259, 271, 164, 134, 111, 273, 130, 116, 371, 277, 111, 130, 281, 29, 209, 210, 271, 259, 139, 308, 139, 310, 109, 348, 349, 109, 348, 349, 141, 349, 173, 263, 110, 110, 110, 110, 112, 173, 207, 173, 114, 249, 250, 112, 134, 109, 130, 149, 251, 253, 317, 318, 330, 356, 116, 132, 116, 132, 273, 247, 273, 115, 162, 163, 257, 135, 135, 139, 222, 135, 135, 259, 109, 149, 369, 135, 115, 227, 286, 287, 135, 134, 134, 109, 135, 110, 315, 169, 170, 130, 132, 111, 141, 200, 201, 202, 110, 116, 110, 110, 110, 110, 111, 164, 357, 358, 359, 227, 356, 311, 311, 114, 151, 167, 164, 165, 168, 116, 135, 134, 110, 116, 164, 134, 115, 162, 130, 263, 110, 110, 110, 344, 263, 110, 259, 225, 362, 111, 117, 149, 164, 164, 227, 341, 263, 110, 110, 110, 110, 110, 110, 110, 7, 227, 335, 339, 350, 134, 134, 372, 134, 134, 110, 135, 135, 135, 135, 276, 135, 162, 163, 164, 309, 134, 277, 279, 115, 134, 211, 273, 40, 41, 43, 46, 47, 48, 49, 50, 51, 52, 53, 57, 61, 62, 72, 111, 127, 170, 171, 172, 173, 174, 175, 177, 178, 190, 192, 193, 198, 212, 307, 29, 135, 131, 276, 134, 134, 110, 135, 173, 247, 132, 132, 318, 163, 227, 252, 253, 252, 273, 311, 115, 258, 371, 110, 116, 112, 112, 135, 227, 116, 372, 289, 110, 285, 215, 217, 225, 297, 298, 299, 300, 291, 110, 110, 130, 163, 109, 110, 130, 116, 139, 112, 110, 110, 110, 356, 278, 116, 135, 168, 112, 139, 146, 147, 145, 135, 146, 162, 167, 135, 109, 348, 349, 135, 135, 134, 135, 135, 135, 164, 110, 135, 109, 348, 349, 109, 354, 109, 354, 349, 226, 7, 117, 135, 164, 263, 263, 262, 266, 266, 267, 116, 116, 110, 110, 112, 96, 122, 135, 135, 146, 277, 164, 116, 132, 212, 216, 227, 231, 109, 109, 171, 109, 109, 72, 132, 72, 132, 72, 117, 170, 109, 173, 165, 165, 130, 112, 143, 132, 135, 134, 135, 211, 110, 164, 263, 263, 311, 110, 115, 251, 115, 134, 110, 134, 135, 308, 115, 134, 135, 135, 110, 114, 200, 112, 163, 132, 200, 202, 110, 109, 348, 349, 371, 165, 112, 135, 85, 113, 116, 135, 112, 135, 110, 134, 110, 110, 112, 112, 112, 135, 110, 134, 134, 134, 164, 164, 135, 112, 135, 135, 135, 135, 134, 134, 163, 163, 112, 112, 135, 135, 273, 227, 169, 169, 47, 169, 134, 132, 132, 132, 169, 132, 169, 58, 59, 60, 194, 195, 196, 132, 63, 132, 311, 114, 175, 115, 132, 135, 135, 96, 268, 269, 110, 298, 116, 132, 116, 132, 115, 296, 130, 141, 110, 110, 130, 134, 115, 112, 111, 147, 111, 147, 147, 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, 170, 191, 212, 132, 110, 109, 109, 173, 196, 58, 59, 164, 171, 144, 110, 110, 114, 134, 134, 297, 141, 203, 109, 132, 203, 263, 134, 134, 135, 135, 135, 135, 112, 112, 134, 135, 112, 171, 44, 45, 114, 181, 182, 183, 169, 171, 135, 110, 170, 114, 183, 96, 134, 96, 134, 109, 109, 132, 115, 134, 271, 308, 115, 116, 130, 163, 110, 135, 146, 146, 110, 110, 110, 110, 266, 42, 163, 179, 180, 309, 130, 134, 171, 181, 110, 132, 171, 132, 134, 110, 134, 110, 134, 96, 134, 96, 134, 132, 297, 141, 139, 204, 110, 132, 110, 135, 135, 171, 96, 116, 130, 135, 205, 206, 212, 132, 170, 170, 205, 173, 197, 225, 365, 173, 197, 110, 134, 110, 134, 115, 110, 116, 112, 112, 163, 179, 182, 184, 185, 134, 132, 182, 186, 187, 135, 109, 149, 308, 356, 139, 135, 173, 197, 173, 197, 109, 132, 139, 171, 176, 115, 182, 212, 170, 56, 176, 189, 115, 182, 110, 227, 110, 135, 135, 291, 171, 176, 132, 188, 189, 176, 189, 173, 173, 110, 110, 110, 188, 135, 135, 173, 173, 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 298 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 304 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 313 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 314 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 315 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 16: /* Line 1806 of yacc.c */ #line 340 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].tok) ); } break; case 17: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { appendStr( (yyvsp[(1) - (2)].constant)->get_constant()->get_value(), (yyvsp[(2) - (2)].tok) ); delete (yyvsp[(2) - (2)].tok); // allocated by lexer (yyval.constant) = (yyvsp[(1) - (2)].constant); } break; case 18: /* Line 1806 of yacc.c */ #line 353 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 19: /* Line 1806 of yacc.c */ #line 355 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 20: /* Line 1806 of yacc.c */ #line 357 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 21: /* Line 1806 of yacc.c */ #line 359 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 23: /* Line 1806 of yacc.c */ #line 369 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 371 "parser.yy" { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 25: /* Line 1806 of yacc.c */ #line 375 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 378 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 381 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 383 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 387 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined (yyval.en) = new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_last( (yyvsp[(3) - (4)].en) ) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 397 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 35: /* Line 1806 of yacc.c */ #line 402 "parser.yy" { (yyval.en) = 0; } break; case 38: /* Line 1806 of yacc.c */ #line 408 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 39: /* Line 1806 of yacc.c */ #line 413 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 40: /* Line 1806 of yacc.c */ #line 417 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 41: /* Line 1806 of yacc.c */ #line 419 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 42: /* Line 1806 of yacc.c */ #line 421 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(3) - (3)].en), build_varref( (yyvsp[(1) - (3)].tok) ) ) ); } break; case 43: /* Line 1806 of yacc.c */ #line 423 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(5) - (7)].en), build_varref( (yyvsp[(1) - (7)].tok) ) ) ); } break; case 45: /* Line 1806 of yacc.c */ #line 431 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 46: /* Line 1806 of yacc.c */ #line 433 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 47: /* Line 1806 of yacc.c */ #line 435 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 48: /* Line 1806 of yacc.c */ #line 440 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new ExpressionNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 49: /* Line 1806 of yacc.c */ #line 453 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 50: /* Line 1806 of yacc.c */ #line 455 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 51: /* Line 1806 of yacc.c */ #line 457 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 52: /* Line 1806 of yacc.c */ #line 459 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 53: /* Line 1806 of yacc.c */ #line 461 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 54: /* Line 1806 of yacc.c */ #line 463 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 55: /* Line 1806 of yacc.c */ #line 465 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 56: /* Line 1806 of yacc.c */ #line 467 "parser.yy" { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 57: /* Line 1806 of yacc.c */ #line 469 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 58: /* Line 1806 of yacc.c */ #line 471 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 59: /* Line 1806 of yacc.c */ #line 473 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); } break; case 60: /* Line 1806 of yacc.c */ #line 479 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 61: /* Line 1806 of yacc.c */ #line 480 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 62: /* Line 1806 of yacc.c */ #line 486 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 63: /* Line 1806 of yacc.c */ #line 487 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 64: /* Line 1806 of yacc.c */ #line 488 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 65: /* Line 1806 of yacc.c */ #line 489 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 67: /* Line 1806 of yacc.c */ #line 495 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 68: /* Line 1806 of yacc.c */ #line 497 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 70: /* Line 1806 of yacc.c */ #line 503 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 71: /* Line 1806 of yacc.c */ #line 505 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 507 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 74: /* Line 1806 of yacc.c */ #line 513 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 75: /* Line 1806 of yacc.c */ #line 515 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 77: /* Line 1806 of yacc.c */ #line 521 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 78: /* Line 1806 of yacc.c */ #line 523 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 80: /* Line 1806 of yacc.c */ #line 529 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 531 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 533 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 83: /* Line 1806 of yacc.c */ #line 535 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 541 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 543 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 88: /* Line 1806 of yacc.c */ #line 549 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 90: /* Line 1806 of yacc.c */ #line 555 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 92: /* Line 1806 of yacc.c */ #line 561 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 94: /* Line 1806 of yacc.c */ #line 567 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 96: /* Line 1806 of yacc.c */ #line 573 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 98: /* Line 1806 of yacc.c */ #line 579 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 582 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 100: /* Line 1806 of yacc.c */ #line 584 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 595 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 104: /* Line 1806 of yacc.c */ #line 597 "parser.yy" { (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new ExpressionNode( build_binary_ptr( OperKinds::Assign, (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ) ); } break; case 105: /* Line 1806 of yacc.c */ #line 602 "parser.yy" { (yyval.en) = nullptr; } break; case 107: /* Line 1806 of yacc.c */ #line 607 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 108: /* Line 1806 of yacc.c */ #line 608 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 109: /* Line 1806 of yacc.c */ #line 609 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 110: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 111: /* Line 1806 of yacc.c */ #line 611 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 112: /* Line 1806 of yacc.c */ #line 612 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 113: /* Line 1806 of yacc.c */ #line 613 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 114: /* Line 1806 of yacc.c */ #line 614 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 115: /* Line 1806 of yacc.c */ #line 615 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 116: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 117: /* Line 1806 of yacc.c */ #line 617 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 624 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple() ); } break; case 119: /* Line 1806 of yacc.c */ #line 626 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (yyvsp[(3) - (5)].en) ) ); } break; case 120: /* Line 1806 of yacc.c */ #line 628 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( (yyvsp[(4) - (6)].en) ) ) ); } break; case 121: /* Line 1806 of yacc.c */ #line 630 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_last( (yyvsp[(5) - (7)].en) ) ) ); } break; case 123: /* Line 1806 of yacc.c */ #line 636 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 125: /* Line 1806 of yacc.c */ #line 642 "parser.yy" { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 126: /* Line 1806 of yacc.c */ #line 647 "parser.yy" { (yyval.en) = 0; } break; case 130: /* Line 1806 of yacc.c */ #line 656 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 136: /* Line 1806 of yacc.c */ #line 663 "parser.yy" { Token fn; fn.str = new std::string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( build_expr( new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_last( (yyvsp[(4) - (6)].en) ) ) ) ) ); } break; case 137: /* Line 1806 of yacc.c */ #line 673 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) ); } break; case 138: /* Line 1806 of yacc.c */ #line 680 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); } break; case 139: /* Line 1806 of yacc.c */ #line 687 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); } break; case 141: /* Line 1806 of yacc.c */ #line 693 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 142: /* Line 1806 of yacc.c */ #line 698 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 143: /* Line 1806 of yacc.c */ #line 700 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 144: /* Line 1806 of yacc.c */ #line 706 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 147: /* Line 1806 of yacc.c */ #line 713 "parser.yy" { if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } } break; case 148: /* Line 1806 of yacc.c */ #line 718 "parser.yy" { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); } break; case 149: /* Line 1806 of yacc.c */ #line 724 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); } break; case 150: /* Line 1806 of yacc.c */ #line 726 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); } break; case 151: /* Line 1806 of yacc.c */ #line 728 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 152: /* Line 1806 of yacc.c */ #line 730 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); // The semantics of the declaration list is changed to include associated initialization, which is performed // *before* the transfer to the appropriate case clause by hoisting the declarations into a compound // statement around the switch. Statements after the initial declaration list can never be executed, and // therefore, are removed from the grammar even though C allows it. The change also applies to choose // statement. (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 153: /* Line 1806 of yacc.c */ #line 740 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 154: /* Line 1806 of yacc.c */ #line 742 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) != 0 ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 155: /* Line 1806 of yacc.c */ #line 752 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 156: /* Line 1806 of yacc.c */ #line 754 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 158: /* Line 1806 of yacc.c */ #line 759 "parser.yy" { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); } break; case 159: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_last( new StatementNode( build_case( (yyvsp[(3) - (3)].en) ) ) ) ); } break; case 160: /* Line 1806 of yacc.c */ #line 765 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 161: /* Line 1806 of yacc.c */ #line 766 "parser.yy" { (yyval.sn) = new StatementNode( build_default() ); } break; case 163: /* Line 1806 of yacc.c */ #line 772 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); } break; case 164: /* Line 1806 of yacc.c */ #line 776 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 165: /* Line 1806 of yacc.c */ #line 781 "parser.yy" { (yyval.sn) = 0; } break; case 167: /* Line 1806 of yacc.c */ #line 787 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 168: /* Line 1806 of yacc.c */ #line 789 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(3) - (3)].sn) ) ) ) ) ); } break; case 169: /* Line 1806 of yacc.c */ #line 794 "parser.yy" { (yyval.sn) = 0; } break; case 171: /* Line 1806 of yacc.c */ #line 800 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 172: /* Line 1806 of yacc.c */ #line 802 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(2) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ) ) ) ); } break; case 173: /* Line 1806 of yacc.c */ #line 804 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 174: /* Line 1806 of yacc.c */ #line 806 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_last( (yyvsp[(2) - (4)].sn)->append_last_case( new StatementNode( build_compound( (StatementNode *)(yyvsp[(3) - (4)].sn)->set_last( (yyvsp[(4) - (4)].sn) ) ) ) ) ) ); } break; case 175: /* Line 1806 of yacc.c */ #line 811 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( "", BranchStmt::Break ) ); } break; case 177: /* Line 1806 of yacc.c */ #line 817 "parser.yy" { (yyval.sn) = 0; } break; case 178: /* Line 1806 of yacc.c */ #line 819 "parser.yy" { (yyval.sn) = 0; } break; case 179: /* Line 1806 of yacc.c */ #line 824 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 180: /* Line 1806 of yacc.c */ #line 826 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ) ); } break; case 181: /* Line 1806 of yacc.c */ #line 828 "parser.yy" { (yyval.sn) = new StatementNode( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); } break; case 182: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 183: /* Line 1806 of yacc.c */ #line 835 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 184: /* Line 1806 of yacc.c */ #line 840 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( *(yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); } break; case 185: /* Line 1806 of yacc.c */ #line 844 "parser.yy" { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); } break; case 186: /* Line 1806 of yacc.c */ #line 847 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( "", BranchStmt::Continue ) ); } break; case 187: /* Line 1806 of yacc.c */ #line 851 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( *(yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); delete (yyvsp[(2) - (3)].tok); } break; case 188: /* Line 1806 of yacc.c */ #line 854 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( "", BranchStmt::Break ) ); } break; case 189: /* Line 1806 of yacc.c */ #line 858 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( *(yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); delete (yyvsp[(2) - (3)].tok); } break; case 190: /* Line 1806 of yacc.c */ #line 860 "parser.yy" { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); } break; case 191: /* Line 1806 of yacc.c */ #line 862 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 192: /* Line 1806 of yacc.c */ #line 864 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 193: /* Line 1806 of yacc.c */ #line 866 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); } break; case 194: /* Line 1806 of yacc.c */ #line 871 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), (yyvsp[(3) - (3)].sn), 0 ) ); } break; case 195: /* Line 1806 of yacc.c */ #line 873 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), 0, (yyvsp[(3) - (3)].sn) ) ); } break; case 196: /* Line 1806 of yacc.c */ #line 875 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (4)].sn), (yyvsp[(3) - (4)].sn), (yyvsp[(4) - (4)].sn) ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 882 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 199: /* Line 1806 of yacc.c */ #line 884 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 886 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 888 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 895 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 897 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 899 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (10)].sn)->set_last( new StatementNode( build_catch( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ) ); } break; case 206: /* Line 1806 of yacc.c */ #line 904 "parser.yy" { (yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) ); } break; case 208: /* Line 1806 of yacc.c */ #line 917 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 209: /* Line 1806 of yacc.c */ #line 922 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 210: /* Line 1806 of yacc.c */ #line 924 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 212: /* Line 1806 of yacc.c */ #line 933 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ) ); } break; case 213: /* Line 1806 of yacc.c */ #line 935 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ) ); } break; case 214: /* Line 1806 of yacc.c */ #line 937 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ) ); } break; case 215: /* Line 1806 of yacc.c */ #line 939 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].en) ) ); } break; case 216: /* Line 1806 of yacc.c */ #line 941 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].en), (yyvsp[(12) - (14)].label) ) ); } break; case 217: /* Line 1806 of yacc.c */ #line 946 "parser.yy" { (yyval.flag) = false; } break; case 218: /* Line 1806 of yacc.c */ #line 948 "parser.yy" { (yyval.flag) = true; } break; case 219: /* Line 1806 of yacc.c */ #line 953 "parser.yy" { (yyval.en) = 0; } break; case 222: /* Line 1806 of yacc.c */ #line 960 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 223: /* Line 1806 of yacc.c */ #line 965 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); } break; case 224: /* Line 1806 of yacc.c */ #line 967 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); } break; case 225: /* Line 1806 of yacc.c */ #line 972 "parser.yy" { (yyval.en) = 0; } break; case 226: /* Line 1806 of yacc.c */ #line 974 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 227: /* Line 1806 of yacc.c */ #line 976 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); } break; case 228: /* Line 1806 of yacc.c */ #line 981 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->labels.push_back( *(yyvsp[(1) - (1)].tok) ); } break; case 229: /* Line 1806 of yacc.c */ #line 983 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->labels.push_back( *(yyvsp[(3) - (3)].tok) ); } break; case 230: /* Line 1806 of yacc.c */ #line 990 "parser.yy" { (yyval.decl) = 0; } break; case 233: /* Line 1806 of yacc.c */ #line 997 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 234: /* Line 1806 of yacc.c */ #line 1002 "parser.yy" { (yyval.decl) = 0; } break; case 237: /* Line 1806 of yacc.c */ #line 1009 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 242: /* Line 1806 of yacc.c */ #line 1023 "parser.yy" {} break; case 243: /* Line 1806 of yacc.c */ #line 1024 "parser.yy" {} break; case 251: /* Line 1806 of yacc.c */ #line 1053 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 252: /* Line 1806 of yacc.c */ #line 1060 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 253: /* Line 1806 of yacc.c */ #line 1065 "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 254: /* Line 1806 of yacc.c */ #line 1075 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 255: /* Line 1806 of yacc.c */ #line 1080 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 256: /* Line 1806 of yacc.c */ #line 1085 "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 257: /* Line 1806 of yacc.c */ #line 1093 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 258: /* Line 1806 of yacc.c */ #line 1098 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 259: /* Line 1806 of yacc.c */ #line 1103 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 260: /* Line 1806 of yacc.c */ #line 1108 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1113 "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 262: /* Line 1806 of yacc.c */ #line 1121 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true ); } break; case 263: /* Line 1806 of yacc.c */ #line 1144 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 264: /* Line 1806 of yacc.c */ #line 1148 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 265: /* Line 1806 of yacc.c */ #line 1155 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 266: /* Line 1806 of yacc.c */ #line 1159 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 267: /* Line 1806 of yacc.c */ #line 1164 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 268: /* Line 1806 of yacc.c */ #line 1169 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 269: /* Line 1806 of yacc.c */ #line 1174 "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 270: /* Line 1806 of yacc.c */ #line 1185 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 271: /* Line 1806 of yacc.c */ #line 1190 "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 272: /* Line 1806 of yacc.c */ #line 1195 "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 273: /* Line 1806 of yacc.c */ #line 1200 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 274: /* Line 1806 of yacc.c */ #line 1205 "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 275: /* Line 1806 of yacc.c */ #line 1214 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 276: /* Line 1806 of yacc.c */ #line 1219 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // XXX } break; case 281: /* Line 1806 of yacc.c */ #line 1236 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) ); } break; case 282: /* Line 1806 of yacc.c */ #line 1241 "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 291: /* Line 1806 of yacc.c */ #line 1263 "parser.yy" { (yyval.decl) = 0; } break; case 294: /* Line 1806 of yacc.c */ #line 1275 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 297: /* Line 1806 of yacc.c */ #line 1286 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); } break; case 298: /* Line 1806 of yacc.c */ #line 1288 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); } break; case 299: /* Line 1806 of yacc.c */ #line 1290 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); } break; case 300: /* Line 1806 of yacc.c */ #line 1292 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); } break; case 301: /* Line 1806 of yacc.c */ #line 1294 "parser.yy" { (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); } break; case 302: /* Line 1806 of yacc.c */ #line 1296 "parser.yy" { typedefTable.enterScope(); } break; case 303: /* Line 1806 of yacc.c */ #line 1300 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 305: /* Line 1806 of yacc.c */ #line 1309 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 306: /* Line 1806 of yacc.c */ #line 1311 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 308: /* Line 1806 of yacc.c */ #line 1322 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 309: /* Line 1806 of yacc.c */ #line 1327 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 310: /* Line 1806 of yacc.c */ #line 1329 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 311: /* Line 1806 of yacc.c */ #line 1331 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 312: /* Line 1806 of yacc.c */ #line 1333 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 313: /* Line 1806 of yacc.c */ #line 1335 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); } break; case 314: /* Line 1806 of yacc.c */ #line 1337 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); } break; case 315: /* Line 1806 of yacc.c */ #line 1339 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); } break; case 316: /* Line 1806 of yacc.c */ #line 1341 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 317: /* Line 1806 of yacc.c */ #line 1346 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 318: /* Line 1806 of yacc.c */ #line 1348 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 319: /* Line 1806 of yacc.c */ #line 1350 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 320: /* Line 1806 of yacc.c */ #line 1352 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 321: /* Line 1806 of yacc.c */ #line 1354 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); } break; case 322: /* Line 1806 of yacc.c */ #line 1356 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); } break; case 323: /* Line 1806 of yacc.c */ #line 1358 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); } break; case 324: /* Line 1806 of yacc.c */ #line 1360 "parser.yy" { (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); } break; case 325: /* Line 1806 of yacc.c */ #line 1362 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 326: /* Line 1806 of yacc.c */ #line 1364 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 327: /* Line 1806 of yacc.c */ #line 1366 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); } break; case 328: /* Line 1806 of yacc.c */ #line 1368 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); } break; case 329: /* Line 1806 of yacc.c */ #line 1370 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 331: /* Line 1806 of yacc.c */ #line 1377 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 332: /* Line 1806 of yacc.c */ #line 1379 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 333: /* Line 1806 of yacc.c */ #line 1381 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 334: /* Line 1806 of yacc.c */ #line 1383 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 336: /* Line 1806 of yacc.c */ #line 1389 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 338: /* Line 1806 of yacc.c */ #line 1396 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 339: /* Line 1806 of yacc.c */ #line 1398 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 340: /* Line 1806 of yacc.c */ #line 1400 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 341: /* Line 1806 of yacc.c */ #line 1405 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 342: /* Line 1806 of yacc.c */ #line 1407 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 343: /* Line 1806 of yacc.c */ #line 1409 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 344: /* Line 1806 of yacc.c */ #line 1411 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 346: /* Line 1806 of yacc.c */ #line 1417 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 347: /* Line 1806 of yacc.c */ #line 1419 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 348: /* Line 1806 of yacc.c */ #line 1421 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 350: /* Line 1806 of yacc.c */ #line 1427 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1429 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1435 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 354: /* Line 1806 of yacc.c */ #line 1437 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1439 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 356: /* Line 1806 of yacc.c */ #line 1444 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1446 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1448 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 361: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl), true ); } break; case 362: /* Line 1806 of yacc.c */ #line 1460 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0, false ); } break; case 363: /* Line 1806 of yacc.c */ #line 1465 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 364: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (6)].aggKey), (yyvsp[(2) - (6)].tok), 0, (yyvsp[(5) - (6)].decl), true ); } break; case 365: /* Line 1806 of yacc.c */ #line 1469 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl), false ); } break; case 366: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 367: /* Line 1806 of yacc.c */ #line 1476 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 368: /* Line 1806 of yacc.c */ #line 1478 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 369: /* Line 1806 of yacc.c */ #line 1483 "parser.yy" { (yyval.decl) = 0; } break; case 370: /* Line 1806 of yacc.c */ #line 1485 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 372: /* Line 1806 of yacc.c */ #line 1491 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->set_extension( true ); } break; case 374: /* Line 1806 of yacc.c */ #line 1494 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (3)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 376: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 377: /* Line 1806 of yacc.c */ #line 1506 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 378: /* Line 1806 of yacc.c */ #line 1508 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 379: /* Line 1806 of yacc.c */ #line 1513 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1515 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1520 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 382: /* Line 1806 of yacc.c */ #line 1522 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1525 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1528 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 386: /* Line 1806 of yacc.c */ #line 1534 "parser.yy" { (yyval.en) = 0; } break; case 387: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 388: /* Line 1806 of yacc.c */ #line 1541 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 390: /* Line 1806 of yacc.c */ #line 1550 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); } break; case 391: /* Line 1806 of yacc.c */ #line 1552 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); } break; case 392: /* Line 1806 of yacc.c */ #line 1557 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(2) - (2)].tok) ); } break; case 393: /* Line 1806 of yacc.c */ #line 1559 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (7)].tok), (yyvsp[(5) - (7)].decl) ); } break; case 394: /* Line 1806 of yacc.c */ #line 1564 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1566 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1571 "parser.yy" { (yyval.en) = 0; } break; case 397: /* Line 1806 of yacc.c */ #line 1573 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 398: /* Line 1806 of yacc.c */ #line 1580 "parser.yy" { (yyval.decl) = 0; } break; case 402: /* Line 1806 of yacc.c */ #line 1588 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 403: /* Line 1806 of yacc.c */ #line 1590 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 404: /* Line 1806 of yacc.c */ #line 1592 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 406: /* Line 1806 of yacc.c */ #line 1600 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 407: /* Line 1806 of yacc.c */ #line 1602 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 408: /* Line 1806 of yacc.c */ #line 1604 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 410: /* Line 1806 of yacc.c */ #line 1610 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 411: /* Line 1806 of yacc.c */ #line 1615 "parser.yy" { (yyval.decl) = 0; } break; case 414: /* Line 1806 of yacc.c */ #line 1622 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 417: /* Line 1806 of yacc.c */ #line 1629 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 418: /* Line 1806 of yacc.c */ #line 1631 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 420: /* Line 1806 of yacc.c */ #line 1640 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 421: /* Line 1806 of yacc.c */ #line 1643 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1645 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 427: /* Line 1806 of yacc.c */ #line 1655 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 429: /* Line 1806 of yacc.c */ #line 1661 "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 430: /* Line 1806 of yacc.c */ #line 1666 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) ); } break; case 432: /* Line 1806 of yacc.c */ #line 1675 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 433: /* Line 1806 of yacc.c */ #line 1684 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 434: /* Line 1806 of yacc.c */ #line 1686 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 446: /* Line 1806 of yacc.c */ #line 1711 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 450: /* Line 1806 of yacc.c */ #line 1719 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1724 "parser.yy" { (yyval.in) = 0; } break; case 452: /* Line 1806 of yacc.c */ #line 1726 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 453: /* Line 1806 of yacc.c */ #line 1728 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 454: /* Line 1806 of yacc.c */ #line 1732 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 455: /* Line 1806 of yacc.c */ #line 1733 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 456: /* Line 1806 of yacc.c */ #line 1738 "parser.yy" { (yyval.in) = 0; } break; case 458: /* Line 1806 of yacc.c */ #line 1740 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 459: /* Line 1806 of yacc.c */ #line 1741 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); } break; case 460: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_last( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 462: /* Line 1806 of yacc.c */ #line 1759 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 464: /* Line 1806 of yacc.c */ #line 1765 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); } break; case 465: /* Line 1806 of yacc.c */ #line 1771 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 466: /* Line 1806 of yacc.c */ #line 1774 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 467: /* Line 1806 of yacc.c */ #line 1776 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 468: /* Line 1806 of yacc.c */ #line 1778 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); } break; case 469: /* Line 1806 of yacc.c */ #line 1780 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 471: /* Line 1806 of yacc.c */ #line 1804 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 472: /* Line 1806 of yacc.c */ #line 1806 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 473: /* Line 1806 of yacc.c */ #line 1808 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1814 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 476: /* Line 1806 of yacc.c */ #line 1816 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 477: /* Line 1806 of yacc.c */ #line 1821 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 479: /* Line 1806 of yacc.c */ #line 1827 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 480: /* Line 1806 of yacc.c */ #line 1832 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 481: /* Line 1806 of yacc.c */ #line 1834 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 483: /* Line 1806 of yacc.c */ #line 1840 "parser.yy" { (yyval.tclass) = DeclarationNode::Type; } break; case 484: /* Line 1806 of yacc.c */ #line 1842 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 485: /* Line 1806 of yacc.c */ #line 1844 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 486: /* Line 1806 of yacc.c */ #line 1849 "parser.yy" { (yyval.decl) = 0; } break; case 487: /* Line 1806 of yacc.c */ #line 1851 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) != 0 ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 488: /* Line 1806 of yacc.c */ #line 1856 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1861 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 490: /* Line 1806 of yacc.c */ #line 1863 "parser.yy" { (yyval.decl) = 0; } break; case 491: /* Line 1806 of yacc.c */ #line 1868 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 493: /* Line 1806 of yacc.c */ #line 1871 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); } break; case 494: /* Line 1806 of yacc.c */ #line 1873 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 495: /* Line 1806 of yacc.c */ #line 1878 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 496: /* Line 1806 of yacc.c */ #line 1880 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 497: /* Line 1806 of yacc.c */ #line 1882 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); } break; case 498: /* Line 1806 of yacc.c */ #line 1887 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1889 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1894 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 501: /* Line 1806 of yacc.c */ #line 1899 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1907 "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 503: /* Line 1806 of yacc.c */ #line 1912 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 504: /* Line 1806 of yacc.c */ #line 1917 "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 506: /* Line 1806 of yacc.c */ #line 1927 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 509: /* Line 1806 of yacc.c */ #line 1937 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 510: /* Line 1806 of yacc.c */ #line 1942 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 511: /* Line 1806 of yacc.c */ #line 1947 "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 512: /* Line 1806 of yacc.c */ #line 1955 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 513: /* Line 1806 of yacc.c */ #line 1960 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 514: /* Line 1806 of yacc.c */ #line 1970 "parser.yy" {} break; case 515: /* Line 1806 of yacc.c */ #line 1972 "parser.yy" { if ( parseTree ) { parseTree->appendList( (yyvsp[(1) - (1)].decl) ); } else { parseTree = (yyvsp[(1) - (1)].decl); } } break; case 517: /* Line 1806 of yacc.c */ #line 1984 "parser.yy" { (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 518: /* Line 1806 of yacc.c */ #line 1989 "parser.yy" { (yyval.decl) = 0; } break; case 522: /* Line 1806 of yacc.c */ #line 1997 "parser.yy" {} break; case 523: /* Line 1806 of yacc.c */ #line 1999 "parser.yy" { linkageStack.push( linkage ); linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) ); } break; case 524: /* Line 1806 of yacc.c */ #line 2004 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 525: /* Line 1806 of yacc.c */ #line 2010 "parser.yy" { // mark all fields in list for ( DeclarationNode *iter = (yyvsp[(2) - (2)].decl); iter != NULL; iter = (DeclarationNode *)iter->get_next() ) iter->set_extension( true ); (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 527: /* Line 1806 of yacc.c */ #line 2025 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 528: /* Line 1806 of yacc.c */ #line 2031 "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 529: /* Line 1806 of yacc.c */ #line 2040 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 530: /* Line 1806 of yacc.c */ #line 2046 "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 531: /* Line 1806 of yacc.c */ #line 2052 "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 532: /* Line 1806 of yacc.c */ #line 2058 "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 533: /* Line 1806 of yacc.c */ #line 2064 "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 534: /* Line 1806 of yacc.c */ #line 2072 "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 535: /* Line 1806 of yacc.c */ #line 2078 "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 536: /* Line 1806 of yacc.c */ #line 2086 "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 537: /* Line 1806 of yacc.c */ #line 2092 "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 541: /* Line 1806 of yacc.c */ #line 2107 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 544: /* Line 1806 of yacc.c */ #line 2117 "parser.yy" { (yyval.decl) = 0; } break; case 547: /* Line 1806 of yacc.c */ #line 2124 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 548: /* Line 1806 of yacc.c */ #line 2130 "parser.yy" { (yyval.decl) = 0; } break; case 554: /* Line 1806 of yacc.c */ #line 2145 "parser.yy" {} break; case 555: /* Line 1806 of yacc.c */ #line 2146 "parser.yy" {} break; case 556: /* Line 1806 of yacc.c */ #line 2147 "parser.yy" {} break; case 557: /* Line 1806 of yacc.c */ #line 2148 "parser.yy" {} break; case 558: /* Line 1806 of yacc.c */ #line 2183 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 560: /* Line 1806 of yacc.c */ #line 2186 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 561: /* Line 1806 of yacc.c */ #line 2188 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 562: /* Line 1806 of yacc.c */ #line 2193 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 563: /* Line 1806 of yacc.c */ #line 2198 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 564: /* Line 1806 of yacc.c */ #line 2203 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 565: /* Line 1806 of yacc.c */ #line 2205 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 566: /* Line 1806 of yacc.c */ #line 2207 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 567: /* Line 1806 of yacc.c */ #line 2212 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 568: /* Line 1806 of yacc.c */ #line 2214 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 569: /* Line 1806 of yacc.c */ #line 2216 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2218 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 571: /* Line 1806 of yacc.c */ #line 2223 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2225 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 573: /* Line 1806 of yacc.c */ #line 2234 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 575: /* Line 1806 of yacc.c */ #line 2237 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2242 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 577: /* Line 1806 of yacc.c */ #line 2244 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 578: /* Line 1806 of yacc.c */ #line 2246 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 579: /* Line 1806 of yacc.c */ #line 2251 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 580: /* Line 1806 of yacc.c */ #line 2253 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2255 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 582: /* Line 1806 of yacc.c */ #line 2260 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 583: /* Line 1806 of yacc.c */ #line 2262 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 584: /* Line 1806 of yacc.c */ #line 2264 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 588: /* Line 1806 of yacc.c */ #line 2279 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2281 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2283 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 591: /* Line 1806 of yacc.c */ #line 2288 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 592: /* Line 1806 of yacc.c */ #line 2290 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 594: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 597: /* Line 1806 of yacc.c */ #line 2316 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 599: /* Line 1806 of yacc.c */ #line 2319 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2321 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 602: /* Line 1806 of yacc.c */ #line 2327 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 603: /* Line 1806 of yacc.c */ #line 2332 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2334 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2336 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 606: /* Line 1806 of yacc.c */ #line 2341 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 607: /* Line 1806 of yacc.c */ #line 2343 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2345 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 610: /* Line 1806 of yacc.c */ #line 2352 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2356 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 613: /* Line 1806 of yacc.c */ #line 2366 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 615: /* Line 1806 of yacc.c */ #line 2369 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 616: /* Line 1806 of yacc.c */ #line 2371 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2376 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2378 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 619: /* Line 1806 of yacc.c */ #line 2380 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 620: /* Line 1806 of yacc.c */ #line 2385 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2387 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 622: /* Line 1806 of yacc.c */ #line 2389 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2391 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 624: /* Line 1806 of yacc.c */ #line 2396 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 625: /* Line 1806 of yacc.c */ #line 2398 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 626: /* Line 1806 of yacc.c */ #line 2400 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 627: /* Line 1806 of yacc.c */ #line 2431 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 629: /* Line 1806 of yacc.c */ #line 2434 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2436 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 631: /* Line 1806 of yacc.c */ #line 2441 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2446 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2454 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2456 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2458 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 636: /* Line 1806 of yacc.c */ #line 2463 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2465 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 638: /* Line 1806 of yacc.c */ #line 2470 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2472 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 641: /* Line 1806 of yacc.c */ #line 2487 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 642: /* Line 1806 of yacc.c */ #line 2489 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2494 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 644: /* Line 1806 of yacc.c */ #line 2496 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2498 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2502 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 649: /* Line 1806 of yacc.c */ #line 2508 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2510 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2512 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 652: /* Line 1806 of yacc.c */ #line 2517 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 653: /* Line 1806 of yacc.c */ #line 2519 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2521 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 655: /* Line 1806 of yacc.c */ #line 2527 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 656: /* Line 1806 of yacc.c */ #line 2529 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 658: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 659: /* Line 1806 of yacc.c */ #line 2537 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 660: /* Line 1806 of yacc.c */ #line 2539 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 661: /* Line 1806 of yacc.c */ #line 2541 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2556 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2558 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2563 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 666: /* Line 1806 of yacc.c */ #line 2565 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 667: /* Line 1806 of yacc.c */ #line 2567 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 668: /* Line 1806 of yacc.c */ #line 2569 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2571 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 671: /* Line 1806 of yacc.c */ #line 2577 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 672: /* Line 1806 of yacc.c */ #line 2579 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2581 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 674: /* Line 1806 of yacc.c */ #line 2586 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); } break; case 675: /* Line 1806 of yacc.c */ #line 2588 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 676: /* Line 1806 of yacc.c */ #line 2590 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 678: /* Line 1806 of yacc.c */ #line 2597 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 680: /* Line 1806 of yacc.c */ #line 2608 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 681: /* Line 1806 of yacc.c */ #line 2611 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2613 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 683: /* Line 1806 of yacc.c */ #line 2616 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 684: /* Line 1806 of yacc.c */ #line 2618 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 685: /* Line 1806 of yacc.c */ #line 2620 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 687: /* Line 1806 of yacc.c */ #line 2634 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 688: /* Line 1806 of yacc.c */ #line 2636 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2641 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 690: /* Line 1806 of yacc.c */ #line 2643 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2645 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2647 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2649 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 695: /* Line 1806 of yacc.c */ #line 2655 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2657 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2659 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 698: /* Line 1806 of yacc.c */ #line 2664 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2666 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 702: /* Line 1806 of yacc.c */ #line 2676 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 705: /* Line 1806 of yacc.c */ #line 2686 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 706: /* Line 1806 of yacc.c */ #line 2688 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 707: /* Line 1806 of yacc.c */ #line 2690 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2692 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 709: /* Line 1806 of yacc.c */ #line 2694 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2696 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 711: /* Line 1806 of yacc.c */ #line 2703 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 712: /* Line 1806 of yacc.c */ #line 2705 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 713: /* Line 1806 of yacc.c */ #line 2707 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 714: /* Line 1806 of yacc.c */ #line 2709 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 715: /* Line 1806 of yacc.c */ #line 2711 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2713 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2715 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 718: /* Line 1806 of yacc.c */ #line 2717 "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 2719 "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 2721 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2726 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 722: /* Line 1806 of yacc.c */ #line 2728 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 723: /* Line 1806 of yacc.c */ #line 2733 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 724: /* Line 1806 of yacc.c */ #line 2735 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 726: /* Line 1806 of yacc.c */ #line 2762 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 730: /* Line 1806 of yacc.c */ #line 2773 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 731: /* Line 1806 of yacc.c */ #line 2775 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 732: /* Line 1806 of yacc.c */ #line 2777 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2779 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2781 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2783 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2790 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2792 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2794 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2796 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2798 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2800 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2805 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2810 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); } break; case 744: /* Line 1806 of yacc.c */ #line 2812 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 745: /* Line 1806 of yacc.c */ #line 2814 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); } break; case 748: /* Line 1806 of yacc.c */ #line 2838 "parser.yy" { (yyval.en) = 0; } break; case 749: /* Line 1806 of yacc.c */ #line 2840 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9174 "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 2843 "parser.yy" // ----end of grammar---- extern char *yytext; 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: //