/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 0 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 42 "parser.yy" #define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time #define YYDEBUG 1 // get the pretty debugging code to compile #undef __GNUC_MINOR__ #include #include #include "lex.h" #include "parser.h" #include "ParseNode.h" #include "TypedefTable.h" #include "TypeData.h" #include "LinkageSpec.h" using namespace std; extern DeclarationNode * parseTree; extern LinkageSpec::Spec linkage; extern TypedefTable typedefTable; stack< LinkageSpec::Spec > linkageStack; void appendStr( string *to, string *from ) { // "abc" "def" "ghi" => "abcdefghi", remove new text from quotes and insert before last quote in old string. to->insert( to->length() - 1, from->substr( 1, from->length() - 2 ) ); } // appendStr DeclarationNode * distAttr( DeclarationNode * specifier, DeclarationNode * declList ) { // distribute declaration_specifier across all declared variables, e.g., static, const, __attribute__. DeclarationNode * cur = declList, * cl = (new DeclarationNode)->addType( specifier ); //cur->addType( specifier ); for ( cur = dynamic_cast< DeclarationNode * >( cur->get_next() ); cur != nullptr; cur = dynamic_cast< DeclarationNode * >( cur->get_next() ) ) { cl->cloneBaseType( cur ); } // for declList->addType( cl ); // delete cl; return declList; } // distAttr void distExt( DeclarationNode * declaration ) { // distribute EXTENSION across all declarations for ( DeclarationNode *iter = declaration; iter != nullptr; iter = (DeclarationNode *)iter->get_next() ) { iter->set_extension( true ); } // for } // distExt /* Line 268 of yacc.c */ #line 119 "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, EXTERN = 259, STATIC = 260, AUTO = 261, REGISTER = 262, THREADLOCAL = 263, INLINE = 264, FORTRAN = 265, NORETURN = 266, CONST = 267, VOLATILE = 268, RESTRICT = 269, ATOMIC = 270, FORALL = 271, LVALUE = 272, MUTEX = 273, VOID = 274, CHAR = 275, SHORT = 276, INT = 277, LONG = 278, FLOAT = 279, DOUBLE = 280, SIGNED = 281, UNSIGNED = 282, ZERO_T = 283, ONE_T = 284, VALIST = 285, BOOL = 286, COMPLEX = 287, IMAGINARY = 288, TYPEOF = 289, LABEL = 290, ENUM = 291, STRUCT = 292, UNION = 293, OTYPE = 294, FTYPE = 295, DTYPE = 296, TTYPE = 297, TRAIT = 298, SIZEOF = 299, OFFSETOF = 300, ATTRIBUTE = 301, EXTENSION = 302, IF = 303, ELSE = 304, SWITCH = 305, CASE = 306, DEFAULT = 307, DO = 308, WHILE = 309, FOR = 310, BREAK = 311, CONTINUE = 312, GOTO = 313, RETURN = 314, CHOOSE = 315, DISABLE = 316, ENABLE = 317, FALLTHRU = 318, TRY = 319, CATCH = 320, CATCHRESUME = 321, FINALLY = 322, THROW = 323, THROWRESUME = 324, AT = 325, ASM = 326, ALIGNAS = 327, ALIGNOF = 328, GENERIC = 329, STATICASSERT = 330, IDENTIFIER = 331, QUOTED_IDENTIFIER = 332, TYPEDEFname = 333, TYPEGENname = 334, ATTR_IDENTIFIER = 335, ATTR_TYPEDEFname = 336, ATTR_TYPEGENname = 337, INTEGERconstant = 338, CHARACTERconstant = 339, STRINGliteral = 340, REALDECIMALconstant = 341, REALFRACTIONconstant = 342, FLOATINGconstant = 343, ZERO = 344, ONE = 345, ARROW = 346, ICR = 347, DECR = 348, LS = 349, RS = 350, LE = 351, GE = 352, EQ = 353, NE = 354, ANDAND = 355, OROR = 356, ELLIPSIS = 357, MULTassign = 358, DIVassign = 359, MODassign = 360, PLUSassign = 361, MINUSassign = 362, LSassign = 363, RSassign = 364, ANDassign = 365, ERassign = 366, ORassign = 367, ATassign = 368, THEN = 369 }; #endif /* Tokens. */ #define TYPEDEF 258 #define EXTERN 259 #define STATIC 260 #define AUTO 261 #define REGISTER 262 #define THREADLOCAL 263 #define INLINE 264 #define FORTRAN 265 #define NORETURN 266 #define CONST 267 #define VOLATILE 268 #define RESTRICT 269 #define ATOMIC 270 #define FORALL 271 #define LVALUE 272 #define MUTEX 273 #define VOID 274 #define CHAR 275 #define SHORT 276 #define INT 277 #define LONG 278 #define FLOAT 279 #define DOUBLE 280 #define SIGNED 281 #define UNSIGNED 282 #define ZERO_T 283 #define ONE_T 284 #define VALIST 285 #define BOOL 286 #define COMPLEX 287 #define IMAGINARY 288 #define TYPEOF 289 #define LABEL 290 #define ENUM 291 #define STRUCT 292 #define UNION 293 #define OTYPE 294 #define FTYPE 295 #define DTYPE 296 #define TTYPE 297 #define TRAIT 298 #define SIZEOF 299 #define OFFSETOF 300 #define ATTRIBUTE 301 #define EXTENSION 302 #define IF 303 #define ELSE 304 #define SWITCH 305 #define CASE 306 #define DEFAULT 307 #define DO 308 #define WHILE 309 #define FOR 310 #define BREAK 311 #define CONTINUE 312 #define GOTO 313 #define RETURN 314 #define CHOOSE 315 #define DISABLE 316 #define ENABLE 317 #define FALLTHRU 318 #define TRY 319 #define CATCH 320 #define CATCHRESUME 321 #define FINALLY 322 #define THROW 323 #define THROWRESUME 324 #define AT 325 #define ASM 326 #define ALIGNAS 327 #define ALIGNOF 328 #define GENERIC 329 #define STATICASSERT 330 #define IDENTIFIER 331 #define QUOTED_IDENTIFIER 332 #define TYPEDEFname 333 #define TYPEGENname 334 #define ATTR_IDENTIFIER 335 #define ATTR_TYPEDEFname 336 #define ATTR_TYPEGENname 337 #define INTEGERconstant 338 #define CHARACTERconstant 339 #define STRINGliteral 340 #define REALDECIMALconstant 341 #define REALFRACTIONconstant 342 #define FLOATINGconstant 343 #define ZERO 344 #define ONE 345 #define ARROW 346 #define ICR 347 #define DECR 348 #define LS 349 #define RS 350 #define LE 351 #define GE 352 #define EQ 353 #define NE 354 #define ANDAND 355 #define OROR 356 #define ELLIPSIS 357 #define MULTassign 358 #define DIVassign 359 #define MODassign 360 #define PLUSassign 361 #define MINUSassign 362 #define LSassign 363 #define RSassign 364 #define ANDassign 365 #define ERassign 366 #define ORassign 367 #define ATassign 368 #define THEN 369 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 141 "parser.yy" Token tok; ParseNode * pn; ExpressionNode * en; DeclarationNode * decl; DeclarationNode::Aggregate aggKey; DeclarationNode::TypeClass tclass; StatementNode * sn; ConstantExpr * constant; ForCtl * fctl; LabelNode * label; InitializerNode * in; OperKinds op; std::string * str; bool flag; /* Line 293 of yacc.c */ #line 402 "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 414 "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 241 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 11830 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 139 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 249 /* YYNRULES -- Number of rules. */ #define YYNRULES 776 /* YYNRULES -- Number of states. */ #define YYNSTATES 1583 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 369 #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, 127, 2, 2, 2, 130, 124, 2, 115, 116, 123, 125, 122, 126, 119, 129, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 136, 138, 131, 137, 132, 135, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 117, 2, 118, 133, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 120, 134, 121, 128, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint16 yyprhs[] = { 0, 0, 3, 4, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31, 33, 35, 37, 40, 42, 44, 46, 50, 54, 56, 63, 68, 72, 80, 83, 87, 95, 98, 101, 109, 114, 116, 120, 121, 123, 125, 129, 131, 134, 141, 145, 153, 157, 165, 168, 171, 174, 175, 178, 180, 182, 184, 187, 190, 193, 196, 199, 202, 207, 210, 215, 222, 224, 229, 234, 236, 238, 240, 242, 244, 246, 248, 253, 255, 259, 263, 267, 269, 273, 277, 279, 283, 287, 289, 293, 297, 301, 305, 307, 311, 315, 317, 321, 323, 327, 329, 333, 335, 339, 341, 345, 347, 353, 358, 360, 362, 366, 367, 369, 371, 373, 375, 377, 379, 381, 383, 385, 387, 389, 391, 393, 400, 408, 410, 414, 416, 420, 421, 423, 425, 427, 429, 431, 433, 435, 437, 439, 446, 451, 454, 462, 464, 468, 470, 473, 475, 478, 481, 483, 486, 489, 495, 503, 509, 519, 525, 535, 537, 541, 543, 545, 549, 553, 556, 558, 561, 564, 565, 567, 570, 574, 575, 577, 580, 584, 588, 593, 594, 596, 598, 601, 607, 615, 622, 629, 634, 638, 643, 646, 650, 653, 657, 661, 665, 669, 675, 679, 683, 688, 690, 696, 703, 709, 716, 726, 737, 747, 758, 761, 763, 766, 769, 772, 774, 781, 790, 801, 814, 829, 830, 832, 833, 835, 837, 841, 846, 854, 855, 857, 861, 863, 867, 869, 871, 873, 877, 879, 881, 883, 887, 888, 890, 894, 899, 901, 905, 907, 909, 913, 917, 921, 925, 929, 932, 936, 943, 947, 951, 956, 958, 961, 964, 968, 974, 982, 990, 996, 1006, 1009, 1012, 1018, 1022, 1028, 1033, 1037, 1042, 1047, 1055, 1060, 1064, 1068, 1072, 1076, 1083, 1085, 1087, 1089, 1091, 1093, 1095, 1097, 1099, 1101, 1103, 1105, 1107, 1109, 1111, 1113, 1115, 1116, 1118, 1120, 1123, 1125, 1127, 1129, 1131, 1133, 1135, 1137, 1139, 1140, 1146, 1148, 1151, 1155, 1157, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1211, 1214, 1218, 1222, 1224, 1228, 1230, 1233, 1236, 1239, 1244, 1249, 1254, 1259, 1261, 1264, 1267, 1271, 1273, 1276, 1279, 1281, 1284, 1287, 1291, 1293, 1296, 1299, 1301, 1304, 1307, 1311, 1313, 1316, 1319, 1321, 1323, 1325, 1327, 1333, 1334, 1342, 1351, 1353, 1357, 1361, 1363, 1365, 1366, 1369, 1372, 1376, 1380, 1385, 1387, 1390, 1394, 1397, 1399, 1404, 1405, 1407, 1410, 1413, 1415, 1416, 1418, 1421, 1428, 1429, 1438, 1440, 1444, 1447, 1452, 1453, 1456, 1457, 1459, 1461, 1463, 1469, 1475, 1481, 1483, 1489, 1495, 1505, 1507, 1513, 1514, 1516, 1518, 1524, 1526, 1528, 1534, 1540, 1542, 1546, 1550, 1555, 1557, 1559, 1561, 1563, 1566, 1568, 1572, 1576, 1579, 1583, 1585, 1589, 1591, 1593, 1595, 1597, 1599, 1601, 1603, 1605, 1607, 1609, 1611, 1614, 1616, 1618, 1619, 1622, 1625, 1627, 1632, 1633, 1635, 1638, 1642, 1647, 1650, 1653, 1655, 1658, 1661, 1667, 1673, 1681, 1688, 1690, 1693, 1696, 1700, 1702, 1705, 1708, 1713, 1716, 1721, 1722, 1727, 1730, 1732, 1734, 1736, 1738, 1739, 1742, 1748, 1754, 1768, 1770, 1772, 1776, 1780, 1783, 1787, 1791, 1794, 1799, 1801, 1808, 1818, 1819, 1831, 1833, 1837, 1841, 1845, 1847, 1849, 1855, 1858, 1864, 1865, 1867, 1869, 1873, 1874, 1876, 1878, 1880, 1886, 1887, 1894, 1897, 1899, 1902, 1907, 1910, 1914, 1918, 1922, 1927, 1933, 1939, 1945, 1952, 1954, 1956, 1958, 1962, 1963, 1969, 1970, 1972, 1974, 1977, 1984, 1986, 1990, 1991, 1993, 1998, 2000, 2002, 2004, 2006, 2009, 2011, 2014, 2017, 2019, 2023, 2026, 2030, 2035, 2038, 2043, 2048, 2052, 2061, 2065, 2068, 2070, 2073, 2080, 2089, 2093, 2096, 2100, 2104, 2109, 2114, 2118, 2120, 2122, 2124, 2129, 2138, 2142, 2145, 2149, 2153, 2158, 2163, 2167, 2170, 2172, 2175, 2178, 2180, 2184, 2187, 2191, 2196, 2199, 2204, 2209, 2213, 2220, 2229, 2233, 2236, 2238, 2241, 2244, 2247, 2251, 2256, 2259, 2264, 2269, 2273, 2280, 2289, 2293, 2296, 2298, 2301, 2304, 2306, 2308, 2311, 2315, 2320, 2323, 2328, 2335, 2344, 2346, 2349, 2352, 2354, 2357, 2360, 2364, 2369, 2371, 2376, 2381, 2385, 2391, 2400, 2404, 2407, 2411, 2413, 2419, 2425, 2432, 2439, 2441, 2444, 2447, 2449, 2452, 2455, 2459, 2464, 2466, 2471, 2476, 2480, 2486, 2495, 2499, 2501, 2504, 2506, 2509, 2516, 2522, 2529, 2537, 2545, 2547, 2550, 2553, 2555, 2558, 2561, 2565, 2570, 2572, 2577, 2582, 2586, 2595, 2599, 2601, 2603, 2606, 2608, 2610, 2613, 2617, 2620, 2624, 2627, 2631, 2635, 2638, 2643, 2647, 2650, 2654, 2657, 2662, 2666, 2669, 2676, 2683, 2690, 2698, 2700, 2703, 2705, 2707, 2709, 2712, 2716, 2719, 2723, 2726, 2730, 2734, 2739, 2742, 2746, 2751, 2754, 2760, 2767, 2774, 2775, 2777, 2778 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int16 yyrhs[] = { 316, 0, -1, -1, -1, 83, -1, 86, -1, 87, -1, 88, -1, 84, -1, 76, -1, 80, -1, 146, -1, 76, -1, 80, -1, 76, -1, 146, -1, 89, -1, 90, -1, 148, -1, 85, -1, 148, 85, -1, 76, -1, 146, -1, 176, -1, 115, 178, 116, -1, 115, 182, 116, -1, 149, -1, 150, 117, 140, 173, 141, 118, -1, 150, 115, 151, 116, -1, 150, 119, 145, -1, 150, 119, 117, 140, 153, 141, 118, -1, 150, 87, -1, 150, 91, 145, -1, 150, 91, 117, 140, 153, 141, 118, -1, 150, 92, -1, 150, 93, -1, 115, 289, 116, 120, 293, 386, 121, -1, 150, 120, 151, 121, -1, 152, -1, 151, 122, 152, -1, -1, 173, -1, 154, -1, 153, 122, 154, -1, 155, -1, 86, 154, -1, 86, 117, 140, 153, 141, 118, -1, 155, 119, 154, -1, 155, 119, 117, 140, 153, 141, 118, -1, 155, 91, 154, -1, 155, 91, 117, 140, 153, 141, 118, -1, 83, 156, -1, 88, 156, -1, 145, 156, -1, -1, 156, 87, -1, 150, -1, 142, -1, 147, -1, 47, 160, -1, 158, 160, -1, 159, 160, -1, 92, 157, -1, 93, 157, -1, 44, 157, -1, 44, 115, 289, 116, -1, 73, 157, -1, 73, 115, 289, 116, -1, 45, 115, 289, 122, 145, 116, -1, 80, -1, 80, 115, 152, 116, -1, 80, 115, 290, 116, -1, 123, -1, 124, -1, 125, -1, 126, -1, 127, -1, 128, -1, 157, -1, 115, 289, 116, 160, -1, 160, -1, 161, 123, 160, -1, 161, 129, 160, -1, 161, 130, 160, -1, 161, -1, 162, 125, 161, -1, 162, 126, 161, -1, 162, -1, 163, 94, 162, -1, 163, 95, 162, -1, 163, -1, 164, 131, 163, -1, 164, 132, 163, -1, 164, 96, 163, -1, 164, 97, 163, -1, 164, -1, 165, 98, 164, -1, 165, 99, 164, -1, 165, -1, 166, 124, 165, -1, 166, -1, 167, 133, 166, -1, 167, -1, 168, 134, 167, -1, 168, -1, 169, 100, 168, -1, 169, -1, 170, 101, 169, -1, 170, -1, 170, 135, 178, 136, 171, -1, 170, 135, 136, 171, -1, 171, -1, 171, -1, 157, 175, 173, -1, -1, 173, -1, 137, -1, 113, -1, 103, -1, 104, -1, 105, -1, 106, -1, 107, -1, 108, -1, 109, -1, 110, -1, 111, -1, 112, -1, 117, 140, 122, 177, 141, 118, -1, 117, 140, 173, 122, 177, 141, 118, -1, 174, -1, 177, 122, 174, -1, 173, -1, 178, 122, 173, -1, -1, 178, -1, 181, -1, 182, -1, 186, -1, 187, -1, 199, -1, 201, -1, 202, -1, 207, -1, 133, 150, 120, 151, 121, 138, -1, 286, 136, 326, 180, -1, 120, 121, -1, 120, 140, 140, 218, 183, 141, 121, -1, 184, -1, 183, 140, 184, -1, 221, -1, 47, 221, -1, 322, -1, 47, 322, -1, 180, 141, -1, 180, -1, 185, 180, -1, 179, 138, -1, 48, 115, 178, 116, 180, -1, 48, 115, 178, 116, 180, 49, 180, -1, 50, 115, 178, 116, 192, -1, 50, 115, 178, 116, 120, 140, 214, 193, 121, -1, 60, 115, 178, 116, 192, -1, 60, 115, 178, 116, 120, 140, 214, 195, 121, -1, 172, -1, 172, 102, 172, -1, 324, -1, 188, -1, 189, 122, 188, -1, 51, 189, 136, -1, 52, 136, -1, 190, -1, 191, 190, -1, 191, 180, -1, -1, 194, -1, 191, 185, -1, 194, 191, 185, -1, -1, 196, -1, 191, 198, -1, 191, 185, 197, -1, 196, 191, 198, -1, 196, 191, 185, 197, -1, -1, 198, -1, 63, -1, 63, 138, -1, 54, 115, 178, 116, 180, -1, 53, 180, 54, 115, 178, 116, 138, -1, 55, 115, 140, 200, 116, 180, -1, 179, 141, 138, 179, 138, 179, -1, 221, 179, 138, 179, -1, 58, 286, 138, -1, 58, 123, 178, 138, -1, 57, 138, -1, 57, 286, 138, -1, 56, 138, -1, 56, 286, 138, -1, 59, 179, 138, -1, 68, 174, 138, -1, 69, 174, 138, -1, 69, 174, 70, 173, 138, -1, 64, 182, 203, -1, 64, 182, 205, -1, 64, 182, 203, 205, -1, 204, -1, 65, 115, 102, 116, 182, -1, 204, 65, 115, 102, 116, 182, -1, 66, 115, 102, 116, 182, -1, 204, 66, 115, 102, 116, 182, -1, 65, 115, 140, 140, 206, 141, 116, 182, 141, -1, 204, 65, 115, 140, 140, 206, 141, 116, 182, 141, -1, 66, 115, 140, 140, 206, 141, 116, 182, 141, -1, 204, 66, 115, 140, 140, 206, 141, 116, 182, 141, -1, 67, 182, -1, 236, -1, 236, 323, -1, 236, 371, -1, 380, 145, -1, 380, -1, 71, 208, 115, 147, 116, 138, -1, 71, 208, 115, 147, 136, 209, 116, 138, -1, 71, 208, 115, 147, 136, 209, 136, 209, 116, 138, -1, 71, 208, 115, 147, 136, 209, 136, 209, 136, 212, 116, 138, -1, 71, 208, 58, 115, 147, 136, 136, 209, 136, 212, 136, 213, 116, 138, -1, -1, 13, -1, -1, 210, -1, 211, -1, 210, 122, 211, -1, 147, 115, 172, 116, -1, 117, 172, 118, 147, 115, 172, 116, -1, -1, 147, -1, 212, 122, 147, -1, 145, -1, 213, 122, 145, -1, 141, -1, 215, -1, 221, -1, 215, 140, 221, -1, 141, -1, 217, -1, 231, -1, 217, 140, 231, -1, -1, 219, -1, 35, 220, 138, -1, 219, 35, 220, 138, -1, 288, -1, 220, 122, 288, -1, 222, -1, 231, -1, 223, 141, 138, -1, 228, 141, 138, -1, 225, 141, 138, -1, 307, 141, 138, -1, 310, 141, 138, -1, 224, 291, -1, 242, 224, 291, -1, 223, 141, 122, 140, 286, 291, -1, 381, 286, 325, -1, 384, 286, 325, -1, 238, 384, 286, 325, -1, 226, -1, 238, 226, -1, 242, 226, -1, 242, 238, 226, -1, 225, 141, 122, 140, 286, -1, 384, 286, 115, 140, 274, 141, 116, -1, 227, 286, 115, 140, 274, 141, 116, -1, 117, 140, 276, 141, 118, -1, 117, 140, 276, 141, 122, 140, 277, 141, 118, -1, 3, 224, -1, 3, 226, -1, 228, 141, 122, 140, 145, -1, 3, 235, 323, -1, 229, 141, 122, 140, 323, -1, 238, 3, 235, 323, -1, 235, 3, 323, -1, 235, 3, 238, 323, -1, 3, 145, 137, 173, -1, 230, 141, 122, 140, 145, 137, 173, -1, 233, 232, 141, 138, -1, 229, 141, 138, -1, 230, 141, 138, -1, 250, 141, 138, -1, 323, 325, 291, -1, 232, 122, 326, 323, 325, 291, -1, 246, -1, 250, -1, 254, -1, 297, -1, 246, -1, 252, -1, 254, -1, 297, -1, 247, -1, 251, -1, 255, -1, 298, -1, 247, -1, 253, -1, 255, -1, 298, -1, -1, 238, -1, 239, -1, 238, 239, -1, 240, -1, 328, -1, 12, -1, 14, -1, 13, -1, 17, -1, 18, -1, 15, -1, -1, 16, 115, 241, 300, 116, -1, 243, -1, 238, 243, -1, 242, 238, 243, -1, 244, -1, 243, 244, -1, 4, -1, 5, -1, 6, -1, 7, -1, 8, -1, 9, -1, 10, -1, 11, -1, 20, -1, 25, -1, 24, -1, 22, -1, 23, -1, 21, -1, 26, -1, 27, -1, 19, -1, 31, -1, 32, -1, 33, -1, 30, -1, 28, -1, 29, -1, 247, -1, 242, 247, -1, 246, 244, -1, 246, 244, 238, -1, 246, 244, 247, -1, 248, -1, 237, 249, 237, -1, 245, -1, 238, 245, -1, 248, 239, -1, 248, 245, -1, 34, 115, 290, 116, -1, 34, 115, 178, 116, -1, 82, 115, 290, 116, -1, 82, 115, 178, 116, -1, 251, -1, 242, 251, -1, 250, 244, -1, 250, 244, 238, -1, 256, -1, 238, 256, -1, 251, 239, -1, 253, -1, 242, 253, -1, 252, 244, -1, 252, 244, 238, -1, 257, -1, 238, 257, -1, 253, 239, -1, 255, -1, 242, 255, -1, 254, 244, -1, 254, 244, 238, -1, 78, -1, 238, 78, -1, 255, 239, -1, 258, -1, 269, -1, 260, -1, 271, -1, 261, 326, 120, 262, 121, -1, -1, 261, 326, 288, 259, 120, 262, 121, -1, 261, 326, 115, 306, 116, 120, 262, 121, -1, 260, -1, 261, 326, 288, -1, 261, 326, 299, -1, 37, -1, 38, -1, -1, 262, 263, -1, 264, 138, -1, 47, 264, 138, -1, 235, 265, 138, -1, 47, 235, 265, 138, -1, 380, -1, 380, 288, -1, 264, 122, 288, -1, 264, 122, -1, 266, -1, 265, 122, 326, 266, -1, -1, 268, -1, 332, 267, -1, 345, 267, -1, 371, -1, -1, 268, -1, 136, 172, -1, 36, 326, 120, 272, 386, 121, -1, -1, 36, 326, 288, 270, 120, 272, 386, 121, -1, 271, -1, 36, 326, 288, -1, 288, 273, -1, 272, 122, 288, 273, -1, -1, 137, 172, -1, -1, 275, -1, 277, -1, 276, -1, 276, 141, 122, 140, 277, -1, 277, 141, 122, 140, 102, -1, 276, 141, 122, 140, 102, -1, 281, -1, 277, 141, 122, 140, 281, -1, 276, 141, 122, 140, 281, -1, 276, 141, 122, 140, 277, 141, 122, 140, 281, -1, 282, -1, 277, 141, 122, 140, 282, -1, -1, 279, -1, 280, -1, 280, 141, 122, 140, 102, -1, 284, -1, 283, -1, 280, 141, 122, 140, 284, -1, 280, 141, 122, 140, 283, -1, 283, -1, 376, 286, 387, -1, 384, 286, 387, -1, 238, 384, 286, 387, -1, 226, -1, 284, -1, 376, -1, 384, -1, 238, 384, -1, 385, -1, 234, 350, 387, -1, 234, 354, 387, -1, 234, 387, -1, 234, 365, 387, -1, 145, -1, 285, 122, 145, -1, 143, -1, 78, -1, 79, -1, 144, -1, 78, -1, 79, -1, 145, -1, 78, -1, 79, -1, 380, -1, 235, -1, 235, 359, -1, 289, -1, 385, -1, -1, 137, 292, -1, 113, 292, -1, 173, -1, 120, 293, 386, 121, -1, -1, 292, -1, 294, 292, -1, 293, 122, 292, -1, 293, 122, 294, 292, -1, 295, 136, -1, 288, 136, -1, 296, -1, 295, 296, -1, 119, 288, -1, 117, 140, 173, 141, 118, -1, 117, 140, 324, 141, 118, -1, 117, 140, 172, 102, 172, 141, 118, -1, 119, 117, 140, 153, 141, 118, -1, 298, -1, 242, 298, -1, 297, 244, -1, 297, 244, 238, -1, 299, -1, 238, 299, -1, 298, 239, -1, 79, 115, 306, 116, -1, 301, 387, -1, 300, 122, 301, 387, -1, -1, 303, 288, 302, 304, -1, 235, 350, -1, 39, -1, 41, -1, 40, -1, 42, -1, -1, 304, 305, -1, 134, 288, 115, 306, 116, -1, 134, 120, 140, 312, 121, -1, 134, 115, 140, 300, 141, 116, 120, 140, 312, 121, 115, 306, 116, -1, 290, -1, 173, -1, 306, 122, 290, -1, 306, 122, 173, -1, 39, 308, -1, 243, 39, 308, -1, 307, 122, 308, -1, 309, 304, -1, 309, 304, 137, 290, -1, 288, -1, 287, 115, 140, 300, 141, 116, -1, 43, 288, 115, 140, 300, 141, 116, 120, 121, -1, -1, 43, 288, 115, 140, 300, 141, 116, 120, 311, 312, 121, -1, 313, -1, 312, 140, 313, -1, 314, 141, 138, -1, 315, 141, 138, -1, 224, -1, 226, -1, 314, 141, 122, 140, 286, -1, 235, 323, -1, 315, 141, 122, 140, 323, -1, -1, 317, -1, 319, -1, 317, 140, 319, -1, -1, 317, -1, 221, -1, 321, -1, 71, 115, 147, 116, 138, -1, -1, 4, 85, 320, 120, 318, 121, -1, 47, 319, -1, 322, -1, 337, 182, -1, 341, 140, 216, 182, -1, 225, 182, -1, 233, 337, 182, -1, 238, 337, 182, -1, 242, 337, 182, -1, 242, 238, 337, 182, -1, 233, 341, 140, 216, 182, -1, 238, 341, 140, 216, 182, -1, 242, 341, 140, 216, 182, -1, 242, 238, 341, 140, 216, 182, -1, 332, -1, 345, -1, 337, -1, 172, 128, 172, -1, -1, 71, 115, 147, 116, 326, -1, -1, 327, -1, 328, -1, 327, 328, -1, 46, 115, 115, 329, 116, 116, -1, 330, -1, 329, 122, 330, -1, -1, 331, -1, 331, 115, 151, 116, -1, 76, -1, 78, -1, 79, -1, 12, -1, 333, 326, -1, 334, -1, 335, 326, -1, 336, 326, -1, 143, -1, 115, 333, 116, -1, 158, 332, -1, 158, 238, 332, -1, 115, 334, 116, 326, -1, 333, 363, -1, 115, 334, 116, 363, -1, 115, 335, 116, 364, -1, 115, 335, 116, -1, 115, 334, 116, 115, 140, 278, 141, 116, -1, 115, 336, 116, -1, 338, 326, -1, 339, -1, 340, 326, -1, 333, 115, 140, 278, 141, 116, -1, 115, 339, 116, 115, 140, 278, 141, 116, -1, 115, 338, 116, -1, 158, 337, -1, 158, 238, 337, -1, 115, 339, 116, -1, 115, 339, 116, 363, -1, 115, 340, 116, 364, -1, 115, 340, 116, -1, 342, -1, 343, -1, 344, -1, 333, 115, 285, 116, -1, 115, 343, 116, 115, 140, 278, 141, 116, -1, 115, 342, 116, -1, 158, 341, -1, 158, 238, 341, -1, 115, 343, 116, -1, 115, 343, 116, 363, -1, 115, 344, 116, 364, -1, 115, 344, 116, -1, 346, 326, -1, 347, -1, 348, 326, -1, 349, 326, -1, 355, -1, 115, 346, 116, -1, 158, 345, -1, 158, 238, 345, -1, 115, 347, 116, 326, -1, 346, 363, -1, 115, 347, 116, 363, -1, 115, 348, 116, 364, -1, 115, 348, 116, -1, 346, 115, 140, 278, 141, 116, -1, 115, 347, 116, 115, 140, 278, 141, 116, -1, 115, 349, 116, -1, 333, 326, -1, 351, -1, 352, 326, -1, 353, 326, -1, 158, 350, -1, 158, 238, 350, -1, 115, 351, 116, 326, -1, 333, 369, -1, 115, 351, 116, 363, -1, 115, 352, 116, 364, -1, 115, 352, 116, -1, 333, 115, 140, 278, 141, 116, -1, 115, 351, 116, 115, 140, 278, 141, 116, -1, 115, 353, 116, -1, 355, 326, -1, 356, -1, 357, 326, -1, 358, 326, -1, 78, -1, 79, -1, 158, 354, -1, 158, 238, 354, -1, 115, 356, 116, 326, -1, 355, 369, -1, 115, 356, 116, 369, -1, 355, 115, 140, 278, 141, 116, -1, 115, 356, 116, 115, 140, 278, 141, 116, -1, 360, -1, 361, 326, -1, 362, 326, -1, 158, -1, 158, 238, -1, 158, 359, -1, 158, 238, 359, -1, 115, 360, 116, 326, -1, 363, -1, 115, 360, 116, 363, -1, 115, 361, 116, 364, -1, 115, 361, 116, -1, 115, 140, 278, 141, 116, -1, 115, 360, 116, 115, 140, 278, 141, 116, -1, 115, 362, 116, -1, 117, 118, -1, 117, 118, 364, -1, 364, -1, 117, 140, 173, 141, 118, -1, 117, 140, 123, 141, 118, -1, 364, 117, 140, 173, 141, 118, -1, 364, 117, 140, 123, 141, 118, -1, 366, -1, 367, 326, -1, 368, 326, -1, 158, -1, 158, 238, -1, 158, 365, -1, 158, 238, 365, -1, 115, 366, 116, 326, -1, 369, -1, 115, 366, 116, 369, -1, 115, 367, 116, 364, -1, 115, 367, 116, -1, 115, 140, 278, 141, 116, -1, 115, 366, 116, 115, 140, 278, 141, 116, -1, 115, 368, 116, -1, 370, -1, 370, 364, -1, 364, -1, 117, 118, -1, 117, 140, 238, 123, 141, 118, -1, 117, 140, 238, 141, 118, -1, 117, 140, 238, 173, 141, 118, -1, 117, 140, 5, 237, 173, 141, 118, -1, 117, 140, 238, 5, 173, 141, 118, -1, 372, -1, 373, 326, -1, 374, 326, -1, 158, -1, 158, 238, -1, 158, 371, -1, 158, 238, 371, -1, 115, 372, 116, 326, -1, 363, -1, 115, 372, 116, 363, -1, 115, 373, 116, 364, -1, 115, 373, 116, -1, 115, 372, 116, 115, 140, 278, 141, 116, -1, 115, 374, 116, -1, 376, -1, 384, -1, 238, 384, -1, 377, -1, 378, -1, 158, 236, -1, 238, 158, 236, -1, 158, 385, -1, 238, 158, 385, -1, 158, 375, -1, 238, 158, 375, -1, 117, 118, 236, -1, 379, 236, -1, 117, 118, 364, 236, -1, 379, 364, 236, -1, 364, 236, -1, 117, 118, 377, -1, 379, 377, -1, 117, 118, 364, 377, -1, 379, 364, 377, -1, 364, 377, -1, 117, 140, 238, 123, 141, 118, -1, 117, 140, 238, 173, 141, 118, -1, 117, 140, 242, 173, 141, 118, -1, 117, 140, 242, 238, 173, 141, 118, -1, 384, -1, 238, 384, -1, 381, -1, 382, -1, 383, -1, 158, 235, -1, 238, 158, 235, -1, 158, 385, -1, 238, 158, 385, -1, 158, 380, -1, 238, 158, 380, -1, 117, 118, 235, -1, 117, 118, 364, 235, -1, 364, 235, -1, 117, 118, 382, -1, 117, 118, 364, 382, -1, 364, 382, -1, 117, 140, 277, 141, 118, -1, 384, 115, 140, 274, 141, 116, -1, 227, 115, 140, 274, 141, 116, -1, -1, 122, -1, -1, 137, 173, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint16 yyrline[] = { 0, 328, 328, 332, 339, 340, 341, 342, 343, 347, 348, 349, 353, 354, 358, 359, 363, 364, 368, 372, 373, 384, 386, 388, 389, 391, 396, 397, 403, 405, 407, 409, 411, 413, 415, 417, 419, 421, 430, 431, 437, 438, 442, 443, 447, 448, 450, 452, 454, 456, 458, 463, 465, 467, 479, 480, 488, 491, 493, 495, 500, 513, 515, 517, 519, 521, 523, 525, 527, 529, 531, 533, 540, 541, 547, 548, 549, 550, 554, 555, 562, 563, 565, 567, 572, 573, 575, 580, 581, 583, 588, 589, 591, 593, 595, 600, 601, 603, 608, 609, 614, 615, 620, 621, 626, 627, 632, 633, 638, 639, 642, 649, 654, 655, 663, 664, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 689, 691, 696, 697, 702, 703, 709, 710, 716, 717, 718, 719, 720, 721, 722, 723, 724, 734, 741, 743, 754, 755, 760, 762, 767, 769, 774, 778, 779, 784, 789, 792, 794, 796, 806, 808, 819, 820, 822, 826, 828, 832, 833, 838, 839, 843, 848, 849, 853, 855, 861, 862, 866, 868, 870, 872, 878, 879, 883, 885, 890, 892, 894, 899, 901, 906, 908, 912, 915, 919, 922, 926, 928, 930, 932, 937, 939, 941, 946, 948, 950, 952, 954, 959, 961, 963, 965, 970, 978, 979, 984, 986, 991, 995, 997, 999, 1001, 1003, 1009, 1010, 1016, 1017, 1021, 1022, 1027, 1029, 1035, 1036, 1038, 1044, 1049, 1059, 1061, 1065, 1066, 1071, 1073, 1077, 1078, 1082, 1084, 1088, 1089, 1093, 1094, 1098, 1099, 1114, 1115, 1116, 1117, 1118, 1122, 1127, 1134, 1144, 1149, 1154, 1162, 1167, 1172, 1177, 1182, 1212, 1217, 1224, 1226, 1233, 1238, 1243, 1254, 1259, 1264, 1269, 1274, 1283, 1288, 1318, 1322, 1323, 1324, 1330, 1335, 1343, 1344, 1345, 1346, 1355, 1356, 1357, 1358, 1362, 1363, 1364, 1365, 1374, 1375, 1376, 1377, 1382, 1383, 1392, 1393, 1398, 1399, 1403, 1405, 1407, 1409, 1411, 1413, 1416, 1415, 1427, 1428, 1430, 1440, 1441, 1446, 1448, 1450, 1452, 1454, 1457, 1459, 1461, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1500, 1501, 1503, 1505, 1507, 1512, 1513, 1519, 1520, 1522, 1524, 1529, 1531, 1533, 1535, 1540, 1541, 1543, 1545, 1550, 1551, 1553, 1558, 1559, 1561, 1563, 1568, 1569, 1571, 1576, 1577, 1579, 1581, 1586, 1588, 1590, 1595, 1596, 1600, 1601, 1605, 1608, 1607, 1611, 1613, 1617, 1622, 1627, 1629, 1635, 1636, 1641, 1642, 1647, 1650, 1658, 1659, 1661, 1663, 1668, 1669, 1675, 1676, 1678, 1681, 1684, 1689, 1690, 1695, 1700, 1703, 1702, 1706, 1710, 1718, 1720, 1726, 1727, 1735, 1736, 1740, 1741, 1742, 1744, 1746, 1753, 1754, 1756, 1758, 1763, 1764, 1770, 1771, 1775, 1776, 1781, 1782, 1783, 1785, 1793, 1794, 1796, 1799, 1801, 1805, 1806, 1807, 1809, 1811, 1816, 1821, 1829, 1831, 1840, 1842, 1847, 1848, 1849, 1853, 1854, 1855, 1859, 1860, 1861, 1865, 1866, 1867, 1872, 1873, 1878, 1879, 1881, 1886, 1887, 1892, 1893, 1894, 1895, 1896, 1911, 1912, 1917, 1918, 1924, 1926, 1929, 1931, 1933, 1956, 1957, 1959, 1961, 1966, 1967, 1969, 1974, 1979, 1980, 1986, 1985, 1989, 1993, 1995, 1997, 1999, 2005, 2006, 2011, 2016, 2018, 2023, 2025, 2026, 2028, 2033, 2035, 2037, 2042, 2044, 2049, 2054, 2062, 2068, 2067, 2081, 2082, 2087, 2088, 2092, 2097, 2102, 2110, 2115, 2126, 2127, 2132, 2133, 2139, 2140, 2144, 2145, 2146, 2151, 2150, 2161, 2169, 2175, 2181, 2190, 2196, 2202, 2208, 2214, 2222, 2228, 2236, 2242, 2251, 2252, 2253, 2257, 2263, 2264, 2274, 2275, 2279, 2280, 2285, 2290, 2291, 2297, 2298, 2300, 2305, 2306, 2307, 2308, 2343, 2345, 2346, 2348, 2353, 2358, 2363, 2365, 2367, 2372, 2374, 2376, 2378, 2383, 2385, 2394, 2396, 2397, 2402, 2404, 2406, 2411, 2413, 2415, 2420, 2422, 2424, 2436, 2437, 2438, 2442, 2444, 2446, 2451, 2453, 2455, 2460, 2462, 2464, 2479, 2481, 2482, 2484, 2489, 2490, 2495, 2497, 2499, 2504, 2506, 2508, 2510, 2515, 2517, 2519, 2529, 2531, 2532, 2534, 2539, 2541, 2543, 2548, 2550, 2552, 2554, 2559, 2561, 2563, 2576, 2578, 2579, 2581, 2586, 2591, 2599, 2601, 2603, 2608, 2610, 2615, 2617, 2634, 2635, 2637, 2642, 2644, 2646, 2648, 2650, 2655, 2656, 2658, 2660, 2665, 2667, 2669, 2675, 2677, 2679, 2683, 2685, 2687, 2689, 2723, 2724, 2726, 2731, 2733, 2735, 2737, 2739, 2744, 2745, 2747, 2749, 2754, 2756, 2758, 2764, 2765, 2767, 2776, 2779, 2781, 2784, 2786, 2788, 2802, 2803, 2805, 2810, 2812, 2814, 2816, 2818, 2823, 2824, 2826, 2828, 2833, 2835, 2843, 2844, 2845, 2850, 2851, 2856, 2858, 2860, 2862, 2864, 2866, 2873, 2875, 2877, 2879, 2881, 2884, 2886, 2888, 2890, 2892, 2897, 2899, 2901, 2906, 2932, 2933, 2935, 2939, 2940, 2944, 2946, 2948, 2950, 2952, 2954, 2961, 2963, 2965, 2967, 2969, 2971, 2976, 2983, 2985, 3003, 3005, 3010, 3011 }; #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", "EXTERN", "STATIC", "AUTO", "REGISTER", "THREADLOCAL", "INLINE", "FORTRAN", "NORETURN", "CONST", "VOLATILE", "RESTRICT", "ATOMIC", "FORALL", "LVALUE", "MUTEX", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE", "SIGNED", "UNSIGNED", "ZERO_T", "ONE_T", "VALIST", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL", "ENUM", "STRUCT", "UNION", "OTYPE", "FTYPE", "DTYPE", "TTYPE", "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", "GENERIC", "STATICASSERT", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname", "TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname", "INTEGERconstant", "CHARACTERconstant", "STRINGliteral", "REALDECIMALconstant", "REALFRACTIONconstant", "FLOATINGconstant", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE", "GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign", "DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign", "RSassign", "ANDassign", "ERassign", "ORassign", "ATassign", "THEN", "'('", "')'", "'['", "']'", "'.'", "'{'", "'}'", "','", "'*'", "'&'", "'+'", "'-'", "'!'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'", "':'", "'='", "';'", "$accept", "push", "pop", "constant", "identifier", "no_01_identifier", "no_attr_identifier", "zero_one", "string_literal", "string_literal_list", "primary_expression", "postfix_expression", "argument_expression_list", "argument_expression", "field_list", "field", "field_name", "fraction_constants", "unary_expression", "ptrref_operator", "unary_operator", "cast_expression", "multiplicative_expression", "additive_expression", "shift_expression", "relational_expression", "equality_expression", "AND_expression", "exclusive_OR_expression", "inclusive_OR_expression", "logical_AND_expression", "logical_OR_expression", "conditional_expression", "constant_expression", "assignment_expression", "assignment_expression_opt", "assignment_operator", "tuple", "tuple_expression_list", "comma_expression", "comma_expression_opt", "statement", "labeled_statement", "compound_statement", "block_item_list", "block_item", "statement_list", "expression_statement", "selection_statement", "case_value", "case_value_list", "case_label", "case_label_list", "case_clause", "switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt", "choose_clause_list", "fall_through_opt", "fall_through", "iteration_statement", "for_control_expression", "jump_statement", "exception_statement", "handler_list", "handler_clause", "finally_clause", "exception_declaration", "asm_statement", "asm_volatile_opt", "asm_operands_opt", "asm_operands_list", "asm_operand", "asm_clobbers_list_opt", "label_list", "declaration_list_opt", "declaration_list", "KR_declaration_list_opt", "KR_declaration_list", "local_label_declaration_opt", "local_label_declaration_list", "local_label_list", "declaration", "cfa_declaration", "cfa_variable_declaration", "cfa_variable_specifier", "cfa_function_declaration", "cfa_function_specifier", "cfa_function_return", "cfa_typedef_declaration", "typedef_declaration", "typedef_expression", "c_declaration", "declaring_list", "declaration_specifier", "declaration_specifier_nobody", "type_specifier", "type_specifier_nobody", "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", "sue_declaration_specifier_nobody", "sue_type_specifier_nobody", "typedef_declaration_specifier", "typedef_type_specifier", "elaborated_type", "elaborated_type_nobody", "aggregate_type", "$@2", "aggregate_type_nobody", "aggregate_key", "field_declaration_list", "field_declaration", "cfa_field_declaring_list", "field_declaring_list", "field_declarator", "bit_subrange_size_opt", "bit_subrange_size", "enum_type", "$@3", "enum_type_nobody", "enumerator_list", "enumerator_value_opt", "cfa_parameter_type_list_opt", "cfa_parameter_type_list", "cfa_parameter_list", "cfa_abstract_parameter_list", "parameter_type_list_opt", "parameter_type_list", "parameter_list", "cfa_parameter_declaration", "cfa_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", "cfa_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_name_list", "attribute_name", "attr_name", "variable_declarator", "paren_identifier", "variable_ptr", "variable_array", "variable_function", "function_declarator", "function_no_ptr", "function_ptr", "function_array", "KR_function_declarator", "KR_function_no_ptr", "KR_function_ptr", "KR_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", "cfa_identifier_parameter_declarator_tuple", "cfa_identifier_parameter_declarator_no_tuple", "cfa_identifier_parameter_ptr", "cfa_identifier_parameter_array", "cfa_array_parameter_1st_dimension", "cfa_abstract_declarator_tuple", "cfa_abstract_declarator_no_tuple", "cfa_abstract_ptr", "cfa_abstract_array", "cfa_abstract_tuple", "cfa_abstract_function", "comma_opt", "assignment_opt", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 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, 139, 140, 141, 142, 142, 142, 142, 142, 143, 143, 143, 144, 144, 145, 145, 146, 146, 147, 148, 148, 149, 149, 149, 149, 149, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 151, 151, 152, 152, 153, 153, 154, 154, 154, 154, 154, 154, 154, 155, 155, 155, 156, 156, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 157, 158, 158, 159, 159, 159, 159, 160, 160, 161, 161, 161, 161, 162, 162, 162, 163, 163, 163, 164, 164, 164, 164, 164, 165, 165, 165, 166, 166, 167, 167, 168, 168, 169, 169, 170, 170, 171, 171, 171, 172, 173, 173, 174, 174, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 176, 176, 177, 177, 178, 178, 179, 179, 180, 180, 180, 180, 180, 180, 180, 180, 180, 181, 182, 182, 183, 183, 184, 184, 184, 184, 184, 185, 185, 186, 187, 187, 187, 187, 187, 187, 188, 188, 188, 189, 189, 190, 190, 191, 191, 192, 193, 193, 194, 194, 195, 195, 196, 196, 196, 196, 197, 197, 198, 198, 199, 199, 199, 200, 200, 201, 201, 201, 201, 201, 201, 201, 201, 201, 201, 202, 202, 202, 203, 203, 203, 203, 203, 204, 204, 204, 204, 205, 206, 206, 206, 206, 206, 207, 207, 207, 207, 207, 208, 208, 209, 209, 210, 210, 211, 211, 212, 212, 212, 213, 213, 214, 214, 215, 215, 216, 216, 217, 217, 218, 218, 219, 219, 220, 220, 221, 221, 222, 222, 222, 222, 222, 223, 223, 223, 224, 224, 224, 225, 225, 225, 225, 225, 226, 226, 227, 227, 228, 228, 228, 229, 229, 229, 229, 229, 230, 230, 231, 231, 231, 231, 232, 232, 233, 233, 233, 233, 234, 234, 234, 234, 235, 235, 235, 235, 236, 236, 236, 236, 237, 237, 238, 238, 239, 239, 240, 240, 240, 240, 240, 240, 241, 240, 242, 242, 242, 243, 243, 244, 244, 244, 244, 244, 244, 244, 244, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 245, 246, 246, 246, 246, 246, 247, 247, 248, 248, 248, 248, 249, 249, 249, 249, 250, 250, 250, 250, 251, 251, 251, 252, 252, 252, 252, 253, 253, 253, 254, 254, 254, 254, 255, 255, 255, 256, 256, 257, 257, 258, 259, 258, 258, 258, 260, 260, 261, 261, 262, 262, 263, 263, 263, 263, 264, 264, 264, 264, 265, 265, 266, 266, 266, 266, 266, 267, 267, 268, 269, 270, 269, 269, 271, 272, 272, 273, 273, 274, 274, 275, 275, 275, 275, 275, 276, 276, 276, 276, 277, 277, 278, 278, 279, 279, 280, 280, 280, 280, 281, 281, 281, 281, 281, 282, 282, 282, 282, 282, 283, 283, 284, 284, 285, 285, 286, 286, 286, 287, 287, 287, 288, 288, 288, 289, 289, 289, 290, 290, 291, 291, 291, 292, 292, 293, 293, 293, 293, 293, 294, 294, 295, 295, 296, 296, 296, 296, 296, 297, 297, 297, 297, 298, 298, 298, 299, 300, 300, 302, 301, 301, 303, 303, 303, 303, 304, 304, 305, 305, 305, 306, 306, 306, 306, 307, 307, 307, 308, 308, 309, 309, 310, 311, 310, 312, 312, 313, 313, 314, 314, 314, 315, 315, 316, 316, 317, 317, 318, 318, 319, 319, 319, 320, 319, 319, 321, 321, 321, 322, 322, 322, 322, 322, 322, 322, 322, 322, 323, 323, 323, 324, 325, 325, 326, 326, 327, 327, 328, 329, 329, 330, 330, 330, 331, 331, 331, 331, 332, 332, 332, 332, 333, 333, 334, 334, 334, 335, 335, 335, 335, 336, 336, 337, 337, 337, 338, 338, 338, 339, 339, 339, 340, 340, 340, 341, 341, 341, 342, 342, 342, 343, 343, 343, 344, 344, 344, 345, 345, 345, 345, 346, 346, 347, 347, 347, 348, 348, 348, 348, 349, 349, 349, 350, 350, 350, 350, 351, 351, 351, 352, 352, 352, 352, 353, 353, 353, 354, 354, 354, 354, 355, 355, 356, 356, 356, 357, 357, 358, 358, 359, 359, 359, 360, 360, 360, 360, 360, 361, 361, 361, 361, 362, 362, 362, 363, 363, 363, 364, 364, 364, 364, 365, 365, 365, 366, 366, 366, 366, 366, 367, 367, 367, 367, 368, 368, 368, 369, 369, 369, 370, 370, 370, 370, 370, 370, 371, 371, 371, 372, 372, 372, 372, 372, 373, 373, 373, 373, 374, 374, 375, 375, 375, 376, 376, 377, 377, 377, 377, 377, 377, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 379, 379, 379, 379, 380, 380, 380, 381, 381, 382, 382, 382, 382, 382, 382, 383, 383, 383, 383, 383, 383, 384, 385, 385, 386, 386, 387, 387 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 3, 1, 6, 4, 3, 7, 2, 3, 7, 2, 2, 7, 4, 1, 3, 0, 1, 1, 3, 1, 2, 6, 3, 7, 3, 7, 2, 2, 2, 0, 2, 1, 1, 1, 2, 2, 2, 2, 2, 2, 4, 2, 4, 6, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 4, 1, 3, 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 5, 4, 1, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 7, 1, 3, 1, 3, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 4, 2, 7, 1, 3, 1, 2, 1, 2, 2, 1, 2, 2, 5, 7, 5, 9, 5, 9, 1, 3, 1, 1, 3, 3, 2, 1, 2, 2, 0, 1, 2, 3, 0, 1, 2, 3, 3, 4, 0, 1, 1, 2, 5, 7, 6, 6, 4, 3, 4, 2, 3, 2, 3, 3, 3, 3, 5, 3, 3, 4, 1, 5, 6, 5, 6, 9, 10, 9, 10, 2, 1, 2, 2, 2, 1, 6, 8, 10, 12, 14, 0, 1, 0, 1, 1, 3, 4, 7, 0, 1, 3, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 0, 1, 3, 4, 1, 3, 1, 1, 3, 3, 3, 3, 3, 2, 3, 6, 3, 3, 4, 1, 2, 2, 3, 5, 7, 7, 5, 9, 2, 2, 5, 3, 5, 4, 3, 4, 4, 7, 4, 3, 3, 3, 3, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 5, 1, 2, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2, 2, 3, 1, 2, 2, 1, 1, 1, 1, 5, 0, 7, 8, 1, 3, 3, 1, 1, 0, 2, 2, 3, 3, 4, 1, 2, 3, 2, 1, 4, 0, 1, 2, 2, 1, 0, 1, 2, 6, 0, 8, 1, 3, 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, 2, 3, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 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, 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, 5, 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, 4, 2, 4, 4, 3, 8, 3, 2, 1, 2, 6, 8, 3, 2, 3, 3, 4, 4, 3, 1, 1, 1, 4, 8, 3, 2, 3, 3, 4, 4, 3, 2, 1, 2, 2, 1, 3, 2, 3, 4, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 2, 3, 4, 2, 4, 4, 3, 6, 8, 3, 2, 1, 2, 2, 1, 1, 2, 3, 4, 2, 4, 6, 8, 1, 2, 2, 1, 2, 2, 3, 4, 1, 4, 4, 3, 5, 8, 3, 2, 3, 1, 5, 5, 6, 6, 1, 2, 2, 1, 2, 2, 3, 4, 1, 4, 4, 3, 5, 8, 3, 1, 2, 1, 2, 6, 5, 6, 7, 7, 1, 2, 2, 1, 2, 2, 3, 4, 1, 4, 4, 3, 8, 3, 1, 1, 2, 1, 1, 2, 3, 2, 3, 2, 3, 3, 2, 4, 3, 2, 3, 2, 4, 3, 2, 6, 6, 6, 7, 1, 2, 1, 1, 1, 2, 3, 2, 3, 2, 3, 3, 4, 2, 3, 4, 2, 5, 6, 6, 0, 1, 0, 2 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint16 yydefact[] = { 307, 307, 326, 327, 328, 329, 330, 331, 332, 333, 313, 315, 314, 318, 0, 316, 317, 342, 334, 339, 337, 338, 336, 335, 340, 341, 347, 348, 346, 343, 344, 345, 572, 396, 397, 0, 0, 0, 307, 0, 9, 382, 0, 10, 16, 17, 0, 2, 72, 73, 590, 11, 307, 548, 253, 3, 478, 3, 266, 0, 3, 3, 3, 254, 0, 0, 0, 308, 309, 311, 307, 321, 324, 356, 291, 349, 354, 292, 364, 293, 378, 368, 385, 393, 572, 386, 421, 294, 497, 501, 3, 3, 0, 2, 544, 549, 554, 312, 0, 0, 572, 602, 572, 2, 613, 614, 615, 307, 0, 756, 757, 0, 14, 0, 15, 307, 275, 276, 0, 308, 299, 300, 301, 302, 551, 319, 0, 573, 574, 14, 471, 472, 13, 467, 470, 0, 528, 523, 514, 471, 472, 0, 0, 553, 0, 307, 0, 0, 0, 0, 0, 0, 0, 0, 307, 307, 0, 758, 308, 607, 619, 762, 755, 753, 760, 0, 0, 0, 260, 2, 0, 557, 465, 466, 464, 0, 0, 0, 0, 659, 660, 0, 0, 3, 570, 566, 572, 587, 572, 572, 568, 2, 567, 572, 626, 572, 572, 629, 0, 0, 0, 307, 307, 326, 383, 2, 307, 267, 310, 322, 357, 369, 502, 0, 2, 0, 478, 268, 308, 350, 365, 379, 498, 0, 2, 0, 325, 351, 358, 359, 0, 366, 370, 380, 384, 0, 499, 503, 0, 0, 0, 1, 307, 2, 555, 601, 603, 307, 2, 766, 308, 769, 570, 570, 0, 308, 0, 0, 278, 572, 568, 2, 307, 0, 0, 307, 0, 422, 575, 2, 526, 2, 579, 19, 0, 18, 0, 0, 0, 0, 21, 69, 4, 8, 5, 6, 7, 0, 0, 307, 2, 74, 75, 76, 77, 57, 22, 58, 26, 56, 78, 307, 0, 80, 84, 87, 90, 95, 98, 100, 102, 104, 106, 108, 112, 520, 23, 474, 476, 519, 0, 473, 477, 0, 591, 606, 609, 612, 618, 621, 624, 2, 764, 307, 767, 572, 2, 72, 307, 3, 452, 0, 775, 308, 307, 321, 295, 349, 296, 371, 297, 378, 375, 387, 572, 388, 3, 3, 434, 438, 448, 453, 298, 497, 307, 454, 731, 732, 307, 455, 457, 2, 608, 620, 754, 2, 2, 255, 2, 483, 0, 481, 480, 479, 146, 2, 2, 257, 2, 2, 256, 2, 286, 2, 287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592, 631, 572, 0, 0, 478, 2, 586, 595, 685, 588, 589, 558, 307, 2, 625, 634, 627, 628, 0, 281, 307, 307, 355, 308, 0, 308, 307, 759, 763, 761, 559, 307, 570, 261, 269, 323, 0, 2, 560, 307, 524, 352, 353, 288, 367, 381, 472, 307, 398, 394, 395, 500, 525, 258, 259, 545, 307, 462, 0, 307, 243, 0, 2, 245, 0, 308, 307, 0, 263, 2, 264, 283, 0, 0, 2, 307, 570, 307, 510, 512, 511, 513, 0, 0, 775, 0, 773, 425, 0, 307, 0, 307, 515, 307, 585, 582, 583, 584, 0, 577, 580, 0, 20, 307, 64, 307, 78, 59, 307, 66, 307, 307, 62, 63, 2, 132, 0, 0, 0, 753, 307, 31, 0, 34, 35, 40, 2, 0, 40, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 117, 116, 0, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 671, 475, 668, 572, 572, 676, 504, 307, 2, 610, 611, 2, 622, 623, 0, 765, 768, 0, 307, 307, 0, 733, 308, 303, 304, 305, 306, 737, 728, 729, 735, 0, 2, 2, 0, 693, 572, 775, 642, 572, 572, 775, 572, 656, 572, 572, 707, 775, 690, 572, 572, 698, 705, 460, 307, 376, 456, 308, 372, 373, 377, 0, 0, 0, 307, 743, 308, 748, 775, 740, 307, 745, 775, 307, 307, 0, 0, 21, 2, 0, 22, 0, 484, 773, 0, 0, 490, 247, 0, 307, 0, 0, 0, 572, 598, 600, 630, 572, 637, 640, 593, 632, 0, 285, 0, 289, 683, 0, 307, 282, 0, 0, 0, 0, 280, 2, 0, 265, 561, 307, 0, 0, 307, 0, 308, 3, 441, 3, 445, 444, 616, 0, 556, 307, 308, 72, 3, 307, 775, 308, 3, 454, 455, 2, 0, 0, 0, 509, 320, 307, 505, 507, 774, 0, 0, 423, 0, 3, 2, 2, 0, 527, 3, 0, 579, 40, 550, 0, 2, 0, 0, 0, 41, 0, 0, 307, 24, 0, 25, 0, 114, 3, 2, 32, 0, 38, 0, 2, 29, 0, 113, 81, 82, 83, 85, 86, 88, 89, 93, 94, 91, 92, 96, 97, 99, 101, 103, 105, 107, 0, 0, 307, 0, 0, 0, 672, 673, 669, 670, 522, 521, 307, 307, 422, 739, 307, 744, 308, 307, 687, 730, 686, 2, 307, 0, 0, 0, 0, 0, 0, 0, 0, 708, 0, 776, 694, 645, 661, 695, 2, 641, 648, 458, 643, 644, 459, 2, 655, 664, 657, 658, 461, 691, 692, 706, 734, 738, 736, 775, 374, 394, 273, 2, 770, 2, 449, 742, 747, 450, 3, 428, 3, 3, 3, 478, 0, 0, 2, 492, 489, 774, 0, 485, 2, 488, 491, 0, 307, 248, 270, 3, 277, 279, 0, 2, 594, 596, 597, 2, 633, 635, 636, 570, 0, 684, 562, 3, 361, 360, 363, 362, 307, 563, 0, 564, 0, 307, 389, 410, 399, 0, 404, 398, 0, 0, 463, 246, 0, 0, 3, 2, 693, 456, 0, 552, 0, 775, 514, 425, 418, 111, 426, 773, 0, 307, 307, 307, 0, 576, 578, 0, 65, 307, 0, 67, 70, 71, 0, 133, 483, 79, 115, 130, 3, 114, 0, 28, 40, 3, 0, 37, 110, 0, 3, 572, 679, 682, 674, 3, 3, 741, 746, 2, 72, 307, 3, 3, 308, 0, 3, 572, 651, 654, 572, 572, 701, 704, 307, 3, 646, 662, 696, 307, 307, 451, 307, 307, 0, 0, 0, 0, 262, 111, 0, 3, 3, 0, 486, 0, 482, 0, 0, 251, 307, 0, 0, 134, 0, 0, 0, 0, 0, 134, 0, 0, 114, 114, 226, 21, 382, 466, 69, 0, 22, 135, 0, 3, 136, 137, 2, 148, 138, 139, 140, 141, 142, 143, 150, 0, 152, 0, 0, 0, 307, 307, 478, 572, 0, 565, 398, 410, 0, 0, 0, 717, 0, 408, 411, 415, 572, 415, 722, 414, 714, 572, 572, 407, 400, 405, 307, 604, 2, 689, 688, 0, 694, 2, 506, 508, 424, 0, 529, 3, 537, 538, 0, 2, 533, 3, 3, 0, 0, 581, 0, 773, 114, 0, 3, 54, 0, 54, 54, 3, 42, 44, 39, 0, 3, 109, 0, 2, 675, 677, 678, 0, 0, 307, 0, 0, 0, 3, 572, 0, 2, 647, 649, 650, 2, 663, 665, 2, 697, 699, 700, 0, 0, 72, 0, 3, 3, 3, 3, 436, 435, 439, 772, 2, 2, 771, 0, 0, 0, 0, 3, 487, 3, 0, 249, 151, 153, 0, 0, 0, 0, 2, 197, 0, 195, 0, 0, 0, 0, 0, 0, 0, 0, 227, 0, 0, 157, 154, 307, 0, 572, 0, 272, 284, 3, 3, 290, 571, 638, 307, 0, 401, 0, 0, 0, 0, 417, 718, 719, 572, 402, 412, 416, 413, 715, 716, 406, 391, 307, 271, 307, 420, 0, 540, 517, 307, 0, 0, 516, 531, 68, 0, 131, 128, 0, 51, 2, 45, 52, 53, 0, 0, 0, 0, 27, 0, 680, 307, 605, 617, 749, 750, 751, 0, 702, 307, 307, 307, 3, 3, 0, 710, 0, 0, 0, 0, 307, 307, 3, 569, 493, 494, 0, 252, 0, 0, 0, 0, 307, 198, 196, 0, 193, 199, 0, 0, 0, 0, 203, 206, 204, 200, 0, 201, 0, 0, 40, 149, 147, 134, 250, 0, 0, 392, 403, 572, 725, 727, 720, 410, 443, 447, 446, 0, 534, 2, 535, 2, 536, 530, 307, 36, 129, 55, 0, 43, 33, 2, 49, 2, 47, 30, 3, 752, 3, 3, 3, 0, 0, 709, 711, 652, 666, 274, 2, 433, 3, 432, 0, 496, 134, 0, 0, 134, 3, 0, 134, 3, 308, 307, 194, 0, 2, 2, 215, 205, 0, 0, 0, 0, 0, 0, 145, 599, 639, 2, 721, 723, 724, 409, 2, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 712, 713, 307, 0, 495, 158, 0, 0, 2, 171, 134, 160, 0, 188, 0, 134, 0, 308, 2, 162, 0, 2, 0, 2, 2, 2, 202, 0, 0, 228, 37, 307, 307, 539, 541, 532, 0, 3, 3, 681, 653, 667, 703, 437, 134, 164, 167, 0, 166, 170, 3, 173, 172, 0, 134, 190, 134, 3, 0, 307, 0, 307, 0, 2, 0, 2, 0, 221, 0, 0, 0, 229, 230, 144, 3, 2, 46, 0, 0, 159, 0, 0, 169, 239, 174, 2, 241, 189, 0, 192, 178, 207, 3, 216, 308, 220, 209, 3, 0, 307, 0, 307, 228, 0, 0, 0, 228, 0, 0, 0, 50, 48, 165, 168, 134, 0, 175, 307, 134, 134, 0, 179, 0, 0, 717, 217, 218, 219, 0, 208, 3, 210, 3, 0, 0, 0, 222, 0, 231, 726, 307, 155, 176, 161, 134, 242, 191, 186, 184, 180, 163, 134, 0, 718, 0, 0, 0, 234, 0, 232, 0, 234, 0, 156, 177, 187, 181, 185, 184, 182, 3, 3, 0, 0, 235, 0, 0, 223, 0, 518, 183, 211, 213, 3, 3, 0, 0, 0, 0, 212, 214, 236, 237, 0, 233, 224, 0, 0, 225, 238 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int16 yydefgoto[] = { -1, 802, 465, 295, 50, 133, 134, 296, 297, 275, 298, 299, 753, 754, 1101, 1102, 1103, 1227, 300, 380, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 992, 520, 941, 546, 316, 942, 1023, 1024, 1524, 1026, 1027, 1028, 1029, 1525, 1030, 1031, 1429, 1430, 1392, 1393, 1394, 1498, 1499, 1503, 1504, 1549, 1550, 1032, 1347, 1033, 1034, 1280, 1281, 1282, 1475, 1035, 1176, 1453, 1454, 1455, 1558, 1576, 1467, 1468, 466, 467, 866, 867, 1000, 53, 54, 55, 56, 57, 340, 156, 60, 61, 62, 63, 183, 469, 342, 65, 1476, 66, 255, 68, 69, 265, 344, 345, 72, 73, 346, 120, 76, 201, 77, 121, 348, 349, 350, 122, 81, 352, 82, 692, 83, 84, 691, 898, 899, 1054, 1055, 1203, 1056, 85, 493, 86, 491, 724, 848, 849, 356, 357, 694, 695, 696, 358, 359, 697, 361, 463, 1037, 135, 136, 318, 319, 168, 651, 652, 653, 654, 655, 362, 123, 89, 488, 489, 916, 490, 270, 497, 320, 90, 137, 138, 91, 1312, 1085, 1086, 1087, 1088, 92, 93, 713, 94, 264, 95, 96, 184, 994, 686, 411, 127, 97, 503, 504, 505, 185, 259, 187, 188, 189, 260, 100, 101, 102, 103, 104, 105, 106, 192, 193, 194, 195, 196, 815, 607, 608, 609, 610, 197, 612, 613, 614, 570, 571, 572, 573, 1060, 107, 616, 617, 618, 619, 620, 621, 1061, 1062, 1063, 1064, 596, 365, 366, 367, 368, 321, 162, 109, 110, 111, 370, 722, 622 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -1376 static const yytype_int16 yypact[] = { 3644, 10282, 32, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 24, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 56, -1376, -1376, 1230, 1113, 65, 7226, 72, -1376, -1376, 176, -1376, -1376, -1376, 630, 11, -1376, -1376, -1376, -1376, 7013, -1376, -1376, -1376, 138, 27, -1376, 1340, -1376, -1376, -1376, -1376, 1755, 264, 88, 8626, -1376, -1376, 7013, 2358, -1376, -1376, 1485, 327, 7092, 1156, 1585, 1485, 1669, -1376, -1376, -1376, 56, -1376, -1376, 1485, 2327, -1376, 227, -1376, 362, 385, -1376, -1376, -1376, -1376, 285, 27, 56, -1376, 56, -1376, -1376, -1376, -1376, 4122, 1340, -1376, -1376, 1340, -1376, 258, -1376, 10471, -1376, -1376, 2035, 10553, -1376, 2430, 2430, 2430, -1376, -1376, 833, 56, -1376, 306, 321, 331, -1376, -1376, -1376, 334, -1376, -1376, -1376, -1376, -1376, 359, 376, -1376, 421, 9775, 2503, 117, 409, 412, 431, 448, 469, 476, 10588, 8042, 456, -1376, 10169, -1376, -1376, -1376, -1376, 480, -1376, 126, 4748, 4748, -1376, 493, 186, -1376, -1376, -1376, -1376, 512, 259, 317, 443, -1376, -1376, 1755, 2698, 513, 571, -1376, 17, -1376, 56, 56, 27, -1376, -1376, 61, -1376, 56, 56, -1376, 2953, 537, 569, 2430, 8661, -1376, -1376, -1376, 7013, -1376, -1376, 1485, -1376, -1376, -1376, 27, -1376, 1340, 138, -1376, 8906, -1376, 2430, 2430, 2430, 27, -1376, 1230, -1376, 6886, -1376, -1376, 566, 2430, -1376, 2430, -1376, 935, 2430, -1376, 1230, 578, 585, -1376, 7226, 720, -1376, -1376, -1376, 9503, -1376, -1376, 3855, -1376, 571, 62, 5470, 10553, 2035, 2953, -1376, 223, -1376, -1376, 10471, 1340, 593, 9062, 1113, 617, -1376, -1376, 310, -1376, 575, -1376, 623, 663, 6523, 636, 5470, 7370, -1376, 651, -1376, -1376, -1376, -1376, -1376, 11419, 11419, 9541, 11, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 786, 2399, 9775, 5470, -1376, 648, 477, 598, 567, 732, 661, 654, 656, 722, 110, -1376, -1376, -1376, 588, -1376, -1376, 251, -1376, -1376, 2503, -1376, -1376, 51, 724, -1376, 530, 724, -1376, -1376, 4122, -1376, 56, 694, 730, 9892, -1376, -1376, 1107, 1664, 9269, 9183, 1485, 1485, -1376, 1485, 2430, 1485, 2430, -1376, -1376, 56, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 1485, 2430, 10623, 1340, -1376, -1376, 10705, 1192, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 8357, 5470, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 956, 758, 766, 768, 961, 778, 783, 797, 2698, -1376, -1376, 56, 708, 746, 138, 800, -1376, -1376, 816, -1376, -1376, -1376, 9503, -1376, -1376, -1376, -1376, -1376, 2953, -1376, 9775, 9775, -1376, 2430, 2035, 10927, 9345, -1376, -1376, -1376, -1376, 9503, 62, -1376, -1376, 1485, 27, -1376, -1376, 9503, -1376, 6971, -1376, -1376, 2430, 2430, 176, 9775, -1376, 809, -1376, 2430, -1376, -1376, -1376, -1376, 10134, -1376, 602, 3294, -1376, 27, 825, -1376, 2035, 11619, 8661, 11437, -1376, -1376, -1376, -1376, 966, 2953, -1376, 9345, 571, 8504, -1376, -1376, -1376, -1376, 680, 633, 810, 1113, 830, 828, 842, 9062, 1033, 10471, -1376, 9062, -1376, -1376, -1376, -1376, 645, -1376, 859, 844, -1376, 9541, -1376, 10740, -1376, -1376, 9541, -1376, 9658, 9541, -1376, -1376, 11, -1376, 659, 870, 891, -1376, 7792, -1376, 703, -1376, -1376, 5470, -1376, 726, 5470, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 5470, -1376, -1376, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 5470, 2514, 588, 1160, -1376, -1376, 56, 56, -1376, -1376, 9775, -1376, -1376, 816, -1376, -1376, 816, 11493, -1376, -1376, 1113, 10705, 7792, 894, -1376, 10775, -1376, 2430, 2430, 2430, -1376, -1376, 480, -1376, 904, 683, 912, 5470, 2122, 241, 810, -1376, 56, 56, 810, 244, -1376, 56, 56, 816, 810, -1376, 56, 56, -1376, 724, -1376, 10857, -1376, 1340, 11707, 2430, 2430, -1376, 1324, 547, 608, 10857, -1376, 5856, -1376, 810, -1376, 10623, -1376, 124, 2858, 2858, 1340, 5055, 864, -1376, 745, 916, 920, -1376, 922, 4748, 416, -1376, 1013, 1340, 2858, 720, 2035, 720, 404, 724, -1376, -1376, 457, 724, -1376, -1376, -1376, 2035, -1376, 421, -1376, 724, 27, 10134, -1376, 710, 963, 728, 969, -1376, 694, 27, -1376, -1376, 9503, 27, 741, 10317, 976, 11707, -1376, -1376, 984, -1376, -1376, -1376, 720, -1376, 11663, 11751, 730, -1376, 2858, 294, 9269, -1376, -1376, 480, 985, 987, 680, 3105, -1376, -1376, 9062, -1376, -1376, 1113, 989, 5470, -1376, 1113, 992, -1376, -1376, 1004, -1376, 992, 1005, 575, 5470, -1376, 1008, 11, 1014, 1029, 1030, -1376, 1031, 1034, 7792, -1376, 5470, -1376, 5273, 5470, 1027, -1376, -1376, 742, -1376, 5470, -1376, -1376, 750, -1376, -1376, -1376, -1376, 648, 648, 477, 477, 598, 598, 598, 598, 567, 567, 732, 661, 654, 656, 722, 5470, 230, 10134, 1035, 1041, 1042, 1160, -1376, -1376, -1376, -1376, -1376, 10134, 10134, -1376, -1376, 10623, -1376, 8167, 10009, -1376, -1376, -1376, 683, 10134, 972, 1052, 1054, 1055, 1063, 1072, 1084, 1085, -1376, 6850, -1376, 2122, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 816, -1376, -1376, -1376, 810, 2430, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 1089, 1091, -1376, 138, 1027, 5055, -1376, -1376, -1376, 8357, 1092, -1376, -1376, -1376, -1376, 1113, 7531, 1175, -1376, -1376, -1376, -1376, 1080, -1376, -1376, -1376, 816, -1376, -1376, -1376, 816, 571, 1104, 816, -1376, -1376, -1376, -1376, -1376, -1376, 8042, -1376, 27, -1376, 1006, 10740, -1376, 1890, -1376, 455, 1113, -1376, 1108, 1106, -1376, -1376, 1111, 1119, -1376, 802, 1243, -1376, 695, -1376, 3105, 810, -1376, 828, -1376, -1376, -1376, 830, 1124, 9062, 10471, 9775, 1127, -1376, -1376, 788, 1126, 8042, 720, 1126, -1376, -1376, 1126, -1376, 8357, -1376, -1376, -1376, 1122, 5470, 908, -1376, 5470, -1376, 908, -1376, -1376, 5470, -1376, 474, 724, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 730, 9892, -1376, -1376, 8292, 1131, -1376, 504, 724, -1376, 505, 521, 724, -1376, 2430, 8378, -1376, -1376, -1376, 10134, 10134, -1376, 9345, 9345, 1133, 1132, 1144, 1162, -1376, 731, 55, 1027, -1376, 908, -1376, 4748, -1376, 5470, 460, -1376, 7667, 1161, 1164, 11363, 1165, 1170, 749, 900, 1822, 5470, 1172, 27, 5470, 5470, 1277, 1157, 1159, 176, -15, 441, 1167, 1176, 1154, -1376, -1376, -1376, 1184, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 1177, -1376, 1113, 1196, 5470, 10134, 10134, 138, 56, 1198, -1376, -1376, 1890, 468, 1914, 5470, 2338, 488, -1376, -1376, 1185, 39, 1185, -1376, -1376, -1376, 56, 56, 1113, -1376, -1376, 10399, -1376, -1376, -1376, -1376, 1201, 1243, -1376, -1376, 1163, -1376, 1203, -1376, 992, -1376, -1376, 2035, 1207, -1376, -1376, -1376, 808, 1202, -1376, 1213, 922, 5470, 1215, 1122, -1376, 1868, -1376, -1376, 1212, -1376, -13, -1376, 1219, 1212, -1376, 1224, -1376, -1376, -1376, 816, 1228, 1233, 7917, 1236, 1239, 1246, -1376, 56, 1245, -1376, -1376, -1376, 816, -1376, -1376, -1376, -1376, -1376, -1376, 816, 5470, 5470, 730, 1247, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 5470, 5470, 1253, 1254, 1212, -1376, -1376, 1113, -1376, -1376, -1376, 5470, 5470, 1292, 5470, -1376, -1376, 1242, -1376, 1248, 5470, 1250, 1252, 5470, 1051, 1257, 13, -1376, 15, 1010, -1376, -1376, 7531, 1260, 56, 550, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 10435, 551, -1376, 820, 1276, 1280, 1281, -1376, 2338, -1376, 56, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 11013, -1376, 9345, -1376, 1285, -1376, -1376, 10471, 552, 557, -1376, 1288, -1376, 1291, -1376, -1376, 1299, 1337, -1376, -1376, 1337, 1337, 908, 1307, 1935, 1975, -1376, 1317, -1376, 10134, -1376, -1376, -1376, -1376, -1376, 1321, -1376, 10134, 10134, 10134, -1376, -1376, 1322, -1376, 1323, 1326, 1330, 763, 9027, 9148, -1376, -1376, -1376, -1376, 1331, -1376, 812, 865, 1333, 877, 7352, -1376, -1376, 595, -1376, -1376, 899, 1336, 1338, 27, 1385, 884, -1376, -1376, 5470, -1376, 1339, 421, 5470, -1376, -1376, 11363, -1376, 1341, 1343, -1376, -1376, 522, 724, -1376, -1376, 1890, -1376, -1376, -1376, 1335, -1376, -1376, -1376, -1376, -1376, -1376, 10471, -1376, -1376, -1376, 908, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 1355, 1357, -1376, -1376, -1376, -1376, -1376, -1376, -1376, 1361, -1376, 1381, -1376, 11363, 177, 5470, 11363, -1376, 1384, 5470, -1376, 3411, 10471, -1376, 292, 1399, 1401, -1376, -1376, 1390, 1393, 1372, 421, 238, 882, -1376, -1376, -1376, -1376, -1376, -1376, 816, -1376, -1376, 1340, 2035, 1395, 1212, 908, 908, 1402, 1404, 1406, 1410, -1376, -1376, 9345, 1407, -1376, 1468, 5470, 1394, -1376, -1376, 11276, -1376, 907, -1376, 1405, 11363, 1408, 9421, -1376, -1376, 1417, -1376, 1421, -1376, 1437, 1438, -1376, 1412, 1414, 20, 1418, 10134, 10471, -1376, -1376, -1376, 1424, 1212, 1212, -1376, -1376, -1376, -1376, -1376, 11363, 179, -1376, 318, -1376, -1376, 8748, -1376, -1376, 1419, 5470, -1376, 5470, 8748, 27, 10892, 27, 10892, 1428, -1376, 1442, -1376, 1425, -1376, 5470, 1448, 280, 1444, -1376, -1376, -1376, 1446, -1376, 1454, 1456, -1376, 5470, 5470, -1376, -1376, 968, 151, -1376, -1376, 1439, -1376, 968, -1376, -1376, 2100, 10775, 720, -1376, -1376, 27, 10892, 27, 10892, 20, 1460, 5470, 1441, 20, 20, 1465, 1471, -1376, -1376, -1376, -1376, 11276, 1462, 968, 8830, 5470, 11189, 1469, 968, 1473, 2100, 2682, -1376, -1376, -1376, 1477, -1376, -1376, -1376, -1376, 1459, 421, 1480, -1376, 290, -1376, -1376, 9775, -1376, 11097, -1376, 11276, -1376, -1376, 1467, 11010, -1376, -1376, 11189, 27, 2682, 27, 1492, 1495, 421, 1498, -1376, 1476, 421, 915, -1376, 11097, -1376, -1376, -1376, 11010, -1376, -1376, -1376, 27, 27, -1376, 378, 5470, -1376, 924, -1376, -1376, -1376, -1376, -1376, -1376, 421, 720, 1500, 1479, -1376, -1376, -1376, -1376, 925, -1376, -1376, 1481, 720, -1376, -1376 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int16 yypgoto[] = { -1376, 4863, 1583, -1376, 725, -1376, 7, 0, -57, -1376, -1376, 597, -512, -465, -798, -919, -1376, -36, 3888, 1181, -1376, 132, 515, 586, -238, 582, 1058, 1059, 1062, 1064, 1066, -1376, 939, -595, 5485, -840, -1376, -1376, 687, -126, -935, 622, -1376, 519, -1376, 454, -1338, -1376, -1376, 172, -1376, -1119, -858, 288, -1376, -1376, -1376, -1376, 95, -1375, -1376, -1376, -1376, -1376, -1376, -1376, 368, -1329, -1376, -1376, -1087, -1376, 161, 109, -1376, 215, -1376, -362, -1376, -1376, -1376, 618, -833, -1376, -1376, 19, -1199, 459, 209, -1376, -1376, -1376, -213, -1376, 4, -466, 47, 141, -194, 2584, 4298, -1376, -1376, 41, 265, 712, 1506, 152, 2823, -1376, -1376, -1376, 214, -1376, -219, 188, 3114, 425, -333, -1376, -1376, 5335, 5712, -824, -1376, 771, 609, 366, 610, -517, -1376, -1376, 6089, 945, 761, -534, -1376, -30, 44, 1078, -1376, -1376, -953, -932, 822, 946, -1376, 83, -1376, 1436, -179, -226, -197, -137, 737, 821, -1376, 1038, 510, 3608, 1612, -447, 975, -1376, -1376, 784, -1376, -437, -1376, 57, -1376, -1376, -1376, -1254, 482, -1376, -1376, -1376, 1221, -1376, 18, -1376, -1376, -809, -101, -1324, -140, 6095, -1376, 6226, -1376, 977, -1376, -92, 355, -176, -168, -165, 2, -43, -40, -37, 1068, 14, 40, 49, -86, -163, -158, -155, -153, -320, -507, -497, -487, -543, -318, -509, -1376, -1376, -544, 1140, 1143, 1145, 1378, 4858, -559, -564, -539, -533, -530, -1376, -1014, -1040, -1039, -1008, -574, -195, -248, -1376, -1376, 71, 135, -23, -1376, 4054, 393, -625, -253 }; /* 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 -548 static const yytype_int16 yytable[] = { 51, 114, 99, 148, 64, 396, 149, 427, 113, 150, 624, 1195, 1196, 397, 707, 690, 398, 258, 399, 438, 116, 758, 606, 400, 611, 785, 401, 860, 402, 382, 383, 1141, 1142, 1036, 468, 114, 114, 808, 51, 1200, 99, 70, 64, 1197, 409, 817, 51, 726, 118, 835, 740, 731, 51, 1143, 159, 676, 143, 1038, 1375, 51, 151, 816, 809, 37, 51, 1431, 190, 51, 810, 213, 51, 1349, 223, 1286, 685, 820, 1170, 1068, 1234, 70, 396, 827, 689, 1284, 251, 37, 152, 274, 397, 216, 404, 398, 807, 399, 804, 153, 405, 424, 400, 157, 515, 401, 37, 402, 805, 273, 1235, 37, 51, 852, 523, 51, 473, 475, 806, 1480, 636, 124, 51, 593, 640, -10, 199, 161, 869, 627, 114, 1532, 920, 154, 1287, 334, 243, 408, 410, 108, 108, 1451, 148, 125, 1431, 149, 175, 597, 150, 593, 51, 169, 159, 593, 1106, 1285, 74, 1513, 249, 1515, 410, 1148, 51, 1552, 372, 1458, 157, 521, 1531, 404, 577, 716, 410, 1157, 200, 405, 908, 108, 1173, 1174, 418, 474, 410, 1229, 142, 51, 51, 1149, 159, 1300, 161, 144, 79, 1547, 74, 252, 317, 1158, 253, 151, 1551, 1152, 51, 680, 682, 332, -240, -240, 468, 108, 51, 804, 159, 59, 59, 566, 674, 148, 78, 51, 149, 805, 51, 150, 441, 152, 929, 468, 1191, 114, 79, 806, 1389, 1390, 153, 468, 243, 324, 1349, 114, 719, 808, 114, 474, 956, 1349, 51, 114, 99, 567, 64, 59, 376, 429, 462, 166, 78, 432, 1224, 980, 51, 51, 624, 159, 460, 603, 809, 51, 377, 71, 114, 198, 810, 37, 730, 979, -240, 820, 1435, 167, 59, 433, 707, 59, 1143, 1463, 445, 70, 220, 710, 611, 37, 471, 742, 37, 145, 967, 624, 804, 457, 1079, 1391, 437, 679, 681, 1349, 624, 71, 805, 1141, 1142, 1149, 386, 432, 585, 669, 487, 1317, 806, 1320, 1322, 670, 767, 768, 769, 770, 678, 51, 387, 372, 892, 1143, 683, 736, -299, 738, 209, 433, 739, 1346, 317, 743, 479, 795, 410, 51, 51, 1389, 1390, 808, 481, 1036, 157, 238, 789, 817, 746, 821, 1411, 98, 818, 824, 602, 825, 624, 602, 241, 830, 341, 51, 951, 575, 593, 51, 809, 1038, 161, 576, 1412, 624, 810, 108, 1435, 649, 584, 389, 521, 1435, 844, -543, 669, 521, 847, 835, 521, 846, 670, 98, 74, 254, 1488, 390, 1516, 74, 243, 147, 1520, 51, 593, 372, 1543, 98, 1435, 909, 512, 602, 1401, 1399, 593, 1435, 1489, 48, 49, 186, 593, -12, 98, 51, 175, 98, 1544, 59, 597, 51, 79, 603, 1426, 547, 548, 79, -468, 1348, 597, 391, 1464, 779, 1128, 1131, 495, 164, -469, 496, 637, 269, 37, 59, 641, 1143, 1465, 392, 78, 1198, 471, 58, 117, 78, 1509, 624, 114, 707, 1195, 1196, 1223, 51, 547, 113, 317, 317, 271, 468, 1081, 471, 51, 590, 372, 1104, 51, 440, 99, 471, 64, 51, 1089, 905, 114, 272, 211, 1200, 978, 114, 611, 58, 1197, 317, 1568, 98, 1471, 37, 1472, 634, 273, 71, 164, 638, 87, 118, 547, 98, 1569, 980, 861, 280, 1376, 873, 37, 410, 1300, 70, 709, 325, 207, 114, 326, 217, 44, 45, 114, 862, 752, 648, 395, 186, 322, 757, 1204, 487, 1204, 317, 211, 487, 960, 327, 87, 710, 37, 37, 863, 1260, 1261, 317, 516, 317, 378, 871, 317, 98, 317, 317, 328, 393, 1529, 37, 37, 74, 881, 371, 877, 98, 410, 593, 171, 1065, 627, 1420, 1421, 394, 1155, 211, 983, 329, 114, 499, 74, 1109, 1065, 410, 330, 1066, 978, 375, 74, 98, 1156, 434, 1469, 51, 552, 553, 51, 79, 1193, 1469, 209, 1497, 1201, 477, 850, 850, 384, 1502, 882, 108, 244, 1122, 1126, 410, 602, 317, 79, 51, 1202, 388, 850, 797, 114, 78, 79, 624, 74, 406, 1129, 1367, 602, 410, 341, 1527, 408, 211, 51, 580, 1534, 410, 114, 707, 78, 500, 425, 501, 502, 434, 990, 51, 78, 114, 51, 114, 1076, 556, 557, 840, 870, 1528, 872, 841, 79, 51, 1155, 1201, 1307, 211, 850, 439, 98, 1309, 211, 760, 761, 762, 426, 220, 851, 851, 1292, 1296, 1308, 59, 554, 555, 164, 1310, 78, 605, 558, 559, 114, 58, 851, 568, 448, 410, 40, 904, 837, 416, 43, 48, 49, 482, 51, 51, 458, 746, 699, 44, 45, 114, 996, 459, 700, 114, 842, 853, 793, 471, 843, 599, 435, 1352, 341, 209, 710, -419, 897, 506, 868, 1044, 443, 471, 593, 46, 707, 71, 507, 717, 851, 510, 87, 48, 49, 718, 40, 87, 186, 40, 43, 732, 900, 43, 834, 487, 515, 733, 597, 44, 45, 549, 44, 45, 590, 745, 1363, 550, 551, 112, 845, 746, 1133, 226, 174, 562, 227, 563, 709, 231, 564, 233, 44, 45, 1428, 714, 112, 341, 801, 236, 602, 51, 112, 48, 49, 1057, 48, 49, 522, 44, 45, 1059, 587, 842, 51, 44, 45, 1075, 322, 322, 751, 112, 565, 139, 140, 40, 886, 172, 173, 43, 560, 561, 746, 174, 44, 45, 174, 98, 44, 45, 74, 331, 605, 756, 888, 322, 672, 1188, -3, -112, 746, 341, 341, -112, 74, 211, 1486, 894, 945, 649, 1153, 673, 856, 576, 946, 114, 1022, 341, 1495, 1428, 64, 949, 946, 526, 662, 396, 79, 527, 528, 529, 939, 1335, 663, 397, 664, 1336, 398, 1164, 399, 322, 79, 440, 1518, 400, 666, 211, 401, 51, 402, 667, 114, 530, 78, 531, 1091, 532, 533, 70, 322, 112, 946, 139, 140, 668, 51, 341, 78, 909, 675, 602, 710, 226, 44, 45, 1220, 48, 49, 87, 1342, -390, 576, 797, 114, 248, 746, 959, 324, 410, 649, 1092, 174, 58, 1049, 1082, 114, -244, 87, 603, 114, 1358, 1359, 1100, 721, 266, 87, 1100, 803, 1057, 209, 605, 687, 404, 725, 1059, 1570, 723, 900, 405, 440, 322, 487, 1084, 317, 209, 734, 709, 40, 360, 172, 173, 43, 1343, 735, 1215, 112, 701, 747, 746, 174, 44, 45, 1097, 87, 1345, 1098, 114, 1099, 44, 45, 746, -14, 108, 1100, 1413, 946, 1022, 64, 748, 51, 51, 51, 112, 798, 139, 451, 1353, 836, 710, 74, 1389, 1390, 746, 800, 1436, 44, 45, 599, 522, 1140, 746, 811, 1562, 522, 1266, 1267, 522, 1269, 576, 1166, 114, 1571, 1579, 1273, 70, 859, 1276, 1568, 1580, 865, 51, 452, 51, -15, 51, 79, 453, 858, 226, 227, 108, 628, 209, 233, 1230, 1231, 114, 174, 763, 764, 803, 605, 243, 324, 410, 236, 59, 418, 665, 410, 887, 78, 479, 324, 410, 51, 889, 1545, 818, 324, 602, 174, 1165, 1167, 1169, 174, 547, 901, 526, 114, 341, -442, 527, 528, 529, 834, 1100, -547, 669, 913, 112, 918, 139, 140, 670, 718, 897, 1277, 1278, 1279, 925, 160, 927, 44, 45, 930, 530, 1048, 531, 211, 532, 1288, 71, 191, 59, 512, 214, 932, 108, 224, 900, 765, 766, 771, 772, 624, 933, 934, 935, 727, 943, 936, 953, 226, 728, 74, 114, 803, 954, 955, 709, 203, 3, 4, 5, 6, 7, 8, 9, 969, 605, 970, 971, 10, 11, 12, 13, 14, 15, 16, 972, 1022, 52, 115, 40, 64, 172, 173, 43, 973, 112, 79, 139, 140, 341, 341, 884, 44, 45, 87, 51, 974, 975, 44, 45, 891, -430, 37, -429, 893, 1057, 1039, 59, 87, 998, 160, 1059, 78, 1041, 1395, 52, 1045, 70, 371, 593, 1069, 593, 373, 146, 1070, 1071, 1362, 440, 114, 52, 114, 114, 1082, 1072, 897, 1100, 1080, 1100, 1100, 1090, 1094, 182, 938, 1120, 206, 1144, 160, 52, 1058, 360, 1145, 10, 11, 12, 13, 14, 15, 16, 900, 593, 1084, 593, 1146, 71, 40, 605, 172, 173, 43, 1417, 160, 568, 1159, 410, 1147, 1160, 1162, 44, 45, 48, 49, 1163, 442, 1171, 115, 37, 1175, 1022, 1178, -9, -3, -465, 115, 495, 746, 257, 262, 51, 1338, -11, 1410, -3, 129, 375, 130, 131, 132, 1351, 1184, 1182, 1190, 108, 114, 1211, 322, 44, 45, 1052, 1221, 1100, 1213, 58, 301, 146, 1216, 1222, 396, 1082, 74, 1225, 1232, 115, 338, 1236, 397, 206, 1238, 398, 1022, 399, 1240, 1022, 1268, 360, 400, 1241, 174, 401, 108, 402, 1242, 1452, 836, 1243, 909, 1084, 602, 1246, 182, 182, 1244, 1253, 48, 49, 79, 174, 216, 1262, 1263, 51, 51, 1508, 87, 114, 114, 257, 1271, 1290, 174, 1083, 1100, 1100, 1272, 52, 1274, 59, 1275, 373, 1297, 1022, 78, 1283, 1298, 1299, 1022, 206, 112, 1305, 139, 451, 1058, 108, 1194, 698, 1058, 1311, 360, 1047, 1313, 44, 45, 404, 40, 1314, 172, 173, 43, 405, 74, 52, 1315, 1318, 59, 1022, 1452, 44, 45, 262, 1452, 1452, 1082, 1323, 262, 257, 257, 1325, 1331, 1332, 1333, 115, 669, 71, 1334, 108, 1344, 1341, 670, 1354, 1279, 1355, 1361, 1372, 1416, 1365, 79, 1366, 1541, 58, 1084, 148, 360, 360, 149, 341, 341, 150, 301, 373, 141, 1383, 1351, 1384, 51, -431, 114, 59, 360, 1351, 301, 1557, 78, 1510, 108, 1557, 1025, 203, 3, 4, 5, 6, 7, 8, 9, 1022, 569, 1387, 1398, 1403, 1022, 1405, 146, 1407, 51, 51, 1408, 159, 1409, 1574, 87, 1478, 115, 1478, 1418, 1427, 1422, 338, 1423, 59, 1424, 604, 623, 1022, 1425, 1022, 360, 1336, 1432, 1022, 1172, 1441, 1022, 71, 51, 1443, 372, 1445, 1447, 1351, 1459, 1437, 1481, 633, 1439, 1022, 1449, 633, 108, 1022, 1450, 1478, 1058, 1478, 1456, 1470, 1483, 59, 59, 1485, 267, 1487, 412, 220, 1490, 1492, 108, 114, 317, 420, 1493, 210, 1494, 108, 1575, 1501, 1517, 1519, 114, 1522, 229, 1526, 182, 74, 1523, 1582, -300, 1535, 1533, 174, 74, 1537, 341, 1540, 1542, 10, 11, 12, 13, 14, 15, 16, 257, 1548, 301, 301, 1555, 59, 257, 1556, 633, 1559, 1560, 209, 1577, 1578, 1177, 1581, 773, 79, 774, 698, 59, 210, 775, 1161, 79, 776, 1096, 37, 777, 301, 1289, 108, 1496, 412, 165, 58, 170, 1402, 59, 176, 177, 178, 1563, 78, 1357, 59, 257, 1521, 74, 1561, 78, 1473, 1058, 1183, 1192, 257, 230, 633, 919, 52, 210, 440, 1050, 1371, 715, 1205, 921, 454, -301, 239, 240, 1093, 1083, 115, 1078, 212, 997, 10, 11, 12, 13, 14, 15, 16, 79, 301, 87, 115, 864, 915, 301, 574, 301, 301, 71, 1306, 1077, 0, 492, 712, 578, 71, 338, 581, 781, 59, 928, 782, 360, 783, 78, 37, 0, 950, 0, 0, 0, 0, 0, 0, 210, 0, 698, 0, 0, 58, 174, 212, 0, 174, 174, 174, 698, 698, 0, 0, 40, 0, 179, 180, 43, 0, 0, 0, 698, 569, 569, 0, 0, 44, 45, 885, 210, 301, 0, 0, 0, 210, 0, 0, 0, 71, 407, 0, 633, 338, 212, 1083, 623, 412, 0, 211, 0, 420, 0, 601, 87, 602, 604, 0, 0, 604, 0, 48, 49, 0, 0, 0, 0, 0, 991, 0, 0, 0, 1356, 0, 0, 603, 1025, 0, 633, 0, 360, 360, 0, 207, 217, 0, 0, 0, 633, 650, 623, 0, 0, 0, 633, 0, 0, 633, 633, 211, 0, 0, 0, 0, 212, 40, 0, 179, 180, 43, 0, 0, 0, 633, 0, 257, 0, 0, 44, 45, 0, 455, 0, 210, 0, 0, 257, 0, 0, 412, 0, 0, 952, 439, 0, 477, 212, 0, 0, 0, 0, 212, 957, 958, 181, 0, 115, 0, 1083, 0, 0, 0, 48, 49, 968, 0, 0, 0, 0, 0, 0, 633, 910, 623, 1107, 0, 58, 0, 0, 715, 715, 0, 40, 58, 172, 173, 43, 0, 0, 174, 0, 0, 0, 0, 0, 44, 45, 1364, 0, 0, 322, 0, 0, 0, 589, 0, 600, 0, 0, 338, 720, 698, 698, 0, 0, 729, 0, 0, 0, 0, 210, 0, 991, 631, 632, 0, 0, 87, 112, 1168, 574, 574, 0, 0, 87, 1097, 210, 0, 1098, 212, 1099, 44, 45, 58, 1474, 0, 1479, 0, 1388, 569, 40, 1396, 179, 180, 43, 0, 0, 0, 0, 633, 210, 963, 0, 44, 45, 0, 604, 0, 0, 1228, 0, 0, 698, 698, 40, 919, 179, 180, 43, 604, 0, 0, 0, 0, 1512, 0, 1514, 44, 45, 1051, 0, 410, 0, 0, 87, 112, 0, 48, 49, 1434, 174, 0, 1097, 0, 1438, 1098, 792, 1099, 44, 45, 1052, 0, 0, 1051, 0, 410, 1303, 0, 0, 0, 0, 48, 49, 0, 875, 0, 212, 0, 879, 0, 0, 301, 0, 1462, 0, 112, 1319, 0, 1553, 0, 1554, 0, 1097, 1138, 1139, 1098, 0, 1099, 44, 45, 839, 174, 0, 0, 174, 338, 0, 0, 1566, 1567, 115, 0, 1053, 0, 360, 360, 212, 0, 857, 0, 0, 919, 919, 0, 910, 910, 1321, 0, 0, 715, 0, 210, 174, 0, 0, 0, 0, 0, 0, 115, 301, 0, 0, 0, 0, 40, 338, 179, 180, 43, 0, 0, 174, 0, 1186, 1187, 0, 174, 44, 45, 0, 0, 0, 0, 0, 0, 210, 0, 10, 11, 12, 13, 14, 15, 16, 210, 0, 0, 338, 0, 0, 1546, 0, 0, 256, 0, 174, 1546, 0, 0, 1304, 917, 48, 49, 0, 492, 574, 0, 0, 633, 633, 0, 37, 1546, 0, 0, 0, 1546, 0, 0, 40, 0, 179, 180, 43, 0, 0, 301, 0, 698, 0, 0, 0, 44, 45, 0, 0, 698, 698, 698, 0, 0, 40, 210, 179, 180, 43, 212, 0, 0, 0, 360, 0, 210, 0, 44, 45, 0, 210, 1506, 0, 410, 0, 0, 0, 0, 174, 48, 49, 0, 0, 174, 0, 0, 1053, 0, 1053, 0, 1053, 0, 0, 601, 212, 602, 0, 0, 455, 0, 0, 48, 49, 212, 0, 115, 174, 0, 174, 0, 0, 910, 174, 0, 0, 174, 0, 0, 0, 0, 0, 257, 0, 0, 0, 0, 0, 0, 174, 0, 0, 0, 174, 902, 0, 903, 0, 0, 0, 0, 0, 0, 0, 906, 907, 0, 0, 0, 912, 0, 0, 650, 338, 0, 0, 0, 0, 1001, 210, 0, 0, 212, 0, 0, 0, 922, 0, 0, 0, 0, 926, 212, 0, 1324, 0, 0, 212, 0, 0, 0, 0, 1326, 1327, 1328, 919, 0, -302, 1111, 0, 600, 0, 0, 1067, 0, 0, 10, 11, 12, 13, 14, 15, 16, 0, 1124, 0, 0, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 698, 301, 203, 3, 4, 5, 6, 7, 8, 9, 0, 0, 115, 37, 650, 0, 0, 0, 0, 0, 1053, 0, 0, 0, 37, 0, 0, 0, 0, 0, 919, 0, 0, 633, 0, 0, 0, 225, 115, 0, 0, 0, 919, 919, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 40, 0, 179, 180, 43, 0, 0, 0, 0, 0, 0, 0, 919, 44, 45, 0, 0, 986, 0, 987, 988, 989, 412, 0, 0, 633, 633, 0, 10, 11, 12, 13, 14, 15, 16, 0, 0, 301, 1040, 1051, 0, 410, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 0, 1046, 0, 0, 0, 210, 0, 0, 1001, 37, 0, 0, 0, 0, 0, 1053, 0, 0, 0, 0, 0, 0, 0, 0, 1073, 1457, 115, 0, 0, 0, 0, 919, 0, 0, 1208, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 0, 0, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 1095, 0, 0, 0, 0, 1105, 262, 115, 0, 0, 1108, 545, 0, 0, 0, 1113, 1114, 0, 0, 0, 1116, 0, 1117, 1118, 37, 0, 1121, 0, 0, 0, 257, 0, 0, 276, 277, 1136, 278, 0, 0, 0, 0, 633, 0, 0, 0, 0, 0, 412, 0, 0, 0, 1150, 1151, 212, 40, 0, 262, 0, 43, 67, 119, 0, 279, 0, 0, 280, 1265, 44, 45, 281, 0, 115, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 1179, 0, 0, 1181, 0, 0, 115, 0, 0, 0, 46, 0, 0, 115, 67, 115, 0, 115, 48, 49, 0, 289, 0, 378, 0, 0, 0, 0, 158, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 0, 0, 0, 778, 0, 0, 0, 218, 0, 0, 1507, 262, 0, 0, 0, 0, 115, 1214, 115, 0, 0, 0, 0, 1218, 1219, 0, 0, 0, 1369, 0, 0, 0, 1226, 0, 115, 0, 0, 1233, 0, 0, 1507, 1507, 1237, 0, 250, 0, 0, 10, 11, 12, 13, 14, 15, 16, 0, 1245, 0, 301, 0, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 1507, 1252, 0, 1254, 1255, 1256, 1257, 0, 0, 0, 0, 37, 0, 323, 0, 0, 0, 0, 1264, 0, 1150, 250, 343, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 179, 180, 43, 0, 0, 0, 403, 0, 0, 1293, 1294, 44, 45, 0, 40, 0, 179, 180, 43, 0, 0, 0, 423, 0, 0, 428, 430, 44, 45, 0, 158, 0, 0, 0, 0, 0, 0, 1506, 0, 410, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 446, 0, 181, 0, 449, 0, 450, 0, 0, 456, 48, 49, 75, 0, 0, 67, 0, 0, 0, 0, 470, 0, 1329, 1330, 0, 0, 0, 0, 0, 0, 478, 0, 1340, 0, 0, 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, 210, 0, 0, 0, 0, 75, 203, 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, 0, 219, 335, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 0, 210, 1379, 0, 1380, 1381, 1382, 0, 0, 0, 0, 0, 250, 0, 0, 0, 1386, 591, 0, 0, 0, 0, 0, 626, 1397, 0, 0, 170, 0, 0, 0, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 635, 0, 0, 0, 635, 0, 0, 0, 0, 0, 0, 1419, 0, 0, 212, 0, 0, 10, 11, 12, 13, 14, 15, 16, 0, 0, -427, 684, 0, 0, 347, 0, 0, 48, 49, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 470, 0, 1460, 1461, 0, 0, 0, 0, 0, 0, 0, 212, 0, 0, 343, 1466, 0, 0, 0, 470, 0, 0, 1466, 0, 0, 0, 0, 470, 40, 0, 179, 180, 43, 0, 0, 0, 0, 0, 0, 1491, 0, 44, 45, 0, 693, 0, 0, 430, 0, 447, 0, 0, 0, 0, 703, 0, 0, 1505, 0, 0, 0, 0, 1511, 708, 75, 67, 0, 256, 0, 75, 0, 0, 0, 0, 0, 48, 49, 430, 0, 0, 0, 430, 0, 0, 0, 0, 0, 0, 212, 0, 0, 0, 0, 0, 0, 1538, 0, 1539, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, 0, 0, 0, 0, 80, 0, 0, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1564, 1565, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1572, 1573, 37, 80, 784, 0, 0, 0, 0, 0, 0, 0, 592, 0, 0, 0, 0, 0, 219, 0, 0, 0, 635, 796, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 221, 43, 0, 592, 814, 0, 0, 592, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 591, 0, 0, 0, 0, 838, 0, 0, 0, 0, 591, 0, 0, 714, 0, 0, 635, 0, 0, 343, 343, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 0, 0, 0, 0, 75, 0, 693, 0, 0, 0, 0, 0, 75, 0, 351, 0, 0, 470, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 0, 470, 0, 0, 0, 343, 0, 0, 0, 219, 0, 0, 0, 0, 914, 0, 0, 430, 347, 0, 75, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 708, 0, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 347, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 80, 0, 0, 693, 0, 0, 0, 0, 0, 112, 0, 41, 42, 693, 693, 0, 0, 635, 0, 0, 966, 0, 44, 45, 0, 693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592, 347, 0, 0, 202, 203, 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, 0, 592, 32, 33, 34, 67, 0, 594, 0, 0, 0, 592, 37, 221, 0, 0, 0, 592, 0, 0, 347, 347, 0, 0, 0, 0, 0, 0, 0, 796, 0, 0, 0, 594, 0, 0, 347, 594, 0, 0, 0, 0, 0, 0, 204, 42, 0, 0, 0, 1074, 0, 0, 0, 0, 0, 347, 0, 0, 0, 0, 0, 0, 430, 119, 0, 0, 75, 0, 0, 0, 708, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 205, 347, 0, 80, 0, 0, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 0, 591, 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 80, 0, 428, 0, 0, 0, 0, 693, 693, 347, 343, 343, 0, 0, 0, 0, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 67, 0, 0, 0, 0, 0, 0, 0, 351, 0, 80, 0, 0, 0, 0, 0, 0, 347, 0, 0, 0, 0, 88, 0, 0, 0, 0, 347, 347, 0, 0, 592, 0, 0, 219, 0, 0, 0, 0, 347, 693, 693, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1199, 0, 351, 0, 0, 0, 0, -542, 0, 88, 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, 222, 0, 32, 33, 34, 35, 0, 0, 0, 36, 0, 75, 37, 38, 0, 0, 0, 0, 0, 0, 0, 708, 0, 594, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 0, 39, 0, 0, 0, 0, 40, 0, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 594, 0, 0, 0, 0, 0, 594, 347, 0, 351, 351, 0, 46, 0, 47, 0, 363, 67, 0, 0, 48, 49, 0, 0, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592, 0, 0, 0, 0, 351, 0, 0, 693, 0, 708, 0, 0, 0, 0, 119, 80, 0, 347, 347, 0, 347, 347, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 351, 0, 0, 693, 0, 75, 0, 0, 0, 0, 0, 693, 693, 693, 0, 0, 0, 0, 0, 0, 0, 0, 343, 343, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 1350, 88, 0, 0, 351, 0, 0, 0, 0, 0, 0, 347, 347, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 351, 0, 119, 0, 0, 0, 0, 37, 0, 0, 351, 351, 0, 0, 594, 0, 0, 221, 0, 0, 0, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 42, 1400, 0, 0, 347, 0, 0, 0, 0, 0, 0, 0, 595, 0, 0, 0, 0, 0, 222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, 0, 0, 595, 0, 0, 0, 595, 0, 48, 49, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 693, 119, 0, 0, 0, 75, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1350, 0, 0, 0, 0, 0, 0, 1350, 88, 1477, 0, 1477, 0, 0, 0, 0, 347, 0, 347, 0, 0, 0, 363, 0, 0, 0, 0, 88, 351, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 0, 0, 0, 1477, 0, 1477, 363, 347, 347, 347, 0, 0, 0, 0, 594, 0, 222, 0, 347, 347, 0, 1350, 0, 0, 0, 363, 0, 88, 1536, 0, 75, 0, 351, 351, 0, 351, 351, 0, 0, 0, 0, 0, 0, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 351, 351, 32, 33, 34, 0, 0, 0, 509, 0, 511, 514, 37, 163, 0, 0, 0, 263, 219, 517, 518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 511, 511, 0, 0, 0, 0, 595, 363, 0, 0, 163, 41, 42, 0, 0, 0, 0, 0, 0, 347, 369, 0, 0, 374, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 511, 0, 0, 351, 0, 595, 0, 0, 0, 0, 0, 347, 0, 248, 0, 595, 0, 0, 0, 48, 49, 595, 0, 0, 363, 363, 0, 0, 0, 0, 75, 0, 0, 0, 163, 0, 0, 75, 0, 592, 363, 592, 511, 0, 0, 0, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 592, 0, 592, 0, 374, 88, 0, 0, 0, 363, 0, 163, 0, 0, 0, 0, 0, 0, 75, 351, 0, 351, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524, 0, 0, 0, 0, 0, 0, 0, 0, 363, 351, 0, 163, 0, 0, 0, 0, 0, 351, 351, 351, 0, 208, 0, 0, 0, 0, 0, 0, 351, 351, 228, 0, 232, 0, 234, 0, 0, 0, 0, 0, 80, 0, 237, 0, 363, 0, 0, 0, 598, 0, 0, 0, 0, 625, 363, 363, 0, 0, 595, 0, 0, 222, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 208, 0, 232, 234, 237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 511, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 221, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 0, 163, 163, 0, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 351, 0, 0, 0, 0, 0, 0, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 232, 234, 237, 0, 0, 0, 0, 0, 0, 0, 351, 0, 0, 0, 0, 0, 711, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 80, 208, 0, 163, 0, 0, 208, 80, 0, 594, 0, 594, 0, 0, 0, 524, 0, 524, 0, 0, 524, 0, 163, 524, 595, 0, 0, 0, 0, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 0, 363, 363, 0, 0, 594, 0, 594, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 511, 0, 0, 80, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 163, 0, 0, 0, 0, 0, 511, 0, 0, 0, 0, 208, 369, 0, 0, 799, 0, 629, 0, 234, 363, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 0, 0, 0, 0, 511, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598, 0, 0, 0, 0, 0, 0, 0, 0, 369, 369, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 363, 0, 0, 208, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 524, 0, 208, 208, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 369, 0, 911, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 0, 0, 0, 276, 277, 0, 278, 0, 0, 711, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 0, 363, 279, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 511, 287, 288, 0, 0, 0, 0, 0, 363, 0, 0, 625, 511, 0, 0, 0, 363, 363, 363, 0, 0, 0, 0, 0, 289, 0, 378, 363, 363, 379, 0, 0, 48, 49, 291, 292, 293, 294, 0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 511, 629, 234, 237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 629, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 511, 0, 0, 0, 369, 0, 0, 0, 0, 524, 0, 0, 0, 0, 0, 0, 242, 0, 0, 222, 0, 0, 0, 0, 0, 0, 247, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 0, 0, 0, 0, 0, 711, 0, 0, 0, 0, 0, 208, 0, 363, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 333, 364, 0, 0, 0, 598, 0, 0, 0, 0, 363, 0, 0, 0, 0, 0, 0, 0, 0, 0, 385, 0, 0, 0, 511, 511, 369, 369, 0, 88, 0, 0, 413, 0, 0, 0, 88, 0, 595, 413, 595, 0, 417, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431, 0, 0, 0, 0, 0, 0, 0, 0, 436, 0, 0, 0, 0, 208, 0, 0, 0, 0, 444, 0, 0, 595, 0, 595, 0, 208, 0, 0, 0, 0, 276, 277, 0, 278, 0, 0, 0, 461, 0, 88, 0, 0, 472, 208, 0, 0, 0, 0, 413, 0, 0, 0, 0, 524, 0, 480, 0, 0, 0, 279, 0, 0, 280, 494, 0, 498, 281, 208, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 711, 289, 0, 378, 0, 0, 413, 0, 749, 48, 49, 291, 292, 293, 294, 413, 579, 0, 413, 582, 0, 0, 0, 0, 0, 583, 0, 364, 0, 0, 588, 615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639, 0, 0, 0, 0, 0, 0, 0, 642, 0, 0, 0, 643, 644, 0, 645, 0, 0, 0, 524, 0, 0, 656, 657, 0, 658, 659, 413, 660, 0, 661, 413, 0, 0, 0, 0, 0, 0, 208, 0, 711, 0, 0, 0, 0, 0, 0, 583, 0, 208, 0, 511, 0, 0, 0, 677, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 688, 0, 0, 0, 0, 0, 0, 369, 369, 0, 0, 0, 276, 277, 0, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 702, 0, 0, 0, 0, 413, 0, 706, 364, 511, 0, 0, 461, 0, 0, 0, 279, 0, 0, 280, 0, 511, 511, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 208, 0, 0, 511, 0, 0, 0, 0, 0, 0, 744, 364, 0, 0, 0, 0, 289, 0, 378, 0, 0, 938, 755, 0, 48, 49, 291, 292, 293, 294, 0, 0, 215, 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, 780, 0, 0, 0, 0, 0, 0, 0, 369, 790, 0, 0, 791, 0, 794, 364, 511, 0, 0, 0, 0, 0, 0, 215, 0, 0, 0, 0, 615, 0, 0, 615, 615, 0, 812, 0, 0, 0, 615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 833, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 353, 364, 0, 0, 0, 0, 524, 208, 524, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 855, 0, 0, 0, 276, 277, 364, 278, 0, 0, 413, 876, 0, 0, 413, 880, 0, 0, 0, 0, 0, 374, 0, 883, 0, 0, 524, 0, 524, 0, 0, 0, 0, 279, 0, 0, 280, 890, 0, 0, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 364, 615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 0, 163, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 923, 924, 0, 48, 49, 291, 292, 293, 294, 0, 931, 0, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 944, 0, 0, 0, 0, 948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 0, 413, 0, 0, 0, 0, 0, 208, 0, 0, 381, 381, 0, 0, 0, 0, 0, 0, 615, 0, 615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 615, 353, 0, 0, 0, 0, 353, 353, 0, 981, 0, 0, 0, 0, 0, 0, 982, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 353, 0, 0, 0, 353, 984, 0, 985, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 995, 0, 0, 0, 0, 0, 999, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1042, 0, 0, 476, 1043, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 615, 615, 0, 0, 0, 0, 0, 0, 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 1112, 0, 0, 353, 0, 0, 0, 0, 0, 364, 0, 0, 1115, 0, 0, 413, 1125, 0, 615, 615, 1132, 0, 208, 0, 0, 0, 0, 0, 0, 0, 364, 364, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 381, 0, 0, 354, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1180, 335, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 413, 0, 413, 0, 413, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 353, 353, 0, 0, 353, 0, 0, 0, 0, 0, 615, 1210, 204, 42, 0, 315, 1212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1217, 0, 0, 0, 0, 0, 0, 0, 0, 705, 353, 0, 0, 353, 0, 0, 0, 0, 0, 0, 353, 0, 353, 0, 1239, 364, 353, 0, 0, 353, 353, 48, 49, 0, 0, 0, 0, 1247, 0, 0, 0, 1248, 0, 0, 1249, 353, 0, 0, 0, 0, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 1258, 1259, 750, 0, 353, 0, 0, 741, 0, 0, 741, 0, 0, 0, 0, 0, 0, 0, 1270, 0, 353, 0, 0, 759, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 353, 0, 0, 0, 0, 0, 0, 354, 0, 413, 0, 0, 354, 354, 413, 0, 0, 0, 788, 0, 0, 0, 0, 0, 0, 339, 0, 364, 0, 0, 750, 0, 0, 354, 0, 0, 353, 354, 0, 0, 0, 0, 0, 0, 0, 813, 0, 0, 1316, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 364, 364, 0, 0, 0, 0, 0, 0, 0, 353, 353, 126, 0, 353, 854, 353, 353, 0, 0, 0, 0, 353, 381, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 1370, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1373, 0, 1374, 354, 0, 0, 0, 0, 0, 235, 0, 0, 1377, 0, 1378, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 245, 0, 246, 0, 1385, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1404, 1406, 741, 0, 0, 0, 0, 0, 353, 0, 0, 0, 750, 1414, 937, 0, 0, 940, 1415, 0, 354, 1217, 0, 947, 0, 0, 364, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1433, 0, 0, 0, 128, 0, 0, 0, 0, 0, 1440, 0, 353, 1442, 0, 1444, 1446, 1448, 0, 0, 0, 0, 0, 0, 0, 0, 0, 964, 965, 414, 415, 0, 0, 0, 419, 0, 421, 422, 0, 0, 0, 0, 0, 339, 353, 354, 354, 353, 0, 354, 0, 0, 0, 0, 0, 1482, 128, 1484, 0, 0, 0, 0, 353, 353, 0, 353, 353, 1217, 0, 0, 0, 0, 128, 0, 128, 0, 0, 1500, 0, 0, 413, 354, 0, 0, 354, 0, 993, 0, 0, 0, 381, 354, 0, 354, 0, 0, 0, 354, 0, 268, 354, 354, 0, 0, 0, 0, 0, 0, 0, 0, 413, 413, 0, 0, 0, 0, 354, 0, 0, 0, 0, 339, 0, 353, 353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 413, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 315, 0, 128, 0, 128, 128, 339, 0, 354, 128, 354, 128, 128, 381, 0, 0, 0, 355, 940, 0, 586, 741, 355, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 630, 353, 1119, 0, 355, 0, 0, 354, 355, 0, 0, 0, 0, 1137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 0, 1154, 128, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 940, 940, 671, 354, 354, 0, 0, 354, 0, 354, 354, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 1185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 353, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 276, 277, 355, 278, 0, 0, 0, 353, 0, 0, 0, 0, 940, 128, 0, 353, 353, 353, 0, 0, 0, 0, 0, 0, 0, 0, 353, 353, 0, 279, 0, 0, 280, 854, 0, 354, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 355, 287, 288, 0, 1250, 1251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 508, 0, 378, 0, 0, 354, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 786, 787, 0, 0, 0, 0, 0, 0, 354, 355, 355, 354, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 354, 0, 354, 354, 0, 0, 819, 0, 0, 822, 823, 0, 826, 0, 828, 829, 0, 0, 355, 831, 832, 355, 0, 0, 0, 0, 353, 0, 355, 0, 355, 0, 0, 0, 355, 0, 0, 355, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 353, 0, 0, 0, 0, 354, 354, 0, 874, 0, 0, 0, 878, 0, 0, 0, 0, 355, 0, 0, 1360, 0, 0, 0, 741, 0, 0, 0, 353, 0, 353, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 355, 128, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 0, 0, 0, 353, 0, 353, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 128, 0, 355, 128, 128, 0, 128, 0, 128, 128, 0, 0, 0, 128, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 976, 0, 0, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 355, 0, 0, 355, 0, 355, 355, 0, 128, 0, 0, 355, 128, 0, 276, 277, 37, 278, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, -307, 0, 354, 279, 354, 0, 280, 0, 0, 0, 281, 0, 37, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, 0, 354, 354, 354, 0, 0, 0, 289, 0, 378, -307, 0, 354, 354, 0, 337, 49, 291, 292, 293, 294, 355, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, -308, 0, 0, 315, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 355, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 1110, 32, 33, 34, 355, -308, 0, 355, 0, 0, 0, 37, 0, 0, 0, 0, 1123, 0, 0, 1127, 1130, 0, 355, 355, 0, 355, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 41, 42, 43, 0, 0, 0, 354, 0, 0, 0, 0, 44, 45, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 354, 0, 46, 0, 47, 355, 355, 0, 0, 0, 48, 49, 37, 0, 1189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 354, 0, 1206, 1207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 0, 0, 0, 354, 128, 354, 0, 128, 128, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 35, 0, 0, 0, 36, 0, 128, 37, 38, 0, 0, 0, 1291, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 128, 128, 0, 0, 0, 0, 0, 1301, 39, 0, 355, 0, 355, 40, 0, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 355, 355, 355, 0, 0, 46, 0, 47, 0, 0, 128, 355, 355, 48, 49, 0, 0, 0, 0, 1, 203, 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, 0, 0, 32, 33, 34, 35, 1368, 0, 0, 36, 276, 277, 37, 278, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 276, 277, 0, 278, 0, 0, 0, 0, 0, 0, 0, 279, 0, 128, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 279, 287, 288, 280, 0, 0, 0, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 289, 0, 290, 0, 0, 0, 0, 355, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 513, 0, 378, 0, 0, -134, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 355, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 0, 0, 0, 0, 0, 0, 0, 355, 0, 355, 1, 203, 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, 0, 355, 32, 33, 34, 35, 355, 0, 355, 36, 276, 277, 37, 1002, 1003, 0, 1004, 0, 0, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 0, 0, 0, 1013, 0, 0, 0, 1014, 1015, 0, 1016, 0, 279, 0, 0, 1017, 0, 1018, 1019, 1020, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 290, 0, 0, 169, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 1021, 0, 0, 0, 0, -134, 1, 203, 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, 0, 0, 32, 33, 34, 35, 0, 0, 0, 36, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 290, 0, 0, 0, 0, 0, 48, 49, 291, 292, 293, 294, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 336, 0, 0, 0, 0, 749, 337, 49, 291, 292, 293, 294, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 336, 0, 0, 0, 0, 749, 48, 49, 291, 292, 293, 294, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 336, 0, 0, 0, 0, 0, 337, 49, 291, 292, 293, 294, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 204, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 961, 0, 0, 0, 0, 0, 962, 49, 291, 292, 293, 294, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 204, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 1134, 287, 288, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 0, 0, 0, 0, 276, 277, 0, 278, 0, 0, 289, 0, 378, 0, 0, 0, 0, 0, 48, 49, 291, 292, 293, 294, 0, 276, 277, 37, 278, 0, 0, 0, 0, 279, 0, 0, 646, 0, 139, 140, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 279, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 289, 0, 647, 0, 648, 379, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 0, 0, 0, 1135, 49, 291, 292, 293, 294, 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, 0, 0, 32, 33, 34, 35, 0, 0, 0, 36, 0, 0, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 40, 0, 41, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, 47, 0, 0, 0, -546, 0, 48, 49, 202, 203, 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, 0, 0, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 40, 0, 204, 42, 43, 37, 0, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 46, 0, 205, 0, 0, 0, 0, 0, 48, 49, 1, 203, 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, -307, 0, 32, 33, 34, 35, 0, 0, 0, 36, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, -307, 0, 0, 1, 203, 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, 0, 47, 32, 33, 34, 35, 0, 48, 49, 36, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 203, 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, 0, 0, 32, 33, 34, 0, 0, 47, 0, 0, 0, 0, 37, 48, 49, 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, 40, 0, 204, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, 205, 0, 0, 0, 0, 0, 48, 49, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 483, 484, 485, 486, 41, 42, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1337, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 684, 0, 0, 0, 0, 0, 48, 49, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 335, 33, 34, 0, 0, 0, 0, 41, 42, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1339, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 684, 0, 0, 0, 0, 0, 48, 49, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 42, 203, 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, 0, 0, 335, 33, 34, 0, 0, 261, 0, 0, 0, 0, 37, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 203, 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, 0, 0, 32, 33, 34, 0, 0, 684, 0, 0, 0, 0, 37, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 42, 0, 0, 0, 0, 0, 464, 203, 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, 0, 205, 32, 33, 34, 0, 0, 48, 49, 0, 0, 0, 37, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 41, 42, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, -3, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 519, 0, 0, 169, 0, 0, 48, 49, 291, 292, 293, 294, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, -40, 290, 0, 0, 0, 0, 0, 48, 49, 291, 292, 293, 294, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 290, 0, 0, 0, 0, 0, 48, 49, 291, 292, 293, 294, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 336, 0, 0, 0, 0, 0, 48, 49, 291, 292, 293, 294, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 276, 277, 37, 278, 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, 279, 0, 0, 280, 0, 41, 42, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 0, 0, 0, 48, 49, 291, 292, 293, 294, 203, 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, 0, 0, 335, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 0, 41, 42, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 204, 42, 43, -440, 0, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 0, 261, 0, 0, 0, 0, 0, 48, 49, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 112, 0, 41, 42, 0, 37, 895, 0, 0, 0, 0, 0, 0, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 47, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 737, 32, 33, 34, 896, 0, 48, 49, 0, 0, 0, 37, 895, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 41, 42, 0, 0, 37, 895, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 41, 42, 0, 737, 37, 0, 0, 1209, 0, 48, 49, 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, 41, 42, 0, 737, 0, 0, 0, 1295, 0, 48, 49, 0, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 47, 32, 33, 34, 0, 0, 48, 49, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 0, 204, 42, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 335, 33, 34, 0, 0, 0, 0, 41, 42, 0, 37, 261, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 42, 0, 0, 331, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 248, 335, 33, 34, 0, 0, 48, 49, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 0, 41, 42, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 335, 33, 34, 0, 0, 0, 0, 41, 42, 0, 37, 331, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 42, 0, 0, 737, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 261, 335, 33, 34, 0, 0, 48, 49, 0, 0, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 335, 33, 34, 0, 0, 0, 0, 41, 42, 0, 37, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 0, 0, 32, 33, 34, 0, 0, 0, 0, 41, 42, 0, 37, 684, 0, 0, 0, 0, 0, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 42, 0, 0, 737, 0, 0, 0, 0, 0, 48, 49, 203, 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, 0, 0, 335, 33, 34, 0, 0, 276, 277, 0, 278, 1003, 37, 1004, 0, 0, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 0, 0, 1530, 1013, 0, 0, 0, 1014, 1015, 0, 1016, 0, 279, 0, 0, 1017, 0, 172, 173, 1020, 41, 42, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 169, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 276, 277, 1021, 278, 1003, 0, 1004, -134, 0, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 0, 0, 0, 1013, 0, 0, 0, 1014, 1015, 0, 1016, 0, 279, 0, 0, 1017, 0, 172, 173, 1020, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 169, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 1021, 0, 0, 276, 277, -134, 278, 1003, 0, 1004, 1389, 1390, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 0, 0, 1530, 1013, 0, 0, 0, 1014, 1015, 0, 1016, 0, 279, 0, 0, 1017, 0, 172, 173, 1020, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 169, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 276, 277, 1021, 278, 1003, 0, 1004, 1389, 1390, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 0, 0, 0, 1013, 0, 0, 0, 1014, 1015, 0, 1016, 0, 279, 0, 0, 1017, 0, 172, 173, 1020, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 169, 0, 0, 48, 49, 291, 292, 293, 294, 0, 0, 276, 277, 1021, 278, 1003, 0, 1004, 0, 0, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 0, 0, 0, 1013, 0, 0, 0, 1014, 1015, 0, 1016, 0, 279, 0, 0, 1017, 0, 172, 173, 1020, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 276, 277, 0, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 276, 277, 169, 278, 0, 48, 49, 291, 292, 293, 294, 279, 0, 0, 280, 1021, 0, 0, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 279, 287, 288, 280, 0, 0, 0, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 516, 0, 378, 276, 277, 0, 278, 0, 48, 49, 291, 292, 293, 294, 0, 0, 0, 0, 289, 0, 378, 0, 0, 0, 0, 0, 704, 49, 291, 292, 293, 294, 279, 0, 0, 280, 0, 0, 0, 281, 0, 0, 282, 283, 273, 284, 285, 286, 44, 45, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289, 0, 378, 0, 0, 0, 0, 0, 337, 49, 291, 292, 293, 294, 202, 203, 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, 0, 0, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 464, 203, 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, 204, 42, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 0, 203, 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, 41, 42, 335, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 0, 203, 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, 204, 42, 32, 33, 34, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 42 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-1376)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int16 yycheck[] = { 0, 1, 0, 46, 0, 181, 46, 201, 1, 46, 343, 1051, 1051, 181, 480, 452, 181, 118, 181, 216, 1, 533, 342, 181, 342, 569, 181, 652, 181, 166, 167, 984, 985, 866, 247, 35, 36, 601, 38, 1053, 38, 0, 38, 1051, 184, 604, 46, 494, 1, 623, 515, 498, 52, 985, 52, 417, 38, 866, 1312, 59, 46, 604, 601, 46, 64, 1389, 64, 67, 601, 67, 70, 1270, 70, 58, 436, 605, 1011, 901, 91, 38, 256, 611, 444, 70, 107, 46, 46, 144, 256, 70, 182, 256, 601, 256, 601, 46, 182, 198, 256, 52, 115, 256, 46, 256, 601, 85, 119, 46, 108, 643, 289, 111, 252, 253, 601, 1444, 364, 85, 118, 338, 368, 136, 34, 52, 658, 344, 126, 1502, 723, 118, 115, 154, 115, 71, 117, 0, 1, 117, 181, 115, 1464, 181, 59, 338, 181, 364, 146, 120, 146, 368, 948, 138, 0, 1482, 107, 1484, 117, 102, 158, 1534, 158, 1415, 115, 289, 1502, 257, 115, 487, 117, 1002, 82, 257, 706, 38, 1014, 1015, 115, 115, 117, 1098, 115, 181, 182, 128, 182, 1199, 115, 115, 0, 1527, 38, 108, 145, 1002, 111, 181, 1534, 995, 198, 425, 426, 154, 51, 52, 417, 70, 206, 714, 206, 0, 1, 101, 409, 256, 0, 215, 256, 714, 218, 256, 218, 181, 734, 436, 1048, 225, 38, 714, 51, 52, 181, 444, 115, 116, 1433, 235, 489, 801, 238, 115, 784, 1440, 242, 243, 242, 135, 242, 38, 122, 202, 243, 113, 38, 206, 1094, 814, 256, 257, 591, 257, 242, 137, 801, 263, 138, 0, 266, 3, 801, 46, 496, 814, 121, 803, 1393, 137, 67, 206, 744, 70, 1212, 102, 225, 242, 70, 480, 604, 46, 247, 515, 46, 115, 801, 626, 801, 238, 921, 120, 215, 425, 426, 1500, 635, 38, 801, 1258, 1259, 128, 122, 262, 333, 403, 265, 1232, 801, 1234, 1235, 403, 556, 557, 558, 559, 423, 323, 138, 323, 688, 1259, 429, 508, 3, 510, 67, 262, 513, 1270, 289, 516, 115, 587, 117, 341, 342, 51, 52, 909, 263, 1180, 301, 122, 576, 910, 122, 606, 116, 0, 115, 610, 117, 115, 693, 117, 0, 616, 155, 365, 136, 116, 587, 369, 909, 1180, 301, 122, 136, 708, 909, 242, 1497, 379, 333, 122, 508, 1502, 637, 0, 478, 513, 641, 963, 516, 639, 478, 38, 242, 137, 116, 138, 1485, 247, 115, 46, 1489, 403, 623, 403, 116, 52, 1527, 115, 278, 117, 120, 1348, 633, 1534, 136, 123, 124, 64, 639, 115, 67, 423, 341, 70, 136, 218, 623, 429, 242, 137, 1385, 301, 302, 247, 115, 1270, 633, 122, 122, 567, 972, 973, 134, 52, 115, 137, 365, 115, 46, 242, 369, 1385, 136, 138, 242, 1052, 417, 0, 1, 247, 1476, 796, 464, 931, 1506, 1506, 1093, 469, 338, 464, 425, 426, 115, 688, 923, 436, 478, 338, 478, 946, 482, 218, 482, 444, 482, 487, 925, 702, 490, 115, 67, 1507, 814, 495, 814, 38, 1506, 452, 122, 146, 1437, 46, 1439, 364, 85, 242, 115, 368, 0, 464, 380, 158, 136, 1074, 653, 76, 1316, 115, 46, 117, 1536, 482, 480, 116, 67, 527, 116, 70, 89, 90, 532, 117, 527, 119, 181, 182, 145, 532, 1057, 494, 1059, 496, 119, 498, 794, 116, 38, 744, 46, 46, 136, 1148, 1149, 508, 115, 510, 117, 660, 513, 206, 515, 516, 116, 122, 1501, 46, 46, 417, 671, 115, 115, 218, 117, 794, 57, 122, 797, 1377, 1378, 138, 122, 158, 837, 116, 586, 12, 436, 115, 122, 117, 116, 138, 914, 115, 444, 242, 138, 206, 1433, 601, 125, 126, 604, 417, 138, 1440, 343, 1467, 122, 256, 642, 643, 121, 1473, 673, 482, 99, 115, 115, 117, 117, 576, 436, 625, 138, 115, 658, 588, 630, 417, 444, 966, 482, 122, 115, 115, 117, 117, 431, 1499, 71, 218, 644, 115, 1504, 117, 648, 1115, 436, 76, 115, 78, 79, 262, 853, 657, 444, 659, 660, 661, 915, 96, 97, 118, 659, 1500, 661, 122, 482, 671, 122, 122, 122, 250, 706, 218, 323, 122, 255, 549, 550, 551, 115, 471, 642, 643, 138, 138, 138, 482, 94, 95, 301, 138, 482, 342, 131, 132, 700, 242, 658, 115, 138, 117, 76, 700, 625, 190, 80, 123, 124, 120, 714, 715, 138, 122, 116, 89, 90, 721, 859, 138, 122, 725, 118, 644, 587, 688, 122, 338, 213, 138, 525, 470, 931, 120, 691, 116, 657, 881, 223, 702, 963, 115, 1212, 482, 85, 116, 706, 115, 242, 123, 124, 122, 76, 247, 403, 76, 80, 116, 691, 80, 623, 718, 115, 122, 963, 89, 90, 123, 89, 90, 633, 116, 1288, 129, 130, 76, 639, 122, 976, 71, 59, 124, 74, 133, 744, 77, 134, 79, 89, 90, 1389, 115, 76, 588, 115, 87, 117, 801, 76, 123, 124, 897, 123, 124, 289, 89, 90, 897, 118, 118, 814, 89, 90, 122, 425, 426, 117, 76, 100, 78, 79, 76, 116, 78, 79, 80, 98, 99, 122, 108, 89, 90, 111, 482, 89, 90, 688, 117, 487, 117, 116, 452, 138, 1044, 118, 118, 122, 642, 643, 122, 702, 430, 1451, 116, 116, 859, 997, 115, 117, 122, 122, 865, 866, 658, 1463, 1464, 866, 121, 122, 87, 116, 1051, 688, 91, 92, 93, 748, 118, 116, 1051, 116, 122, 1051, 138, 1051, 496, 702, 626, 1487, 1051, 116, 470, 1051, 897, 1051, 116, 900, 115, 688, 117, 116, 119, 120, 866, 515, 76, 122, 78, 79, 116, 914, 706, 702, 115, 118, 117, 1115, 209, 89, 90, 116, 123, 124, 417, 116, 120, 122, 890, 932, 117, 122, 794, 116, 117, 938, 932, 215, 482, 895, 924, 944, 120, 436, 137, 948, 65, 66, 944, 122, 120, 444, 948, 601, 1049, 693, 604, 441, 1053, 120, 1049, 1559, 137, 895, 1053, 703, 576, 923, 924, 925, 708, 115, 931, 76, 155, 78, 79, 80, 116, 138, 1084, 76, 466, 116, 122, 263, 89, 90, 83, 482, 116, 86, 995, 88, 89, 90, 122, 136, 866, 995, 121, 122, 1005, 1002, 116, 1008, 1009, 1010, 76, 118, 78, 79, 116, 623, 1212, 866, 51, 52, 122, 118, 116, 89, 90, 633, 508, 984, 122, 118, 116, 513, 1159, 1160, 516, 1162, 122, 138, 1039, 116, 116, 1168, 1002, 122, 1171, 122, 122, 35, 1049, 115, 1051, 136, 1053, 866, 120, 136, 345, 346, 924, 348, 796, 350, 1099, 1100, 1065, 341, 552, 553, 714, 715, 115, 116, 117, 362, 866, 115, 116, 117, 116, 866, 115, 116, 117, 1084, 116, 1523, 115, 116, 117, 365, 1008, 1009, 1010, 369, 963, 120, 87, 1098, 890, 116, 91, 92, 93, 963, 1098, 121, 1199, 121, 76, 121, 78, 79, 1199, 122, 1068, 65, 66, 67, 115, 52, 116, 89, 90, 116, 115, 120, 117, 703, 119, 120, 866, 64, 924, 1002, 67, 122, 1002, 70, 1068, 554, 555, 560, 561, 1477, 116, 116, 116, 115, 122, 116, 116, 440, 120, 1002, 1155, 801, 116, 116, 1115, 4, 5, 6, 7, 8, 9, 10, 11, 116, 814, 116, 116, 12, 13, 14, 15, 16, 17, 18, 116, 1180, 0, 1, 76, 1180, 78, 79, 80, 116, 76, 1002, 78, 79, 984, 985, 676, 89, 90, 688, 1199, 116, 116, 89, 90, 685, 116, 46, 116, 689, 1301, 35, 1002, 702, 121, 146, 1301, 1002, 137, 1344, 38, 116, 1180, 115, 1442, 116, 1444, 158, 46, 122, 118, 1287, 966, 1232, 52, 1234, 1235, 1217, 118, 1191, 1232, 116, 1234, 1235, 116, 122, 64, 120, 116, 67, 116, 182, 70, 897, 431, 122, 12, 13, 14, 15, 16, 17, 18, 1191, 1482, 1217, 1484, 122, 1002, 76, 914, 78, 79, 80, 1374, 206, 115, 115, 117, 116, 115, 115, 89, 90, 123, 124, 115, 218, 115, 107, 46, 13, 1291, 138, 136, 138, 136, 115, 134, 122, 118, 119, 1301, 1258, 136, 1361, 121, 76, 115, 78, 79, 80, 1270, 116, 136, 116, 1180, 1316, 116, 925, 89, 90, 136, 120, 1316, 121, 866, 145, 146, 121, 116, 1506, 1312, 1180, 118, 122, 154, 155, 118, 1506, 158, 116, 1506, 1342, 1506, 116, 1345, 54, 525, 1506, 116, 625, 1506, 1217, 1506, 118, 1412, 963, 118, 115, 1312, 117, 116, 181, 182, 118, 118, 123, 124, 1180, 644, 1351, 118, 118, 1373, 1374, 1476, 866, 1377, 1378, 198, 138, 121, 657, 924, 1377, 1378, 138, 206, 138, 1180, 138, 323, 116, 1393, 1180, 138, 116, 116, 1398, 218, 76, 116, 78, 79, 1049, 1270, 1051, 461, 1053, 121, 588, 892, 121, 89, 90, 1507, 76, 118, 78, 79, 80, 1507, 1270, 242, 87, 118, 1217, 1427, 1485, 89, 90, 250, 1489, 1490, 1415, 118, 255, 256, 257, 118, 118, 118, 116, 262, 1536, 1180, 116, 1312, 115, 118, 1536, 115, 67, 115, 115, 120, 1373, 116, 1270, 116, 1517, 1002, 1415, 1506, 642, 643, 1506, 1258, 1259, 1506, 289, 403, 36, 118, 1433, 118, 1476, 116, 1478, 1270, 658, 1440, 301, 1540, 1270, 1478, 1351, 1544, 866, 4, 5, 6, 7, 8, 9, 10, 11, 1497, 317, 118, 116, 102, 1502, 102, 323, 115, 1506, 1507, 115, 1507, 138, 1568, 1002, 1442, 333, 1444, 121, 49, 116, 338, 116, 1312, 116, 342, 343, 1525, 116, 1527, 706, 122, 136, 1531, 1013, 116, 1534, 1270, 1536, 116, 1536, 102, 102, 1500, 118, 138, 116, 364, 138, 1547, 136, 368, 1415, 1551, 138, 1482, 1199, 1484, 138, 138, 116, 1350, 1351, 136, 126, 115, 186, 1351, 122, 121, 1433, 1569, 1523, 193, 118, 67, 118, 1440, 1569, 138, 118, 138, 1580, 116, 76, 121, 403, 1433, 115, 1580, 3, 116, 121, 866, 1440, 116, 1385, 136, 116, 12, 13, 14, 15, 16, 17, 18, 423, 138, 425, 426, 116, 1400, 429, 116, 431, 115, 138, 1350, 116, 138, 1021, 138, 562, 1433, 563, 677, 1415, 119, 564, 1005, 1440, 565, 943, 46, 566, 452, 1180, 1500, 1464, 259, 55, 1180, 57, 1353, 1433, 60, 61, 62, 1551, 1433, 1280, 1440, 469, 1490, 1500, 1544, 1440, 1440, 1301, 1039, 1049, 478, 77, 480, 723, 482, 158, 1400, 895, 1301, 487, 1059, 725, 235, 3, 90, 91, 938, 1217, 496, 917, 67, 859, 12, 13, 14, 15, 16, 17, 18, 1500, 508, 1180, 510, 654, 718, 513, 317, 515, 516, 1433, 1217, 916, -1, 266, 482, 326, 1440, 525, 329, 568, 1500, 733, 568, 890, 568, 1500, 46, -1, 778, -1, -1, -1, -1, -1, -1, 218, -1, 780, -1, -1, 1270, 1005, 119, -1, 1008, 1009, 1010, 790, 791, -1, -1, 76, -1, 78, 79, 80, -1, -1, -1, 802, 568, 569, -1, -1, 89, 90, 677, 250, 576, -1, -1, -1, 255, -1, -1, -1, 1500, 183, -1, 587, 588, 158, 1312, 591, 395, -1, 1350, -1, 399, -1, 115, 1270, 117, 601, -1, -1, 604, -1, 123, 124, -1, -1, -1, -1, -1, 855, -1, -1, -1, 1279, -1, -1, 137, 1180, -1, 623, -1, 984, 985, -1, 1350, 1351, -1, -1, -1, 633, 379, 635, -1, -1, -1, 639, -1, -1, 642, 643, 1400, -1, -1, -1, -1, 218, 76, -1, 78, 79, 80, -1, -1, -1, 658, -1, 660, -1, -1, 89, 90, -1, 235, -1, 343, -1, -1, 671, -1, -1, 477, -1, -1, 780, 1400, -1, 1506, 250, -1, -1, -1, -1, 255, 790, 791, 115, -1, 691, -1, 1415, -1, -1, -1, 123, 124, 802, -1, -1, -1, -1, -1, -1, 706, 707, 708, 951, -1, 1433, -1, -1, 714, 715, -1, 76, 1440, 78, 79, 80, -1, -1, 1180, -1, -1, -1, -1, -1, 89, 90, 1291, -1, -1, 1523, -1, -1, -1, 337, -1, 339, -1, -1, 744, 490, 981, 982, -1, -1, 495, -1, -1, -1, -1, 430, -1, 999, 356, 357, -1, -1, 1433, 76, 123, 568, 569, -1, -1, 1440, 83, 446, -1, 86, 343, 88, 89, 90, 1500, 1441, -1, 1443, -1, 1342, 784, 76, 1345, 78, 79, 80, -1, -1, -1, -1, 794, 470, 796, -1, 89, 90, -1, 801, -1, -1, 117, -1, -1, 1042, 1043, 76, 1052, 78, 79, 80, 814, -1, -1, -1, -1, 1481, -1, 1483, 89, 90, 115, -1, 117, -1, -1, 1500, 76, -1, 123, 124, 1393, 1291, -1, 83, -1, 1398, 86, 586, 88, 89, 90, 136, -1, -1, 115, -1, 117, 1210, -1, -1, -1, -1, 123, 124, -1, 662, -1, 430, -1, 666, -1, -1, 866, -1, 1427, -1, 76, 117, -1, 1535, -1, 1537, -1, 83, 981, 982, 86, -1, 88, 89, 90, 630, 1342, -1, -1, 1345, 890, -1, -1, 1555, 1556, 895, -1, 897, -1, 1258, 1259, 470, -1, 648, -1, -1, 1148, 1149, -1, 909, 910, 117, -1, -1, 914, -1, 591, 1373, -1, -1, -1, -1, -1, -1, 924, 925, -1, -1, -1, -1, 76, 931, 78, 79, 80, -1, -1, 1393, -1, 1042, 1043, -1, 1398, 89, 90, -1, -1, -1, -1, -1, -1, 626, -1, 12, 13, 14, 15, 16, 17, 18, 635, -1, -1, 963, -1, -1, 1525, -1, -1, 115, -1, 1427, 1531, -1, -1, 1210, 721, 123, 124, -1, 725, 784, -1, -1, 984, 985, -1, 46, 1547, -1, -1, -1, 1551, -1, -1, 76, -1, 78, 79, 80, -1, -1, 1002, -1, 1239, -1, -1, -1, 89, 90, -1, -1, 1247, 1248, 1249, -1, -1, 76, 693, 78, 79, 80, 591, -1, -1, -1, 1385, -1, 703, -1, 89, 90, -1, 708, 115, -1, 117, -1, -1, -1, -1, 1497, 123, 124, -1, -1, 1502, -1, -1, 1049, -1, 1051, -1, 1053, -1, -1, 115, 626, 117, -1, -1, 630, -1, -1, 123, 124, 635, -1, 1068, 1525, -1, 1527, -1, -1, 1074, 1531, -1, -1, 1534, -1, -1, -1, -1, -1, 1084, -1, -1, -1, -1, -1, -1, 1547, -1, -1, -1, 1551, 694, -1, 696, -1, -1, -1, -1, -1, -1, -1, 704, 705, -1, -1, -1, 709, -1, -1, 859, 1115, -1, -1, -1, -1, 865, 796, -1, -1, 693, -1, -1, -1, 726, -1, -1, -1, -1, 731, 703, -1, 1239, -1, -1, 708, -1, -1, -1, -1, 1247, 1248, 1249, 1389, -1, 3, 953, -1, 750, -1, -1, 900, -1, -1, 12, 13, 14, 15, 16, 17, 18, -1, 969, -1, -1, 12, 13, 14, 15, 16, 17, 18, -1, -1, -1, 1414, 1180, 4, 5, 6, 7, 8, 9, 10, 11, -1, -1, 1191, 46, 938, -1, -1, -1, -1, -1, 1199, -1, -1, -1, 46, -1, -1, -1, -1, -1, 1451, -1, -1, 1212, -1, -1, -1, 39, 1217, -1, -1, -1, 1463, 1464, -1, -1, -1, -1, 796, -1, -1, -1, -1, -1, 76, -1, 78, 79, 80, -1, -1, -1, -1, -1, -1, -1, 1487, 89, 90, -1, -1, 848, -1, 850, 851, 852, 1058, -1, -1, 1258, 1259, -1, 12, 13, 14, 15, 16, 17, 18, -1, -1, 1270, 869, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, -1, 885, -1, -1, -1, 966, -1, -1, 1039, 46, -1, -1, -1, -1, -1, 1301, -1, -1, -1, -1, -1, -1, -1, -1, 908, 1414, 1312, -1, -1, -1, -1, 1559, -1, -1, 1065, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, -1, -1, 12, 13, 14, 15, 16, 17, 18, -1, -1, -1, 942, -1, -1, -1, -1, 947, 1350, 1351, -1, -1, 952, 137, -1, -1, -1, 957, 958, -1, -1, -1, 962, -1, 964, 965, 46, -1, 968, -1, -1, -1, 1374, -1, -1, 44, 45, 977, 47, -1, -1, -1, -1, 1385, -1, -1, -1, -1, -1, 1194, -1, -1, -1, 993, 994, 966, 76, -1, 1400, -1, 80, 0, 1, -1, 73, -1, -1, 76, 1155, 89, 90, 80, -1, 1415, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, 1025, -1, -1, 1028, -1, -1, 1433, -1, -1, -1, 115, -1, -1, 1440, 38, 1442, -1, 1444, 123, 124, -1, 115, -1, 117, -1, -1, -1, -1, 52, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, -1, -1, -1, 136, -1, -1, -1, 70, -1, -1, 1476, 1477, -1, -1, -1, -1, 1482, 1081, 1484, -1, -1, -1, -1, 1087, 1088, -1, -1, -1, 1297, -1, -1, -1, 1096, -1, 1500, -1, -1, 1101, -1, -1, 1506, 1507, 1106, -1, 107, -1, -1, 12, 13, 14, 15, 16, 17, 18, -1, 1119, -1, 1523, -1, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 1536, 1135, -1, 1137, 1138, 1139, 1140, -1, -1, -1, -1, 46, -1, 146, -1, -1, -1, -1, 1152, -1, 1154, 154, 155, -1, -1, -1, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, 78, 79, 80, -1, -1, -1, 182, -1, -1, 1186, 1187, 89, 90, -1, 76, -1, 78, 79, 80, -1, -1, -1, 198, -1, -1, 201, 202, 89, 90, -1, 206, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, 227, -1, 115, -1, 231, -1, 233, -1, -1, 236, 123, 124, 0, -1, -1, 242, -1, -1, -1, -1, 247, -1, 1250, 1251, -1, -1, -1, -1, -1, -1, 257, -1, 1260, -1, -1, -1, -1, -1, 265, -1, -1, -1, -1, -1, -1, 1350, -1, -1, -1, -1, 38, 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, -1, 70, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, -1, 1400, 1324, -1, 1326, 1327, 1328, -1, -1, -1, -1, -1, 333, -1, -1, -1, 1338, 338, -1, -1, -1, -1, -1, 344, 1346, -1, -1, 1349, -1, -1, -1, 78, 79, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 364, -1, -1, -1, 368, -1, -1, -1, -1, -1, -1, 1376, -1, -1, 1350, -1, -1, 12, 13, 14, 15, 16, 17, 18, -1, -1, 116, 117, -1, -1, 155, -1, -1, 123, 124, 1477, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 46, -1, 417, -1, 1420, 1421, -1, -1, -1, -1, -1, -1, -1, 1400, -1, -1, 431, 1433, -1, -1, -1, 436, -1, -1, 1440, -1, -1, -1, -1, 444, 76, -1, 78, 79, 80, -1, -1, -1, -1, -1, -1, 1457, -1, 89, 90, -1, 461, -1, -1, 464, -1, 227, -1, -1, -1, -1, 471, -1, -1, 1475, -1, -1, -1, -1, 1480, 480, 242, 482, -1, 115, -1, 247, -1, -1, -1, -1, -1, 123, 124, 494, -1, -1, -1, 498, -1, -1, -1, -1, -1, -1, 1477, -1, -1, -1, -1, -1, -1, 1513, -1, 1515, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 525, -1, -1, -1, -1, 0, -1, -1, 12, 13, 14, 15, 16, 17, 18, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1553, 1554, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1566, 1567, 46, 38, 569, -1, -1, -1, -1, -1, -1, -1, 338, -1, -1, -1, -1, -1, 344, -1, -1, -1, 587, 588, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, -1, 70, 80, -1, 364, 604, -1, -1, 368, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 623, -1, -1, -1, -1, 628, -1, -1, -1, -1, 633, -1, -1, 115, -1, -1, 639, -1, -1, 642, 643, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 417, -1, 658, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 431, -1, -1, -1, -1, 436, -1, 677, -1, -1, -1, -1, -1, 444, -1, 155, -1, -1, 688, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 461, -1, 702, -1, -1, -1, 706, -1, -1, -1, 471, -1, -1, -1, -1, 715, -1, -1, 718, 480, -1, 482, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 744, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, -1, -1, -1, -1, -1, -1, -1, 525, -1, -1, -1, -1, -1, -1, -1, 242, -1, -1, -1, -1, 247, -1, -1, 780, -1, -1, -1, -1, -1, 76, -1, 78, 79, 790, 791, -1, -1, 794, -1, -1, 797, -1, 89, 90, -1, 802, -1, -1, -1, -1, -1, -1, -1, -1, -1, 812, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 587, 588, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 623, 36, 37, 38, 866, -1, 338, -1, -1, -1, 633, 46, 344, -1, -1, -1, 639, -1, -1, 642, 643, -1, -1, -1, -1, -1, -1, -1, 890, -1, -1, -1, 364, -1, -1, 658, 368, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, -1, 910, -1, -1, -1, -1, -1, 677, -1, -1, -1, -1, -1, -1, 923, 924, -1, -1, 688, -1, -1, -1, 931, -1, -1, -1, -1, -1, -1, -1, -1, -1, 702, -1, -1, 117, 706, -1, 417, -1, -1, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, 431, -1, 963, -1, -1, 436, -1, -1, -1, -1, -1, -1, -1, 444, -1, 976, -1, -1, -1, -1, 981, 982, 744, 984, 985, -1, -1, -1, -1, -1, 461, -1, -1, -1, -1, -1, -1, -1, -1, -1, 471, 1002, -1, -1, -1, -1, -1, -1, -1, 480, -1, 482, -1, -1, -1, -1, -1, -1, 780, -1, -1, -1, -1, 0, -1, -1, -1, -1, 790, 791, -1, -1, 794, -1, -1, 797, -1, -1, -1, -1, 802, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1053, -1, 525, -1, -1, -1, -1, 0, -1, 38, 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, 70, -1, 36, 37, 38, 39, -1, -1, -1, 43, -1, 866, 46, 47, -1, -1, -1, -1, -1, -1, -1, 1115, -1, 587, 588, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 890, -1, 71, -1, -1, -1, -1, 76, -1, 78, 79, 80, -1, -1, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, 623, -1, -1, -1, -1, -1, -1, -1, -1, -1, 633, -1, -1, -1, -1, -1, 639, 931, -1, 642, 643, -1, 115, -1, 117, -1, 155, 1180, -1, -1, 123, 124, -1, -1, -1, 658, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 963, -1, -1, -1, -1, 677, -1, -1, 1210, -1, 1212, -1, -1, -1, -1, 1217, 688, -1, 981, 982, -1, 984, 985, -1, -1, -1, -1, -1, -1, -1, 702, -1, -1, -1, 706, -1, -1, 1239, -1, 1002, -1, -1, -1, -1, -1, 1247, 1248, 1249, -1, -1, -1, -1, -1, -1, -1, -1, 1258, 1259, -1, -1, -1, -1, -1, -1, 242, -1, -1, -1, 1270, 247, -1, -1, 744, -1, -1, -1, -1, -1, -1, 1042, 1043, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, 780, -1, 1312, -1, -1, -1, -1, 46, -1, -1, 790, 791, -1, -1, 794, -1, -1, 797, -1, -1, -1, -1, 802, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, 1351, -1, -1, 1115, -1, -1, -1, -1, -1, -1, -1, 338, -1, -1, -1, -1, -1, 344, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1385, -1, -1, 364, -1, -1, -1, 368, -1, 123, 124, 866, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1414, 1415, -1, -1, -1, 1180, 890, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1433, -1, -1, -1, -1, -1, -1, 1440, 417, 1442, -1, 1444, -1, -1, -1, -1, 1210, -1, 1212, -1, -1, -1, 431, -1, -1, -1, -1, 436, 931, -1, -1, -1, -1, -1, -1, 444, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1239, -1, -1, -1, 1482, -1, 1484, 461, 1247, 1248, 1249, -1, -1, -1, -1, 963, -1, 471, -1, 1258, 1259, -1, 1500, -1, -1, -1, 480, -1, 482, 1507, -1, 1270, -1, 981, 982, -1, 984, 985, -1, -1, -1, -1, -1, -1, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1002, -1, -1, -1, -1, 67, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 525, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 1042, 1043, 36, 37, 38, -1, -1, -1, 276, -1, 278, 279, 46, 115, -1, -1, -1, 119, 1351, 287, 288, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 301, 302, -1, -1, -1, -1, 587, 588, -1, -1, 145, 78, 79, -1, -1, -1, -1, -1, -1, 1385, 155, -1, -1, 158, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 338, -1, -1, 1115, -1, 623, -1, -1, -1, -1, -1, 1414, -1, 117, -1, 633, -1, -1, -1, 123, 124, 639, -1, -1, 642, 643, -1, -1, -1, -1, 1433, -1, -1, -1, 206, -1, -1, 1440, -1, 1442, 658, 1444, 380, -1, -1, -1, 218, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 677, -1, -1, -1, -1, -1, -1, -1, -1, 1180, -1, 688, -1, -1, -1, -1, -1, -1, -1, -1, 1482, -1, 1484, -1, 255, 702, -1, -1, -1, 706, -1, 262, -1, -1, -1, -1, -1, -1, 1500, 1210, -1, 1212, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 289, -1, -1, -1, -1, -1, -1, -1, -1, 744, 1239, -1, 301, -1, -1, -1, -1, -1, 1247, 1248, 1249, -1, 67, -1, -1, -1, -1, -1, -1, 1258, 1259, 76, -1, 78, -1, 80, -1, -1, -1, -1, -1, 1270, -1, 88, -1, 780, -1, -1, -1, 338, -1, -1, -1, -1, 343, 790, 791, -1, -1, 794, -1, -1, 797, -1, -1, -1, -1, 802, -1, -1, -1, -1, -1, -1, 119, -1, 121, 122, 123, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, -1, 158, -1, -1, -1, -1, -1, -1, -1, -1, 1351, -1, -1, -1, -1, -1, -1, -1, -1, 866, -1, -1, -1, -1, 425, 426, -1, -1, -1, -1, 431, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 890, 1385, -1, -1, -1, -1, -1, -1, 452, -1, -1, -1, -1, -1, -1, -1, -1, -1, 218, -1, 220, 221, 222, -1, -1, -1, -1, -1, -1, -1, 1414, -1, -1, -1, -1, -1, 480, -1, -1, -1, -1, 931, -1, -1, -1, -1, -1, -1, -1, 1433, 250, -1, 496, -1, -1, 255, 1440, -1, 1442, -1, 1444, -1, -1, -1, 508, -1, 510, -1, -1, 513, -1, 515, 516, 963, -1, -1, -1, -1, -1, -1, -1, 525, -1, -1, -1, -1, -1, -1, -1, -1, -1, 981, 982, -1, 984, 985, -1, -1, 1482, -1, 1484, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1002, 723, -1, -1, 1500, -1, -1, -1, -1, -1, -1, 323, -1, -1, -1, -1, -1, -1, -1, -1, 576, -1, -1, -1, -1, -1, 748, -1, -1, -1, -1, 343, 588, -1, -1, 591, -1, 349, -1, 351, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, -1, -1, 363, -1, -1, -1, -1, 778, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 623, -1, -1, -1, -1, -1, -1, -1, -1, -1, 633, -1, -1, -1, -1, -1, -1, -1, -1, 642, 643, -1, -1, -1, 403, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 658, -1, -1, -1, -1, -1, -1, -1, -1, 423, -1, 1115, -1, -1, 428, -1, 430, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 446, 691, -1, 449, 450, -1, -1, -1, -1, -1, 456, -1, -1, -1, -1, -1, 706, -1, 708, -1, -1, -1, -1, -1, 470, -1, -1, -1, -1, -1, -1, -1, 478, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1180, -1, -1, -1, 44, 45, -1, 47, -1, -1, 744, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1210, -1, 1212, 73, -1, -1, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, 951, 92, 93, -1, -1, -1, -1, -1, 1239, -1, -1, 796, 963, -1, -1, -1, 1247, 1248, 1249, -1, -1, -1, -1, -1, 115, -1, 117, 1258, 1259, 120, -1, -1, 123, 124, 125, 126, 127, 128, -1, 1270, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 591, 1002, 593, 594, 595, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 47, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 626, 627, -1, -1, -1, -1, -1, -1, -1, 635, -1, -1, -1, -1, -1, -1, 1052, -1, -1, -1, 890, -1, -1, -1, -1, 895, -1, -1, -1, -1, -1, -1, 93, -1, -1, 1351, -1, -1, -1, -1, -1, -1, 103, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 925, -1, -1, -1, -1, -1, 931, -1, -1, -1, -1, -1, 693, -1, 1385, -1, -1, -1, -1, -1, -1, -1, 703, -1, -1, -1, -1, 708, -1, -1, -1, -1, -1, 154, 155, -1, -1, -1, 963, -1, -1, -1, -1, 1414, -1, -1, -1, -1, -1, -1, -1, -1, -1, 169, -1, -1, -1, 1148, 1149, 984, 985, -1, 1433, -1, -1, 186, -1, -1, -1, 1440, -1, 1442, 193, 1444, -1, 191, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 205, -1, -1, -1, -1, -1, -1, -1, -1, 214, -1, -1, -1, -1, 784, -1, -1, -1, -1, 224, -1, -1, 1482, -1, 1484, -1, 796, -1, -1, -1, -1, 44, 45, -1, 47, -1, -1, -1, 243, -1, 1500, -1, -1, 248, 814, -1, -1, -1, -1, 259, -1, -1, -1, -1, 1068, -1, 261, -1, -1, -1, 73, -1, -1, 76, 269, -1, 271, 80, 838, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, 290, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1115, 115, -1, 117, -1, -1, 317, -1, 122, 123, 124, 125, 126, 127, 128, 326, 327, -1, 329, 330, -1, -1, -1, -1, -1, 331, -1, 338, -1, -1, 336, 342, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 914, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 368, -1, -1, -1, -1, -1, -1, -1, 371, -1, -1, -1, 375, 376, -1, 378, -1, -1, -1, 1191, -1, -1, 385, 386, -1, 388, 389, 395, 391, -1, 393, 399, -1, -1, -1, -1, -1, -1, 966, -1, 1212, -1, -1, -1, -1, -1, -1, 410, -1, 977, -1, 1389, -1, -1, -1, 418, -1, -1, -1, -1, -1, -1, -1, 431, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 442, -1, -1, -1, -1, -1, -1, 1258, 1259, -1, -1, -1, 44, 45, -1, 47, -1, -1, -1, -1, -1, -1, -1, -1, -1, 467, -1, -1, -1, -1, 477, -1, 474, 480, 1451, -1, -1, 479, -1, -1, -1, 73, -1, -1, 76, -1, 1463, 1464, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, 1074, -1, -1, 1487, -1, -1, -1, -1, -1, -1, 519, 525, -1, -1, -1, -1, 115, -1, 117, -1, -1, 120, 531, -1, 123, 124, 125, 126, 127, 128, -1, -1, 1350, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 568, 569, -1, -1, -1, 568, -1, -1, -1, -1, -1, -1, -1, 1385, 577, -1, -1, 580, -1, 587, 588, 1559, -1, -1, -1, -1, -1, -1, 1400, -1, -1, -1, -1, 601, -1, -1, 604, 605, -1, 602, -1, -1, -1, 611, -1, -1, -1, -1, -1, -1, -1, -1, -1, 621, -1, 623, -1, -1, -1, -1, -1, -1, -1, -1, 155, 633, -1, -1, -1, -1, 1442, 1199, 1444, -1, 642, 643, -1, -1, -1, -1, -1, -1, -1, -1, 647, -1, -1, -1, 44, 45, 658, 47, -1, -1, 662, 663, -1, -1, 666, 667, -1, -1, -1, -1, -1, 1477, -1, 675, -1, -1, 1482, -1, 1484, -1, -1, -1, -1, 73, -1, -1, 76, 684, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, 706, 707, -1, -1, -1, -1, -1, -1, -1, -1, -1, 712, -1, 1523, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 727, 728, -1, 123, 124, 125, 126, 127, 128, -1, 737, -1, 744, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 751, -1, -1, -1, -1, 756, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 145, -1, -1, -1, -1, -1, -1, -1, -1, -1, 155, -1, 784, -1, -1, -1, -1, -1, 1350, -1, -1, 166, 167, -1, -1, -1, -1, -1, -1, 801, -1, 803, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 814, 338, -1, -1, -1, -1, 343, 344, -1, 818, -1, -1, -1, -1, -1, -1, 825, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1400, 364, -1, -1, -1, 368, 841, -1, 843, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 856, -1, -1, -1, -1, -1, 862, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 873, -1, -1, 254, 877, -1, -1, -1, -1, -1, -1, -1, 890, -1, -1, -1, -1, -1, -1, 897, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 431, 909, 910, -1, -1, -1, -1, -1, -1, 1477, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 931, -1, -1, -1, -1, -1, -1, 461, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 953, 954, -1, -1, 480, -1, -1, -1, -1, -1, 963, -1, -1, 961, -1, -1, 969, 970, -1, 972, 973, 974, -1, 1536, -1, -1, -1, -1, -1, -1, -1, 984, 985, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 525, -1, -1, -1, 379, -1, -1, 155, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 1028, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, -1, -1, -1, -1, 1049, -1, 1051, -1, 1053, -1, -1, -1, -1, 1058, -1, -1, -1, -1, -1, 587, 588, -1, -1, 591, -1, -1, -1, -1, -1, 1074, 1070, 78, 79, -1, 452, 1075, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1085, -1, -1, -1, -1, -1, -1, -1, -1, 472, 623, -1, -1, 626, -1, -1, -1, -1, -1, -1, 633, -1, 635, -1, 1109, 1115, 639, -1, -1, 642, 643, 123, 124, -1, -1, -1, -1, 1122, -1, -1, -1, 1126, -1, -1, 1129, 658, -1, -1, -1, -1, -1, -1, 515, -1, -1, -1, -1, -1, -1, -1, 1145, 1146, 525, -1, 677, -1, -1, 530, -1, -1, 533, -1, -1, -1, -1, -1, -1, -1, 1163, -1, 693, -1, -1, 546, -1, -1, -1, -1, -1, -1, -1, -1, -1, 706, -1, 708, -1, -1, -1, -1, -1, -1, 338, -1, 1194, -1, -1, 343, 344, 1199, -1, -1, -1, 576, -1, -1, -1, -1, -1, -1, 583, -1, 1212, -1, -1, 588, -1, -1, 364, -1, -1, 744, 368, -1, -1, -1, -1, -1, -1, -1, 603, -1, -1, 1228, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 780, 1258, 1259, -1, -1, -1, -1, -1, -1, -1, 790, 791, 32, -1, 794, 645, 796, 797, -1, -1, -1, -1, 802, 653, -1, -1, -1, -1, 431, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1297, 1298, -1, -1, 1301, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1307, -1, 1309, 461, -1, -1, -1, -1, -1, 84, -1, -1, 1319, -1, 1321, -1, -1, -1, -1, -1, -1, -1, 480, -1, -1, 100, -1, 102, -1, 1336, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1354, 1355, 734, -1, -1, -1, -1, -1, 890, -1, -1, -1, 744, 1367, 746, -1, -1, 749, 1372, -1, 525, 1375, -1, 755, -1, -1, 1385, 155, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1391, -1, -1, -1, 32, -1, -1, -1, -1, -1, 1401, -1, 931, 1404, -1, 1406, 1407, 1408, -1, -1, -1, -1, -1, -1, -1, -1, -1, 796, 797, 188, 189, -1, -1, -1, 193, -1, 195, 196, -1, -1, -1, -1, -1, 812, 963, 587, 588, 966, -1, 591, -1, -1, -1, -1, -1, 1446, 84, 1448, -1, -1, -1, -1, 981, 982, -1, 984, 985, 1458, -1, -1, -1, -1, 100, -1, 102, -1, -1, 1468, -1, -1, 1476, 623, -1, -1, 626, -1, 855, -1, -1, -1, 859, 633, -1, 635, -1, -1, -1, 639, -1, 127, 642, 643, -1, -1, -1, -1, -1, -1, -1, -1, 1506, 1507, -1, -1, -1, -1, 658, -1, -1, -1, -1, 890, -1, 1042, 1043, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 677, -1, -1, -1, -1, 1536, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 693, -1, -1, -1, -1, 925, -1, 186, -1, 188, 189, 931, -1, 706, 193, 708, 195, 196, 938, -1, -1, -1, 338, 943, -1, 335, 946, 343, 344, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 354, 1115, 966, -1, 364, -1, -1, 744, 368, -1, -1, -1, -1, 977, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 997, -1, 999, 259, -1, -1, -1, -1, -1, -1, 780, -1, -1, -1, -1, -1, -1, 1014, 1015, 406, 790, 791, -1, -1, 794, -1, 796, 797, -1, -1, -1, -1, 802, -1, -1, -1, -1, -1, 431, -1, -1, -1, -1, -1, 1041, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1210, -1, 1212, -1, -1, 461, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 335, -1, -1, -1, -1, -1, 44, 45, 480, 47, -1, -1, -1, 1239, -1, -1, -1, -1, 1094, 354, -1, 1247, 1248, 1249, -1, -1, -1, -1, -1, -1, -1, -1, 1258, 1259, -1, 73, -1, -1, 76, 1115, -1, 890, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, 525, 92, 93, -1, 1133, 1134, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 406, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 931, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 572, 573, -1, -1, -1, -1, -1, -1, 963, 587, 588, 966, -1, 591, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 981, 982, -1, 984, 985, -1, -1, 605, -1, -1, 608, 609, -1, 611, -1, 613, 614, -1, -1, 623, 618, 619, 626, -1, -1, -1, -1, 1385, -1, 633, -1, 635, -1, -1, -1, 639, -1, -1, 642, 643, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 658, -1, 1414, -1, -1, -1, -1, 1042, 1043, -1, 662, -1, -1, -1, 666, -1, -1, -1, -1, 677, -1, -1, 1284, -1, -1, -1, 1288, -1, -1, -1, 1442, -1, 1444, -1, -1, 693, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 706, -1, 708, 572, 573, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1477, -1, -1, -1, -1, 1482, -1, 1484, -1, -1, -1, -1, -1, -1, -1, 1115, -1, -1, -1, 605, -1, 744, 608, 609, -1, 611, -1, 613, 614, -1, -1, -1, 618, 619, -1, -1, -1, -1, -1, -1, -1, -1, -1, 5, -1, -1, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 780, -1, -1, -1, -1, -1, -1, -1, -1, -1, 790, 791, -1, -1, 794, -1, 796, 797, -1, 662, -1, -1, 802, 666, -1, 44, 45, 46, 47, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 1210, 73, 1212, -1, 76, -1, -1, -1, 80, -1, 46, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, 1239, -1, -1, -1, -1, -1, -1, -1, 1247, 1248, 1249, -1, -1, -1, 115, -1, 117, 82, -1, 1258, 1259, -1, 123, 124, 125, 126, 127, 128, 890, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, -1, 1523, -1, -1, -1, -1, -1, -1, -1, -1, 46, -1, -1, 931, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 953, 36, 37, 38, 963, 82, -1, 966, -1, -1, -1, 46, -1, -1, -1, -1, 969, -1, -1, 972, 973, -1, 981, 982, -1, 984, 985, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, 78, 79, 80, -1, -1, -1, 1385, -1, -1, -1, -1, 89, 90, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 1414, -1, 115, -1, 117, 1042, 1043, -1, -1, -1, 123, 124, 46, -1, 1045, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1442, -1, 1444, -1, 1063, 1064, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 953, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1477, -1, -1, -1, -1, 1482, 969, 1484, -1, 972, 973, -1, -1, -1, -1, 1115, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1120, -1, -1, -1, -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, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, -1, -1, -1, 43, -1, 1045, 46, 47, -1, -1, -1, 1182, -1, -1, -1, -1, -1, -1, 1058, -1, -1, -1, -1, 1063, 1064, -1, -1, -1, -1, -1, 1201, 71, -1, 1210, -1, 1212, 76, -1, 78, 79, 80, -1, -1, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1239, -1, -1, -1, -1, -1, -1, -1, 1247, 1248, 1249, -1, -1, 115, -1, 117, -1, -1, 1120, 1258, 1259, 123, 124, -1, -1, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 1297, -1, -1, 43, 44, 45, 46, 47, -1, -1, -1, -1, -1, -1, -1, -1, 1182, -1, -1, -1, -1, -1, 44, 45, -1, 47, -1, -1, -1, -1, -1, -1, -1, 73, -1, 1201, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, 73, 92, 93, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, 1385, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, 115, -1, 117, -1, -1, 138, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, 1414, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 1297, -1, -1, -1, -1, -1, -1, -1, 1442, -1, 1444, 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, -1, 1477, 36, 37, 38, 39, 1482, -1, 1484, 43, 44, 45, 46, 47, 48, -1, 50, -1, -1, 53, 54, 55, 56, 57, 58, 59, 60, -1, -1, -1, 64, -1, -1, -1, 68, 69, -1, 71, -1, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 120, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, 133, -1, -1, -1, -1, 138, 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, -1, -1, 36, 37, 38, 39, -1, -1, -1, 43, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, 122, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, 5, 92, 93, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, -1, -1, -1, -1, 44, 45, -1, 47, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, -1, 44, 45, 46, 47, -1, -1, -1, -1, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, 73, -1, -1, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, 115, -1, 117, -1, 119, 120, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, 39, -1, -1, -1, 43, -1, -1, 46, 47, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 71, -1, -1, -1, -1, 76, -1, 78, 79, 80, -1, -1, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, 121, -1, 123, 124, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, 76, -1, 78, 79, 80, 46, -1, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, -1, 36, 37, 38, 39, -1, -1, -1, 43, -1, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, 82, -1, -1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 117, 36, 37, 38, 39, -1, 123, 124, 43, -1, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, 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, -1, -1, 36, 37, 38, -1, -1, 117, -1, -1, -1, -1, 46, 123, 124, -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, 76, -1, 78, 79, 80, -1, -1, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, 39, 40, 41, 42, 78, 79, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, 117, -1, -1, -1, -1, -1, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, 117, -1, -1, -1, -1, -1, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, 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, -1, -1, 36, 37, 38, -1, -1, 117, -1, -1, -1, -1, 46, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, 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, -1, -1, 36, 37, 38, -1, -1, 117, -1, -1, -1, -1, 46, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -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, 28, 29, 30, 31, 32, 33, -1, 117, 36, 37, 38, -1, -1, 123, 124, -1, -1, -1, 46, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, 78, 79, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, 120, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 120, -1, -1, 123, 124, 125, 126, 127, 128, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, 116, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, 44, 45, 46, 47, -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, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, 78, 79, 80, 116, -1, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, 76, -1, 78, 79, -1, 46, 47, -1, -1, -1, -1, -1, -1, 89, 90, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 117, 36, 37, 38, 121, -1, 123, 124, -1, -1, -1, 46, 47, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, 78, 79, -1, -1, 46, 47, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, 78, 79, -1, 117, 46, -1, -1, 121, -1, 123, 124, -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, 78, 79, -1, 117, -1, -1, -1, 121, -1, 123, 124, -1, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 117, 36, 37, 38, -1, -1, 123, 124, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 117, 36, 37, 38, -1, -1, 123, 124, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, 117, 36, 37, 38, -1, -1, 123, 124, -1, -1, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, -1, -1, 78, 79, -1, 46, 117, -1, -1, -1, -1, -1, 123, 124, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79, -1, -1, 117, -1, -1, -1, -1, -1, 123, 124, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, -1, -1, 36, 37, 38, -1, -1, 44, 45, -1, 47, 48, 46, 50, -1, -1, 53, 54, 55, 56, 57, 58, 59, 60, -1, -1, 63, 64, -1, -1, -1, 68, 69, -1, 71, -1, 73, -1, -1, 76, -1, 78, 79, 80, 78, 79, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 102, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 120, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, 44, 45, 133, 47, 48, -1, 50, 138, -1, 53, 54, 55, 56, 57, 58, 59, 60, -1, -1, -1, 64, -1, -1, -1, 68, 69, -1, 71, -1, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 120, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, 133, -1, -1, 44, 45, 138, 47, 48, -1, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, -1, -1, 63, 64, -1, -1, -1, 68, 69, -1, 71, -1, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 120, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, 44, 45, 133, 47, 48, -1, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, -1, -1, -1, 64, -1, -1, -1, 68, 69, -1, 71, -1, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, 120, -1, -1, 123, 124, 125, 126, 127, 128, -1, -1, 44, 45, 133, 47, 48, -1, 50, -1, -1, 53, 54, 55, 56, 57, 58, 59, 60, -1, -1, -1, 64, -1, -1, -1, 68, 69, -1, 71, -1, 73, -1, -1, 76, -1, 78, 79, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, 44, 45, -1, 47, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, 44, 45, 120, 47, -1, 123, 124, 125, 126, 127, 128, 73, -1, -1, 76, 133, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, 73, 92, 93, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, 115, -1, 117, 44, 45, -1, 47, -1, 123, 124, 125, 126, 127, 128, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 73, -1, -1, 76, -1, -1, -1, 80, -1, -1, 83, 84, 85, 86, 87, 88, 89, 90, -1, 92, 93, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 115, -1, 117, -1, -1, -1, -1, -1, 123, 124, 125, 126, 127, 128, 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, -1, -1, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, 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, 78, 79, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, -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, 28, 29, 30, 31, 32, 33, 78, 79, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, -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, 28, 29, 30, 31, 32, 33, 78, 79, 36, 37, 38, -1, -1, -1, -1, -1, -1, -1, 46, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 78, 79 }; /* 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, 28, 29, 30, 31, 32, 33, 36, 37, 38, 39, 43, 46, 47, 71, 76, 78, 79, 80, 89, 90, 115, 117, 123, 124, 143, 146, 158, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 233, 235, 237, 238, 239, 240, 242, 243, 244, 245, 246, 247, 248, 250, 251, 254, 255, 256, 258, 260, 261, 269, 271, 297, 298, 299, 307, 310, 316, 317, 319, 321, 322, 328, 333, 337, 338, 339, 340, 341, 342, 343, 344, 364, 381, 382, 383, 384, 76, 145, 146, 158, 224, 226, 235, 238, 247, 251, 255, 298, 85, 115, 326, 327, 328, 76, 78, 79, 80, 144, 145, 287, 288, 308, 309, 78, 79, 288, 115, 319, 115, 115, 158, 333, 338, 339, 340, 342, 343, 344, 118, 140, 227, 235, 238, 337, 341, 380, 381, 384, 385, 141, 113, 137, 291, 120, 141, 182, 78, 79, 143, 286, 141, 141, 141, 78, 79, 115, 158, 232, 323, 332, 333, 334, 335, 336, 337, 341, 345, 346, 347, 348, 349, 355, 3, 34, 82, 249, 3, 4, 78, 117, 158, 226, 239, 243, 245, 256, 299, 337, 341, 384, 224, 226, 238, 247, 251, 255, 298, 337, 341, 39, 244, 244, 239, 245, 141, 244, 239, 244, 239, 326, 244, 239, 122, 141, 141, 0, 140, 115, 182, 326, 326, 140, 117, 235, 238, 382, 286, 286, 137, 238, 115, 158, 323, 333, 337, 117, 158, 384, 320, 241, 120, 288, 328, 115, 304, 115, 115, 85, 147, 148, 44, 45, 47, 73, 76, 80, 83, 84, 86, 87, 88, 92, 93, 115, 117, 125, 126, 127, 128, 142, 146, 147, 149, 150, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 173, 176, 235, 289, 290, 306, 380, 385, 238, 116, 116, 116, 116, 116, 116, 116, 117, 235, 364, 382, 36, 117, 123, 158, 173, 226, 227, 234, 238, 242, 243, 246, 247, 252, 253, 254, 255, 257, 260, 261, 271, 276, 277, 281, 282, 283, 284, 297, 298, 364, 376, 377, 378, 379, 384, 385, 115, 337, 341, 384, 115, 122, 138, 117, 120, 158, 173, 292, 292, 121, 140, 122, 138, 115, 122, 138, 122, 138, 122, 138, 333, 334, 335, 336, 346, 347, 348, 349, 238, 332, 345, 122, 141, 71, 325, 117, 326, 363, 364, 326, 326, 182, 140, 115, 326, 363, 326, 326, 238, 323, 115, 115, 237, 238, 235, 238, 140, 235, 380, 385, 182, 140, 286, 291, 226, 243, 337, 341, 182, 140, 308, 238, 247, 138, 238, 238, 79, 115, 120, 288, 299, 238, 308, 138, 138, 319, 140, 145, 285, 3, 141, 216, 217, 231, 233, 238, 242, 140, 325, 115, 325, 173, 333, 238, 115, 140, 286, 120, 39, 40, 41, 42, 235, 300, 301, 303, 272, 288, 270, 140, 134, 137, 305, 140, 12, 76, 78, 79, 329, 330, 331, 116, 85, 115, 157, 115, 157, 160, 115, 157, 115, 115, 157, 157, 117, 173, 178, 182, 289, 384, 140, 87, 91, 92, 93, 115, 117, 119, 120, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 137, 175, 160, 160, 123, 129, 130, 125, 126, 94, 95, 96, 97, 131, 132, 98, 99, 124, 133, 134, 100, 101, 135, 115, 158, 359, 360, 361, 362, 363, 116, 122, 115, 363, 364, 115, 363, 364, 140, 235, 382, 326, 118, 140, 141, 236, 238, 247, 253, 255, 298, 375, 376, 384, 385, 141, 115, 117, 137, 158, 333, 350, 351, 352, 353, 354, 355, 356, 357, 358, 364, 365, 366, 367, 368, 369, 370, 387, 158, 257, 384, 238, 253, 244, 239, 326, 141, 141, 158, 236, 238, 377, 286, 236, 364, 377, 286, 140, 140, 140, 140, 76, 117, 119, 146, 288, 292, 293, 294, 295, 296, 140, 140, 140, 140, 140, 140, 116, 116, 116, 116, 116, 116, 116, 332, 345, 326, 138, 115, 291, 118, 216, 140, 323, 178, 290, 178, 290, 323, 117, 216, 325, 182, 140, 216, 306, 262, 259, 238, 278, 279, 280, 283, 284, 116, 122, 182, 140, 238, 123, 173, 140, 234, 238, 277, 376, 384, 317, 318, 115, 158, 350, 116, 122, 387, 288, 122, 386, 137, 273, 120, 300, 115, 120, 288, 290, 300, 116, 122, 115, 138, 289, 117, 289, 289, 152, 173, 290, 289, 140, 116, 122, 116, 116, 122, 173, 117, 145, 151, 152, 140, 117, 145, 151, 173, 160, 160, 160, 161, 161, 162, 162, 163, 163, 163, 163, 164, 164, 165, 166, 167, 168, 169, 136, 178, 140, 360, 361, 362, 238, 359, 326, 326, 173, 290, 140, 140, 288, 236, 364, 377, 238, 242, 118, 384, 118, 115, 140, 333, 351, 352, 353, 356, 366, 367, 368, 118, 140, 173, 238, 350, 354, 365, 115, 326, 369, 387, 326, 326, 387, 115, 326, 369, 326, 326, 387, 326, 326, 364, 236, 375, 385, 286, 238, 288, 118, 122, 118, 122, 387, 236, 377, 387, 274, 275, 276, 277, 274, 286, 173, 140, 117, 288, 136, 122, 386, 292, 117, 136, 296, 35, 218, 219, 286, 274, 145, 323, 145, 115, 326, 363, 364, 115, 326, 363, 364, 323, 147, 364, 182, 278, 116, 116, 116, 116, 140, 182, 216, 182, 116, 47, 121, 235, 263, 264, 380, 120, 141, 141, 145, 231, 141, 141, 274, 115, 158, 384, 141, 121, 238, 301, 302, 288, 121, 171, 172, 272, 141, 140, 140, 115, 141, 116, 330, 151, 116, 140, 122, 116, 116, 116, 116, 173, 120, 160, 173, 174, 177, 122, 140, 116, 122, 173, 140, 121, 171, 136, 278, 116, 116, 116, 359, 278, 278, 236, 377, 117, 123, 158, 173, 173, 238, 356, 278, 116, 116, 116, 116, 116, 116, 116, 5, 238, 350, 354, 365, 140, 140, 387, 140, 140, 141, 141, 141, 141, 291, 171, 172, 173, 324, 140, 292, 294, 121, 140, 220, 288, 47, 48, 50, 53, 54, 55, 56, 57, 58, 59, 60, 64, 68, 69, 71, 76, 78, 79, 80, 133, 146, 178, 179, 180, 181, 182, 183, 184, 186, 187, 199, 201, 202, 207, 221, 286, 322, 35, 141, 137, 140, 140, 325, 116, 141, 182, 120, 235, 264, 115, 136, 158, 265, 266, 268, 332, 333, 345, 363, 371, 372, 373, 374, 122, 138, 288, 262, 116, 122, 118, 118, 141, 238, 122, 387, 304, 273, 386, 116, 300, 224, 226, 235, 312, 313, 314, 315, 306, 116, 116, 145, 293, 122, 141, 177, 83, 86, 88, 145, 153, 154, 155, 152, 141, 153, 171, 141, 115, 326, 363, 364, 141, 141, 140, 141, 141, 141, 173, 116, 141, 115, 326, 363, 364, 115, 326, 369, 115, 326, 369, 364, 237, 5, 123, 141, 173, 278, 278, 277, 281, 281, 282, 116, 122, 122, 116, 102, 128, 141, 141, 153, 292, 173, 122, 138, 221, 322, 115, 115, 180, 115, 115, 138, 286, 138, 286, 123, 286, 179, 115, 182, 174, 174, 13, 208, 150, 138, 141, 140, 141, 136, 220, 116, 173, 278, 278, 291, 326, 116, 262, 265, 138, 333, 372, 373, 374, 172, 238, 371, 122, 138, 267, 268, 267, 326, 326, 288, 121, 140, 116, 140, 121, 141, 323, 121, 140, 141, 141, 116, 120, 116, 386, 174, 118, 141, 156, 117, 154, 156, 156, 122, 141, 91, 119, 118, 141, 116, 140, 116, 116, 118, 118, 118, 141, 116, 140, 140, 140, 173, 173, 141, 118, 141, 141, 141, 141, 140, 140, 172, 172, 118, 118, 141, 288, 178, 178, 54, 178, 140, 138, 138, 178, 138, 138, 178, 65, 66, 67, 203, 204, 205, 138, 70, 138, 58, 115, 120, 184, 121, 326, 138, 141, 141, 121, 138, 116, 116, 116, 371, 326, 102, 283, 284, 116, 313, 122, 138, 122, 138, 121, 311, 121, 118, 87, 140, 154, 118, 117, 154, 117, 154, 118, 278, 118, 278, 278, 278, 141, 141, 118, 118, 116, 116, 118, 122, 102, 277, 102, 141, 118, 116, 116, 115, 116, 179, 200, 221, 225, 238, 242, 138, 116, 115, 115, 182, 205, 65, 66, 173, 115, 147, 151, 180, 116, 116, 115, 326, 363, 364, 266, 120, 140, 140, 312, 153, 140, 140, 141, 141, 141, 141, 118, 118, 140, 141, 118, 180, 51, 52, 120, 190, 191, 192, 178, 180, 141, 116, 179, 238, 120, 192, 102, 140, 102, 140, 115, 115, 138, 147, 116, 136, 121, 140, 140, 286, 323, 121, 141, 153, 153, 116, 116, 116, 116, 281, 49, 172, 188, 189, 324, 136, 140, 180, 190, 116, 138, 180, 138, 140, 116, 140, 116, 140, 102, 140, 102, 140, 136, 138, 117, 147, 209, 210, 211, 138, 278, 312, 118, 141, 141, 180, 102, 122, 136, 141, 214, 215, 221, 138, 179, 179, 214, 182, 206, 236, 238, 380, 182, 206, 116, 140, 116, 140, 136, 172, 115, 116, 136, 122, 141, 121, 118, 118, 172, 188, 191, 193, 194, 140, 138, 191, 195, 196, 141, 115, 158, 323, 371, 145, 141, 182, 206, 182, 206, 209, 118, 172, 138, 209, 211, 116, 115, 180, 185, 121, 191, 221, 179, 63, 185, 198, 121, 191, 116, 238, 116, 141, 141, 136, 147, 116, 116, 136, 306, 180, 185, 138, 197, 198, 185, 198, 182, 182, 116, 116, 147, 212, 115, 138, 212, 116, 197, 141, 141, 182, 182, 122, 136, 172, 116, 141, 141, 147, 145, 213, 116, 138, 116, 122, 138, 145 }; #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 328 "parser.yy" { typedefTable.enterScope(); } break; case 3: /* Line 1806 of yacc.c */ #line 332 "parser.yy" { typedefTable.leaveScope(); } break; case 4: /* Line 1806 of yacc.c */ #line 339 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantInteger( *(yyvsp[(1) - (1)].tok) ) ); } break; case 5: /* Line 1806 of yacc.c */ #line 340 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 6: /* Line 1806 of yacc.c */ #line 341 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 7: /* Line 1806 of yacc.c */ #line 342 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantFloat( *(yyvsp[(1) - (1)].tok) ) ); } break; case 8: /* Line 1806 of yacc.c */ #line 343 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantChar( *(yyvsp[(1) - (1)].tok) ) ); } break; case 18: /* Line 1806 of yacc.c */ #line 368 "parser.yy" { (yyval.constant) = build_constantStr( *(yyvsp[(1) - (1)].str) ); } break; case 19: /* Line 1806 of yacc.c */ #line 372 "parser.yy" { (yyval.str) = (yyvsp[(1) - (1)].tok); } break; case 20: /* Line 1806 of yacc.c */ #line 374 "parser.yy" { appendStr( (yyvsp[(1) - (2)].str), (yyvsp[(2) - (2)].tok) ); // append 2nd juxtaposed string to 1st delete (yyvsp[(2) - (2)].tok); // allocated by lexer (yyval.str) = (yyvsp[(1) - (2)].str); // conversion from tok to str } break; case 21: /* Line 1806 of yacc.c */ #line 385 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (1)].tok) ) ); } break; case 22: /* Line 1806 of yacc.c */ #line 387 "parser.yy" { (yyval.en) = new ExpressionNode( build_constantZeroOne( *(yyvsp[(1) - (1)].tok) ) ); } break; case 24: /* Line 1806 of yacc.c */ #line 390 "parser.yy" { (yyval.en) = (yyvsp[(2) - (3)].en); } break; case 25: /* Line 1806 of yacc.c */ #line 392 "parser.yy" { (yyval.en) = new ExpressionNode( build_valexpr( (yyvsp[(2) - (3)].sn) ) ); } break; case 27: /* Line 1806 of yacc.c */ #line 402 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Index, (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ) ); } break; case 28: /* Line 1806 of yacc.c */ #line 404 "parser.yy" { (yyval.en) = new ExpressionNode( build_func( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ) ); } break; case 29: /* Line 1806 of yacc.c */ #line 406 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 30: /* Line 1806 of yacc.c */ #line 408 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 31: /* Line 1806 of yacc.c */ #line 410 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (2)].en), build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) ) ) ); } break; case 32: /* Line 1806 of yacc.c */ #line 412 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), build_varref( (yyvsp[(3) - (3)].tok) ) ) ); } break; case 33: /* Line 1806 of yacc.c */ #line 414 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 34: /* Line 1806 of yacc.c */ #line 416 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::IncrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 35: /* Line 1806 of yacc.c */ #line 418 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::DecrPost, (yyvsp[(1) - (2)].en) ) ); } break; case 36: /* Line 1806 of yacc.c */ #line 420 "parser.yy" { (yyval.en) = new ExpressionNode( build_compoundLiteral( (yyvsp[(2) - (7)].decl), new InitializerNode( (yyvsp[(5) - (7)].in), true ) ) ); } break; case 37: /* Line 1806 of yacc.c */ #line 422 "parser.yy" { Token fn; fn.str = new std::string( "?{}" ); // location undefined - use location of '{'? (yyval.en) = new ExpressionNode( new ConstructorExpr( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(1) - (4)].en) )->set_last( (yyvsp[(3) - (4)].en) ) ) ) ); } break; case 39: /* Line 1806 of yacc.c */ #line 432 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 40: /* Line 1806 of yacc.c */ #line 437 "parser.yy" { (yyval.en) = nullptr; } break; case 43: /* Line 1806 of yacc.c */ #line 443 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 45: /* Line 1806 of yacc.c */ #line 449 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (2)].tok) ) ), maybeMoveBuild( (yyvsp[(2) - (2)].en) ) ) ); } break; case 46: /* Line 1806 of yacc.c */ #line 451 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( new ExpressionNode( build_field_name_REALDECIMALconstant( *(yyvsp[(1) - (6)].tok) ) ), build_tuple( (yyvsp[(4) - (6)].en) ) ) ); } break; case 47: /* Line 1806 of yacc.c */ #line 453 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild( (yyvsp[(3) - (3)].en) ) ) ); } break; case 48: /* Line 1806 of yacc.c */ #line 455 "parser.yy" { (yyval.en) = new ExpressionNode( build_fieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 49: /* Line 1806 of yacc.c */ #line 457 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (3)].en), maybeMoveBuild( (yyvsp[(3) - (3)].en) ) ) ); } break; case 50: /* Line 1806 of yacc.c */ #line 459 "parser.yy" { (yyval.en) = new ExpressionNode( build_pfieldSel( (yyvsp[(1) - (7)].en), build_tuple( (yyvsp[(5) - (7)].en) ) ) ); } break; case 51: /* Line 1806 of yacc.c */ #line 464 "parser.yy" { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_constantInteger( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } break; case 52: /* Line 1806 of yacc.c */ #line 466 "parser.yy" { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_field_name_FLOATINGconstant( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } break; case 53: /* Line 1806 of yacc.c */ #line 468 "parser.yy" { if( (*(yyvsp[(1) - (2)].tok)) == "0" || (*(yyvsp[(1) - (2)].tok)) == "1" ) { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_constantZeroOne( *(yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } else { (yyval.en) = new ExpressionNode( build_field_name_fraction_constants( build_varref( (yyvsp[(1) - (2)].tok) ), (yyvsp[(2) - (2)].en) ) ); } } break; case 54: /* Line 1806 of yacc.c */ #line 479 "parser.yy" { (yyval.en) = nullptr; } break; case 55: /* Line 1806 of yacc.c */ #line 481 "parser.yy" { Expression * constant = build_field_name_REALFRACTIONconstant( *(yyvsp[(2) - (2)].tok) ); (yyval.en) = (yyvsp[(1) - (2)].en) != nullptr ? new ExpressionNode( build_fieldSel( (yyvsp[(1) - (2)].en), constant ) ) : new ExpressionNode( constant ); } break; case 57: /* Line 1806 of yacc.c */ #line 492 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 58: /* Line 1806 of yacc.c */ #line 494 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 59: /* Line 1806 of yacc.c */ #line 496 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en)->set_extension( true ); } break; case 60: /* Line 1806 of yacc.c */ #line 501 "parser.yy" { switch ( (yyvsp[(1) - (2)].op) ) { case OperKinds::AddressOf: (yyval.en) = new ExpressionNode( build_addressOf( (yyvsp[(2) - (2)].en) ) ); break; case OperKinds::PointTo: (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); break; default: assert( false ); } } break; case 61: /* Line 1806 of yacc.c */ #line 514 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_val( (yyvsp[(1) - (2)].op), (yyvsp[(2) - (2)].en) ) ); } break; case 62: /* Line 1806 of yacc.c */ #line 516 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Incr, (yyvsp[(2) - (2)].en) ) ); } break; case 63: /* Line 1806 of yacc.c */ #line 518 "parser.yy" { (yyval.en) = new ExpressionNode( build_unary_ptr( OperKinds::Decr, (yyvsp[(2) - (2)].en) ) ); } break; case 64: /* Line 1806 of yacc.c */ #line 520 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 65: /* Line 1806 of yacc.c */ #line 522 "parser.yy" { (yyval.en) = new ExpressionNode( build_sizeOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 66: /* Line 1806 of yacc.c */ #line 524 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOfexpr( (yyvsp[(2) - (2)].en) ) ); } break; case 67: /* Line 1806 of yacc.c */ #line 526 "parser.yy" { (yyval.en) = new ExpressionNode( build_alignOftype( (yyvsp[(3) - (4)].decl) ) ); } break; case 68: /* Line 1806 of yacc.c */ #line 528 "parser.yy" { (yyval.en) = new ExpressionNode( build_offsetOf( (yyvsp[(3) - (6)].decl), build_varref( (yyvsp[(5) - (6)].tok) ) ) ); } break; case 69: /* Line 1806 of yacc.c */ #line 530 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (1)].tok) ), nullptr ) ); } break; case 70: /* Line 1806 of yacc.c */ #line 532 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrexpr( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ) ); } break; case 71: /* Line 1806 of yacc.c */ #line 534 "parser.yy" { (yyval.en) = new ExpressionNode( build_attrtype( build_varref( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].decl) ) ); } break; case 72: /* Line 1806 of yacc.c */ #line 540 "parser.yy" { (yyval.op) = OperKinds::PointTo; } break; case 73: /* Line 1806 of yacc.c */ #line 541 "parser.yy" { (yyval.op) = OperKinds::AddressOf; } break; case 74: /* Line 1806 of yacc.c */ #line 547 "parser.yy" { (yyval.op) = OperKinds::UnPlus; } break; case 75: /* Line 1806 of yacc.c */ #line 548 "parser.yy" { (yyval.op) = OperKinds::UnMinus; } break; case 76: /* Line 1806 of yacc.c */ #line 549 "parser.yy" { (yyval.op) = OperKinds::Neg; } break; case 77: /* Line 1806 of yacc.c */ #line 550 "parser.yy" { (yyval.op) = OperKinds::BitNeg; } break; case 79: /* Line 1806 of yacc.c */ #line 556 "parser.yy" { (yyval.en) = new ExpressionNode( build_cast( (yyvsp[(2) - (4)].decl), (yyvsp[(4) - (4)].en) ) ); } break; case 81: /* Line 1806 of yacc.c */ #line 564 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mul, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 82: /* Line 1806 of yacc.c */ #line 566 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Div, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 83: /* Line 1806 of yacc.c */ #line 568 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Mod, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 85: /* Line 1806 of yacc.c */ #line 574 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Plus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 86: /* Line 1806 of yacc.c */ #line 576 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Minus, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 88: /* Line 1806 of yacc.c */ #line 582 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 89: /* Line 1806 of yacc.c */ #line 584 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::RShift, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 91: /* Line 1806 of yacc.c */ #line 590 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 92: /* Line 1806 of yacc.c */ #line 592 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 93: /* Line 1806 of yacc.c */ #line 594 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::LEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 94: /* Line 1806 of yacc.c */ #line 596 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::GEThan, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 96: /* Line 1806 of yacc.c */ #line 602 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Eq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 97: /* Line 1806 of yacc.c */ #line 604 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Neq, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 99: /* Line 1806 of yacc.c */ #line 610 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitAnd, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 101: /* Line 1806 of yacc.c */ #line 616 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::Xor, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 103: /* Line 1806 of yacc.c */ #line 622 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_val( OperKinds::BitOr, (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 105: /* Line 1806 of yacc.c */ #line 628 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), true ) ); } break; case 107: /* Line 1806 of yacc.c */ #line 634 "parser.yy" { (yyval.en) = new ExpressionNode( build_and_or( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en), false ) ); } break; case 109: /* Line 1806 of yacc.c */ #line 640 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (5)].en), (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].en) ) ); } break; case 110: /* Line 1806 of yacc.c */ #line 643 "parser.yy" { (yyval.en) = new ExpressionNode( build_cond( (yyvsp[(1) - (4)].en), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ) ); } break; case 113: /* Line 1806 of yacc.c */ #line 656 "parser.yy" { (yyval.en) = new ExpressionNode( build_binary_ptr( (yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 114: /* Line 1806 of yacc.c */ #line 663 "parser.yy" { (yyval.en) = nullptr; } break; case 116: /* Line 1806 of yacc.c */ #line 668 "parser.yy" { (yyval.op) = OperKinds::Assign; } break; case 117: /* Line 1806 of yacc.c */ #line 669 "parser.yy" { (yyval.op) = OperKinds::AtAssn; } break; case 118: /* Line 1806 of yacc.c */ #line 670 "parser.yy" { (yyval.op) = OperKinds::MulAssn; } break; case 119: /* Line 1806 of yacc.c */ #line 671 "parser.yy" { (yyval.op) = OperKinds::DivAssn; } break; case 120: /* Line 1806 of yacc.c */ #line 672 "parser.yy" { (yyval.op) = OperKinds::ModAssn; } break; case 121: /* Line 1806 of yacc.c */ #line 673 "parser.yy" { (yyval.op) = OperKinds::PlusAssn; } break; case 122: /* Line 1806 of yacc.c */ #line 674 "parser.yy" { (yyval.op) = OperKinds::MinusAssn; } break; case 123: /* Line 1806 of yacc.c */ #line 675 "parser.yy" { (yyval.op) = OperKinds::LSAssn; } break; case 124: /* Line 1806 of yacc.c */ #line 676 "parser.yy" { (yyval.op) = OperKinds::RSAssn; } break; case 125: /* Line 1806 of yacc.c */ #line 677 "parser.yy" { (yyval.op) = OperKinds::AndAssn; } break; case 126: /* Line 1806 of yacc.c */ #line 678 "parser.yy" { (yyval.op) = OperKinds::ERAssn; } break; case 127: /* Line 1806 of yacc.c */ #line 679 "parser.yy" { (yyval.op) = OperKinds::OrAssn; } break; case 128: /* Line 1806 of yacc.c */ #line 690 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(new ExpressionNode( nullptr ) )->set_last( (yyvsp[(4) - (6)].en) ) ) ); } break; case 129: /* Line 1806 of yacc.c */ #line 692 "parser.yy" { (yyval.en) = new ExpressionNode( build_tuple( (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_last( (yyvsp[(5) - (7)].en) ) ) ); } break; case 131: /* Line 1806 of yacc.c */ #line 698 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 133: /* Line 1806 of yacc.c */ #line 704 "parser.yy" { (yyval.en) = new ExpressionNode( build_comma( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 134: /* Line 1806 of yacc.c */ #line 709 "parser.yy" { (yyval.en) = nullptr; } break; case 138: /* Line 1806 of yacc.c */ #line 718 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (1)].sn); } break; case 144: /* Line 1806 of yacc.c */ #line 725 "parser.yy" { Token fn; fn.str = new string( "^?{}" ); // location undefined (yyval.sn) = new StatementNode( build_expr( new ExpressionNode( build_func( new ExpressionNode( build_varref( fn ) ), (ExpressionNode *)( (yyvsp[(2) - (6)].en) )->set_last( (yyvsp[(4) - (6)].en) ) ) ) ) ); } break; case 145: /* Line 1806 of yacc.c */ #line 735 "parser.yy" { (yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 146: /* Line 1806 of yacc.c */ #line 742 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (StatementNode *)0 ) ); } break; case 147: /* Line 1806 of yacc.c */ #line 750 "parser.yy" { (yyval.sn) = new StatementNode( build_compound( (yyvsp[(5) - (7)].sn) ) ); } break; case 149: /* Line 1806 of yacc.c */ #line 756 "parser.yy" { if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } } break; case 150: /* Line 1806 of yacc.c */ #line 761 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 151: /* Line 1806 of yacc.c */ #line 763 "parser.yy" { distExt( (yyvsp[(2) - (2)].decl) ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 152: /* Line 1806 of yacc.c */ #line 768 "parser.yy" { (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); } break; case 153: /* Line 1806 of yacc.c */ #line 770 "parser.yy" { distExt( (yyvsp[(2) - (2)].decl) ); (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); } break; case 156: /* Line 1806 of yacc.c */ #line 780 "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 157: /* Line 1806 of yacc.c */ #line 785 "parser.yy" { (yyval.sn) = new StatementNode( build_expr( (yyvsp[(1) - (2)].en) ) ); } break; case 158: /* Line 1806 of yacc.c */ #line 791 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn), nullptr ) ); } break; case 159: /* Line 1806 of yacc.c */ #line 793 "parser.yy" { (yyval.sn) = new StatementNode( build_if( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].sn), (yyvsp[(7) - (7)].sn) ) ); } break; case 160: /* Line 1806 of yacc.c */ #line 795 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 161: /* Line 1806 of yacc.c */ #line 797 "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) ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 162: /* Line 1806 of yacc.c */ #line 807 "parser.yy" { (yyval.sn) = new StatementNode( build_switch( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 163: /* Line 1806 of yacc.c */ #line 809 "parser.yy" { StatementNode *sw = new StatementNode( build_switch( (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ) ); (yyval.sn) = (yyvsp[(7) - (9)].decl) ? new StatementNode( build_compound( (StatementNode *)((new StatementNode( (yyvsp[(7) - (9)].decl) ))->set_last( sw )) ) ) : sw; } break; case 164: /* Line 1806 of yacc.c */ #line 819 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 165: /* Line 1806 of yacc.c */ #line 821 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 167: /* Line 1806 of yacc.c */ #line 826 "parser.yy" { (yyval.sn) = new StatementNode( build_case( (yyvsp[(1) - (1)].en) ) ); } break; case 168: /* Line 1806 of yacc.c */ #line 828 "parser.yy" { (yyval.sn) = (StatementNode *)((yyvsp[(1) - (3)].sn)->set_last( new StatementNode( build_case( (yyvsp[(3) - (3)].en) ) ) ) ); } break; case 169: /* Line 1806 of yacc.c */ #line 832 "parser.yy" { (yyval.sn) = (yyvsp[(2) - (3)].sn); } break; case 170: /* Line 1806 of yacc.c */ #line 833 "parser.yy" { (yyval.sn) = new StatementNode( build_default() ); } break; case 172: /* Line 1806 of yacc.c */ #line 839 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_last( (yyvsp[(2) - (2)].sn) )); } break; case 173: /* Line 1806 of yacc.c */ #line 843 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 174: /* Line 1806 of yacc.c */ #line 848 "parser.yy" { (yyval.sn) = nullptr; } break; case 176: /* Line 1806 of yacc.c */ #line 854 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( new StatementNode( build_compound( (yyvsp[(2) - (2)].sn) ) ) ); } break; case 177: /* Line 1806 of yacc.c */ #line 856 "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 178: /* Line 1806 of yacc.c */ #line 861 "parser.yy" { (yyval.sn) = nullptr; } break; case 180: /* Line 1806 of yacc.c */ #line 867 "parser.yy" { (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); } break; case 181: /* Line 1806 of yacc.c */ #line 869 "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 182: /* Line 1806 of yacc.c */ #line 871 "parser.yy" { (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_last( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); } break; case 183: /* Line 1806 of yacc.c */ #line 873 "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 184: /* Line 1806 of yacc.c */ #line 878 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 186: /* Line 1806 of yacc.c */ #line 884 "parser.yy" { (yyval.sn) = nullptr; } break; case 187: /* Line 1806 of yacc.c */ #line 886 "parser.yy" { (yyval.sn) = nullptr; } break; case 188: /* Line 1806 of yacc.c */ #line 891 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ) ); } break; case 189: /* Line 1806 of yacc.c */ #line 893 "parser.yy" { (yyval.sn) = new StatementNode( build_while( (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn), true ) ); } break; case 190: /* Line 1806 of yacc.c */ #line 895 "parser.yy" { (yyval.sn) = new StatementNode( build_for( (yyvsp[(4) - (6)].fctl), (yyvsp[(6) - (6)].sn) ) ); } break; case 191: /* Line 1806 of yacc.c */ #line 900 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); } break; case 192: /* Line 1806 of yacc.c */ #line 902 "parser.yy" { (yyval.fctl) = new ForCtl( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); } break; case 193: /* Line 1806 of yacc.c */ #line 907 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Goto ) ); } break; case 194: /* Line 1806 of yacc.c */ #line 911 "parser.yy" { (yyval.sn) = new StatementNode( build_computedgoto( (yyvsp[(3) - (4)].en) ) ); } break; case 195: /* Line 1806 of yacc.c */ #line 914 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Continue ) ); } break; case 196: /* Line 1806 of yacc.c */ #line 918 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Continue ) ); } break; case 197: /* Line 1806 of yacc.c */ #line 921 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( BranchStmt::Break ) ); } break; case 198: /* Line 1806 of yacc.c */ #line 925 "parser.yy" { (yyval.sn) = new StatementNode( build_branch( (yyvsp[(2) - (3)].tok), BranchStmt::Break ) ); } break; case 199: /* Line 1806 of yacc.c */ #line 927 "parser.yy" { (yyval.sn) = new StatementNode( build_return( (yyvsp[(2) - (3)].en) ) ); } break; case 200: /* Line 1806 of yacc.c */ #line 929 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 201: /* Line 1806 of yacc.c */ #line 931 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (3)].en) ) ); } break; case 202: /* Line 1806 of yacc.c */ #line 933 "parser.yy" { (yyval.sn) = new StatementNode( build_throw( (yyvsp[(2) - (5)].en) ) ); } break; case 203: /* Line 1806 of yacc.c */ #line 938 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), (yyvsp[(3) - (3)].sn), 0 ) ); } break; case 204: /* Line 1806 of yacc.c */ #line 940 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (3)].sn), 0, (yyvsp[(3) - (3)].sn) ) ); } break; case 205: /* Line 1806 of yacc.c */ #line 942 "parser.yy" { (yyval.sn) = new StatementNode( build_try( (yyvsp[(2) - (4)].sn), (yyvsp[(3) - (4)].sn), (yyvsp[(4) - (4)].sn) ) ); } break; case 207: /* Line 1806 of yacc.c */ #line 949 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 208: /* Line 1806 of yacc.c */ #line 951 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 209: /* Line 1806 of yacc.c */ #line 953 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( 0, (yyvsp[(5) - (5)].sn), true ) ); } break; case 210: /* Line 1806 of yacc.c */ #line 955 "parser.yy" { (yyval.sn) = (StatementNode *)(yyvsp[(1) - (6)].sn)->set_last( new StatementNode( build_catch( 0, (yyvsp[(6) - (6)].sn), true ) ) ); } break; case 211: /* Line 1806 of yacc.c */ #line 960 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 212: /* Line 1806 of yacc.c */ #line 962 "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 213: /* Line 1806 of yacc.c */ #line 964 "parser.yy" { (yyval.sn) = new StatementNode( build_catch( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ) ); } break; case 214: /* Line 1806 of yacc.c */ #line 966 "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 215: /* Line 1806 of yacc.c */ #line 971 "parser.yy" { (yyval.sn) = new StatementNode( build_finally( (yyvsp[(2) - (2)].sn) ) ); } break; case 217: /* Line 1806 of yacc.c */ #line 980 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 218: /* Line 1806 of yacc.c */ #line 985 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 219: /* Line 1806 of yacc.c */ #line 987 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 221: /* Line 1806 of yacc.c */ #line 996 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ) ); } break; case 222: /* Line 1806 of yacc.c */ #line 998 "parser.yy" { (yyval.sn) = new StatementNode( build_asmstmt( (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ) ); } break; case 223: /* Line 1806 of yacc.c */ #line 1000 "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 224: /* Line 1806 of yacc.c */ #line 1002 "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 225: /* Line 1806 of yacc.c */ #line 1004 "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 226: /* Line 1806 of yacc.c */ #line 1009 "parser.yy" { (yyval.flag) = false; } break; case 227: /* Line 1806 of yacc.c */ #line 1011 "parser.yy" { (yyval.flag) = true; } break; case 228: /* Line 1806 of yacc.c */ #line 1016 "parser.yy" { (yyval.en) = nullptr; } break; case 231: /* Line 1806 of yacc.c */ #line 1023 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) ); } break; case 232: /* Line 1806 of yacc.c */ #line 1028 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ) ); } break; case 233: /* Line 1806 of yacc.c */ #line 1030 "parser.yy" { (yyval.en) = new ExpressionNode( build_asmexpr( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ) ); } break; case 234: /* Line 1806 of yacc.c */ #line 1035 "parser.yy" { (yyval.en) = nullptr; } break; case 235: /* Line 1806 of yacc.c */ #line 1037 "parser.yy" { (yyval.en) = new ExpressionNode( (yyvsp[(1) - (1)].constant) ); } break; case 236: /* Line 1806 of yacc.c */ #line 1040 "parser.yy" { (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( (yyvsp[(3) - (3)].constant) ) ); } break; case 237: /* Line 1806 of yacc.c */ #line 1045 "parser.yy" { (yyval.label) = new LabelNode(); (yyval.label)->labels.push_back( *(yyvsp[(1) - (1)].tok) ); delete (yyvsp[(1) - (1)].tok); // allocated by lexer } break; case 238: /* Line 1806 of yacc.c */ #line 1050 "parser.yy" { (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->labels.push_back( *(yyvsp[(3) - (3)].tok) ); delete (yyvsp[(3) - (3)].tok); // allocated by lexer } break; case 239: /* Line 1806 of yacc.c */ #line 1060 "parser.yy" { (yyval.decl) = nullptr; } break; case 242: /* Line 1806 of yacc.c */ #line 1067 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 243: /* Line 1806 of yacc.c */ #line 1072 "parser.yy" { (yyval.decl) = nullptr; } break; case 246: /* Line 1806 of yacc.c */ #line 1079 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 251: /* Line 1806 of yacc.c */ #line 1093 "parser.yy" {} break; case 252: /* Line 1806 of yacc.c */ #line 1094 "parser.yy" {} break; case 260: /* Line 1806 of yacc.c */ #line 1123 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].in) ); } break; case 261: /* Line 1806 of yacc.c */ #line 1130 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) );; } break; case 262: /* Line 1806 of yacc.c */ #line 1135 "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 263: /* Line 1806 of yacc.c */ #line 1145 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) )->addAsmName( (yyvsp[(3) - (3)].decl) ); } break; case 264: /* Line 1806 of yacc.c */ #line 1150 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) )->addAsmName( (yyvsp[(3) - (3)].decl) ); } break; case 265: /* Line 1806 of yacc.c */ #line 1155 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) ); (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) )->addAsmName( (yyvsp[(4) - (4)].decl) ); } break; case 266: /* Line 1806 of yacc.c */ #line 1163 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 267: /* Line 1806 of yacc.c */ #line 1168 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 268: /* Line 1806 of yacc.c */ #line 1173 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 269: /* Line 1806 of yacc.c */ #line 1178 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 270: /* Line 1806 of yacc.c */ #line 1183 "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 271: /* Line 1806 of yacc.c */ #line 1214 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 272: /* Line 1806 of yacc.c */ #line 1218 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true ); } break; case 273: /* Line 1806 of yacc.c */ #line 1225 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 274: /* Line 1806 of yacc.c */ #line 1229 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); } break; case 275: /* Line 1806 of yacc.c */ #line 1234 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 276: /* Line 1806 of yacc.c */ #line 1239 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef(); } break; case 277: /* Line 1806 of yacc.c */ #line 1244 "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 278: /* Line 1806 of yacc.c */ #line 1255 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef(); } break; case 279: /* Line 1806 of yacc.c */ #line 1260 "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 280: /* Line 1806 of yacc.c */ #line 1265 "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 281: /* Line 1806 of yacc.c */ #line 1270 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::TD ); (yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef(); } break; case 282: /* Line 1806 of yacc.c */ #line 1275 "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 283: /* Line 1806 of yacc.c */ #line 1284 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // unimplemented } break; case 284: /* Line 1806 of yacc.c */ #line 1289 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newName( 0 ); // unimplemented } break; case 285: /* Line 1806 of yacc.c */ #line 1319 "parser.yy" { (yyval.decl) = distAttr( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].decl) ); } break; case 289: /* Line 1806 of yacc.c */ #line 1331 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (3)].decl)->addAsmName( (yyvsp[(2) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].in) ); } break; case 290: /* Line 1806 of yacc.c */ #line 1336 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(4) - (6)].decl)->addQualifiers( (yyvsp[(3) - (6)].decl) )->addAsmName( (yyvsp[(5) - (6)].decl) )->addInitializer( (yyvsp[(6) - (6)].in) ) ); } break; case 307: /* Line 1806 of yacc.c */ #line 1382 "parser.yy" { (yyval.decl) = nullptr; } break; case 310: /* Line 1806 of yacc.c */ #line 1394 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 313: /* Line 1806 of yacc.c */ #line 1404 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeQualifier( DeclarationNode::Const ); } break; case 314: /* Line 1806 of yacc.c */ #line 1406 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeQualifier( DeclarationNode::Restrict ); } break; case 315: /* Line 1806 of yacc.c */ #line 1408 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeQualifier( DeclarationNode::Volatile ); } break; case 316: /* Line 1806 of yacc.c */ #line 1410 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeQualifier( DeclarationNode::Lvalue ); } break; case 317: /* Line 1806 of yacc.c */ #line 1412 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeQualifier( DeclarationNode::Mutex ); } break; case 318: /* Line 1806 of yacc.c */ #line 1414 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeQualifier( DeclarationNode::Atomic ); } break; case 319: /* Line 1806 of yacc.c */ #line 1416 "parser.yy" { typedefTable.enterScope(); } break; case 320: /* Line 1806 of yacc.c */ #line 1420 "parser.yy" { typedefTable.leaveScope(); (yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) ); } break; case 322: /* Line 1806 of yacc.c */ #line 1429 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 323: /* Line 1806 of yacc.c */ #line 1431 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 325: /* Line 1806 of yacc.c */ #line 1442 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 326: /* Line 1806 of yacc.c */ #line 1447 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); } break; case 327: /* Line 1806 of yacc.c */ #line 1449 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); } break; case 328: /* Line 1806 of yacc.c */ #line 1451 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); } break; case 329: /* Line 1806 of yacc.c */ #line 1453 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); } break; case 330: /* Line 1806 of yacc.c */ #line 1455 "parser.yy" { (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); } break; case 331: /* Line 1806 of yacc.c */ #line 1458 "parser.yy" { (yyval.decl) = DeclarationNode::newFuncSpecifier( DeclarationNode::Inline ); } break; case 332: /* Line 1806 of yacc.c */ #line 1460 "parser.yy" { (yyval.decl) = DeclarationNode::newFuncSpecifier( DeclarationNode::Fortran ); } break; case 333: /* Line 1806 of yacc.c */ #line 1462 "parser.yy" { (yyval.decl) = DeclarationNode::newFuncSpecifier( DeclarationNode::Noreturn ); } break; case 334: /* Line 1806 of yacc.c */ #line 1467 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); } break; case 335: /* Line 1806 of yacc.c */ #line 1469 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); } break; case 336: /* Line 1806 of yacc.c */ #line 1471 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); } break; case 337: /* Line 1806 of yacc.c */ #line 1473 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); } break; case 338: /* Line 1806 of yacc.c */ #line 1475 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Long ); } break; case 339: /* Line 1806 of yacc.c */ #line 1477 "parser.yy" { (yyval.decl) = DeclarationNode::newLength( DeclarationNode::Short ); } break; case 340: /* Line 1806 of yacc.c */ #line 1479 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Signed ); } break; case 341: /* Line 1806 of yacc.c */ #line 1481 "parser.yy" { (yyval.decl) = DeclarationNode::newSignedNess( DeclarationNode::Unsigned ); } break; case 342: /* Line 1806 of yacc.c */ #line 1483 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); } break; case 343: /* Line 1806 of yacc.c */ #line 1485 "parser.yy" { (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); } break; case 344: /* Line 1806 of yacc.c */ #line 1487 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Complex ); } break; case 345: /* Line 1806 of yacc.c */ #line 1489 "parser.yy" { (yyval.decl) = DeclarationNode::newComplexType( DeclarationNode::Imaginary ); } break; case 346: /* Line 1806 of yacc.c */ #line 1491 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Valist ); } break; case 347: /* Line 1806 of yacc.c */ #line 1493 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::Zero ); } break; case 348: /* Line 1806 of yacc.c */ #line 1495 "parser.yy" { (yyval.decl) = DeclarationNode::newBuiltinType( DeclarationNode::One ); } break; case 350: /* Line 1806 of yacc.c */ #line 1502 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 351: /* Line 1806 of yacc.c */ #line 1504 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 352: /* Line 1806 of yacc.c */ #line 1506 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 353: /* Line 1806 of yacc.c */ #line 1508 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); } break; case 355: /* Line 1806 of yacc.c */ #line 1514 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 357: /* Line 1806 of yacc.c */ #line 1521 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 358: /* Line 1806 of yacc.c */ #line 1523 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 359: /* Line 1806 of yacc.c */ #line 1525 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); } break; case 360: /* Line 1806 of yacc.c */ #line 1530 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (4)].decl); } break; case 361: /* Line 1806 of yacc.c */ #line 1532 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); } break; case 362: /* Line 1806 of yacc.c */ #line 1534 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); } break; case 363: /* Line 1806 of yacc.c */ #line 1536 "parser.yy" { (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 365: /* Line 1806 of yacc.c */ #line 1542 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 366: /* Line 1806 of yacc.c */ #line 1544 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 367: /* Line 1806 of yacc.c */ #line 1546 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 369: /* Line 1806 of yacc.c */ #line 1552 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 370: /* Line 1806 of yacc.c */ #line 1554 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 372: /* Line 1806 of yacc.c */ #line 1560 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 373: /* Line 1806 of yacc.c */ #line 1562 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 374: /* Line 1806 of yacc.c */ #line 1564 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 376: /* Line 1806 of yacc.c */ #line 1570 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 377: /* Line 1806 of yacc.c */ #line 1572 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 379: /* Line 1806 of yacc.c */ #line 1578 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 380: /* Line 1806 of yacc.c */ #line 1580 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 381: /* Line 1806 of yacc.c */ #line 1582 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 382: /* Line 1806 of yacc.c */ #line 1587 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); } break; case 383: /* Line 1806 of yacc.c */ #line 1589 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 384: /* Line 1806 of yacc.c */ #line 1591 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 389: /* Line 1806 of yacc.c */ #line 1606 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), nullptr, nullptr, (yyvsp[(4) - (5)].decl), true )->addQualifiers( (yyvsp[(2) - (5)].decl) ); } break; case 390: /* Line 1806 of yacc.c */ #line 1608 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(3) - (3)].tok) ); } break; case 391: /* Line 1806 of yacc.c */ #line 1610 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), (yyvsp[(3) - (7)].tok), nullptr, (yyvsp[(6) - (7)].decl), true )->addQualifiers( (yyvsp[(2) - (7)].decl) ); } break; case 392: /* Line 1806 of yacc.c */ #line 1612 "parser.yy" { (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (8)].aggKey), nullptr, (yyvsp[(4) - (8)].en), (yyvsp[(7) - (8)].decl), false )->addQualifiers( (yyvsp[(2) - (8)].decl) ); } break; case 394: /* Line 1806 of yacc.c */ #line 1618 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(3) - (3)].tok) ); (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (3)].aggKey), (yyvsp[(3) - (3)].tok), nullptr, nullptr, false )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 395: /* Line 1806 of yacc.c */ #line 1623 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 396: /* Line 1806 of yacc.c */ #line 1628 "parser.yy" { (yyval.aggKey) = DeclarationNode::Struct; } break; case 397: /* Line 1806 of yacc.c */ #line 1630 "parser.yy" { (yyval.aggKey) = DeclarationNode::Union; } break; case 398: /* Line 1806 of yacc.c */ #line 1635 "parser.yy" { (yyval.decl) = nullptr; } break; case 399: /* Line 1806 of yacc.c */ #line 1637 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 401: /* Line 1806 of yacc.c */ #line 1643 "parser.yy" { distExt( (yyvsp[(2) - (3)].decl) ); // mark all fields in list (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 402: /* Line 1806 of yacc.c */ #line 1648 "parser.yy" { (yyval.decl) = distAttr( (yyvsp[(1) - (3)].decl), (yyvsp[(2) - (3)].decl) ); } break; case 403: /* Line 1806 of yacc.c */ #line 1651 "parser.yy" { distExt( (yyvsp[(3) - (4)].decl) ); // mark all fields in list (yyval.decl) = distAttr( (yyvsp[(2) - (4)].decl), (yyvsp[(3) - (4)].decl) ); } break; case 405: /* Line 1806 of yacc.c */ #line 1660 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); } break; case 406: /* Line 1806 of yacc.c */ #line 1662 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); } break; case 407: /* Line 1806 of yacc.c */ #line 1664 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); } break; case 409: /* Line 1806 of yacc.c */ #line 1670 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(4) - (4)].decl)->addQualifiers( (yyvsp[(3) - (4)].decl) ) ); } break; case 410: /* Line 1806 of yacc.c */ #line 1675 "parser.yy" { (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ } break; case 411: /* Line 1806 of yacc.c */ #line 1677 "parser.yy" { (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); } break; case 412: /* Line 1806 of yacc.c */ #line 1680 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 413: /* Line 1806 of yacc.c */ #line 1683 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); } break; case 415: /* Line 1806 of yacc.c */ #line 1689 "parser.yy" { (yyval.en) = nullptr; } break; case 416: /* Line 1806 of yacc.c */ #line 1691 "parser.yy" { (yyval.en) = (yyvsp[(1) - (1)].en); } break; case 417: /* Line 1806 of yacc.c */ #line 1696 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 418: /* Line 1806 of yacc.c */ #line 1701 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( nullptr, (yyvsp[(4) - (6)].decl), true )->addQualifiers( (yyvsp[(2) - (6)].decl) ); } break; case 419: /* Line 1806 of yacc.c */ #line 1703 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(3) - (3)].tok) ); } break; case 420: /* Line 1806 of yacc.c */ #line 1705 "parser.yy" { (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(3) - (8)].tok), (yyvsp[(6) - (8)].decl), true )->addQualifiers( (yyvsp[(2) - (8)].decl) ); } break; case 422: /* Line 1806 of yacc.c */ #line 1711 "parser.yy" { typedefTable.makeTypedef( *(yyvsp[(3) - (3)].tok) ); (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(3) - (3)].tok), 0, false )->addQualifiers( (yyvsp[(2) - (3)].decl) ); } break; case 423: /* Line 1806 of yacc.c */ #line 1719 "parser.yy" { (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); } break; case 424: /* Line 1806 of yacc.c */ #line 1721 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); } break; case 425: /* Line 1806 of yacc.c */ #line 1726 "parser.yy" { (yyval.en) = nullptr; } break; case 426: /* Line 1806 of yacc.c */ #line 1728 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; case 427: /* Line 1806 of yacc.c */ #line 1735 "parser.yy" { (yyval.decl) = nullptr; } break; case 431: /* Line 1806 of yacc.c */ #line 1743 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 432: /* Line 1806 of yacc.c */ #line 1745 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 433: /* Line 1806 of yacc.c */ #line 1747 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 435: /* Line 1806 of yacc.c */ #line 1755 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 436: /* Line 1806 of yacc.c */ #line 1757 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 437: /* Line 1806 of yacc.c */ #line 1759 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); } break; case 439: /* Line 1806 of yacc.c */ #line 1765 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 440: /* Line 1806 of yacc.c */ #line 1770 "parser.yy" { (yyval.decl) = nullptr; } break; case 443: /* Line 1806 of yacc.c */ #line 1777 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); } break; case 446: /* Line 1806 of yacc.c */ #line 1784 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 447: /* Line 1806 of yacc.c */ #line 1786 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); } break; case 449: /* Line 1806 of yacc.c */ #line 1795 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 450: /* Line 1806 of yacc.c */ #line 1798 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); } break; case 451: /* Line 1806 of yacc.c */ #line 1800 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); } break; case 456: /* Line 1806 of yacc.c */ #line 1810 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 458: /* Line 1806 of yacc.c */ #line 1817 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].en) ? new InitializerNode( (yyvsp[(3) - (3)].en) ) : nullptr ); } break; case 459: /* Line 1806 of yacc.c */ #line 1822 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].en) ? new InitializerNode( (yyvsp[(3) - (3)].en) ) : nullptr ); } break; case 460: /* Line 1806 of yacc.c */ #line 1830 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addInitializer( (yyvsp[(2) - (2)].en) ? new InitializerNode( (yyvsp[(2) - (2)].en) ) : nullptr ); } break; case 461: /* Line 1806 of yacc.c */ #line 1832 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( (yyvsp[(3) - (3)].en) ? new InitializerNode( (yyvsp[(3) - (3)].en) ) : nullptr ); } break; case 462: /* Line 1806 of yacc.c */ #line 1841 "parser.yy" { (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 463: /* Line 1806 of yacc.c */ #line 1843 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); } break; case 475: /* Line 1806 of yacc.c */ #line 1868 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 478: /* Line 1806 of yacc.c */ #line 1878 "parser.yy" { (yyval.in) = nullptr; } break; case 479: /* Line 1806 of yacc.c */ #line 1880 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in); } break; case 480: /* Line 1806 of yacc.c */ #line 1882 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_maybeConstructed( false ); } break; case 481: /* Line 1806 of yacc.c */ #line 1886 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); } break; case 482: /* Line 1806 of yacc.c */ #line 1887 "parser.yy" { (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); } break; case 483: /* Line 1806 of yacc.c */ #line 1892 "parser.yy" { (yyval.in) = nullptr; } break; case 485: /* Line 1806 of yacc.c */ #line 1894 "parser.yy" { (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); } break; case 486: /* Line 1806 of yacc.c */ #line 1895 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_last( (yyvsp[(3) - (3)].in) ) ); } break; case 487: /* Line 1806 of yacc.c */ #line 1897 "parser.yy" { (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_last( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); } break; case 489: /* Line 1806 of yacc.c */ #line 1913 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(1) - (2)].tok) ) ); } break; case 491: /* Line 1806 of yacc.c */ #line 1919 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_last( (yyvsp[(2) - (2)].en) ) ); } break; case 492: /* Line 1806 of yacc.c */ #line 1925 "parser.yy" { (yyval.en) = new ExpressionNode( build_varref( (yyvsp[(2) - (2)].tok) ) ); } break; case 493: /* Line 1806 of yacc.c */ #line 1928 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 494: /* Line 1806 of yacc.c */ #line 1930 "parser.yy" { (yyval.en) = (yyvsp[(3) - (5)].en); } break; case 495: /* Line 1806 of yacc.c */ #line 1932 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ) ); } break; case 496: /* Line 1806 of yacc.c */ #line 1934 "parser.yy" { (yyval.en) = (yyvsp[(4) - (6)].en); } break; case 498: /* Line 1806 of yacc.c */ #line 1958 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 499: /* Line 1806 of yacc.c */ #line 1960 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 500: /* Line 1806 of yacc.c */ #line 1962 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); } break; case 502: /* Line 1806 of yacc.c */ #line 1968 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 503: /* Line 1806 of yacc.c */ #line 1970 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 504: /* Line 1806 of yacc.c */ #line 1975 "parser.yy" { (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 506: /* Line 1806 of yacc.c */ #line 1981 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); } break; case 507: /* Line 1806 of yacc.c */ #line 1986 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); } break; case 508: /* Line 1806 of yacc.c */ #line 1988 "parser.yy" { (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); } break; case 510: /* Line 1806 of yacc.c */ #line 1994 "parser.yy" { (yyval.tclass) = DeclarationNode::Otype; } break; case 511: /* Line 1806 of yacc.c */ #line 1996 "parser.yy" { (yyval.tclass) = DeclarationNode::Dtype; } break; case 512: /* Line 1806 of yacc.c */ #line 1998 "parser.yy" { (yyval.tclass) = DeclarationNode::Ftype; } break; case 513: /* Line 1806 of yacc.c */ #line 2000 "parser.yy" { (yyval.tclass) = DeclarationNode::Ttype; } break; case 514: /* Line 1806 of yacc.c */ #line 2005 "parser.yy" { (yyval.decl) = nullptr; } break; case 515: /* Line 1806 of yacc.c */ #line 2007 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl) ? (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ) : (yyvsp[(2) - (2)].decl); } break; case 516: /* Line 1806 of yacc.c */ #line 2012 "parser.yy" { typedefTable.openTrait( *(yyvsp[(2) - (5)].tok) ); (yyval.decl) = DeclarationNode::newTraitUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) ); } break; case 517: /* Line 1806 of yacc.c */ #line 2017 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (5)].decl); } break; case 518: /* Line 1806 of yacc.c */ #line 2019 "parser.yy" { (yyval.decl) = nullptr; } break; case 519: /* Line 1806 of yacc.c */ #line 2024 "parser.yy" { (yyval.en) = new ExpressionNode( build_typevalue( (yyvsp[(1) - (1)].decl) ) ); } break; case 521: /* Line 1806 of yacc.c */ #line 2027 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( new ExpressionNode( build_typevalue( (yyvsp[(3) - (3)].decl) ) ) ) ); } break; case 522: /* Line 1806 of yacc.c */ #line 2029 "parser.yy" { (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_last( (yyvsp[(3) - (3)].en) )); } break; case 523: /* Line 1806 of yacc.c */ #line 2034 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 524: /* Line 1806 of yacc.c */ #line 2036 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 525: /* Line 1806 of yacc.c */ #line 2038 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copySpecifiers( (yyvsp[(1) - (3)].decl) ) ); } break; case 526: /* Line 1806 of yacc.c */ #line 2043 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); } break; case 527: /* Line 1806 of yacc.c */ #line 2045 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); } break; case 528: /* Line 1806 of yacc.c */ #line 2050 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 ); } break; case 529: /* Line 1806 of yacc.c */ #line 2055 "parser.yy" { typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG ); (yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) ); } break; case 530: /* Line 1806 of yacc.c */ #line 2063 "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 531: /* Line 1806 of yacc.c */ #line 2068 "parser.yy" { typedefTable.enterTrait( *(yyvsp[(2) - (8)].tok) ); typedefTable.enterScope(); } break; case 532: /* Line 1806 of yacc.c */ #line 2073 "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 534: /* Line 1806 of yacc.c */ #line 2083 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); } break; case 537: /* Line 1806 of yacc.c */ #line 2093 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 538: /* Line 1806 of yacc.c */ #line 2098 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (1)].decl); } break; case 539: /* Line 1806 of yacc.c */ #line 2103 "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 540: /* Line 1806 of yacc.c */ #line 2111 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); } break; case 541: /* Line 1806 of yacc.c */ #line 2116 "parser.yy" { typedefTable.addToEnclosingScope2( TypedefTable::ID ); (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) ); } break; case 542: /* Line 1806 of yacc.c */ #line 2126 "parser.yy" {} break; case 543: /* Line 1806 of yacc.c */ #line 2128 "parser.yy" { parseTree = parseTree ? parseTree->appendList( (yyvsp[(1) - (1)].decl) ) : (yyvsp[(1) - (1)].decl); } break; case 545: /* Line 1806 of yacc.c */ #line 2134 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (3)].decl) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); } break; case 546: /* Line 1806 of yacc.c */ #line 2139 "parser.yy" { (yyval.decl) = nullptr; } break; case 550: /* Line 1806 of yacc.c */ #line 2147 "parser.yy" { (yyval.decl) = DeclarationNode::newAsmStmt( new StatementNode( build_asmstmt( false, (yyvsp[(3) - (5)].constant), 0 ) ) ); } break; case 551: /* Line 1806 of yacc.c */ #line 2151 "parser.yy" { linkageStack.push( linkage ); // handle nested extern "C"/"Cforall" linkage = LinkageSpec::linkageCheck( (yyvsp[(2) - (2)].tok) ); } break; case 552: /* Line 1806 of yacc.c */ #line 2156 "parser.yy" { linkage = linkageStack.top(); linkageStack.pop(); (yyval.decl) = (yyvsp[(5) - (6)].decl); } break; case 553: /* Line 1806 of yacc.c */ #line 2162 "parser.yy" { distExt( (yyvsp[(2) - (2)].decl) ); // mark all fields in list (yyval.decl) = (yyvsp[(2) - (2)].decl); } break; case 555: /* Line 1806 of yacc.c */ #line 2176 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 556: /* Line 1806 of yacc.c */ #line 2182 "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 557: /* Line 1806 of yacc.c */ #line 2191 "parser.yy" { typedefTable.addToEnclosingScope( TypedefTable::ID ); typedefTable.leaveScope(); (yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) ); } break; case 558: /* Line 1806 of yacc.c */ #line 2197 "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 559: /* Line 1806 of yacc.c */ #line 2203 "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 560: /* Line 1806 of yacc.c */ #line 2209 "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 561: /* Line 1806 of yacc.c */ #line 2215 "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 562: /* Line 1806 of yacc.c */ #line 2223 "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 563: /* Line 1806 of yacc.c */ #line 2229 "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 564: /* Line 1806 of yacc.c */ #line 2237 "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 565: /* Line 1806 of yacc.c */ #line 2243 "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 569: /* Line 1806 of yacc.c */ #line 2258 "parser.yy" { (yyval.en) = new ExpressionNode( build_range( (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ) ); } break; case 570: /* Line 1806 of yacc.c */ #line 2263 "parser.yy" { (yyval.decl) = nullptr; } break; case 571: /* Line 1806 of yacc.c */ #line 2265 "parser.yy" { DeclarationNode * name = new DeclarationNode(); name->asmName = (yyvsp[(3) - (5)].constant); (yyval.decl) = name->addQualifiers( (yyvsp[(5) - (5)].decl) ); } break; case 572: /* Line 1806 of yacc.c */ #line 2274 "parser.yy" { (yyval.decl) = nullptr; } break; case 575: /* Line 1806 of yacc.c */ #line 2281 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 576: /* Line 1806 of yacc.c */ #line 2286 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (6)].decl); } break; case 578: /* Line 1806 of yacc.c */ #line 2292 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); } break; case 579: /* Line 1806 of yacc.c */ #line 2297 "parser.yy" { (yyval.decl) = nullptr; } break; case 580: /* Line 1806 of yacc.c */ #line 2299 "parser.yy" { (yyval.decl) = DeclarationNode::newAttribute( (yyvsp[(1) - (1)].tok) ); } break; case 581: /* Line 1806 of yacc.c */ #line 2301 "parser.yy" { (yyval.decl) = DeclarationNode::newAttribute( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); } break; case 585: /* Line 1806 of yacc.c */ #line 2309 "parser.yy" { (yyval.tok) = Token{ new string( "__const__" ) }; } break; case 586: /* Line 1806 of yacc.c */ #line 2344 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 588: /* Line 1806 of yacc.c */ #line 2347 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 589: /* Line 1806 of yacc.c */ #line 2349 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 590: /* Line 1806 of yacc.c */ #line 2354 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 591: /* Line 1806 of yacc.c */ #line 2359 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 592: /* Line 1806 of yacc.c */ #line 2364 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 593: /* Line 1806 of yacc.c */ #line 2366 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 594: /* Line 1806 of yacc.c */ #line 2368 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(4) - (4)].decl) ); } break; case 595: /* Line 1806 of yacc.c */ #line 2373 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 596: /* Line 1806 of yacc.c */ #line 2375 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 597: /* Line 1806 of yacc.c */ #line 2377 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 598: /* Line 1806 of yacc.c */ #line 2379 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 599: /* Line 1806 of yacc.c */ #line 2384 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 600: /* Line 1806 of yacc.c */ #line 2386 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 601: /* Line 1806 of yacc.c */ #line 2395 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 603: /* Line 1806 of yacc.c */ #line 2398 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 604: /* Line 1806 of yacc.c */ #line 2403 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 605: /* Line 1806 of yacc.c */ #line 2405 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 606: /* Line 1806 of yacc.c */ #line 2407 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 607: /* Line 1806 of yacc.c */ #line 2412 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 608: /* Line 1806 of yacc.c */ #line 2414 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 609: /* Line 1806 of yacc.c */ #line 2416 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 610: /* Line 1806 of yacc.c */ #line 2421 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 611: /* Line 1806 of yacc.c */ #line 2423 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 612: /* Line 1806 of yacc.c */ #line 2425 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 616: /* Line 1806 of yacc.c */ #line 2443 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); } break; case 617: /* Line 1806 of yacc.c */ #line 2445 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 618: /* Line 1806 of yacc.c */ #line 2447 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 619: /* Line 1806 of yacc.c */ #line 2452 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 620: /* Line 1806 of yacc.c */ #line 2454 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 621: /* Line 1806 of yacc.c */ #line 2456 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 622: /* Line 1806 of yacc.c */ #line 2461 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 623: /* Line 1806 of yacc.c */ #line 2463 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 624: /* Line 1806 of yacc.c */ #line 2465 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 625: /* Line 1806 of yacc.c */ #line 2480 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 627: /* Line 1806 of yacc.c */ #line 2483 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 628: /* Line 1806 of yacc.c */ #line 2485 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 630: /* Line 1806 of yacc.c */ #line 2491 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 631: /* Line 1806 of yacc.c */ #line 2496 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 632: /* Line 1806 of yacc.c */ #line 2498 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 633: /* Line 1806 of yacc.c */ #line 2500 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(4) - (4)].decl) ); } break; case 634: /* Line 1806 of yacc.c */ #line 2505 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 635: /* Line 1806 of yacc.c */ #line 2507 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 636: /* Line 1806 of yacc.c */ #line 2509 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 637: /* Line 1806 of yacc.c */ #line 2511 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 638: /* Line 1806 of yacc.c */ #line 2516 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 639: /* Line 1806 of yacc.c */ #line 2518 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 640: /* Line 1806 of yacc.c */ #line 2520 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 641: /* Line 1806 of yacc.c */ #line 2530 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 643: /* Line 1806 of yacc.c */ #line 2533 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 644: /* Line 1806 of yacc.c */ #line 2535 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 645: /* Line 1806 of yacc.c */ #line 2540 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 646: /* Line 1806 of yacc.c */ #line 2542 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 647: /* Line 1806 of yacc.c */ #line 2544 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(4) - (4)].decl) ); } break; case 648: /* Line 1806 of yacc.c */ #line 2549 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 649: /* Line 1806 of yacc.c */ #line 2551 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 650: /* Line 1806 of yacc.c */ #line 2553 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 651: /* Line 1806 of yacc.c */ #line 2555 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 652: /* Line 1806 of yacc.c */ #line 2560 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 653: /* Line 1806 of yacc.c */ #line 2562 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 654: /* Line 1806 of yacc.c */ #line 2564 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 655: /* Line 1806 of yacc.c */ #line 2577 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 657: /* Line 1806 of yacc.c */ #line 2580 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 658: /* Line 1806 of yacc.c */ #line 2582 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 659: /* Line 1806 of yacc.c */ #line 2587 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 660: /* Line 1806 of yacc.c */ #line 2592 "parser.yy" { typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) ); (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); } break; case 661: /* Line 1806 of yacc.c */ #line 2600 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 662: /* Line 1806 of yacc.c */ #line 2602 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 663: /* Line 1806 of yacc.c */ #line 2604 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(4) - (4)].decl) ); } break; case 664: /* Line 1806 of yacc.c */ #line 2609 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 665: /* Line 1806 of yacc.c */ #line 2611 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 666: /* Line 1806 of yacc.c */ #line 2616 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); } break; case 667: /* Line 1806 of yacc.c */ #line 2618 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 669: /* Line 1806 of yacc.c */ #line 2636 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 670: /* Line 1806 of yacc.c */ #line 2638 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 671: /* Line 1806 of yacc.c */ #line 2643 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 672: /* Line 1806 of yacc.c */ #line 2645 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 673: /* Line 1806 of yacc.c */ #line 2647 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 674: /* Line 1806 of yacc.c */ #line 2649 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 675: /* Line 1806 of yacc.c */ #line 2651 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(4) - (4)].decl) ); } break; case 677: /* Line 1806 of yacc.c */ #line 2657 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 678: /* Line 1806 of yacc.c */ #line 2659 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 679: /* Line 1806 of yacc.c */ #line 2661 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 680: /* Line 1806 of yacc.c */ #line 2666 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 681: /* Line 1806 of yacc.c */ #line 2668 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 682: /* Line 1806 of yacc.c */ #line 2670 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 683: /* Line 1806 of yacc.c */ #line 2676 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 684: /* Line 1806 of yacc.c */ #line 2678 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); } break; case 686: /* Line 1806 of yacc.c */ #line 2684 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); } break; case 687: /* Line 1806 of yacc.c */ #line 2686 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( 0 ); } break; case 688: /* Line 1806 of yacc.c */ #line 2688 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); } break; case 689: /* Line 1806 of yacc.c */ #line 2690 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); } break; case 691: /* Line 1806 of yacc.c */ #line 2725 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 692: /* Line 1806 of yacc.c */ #line 2727 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 693: /* Line 1806 of yacc.c */ #line 2732 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( nullptr ); } break; case 694: /* Line 1806 of yacc.c */ #line 2734 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 695: /* Line 1806 of yacc.c */ #line 2736 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( nullptr ) ); } break; case 696: /* Line 1806 of yacc.c */ #line 2738 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 697: /* Line 1806 of yacc.c */ #line 2740 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(4) - (4)].decl) ); } break; case 699: /* Line 1806 of yacc.c */ #line 2746 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 700: /* Line 1806 of yacc.c */ #line 2748 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 701: /* Line 1806 of yacc.c */ #line 2750 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 702: /* Line 1806 of yacc.c */ #line 2755 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, nullptr, (yyvsp[(3) - (5)].decl), nullptr ); } break; case 703: /* Line 1806 of yacc.c */ #line 2757 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 704: /* Line 1806 of yacc.c */ #line 2759 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 706: /* Line 1806 of yacc.c */ #line 2766 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); } break; case 708: /* Line 1806 of yacc.c */ #line 2777 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); } break; case 709: /* Line 1806 of yacc.c */ #line 2780 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 710: /* Line 1806 of yacc.c */ #line 2782 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); } break; case 711: /* Line 1806 of yacc.c */ #line 2785 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 712: /* Line 1806 of yacc.c */ #line 2787 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); } break; case 713: /* Line 1806 of yacc.c */ #line 2789 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); } break; case 715: /* Line 1806 of yacc.c */ #line 2804 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 716: /* Line 1806 of yacc.c */ #line 2806 "parser.yy" { (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); } break; case 717: /* Line 1806 of yacc.c */ #line 2811 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( 0 ); } break; case 718: /* Line 1806 of yacc.c */ #line 2813 "parser.yy" { (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); } break; case 719: /* Line 1806 of yacc.c */ #line 2815 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); } break; case 720: /* Line 1806 of yacc.c */ #line 2817 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); } break; case 721: /* Line 1806 of yacc.c */ #line 2819 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(4) - (4)].decl) ); } break; case 723: /* Line 1806 of yacc.c */ #line 2825 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 724: /* Line 1806 of yacc.c */ #line 2827 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); } break; case 725: /* Line 1806 of yacc.c */ #line 2829 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 726: /* Line 1806 of yacc.c */ #line 2834 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); } break; case 727: /* Line 1806 of yacc.c */ #line 2836 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (3)].decl); } break; case 730: /* Line 1806 of yacc.c */ #line 2846 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 733: /* Line 1806 of yacc.c */ #line 2857 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 734: /* Line 1806 of yacc.c */ #line 2859 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 735: /* Line 1806 of yacc.c */ #line 2861 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 736: /* Line 1806 of yacc.c */ #line 2863 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 737: /* Line 1806 of yacc.c */ #line 2865 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 738: /* Line 1806 of yacc.c */ #line 2867 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 739: /* Line 1806 of yacc.c */ #line 2874 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 740: /* Line 1806 of yacc.c */ #line 2876 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 741: /* Line 1806 of yacc.c */ #line 2878 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 742: /* Line 1806 of yacc.c */ #line 2880 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 743: /* Line 1806 of yacc.c */ #line 2882 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 744: /* Line 1806 of yacc.c */ #line 2885 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 745: /* Line 1806 of yacc.c */ #line 2887 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 746: /* Line 1806 of yacc.c */ #line 2889 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); } break; case 747: /* Line 1806 of yacc.c */ #line 2891 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); } break; case 748: /* Line 1806 of yacc.c */ #line 2893 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 749: /* Line 1806 of yacc.c */ #line 2898 "parser.yy" { (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); } break; case 750: /* Line 1806 of yacc.c */ #line 2900 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); } break; case 751: /* Line 1806 of yacc.c */ #line 2905 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); } break; case 752: /* Line 1806 of yacc.c */ #line 2907 "parser.yy" { (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); } break; case 754: /* Line 1806 of yacc.c */ #line 2934 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); } break; case 758: /* Line 1806 of yacc.c */ #line 2945 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 759: /* Line 1806 of yacc.c */ #line 2947 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 760: /* Line 1806 of yacc.c */ #line 2949 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 761: /* Line 1806 of yacc.c */ #line 2951 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 762: /* Line 1806 of yacc.c */ #line 2953 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); } break; case 763: /* Line 1806 of yacc.c */ #line 2955 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); } break; case 764: /* Line 1806 of yacc.c */ #line 2962 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 765: /* Line 1806 of yacc.c */ #line 2964 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 766: /* Line 1806 of yacc.c */ #line 2966 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 767: /* Line 1806 of yacc.c */ #line 2968 "parser.yy" { (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 768: /* Line 1806 of yacc.c */ #line 2970 "parser.yy" { (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( nullptr, nullptr, false ) ); } break; case 769: /* Line 1806 of yacc.c */ #line 2972 "parser.yy" { (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); } break; case 770: /* Line 1806 of yacc.c */ #line 2977 "parser.yy" { (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); } break; case 771: /* Line 1806 of yacc.c */ #line 2984 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 772: /* Line 1806 of yacc.c */ #line 2986 "parser.yy" { (yyval.decl) = DeclarationNode::newFunction( nullptr, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), nullptr ); } break; case 775: /* Line 1806 of yacc.c */ #line 3010 "parser.yy" { (yyval.en) = nullptr; } break; case 776: /* Line 1806 of yacc.c */ #line 3012 "parser.yy" { (yyval.en) = (yyvsp[(2) - (2)].en); } break; /* Line 1806 of yacc.c */ #line 9570 "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 3015 "parser.yy" // ----end of grammar---- extern char *yytext; void yyerror( const char * ) { cout << "Error "; if ( yyfilename ) { cout << "in file " << yyfilename << " "; } // if cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << endl; } // Local Variables: // // mode: c++ // // tab-width: 4 // // compile-command: "make install" // // End: //