/* A Bison parser, made by GNU Bison 2.5. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see . */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output. */
#define YYBISON 1
/* Bison version. */
#define YYBISON_VERSION "2.5"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* Using locations. */
#define YYLSP_NEEDED 0
/* Copy the first part of user declarations. */
/* Line 268 of yacc.c */
#line 44 "parser.yy"
#define YYDEBUG_LEXER_TEXT (yylval) // lexer loads this up each time
#define YYDEBUG 1 // get the pretty debugging code to compile
extern char *yytext;
#undef __GNUC_MINOR__
#include
#include
#include "TypedefTable.h"
#include "lex.h"
#include "ParseNode.h"
#include "TypeData.h"
#include "LinkageSpec.h"
DeclarationNode *theTree = 0; // the resulting parse tree
LinkageSpec::Type linkage = LinkageSpec::Cforall;
std::stack< LinkageSpec::Type > linkageStack;
TypedefTable typedefTable;
/* Line 268 of yacc.c */
#line 93 "Parser/parser.cc"
/* Enabling traces. */
#ifndef YYDEBUG
# define YYDEBUG 1
#endif
/* Enabling verbose error messages. */
#ifdef YYERROR_VERBOSE
# undef YYERROR_VERBOSE
# define YYERROR_VERBOSE 1
#else
# define YYERROR_VERBOSE 0
#endif
/* Enabling the token table. */
#ifndef YYTOKEN_TABLE
# define YYTOKEN_TABLE 0
#endif
/* Tokens. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
/* Put the tokens into the symbol table, so that GDB and other debuggers
know about them. */
enum yytokentype {
TYPEDEF = 258,
AUTO = 259,
EXTERN = 260,
REGISTER = 261,
STATIC = 262,
INLINE = 263,
FORTRAN = 264,
CONST = 265,
VOLATILE = 266,
RESTRICT = 267,
FORALL = 268,
LVALUE = 269,
VOID = 270,
CHAR = 271,
SHORT = 272,
INT = 273,
LONG = 274,
FLOAT = 275,
DOUBLE = 276,
SIGNED = 277,
UNSIGNED = 278,
BOOL = 279,
COMPLEX = 280,
IMAGINARY = 281,
TYPEOF = 282,
LABEL = 283,
ENUM = 284,
STRUCT = 285,
UNION = 286,
TYPE = 287,
FTYPE = 288,
DTYPE = 289,
CONTEXT = 290,
SIZEOF = 291,
ATTRIBUTE = 292,
EXTENSION = 293,
IF = 294,
ELSE = 295,
SWITCH = 296,
CASE = 297,
DEFAULT = 298,
DO = 299,
WHILE = 300,
FOR = 301,
BREAK = 302,
CONTINUE = 303,
GOTO = 304,
RETURN = 305,
CHOOSE = 306,
FALLTHRU = 307,
TRY = 308,
CATCH = 309,
FINALLY = 310,
THROW = 311,
ASM = 312,
ALIGNAS = 313,
ALIGNOF = 314,
ATOMIC = 315,
GENERIC = 316,
NORETURN = 317,
STATICASSERT = 318,
THREADLOCAL = 319,
IDENTIFIER = 320,
QUOTED_IDENTIFIER = 321,
TYPEDEFname = 322,
TYPEGENname = 323,
ATTR_IDENTIFIER = 324,
ATTR_TYPEDEFname = 325,
ATTR_TYPEGENname = 326,
INTEGERconstant = 327,
FLOATINGconstant = 328,
CHARACTERconstant = 329,
STRINGliteral = 330,
ZERO = 331,
ONE = 332,
ARROW = 333,
ICR = 334,
DECR = 335,
LS = 336,
RS = 337,
LE = 338,
GE = 339,
EQ = 340,
NE = 341,
ANDAND = 342,
OROR = 343,
ELLIPSIS = 344,
MULTassign = 345,
DIVassign = 346,
MODassign = 347,
PLUSassign = 348,
MINUSassign = 349,
LSassign = 350,
RSassign = 351,
ANDassign = 352,
ERassign = 353,
ORassign = 354,
THEN = 355
};
#endif
/* Tokens. */
#define TYPEDEF 258
#define AUTO 259
#define EXTERN 260
#define REGISTER 261
#define STATIC 262
#define INLINE 263
#define FORTRAN 264
#define CONST 265
#define VOLATILE 266
#define RESTRICT 267
#define FORALL 268
#define LVALUE 269
#define VOID 270
#define CHAR 271
#define SHORT 272
#define INT 273
#define LONG 274
#define FLOAT 275
#define DOUBLE 276
#define SIGNED 277
#define UNSIGNED 278
#define BOOL 279
#define COMPLEX 280
#define IMAGINARY 281
#define TYPEOF 282
#define LABEL 283
#define ENUM 284
#define STRUCT 285
#define UNION 286
#define TYPE 287
#define FTYPE 288
#define DTYPE 289
#define CONTEXT 290
#define SIZEOF 291
#define ATTRIBUTE 292
#define EXTENSION 293
#define IF 294
#define ELSE 295
#define SWITCH 296
#define CASE 297
#define DEFAULT 298
#define DO 299
#define WHILE 300
#define FOR 301
#define BREAK 302
#define CONTINUE 303
#define GOTO 304
#define RETURN 305
#define CHOOSE 306
#define FALLTHRU 307
#define TRY 308
#define CATCH 309
#define FINALLY 310
#define THROW 311
#define ASM 312
#define ALIGNAS 313
#define ALIGNOF 314
#define ATOMIC 315
#define GENERIC 316
#define NORETURN 317
#define STATICASSERT 318
#define THREADLOCAL 319
#define IDENTIFIER 320
#define QUOTED_IDENTIFIER 321
#define TYPEDEFname 322
#define TYPEGENname 323
#define ATTR_IDENTIFIER 324
#define ATTR_TYPEDEFname 325
#define ATTR_TYPEGENname 326
#define INTEGERconstant 327
#define FLOATINGconstant 328
#define CHARACTERconstant 329
#define STRINGliteral 330
#define ZERO 331
#define ONE 332
#define ARROW 333
#define ICR 334
#define DECR 335
#define LS 336
#define RS 337
#define LE 338
#define GE 339
#define EQ 340
#define NE 341
#define ANDAND 342
#define OROR 343
#define ELLIPSIS 344
#define MULTassign 345
#define DIVassign 346
#define MODassign 347
#define PLUSassign 348
#define MINUSassign 349
#define LSassign 350
#define RSassign 351
#define ANDassign 352
#define ERassign 353
#define ORassign 354
#define THEN 355
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
typedef union YYSTYPE
{
/* Line 293 of yacc.c */
#line 108 "parser.yy"
Token tok;
ParseNode *pn;
ExpressionNode *en;
DeclarationNode *decl;
DeclarationNode::Aggregate aggKey;
DeclarationNode::TypeClass tclass;
StatementNode *sn;
ConstantNode *constant;
LabelNode *label;
InitializerNode *in;
bool flag;
/* Line 293 of yacc.c */
#line 345 "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 357 "Parser/parser.cc"
#ifdef short
# undef short
#endif
#ifdef YYTYPE_UINT8
typedef YYTYPE_UINT8 yytype_uint8;
#else
typedef unsigned char yytype_uint8;
#endif
#ifdef YYTYPE_INT8
typedef YYTYPE_INT8 yytype_int8;
#elif (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
typedef signed char yytype_int8;
#else
typedef short int yytype_int8;
#endif
#ifdef YYTYPE_UINT16
typedef YYTYPE_UINT16 yytype_uint16;
#else
typedef unsigned short int yytype_uint16;
#endif
#ifdef YYTYPE_INT16
typedef YYTYPE_INT16 yytype_int16;
#else
typedef short int yytype_int16;
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned int
# endif
#endif
#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include /* INFRINGES ON USER NAME SPACE */
# define YY_(msgid) dgettext ("bison-runtime", msgid)
# endif
# endif
# ifndef YY_
# define YY_(msgid) msgid
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(e) ((void) (e))
#else
# define YYUSE(e) /* empty */
#endif
/* Identity function, used to suppress warnings about constant conditions. */
#ifndef lint
# define YYID(n) (n)
#else
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static int
YYID (int yyi)
#else
static int
YYID (yyi)
int yyi;
#endif
{
return yyi;
}
#endif
#if ! defined yyoverflow || YYERROR_VERBOSE
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_USE_ALLOCA
# if YYSTACK_USE_ALLOCA
# ifdef __GNUC__
# define YYSTACK_ALLOC __builtin_alloca
# elif defined __BUILTIN_VA_ARG_INCR
# include /* INFRINGES ON USER NAME SPACE */
# elif defined _AIX
# define YYSTACK_ALLOC __alloca
# elif defined _MSC_VER
# include /* INFRINGES ON USER NAME SPACE */
# define alloca _alloca
# else
# define YYSTACK_ALLOC alloca
# if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
# include /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# endif
# endif
# endif
# ifdef YYSTACK_ALLOC
/* Pacify GCC's `empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
#endif /* ! defined yyoverflow || YYERROR_VERBOSE */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yytype_int16 yyss_alloc;
YYSTYPE yyvs_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYSIZE_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / sizeof (*yyptr); \
} \
while (YYID (0))
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from FROM to TO. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(To, From, Count) \
__builtin_memcpy (To, From, (Count) * sizeof (*(From)))
# else
# define YYCOPY(To, From, Count) \
do \
{ \
YYSIZE_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(To)[yyi] = (From)[yyi]; \
} \
while (YYID (0))
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 246
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 11295
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 125
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 237
/* YYNRULES -- Number of rules. */
#define YYNRULES 739
/* YYNRULES -- Number of states. */
#define YYNSTATES 1527
/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */
#define YYUNDEFTOK 2
#define YYMAXUTOK 355
#define YYTRANSLATE(YYX) \
((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)
/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */
static const yytype_uint8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 110, 2, 2, 2, 117, 112, 2,
101, 102, 111, 113, 108, 114, 105, 116, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 109, 124,
118, 123, 119, 122, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 103, 2, 104, 120, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 106, 121, 107, 115, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100
};
#if YYDEBUG
/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in
YYRHS. */
static const yytype_uint16 yyprhs[] =
{
0, 0, 3, 4, 5, 7, 9, 11, 13, 15,
17, 19, 21, 23, 25, 27, 29, 32, 34, 36,
38, 40, 44, 48, 50, 57, 62, 66, 74, 78,
86, 89, 92, 100, 102, 106, 107, 109, 113, 121,
131, 133, 137, 139, 143, 151, 155, 163, 165, 168,
171, 174, 177, 180, 183, 186, 191, 193, 198, 203,
206, 211, 214, 216, 218, 220, 222, 224, 229, 234,
236, 240, 244, 248, 250, 254, 258, 260, 264, 268,
270, 274, 278, 282, 286, 288, 292, 296, 298, 302,
304, 308, 310, 314, 316, 320, 322, 326, 328, 334,
339, 345, 347, 349, 353, 357, 360, 361, 363, 366,
372, 379, 387, 389, 393, 395, 397, 399, 401, 403,
405, 407, 409, 411, 413, 415, 419, 420, 422, 424,
426, 428, 430, 432, 434, 436, 438, 443, 446, 454,
456, 460, 462, 465, 467, 470, 472, 475, 478, 484,
492, 498, 508, 514, 524, 526, 530, 532, 534, 538,
542, 545, 547, 550, 553, 554, 556, 559, 563, 564,
566, 569, 573, 577, 582, 583, 585, 587, 590, 596,
604, 611, 618, 623, 627, 632, 635, 639, 642, 646,
650, 654, 657, 661, 665, 670, 672, 678, 685, 695,
706, 709, 711, 714, 717, 720, 722, 729, 738, 749,
762, 777, 778, 780, 781, 783, 785, 789, 794, 802,
803, 805, 809, 811, 815, 817, 819, 821, 825, 827,
829, 831, 835, 836, 838, 842, 847, 849, 853, 855,
857, 861, 865, 869, 873, 877, 880, 884, 891, 895,
899, 904, 906, 909, 912, 916, 922, 931, 939, 947,
953, 963, 966, 969, 975, 979, 985, 990, 994, 999,
1004, 1012, 1016, 1020, 1024, 1028, 1033, 1040, 1042, 1044,
1046, 1048, 1050, 1052, 1054, 1056, 1057, 1059, 1061, 1064,
1066, 1068, 1070, 1072, 1074, 1076, 1078, 1079, 1085, 1087,
1090, 1094, 1096, 1099, 1101, 1103, 1105, 1107, 1109, 1111,
1113, 1115, 1117, 1119, 1121, 1123, 1125, 1127, 1129, 1131,
1133, 1135, 1137, 1139, 1141, 1143, 1146, 1149, 1153, 1157,
1159, 1163, 1165, 1168, 1171, 1174, 1179, 1184, 1189, 1194,
1196, 1199, 1202, 1206, 1208, 1211, 1214, 1216, 1219, 1222,
1226, 1228, 1231, 1234, 1236, 1238, 1243, 1246, 1252, 1260,
1263, 1266, 1269, 1271, 1274, 1277, 1281, 1284, 1288, 1290,
1293, 1297, 1300, 1303, 1308, 1309, 1311, 1314, 1317, 1319,
1320, 1322, 1325, 1328, 1334, 1341, 1344, 1347, 1352, 1353,
1356, 1357, 1359, 1361, 1363, 1369, 1375, 1381, 1383, 1389,
1395, 1405, 1407, 1413, 1414, 1416, 1418, 1424, 1426, 1428,
1434, 1440, 1442, 1446, 1450, 1455, 1457, 1459, 1461, 1463,
1466, 1468, 1472, 1476, 1478, 1481, 1483, 1487, 1489, 1491,
1493, 1495, 1497, 1499, 1501, 1503, 1505, 1507, 1509, 1512,
1514, 1516, 1518, 1521, 1522, 1525, 1527, 1532, 1534, 1537,
1541, 1546, 1549, 1552, 1554, 1557, 1560, 1566, 1572, 1580,
1587, 1589, 1592, 1595, 1599, 1601, 1604, 1607, 1612, 1615,
1620, 1621, 1626, 1629, 1631, 1633, 1635, 1636, 1639, 1645,
1651, 1665, 1667, 1669, 1673, 1677, 1680, 1684, 1688, 1691,
1696, 1698, 1705, 1715, 1716, 1728, 1730, 1734, 1738, 1742,
1744, 1746, 1752, 1755, 1761, 1762, 1764, 1766, 1770, 1771,
1773, 1775, 1777, 1779, 1780, 1787, 1790, 1792, 1795, 1800,
1803, 1807, 1811, 1815, 1820, 1826, 1832, 1838, 1845, 1847,
1849, 1851, 1855, 1856, 1862, 1863, 1865, 1867, 1870, 1877,
1879, 1883, 1884, 1886, 1891, 1893, 1895, 1897, 1899, 1902,
1904, 1907, 1910, 1912, 1916, 1919, 1923, 1927, 1930, 1935,
1940, 1944, 1953, 1957, 1960, 1962, 1965, 1972, 1981, 1985,
1988, 1992, 1996, 2001, 2006, 2010, 2012, 2014, 2016, 2021,
2028, 2032, 2035, 2039, 2043, 2048, 2053, 2057, 2060, 2062,
2065, 2068, 2070, 2074, 2077, 2081, 2085, 2088, 2093, 2098,
2102, 2109, 2118, 2122, 2125, 2127, 2130, 2133, 2136, 2140,
2144, 2147, 2152, 2157, 2161, 2168, 2177, 2181, 2184, 2186,
2189, 2192, 2194, 2196, 2199, 2203, 2207, 2210, 2215, 2222,
2231, 2233, 2236, 2239, 2241, 2244, 2247, 2251, 2255, 2257,
2262, 2267, 2271, 2277, 2286, 2290, 2293, 2297, 2299, 2305,
2311, 2318, 2325, 2327, 2330, 2333, 2335, 2338, 2341, 2345,
2349, 2351, 2356, 2361, 2365, 2371, 2380, 2384, 2386, 2389,
2391, 2394, 2401, 2407, 2414, 2422, 2430, 2432, 2435, 2438,
2440, 2443, 2446, 2450, 2454, 2456, 2461, 2466, 2470, 2479,
2483, 2485, 2487, 2490, 2492, 2494, 2497, 2501, 2504, 2508,
2511, 2515, 2519, 2522, 2527, 2531, 2534, 2538, 2541, 2546,
2550, 2553, 2560, 2567, 2574, 2582, 2584, 2587, 2589, 2591,
2593, 2596, 2600, 2603, 2607, 2610, 2614, 2618, 2623, 2626,
2630, 2635, 2638, 2644, 2650, 2657, 2664, 2665, 2667, 2668
};
/* YYRHS -- A `-1'-separated list of the rules' RHS. */
static const yytype_int16 yyrhs[] =
{
290, 0, -1, -1, -1, 72, -1, 73, -1, 74,
-1, 65, -1, 69, -1, 132, -1, 65, -1, 69,
-1, 65, -1, 76, -1, 77, -1, 75, -1, 133,
75, -1, 65, -1, 132, -1, 128, -1, 133, -1,
101, 160, 102, -1, 101, 164, 102, -1, 134, -1,
135, 103, 126, 155, 127, 104, -1, 135, 101, 136,
102, -1, 135, 105, 131, -1, 135, 105, 103, 126,
138, 127, 104, -1, 135, 78, 131, -1, 135, 78,
103, 126, 138, 127, 104, -1, 135, 79, -1, 135,
80, -1, 101, 263, 102, 106, 267, 360, 107, -1,
137, -1, 136, 108, 137, -1, -1, 155, -1, 131,
109, 155, -1, 103, 126, 155, 127, 104, 109, 155,
-1, 103, 126, 155, 108, 158, 127, 104, 109, 155,
-1, 139, -1, 138, 108, 139, -1, 131, -1, 131,
105, 139, -1, 131, 105, 103, 126, 138, 127, 104,
-1, 131, 78, 139, -1, 131, 78, 103, 126, 138,
127, 104, -1, 135, -1, 79, 140, -1, 80, 140,
-1, 38, 142, -1, 141, 142, -1, 110, 142, -1,
111, 142, -1, 36, 140, -1, 36, 101, 263, 102,
-1, 69, -1, 69, 101, 264, 102, -1, 69, 101,
137, 102, -1, 59, 140, -1, 59, 101, 263, 102,
-1, 87, 131, -1, 112, -1, 113, -1, 114, -1,
115, -1, 140, -1, 101, 263, 102, 142, -1, 101,
263, 102, 157, -1, 142, -1, 143, 111, 142, -1,
143, 116, 142, -1, 143, 117, 142, -1, 143, -1,
144, 113, 143, -1, 144, 114, 143, -1, 144, -1,
145, 81, 144, -1, 145, 82, 144, -1, 145, -1,
146, 118, 145, -1, 146, 119, 145, -1, 146, 83,
145, -1, 146, 84, 145, -1, 146, -1, 147, 85,
146, -1, 147, 86, 146, -1, 147, -1, 148, 112,
147, -1, 148, -1, 149, 120, 148, -1, 149, -1,
150, 121, 149, -1, 150, -1, 151, 87, 150, -1,
151, -1, 152, 88, 151, -1, 152, -1, 152, 122,
160, 109, 153, -1, 152, 122, 109, 153, -1, 152,
122, 160, 109, 157, -1, 153, -1, 153, -1, 140,
123, 155, -1, 140, 159, 155, -1, 157, 361, -1,
-1, 155, -1, 103, 104, -1, 103, 126, 155, 127,
104, -1, 103, 126, 108, 158, 127, 104, -1, 103,
126, 155, 108, 158, 127, 104, -1, 156, -1, 158,
108, 156, -1, 90, -1, 91, -1, 92, -1, 93,
-1, 94, -1, 95, -1, 96, -1, 97, -1, 98,
-1, 99, -1, 155, -1, 160, 108, 155, -1, -1,
160, -1, 163, -1, 164, -1, 168, -1, 169, -1,
181, -1, 183, -1, 184, -1, 189, -1, 131, 109,
300, 162, -1, 106, 107, -1, 106, 126, 126, 200,
165, 127, 107, -1, 166, -1, 165, 126, 166, -1,
202, -1, 38, 202, -1, 296, -1, 162, 127, -1,
162, -1, 167, 162, -1, 161, 124, -1, 39, 101,
160, 102, 162, -1, 39, 101, 160, 102, 162, 40,
162, -1, 41, 101, 160, 102, 174, -1, 41, 101,
160, 102, 106, 126, 196, 175, 107, -1, 51, 101,
160, 102, 174, -1, 51, 101, 160, 102, 106, 126,
196, 177, 107, -1, 154, -1, 154, 89, 154, -1,
298, -1, 170, -1, 171, 108, 170, -1, 42, 171,
109, -1, 43, 109, -1, 172, -1, 173, 172, -1,
173, 162, -1, -1, 176, -1, 173, 167, -1, 176,
173, 167, -1, -1, 178, -1, 173, 180, -1, 173,
167, 179, -1, 178, 173, 180, -1, 178, 173, 167,
179, -1, -1, 180, -1, 52, -1, 52, 124, -1,
45, 101, 160, 102, 162, -1, 44, 162, 45, 101,
160, 102, 124, -1, 46, 101, 126, 182, 102, 162,
-1, 161, 127, 124, 161, 124, 161, -1, 202, 161,
124, 161, -1, 49, 131, 124, -1, 49, 111, 160,
124, -1, 48, 124, -1, 48, 131, 124, -1, 47,
124, -1, 47, 131, 124, -1, 50, 161, 124, -1,
56, 155, 124, -1, 56, 124, -1, 53, 164, 185,
-1, 53, 164, 187, -1, 53, 164, 185, 187, -1,
186, -1, 54, 101, 89, 102, 164, -1, 186, 54,
101, 89, 102, 164, -1, 54, 101, 126, 126, 188,
127, 102, 164, 127, -1, 186, 54, 101, 126, 126,
188, 127, 102, 164, 127, -1, 55, 164, -1, 215,
-1, 215, 297, -1, 215, 345, -1, 354, 131, -1,
354, -1, 57, 190, 101, 133, 102, 124, -1, 57,
190, 101, 133, 109, 191, 102, 124, -1, 57, 190,
101, 133, 109, 191, 109, 191, 102, 124, -1, 57,
190, 101, 133, 109, 191, 109, 191, 109, 194, 102,
124, -1, 57, 190, 49, 101, 133, 109, 109, 191,
109, 194, 109, 195, 102, 124, -1, -1, 11, -1,
-1, 192, -1, 193, -1, 192, 108, 193, -1, 133,
101, 154, 102, -1, 103, 154, 104, 133, 101, 154,
102, -1, -1, 133, -1, 194, 108, 133, -1, 131,
-1, 195, 108, 131, -1, 127, -1, 197, -1, 202,
-1, 197, 126, 202, -1, 127, -1, 199, -1, 212,
-1, 199, 126, 212, -1, -1, 201, -1, 28, 195,
124, -1, 201, 28, 195, 124, -1, 262, -1, 195,
108, 262, -1, 203, -1, 212, -1, 204, 127, 124,
-1, 209, 127, 124, -1, 206, 127, 124, -1, 281,
127, 124, -1, 284, 127, 124, -1, 205, 265, -1,
221, 205, 265, -1, 204, 127, 108, 126, 260, 265,
-1, 355, 260, 299, -1, 358, 260, 299, -1, 217,
358, 260, 299, -1, 207, -1, 217, 207, -1, 221,
207, -1, 221, 217, 207, -1, 206, 127, 108, 126,
260, -1, 103, 104, 260, 101, 126, 248, 127, 102,
-1, 358, 260, 101, 126, 248, 127, 102, -1, 208,
260, 101, 126, 248, 127, 102, -1, 103, 126, 250,
127, 104, -1, 103, 126, 250, 127, 108, 126, 251,
127, 104, -1, 3, 205, -1, 3, 207, -1, 209,
127, 108, 126, 131, -1, 3, 215, 297, -1, 210,
127, 108, 126, 297, -1, 217, 3, 215, 297, -1,
215, 3, 297, -1, 215, 3, 217, 297, -1, 3,
131, 123, 155, -1, 211, 127, 108, 126, 131, 123,
155, -1, 213, 127, 124, -1, 210, 127, 124, -1,
211, 127, 124, -1, 230, 127, 124, -1, 214, 297,
299, 265, -1, 213, 108, 300, 297, 299, 265, -1,
226, -1, 230, -1, 232, -1, 271, -1, 227, -1,
231, -1, 233, -1, 272, -1, -1, 217, -1, 218,
-1, 217, 218, -1, 219, -1, 302, -1, 10, -1,
12, -1, 11, -1, 14, -1, 60, -1, -1, 13,
101, 220, 274, 102, -1, 222, -1, 217, 222, -1,
221, 217, 222, -1, 223, -1, 222, 223, -1, 224,
-1, 5, -1, 7, -1, 4, -1, 6, -1, 8,
-1, 9, -1, 62, -1, 64, -1, 16, -1, 21,
-1, 20, -1, 18, -1, 19, -1, 17, -1, 22,
-1, 23, -1, 15, -1, 24, -1, 25, -1, 26,
-1, 227, -1, 221, 227, -1, 226, 223, -1, 226,
223, 217, -1, 226, 223, 227, -1, 228, -1, 216,
229, 216, -1, 225, -1, 217, 225, -1, 228, 218,
-1, 228, 225, -1, 27, 101, 264, 102, -1, 27,
101, 160, 102, -1, 71, 101, 264, 102, -1, 71,
101, 160, 102, -1, 231, -1, 221, 231, -1, 230,
223, -1, 230, 223, 217, -1, 234, -1, 217, 234,
-1, 231, 218, -1, 233, -1, 221, 233, -1, 232,
223, -1, 232, 223, 217, -1, 67, -1, 217, 67,
-1, 233, 218, -1, 235, -1, 245, -1, 236, 106,
237, 107, -1, 236, 262, -1, 236, 262, 106, 237,
107, -1, 236, 101, 280, 102, 106, 237, 107, -1,
236, 273, -1, 30, 300, -1, 31, 300, -1, 238,
-1, 237, 238, -1, 239, 124, -1, 38, 239, 124,
-1, 240, 124, -1, 38, 240, 124, -1, 354, -1,
354, 262, -1, 239, 108, 262, -1, 239, 108, -1,
215, 241, -1, 240, 108, 300, 241, -1, -1, 243,
-1, 306, 242, -1, 319, 242, -1, 345, -1, -1,
243, -1, 109, 154, -1, 29, 300, -1, 244, 106,
246, 360, 107, -1, 244, 262, 106, 246, 360, 107,
-1, 244, 262, -1, 262, 247, -1, 246, 108, 262,
247, -1, -1, 123, 154, -1, -1, 249, -1, 251,
-1, 250, -1, 250, 127, 108, 126, 251, -1, 251,
127, 108, 126, 89, -1, 250, 127, 108, 126, 89,
-1, 255, -1, 251, 127, 108, 126, 255, -1, 250,
127, 108, 126, 255, -1, 250, 127, 108, 126, 251,
127, 108, 126, 255, -1, 256, -1, 251, 127, 108,
126, 256, -1, -1, 253, -1, 254, -1, 254, 127,
108, 126, 89, -1, 258, -1, 257, -1, 254, 127,
108, 126, 258, -1, 254, 127, 108, 126, 257, -1,
257, -1, 350, 260, 361, -1, 358, 260, 361, -1,
217, 358, 260, 361, -1, 207, -1, 258, -1, 350,
-1, 358, -1, 217, 358, -1, 359, -1, 214, 324,
361, -1, 214, 328, 361, -1, 214, -1, 214, 339,
-1, 131, -1, 259, 108, 131, -1, 129, -1, 67,
-1, 68, -1, 130, -1, 67, -1, 68, -1, 131,
-1, 67, -1, 68, -1, 354, -1, 215, -1, 215,
345, -1, 354, -1, 359, -1, 215, -1, 215, 333,
-1, -1, 123, 266, -1, 155, -1, 106, 267, 360,
107, -1, 266, -1, 268, 266, -1, 267, 108, 266,
-1, 267, 108, 268, 266, -1, 269, 109, -1, 262,
109, -1, 270, -1, 269, 270, -1, 105, 262, -1,
103, 126, 155, 127, 104, -1, 103, 126, 298, 127,
104, -1, 103, 126, 154, 89, 154, 127, 104, -1,
105, 103, 126, 138, 127, 104, -1, 272, -1, 221,
272, -1, 271, 223, -1, 271, 223, 217, -1, 273,
-1, 217, 273, -1, 272, 218, -1, 68, 101, 280,
102, -1, 275, 361, -1, 274, 108, 275, 361, -1,
-1, 277, 262, 276, 278, -1, 215, 324, -1, 32,
-1, 34, -1, 33, -1, -1, 278, 279, -1, 121,
262, 101, 280, 102, -1, 121, 106, 126, 286, 107,
-1, 121, 101, 126, 274, 127, 102, 106, 126, 286,
107, 101, 280, 102, -1, 264, -1, 155, -1, 280,
108, 264, -1, 280, 108, 155, -1, 32, 282, -1,
222, 32, 282, -1, 281, 108, 282, -1, 283, 278,
-1, 283, 278, 123, 264, -1, 262, -1, 261, 101,
126, 274, 127, 102, -1, 35, 262, 101, 126, 274,
127, 102, 106, 107, -1, -1, 35, 262, 101, 126,
274, 127, 102, 106, 285, 286, 107, -1, 287, -1,
286, 126, 287, -1, 288, 127, 124, -1, 289, 127,
124, -1, 205, -1, 207, -1, 288, 127, 108, 126,
260, -1, 215, 297, -1, 289, 127, 108, 126, 297,
-1, -1, 291, -1, 293, -1, 291, 126, 293, -1,
-1, 291, -1, 202, -1, 295, -1, 189, -1, -1,
5, 75, 294, 106, 292, 107, -1, 38, 293, -1,
296, -1, 311, 164, -1, 315, 126, 198, 164, -1,
206, 164, -1, 214, 311, 164, -1, 217, 311, 164,
-1, 221, 311, 164, -1, 221, 217, 311, 164, -1,
214, 315, 126, 198, 164, -1, 217, 315, 126, 198,
164, -1, 221, 315, 126, 198, 164, -1, 221, 217,
315, 126, 198, 164, -1, 306, -1, 311, -1, 319,
-1, 154, 115, 154, -1, -1, 57, 101, 133, 102,
300, -1, -1, 301, -1, 302, -1, 301, 302, -1,
37, 101, 101, 303, 102, 102, -1, 304, -1, 303,
108, 304, -1, -1, 305, -1, 305, 101, 161, 102,
-1, 260, -1, 224, -1, 225, -1, 218, -1, 307,
300, -1, 308, -1, 309, 300, -1, 310, 300, -1,
129, -1, 101, 307, 102, -1, 111, 306, -1, 111,
217, 306, -1, 101, 308, 102, -1, 307, 337, -1,
101, 308, 102, 337, -1, 101, 309, 102, 338, -1,
101, 309, 102, -1, 101, 308, 102, 101, 126, 252,
127, 102, -1, 101, 310, 102, -1, 312, 300, -1,
313, -1, 314, 300, -1, 307, 101, 126, 252, 127,
102, -1, 101, 313, 102, 101, 126, 252, 127, 102,
-1, 101, 312, 102, -1, 111, 311, -1, 111, 217,
311, -1, 101, 313, 102, -1, 101, 313, 102, 337,
-1, 101, 314, 102, 338, -1, 101, 314, 102, -1,
316, -1, 317, -1, 318, -1, 307, 101, 259, 102,
-1, 101, 317, 102, 101, 259, 102, -1, 101, 316,
102, -1, 111, 315, -1, 111, 217, 315, -1, 101,
317, 102, -1, 101, 317, 102, 337, -1, 101, 318,
102, 338, -1, 101, 318, 102, -1, 320, 300, -1,
321, -1, 322, 300, -1, 323, 300, -1, 329, -1,
101, 320, 102, -1, 111, 319, -1, 111, 217, 319,
-1, 101, 321, 102, -1, 320, 337, -1, 101, 321,
102, 337, -1, 101, 322, 102, 338, -1, 101, 322,
102, -1, 320, 101, 126, 252, 127, 102, -1, 101,
321, 102, 101, 126, 252, 127, 102, -1, 101, 323,
102, -1, 307, 300, -1, 325, -1, 326, 300, -1,
327, 300, -1, 111, 324, -1, 111, 217, 324, -1,
101, 325, 102, -1, 307, 343, -1, 101, 325, 102,
337, -1, 101, 326, 102, 338, -1, 101, 326, 102,
-1, 307, 101, 126, 252, 127, 102, -1, 101, 325,
102, 101, 126, 252, 127, 102, -1, 101, 327, 102,
-1, 329, 300, -1, 330, -1, 331, 300, -1, 332,
300, -1, 67, -1, 68, -1, 111, 328, -1, 111,
217, 328, -1, 101, 330, 102, -1, 329, 343, -1,
101, 330, 102, 343, -1, 329, 101, 126, 252, 127,
102, -1, 101, 330, 102, 101, 126, 252, 127, 102,
-1, 334, -1, 335, 300, -1, 336, 300, -1, 111,
-1, 111, 217, -1, 111, 333, -1, 111, 217, 333,
-1, 101, 334, 102, -1, 337, -1, 101, 334, 102,
337, -1, 101, 335, 102, 338, -1, 101, 335, 102,
-1, 101, 126, 252, 127, 102, -1, 101, 334, 102,
101, 126, 252, 127, 102, -1, 101, 336, 102, -1,
103, 104, -1, 103, 104, 338, -1, 338, -1, 103,
126, 155, 127, 104, -1, 103, 126, 111, 127, 104,
-1, 338, 103, 126, 155, 127, 104, -1, 338, 103,
126, 111, 127, 104, -1, 340, -1, 341, 300, -1,
342, 300, -1, 111, -1, 111, 217, -1, 111, 339,
-1, 111, 217, 339, -1, 101, 340, 102, -1, 343,
-1, 101, 340, 102, 343, -1, 101, 341, 102, 338,
-1, 101, 341, 102, -1, 101, 126, 252, 127, 102,
-1, 101, 340, 102, 101, 126, 252, 127, 102, -1,
101, 342, 102, -1, 344, -1, 344, 338, -1, 338,
-1, 103, 104, -1, 103, 126, 217, 111, 127, 104,
-1, 103, 126, 217, 127, 104, -1, 103, 126, 217,
155, 127, 104, -1, 103, 126, 7, 216, 155, 127,
104, -1, 103, 126, 217, 7, 155, 127, 104, -1,
346, -1, 347, 300, -1, 348, 300, -1, 111, -1,
111, 217, -1, 111, 345, -1, 111, 217, 345, -1,
101, 346, 102, -1, 337, -1, 101, 346, 102, 337,
-1, 101, 347, 102, 338, -1, 101, 347, 102, -1,
101, 346, 102, 101, 126, 252, 127, 102, -1, 101,
348, 102, -1, 350, -1, 358, -1, 217, 358, -1,
351, -1, 352, -1, 111, 215, -1, 217, 111, 215,
-1, 111, 359, -1, 217, 111, 359, -1, 111, 349,
-1, 217, 111, 349, -1, 103, 104, 215, -1, 353,
215, -1, 103, 104, 338, 215, -1, 353, 338, 215,
-1, 338, 215, -1, 103, 104, 351, -1, 353, 351,
-1, 103, 104, 338, 351, -1, 353, 338, 351, -1,
338, 351, -1, 103, 126, 217, 111, 127, 104, -1,
103, 126, 217, 155, 127, 104, -1, 103, 126, 221,
155, 127, 104, -1, 103, 126, 221, 217, 155, 127,
104, -1, 358, -1, 217, 358, -1, 355, -1, 356,
-1, 357, -1, 111, 215, -1, 217, 111, 215, -1,
111, 359, -1, 217, 111, 359, -1, 111, 354, -1,
217, 111, 354, -1, 103, 104, 215, -1, 103, 104,
338, 215, -1, 338, 215, -1, 103, 104, 356, -1,
103, 104, 338, 356, -1, 338, 356, -1, 103, 126,
251, 127, 104, -1, 103, 104, 101, 248, 102, -1,
358, 101, 126, 248, 127, 102, -1, 208, 101, 126,
248, 127, 102, -1, -1, 108, -1, -1, 123, 155,
-1
};
/* YYRLINE[YYN] -- source line where rule number YYN was defined. */
static const yytype_uint16 yyrline[] =
{
0, 288, 288, 294, 303, 304, 305, 309, 310, 311,
315, 316, 320, 324, 325, 329, 330, 336, 338, 340,
342, 344, 346, 351, 352, 358, 360, 362, 363, 365,
366, 368, 371, 376, 377, 383, 384, 385, 390, 392,
397, 398, 402, 404, 406, 408, 410, 415, 416, 418,
420, 422, 424, 426, 432, 434, 436, 438, 440, 442,
444, 446, 451, 452, 453, 454, 458, 459, 461, 466,
467, 469, 471, 476, 477, 479, 484, 485, 487, 492,
493, 495, 497, 499, 504, 505, 507, 512, 513, 518,
519, 524, 525, 530, 531, 536, 537, 542, 543, 545,
547, 552, 557, 558, 560, 562, 568, 569, 575, 577,
579, 581, 586, 587, 592, 593, 594, 595, 596, 597,
598, 599, 600, 601, 605, 606, 612, 613, 619, 620,
621, 622, 623, 624, 625, 626, 630, 637, 639, 649,
650, 655, 657, 659, 661, 665, 666, 671, 676, 679,
681, 683, 688, 690, 698, 699, 701, 705, 706, 711,
712, 717, 718, 722, 727, 728, 732, 734, 740, 741,
745, 747, 749, 751, 757, 758, 762, 763, 767, 769,
771, 776, 778, 783, 785, 789, 792, 796, 799, 803,
805, 807, 812, 814, 816, 825, 827, 829, 834, 836,
841, 854, 855, 860, 862, 867, 871, 873, 875, 877,
879, 885, 886, 892, 893, 897, 898, 903, 905, 911,
912, 914, 919, 921, 928, 930, 934, 935, 940, 942,
946, 947, 951, 953, 957, 958, 962, 963, 967, 968,
983, 984, 985, 986, 987, 991, 996, 1003, 1013, 1018,
1023, 1031, 1036, 1041, 1046, 1051, 1059, 1081, 1086, 1093,
1095, 1102, 1107, 1112, 1123, 1128, 1133, 1138, 1143, 1152,
1157, 1165, 1166, 1167, 1168, 1174, 1179, 1187, 1188, 1189,
1190, 1194, 1195, 1196, 1197, 1202, 1203, 1212, 1213, 1218,
1219, 1224, 1226, 1228, 1230, 1232, 1235, 1234, 1246, 1247,
1249, 1259, 1260, 1265, 1269, 1271, 1273, 1275, 1277, 1279,
1281, 1283, 1288, 1290, 1292, 1294, 1296, 1298, 1300, 1302,
1304, 1306, 1308, 1310, 1316, 1317, 1319, 1321, 1323, 1328,
1329, 1335, 1336, 1338, 1340, 1345, 1347, 1349, 1351, 1356,
1357, 1359, 1361, 1366, 1367, 1369, 1374, 1375, 1377, 1379,
1384, 1386, 1388, 1393, 1394, 1398, 1400, 1402, 1404, 1406,
1411, 1413, 1418, 1420, 1425, 1426, 1428, 1429, 1434, 1435,
1437, 1439, 1444, 1446, 1452, 1453, 1455, 1458, 1461, 1466,
1467, 1472, 1477, 1481, 1483, 1485, 1490, 1492, 1498, 1499,
1507, 1508, 1512, 1513, 1514, 1516, 1518, 1525, 1526, 1528,
1530, 1535, 1536, 1542, 1543, 1547, 1548, 1553, 1554, 1555,
1557, 1565, 1566, 1568, 1571, 1573, 1577, 1578, 1579, 1581,
1583, 1587, 1592, 1600, 1601, 1610, 1612, 1617, 1618, 1619,
1623, 1624, 1625, 1629, 1630, 1631, 1635, 1636, 1637, 1642,
1643, 1644, 1645, 1651, 1652, 1657, 1658, 1662, 1663, 1664,
1665, 1680, 1681, 1686, 1687, 1693, 1695, 1698, 1700, 1702,
1725, 1726, 1728, 1730, 1735, 1736, 1738, 1743, 1748, 1749,
1755, 1754, 1758, 1762, 1764, 1766, 1772, 1773, 1778, 1783,
1785, 1790, 1792, 1793, 1795, 1800, 1802, 1804, 1809, 1811,
1816, 1821, 1829, 1835, 1834, 1848, 1849, 1854, 1855, 1859,
1864, 1869, 1877, 1882, 1893, 1894, 1905, 1906, 1912, 1913,
1917, 1918, 1919, 1922, 1921, 1932, 1937, 1942, 1948, 1957,
1963, 1969, 1975, 1981, 1989, 1995, 2003, 2009, 2018, 2019,
2020, 2024, 2028, 2030, 2035, 2036, 2040, 2041, 2046, 2052,
2053, 2056, 2058, 2059, 2063, 2064, 2065, 2066, 2100, 2102,
2103, 2105, 2110, 2115, 2120, 2122, 2124, 2129, 2131, 2133,
2135, 2140, 2142, 2152, 2154, 2155, 2160, 2162, 2164, 2169,
2171, 2173, 2178, 2180, 2182, 2191, 2192, 2193, 2197, 2199,
2201, 2206, 2208, 2210, 2215, 2217, 2219, 2234, 2236, 2237,
2239, 2244, 2245, 2250, 2252, 2254, 2259, 2261, 2263, 2265,
2270, 2272, 2274, 2284, 2286, 2287, 2289, 2294, 2296, 2298,
2303, 2305, 2307, 2309, 2314, 2316, 2318, 2349, 2351, 2352,
2354, 2359, 2364, 2372, 2374, 2376, 2381, 2383, 2388, 2390,
2404, 2405, 2407, 2412, 2414, 2416, 2418, 2420, 2425, 2426,
2428, 2430, 2435, 2437, 2439, 2445, 2447, 2449, 2453, 2455,
2457, 2459, 2473, 2474, 2476, 2481, 2483, 2485, 2487, 2489,
2494, 2495, 2497, 2499, 2504, 2506, 2508, 2514, 2515, 2517,
2526, 2529, 2531, 2534, 2536, 2538, 2551, 2552, 2554, 2559,
2561, 2563, 2565, 2567, 2572, 2573, 2575, 2577, 2582, 2584,
2592, 2593, 2594, 2599, 2600, 2604, 2606, 2608, 2610, 2612,
2614, 2621, 2623, 2625, 2627, 2629, 2631, 2633, 2635, 2637,
2639, 2644, 2646, 2648, 2653, 2679, 2680, 2682, 2686, 2687,
2691, 2693, 2695, 2697, 2699, 2701, 2708, 2710, 2712, 2714,
2716, 2718, 2723, 2728, 2730, 2732, 2750, 2752, 2757, 2758
};
#endif
#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE
/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.
First, the terminals, then, starting at YYNTOKENS, nonterminals. */
static const char *const yytname[] =
{
"$end", "error", "$undefined", "TYPEDEF", "AUTO", "EXTERN", "REGISTER",
"STATIC", "INLINE", "FORTRAN", "CONST", "VOLATILE", "RESTRICT", "FORALL",
"LVALUE", "VOID", "CHAR", "SHORT", "INT", "LONG", "FLOAT", "DOUBLE",
"SIGNED", "UNSIGNED", "BOOL", "COMPLEX", "IMAGINARY", "TYPEOF", "LABEL",
"ENUM", "STRUCT", "UNION", "TYPE", "FTYPE", "DTYPE", "CONTEXT", "SIZEOF",
"ATTRIBUTE", "EXTENSION", "IF", "ELSE", "SWITCH", "CASE", "DEFAULT",
"DO", "WHILE", "FOR", "BREAK", "CONTINUE", "GOTO", "RETURN", "CHOOSE",
"FALLTHRU", "TRY", "CATCH", "FINALLY", "THROW", "ASM", "ALIGNAS",
"ALIGNOF", "ATOMIC", "GENERIC", "NORETURN", "STATICASSERT",
"THREADLOCAL", "IDENTIFIER", "QUOTED_IDENTIFIER", "TYPEDEFname",
"TYPEGENname", "ATTR_IDENTIFIER", "ATTR_TYPEDEFname", "ATTR_TYPEGENname",
"INTEGERconstant", "FLOATINGconstant", "CHARACTERconstant",
"STRINGliteral", "ZERO", "ONE", "ARROW", "ICR", "DECR", "LS", "RS", "LE",
"GE", "EQ", "NE", "ANDAND", "OROR", "ELLIPSIS", "MULTassign",
"DIVassign", "MODassign", "PLUSassign", "MINUSassign", "LSassign",
"RSassign", "ANDassign", "ERassign", "ORassign", "THEN", "'('", "')'",
"'['", "']'", "'.'", "'{'", "'}'", "','", "':'", "'!'", "'*'", "'&'",
"'+'", "'-'", "'~'", "'/'", "'%'", "'<'", "'>'", "'^'", "'|'", "'?'",
"'='", "';'", "$accept", "push", "pop", "constant", "identifier",
"no_01_identifier", "no_attr_identifier", "zero_one",
"string_literal_list", "primary_expression", "postfix_expression",
"argument_expression_list", "argument_expression", "field_list", "field",
"unary_expression", "unary_operator", "cast_expression",
"multiplicative_expression", "additive_expression", "shift_expression",
"relational_expression", "equality_expression", "AND_expression",
"exclusive_OR_expression", "inclusive_OR_expression",
"logical_AND_expression", "logical_OR_expression",
"conditional_expression", "constant_expression", "assignment_expression",
"assignment_expression_opt", "tuple", "tuple_expression_list",
"assignment_operator", "comma_expression", "comma_expression_opt",
"statement", "labeled_statement", "compound_statement",
"block_item_list", "block_item", "statement_list",
"expression_statement", "selection_statement", "case_value",
"case_value_list", "case_label", "case_label_list", "case_clause",
"switch_clause_list_opt", "switch_clause_list", "choose_clause_list_opt",
"choose_clause_list", "fall_through_opt", "fall_through",
"iteration_statement", "for_control_expression", "jump_statement",
"exception_statement", "handler_list", "handler_clause",
"finally_clause", "exception_declaration", "asm_statement",
"asm_volatile_opt", "asm_operands_opt", "asm_operands_list",
"asm_operand", "asm_clobbers_list_opt", "label_list",
"declaration_list_opt", "declaration_list", "old_declaration_list_opt",
"old_declaration_list", "label_declaration_opt",
"label_declaration_list", "declaration", "new_declaration",
"new_variable_declaration", "new_variable_specifier",
"new_function_declaration", "new_function_specifier",
"new_function_return", "new_typedef_declaration", "typedef_declaration",
"typedef_expression", "old_declaration", "declaring_list",
"declaration_specifier", "type_specifier", "type_qualifier_list_opt",
"type_qualifier_list", "type_qualifier", "type_qualifier_name", "$@1",
"declaration_qualifier_list", "storage_class_list", "storage_class",
"storage_class_name", "basic_type_name", "basic_declaration_specifier",
"basic_type_specifier", "direct_type_name", "indirect_type_name",
"sue_declaration_specifier", "sue_type_specifier",
"typedef_declaration_specifier", "typedef_type_specifier",
"elaborated_type_name", "aggregate_name", "aggregate_key",
"field_declaration_list", "field_declaration",
"new_field_declaring_list", "field_declaring_list", "field_declarator",
"bit_subrange_size_opt", "bit_subrange_size", "enum_key", "enum_name",
"enumerator_list", "enumerator_value_opt", "new_parameter_type_list_opt",
"new_parameter_type_list", "new_parameter_list",
"new_abstract_parameter_list", "parameter_type_list_opt",
"parameter_type_list", "parameter_list", "new_parameter_declaration",
"new_abstract_parameter_declaration", "parameter_declaration",
"abstract_parameter_declaration", "identifier_list",
"identifier_or_type_name", "no_01_identifier_or_type_name",
"no_attr_identifier_or_type_name", "type_name_no_function", "type_name",
"initializer_opt", "initializer", "initializer_list", "designation",
"designator_list", "designator", "typegen_declaration_specifier",
"typegen_type_specifier", "typegen_name", "type_parameter_list",
"type_parameter", "$@2", "type_class", "assertion_list_opt", "assertion",
"type_name_list", "type_declaring_list", "type_declarator",
"type_declarator_name", "context_specifier", "$@3",
"context_declaration_list", "context_declaration",
"new_context_declaring_list", "context_declaring_list",
"translation_unit", "external_definition_list",
"external_definition_list_opt", "external_definition", "$@4",
"external_function_definition", "function_definition", "declarator",
"subrange", "asm_name_opt", "attribute_list_opt", "attribute_list",
"attribute", "attribute_parameter_list", "attrib", "any_word",
"variable_declarator", "paren_identifier", "variable_ptr",
"variable_array", "variable_function", "function_declarator",
"function_no_ptr", "function_ptr", "function_array",
"old_function_declarator", "old_function_no_ptr", "old_function_ptr",
"old_function_array", "type_redeclarator", "paren_type", "type_ptr",
"type_array", "type_function", "identifier_parameter_declarator",
"identifier_parameter_ptr", "identifier_parameter_array",
"identifier_parameter_function", "type_parameter_redeclarator",
"typedef", "type_parameter_ptr", "type_parameter_array",
"type_parameter_function", "abstract_declarator", "abstract_ptr",
"abstract_array", "abstract_function", "array_dimension",
"multi_array_dimension", "abstract_parameter_declarator",
"abstract_parameter_ptr", "abstract_parameter_array",
"abstract_parameter_function", "array_parameter_dimension",
"array_parameter_1st_dimension", "variable_abstract_declarator",
"variable_abstract_ptr", "variable_abstract_array",
"variable_abstract_function",
"new_identifier_parameter_declarator_tuple",
"new_identifier_parameter_declarator_no_tuple",
"new_identifier_parameter_ptr", "new_identifier_parameter_array",
"new_array_parameter_1st_dimension", "new_abstract_declarator_tuple",
"new_abstract_declarator_no_tuple", "new_abstract_ptr",
"new_abstract_array", "new_abstract_tuple", "new_abstract_function",
"comma_opt", "assignment_opt", 0
};
#endif
# ifdef YYPRINT
/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to
token YYLEX-NUM. */
static const yytype_uint16 yytoknum[] =
{
0, 256, 257, 258, 259, 260, 261, 262, 263, 264,
265, 266, 267, 268, 269, 270, 271, 272, 273, 274,
275, 276, 277, 278, 279, 280, 281, 282, 283, 284,
285, 286, 287, 288, 289, 290, 291, 292, 293, 294,
295, 296, 297, 298, 299, 300, 301, 302, 303, 304,
305, 306, 307, 308, 309, 310, 311, 312, 313, 314,
315, 316, 317, 318, 319, 320, 321, 322, 323, 324,
325, 326, 327, 328, 329, 330, 331, 332, 333, 334,
335, 336, 337, 338, 339, 340, 341, 342, 343, 344,
345, 346, 347, 348, 349, 350, 351, 352, 353, 354,
355, 40, 41, 91, 93, 46, 123, 125, 44, 58,
33, 42, 38, 43, 45, 126, 47, 37, 60, 62,
94, 124, 63, 61, 59
};
# endif
/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */
static const yytype_uint16 yyr1[] =
{
0, 125, 126, 127, 128, 128, 128, 129, 129, 129,
130, 130, 131, 132, 132, 133, 133, 134, 134, 134,
134, 134, 134, 135, 135, 135, 135, 135, 135, 135,
135, 135, 135, 136, 136, 137, 137, 137, 137, 137,
138, 138, 139, 139, 139, 139, 139, 140, 140, 140,
140, 140, 140, 140, 140, 140, 140, 140, 140, 140,
140, 140, 141, 141, 141, 141, 142, 142, 142, 143,
143, 143, 143, 144, 144, 144, 145, 145, 145, 146,
146, 146, 146, 146, 147, 147, 147, 148, 148, 149,
149, 150, 150, 151, 151, 152, 152, 153, 153, 153,
153, 154, 155, 155, 155, 155, 156, 156, 157, 157,
157, 157, 158, 158, 159, 159, 159, 159, 159, 159,
159, 159, 159, 159, 160, 160, 161, 161, 162, 162,
162, 162, 162, 162, 162, 162, 163, 164, 164, 165,
165, 166, 166, 166, 166, 167, 167, 168, 169, 169,
169, 169, 169, 169, 170, 170, 170, 171, 171, 172,
172, 173, 173, 174, 175, 175, 176, 176, 177, 177,
178, 178, 178, 178, 179, 179, 180, 180, 181, 181,
181, 182, 182, 183, 183, 183, 183, 183, 183, 183,
183, 183, 184, 184, 184, 185, 185, 185, 186, 186,
187, 188, 188, 188, 188, 188, 189, 189, 189, 189,
189, 190, 190, 191, 191, 192, 192, 193, 193, 194,
194, 194, 195, 195, 196, 196, 197, 197, 198, 198,
199, 199, 200, 200, 201, 201, 195, 195, 202, 202,
203, 203, 203, 203, 203, 204, 204, 204, 205, 205,
205, 206, 206, 206, 206, 206, 207, 207, 207, 208,
208, 209, 209, 209, 210, 210, 210, 210, 210, 211,
211, 212, 212, 212, 212, 213, 213, 214, 214, 214,
214, 215, 215, 215, 215, 216, 216, 217, 217, 218,
218, 219, 219, 219, 219, 219, 220, 219, 221, 221,
221, 222, 222, 223, 224, 224, 224, 224, 224, 224,
224, 224, 225, 225, 225, 225, 225, 225, 225, 225,
225, 225, 225, 225, 226, 226, 226, 226, 226, 227,
227, 228, 228, 228, 228, 229, 229, 229, 229, 230,
230, 230, 230, 231, 231, 231, 232, 232, 232, 232,
233, 233, 233, 234, 234, 235, 235, 235, 235, 235,
236, 236, 237, 237, 238, 238, 238, 238, 239, 239,
239, 239, 240, 240, 241, 241, 241, 241, 241, 242,
242, 243, 244, 245, 245, 245, 246, 246, 247, 247,
248, 248, 249, 249, 249, 249, 249, 250, 250, 250,
250, 251, 251, 252, 252, 253, 253, 254, 254, 254,
254, 255, 255, 255, 255, 255, 256, 256, 256, 256,
256, 257, 257, 258, 258, 259, 259, 260, 260, 260,
261, 261, 261, 262, 262, 262, 263, 263, 263, 264,
264, 264, 264, 265, 265, 266, 266, 267, 267, 267,
267, 268, 268, 269, 269, 270, 270, 270, 270, 270,
271, 271, 271, 271, 272, 272, 272, 273, 274, 274,
276, 275, 275, 277, 277, 277, 278, 278, 279, 279,
279, 280, 280, 280, 280, 281, 281, 281, 282, 282,
283, 283, 284, 285, 284, 286, 286, 287, 287, 288,
288, 288, 289, 289, 290, 290, 291, 291, 292, 292,
293, 293, 293, 294, 293, 293, 295, 295, 295, 296,
296, 296, 296, 296, 296, 296, 296, 296, 297, 297,
297, 298, 299, 299, 300, 300, 301, 301, 302, 303,
303, 304, 304, 304, 305, 305, 305, 305, 306, 306,
306, 306, 307, 307, 308, 308, 308, 309, 309, 309,
309, 310, 310, 311, 311, 311, 312, 312, 312, 313,
313, 313, 314, 314, 314, 315, 315, 315, 316, 316,
316, 317, 317, 317, 318, 318, 318, 319, 319, 319,
319, 320, 320, 321, 321, 321, 322, 322, 322, 322,
323, 323, 323, 324, 324, 324, 324, 325, 325, 325,
326, 326, 326, 326, 327, 327, 327, 328, 328, 328,
328, 329, 329, 330, 330, 330, 331, 331, 332, 332,
333, 333, 333, 334, 334, 334, 334, 334, 335, 335,
335, 335, 336, 336, 336, 337, 337, 337, 338, 338,
338, 338, 339, 339, 339, 340, 340, 340, 340, 340,
341, 341, 341, 341, 342, 342, 342, 343, 343, 343,
344, 344, 344, 344, 344, 344, 345, 345, 345, 346,
346, 346, 346, 346, 347, 347, 347, 347, 348, 348,
349, 349, 349, 350, 350, 351, 351, 351, 351, 351,
351, 352, 352, 352, 352, 352, 352, 352, 352, 352,
352, 353, 353, 353, 353, 354, 354, 354, 355, 355,
356, 356, 356, 356, 356, 356, 357, 357, 357, 357,
357, 357, 358, 359, 359, 359, 360, 360, 361, 361
};
/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */
static const yytype_uint8 yyr2[] =
{
0, 2, 0, 0, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 2, 1, 1, 1,
1, 3, 3, 1, 6, 4, 3, 7, 3, 7,
2, 2, 7, 1, 3, 0, 1, 3, 7, 9,
1, 3, 1, 3, 7, 3, 7, 1, 2, 2,
2, 2, 2, 2, 2, 4, 1, 4, 4, 2,
4, 2, 1, 1, 1, 1, 1, 4, 4, 1,
3, 3, 3, 1, 3, 3, 1, 3, 3, 1,
3, 3, 3, 3, 1, 3, 3, 1, 3, 1,
3, 1, 3, 1, 3, 1, 3, 1, 5, 4,
5, 1, 1, 3, 3, 2, 0, 1, 2, 5,
6, 7, 1, 3, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 3, 0, 1, 1, 1,
1, 1, 1, 1, 1, 1, 4, 2, 7, 1,
3, 1, 2, 1, 2, 1, 2, 2, 5, 7,
5, 9, 5, 9, 1, 3, 1, 1, 3, 3,
2, 1, 2, 2, 0, 1, 2, 3, 0, 1,
2, 3, 3, 4, 0, 1, 1, 2, 5, 7,
6, 6, 4, 3, 4, 2, 3, 2, 3, 3,
3, 2, 3, 3, 4, 1, 5, 6, 9, 10,
2, 1, 2, 2, 2, 1, 6, 8, 10, 12,
14, 0, 1, 0, 1, 1, 3, 4, 7, 0,
1, 3, 1, 3, 1, 1, 1, 3, 1, 1,
1, 3, 0, 1, 3, 4, 1, 3, 1, 1,
3, 3, 3, 3, 3, 2, 3, 6, 3, 3,
4, 1, 2, 2, 3, 5, 8, 7, 7, 5,
9, 2, 2, 5, 3, 5, 4, 3, 4, 4,
7, 3, 3, 3, 3, 4, 6, 1, 1, 1,
1, 1, 1, 1, 1, 0, 1, 1, 2, 1,
1, 1, 1, 1, 1, 1, 0, 5, 1, 2,
3, 1, 2, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 2, 2, 3, 3, 1,
3, 1, 2, 2, 2, 4, 4, 4, 4, 1,
2, 2, 3, 1, 2, 2, 1, 2, 2, 3,
1, 2, 2, 1, 1, 4, 2, 5, 7, 2,
2, 2, 1, 2, 2, 3, 2, 3, 1, 2,
3, 2, 2, 4, 0, 1, 2, 2, 1, 0,
1, 2, 2, 5, 6, 2, 2, 4, 0, 2,
0, 1, 1, 1, 5, 5, 5, 1, 5, 5,
9, 1, 5, 0, 1, 1, 5, 1, 1, 5,
5, 1, 3, 3, 4, 1, 1, 1, 1, 2,
1, 3, 3, 1, 2, 1, 3, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 2, 1,
1, 1, 2, 0, 2, 1, 4, 1, 2, 3,
4, 2, 2, 1, 2, 2, 5, 5, 7, 6,
1, 2, 2, 3, 1, 2, 2, 4, 2, 4,
0, 4, 2, 1, 1, 1, 0, 2, 5, 5,
13, 1, 1, 3, 3, 2, 3, 3, 2, 4,
1, 6, 9, 0, 11, 1, 3, 3, 3, 1,
1, 5, 2, 5, 0, 1, 1, 3, 0, 1,
1, 1, 1, 0, 6, 2, 1, 2, 4, 2,
3, 3, 3, 4, 5, 5, 5, 6, 1, 1,
1, 3, 0, 5, 0, 1, 1, 2, 6, 1,
3, 0, 1, 4, 1, 1, 1, 1, 2, 1,
2, 2, 1, 3, 2, 3, 3, 2, 4, 4,
3, 8, 3, 2, 1, 2, 6, 8, 3, 2,
3, 3, 4, 4, 3, 1, 1, 1, 4, 6,
3, 2, 3, 3, 4, 4, 3, 2, 1, 2,
2, 1, 3, 2, 3, 3, 2, 4, 4, 3,
6, 8, 3, 2, 1, 2, 2, 2, 3, 3,
2, 4, 4, 3, 6, 8, 3, 2, 1, 2,
2, 1, 1, 2, 3, 3, 2, 4, 6, 8,
1, 2, 2, 1, 2, 2, 3, 3, 1, 4,
4, 3, 5, 8, 3, 2, 3, 1, 5, 5,
6, 6, 1, 2, 2, 1, 2, 2, 3, 3,
1, 4, 4, 3, 5, 8, 3, 1, 2, 1,
2, 6, 5, 6, 7, 7, 1, 2, 2, 1,
2, 2, 3, 3, 1, 4, 4, 3, 8, 3,
1, 1, 2, 1, 1, 2, 3, 2, 3, 2,
3, 3, 2, 4, 3, 2, 3, 2, 4, 3,
2, 6, 6, 6, 7, 1, 2, 1, 1, 1,
2, 3, 2, 3, 2, 3, 3, 4, 2, 3,
4, 2, 5, 5, 6, 6, 0, 1, 0, 2
};
/* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE doesn't specify something else to do. Zero
means the default is an error. */
static const yytype_uint16 yydefact[] =
{
285, 285, 306, 304, 307, 305, 308, 309, 291, 293,
292, 0, 294, 320, 312, 317, 315, 316, 314, 313,
318, 319, 321, 322, 323, 534, 534, 534, 0, 0,
0, 285, 211, 295, 310, 311, 7, 350, 0, 8,
13, 14, 0, 2, 285, 552, 9, 512, 510, 238,
3, 443, 3, 251, 0, 3, 3, 3, 239, 3,
0, 0, 0, 286, 287, 289, 285, 298, 301, 303,
331, 277, 324, 329, 278, 339, 279, 346, 343, 353,
0, 0, 354, 280, 460, 464, 3, 3, 0, 2,
506, 511, 516, 290, 0, 0, 534, 564, 534, 2,
575, 576, 577, 285, 0, 718, 719, 0, 12, 285,
0, 261, 262, 0, 286, 281, 282, 283, 284, 513,
296, 382, 535, 536, 360, 361, 12, 434, 435, 11,
430, 433, 0, 490, 485, 476, 434, 435, 0, 0,
515, 212, 0, 285, 0, 0, 0, 0, 0, 0,
0, 0, 285, 285, 2, 0, 720, 286, 569, 581,
724, 717, 715, 722, 0, 0, 245, 2, 0, 519,
428, 429, 427, 0, 0, 0, 0, 534, 0, 621,
622, 0, 0, 532, 528, 534, 549, 534, 534, 529,
2, 530, 534, 588, 534, 534, 591, 0, 0, 0,
285, 285, 304, 351, 2, 285, 252, 288, 299, 332,
344, 465, 0, 2, 0, 443, 253, 286, 325, 340,
347, 461, 0, 2, 0, 302, 326, 333, 334, 0,
341, 345, 348, 352, 435, 285, 285, 356, 359, 0,
385, 462, 466, 0, 0, 0, 1, 285, 2, 517,
563, 565, 285, 2, 728, 286, 731, 532, 532, 286,
0, 0, 0, 264, 534, 529, 2, 285, 0, 0,
285, 537, 2, 488, 2, 541, 0, 0, 0, 0,
0, 17, 56, 4, 5, 6, 15, 0, 0, 0,
285, 2, 0, 285, 62, 63, 64, 65, 19, 18,
20, 23, 47, 66, 0, 69, 73, 76, 79, 84,
87, 89, 91, 93, 95, 97, 102, 482, 738, 441,
481, 0, 439, 440, 0, 553, 568, 571, 574, 580,
583, 586, 350, 0, 2, 726, 0, 285, 729, 2,
285, 3, 415, 0, 423, 286, 285, 298, 324, 278,
339, 346, 3, 3, 397, 401, 411, 416, 460, 285,
417, 693, 694, 285, 418, 420, 285, 2, 570, 582,
716, 2, 2, 240, 2, 0, 0, 445, 444, 137,
2, 2, 242, 2, 2, 241, 2, 272, 2, 273,
0, 271, 0, 0, 0, 0, 0, 0, 0, 0,
0, 554, 593, 0, 443, 2, 548, 557, 647, 550,
551, 520, 285, 2, 587, 596, 589, 590, 0, 267,
285, 285, 330, 286, 0, 286, 0, 285, 721, 725,
723, 521, 285, 532, 246, 254, 300, 0, 2, 522,
285, 486, 327, 328, 274, 342, 349, 0, 285, 2,
374, 285, 362, 0, 0, 368, 715, 285, 736, 388,
0, 463, 487, 243, 244, 507, 285, 425, 0, 285,
228, 0, 2, 230, 0, 286, 0, 248, 2, 249,
269, 0, 0, 2, 285, 532, 285, 473, 475, 474,
0, 0, 738, 0, 285, 0, 285, 477, 285, 547,
545, 546, 544, 0, 539, 542, 0, 0, 285, 54,
66, 50, 285, 59, 285, 285, 48, 49, 61, 2,
124, 0, 0, 437, 0, 436, 108, 285, 52, 53,
16, 0, 30, 31, 35, 2, 0, 114, 115, 116,
117, 118, 119, 120, 121, 122, 123, 0, 0, 51,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
105, 2, 633, 442, 630, 534, 534, 638, 467, 285,
2, 572, 573, 0, 584, 585, 0, 2, 727, 730,
108, 285, 2, 285, 0, 695, 286, 699, 690, 691,
697, 0, 2, 2, 655, 534, 738, 604, 534, 534,
738, 534, 618, 534, 534, 669, 424, 652, 534, 534,
660, 667, 285, 419, 286, 0, 0, 285, 705, 286,
710, 738, 702, 285, 707, 738, 285, 285, 285, 0,
108, 0, 17, 2, 0, 0, 447, 736, 0, 0,
453, 232, 0, 285, 0, 0, 0, 532, 556, 560,
562, 592, 595, 599, 602, 555, 594, 0, 275, 645,
0, 285, 268, 0, 0, 0, 0, 266, 2, 0,
250, 523, 285, 0, 0, 0, 0, 285, 285, 0,
0, 679, 372, 375, 379, 534, 379, 684, 378, 676,
534, 534, 355, 363, 371, 364, 534, 366, 369, 285,
737, 0, 0, 386, 736, 286, 3, 404, 3, 408,
407, 578, 0, 518, 285, 3, 3, 285, 423, 286,
3, 417, 418, 2, 0, 0, 0, 472, 297, 285,
468, 470, 3, 2, 2, 0, 489, 3, 0, 541,
126, 0, 0, 213, 0, 0, 2, 0, 0, 36,
0, 0, 108, 285, 21, 0, 22, 0, 679, 438,
0, 106, 3, 2, 28, 2, 0, 33, 0, 2,
26, 103, 104, 70, 71, 72, 74, 75, 77, 78,
82, 83, 80, 81, 85, 86, 88, 90, 92, 94,
96, 0, 0, 739, 285, 0, 0, 0, 634, 635,
631, 632, 484, 483, 285, 0, 3, 285, 701, 285,
706, 286, 285, 285, 285, 649, 692, 648, 2, 285,
0, 0, 0, 0, 0, 0, 0, 0, 670, 0,
656, 607, 623, 657, 2, 603, 610, 421, 605, 606,
422, 2, 617, 626, 619, 620, 653, 654, 668, 696,
700, 698, 738, 259, 2, 732, 2, 412, 704, 709,
413, 0, 391, 3, 3, 3, 3, 443, 3, 0,
2, 455, 452, 737, 0, 448, 2, 451, 454, 0,
285, 233, 255, 3, 263, 265, 0, 443, 2, 558,
559, 2, 597, 598, 0, 646, 524, 3, 336, 335,
338, 337, 285, 525, 0, 526, 285, 365, 367, 2,
0, 0, 0, 0, 101, 381, 680, 681, 376, 380,
377, 677, 678, 370, 374, 357, 388, 383, 389, 0,
0, 0, 426, 231, 0, 0, 3, 2, 655, 419,
0, 514, 0, 738, 476, 0, 285, 285, 285, 0,
538, 540, 127, 0, 0, 206, 0, 0, 0, 214,
215, 55, 60, 285, 0, 58, 57, 0, 125, 680,
0, 67, 68, 107, 112, 3, 106, 0, 0, 0,
25, 35, 3, 0, 99, 0, 3, 637, 641, 644,
636, 3, 579, 3, 703, 708, 2, 285, 3, 3,
286, 0, 3, 609, 613, 616, 625, 659, 663, 666,
285, 3, 608, 624, 658, 285, 285, 414, 285, 285,
733, 0, 0, 0, 0, 247, 0, 101, 0, 3,
3, 0, 449, 0, 446, 0, 222, 0, 236, 285,
0, 0, 126, 0, 0, 0, 0, 0, 126, 0,
0, 0, 2, 0, 0, 3, 128, 129, 2, 139,
130, 131, 132, 133, 134, 135, 141, 143, 0, 0,
0, 276, 285, 285, 534, 0, 527, 285, 108, 683,
687, 689, 682, 373, 387, 384, 566, 2, 651, 650,
0, 656, 2, 469, 471, 491, 3, 499, 500, 0,
2, 495, 3, 3, 0, 0, 543, 213, 0, 0,
0, 213, 0, 3, 37, 736, 106, 0, 3, 648,
42, 3, 40, 3, 34, 0, 3, 98, 100, 0,
2, 639, 640, 0, 0, 285, 0, 0, 0, 3,
625, 0, 2, 611, 612, 2, 627, 2, 661, 662,
0, 0, 3, 0, 3, 3, 3, 3, 399, 398,
402, 2, 2, 735, 734, 109, 0, 0, 0, 0,
3, 450, 3, 0, 234, 142, 3, 286, 285, 0,
0, 0, 0, 2, 187, 0, 185, 0, 0, 0,
0, 0, 0, 191, 0, 108, 534, 147, 144, 285,
0, 0, 258, 270, 3, 3, 533, 600, 358, 2,
685, 686, 285, 257, 285, 0, 502, 479, 285, 0,
0, 478, 493, 0, 0, 0, 207, 0, 216, 106,
0, 0, 113, 110, 0, 0, 0, 0, 0, 0,
24, 0, 642, 285, 567, 256, 711, 712, 713, 0,
664, 285, 285, 285, 3, 3, 0, 672, 0, 0,
0, 0, 285, 285, 3, 531, 109, 457, 0, 0,
223, 237, 286, 0, 0, 0, 0, 285, 188, 186,
0, 183, 189, 0, 0, 0, 192, 195, 193, 190,
126, 140, 138, 235, 0, 0, 285, 406, 410, 409,
0, 496, 2, 497, 2, 498, 492, 285, 219, 0,
217, 0, 219, 3, 648, 32, 111, 2, 45, 2,
43, 41, 29, 109, 27, 3, 714, 3, 3, 3,
0, 0, 671, 673, 614, 628, 260, 2, 396, 3,
395, 0, 459, 456, 126, 0, 0, 126, 3, 0,
126, 184, 0, 2, 200, 194, 0, 136, 561, 601,
3, 2, 0, 0, 2, 220, 0, 0, 208, 0,
0, 0, 0, 0, 0, 0, 0, 0, 674, 675,
285, 0, 458, 148, 0, 0, 2, 161, 126, 150,
0, 178, 0, 126, 0, 2, 152, 0, 2, 2,
0, 285, 501, 503, 494, 0, 0, 0, 0, 111,
38, 3, 3, 643, 615, 629, 665, 400, 126, 154,
157, 0, 156, 160, 3, 163, 162, 0, 126, 180,
126, 3, 0, 285, 0, 2, 688, 2, 221, 0,
218, 209, 0, 0, 0, 149, 0, 0, 159, 224,
164, 2, 226, 179, 0, 182, 168, 196, 3, 201,
205, 0, 285, 0, 0, 39, 46, 44, 155, 158,
126, 0, 165, 285, 126, 126, 0, 169, 0, 0,
679, 202, 203, 204, 197, 3, 285, 210, 145, 166,
151, 126, 227, 181, 176, 174, 170, 153, 126, 0,
680, 0, 0, 146, 167, 177, 171, 175, 174, 172,
3, 0, 480, 173, 198, 3, 199
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_int16 yydefgoto[] =
{
-1, 829, 470, 298, 45, 130, 131, 299, 300, 301,
302, 776, 758, 1131, 1132, 303, 304, 305, 306, 307,
308, 309, 310, 311, 312, 313, 314, 315, 316, 1038,
520, 984, 318, 985, 548, 962, 1064, 1498, 1066, 1067,
1068, 1069, 1499, 1070, 1071, 1430, 1431, 1397, 1398, 1399,
1481, 1482, 1486, 1487, 1516, 1517, 1072, 1359, 1073, 1074,
1296, 1297, 1298, 1468, 1075, 142, 968, 969, 970, 1376,
1047, 1460, 1461, 471, 472, 890, 891, 48, 49, 50,
51, 52, 342, 155, 55, 56, 57, 58, 59, 344,
61, 62, 259, 64, 65, 270, 346, 347, 68, 69,
70, 71, 115, 73, 200, 349, 116, 76, 117, 78,
79, 80, 451, 452, 453, 454, 692, 928, 693, 81,
82, 458, 713, 871, 872, 352, 353, 716, 717, 718,
354, 355, 356, 357, 468, 336, 132, 133, 524, 320,
166, 646, 647, 648, 649, 650, 83, 118, 85, 491,
492, 954, 493, 273, 497, 321, 86, 134, 135, 87,
1317, 1110, 1111, 1112, 1113, 88, 89, 734, 90, 269,
91, 92, 183, 1040, 680, 406, 122, 93, 503, 504,
505, 184, 264, 186, 187, 188, 265, 96, 97, 98,
99, 100, 101, 102, 191, 192, 193, 194, 195, 841,
607, 608, 609, 610, 196, 612, 613, 614, 573, 574,
575, 576, 697, 103, 616, 617, 618, 619, 620, 621,
927, 699, 700, 701, 597, 360, 361, 362, 363, 322,
161, 105, 106, 107, 365, 711, 570
};
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
#define YYPACT_NINF -1398
static const yytype_int16 yypact[] =
{
6576, 9185, -1398, -17, -1398, -1398, -1398, -1398, -1398, -1398,
-1398, 52, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398,
-1398, -1398, -1398, -1398, -1398, 68, 68, 68, 896, 827,
110, 6794, 119, -1398, -1398, -1398, -1398, -1398, 113, -1398,
-1398, -1398, 846, 99, 4087, -1398, -1398, -1398, -1398, -1398,
-1398, 127, 187, -1398, 1172, -1398, -1398, -1398, -1398, 213,
1319, 377, 73, 6903, -1398, -1398, 8670, 1020, -1398, -1398,
-1398, 1108, 405, 3263, 735, 755, 1108, 1297, -1398, -1398,
270, 375, -1398, 1108, 1712, -1398, 310, -1398, 433, 467,
-1398, -1398, -1398, -1398, 344, 187, 68, -1398, 68, -1398,
-1398, -1398, -1398, 9421, 1172, -1398, -1398, 1172, -1398, 9480,
347, -1398, -1398, 1683, 9539, -1398, 566, 566, 566, -1398,
-1398, -1398, 68, -1398, -1398, -1398, 411, 520, 539, -1398,
-1398, -1398, 571, -1398, -1398, -1398, -1398, -1398, 586, 589,
-1398, -1398, 44, 8109, 1146, 170, 593, 601, 620, 627,
643, 650, 8875, 6124, 653, 671, -1398, 8739, -1398, -1398,
-1398, -1398, 683, -1398, 200, 4814, -1398, 686, 231, -1398,
-1398, -1398, -1398, 695, 241, 266, 303, 68, 715, -1398,
-1398, 1319, 3193, 789, -1398, 79, -1398, 68, 68, 187,
-1398, -1398, 90, -1398, 68, 68, -1398, 3463, 774, 781,
566, 7457, -1398, -1398, 708, 4087, -1398, -1398, 1108, -1398,
-1398, -1398, 187, -1398, 1172, 127, -1398, 7213, -1398, 566,
566, 566, 187, -1398, 896, -1398, 3674, -1398, -1398, 783,
566, -1398, 566, -1398, 113, 8109, 9244, 811, -1398, 827,
836, 566, -1398, 896, 822, 831, -1398, 6794, 895, -1398,
-1398, -1398, 8540, -1398, -1398, 10011, -1398, 789, 72, 9539,
5124, 1683, 3463, -1398, 95, -1398, -1398, 9480, 1172, 867,
11227, -1398, -1398, 335, -1398, 10962, 874, 903, 4451, 4561,
10793, -1398, 884, -1398, -1398, -1398, -1398, 10850, 10850, 895,
7791, 900, 4561, 8215, -1398, -1398, -1398, -1398, -1398, -1398,
935, -1398, 534, 1879, 4561, -1398, 434, 167, 528, 511,
647, 906, 892, 901, 943, 107, -1398, -1398, 910, 568,
-1398, 304, -1398, -1398, 1146, -1398, -1398, 379, 936, -1398,
445, 936, 940, 113, -1398, -1398, 949, 9421, -1398, 954,
7897, -1398, -1398, 1152, 795, 7537, 7457, 1108, -1398, 1108,
566, 566, -1398, -1398, -1398, -1398, -1398, -1398, 566, 9598,
1172, -1398, -1398, 9657, 1548, -1398, 9303, -1398, -1398, -1398,
-1398, -1398, -1398, -1398, 955, 3974, 4561, -1398, -1398, -1398,
-1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398,
1683, -1398, 659, 951, 958, 961, 828, 965, 973, 974,
3193, -1398, -1398, 967, 127, 977, -1398, -1398, 975, -1398,
-1398, -1398, 8540, -1398, -1398, -1398, -1398, -1398, 3463, -1398,
8109, 8109, -1398, 566, 1683, 10399, 1172, 7602, -1398, -1398,
-1398, -1398, 8540, 72, -1398, -1398, 1108, 187, -1398, -1398,
8540, -1398, 5815, -1398, -1398, 566, 566, 400, 9716, 983,
1482, 4359, -1398, 391, 402, 827, -1398, 9244, 981, 970,
827, 566, -1398, -1398, -1398, -1398, 10135, -1398, 542, 7349,
-1398, 187, 984, -1398, 1683, 11037, 10622, -1398, -1398, -1398,
-1398, 866, 3463, -1398, 7667, 789, 6685, -1398, -1398, -1398,
1369, 559, 910, 827, 11227, 331, 9480, -1398, 11227, -1398,
-1398, -1398, -1398, 598, -1398, 993, 903, 83, 7791, -1398,
-1398, -1398, 7791, -1398, 8003, 7791, -1398, -1398, -1398, 992,
-1398, 603, 995, 614, 998, -1398, 2814, 5314, -1398, -1398,
-1398, 102, -1398, -1398, 10679, -1398, 276, -1398, -1398, -1398,
-1398, -1398, -1398, -1398, -1398, -1398, -1398, 5124, 5124, -1398,
4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561,
4561, 4561, 4561, 4561, 4561, 4561, 4561, 4561, 5021, 5124,
-1398, 568, 890, -1398, -1398, 68, 68, -1398, -1398, 8109,
-1398, -1398, 975, 895, -1398, 975, 10736, -1398, -1398, -1398,
8568, 5314, 997, 8321, 1000, -1398, 9775, -1398, -1398, 683,
-1398, 1001, 1078, 1002, 2554, 101, 910, -1398, 68, 68,
910, 137, -1398, 68, 68, 975, -1398, -1398, 68, 68,
-1398, 936, 9834, 1172, 11168, 212, 299, 9834, -1398, 10070,
-1398, 910, -1398, 9598, -1398, 130, 4245, 4245, 4245, 1172,
-1398, 4107, 1009, 955, 371, 1011, -1398, 994, 4814, 625,
-1398, 1079, 1172, 4245, 895, 1683, 895, 789, 688, 936,
-1398, -1398, 725, 936, -1398, -1398, -1398, 903, -1398, 936,
187, 10135, -1398, 673, 1007, 674, 1021, -1398, 1018, 187,
-1398, -1398, 8540, 187, 1024, 466, 483, 9893, 6236, 1773,
4561, 2687, -1398, -1398, 1015, 65, 1015, -1398, -1398, -1398,
68, 68, -1398, -1398, 827, -1398, 68, -1398, -1398, 9005,
827, 1025, 4561, -1398, 981, 11168, -1398, -1398, 1031, -1398,
-1398, -1398, 895, -1398, 11103, 4561, -1398, 4245, 697, 7537,
-1398, -1398, 683, 1034, 1035, 1369, 3328, -1398, -1398, 11227,
-1398, -1398, 1019, -1398, -1398, 1047, -1398, 1019, 1048, 10962,
5124, 150, 1027, 125, 1050, 1051, 900, 1053, 1061, -1398,
1062, 1064, 9064, 5898, -1398, 5124, -1398, 614, 1586, -1398,
5526, 5124, 1060, -1398, -1398, 955, 709, -1398, 5124, -1398,
-1398, -1398, -1398, -1398, -1398, -1398, 434, 434, 167, 167,
528, 528, 528, 528, 511, 511, 647, 906, 892, 901,
943, 4561, 640, -1398, 10135, 1071, 1072, 1073, 890, -1398,
-1398, -1398, -1398, -1398, 10135, 711, 4561, 4245, -1398, 9598,
-1398, 6348, 8427, 9362, 6124, -1398, -1398, -1398, 1078, 10135,
893, 1074, 1076, 1083, 1086, 1088, 1092, 1093, -1398, 3022,
2554, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398,
-1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398, 975, -1398,
-1398, -1398, 910, -1398, -1398, -1398, -1398, -1398, -1398, -1398,
-1398, 1094, -1398, 1095, 1100, -1398, -1398, 127, 1060, 4107,
-1398, -1398, -1398, 3974, 1096, -1398, -1398, -1398, -1398, 827,
5662, 1176, -1398, -1398, -1398, -1398, 1082, 127, -1398, -1398,
975, -1398, -1398, 975, 60, 975, -1398, -1398, -1398, -1398,
-1398, -1398, 8807, -1398, 187, -1398, 9244, -1398, -1398, 1110,
753, 1114, 1122, 1124, -1398, -1398, 2687, -1398, -1398, -1398,
-1398, -1398, -1398, -1398, 1482, -1398, 970, -1398, -1398, 1105,
1130, 1126, -1398, -1398, 1131, 1139, -1398, 697, 1707, -1398,
399, -1398, 3328, 910, -1398, 1148, 11227, 9952, 8109, 1150,
-1398, -1398, 1147, 1154, 1145, -1398, 4561, 131, 259, 1151,
-1398, 1156, 1156, 5314, 5124, -1398, -1398, 1156, -1398, 1586,
3974, -1398, -1398, -1398, -1398, 1157, 5124, 1162, 895, 4107,
-1398, 10679, -1398, 895, -1398, 5124, -1398, 784, 936, -1398,
-1398, -1398, -1398, -1398, -1398, -1398, 955, 7897, -1398, -1398,
6460, 1158, -1398, 796, 936, -1398, 807, 817, 936, -1398,
566, 3298, -1398, -1398, -1398, 10135, 10135, -1398, 7602, 7602,
-1398, 1160, 1164, 1168, 1173, -1398, 1174, 417, 121, 1060,
-1398, 895, -1398, 4814, -1398, 5124, -1398, 491, -1398, 5786,
1179, 1180, 10565, 1185, 1186, 55, 77, 104, 5124, 1187,
187, 3868, 1190, 1149, 1153, -1398, -1398, -1398, 1182, -1398,
-1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398, 827, 1188,
5124, -1398, 10135, 10135, 68, 1195, -1398, 9126, 8943, 842,
936, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398,
1199, 1707, -1398, -1398, 1183, -1398, 1019, -1398, -1398, 1683,
1196, -1398, -1398, -1398, 719, 1210, -1398, 125, 1215, 4561,
1200, 125, 125, 1212, -1398, 994, 5124, 1221, 1157, 612,
157, 1218, -1398, 1212, -1398, 1224, 1218, -1398, -1398, 1228,
-1398, -1398, 975, 1229, 1238, 6011, 1240, 1241, 1242, -1398,
-1398, 1247, -1398, -1398, 975, -1398, -1398, -1398, -1398, 975,
5124, 5124, 4561, 1246, -1398, -1398, -1398, -1398, -1398, -1398,
-1398, -1398, -1398, -1398, -1398, -1398, 4561, 4561, 1248, 1250,
1218, -1398, -1398, 827, -1398, -1398, -1398, 7148, 9952, 5124,
5124, 1310, 5124, -1398, -1398, 1234, -1398, 1235, 5124, 1236,
1237, 5124, 858, -1398, 1243, 8637, 68, -1398, -1398, 5662,
1255, 500, -1398, -1398, -1398, -1398, -1398, -1398, -1398, -1398,
-1398, 975, 10371, -1398, 7667, 1262, -1398, -1398, 9952, 523,
540, -1398, 1258, 1233, 903, 1268, -1398, 573, -1398, 5124,
1272, 1265, -1398, -1398, 1273, 288, 298, 895, 1276, 1281,
-1398, 1285, -1398, 10135, -1398, -1398, -1398, -1398, -1398, 1286,
-1398, 10135, 10135, 10135, -1398, -1398, 1287, -1398, 1288, 1292,
1298, 480, 7321, 7429, -1398, -1398, 700, -1398, 1300, 1303,
-1398, -1398, 7732, 721, 729, 1308, 741, 5468, -1398, -1398,
541, -1398, -1398, 745, 1311, 187, 1362, 1364, -1398, -1398,
10565, -1398, -1398, -1398, 1317, 1326, 10135, -1398, -1398, -1398,
1315, -1398, -1398, -1398, -1398, -1398, -1398, 9952, 903, 164,
-1398, 1305, 903, 1157, 370, -1398, -1398, -1398, -1398, -1398,
-1398, -1398, -1398, 1322, -1398, -1398, -1398, -1398, -1398, -1398,
1331, 1332, -1398, -1398, -1398, -1398, -1398, -1398, -1398, 1339,
-1398, 1340, -1398, -1398, 10565, 146, 5124, 10565, -1398, 1341,
5124, -1398, 203, 1360, -1398, -1398, 1350, -1398, -1398, -1398,
-1398, -1398, 1172, 1683, 1349, 935, 843, 4561, -1398, 749,
1353, 5124, 895, 895, 1359, 1361, 1366, 1370, -1398, -1398,
7602, 1354, -1398, 1424, 4561, 1365, -1398, -1398, 10485, -1398,
768, -1398, 1351, 10565, 1352, -1398, -1398, 1371, -1398, 1389,
1379, 9952, -1398, -1398, -1398, 903, 827, 1383, 1363, 1387,
-1398, 1218, 1218, -1398, -1398, -1398, -1398, -1398, 10565, 207,
-1398, 872, -1398, -1398, 7012, -1398, -1398, 1375, 5124, -1398,
5124, 7012, 187, 9716, 1399, -1398, -1398, 1398, 935, 778,
-1398, -1398, 5124, 1402, 1404, -1398, 4561, 4561, -1398, -1398,
957, 135, -1398, -1398, 1385, -1398, 957, -1398, -1398, 1825,
895, 187, 9716, 1409, 1391, -1398, -1398, -1398, -1398, -1398,
10485, 1411, 957, 7081, 5124, 10405, 1412, 957, 1419, 1825,
2940, -1398, -1398, -1398, -1398, -1398, 8109, -1398, -1398, 10250,
-1398, 10485, -1398, -1398, 1400, 10169, -1398, -1398, 10405, 187,
2940, 1431, 782, -1398, 10250, -1398, -1398, -1398, 10169, -1398,
-1398, 187, -1398, -1398, -1398, -1398, -1398
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-1398, 3548, 2440, -1398, 359, -1398, -1, 2, -248, -1398,
-1398, -1398, -508, -818, -239, 4695, -1398, -128, 484, 490,
457, 486, 963, 971, 969, 972, 985, -1398, 623, -468,
4060, 410, -704, -934, -1398, -64, -728, -419, -1398, 165,
-1398, 330, -1091, -1398, -1398, 84, -1398, -1055, -804, 178,
-1398, -1398, -1398, -1398, 24, -1397, -1398, -1398, -1398, -1398,
-1398, -1398, 248, 76, 53, -1398, -499, -1398, 438, 233,
-1038, 115, -1398, -309, -1398, -1398, -1398, -878, -1398, -1398,
5, -977, 86, 1230, -1398, -1398, -1398, -65, -1398, 82,
326, -195, 939, 3408, -1398, -1398, 54, 724, 990, -258,
1989, -1398, 966, -1398, -1398, 112, 1459, -1398, 1633, 1584,
-1398, -1398, -421, -417, 1115, 1120, 628, 875, 262, -1398,
-1398, 1113, 634, -519, -1398, -67, 383, 999, -1398, -1398,
-990, -956, -329, 988, 991, 29, -1398, -6, 45, -37,
-170, -152, 599, 699, -1398, 929, -1398, 1962, 1701, -437,
845, -1398, -1398, 633, -1398, -232, -1398, 32, -1398, -1398,
-1398, -1239, 360, -1398, -1398, -1398, 1104, -1398, 38, -1398,
-1398, -858, -106, -1287, -102, 2356, -1398, 2384, -1398, 852,
-1398, -163, 97, -172, -171, -166, 4, -41, -34, -31,
1423, 0, 9, 37, -68, -160, -157, -153, -151, -324,
-522, -480, -478, -541, -297, -552, -1398, -1398, -495, 1023,
1037, 1038, 2410, 4141, -567, -561, -559, -542, -556, -1398,
-425, -675, -673, -671, -591, 91, -238, -1398, -1398, 353,
294, -76, -1398, 3086, 180, -588, -295
};
/* 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 -510
static const yytype_int16 yytable[] =
{
110, 146, 46, 447, 95, 422, 111, 263, 147, 393,
394, 148, 1076, 378, 921, 395, 922, 500, 923, 401,
606, 396, 963, 138, 397, 698, 777, 256, 398, 507,
399, 860, 1077, 46, 703, 95, 709, 843, 1168, 1169,
1211, 835, 149, 836, 46, 434, 46, 611, 158, 846,
834, 150, 1128, 47, 66, 853, 46, 742, 119, 884,
837, 747, 46, 842, 189, 46, 982, 212, 46, 140,
222, 215, 1186, 1170, 237, 240, 338, 809, 1374, 151,
831, 404, 60, 173, 47, 66, 53, 112, 1506, 393,
394, 419, 921, 276, 922, 395, 923, 94, 769, 401,
198, 396, 30, 670, 397, 30, 46, 1432, 398, 46,
399, 1519, 74, 60, 402, 46, 30, 53, 875, 876,
108, 630, 832, 679, 833, 634, 939, 30, 94, 403,
141, 683, 30, 257, 893, 530, 258, 719, 30, 145,
146, 94, 108, 74, 199, 277, 46, 147, 158, 206,
148, 511, 216, 120, 46, 477, 479, 185, 530, 46,
94, 368, 1084, 94, 528, 529, 737, 108, 405, 108,
1432, 1185, 1447, 478, 30, 1136, 549, -225, -225, 1194,
248, 149, 405, 46, 46, 752, 158, 473, 1394, 1395,
150, 413, 753, 405, 402, 567, 483, 740, 405, 46,
286, 1196, 844, 152, 603, 773, 530, 46, 946, 158,
1176, 139, 529, 831, 143, 1198, 46, 169, 151, 46,
146, 437, 925, 1180, 163, 530, 521, 147, 966, 568,
148, 478, 1119, 459, 668, 1245, 1177, 665, 851, 530,
603, 94, -225, 433, 938, 1394, 1395, 467, 529, 46,
165, 95, 1396, 569, 94, 832, 441, 833, 751, 964,
249, 589, 1246, 46, 46, 1377, 158, 835, 1170, 836,
46, 248, 325, 1024, 846, 462, 1011, 46, 392, 185,
553, 554, 1168, 1169, 657, 465, 837, 694, 518, 163,
338, 1138, 703, 167, 104, 104, 1456, 485, 1003, 1023,
47, 66, 94, 435, 502, 1323, 831, 611, 372, 1405,
1186, 847, 672, 1000, 94, 850, 863, 1170, 677, 665,
864, 177, 1177, 323, 373, 104, 46, 113, 368, 60,
1200, 1076, 666, 53, 474, 108, 867, 136, 234, 381,
870, 108, 719, 1436, 94, 46, 46, 473, 832, 384,
833, 1077, 820, 108, 411, 382, 673, 675, 481, 74,
104, 1120, 46, 108, 74, 385, 46, 473, 1121, 645,
156, 235, 173, 914, 386, 473, 236, 431, 1449, 779,
197, 843, 696, 674, 676, 430, 835, 439, 836, 631,
387, 1327, 46, 635, 1505, 869, 108, 160, 136, 137,
1427, 1329, 46, 865, 368, 837, 578, 866, -281, 1360,
1514, 388, 579, 172, 666, 323, 860, 1518, 243, 904,
46, 94, 783, 784, 785, 1436, 46, 389, 46, 254,
1436, 598, 743, 246, 1170, 156, 108, 744, 136, 137,
108, 605, 136, 137, 521, 248, 1436, 430, 521, 708,
338, 521, 46, 1436, 459, 522, 495, 1186, 496, 746,
1156, 1158, 160, 172, 1186, 529, 172, -505, 110, 319,
260, 1065, -109, 163, 880, 719, 46, 760, 335, 1381,
580, 239, 405, 1134, 46, 719, 368, 741, 46, 745,
95, 500, 46, -109, 474, 1087, 885, 185, 1118, 704,
719, 1092, 684, 865, 802, 967, 1186, 1102, 579, 698,
706, 172, -10, 757, 474, 705, 1022, 393, 394, 1106,
600, -102, 474, 395, 74, -102, 707, 424, 401, 396,
774, 428, 397, 757, 1024, 780, 398, 1241, 399, 47,
66, 104, 813, 611, 74, 550, 583, 695, 405, 895,
551, 552, 74, 754, 1092, 897, 1462, 755, 429, 1358,
761, 319, 450, 1462, 1421, 1422, 728, 1027, 60, 873,
873, 873, 53, 172, 704, 731, 8, 9, 10, 11,
12, 1005, 467, 94, 1346, 820, 873, 605, 1347, 455,
917, 706, 46, 428, 557, 558, 490, 529, 74, 1183,
323, 323, 681, 30, 46, 1502, 46, 918, 1183, 555,
556, 338, 531, 532, 533, 1184, 523, 473, 1233, 156,
429, -431, 1237, 402, 1303, 46, 33, 172, 1022, 559,
560, 1312, 1404, 1191, 172, 534, 723, 535, 881, 536,
-432, 46, 981, 525, 721, 822, 160, 1313, 1314, 765,
722, 1235, 862, 894, 46, 896, 1480, 46, 1103, 943,
873, 738, 1485, 588, 1315, 1361, 595, 739, 877, 571,
703, 405, 272, 522, 820, 1321, 323, 522, 1501, 572,
522, 892, 1322, 1508, 598, 628, 338, 274, 529, 632,
275, 46, 335, 46, 323, 326, 719, 719, 933, 830,
748, 605, 172, 327, 936, 764, 749, 1035, 1274, 1275,
1464, 765, 1465, 598, -109, 767, -109, 405, 598, 172,
-109, 942, 328, 172, 67, 768, 1114, 1081, 886, 329,
644, 1042, 561, 562, 887, -109, -109, 46, 46, 2,
202, 4, 5, 6, 7, 330, 319, 319, 765, 995,
873, 46, 331, 719, 719, 67, 1503, 366, -282, 323,
248, 325, 405, 665, 474, 8, 9, 10, 11, 12,
728, 694, 367, 600, 450, 908, 910, 450, 502, 731,
104, 765, 765, 450, 371, 172, 920, 208, 695, 898,
1065, 405, 30, 379, 74, 113, 383, 34, 947, 35,
603, 455, 861, -456, 455, -456, 474, 600, 948, -456,
455, 990, 426, 1002, 921, 33, 922, 991, 923, 722,
490, 1231, 319, 1354, 490, 1160, 901, 579, 405, 765,
46, 1355, 830, 605, 523, 906, 74, 765, 523, 391,
319, 523, 46, 1357, 913, 728, 403, 1362, 915, 765,
820, 1418, 335, 765, 731, 325, 405, 1415, 666, -3,
36, 525, 179, 180, 39, 525, 696, 730, 525, 967,
1437, 40, 41, 967, 967, 420, 765, 645, 822, 529,
1474, 1367, 421, 1048, 1522, 1140, 1183, 405, 1046, 1063,
579, 1181, 108, 1308, 136, 137, 602, 1152, 603, 405,
8, 9, 10, 11, 12, 319, 604, 444, 1155, 1417,
603, 36, 1294, 1295, 46, 39, 818, 457, 1157, 595,
603, 511, 40, 41, 719, 830, 1429, 30, 46, 413,
661, 405, 719, 719, 719, 1393, 46, 605, 1401, 63,
114, 436, 460, 1219, 66, 405, 463, 42, 859, 172,
33, 1415, 1416, 595, 46, 464, 929, 144, 929, 868,
108, 126, 1107, 127, 128, 129, 72, 483, 325, 405,
63, 67, 60, 486, 645, 506, 53, 719, 286, 1435,
1457, 1458, 172, 157, 1439, 514, 1319, 1130, 1478, 1429,
757, 571, 1130, 405, 844, 325, 603, 72, 172, 1394,
1395, 572, 74, 1226, 526, 217, 1328, 1330, 1331, 1455,
530, 172, 564, 335, 790, 791, 792, 793, 563, 874,
874, 874, 565, 695, 2, 202, 4, 5, 6, 7,
566, 695, 218, 569, 529, 450, 874, 786, 787, 334,
1130, -428, 255, 1108, 1492, 788, 789, 794, 795, 605,
587, 1063, 224, 658, 1195, 1197, 1199, 225, 590, 640,
659, 226, 455, 660, 230, 490, 232, 662, 667, 208,
1375, 730, 1048, 241, 1375, 663, 664, 1046, 253, 1086,
1513, 669, 34, 324, 35, 1092, 1513, 687, 335, 710,
-229, 255, 345, 712, 750, 1513, 762, 766, 598, 1513,
770, 823, 883, 1188, 825, 827, 838, 889, 172, 909,
874, 46, 2, 202, 4, 5, 6, 7, -12, 348,
882, 400, 912, 911, 690, 1283, 1284, 739, 1286, 338,
916, 474, 937, -405, 1290, 53, 418, 1293, 323, 423,
425, -509, 951, 36, 157, 1004, 730, 39, 958, 818,
960, 965, 971, 972, 40, 41, 8, 9, 10, 11,
12, 74, 974, 975, 976, 442, 977, 1448, 986, 445,
34, 446, 35, 997, 998, 999, 1013, 1281, 1014, 828,
461, 603, 1280, 30, 104, 1015, 63, 861, 1016, 604,
1017, 475, 443, 215, 1018, 1019, 1030, -393, 225, 208,
874, 482, -392, 1044, 1078, 1080, 33, 46, 1063, 425,
67, 36, 1095, 72, 1088, 39, 1089, 36, 72, 170,
171, 39, 40, 41, 1090, 1202, 1091, 728, 40, 41,
54, 54, 1096, 1107, 1097, 1098, 731, 36, 818, 170,
171, 39, 450, 1099, 1130, 1130, 1130, 42, 40, 41,
1105, 104, 1115, 367, 1117, 765, 1116, 144, 1206, 1122,
1150, 54, 980, 66, 1512, 1126, 1129, 1413, 1171, 455,
1173, 172, 1172, 206, 216, 1174, 255, 1207, 1175, 596,
1189, 1190, 490, 1109, 319, 624, 1192, 1193, 1201, -3,
1212, 60, 1400, 54, 1205, 53, 54, 1217, 629, 1063,
-283, 1223, 629, 1227, 495, 255, 728, 8, 9, 10,
11, 12, 218, 924, 1108, 731, 1232, 393, 394, 1234,
1239, 74, 1107, 395, 1236, 1243, 1247, 401, 1250, 396,
1252, 1254, 397, 859, 30, 924, 398, 225, 399, 230,
1255, 1188, 1318, 104, 1256, 1257, 1258, 665, 436, 1260,
1267, 475, 1276, 1063, 1277, 1285, 1063, 33, 1288, 1289,
1291, 1292, 1302, 1491, 1310, 1316, 345, 1299, 435, 474,
1320, 475, 1325, 53, 46, 46, 1324, 1326, 72, 475,
1332, 1130, 1130, 343, 36, 1333, 179, 180, 39, 1334,
1336, 1342, 1343, 348, 1344, 40, 41, 1063, 72, 74,
1345, 1412, 1063, 1108, 1352, 715, 72, 1353, 425, 1356,
1048, 1167, 1363, 450, 818, 1046, 1107, 1295, 1366, 1368,
181, 1371, 402, 729, 994, 63, 225, 1063, 1369, 1378,
182, 1381, 348, 425, 36, 1388, 1389, 425, 39, 208,
455, -394, 666, 1403, 1392, 40, 41, 54, 146, 1407,
348, 1409, 72, 208, 720, 147, 1414, 1419, 148, 75,
1364, 1423, 1347, 1424, 1428, 255, 345, 159, 1425, 1493,
735, 46, 1426, 1442, 1433, 1438, 1440, 54, 1444, 1063,
736, 1446, 104, 190, 1063, 1450, 213, 1451, 1188, 223,
75, 46, 46, 348, 158, 1188, 1452, 1108, 1063, 1463,
1063, 1471, 1037, 104, 1063, 1473, 1476, 1063, 1477, 1484,
1496, 808, 46, 1063, 368, 1497, 474, 1063, 1500, 1507,
53, 1509, 104, 474, 1515, 219, 796, 53, 730, 629,
821, 335, 596, 1521, 798, 797, 1242, 1188, 799, 1301,
1406, 1479, 1523, 840, 1365, 208, 74, 36, 1495, 179,
180, 39, 800, 74, 1109, 1379, 1466, 348, 40, 41,
1238, 596, 1093, 685, 172, 474, 596, 159, 686, 53,
1094, 930, 629, 714, 815, 345, 345, 345, 888, 1125,
369, 104, 1043, 689, 953, 405, 481, 1104, 1311, 924,
733, 690, 345, 691, 805, 74, 8, 9, 10, 11,
12, 961, 348, 348, 348, 159, 0, 1467, 806, 807,
715, 104, 350, 36, 67, 170, 171, 39, 1137, 348,
0, 475, 0, 30, 40, 41, 255, 729, 159, 0,
926, 0, 0, 77, 0, 0, 1494, 348, 0, 0,
438, 0, 0, 1109, 0, 0, 33, 210, 72, 371,
0, 0, 0, 0, 348, 1349, 0, 343, 0, 720,
0, 0, 0, 475, 77, 0, 345, 0, 1037, 0,
907, 0, 0, 0, 1520, 952, 323, 0, 425, 0,
0, 0, 0, 0, 0, 0, 1525, 767, 0, 405,
72, 0, 0, 348, 0, 0, 0, 768, 210, 220,
0, 255, 729, 0, 0, 104, 75, 979, 0, 0,
0, 75, 0, 0, 0, -284, 54, 8, 9, 10,
11, 12, 8, 9, 10, 11, 12, 0, 104, 348,
0, 172, 0, 0, 436, 104, 0, 1109, 0, 0,
0, 210, 924, 715, 30, 0, 0, 369, 36, 30,
179, 180, 39, 715, 0, 0, 345, 343, 629, 40,
41, 1010, 629, 821, 211, 0, 0, 33, 715, 1469,
348, 0, 33, 67, 0, 0, 0, 104, 1021, 0,
348, 238, 0, 348, 261, 0, 351, 0, 218, 0,
348, 0, 720, 0, 262, 348, 1470, 0, 1469, 924,
924, 210, 720, 996, 0, 219, 0, 0, 947, 0,
603, 0, 0, 1001, 0, 211, 0, 720, 948, 0,
0, 343, 319, 369, 0, 1470, 0, 0, 1012, 63,
0, 0, 0, 0, 0, 0, 0, 0, 36, 210,
179, 180, 39, 210, 0, 0, 0, 0, 0, 40,
41, 629, 0, 0, 0, 0, 72, 0, 211, 0,
0, 0, 0, 0, 0, 0, 343, 343, 343, 0,
0, 75, 0, 0, 689, 0, 405, 0, 0, 0,
77, 0, 0, 343, 691, 77, 350, 1101, 0, 0,
36, 75, 179, 180, 39, 425, 114, 0, 0, 75,
0, 40, 41, 0, 0, 0, 0, 0, 0, 0,
0, 208, 345, 0, 0, 0, 0, 0, 211, 0,
0, 0, 0, 0, 0, 350, 1489, 0, 405, 210,
0, 0, 0, 67, 0, 0, 1490, 0, 0, 348,
0, 0, 0, 350, 0, 75, 596, 0, 0, 0,
0, 0, 0, 0, 0, 0, 211, 343, 0, 423,
211, 0, 84, 0, 715, 715, 0, 345, 345, 537,
538, 539, 540, 541, 542, 543, 544, 545, 546, 220,
0, 0, 0, 0, 0, 0, 350, 0, 1187, 0,
0, 348, 348, 84, 348, 348, 0, 0, 0, 0,
924, 0, 547, 0, 0, 0, 436, 0, 0, 210,
0, 67, 0, 720, 720, 72, 0, 924, 0, 0,
0, 715, 715, 0, 1165, 1166, 0, 629, 221, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 77, 211, 343, 348, 348,
350, 0, 209, 0, 343, 0, 0, 0, 0, 210,
351, 0, 228, 0, 0, 77, 0, 0, 0, 0,
720, 720, 0, 77, 0, 0, 0, 0, 0, 924,
924, 1214, 1215, 0, 729, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 350, 350, 350, 0, 351,
0, 0, 0, 209, 0, 0, 0, 0, 0, 0,
0, 348, 350, 0, 0, 358, 0, 351, 0, 77,
54, 0, 0, 0, 0, 0, 211, 1282, 0, 0,
350, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 75, 0, 0, 255, 0, 209, 350, 63, 0,
0, 0, 0, 0, 218, 0, 0, 0, 67, 0,
351, 715, 0, 729, 0, 67, 0, 114, 0, 0,
0, 0, 0, 0, 0, 72, 211, 0, 0, 0,
210, 0, 0, 75, 0, 0, 350, 54, 348, 0,
348, 0, 715, 0, 0, 0, 0, 0, 0, 0,
715, 715, 715, 343, 0, 0, 209, 67, 210, 84,
1309, 345, 345, 210, 84, 0, 0, 0, 0, 348,
0, 0, 350, 0, 351, 0, 1187, 348, 348, 348,
0, 0, 0, 0, 0, 0, 0, 0, 348, 348,
0, 720, 0, 0, 209, 715, 0, 0, 209, 720,
720, 720, 1335, 72, 0, 0, 114, 0, 343, 343,
1337, 1338, 1339, 350, 501, 0, 0, 0, 0, 351,
351, 351, 348, 350, 0, 0, 350, 0, 0, 54,
0, 219, 0, 350, 0, 0, 351, 0, 350, 0,
0, 0, 0, 0, 720, 0, 0, 211, 0, 210,
0, 0, 0, 0, 351, 1370, 0, 0, 221, 0,
0, 0, 0, 210, 0, 77, 0, 0, 0, 0,
0, 351, 0, 0, 0, 211, 0, 0, 0, 345,
211, 0, 0, 0, 209, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 75,
114, 0, 0, 0, 0, 0, 348, 77, 0, 0,
351, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1187, 84, 0, 0, 0, 0, 0,
1187, 121, 124, 125, 0, 0, 0, 0, 0, 358,
0, 0, 0, 0, 84, 0, 351, 0, 0, 0,
72, 0, 84, 0, 0, 210, 0, 72, 0, 123,
123, 123, 0, 0, 209, 0, 211, 54, 54, 0,
0, 0, 1187, 0, 0, 0, 0, 0, 358, 1510,
211, 209, 350, 0, 0, 0, 0, 351, 0, 54,
0, 0, 0, 0, 0, 0, 358, 351, 84, 72,
351, 0, 250, 0, 251, 220, 0, 351, 54, 0,
0, 0, 351, 0, 209, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
123, 0, 123, 0, 350, 350, 0, 350, 350, 358,
164, 0, 168, 0, 0, 174, 175, 176, 0, 178,
0, 0, 343, 343, 0, 0, 271, 0, 75, 0,
0, 0, 54, 0, 229, 0, 0, 54, 0, 0,
0, 0, 211, 77, 0, 0, 244, 245, 0, 0,
0, 0, 0, 390, 0, 0, 0, 0, 0, 0,
0, 350, 350, 409, 410, 0, 0, 54, 414, 0,
416, 417, 0, 358, 0, 0, 0, 0, 0, 0,
0, 123, 0, 0, 8, 9, 10, 11, 12, 123,
0, 123, 123, 0, 0, 0, 123, 0, 123, 123,
0, 0, 0, 0, 0, 209, 0, 0, 0, 0,
0, 30, 0, 0, 210, 407, 0, 0, 358, 358,
358, 0, 415, 0, 350, 0, 351, 0, 0, 0,
0, 0, 0, 209, 33, 358, 0, 0, 209, 36,
343, 179, 180, 39, 0, 0, 0, 0, 0, 0,
40, 41, 0, 358, 0, 0, 0, 0, 0, 0,
0, 54, 0, 0, 84, 0, 0, 219, 123, 0,
358, 0, 0, 0, 0, 602, 0, 603, 351, 351,
0, 351, 351, 0, 54, 604, 0, 0, 75, 0,
0, 54, 0, 0, 407, 0, 0, 0, 0, 0,
0, 350, 77, 350, 0, 0, 84, 0, 0, 358,
0, 0, 0, 0, 0, 0, 0, 8, 9, 10,
11, 12, 0, 0, 209, 0, 0, 0, 0, 0,
0, 211, 350, 54, 0, 351, 351, 0, 209, 0,
350, 350, 350, 0, 30, 358, 0, 0, 0, 577,
0, 350, 350, 0, 0, 0, 0, 581, 501, 0,
584, 0, 0, 0, 0, 0, 75, 33, 0, 0,
0, 0, 36, 0, 179, 180, 39, 0, 0, 0,
0, 0, 0, 40, 41, 350, 358, 0, 0, 0,
0, 210, 0, 0, 0, 0, 358, 0, 351, 358,
594, 601, 0, 0, 221, 0, 358, 0, 689, 0,
405, 358, 625, 626, 0, 0, 0, 0, 691, 0,
0, 0, 407, 0, 0, 0, 415, 0, 0, 0,
209, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 220, 0, 0, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, -285, 77, 25, 26, 27, 0, 0, 0, 350,
0, 30, 84, 0, 0, 351, 0, 351, 0, 0,
0, 0, 0, 0, 0, 0, 210, 0, 0, 0,
0, 0, 0, 0, 33, 0, 0, 0, 0, 0,
0, 37, 38, 0, 0, -285, 351, 0, 211, 0,
0, 407, 0, 75, 351, 351, 351, 0, 0, 0,
75, 0, 0, 0, 0, 351, 351, 0, 0, 0,
0, 0, 0, 0, 0, 636, 0, 334, 0, 0,
77, 0, 0, 0, 0, 109, 0, 0, 0, 0,
0, 810, 811, 0, 0, 358, 0, 0, 0, 351,
0, 0, 75, 0, 0, 0, 0, 0, 0, 0,
8, 9, 10, 11, 12, 0, 0, 0, 0, 123,
123, 845, 0, 0, 848, 849, 0, 852, 0, 854,
855, 0, 0, 0, 856, 857, 0, 30, 0, 0,
0, 577, 577, 211, 0, 0, 0, 358, 358, 123,
358, 358, 123, 123, 0, 123, 0, 123, 123, 209,
33, 0, 123, 123, 0, 36, 0, 179, 180, 39,
0, 84, 0, 0, 0, 0, 40, 41, 0, 0,
0, 0, 0, 351, 0, 0, 0, 0, 0, 1020,
0, 0, 8, 9, 10, 11, 12, 0, 0, 0,
0, 1489, 0, 405, 358, 358, 0, 0, 0, 0,
0, 1490, 0, 0, 0, 0, 931, 932, 278, 30,
279, 0, 934, 0, 0, 0, 0, 77, 899, 0,
0, 0, 902, 0, 77, 0, 0, 0, 0, 123,
0, 280, 33, 0, 123, 123, 0, 281, 0, 0,
123, 282, 0, 0, 283, 284, 285, 286, 40, 41,
0, 287, 288, 0, 0, 407, 0, 358, 0, 289,
0, 0, 0, 0, 0, 0, 77, 0, 0, 0,
0, 0, 0, 290, 0, 374, 0, 0, 0, 0,
162, 0, 292, 816, 294, 295, 296, 297, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 214,
221, 0, 0, 0, 0, 0, 940, 0, 941, 0,
0, 0, 0, 0, 0, 944, 945, 0, 0, 0,
950, 84, 0, 0, 0, 0, 209, 0, 0, 0,
0, 0, 955, 0, 358, 0, 358, 959, 0, 0,
0, 0, 0, 0, 0, 162, 0, 0, 0, 0,
268, 0, 0, 8, 9, 10, 11, 12, 0, 0,
0, 0, 987, 0, 0, 358, 0, 0, 577, 0,
0, 0, 0, 358, 358, 358, 0, 0, 0, 162,
30, 0, 0, 0, 358, 358, 0, 0, 0, 364,
0, 0, 0, 370, 0, 0, 0, 0, 0, 84,
0, 0, 0, 33, 0, 0, 594, 0, 36, 0,
179, 180, 39, 0, 0, 0, 0, 0, 358, 40,
41, 209, 0, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
0, 162, 0, 0, 181, 0, 0, 0, 0, 0,
30, 0, 0, 214, 182, 1161, 0, 0, 8, 9,
10, 11, 12, 1031, 1032, 1033, 1034, 0, 1036, 0,
0, 162, 456, 33, 0, 0, 0, 0, 0, 0,
407, 0, 0, 1079, 278, 30, 279, 0, 8, 9,
10, 11, 12, 0, 0, 370, 0, 1085, 0, 0,
0, 0, 358, 162, 0, 0, 0, 280, 33, 0,
0, 0, 0, 281, 0, 30, 0, 282, 0, 0,
283, 284, 285, 286, 40, 41, 456, 287, 288, 162,
0, 0, 0, 0, 0, 289, 1100, 0, 33, 0,
0, 0, 0, 36, 0, 0, 84, 39, 0, 290,
0, 374, 0, 84, 40, 41, 0, 1141, 292, 1162,
294, 295, 296, 297, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1153, 0, 1127, 599, 0, 0, 735,
0, 623, 1135, 0, 0, 0, 1139, 0, 0, 736,
1216, 1143, 0, 1144, 0, 84, 0, 1146, 1147, 1148,
0, 0, 1151, 0, 0, 0, 0, 0, 0, 0,
0, 1163, 0, 0, 0, 0, 0, 0, 123, 0,
0, 207, 0, 8, 9, 10, 11, 12, 0, 1178,
1179, 227, 0, 231, 0, 233, 0, 0, 0, 0,
0, 0, 242, 0, 0, 0, 0, 0, 0, 1220,
30, 0, 0, 0, 0, 1208, 162, 162, 1210, 0,
0, 0, 0, 364, 0, 0, 0, 0, 0, 0,
0, 0, 207, 33, 231, 233, 242, 0, 36, 0,
179, 180, 39, 0, 456, 0, 0, 456, 0, 40,
41, 0, 0, 456, 0, 0, 1225, 0, 0, 0,
0, 0, 1229, 1230, 0, 0, 0, 0, 0, 0,
0, 0, 1300, 1240, 261, 207, 0, 0, 1244, 0,
732, 1248, 0, 1249, 262, 0, 1251, 0, 0, 0,
0, 0, 162, 0, 0, 0, 0, 0, 0, 1259,
123, 153, 0, 0, 456, 0, 0, 0, 456, 0,
162, 456, 1266, 0, 1268, 1269, 1270, 1271, 0, 0,
0, 0, 0, 364, 0, 0, 0, 0, 0, 0,
1278, 0, 1279, 0, 0, 207, 168, 231, 233, 242,
0, 0, 0, 0, 0, 0, 0, 247, 0, 0,
0, 0, 0, 0, 0, 0, 0, 252, 0, 0,
0, 0, 0, 0, 1304, 1305, 0, 0, 0, 0,
0, 0, 0, 207, 0, 162, 0, 207, 0, 0,
0, 0, 0, 0, 0, 0, 0, 364, 0, 599,
0, 0, 826, 499, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, -285, 153, 0, 1340, 1341, 0, 0, 599, 0,
0, 30, 0, 599, 1351, 380, 0, 0, 0, 0,
0, 0, 364, 364, 364, 0, 0, 0, 0, 0,
0, 0, 207, 0, 33, 0, 0, 0, 412, 364,
0, 0, 0, 0, 0, -285, 0, 0, 0, 0,
0, 0, 427, 207, 0, 0, 0, 0, 231, 233,
0, 432, 0, 1380, 0, 0, 242, 0, 0, 0,
0, 440, 0, 0, 732, 1384, 0, 1385, 1386, 1387,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1391,
0, 0, 0, 0, 0, 456, 466, 0, 1402, 0,
0, 476, 0, 0, 0, 0, 0, 0, 207, 0,
1410, 0, 0, 364, 484, 949, 0, 0, 0, 0,
494, 0, 498, 0, 0, 0, 207, 0, 0, 0,
0, 207, 0, 207, 0, 0, 0, 0, 0, 527,
0, 0, 0, 0, 0, 0, 0, 0, 0, 732,
207, 0, 0, 207, 207, 0, 0, 0, 0, 0,
0, 1453, 1454, 0, 0, 0, 0, 0, 0, 207,
0, 0, 0, 0, 1459, 0, 0, 0, 0, 0,
0, 1459, 586, 207, 0, 0, 0, 591, 0, 0,
207, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 364, 278, 0, 279, 623, 1488, 0,
364, 0, 0, 0, 0, 637, 0, 0, 0, 638,
639, 0, 641, 0, 0, 0, 0, 280, 651, 652,
0, 653, 654, 281, 655, 1511, 656, 282, 0, 0,
283, 284, 285, 286, 40, 41, 0, 287, 288, 0,
0, 0, 0, 586, 0, 289, 0, 0, 0, 0,
1524, 671, 0, 0, 0, 1526, 0, 0, 0, 290,
0, 374, 0, 0, 0, 0, 0, 0, 292, 376,
294, 295, 296, 297, 0, 0, 682, 0, 0, 0,
0, 0, 1203, 0, 0, 0, 0, 688, 0, 0,
0, 0, 456, 0, 207, 0, 0, 0, 0, 0,
278, 0, 279, 0, 0, 0, 0, 0, 0, 0,
724, 0, 0, 0, 0, 0, 727, 0, 0, 0,
0, 466, 207, 280, 0, 0, 0, 207, 0, 642,
0, 136, 137, 282, 162, 0, 283, 284, 285, 286,
40, 41, 0, 287, 288, 0, 0, 0, 0, 364,
0, 289, 0, 0, 0, 0, 0, 763, 0, 0,
0, 0, 0, 0, 0, 290, 0, 643, 0, 644,
375, 0, 0, 778, 292, 376, 294, 295, 296, 297,
0, 0, 0, 599, 0, 0, 0, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 364, 364, 25, 26, 27, 804,
0, 0, 0, 207, 30, 0, 0, 0, 814, 0,
0, 0, 0, 0, 0, 817, 0, 207, 0, 0,
824, 0, 0, 278, 0, 279, 0, 33, 0, 0,
0, 839, 36, 0, 37, 38, 39, 499, 0, 0,
0, 0, 0, 40, 41, 0, 280, 0, 0, 0,
0, 0, 281, 456, 0, 0, 282, 0, 0, 283,
284, 285, 286, 40, 41, 0, 287, 288, 42, 0,
154, 879, 0, 0, 289, 0, 0, 0, 44, 0,
0, 0, 0, 317, 0, 0, 0, 0, 290, 0,
374, 0, 0, 341, 0, 771, 207, 292, 376, 294,
295, 296, 297, 0, 0, 377, 824, 0, 0, 207,
0, 732, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 207, 2,
202, 4, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 214, 25, 26, 27, 0, 0, 0,
0, 247, 30, 0, 0, 0, 0, 0, 0, 0,
0, 956, 957, 337, 359, 317, 0, 0, 0, 0,
0, 0, 0, 0, 973, 33, 0, 34, 0, 35,
732, 0, 37, 38, 0, 0, 0, 0, 0, 0,
480, 988, 0, 989, 0, 0, 408, 993, 0, 0,
0, 0, 0, 408, 207, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -390, 678, 0,
0, 0, 0, 0, 0, 0, 627, 0, 364, 364,
207, 0, 0, 0, 0, 0, 0, 0, 214, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 207, 25, 26,
27, 0, 1025, 0, 0, 0, 30, 448, 0, 1026,
0, 0, 0, 0, 0, 408, 0, 0, 0, 0,
0, 0, 1028, 0, 1029, 0, 0, 0, 207, 33,
0, 0, 0, 0, 0, 0, 37, 38, 1041, 207,
0, 0, 0, 0, 1045, 377, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 1082, 0, 0, 1083,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
408, 0, 449, 0, 0, 0, 702, 591, 408, 582,
109, 408, 585, 0, 0, 0, 364, 0, 0, 0,
0, 359, 0, 0, 0, 615, 0, 278, 0, 279,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 633, 0, 0, 337, 0, 207,
280, 0, 0, 0, 0, 0, 281, 0, 0, 0,
282, 0, 0, 283, 284, 285, 286, 40, 41, 456,
287, 288, 0, 408, 0, 0, 726, 408, 289, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 508, 0, 1145, 0, 0, 0, 456, 0,
0, 292, 376, 294, 295, 296, 297, 0, 359, 0,
0, 0, 0, 0, 759, 0, 0, 0, 0, 0,
0, 0, 162, 0, 0, 0, 0, 772, 0, 0,
0, 408, 0, 0, 759, 207, 0, 278, 0, 279,
0, 0, 0, 0, 0, 0, 0, 781, 782, 0,
527, 0, 0, 0, 0, 0, 1209, 0, 0, 0,
280, 0, 408, 0, 0, 359, 281, 0, 0, 803,
282, 0, 0, 283, 284, 285, 286, 40, 41, 812,
287, 288, 0, 0, 0, 1222, 341, 0, 289, 0,
1224, 772, 0, 0, 0, 0, 0, 0, 1228, 0,
0, 0, 290, 0, 408, 0, 0, 337, 359, 0,
0, 292, 376, 294, 295, 296, 297, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 1253, 0,
207, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1261, 878, 0, 1262, 0, 1263, 0, 0, 377, 0,
0, 0, 408, 408, 0, 0, 0, 0, 0, 1272,
1273, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 819, 359, 0, 359, 0, 0, 0, 0, 0,
0, 1287, 0, 615, 0, 615, 615, 0, 341, 0,
0, 0, 615, 0, 0, 0, 0, 0, 0, 0,
0, 0, 858, 359, 0, 0, 0, 1306, 359, 0,
0, 0, 0, 0, 0, 0, 0, 359, 359, 359,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 359, 0, 0, 0, 0, 408,
900, 0, 0, 408, 903, 0, 0, 0, 0, 0,
905, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 772, 0, 978, 0, 0, 337, 359,
408, 983, 408, 0, 0, 0, 408, 0, 992, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
278, 0, 279, 0, 0, 0, 0, 0, 0, 0,
1372, 0, 1373, 0, 0, 0, 0, 0, 359, 615,
0, 0, 0, 280, 0, 1382, 0, 1383, 0, 281,
0, 1008, 1009, 282, 341, 0, 283, 284, 285, 286,
40, 41, 0, 287, 288, 1390, 0, 0, 0, 341,
0, 289, 0, 337, 359, 0, 0, 0, 408, 408,
0, 1408, 0, 0, 0, 290, 0, 374, 207, 1411,
375, 0, 1228, 0, 292, 376, 294, 295, 296, 297,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1039,
0, 0, 0, 377, 1434, 0, 0, 0, 0, 408,
0, 0, 0, 1441, 0, 0, 1443, 1445, 359, 0,
0, 0, 0, 0, 819, 359, 0, 0, 0, 615,
0, 615, 0, 509, 510, 513, 0, 0, 0, 0,
0, 615, 516, 517, 0, 0, 0, 510, 510, 0,
0, 0, 0, 1472, 0, 1228, 0, 0, 0, 510,
0, 0, 0, 0, 0, 0, 0, 0, 0, 1483,
0, 0, 0, 0, 0, 0, 0, 0, 317, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1123, 1124, 510, 0, 0, 0, 0,
377, 0, 0, 0, 0, 0, 983, 0, 0, 1133,
0, 759, 0, 819, 0, 0, 0, 278, 0, 279,
0, 408, 0, 0, 0, 0, 0, 408, 0, 0,
1149, 510, 0, 0, 0, 408, 0, 0, 0, 0,
280, 1164, 0, 0, 0, 0, 281, 0, 615, 615,
282, 0, 0, 283, 284, 285, 286, 40, 41, 0,
287, 288, 0, 377, 0, 1182, 0, 0, 289, 0,
0, 0, 0, 0, 359, 0, 0, 0, 0, 0,
408, 1204, 290, 0, 374, 0, 0, 0, 0, 0,
801, 292, 376, 294, 295, 296, 297, 0, 408, 1142,
1213, 0, 0, 0, 0, 0, 0, 0, 359, 0,
0, 0, 0, 0, 408, 1154, 0, 615, 615, 1159,
278, 0, 279, 0, 0, 0, 0, 0, 0, 359,
359, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 280, 0, 0, 983, 0, 0, 281,
0, 0, 0, 282, 0, 0, 283, 284, 285, 286,
40, 41, 0, 287, 288, 878, 0, 0, 0, 0,
0, 289, 0, 0, 0, 0, 0, 0, 0, 0,
1264, 1265, 0, 0, 0, 290, 0, 374, 0, 819,
408, 1221, 0, 0, 292, 376, 294, 295, 296, 297,
0, 0, 615, 0, 0, 510, 510, 510, 510, 510,
510, 510, 510, 510, 510, 510, 510, 510, 510, 510,
510, 510, 510, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 359, 0, 510, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 983,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 2, 202,
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 0, 0, 25, 26, 27, 337, 0, 0, 0,
278, 30, 279, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 359, 0, 0, 0, 0,
0, 0, 0, 280, 33, 0, 34, 0, 35, 281,
0, 37, 38, 282, 0, 510, 283, 284, 285, 286,
40, 41, 0, 287, 288, 0, 0, 0, 0, 0,
0, 289, 0, 0, 0, 0, 0, 510, 0, 0,
0, 0, 0, 359, 359, 290, 0, 339, 0, 0,
510, 0, 771, 0, 292, 340, 294, 295, 296, 297,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1420, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 510, 0, 0, 0, 0,
0, 1, 2, 202, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 0, 510, 25, 26, 27,
28, 0, 0, 29, 278, 30, 279, 0, 0, 0,
0, 510, 1475, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 280, 33, 0,
34, 359, 35, 281, 0, 37, 38, 282, 0, 0,
283, 284, 285, 286, 40, 41, 0, 287, 288, 0,
0, 0, 0, 0, 0, 289, 317, 0, 0, 0,
0, 0, 278, 0, 279, 0, 0, 0, 0, 290,
0, 1062, 0, 0, 0, 0, 0, 0, 292, 293,
294, 295, 296, 297, 0, 280, 0, 0, 0, 0,
0, 281, -126, 0, 0, 282, 0, 0, 283, 284,
285, 286, 40, 41, 0, 287, 288, 0, 0, 0,
408, 0, 0, 289, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 290, 0, 374,
408, 408, 980, 0, 0, 0, 292, 376, 294, 295,
296, 297, 0, 0, 0, 0, 0, 0, 0, 0,
0, 408, 0, 0, 0, 0, 0, 0, 0, 0,
0, 510, 0, 0, 0, 1, 2, 202, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 0,
510, 25, 26, 27, 28, 0, 0, 29, 278, 30,
1049, 1050, 510, 1051, 0, 0, 1052, 1053, 1054, 1055,
1056, 1057, 1058, 1059, 0, 1060, 0, 0, 1061, 32,
0, 280, 33, 0, 34, 0, 35, 642, 0, 37,
38, 282, 0, 0, 283, 284, 285, 286, 40, 41,
0, 287, 288, 0, 510, 0, 0, 0, 0, 289,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 290, 0, 1062, 0, 0, 167, 0,
0, 0, 292, 293, 294, 295, 296, 297, 0, 0,
0, 0, 0, 0, 0, 0, -126, 0, 0, 1,
2, 202, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 0, 510, 25, 26, 27, 28, 0,
0, 29, 278, 30, 279, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, -286, 0, 0, 280, 33, 0, 34, 0,
35, 281, 30, 37, 38, 282, 0, 510, 283, 284,
285, 286, 40, 41, 0, 287, 288, 0, 0, 0,
0, 510, 510, 289, 0, 33, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -286, 290, 0, 43,
0, 0, 0, 0, 0, 0, 292, 293, 294, 295,
296, 297, 2, 202, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 0, 0, 25, 26, 27,
0, 0, 0, 0, 278, 30, 279, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 280, 33, 0,
34, 0, 35, 281, 0, 37, 38, 282, 0, 0,
283, 284, 285, 286, 40, 41, 0, 287, 288, 0,
0, 0, 0, 0, 0, 289, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 290,
0, 919, 0, 0, 0, 0, 771, 0, 292, 340,
294, 295, 296, 297, 0, 2, 202, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 0, 0, 0, 0, 278, 30, 279,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
280, 33, 510, 34, 0, 35, 281, 0, 37, 38,
282, 0, 0, 283, 284, 285, 286, 40, 41, 510,
287, 288, 0, 0, 0, 0, 0, 0, 289, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 290, 0, 919, 0, 0, 0, 0, 771,
0, 292, 593, 294, 295, 296, 297, 0, 2, 202,
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 510, 510, 25, 26, 27, 0, 0, 0, 0,
278, 30, 279, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 280, 33, 0, 34, 0, 35, 281,
0, 37, 38, 282, 0, 0, 283, 284, 285, 286,
40, 41, 0, 287, 288, 0, 0, 0, 0, 0,
0, 289, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 290, 0, 339, 0, 0,
0, 0, 0, 0, 292, 340, 294, 295, 296, 297,
2, 202, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 0, 0, 25, 26, 27, 0, 0,
0, 0, 278, 30, 279, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 280, 33, 0, 34, 0,
35, 281, 0, 37, 38, 282, 0, 0, 283, 284,
285, 286, 40, 41, 0, 287, 288, 0, 0, 0,
0, 0, 0, 289, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 290, 0, 919,
0, 0, 0, 0, 0, 0, 292, 340, 294, 295,
296, 297, 2, 202, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 0, 0, 25, 26, 27,
0, 0, 0, 0, 278, 30, 279, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 280, 33, 0,
34, 0, 35, 281, 0, 203, 38, 282, 0, 0,
283, 284, 285, 286, 40, 41, 0, 287, 288, 0,
0, 0, 0, 0, 0, 289, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 290,
0, 1006, 0, 0, 0, 0, 0, 0, 292, 1007,
294, 295, 296, 297, 2, 202, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 0, 0, 25,
26, 27, 0, 0, 0, 0, 278, 30, 279, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 280,
33, 0, 34, 0, 35, 281, 0, 203, 38, 282,
0, 0, 283, 284, 285, 286, 40, 41, 0, 287,
288, 0, 0, 0, 0, 0, 0, 289, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 290, 0, 374, 0, 0, 0, 0, 0, 0,
292, 376, 294, 295, 296, 297, -504, 0, 0, 1,
2, 3, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 0, 0, 25, 26, 27, 28, 0,
0, 29, 0, 30, 31, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 32, 0, 0, 33, 0, 34, 0,
35, 36, 0, 37, 38, 39, 0, 0, 0, 0,
0, 0, 40, 41, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 42, 0, 43,
0, 0, 0, 0, 0, 0, 0, 44, 1, 2,
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 0, 25, 26, 27, 28, 0, 0,
29, 0, 30, 31, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 32, 0, 0, 33, 0, 34, 0, 35,
36, 0, 37, 38, 39, 0, 0, 0, 0, 0,
0, 40, 41, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 42, 0, 43, 0,
0, 0, -508, 0, 0, 0, 44, 1, 2, 3,
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 0, 0, 25, 26, 27, 28, 0, 0, 29,
0, 30, 31, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 32, 0, 0, 33, 0, 34, 0, 35, 36,
0, 37, 38, 39, 0, 0, 0, 0, 0, 0,
40, 41, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 42, 0, 43, 0, 0,
0, 0, 0, 0, 0, 44, 201, 2, 202, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
0, 0, 25, 26, 27, 0, 0, 0, 0, 0,
30, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 33, 0, 34, 0, 35, 36, 0,
203, 38, 39, 0, 0, 0, 0, 0, 0, 40,
41, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 42, 0, 204, 0, 0, 0,
0, 0, 0, 0, 205, 1, 2, 202, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, -285,
0, 25, 26, 27, 28, 0, 0, 29, 0, 30,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 33, 0, 34, 0, 35, 0, 0, 37,
38, 0, 0, -285, 1, 2, 202, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 28, 0, 43, 29, 0, 30, 0,
0, 0, 0, 109, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 33, 0, 34, 0, 35, 0, 0, 37, 38,
0, 201, 2, 202, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 0, 0, 25, 26, 27,
0, 0, 0, 0, 43, 30, 0, 0, 0, 0,
0, 0, 109, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 33, 0,
34, 0, 35, 0, 0, 203, 38, 2, 202, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
0, 0, 25, 26, 27, 0, 0, 0, 0, 0,
30, 204, 0, 0, 0, 0, 0, 0, 0, 267,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 33, 0, 34, 0, 35, 36, 0,
203, 38, 39, 0, 0, 0, 0, 0, 0, 40,
41, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 42, 0, 204, 0, 0, 0,
0, 0, 0, 0, 205, 2, 202, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 0, 0, 0, 0, 0, 30, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 0, 25, 26,
27, 33, 0, 34, 0, 35, 30, 0, 37, 38,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 33,
1348, 0, 0, 0, 108, 0, 37, 38, 0, 0,
0, 0, 0, 0, 678, 0, 0, 0, 0, 0,
0, 0, 627, 2, 202, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 0, 25, 26,
27, 0, 0, 0, 0, 0, 30, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 33,
0, 34, 0, 35, 30, 0, 37, 38, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 33, 1350, 0,
0, 0, 0, 0, 37, 38, 0, 0, 0, 0,
0, 0, 678, 0, 0, 0, 0, 0, 0, 0,
627, 2, 202, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 0,
0, 0, 0, 0, 30, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 33, 0, 34,
0, 35, 0, 0, 203, 38, 2, 202, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 0,
0, 25, 26, 27, 0, 0, 0, 0, 0, 30,
266, 0, 0, 0, 0, 0, 0, 0, 622, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 33, 0, 34, 0, 35, 0, 0, 37,
38, 2, 202, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 0,
0, 0, 0, 0, 30, 678, 0, 0, 0, 0,
0, 0, 0, 627, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 33, 0, 34,
0, 35, 0, 0, 37, 38, 2, 202, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 0,
0, 25, 26, 27, 0, 0, 0, 0, 0, 30,
592, 0, 0, 0, 0, 0, 0, 0, 627, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 33, 0, 34, 0, 35, 0, 0, 203,
38, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 0, 0, 0, 0, 278, 30, 279,
0, 0, 0, 0, 0, 204, 0, 0, 0, 0,
0, 0, 0, 267, 0, 0, 0, 0, 0, 0,
280, 33, 0, 0, 0, 0, 281, 0, 37, 38,
282, 0, 0, 283, 284, 285, 286, 40, 41, 0,
287, 288, 0, 0, 0, 0, 0, 0, 289, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 290, 0, 519, 0, 0, 167, 0, 0,
0, 292, 293, 294, 295, 296, 297, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 0,
0, 0, 0, 278, 30, 279, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 280, 33, 0, 0,
0, 0, 281, 0, 37, 38, 282, 0, 0, 283,
284, 285, 286, 40, 41, 0, 287, 288, 0, 0,
0, 0, 0, 0, 289, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 290, 0,
592, -3, 0, 0, 0, 0, 0, 292, 593, 294,
295, 296, 297, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
0, 0, 25, 26, 27, 0, 0, 0, 0, 278,
30, 279, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 280, 33, 0, 0, 0, 0, 642, 0,
37, 38, 282, 0, 0, 283, 284, 285, 286, 40,
41, 0, 287, 288, 0, 0, 0, 0, 0, 0,
289, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 290, -35, 756, 0, 0, 0,
0, 0, 0, 292, 293, 294, 295, 296, 297, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 0, 25, 26,
27, 0, 0, 0, 0, 278, 30, 279, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 280, 33,
0, 0, 0, 0, 281, 0, 37, 38, 282, 0,
0, 283, 284, 285, 286, 40, 41, 0, 287, 288,
0, 0, 0, 0, 0, 0, 289, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
290, 0, 291, 0, 0, 0, 0, 0, 0, 292,
293, 294, 295, 296, 297, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 0, 25, 26, 27, 0, 0, 0,
0, 278, 30, 279, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 280, 33, 0, 0, 0, 0,
281, 0, 37, 38, 282, 0, 0, 283, 284, 285,
286, 40, 41, 0, 287, 288, 0, 0, 0, 0,
0, 0, 289, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 290, 0, 154, 0,
0, 0, 0, 0, 0, 292, 293, 294, 295, 296,
297, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 0, 0, 0, 0, 278, 30, 279,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
280, 33, 0, 0, 0, 0, 281, 0, 37, 38,
282, 0, 0, 283, 284, 285, 286, 40, 41, 0,
287, 288, 0, 0, 0, 0, 0, 0, 289, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 290, 0, 592, 0, 0, 0, 0, 0,
0, 292, 593, 294, 295, 296, 297, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 0,
0, 0, 0, 278, 30, 279, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 280, 33, 0, 0,
0, 0, 281, 0, 37, 38, 282, 0, 0, 283,
284, 285, 286, 40, 41, 0, 287, 288, 0, 0,
0, 0, 0, 0, 289, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 290, 0,
374, 0, 0, 0, 0, 0, 0, 292, 376, 294,
295, 296, 297, 469, 2, 202, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 0, 0, 25,
26, 27, 0, 0, 0, 0, 0, 30, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, -285, 0, 25, 26, 27,
33, 0, 34, 0, 35, 30, 0, 37, 38, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 33, 0,
0, 0, 0, 36, 0, 332, 333, 39, 0, -285,
0, 0, 0, 0, 40, 41, -3, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, -285, 0, 25, 26, 27, 636,
0, 334, 0, 0, 30, 0, 0, 0, 0, 627,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 33, 0, 25,
26, 27, 36, 0, 332, 333, 39, 30, -285, 0,
0, 0, 0, 40, 41, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
33, 0, 0, 0, 0, 36, 0, 37, 38, 39,
334, 0, 0, 0, 0, 0, 40, 41, 109, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 0, 25, 26,
27, 42, 0, 43, 0, 0, 30, 0, 0, 0,
0, 44, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 33,
0, 0, 0, 0, 36, 0, 203, 38, 39, 0,
0, 0, 0, 0, 0, 40, 41, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 0,
42, 0, 266, 0, 30, 0, 0, 0, 0, 0,
205, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 33, 0, 0,
0, 0, 36, 0, 332, 333, 39, 0, 0, 0,
0, 0, 0, 40, 41, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 0, 25, 26, 27, 0, 636, 0,
334, 0, 30, 0, 0, 0, 0, 0, 627, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 33, 0, 0, 0, 0,
36, 0, 332, 333, 39, 0, 0, 0, 0, 0,
0, 40, 41, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
-285, 0, 25, 26, 27, 0, 0, 0, 334, 0,
30, 0, 0, 0, 0, 0, 109, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 33, 0, 0, 0, 0, 0, 0,
37, 38, 0, 0, -285, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 0, 25, 26, 27, 0, 0, 0,
0, 0, 30, 448, 636, 0, 334, 0, 0, 0,
0, 0, 0, 0, 627, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 33, 0, 0, 0, 0,
0, 0, 37, 38, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, -285, 0, 25, 26, 27, 0, 0, 0, 0,
0, 30, 0, 0, 0, 0, 0, 0, 449, 0,
0, 0, 935, 0, 0, 0, 109, 0, 0, 0,
0, 0, 0, 0, 33, 0, 0, 0, 0, 0,
0, 37, 38, 0, 0, -285, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 0, 0, 25, 26, 27, 0, 0,
0, 0, 0, 30, 448, 0, 0, 334, 0, 0,
0, 0, 0, 0, 0, 109, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 33, 0, 0, 0,
0, 0, 0, 37, 38, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 0, 25, 26, 27, 0, 0, 0,
0, 0, 30, 0, 0, 0, 0, 0, 0, 449,
0, 0, 0, 1218, 0, 0, 0, 109, 0, 0,
0, 0, 0, 0, 0, 33, 0, 0, 0, 0,
108, 0, 37, 38, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 0, 0, 25, 26, 27, 0, 0, 0, 0,
0, 30, 448, 0, 0, 0, 0, 0, 43, 0,
0, 0, 0, 0, 0, 0, 109, 0, 0, 0,
0, 0, 0, 0, 33, 0, 0, 0, 0, 0,
0, 37, 38, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
0, 0, 25, 26, 27, 0, 0, 0, 0, 0,
30, 0, 0, 0, 0, 0, 0, 449, 0, 0,
0, 0, 0, 0, 0, 109, 0, 0, 0, 0,
0, 0, 0, 33, 0, 0, 0, 0, 0, 0,
37, 38, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 0,
0, 25, 26, 27, 0, 0, 0, 0, 0, 30,
0, 0, 0, 0, 636, 0, 334, 0, 0, 0,
0, 0, 0, 0, 109, 0, 0, 0, 0, 0,
0, 0, 33, 0, 0, 0, 0, 0, 0, 37,
38, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 0, 0, 0, 0, 0, 30, 0,
0, 0, 0, 636, 0, 334, 0, 0, 0, 0,
0, 0, 0, 627, 0, 0, 0, 0, 0, 0,
0, 33, 0, 0, 0, 0, 0, 0, 37, 38,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 0, 0, 25,
26, 27, 0, 0, 0, 0, 0, 30, 0, 0,
0, 0, 0, 0, 253, 0, 0, 0, 0, 0,
0, 0, 109, 0, 0, 0, 0, 0, 0, 0,
33, 0, 0, 0, 0, 0, 0, 37, 38, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 0, 25, 26,
27, 0, 0, 0, 0, 0, 30, 0, 0, 0,
0, 0, 0, 154, 0, 0, 0, 0, 0, 0,
0, 109, 0, 0, 0, 0, 0, 0, 0, 33,
0, 0, 0, 0, 0, 0, 203, 38, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 0, 0, 25, 26, 27,
0, 0, 0, 0, 0, 30, 0, 0, 0, 0,
0, 0, 266, 0, 0, 0, 0, 0, 0, 0,
267, 0, 0, 0, 0, 0, 0, 0, 33, 0,
0, 0, 0, 0, 0, 37, 38, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 0,
0, 0, 0, 0, 30, 0, 0, 0, 0, 0,
0, 253, 0, 0, 0, 0, 0, 0, 0, 627,
0, 0, 0, 0, 0, 0, 0, 33, 0, 0,
0, 0, 0, 0, 37, 38, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 0, 0, 25, 26, 27, 0, 0,
0, 0, 0, 30, 0, 0, 0, 0, 0, 0,
334, 0, 0, 0, 0, 0, 0, 0, 627, 0,
0, 0, 0, 0, 0, 0, 33, 0, 0, 0,
0, 0, 0, 37, 38, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 0, 25, 26, 27, 0, 0, 0,
0, 0, 30, 0, 0, 0, 0, 0, 0, 449,
0, 0, 0, 0, 0, 0, 0, 109, 0, 0,
0, 0, 0, 0, 0, 33, 0, 0, 0, 0,
0, 0, 203, 38, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 0, 0, 25, 26, 27, 0, 0, 0, 0,
0, 30, 0, 0, 0, 0, 0, 0, 266, 0,
0, 0, 0, 0, 0, 0, 622, 0, 0, 0,
0, 0, 0, 0, 33, 0, 0, 0, 0, 0,
0, 37, 38, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
0, 0, 25, 26, 27, 0, 0, 0, 0, 0,
30, 0, 0, 0, 0, 0, 0, 592, 0, 0,
0, 0, 0, 0, 0, 627, 0, 0, 0, 0,
0, 0, 0, 33, 0, 0, 0, 0, 0, 0,
37, 38, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 0,
0, 25, 26, 27, 0, 0, 0, 0, 0, 30,
0, 0, 0, 0, 0, 0, 334, 0, 0, 0,
0, 0, 0, 0, 109, 0, 0, 0, 0, 0,
0, 0, 33, 0, 0, 0, 0, 0, 0, 37,
38, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 0, 0, 0, 0, 0, 30, 0,
0, 0, 0, 0, 0, 43, 0, 0, 0, 0,
0, 0, 0, 109, 0, 0, 0, 0, 0, 0,
0, 33, 0, 0, 0, 0, 0, 0, 203, 38,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 0, 0, 25,
26, 27, 0, 0, 0, 0, 0, 30, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 267, 0, 0, 0, 0, 0, 0, 0,
33, 0, 0, 0, 0, 0, 0, 203, 38, 2,
202, 4, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 0, 0, 25, 26, 27, 0, 0, 0,
0, 0, 30, 0, 0, 0, 0, 0, 0, 0,
0, 622, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 33, 0, 34, 0, 35,
0, 0, 37, 38, 0, 278, 0, 279, 1050, 0,
1051, 0, 0, 1052, 1053, 1054, 1055, 1056, 1057, 1058,
1059, 1504, 1060, 0, 0, 1061, 32, 0, 280, 0,
0, 0, 0, 0, 642, 0, 0, -403, 282, 0,
0, 283, 284, 285, 286, 40, 41, 0, 287, 288,
0, 0, 0, 0, 0, 0, 289, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
290, 0, 374, 0, 0, 167, 0, 0, 0, 292,
376, 294, 295, 296, 297, 0, 278, 0, 279, 1050,
0, 1051, 0, -126, 1052, 1053, 1054, 1055, 1056, 1057,
1058, 1059, 0, 1060, 0, 0, 1061, 32, 0, 280,
0, 0, 0, 0, 0, 642, 0, 0, 0, 282,
0, 0, 283, 284, 285, 286, 40, 41, 0, 287,
288, 0, 0, 0, 0, 0, 0, 289, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 290, 0, 374, 0, 0, 167, 0, 0, 0,
292, 376, 294, 295, 296, 297, 0, 0, 0, 0,
0, 0, 0, 0, -126, 2, 202, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 0, 0,
25, 26, 27, 0, 0, 0, 0, 0, 30, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 0, 0, 25, 26,
27, 33, 0, 34, 0, 35, 30, 0, 37, 38,
0, 278, 0, 279, 1050, 0, 1051, 1394, 1395, 1052,
1053, 1054, 1055, 1056, 1057, 1058, 1059, 1504, 1060, 33,
1307, 1061, 32, 0, 280, 0, 203, 38, 0, 0,
642, 0, 0, 0, 282, 0, 0, 283, 284, 285,
286, 40, 41, 0, 287, 288, 0, 0, 0, 0,
0, 0, 289, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 290, 0, 374, 0,
0, 167, 0, 0, 0, 292, 376, 294, 295, 296,
297, 278, 0, 279, 1050, 0, 1051, 1394, 1395, 1052,
1053, 1054, 1055, 1056, 1057, 1058, 1059, 0, 1060, 0,
0, 1061, 32, 0, 280, 0, 0, 0, 0, 0,
642, 0, 0, 0, 282, 0, 0, 283, 284, 285,
286, 40, 41, 0, 287, 288, 0, 0, 0, 0,
0, 0, 289, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 290, 0, 374, 0,
0, 167, 0, 0, 0, 292, 376, 294, 295, 296,
297, 278, 0, 279, 1050, 0, 1051, 0, 0, 1052,
1053, 1054, 1055, 1056, 1057, 1058, 1059, 0, 1060, 0,
0, 1061, 32, 0, 280, 0, 0, 0, 0, 0,
642, 0, 0, 0, 282, 0, 0, 283, 284, 285,
286, 40, 41, 0, 287, 288, 0, 0, 0, 0,
0, 0, 289, 0, 0, 0, 0, 0, 278, 0,
279, 0, 0, 0, 0, 0, 290, 0, 374, 0,
0, 167, 0, 0, 0, 292, 376, 294, 295, 296,
297, 280, 0, 0, 0, 0, 0, 281, 0, 0,
0, 282, 0, 0, 283, 284, 285, 286, 40, 41,
0, 287, 288, 0, 0, 0, 0, 0, 0, 289,
0, 0, 0, 0, 0, 278, 0, 279, 0, 0,
0, 0, 0, 290, 0, 374, 0, 0, 0, 0,
0, 0, 292, 725, 294, 295, 296, 297, 280, 0,
0, 0, 0, 0, 642, 0, 0, 0, 282, 0,
0, 283, 284, 285, 286, 40, 41, 0, 287, 288,
0, 0, 0, 0, 0, 0, 289, 0, 0, 0,
0, 0, 278, 0, 279, 0, 0, 0, 0, 0,
290, 0, 775, 0, 0, 0, 0, 0, 0, 292,
376, 294, 295, 296, 297, 280, 0, 0, 0, 0,
0, 281, 0, 0, 0, 282, 0, 0, 283, 284,
285, 286, 40, 41, 0, 287, 288, 0, 0, 0,
0, 0, 0, 289, 0, 0, 0, 0, 0, 278,
0, 279, 0, 0, 0, 0, 0, 290, 0, 374,
0, 0, 0, 0, 0, 0, 292, 816, 294, 295,
296, 297, 280, 0, 0, 0, 0, 0, 281, 0,
0, 0, 282, 0, 0, 283, 284, 285, 286, 40,
41, 0, 287, 288, 0, 0, 0, 0, 0, 0,
289, 0, 0, 0, 0, 0, 278, 0, 279, 0,
0, 0, 0, 0, 512, 0, 0, 0, 0, 0,
0, 0, 0, 292, 376, 294, 295, 296, 297, 280,
0, 0, 0, 0, 0, 281, 0, 0, 0, 282,
0, 0, 283, 284, 285, 286, 40, 41, 0, 287,
288, 0, 0, 0, 0, 0, 0, 289, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 515, 0, 0, 0, 0, 0, 0, 0, 0,
292, 376, 294, 295, 296, 297, 2, 202, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 30,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 33, 0, 34, 0, 35, 36, 0, 170,
171, 39, 0, 0, 0, 0, 0, 0, 40, 41,
201, 2, 202, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 0,
0, 0, 0, 0, 30, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 33, 0, 34,
0, 35, 0, 0, 203, 38, 469, 2, 202, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
0, 0, 25, 26, 27, 0, 0, 0, 0, 0,
30, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 33, 0, 34, 0, 35, 0, 0,
37, 38, 2, 202, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 0, 0, 25, 26, 27,
0, 0, 0, 0, 0, 30, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 33, 0,
34, 0, 35, 0, 0, 203, 38, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 0, 0, 25, 26, 27, 487,
488, 489, 0, 0, 30, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 33, 0, 0,
0, 0, 0, 0, 37, 38
};
#define yypact_value_is_default(yystate) \
((yystate) == (-1398))
#define yytable_value_is_error(yytable_value) \
YYID (0)
static const yytype_int16 yycheck[] =
{
1, 42, 0, 235, 0, 200, 1, 113, 42, 181,
181, 42, 890, 165, 689, 181, 689, 275, 689, 182,
344, 181, 750, 29, 181, 450, 534, 103, 181, 277,
181, 622, 890, 31, 451, 31, 457, 604, 1028, 1029,
1078, 602, 42, 602, 42, 215, 44, 344, 44, 605,
602, 42, 986, 0, 0, 611, 54, 494, 75, 647,
602, 498, 60, 604, 60, 63, 770, 63, 66, 31,
66, 66, 1049, 1029, 80, 81, 152, 572, 1317, 42,
602, 183, 0, 54, 31, 31, 0, 1, 1485, 261,
261, 197, 767, 49, 767, 261, 767, 0, 523, 262,
27, 261, 37, 412, 261, 37, 104, 1394, 261, 107,
261, 1508, 0, 31, 182, 113, 37, 31, 637, 638,
65, 359, 602, 432, 602, 363, 714, 37, 31, 57,
11, 440, 37, 104, 653, 75, 107, 466, 37, 42,
181, 44, 65, 31, 71, 101, 144, 181, 144, 63,
181, 279, 66, 101, 152, 257, 258, 60, 75, 157,
63, 157, 102, 66, 292, 293, 490, 65, 103, 65,
1457, 1049, 1411, 101, 37, 993, 304, 42, 43, 124,
101, 181, 103, 181, 182, 102, 182, 252, 42, 43,
181, 101, 109, 103, 262, 88, 101, 492, 103, 197,
75, 124, 101, 104, 103, 103, 75, 205, 727, 205,
89, 101, 340, 735, 101, 111, 214, 52, 181, 217,
261, 217, 690, 1041, 44, 75, 290, 261, 103, 122,
261, 101, 101, 239, 404, 78, 115, 400, 101, 75,
103, 144, 107, 214, 712, 42, 43, 248, 376, 247,
123, 247, 106, 123, 157, 735, 224, 735, 506, 109,
95, 337, 105, 261, 262, 101, 262, 828, 1224, 828,
268, 101, 102, 840, 830, 243, 828, 275, 181, 182,
113, 114, 1272, 1273, 390, 247, 828, 450, 289, 109,
366, 995, 709, 106, 0, 1, 89, 268, 817, 840,
247, 247, 205, 217, 275, 1239, 828, 604, 108, 106,
1287, 606, 418, 808, 217, 610, 104, 1273, 424, 482,
108, 108, 115, 143, 124, 31, 324, 1, 324, 247,
1058, 1209, 400, 247, 252, 65, 631, 67, 68, 108,
635, 65, 671, 1398, 247, 343, 344, 412, 828, 108,
828, 1209, 590, 65, 189, 124, 420, 421, 261, 247,
66, 102, 360, 65, 252, 124, 364, 432, 109, 375,
44, 101, 343, 682, 108, 440, 106, 212, 1416, 103,
3, 948, 450, 420, 421, 205, 947, 222, 947, 360,
124, 103, 390, 364, 1485, 633, 65, 44, 67, 68,
1390, 103, 400, 104, 400, 947, 102, 108, 3, 1287,
1501, 108, 108, 54, 482, 235, 1007, 1508, 108, 667,
418, 324, 550, 551, 552, 1480, 424, 124, 426, 103,
1485, 340, 101, 0, 1390, 109, 65, 106, 67, 68,
65, 344, 67, 68, 508, 101, 1501, 267, 512, 455,
526, 515, 450, 1508, 460, 290, 121, 1434, 123, 496,
1016, 1017, 109, 104, 1441, 593, 107, 0, 469, 143,
123, 890, 102, 293, 103, 804, 474, 514, 152, 109,
101, 106, 103, 991, 482, 814, 482, 493, 486, 495,
486, 749, 490, 123, 412, 916, 648, 400, 966, 108,
829, 926, 102, 104, 568, 753, 1483, 108, 108, 934,
108, 152, 101, 514, 432, 124, 840, 689, 689, 956,
340, 104, 440, 689, 412, 108, 124, 201, 691, 689,
531, 205, 689, 534, 1101, 536, 689, 1125, 689, 486,
486, 247, 579, 840, 432, 111, 101, 450, 103, 655,
116, 117, 440, 508, 979, 657, 1434, 512, 205, 1287,
515, 235, 236, 1441, 1382, 1383, 484, 862, 486, 636,
637, 638, 486, 214, 108, 484, 10, 11, 12, 13,
14, 819, 583, 486, 104, 823, 653, 490, 108, 236,
124, 108, 590, 267, 83, 84, 270, 725, 486, 108,
420, 421, 437, 37, 602, 1483, 604, 124, 108, 81,
82, 687, 78, 79, 80, 124, 290, 682, 1117, 293,
267, 101, 1121, 691, 124, 623, 60, 268, 952, 118,
119, 108, 1360, 1052, 275, 101, 471, 103, 644, 105,
101, 639, 770, 290, 102, 591, 293, 124, 108, 108,
108, 1119, 623, 654, 652, 656, 1460, 655, 953, 724,
727, 102, 1466, 337, 124, 124, 340, 108, 639, 101,
1087, 103, 101, 508, 912, 102, 496, 512, 1482, 111,
515, 652, 109, 1487, 593, 359, 762, 101, 816, 363,
101, 689, 366, 691, 514, 102, 1025, 1026, 704, 602,
102, 604, 343, 102, 710, 102, 108, 877, 1176, 1177,
1438, 108, 1440, 622, 102, 101, 104, 103, 627, 360,
108, 722, 102, 364, 0, 111, 958, 897, 103, 102,
105, 883, 85, 86, 109, 123, 124, 735, 736, 4,
5, 6, 7, 8, 9, 102, 420, 421, 108, 109,
817, 749, 102, 1082, 1083, 31, 1484, 104, 3, 579,
101, 102, 103, 926, 682, 10, 11, 12, 13, 14,
688, 934, 101, 593, 448, 102, 102, 451, 749, 688,
486, 108, 108, 457, 101, 426, 689, 63, 691, 101,
1209, 103, 37, 107, 682, 469, 101, 62, 101, 64,
103, 448, 622, 103, 451, 105, 724, 627, 111, 109,
457, 102, 104, 102, 1489, 60, 1489, 108, 1489, 108,
494, 102, 496, 102, 498, 1020, 101, 108, 103, 108,
828, 102, 735, 736, 508, 670, 724, 108, 512, 124,
514, 515, 840, 102, 679, 763, 57, 102, 683, 108,
1088, 102, 526, 108, 763, 102, 103, 108, 926, 124,
65, 508, 67, 68, 69, 512, 934, 484, 515, 1117,
102, 76, 77, 1121, 1122, 101, 108, 883, 824, 1007,
102, 1300, 101, 889, 102, 101, 108, 103, 889, 890,
108, 1043, 65, 1222, 67, 68, 101, 101, 103, 103,
10, 11, 12, 13, 14, 579, 111, 124, 101, 1377,
103, 65, 54, 55, 912, 69, 590, 106, 101, 593,
103, 1049, 76, 77, 1253, 828, 1394, 37, 926, 101,
102, 103, 1261, 1262, 1263, 1354, 934, 840, 1357, 0,
1, 217, 106, 101, 890, 103, 124, 101, 622, 590,
60, 108, 109, 627, 952, 124, 694, 111, 696, 633,
65, 65, 957, 67, 68, 69, 0, 101, 102, 103,
31, 247, 890, 106, 980, 101, 890, 1306, 75, 1398,
108, 109, 623, 44, 1403, 101, 1234, 988, 1456, 1457,
991, 101, 993, 103, 101, 102, 103, 31, 639, 42,
43, 111, 890, 1109, 104, 66, 1245, 1246, 1247, 1428,
75, 652, 120, 687, 557, 558, 559, 560, 112, 636,
637, 638, 121, 926, 4, 5, 6, 7, 8, 9,
87, 934, 66, 123, 1162, 709, 653, 553, 554, 103,
1041, 101, 103, 957, 1469, 555, 556, 561, 562, 952,
101, 1052, 32, 102, 1055, 1056, 1057, 67, 104, 104,
102, 71, 709, 102, 74, 739, 76, 102, 101, 345,
1318, 688, 1078, 83, 1322, 102, 102, 1078, 103, 914,
1499, 104, 62, 144, 64, 1510, 1505, 104, 762, 108,
106, 152, 153, 123, 101, 1514, 104, 102, 1007, 1518,
102, 104, 108, 1049, 104, 104, 104, 28, 749, 102,
727, 1109, 4, 5, 6, 7, 8, 9, 109, 153,
109, 182, 104, 102, 109, 1189, 1190, 108, 1192, 1205,
106, 1049, 107, 102, 1198, 1049, 197, 1201, 958, 200,
201, 107, 107, 65, 205, 819, 763, 69, 101, 823,
102, 124, 102, 102, 76, 77, 10, 11, 12, 13,
14, 1049, 109, 102, 102, 226, 102, 1415, 108, 230,
62, 232, 64, 102, 102, 102, 102, 1183, 102, 101,
241, 103, 1183, 37, 890, 102, 247, 1007, 102, 111,
102, 252, 226, 1188, 102, 102, 102, 102, 208, 475,
817, 262, 102, 107, 28, 123, 60, 1205, 1209, 270,
486, 65, 107, 247, 104, 69, 102, 65, 252, 67,
68, 69, 76, 77, 102, 1060, 102, 1145, 76, 77,
0, 1, 102, 1228, 108, 104, 1145, 65, 912, 67,
68, 69, 916, 104, 1245, 1246, 1247, 101, 76, 77,
102, 957, 102, 101, 109, 108, 102, 111, 109, 108,
102, 31, 106, 1209, 1496, 108, 104, 1373, 108, 916,
102, 912, 108, 1187, 1188, 102, 337, 124, 104, 340,
101, 101, 956, 957, 958, 346, 101, 101, 101, 107,
102, 1209, 1356, 63, 104, 1209, 66, 102, 359, 1300,
3, 102, 363, 107, 121, 366, 1224, 10, 11, 12,
13, 14, 346, 690, 1228, 1224, 106, 1489, 1489, 104,
108, 1209, 1317, 1489, 124, 104, 108, 1490, 104, 1489,
102, 102, 1489, 1007, 37, 712, 1489, 347, 1489, 349,
102, 1287, 109, 1049, 104, 104, 104, 1510, 624, 102,
104, 412, 104, 1354, 104, 45, 1357, 60, 124, 124,
124, 124, 107, 1469, 102, 107, 427, 124, 1282, 1287,
102, 432, 107, 1287, 1372, 1373, 104, 104, 412, 440,
104, 1382, 1383, 153, 65, 104, 67, 68, 69, 104,
104, 104, 104, 427, 102, 76, 77, 1398, 432, 1287,
102, 1372, 1403, 1317, 104, 466, 440, 104, 469, 101,
1416, 1028, 101, 1087, 1088, 1416, 1411, 55, 54, 102,
101, 106, 1490, 484, 801, 486, 436, 1428, 102, 124,
111, 109, 466, 494, 65, 104, 104, 498, 69, 715,
1087, 102, 1510, 102, 104, 76, 77, 217, 1489, 89,
484, 101, 486, 729, 466, 1489, 107, 104, 1489, 0,
1295, 102, 108, 102, 40, 526, 527, 44, 102, 1470,
101, 1469, 102, 102, 109, 124, 124, 247, 89, 1480,
111, 102, 1188, 60, 1485, 102, 63, 124, 1434, 66,
31, 1489, 1490, 527, 1490, 1441, 109, 1411, 1499, 124,
1501, 102, 879, 1209, 1505, 107, 104, 1508, 104, 124,
101, 572, 1510, 1514, 1510, 124, 1434, 1518, 107, 107,
1434, 102, 1228, 1441, 124, 66, 563, 1441, 1145, 590,
591, 1205, 593, 102, 565, 564, 1126, 1483, 566, 1209,
1362, 1457, 1518, 604, 1296, 821, 1434, 65, 1472, 67,
68, 69, 567, 1441, 1228, 1322, 1441, 591, 76, 77,
1122, 622, 934, 448, 1205, 1483, 627, 144, 448, 1483,
936, 696, 633, 460, 583, 636, 637, 638, 649, 980,
157, 1287, 883, 101, 739, 103, 1489, 954, 1228, 966,
486, 109, 653, 111, 571, 1483, 10, 11, 12, 13,
14, 749, 636, 637, 638, 182, -1, 1442, 571, 571,
671, 1317, 153, 65, 890, 67, 68, 69, 995, 653,
-1, 682, -1, 37, 76, 77, 687, 688, 205, -1,
691, -1, -1, 0, -1, -1, 1471, 671, -1, -1,
217, -1, -1, 1317, -1, -1, 60, 63, 682, 101,
-1, -1, -1, -1, 688, 1272, -1, 427, -1, 671,
-1, -1, -1, 724, 31, -1, 727, -1, 1045, -1,
671, -1, -1, -1, 1509, 736, 1496, -1, 739, -1,
-1, -1, -1, -1, -1, -1, 1521, 101, -1, 103,
724, -1, -1, 727, -1, -1, -1, 111, 114, 66,
-1, 762, 763, -1, -1, 1411, 247, 768, -1, -1,
-1, 252, -1, -1, -1, 3, 486, 10, 11, 12,
13, 14, 10, 11, 12, 13, 14, -1, 1434, 763,
-1, 1372, -1, -1, 1010, 1441, -1, 1411, -1, -1,
-1, 157, 1119, 804, 37, -1, -1, 324, 65, 37,
67, 68, 69, 814, -1, -1, 817, 527, 819, 76,
77, 822, 823, 824, 63, -1, -1, 60, 829, 1443,
804, -1, 60, 1049, -1, -1, -1, 1483, 839, -1,
814, 80, -1, 817, 101, -1, 153, -1, 822, -1,
824, -1, 804, -1, 111, 829, 1443, -1, 1472, 1176,
1177, 217, 814, 804, -1, 346, -1, -1, 101, -1,
103, -1, -1, 814, -1, 114, -1, 829, 111, -1,
-1, 591, 1496, 400, -1, 1472, -1, -1, 829, 890,
-1, -1, -1, -1, -1, -1, -1, -1, 65, 255,
67, 68, 69, 259, -1, -1, -1, -1, -1, 76,
77, 912, -1, -1, -1, -1, 890, -1, 157, -1,
-1, -1, -1, -1, -1, -1, 636, 637, 638, -1,
-1, 412, -1, -1, 101, -1, 103, -1, -1, -1,
247, -1, -1, 653, 111, 252, 427, 948, -1, -1,
65, 432, 67, 68, 69, 956, 957, -1, -1, 440,
-1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
-1, 1187, 973, -1, -1, -1, -1, -1, 217, -1,
-1, -1, -1, -1, -1, 466, 101, -1, 103, 345,
-1, -1, -1, 1209, -1, -1, 111, -1, -1, 973,
-1, -1, -1, 484, -1, 486, 1007, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 255, 727, -1, 1020,
259, -1, 0, -1, 1025, 1026, -1, 1028, 1029, 90,
91, 92, 93, 94, 95, 96, 97, 98, 99, 346,
-1, -1, -1, -1, -1, -1, 527, -1, 1049, -1,
-1, 1025, 1026, 31, 1028, 1029, -1, -1, -1, -1,
1377, -1, 123, -1, -1, -1, 1282, -1, -1, 425,
-1, 1287, -1, 1025, 1026, 1049, -1, 1394, -1, -1,
-1, 1082, 1083, -1, 1025, 1026, -1, 1088, 66, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 412, 345, 817, 1082, 1083,
591, -1, 63, -1, 824, -1, -1, -1, -1, 475,
427, -1, 73, -1, -1, 432, -1, -1, -1, -1,
1082, 1083, -1, 440, -1, -1, -1, -1, -1, 1456,
1457, 1082, 1083, -1, 1145, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 636, 637, 638, -1, 466,
-1, -1, -1, 114, -1, -1, -1, -1, -1, -1,
-1, 1145, 653, -1, -1, 153, -1, 484, -1, 486,
890, -1, -1, -1, -1, -1, 425, 1188, -1, -1,
671, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 682, -1, -1, 1205, -1, 157, 688, 1209, -1,
-1, -1, -1, -1, 1188, -1, -1, -1, 1434, -1,
527, 1222, -1, 1224, -1, 1441, -1, 1228, -1, -1,
-1, -1, -1, -1, -1, 1209, 475, -1, -1, -1,
596, -1, -1, 724, -1, -1, 727, 957, 1222, -1,
1224, -1, 1253, -1, -1, -1, -1, -1, -1, -1,
1261, 1262, 1263, 973, -1, -1, 217, 1483, 624, 247,
1222, 1272, 1273, 629, 252, -1, -1, -1, -1, 1253,
-1, -1, 763, -1, 591, -1, 1287, 1261, 1262, 1263,
-1, -1, -1, -1, -1, -1, -1, -1, 1272, 1273,
-1, 1253, -1, -1, 255, 1306, -1, -1, 259, 1261,
1262, 1263, 1253, 1287, -1, -1, 1317, -1, 1028, 1029,
1261, 1262, 1263, 804, 275, -1, -1, -1, -1, 636,
637, 638, 1306, 814, -1, -1, 817, -1, -1, 1049,
-1, 822, -1, 824, -1, -1, 653, -1, 829, -1,
-1, -1, -1, -1, 1306, -1, -1, 596, -1, 715,
-1, -1, -1, -1, 671, 1306, -1, -1, 346, -1,
-1, -1, -1, 729, -1, 682, -1, -1, -1, -1,
-1, 688, -1, -1, -1, 624, -1, -1, -1, 1390,
629, -1, -1, -1, 345, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 890,
1411, -1, -1, -1, -1, -1, 1390, 724, -1, -1,
727, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 1434, 412, -1, -1, -1, -1, -1,
1441, 25, 26, 27, -1, -1, -1, -1, -1, 427,
-1, -1, -1, -1, 432, -1, 763, -1, -1, -1,
1434, -1, 440, -1, -1, 821, -1, 1441, -1, 25,
26, 27, -1, -1, 425, -1, 715, 1187, 1188, -1,
-1, -1, 1483, -1, -1, -1, -1, -1, 466, 1490,
729, 442, 973, -1, -1, -1, -1, 804, -1, 1209,
-1, -1, -1, -1, -1, -1, 484, 814, 486, 1483,
817, -1, 96, -1, 98, 822, -1, 824, 1228, -1,
-1, -1, 829, -1, 475, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
96, -1, 98, -1, 1025, 1026, -1, 1028, 1029, 527,
50, -1, 52, -1, -1, 55, 56, 57, -1, 59,
-1, -1, 1272, 1273, -1, -1, 122, -1, 1049, -1,
-1, -1, 1282, -1, 74, -1, -1, 1287, -1, -1,
-1, -1, 821, 890, -1, -1, 86, 87, -1, -1,
-1, -1, -1, 177, -1, -1, -1, -1, -1, -1,
-1, 1082, 1083, 187, 188, -1, -1, 1317, 192, -1,
194, 195, -1, 591, -1, -1, -1, -1, -1, -1,
-1, 177, -1, -1, 10, 11, 12, 13, 14, 185,
-1, 187, 188, -1, -1, -1, 192, -1, 194, 195,
-1, -1, -1, -1, -1, 596, -1, -1, -1, -1,
-1, 37, -1, -1, 1010, 185, -1, -1, 636, 637,
638, -1, 192, -1, 1145, -1, 973, -1, -1, -1,
-1, -1, -1, 624, 60, 653, -1, -1, 629, 65,
1390, 67, 68, 69, -1, -1, -1, -1, -1, -1,
76, 77, -1, 671, -1, -1, -1, -1, -1, -1,
-1, 1411, -1, -1, 682, -1, -1, 1188, 264, -1,
688, -1, -1, -1, -1, 101, -1, 103, 1025, 1026,
-1, 1028, 1029, -1, 1434, 111, -1, -1, 1209, -1,
-1, 1441, -1, -1, 264, -1, -1, -1, -1, -1,
-1, 1222, 1049, 1224, -1, -1, 724, -1, -1, 727,
-1, -1, -1, -1, -1, -1, -1, 10, 11, 12,
13, 14, -1, -1, 715, -1, -1, -1, -1, -1,
-1, 1010, 1253, 1483, -1, 1082, 1083, -1, 729, -1,
1261, 1262, 1263, -1, 37, 763, -1, -1, -1, 319,
-1, 1272, 1273, -1, -1, -1, -1, 327, 749, -1,
330, -1, -1, -1, -1, -1, 1287, 60, -1, -1,
-1, -1, 65, -1, 67, 68, 69, -1, -1, -1,
-1, -1, -1, 76, 77, 1306, 804, -1, -1, -1,
-1, 1187, -1, -1, -1, -1, 814, -1, 1145, 817,
340, 341, -1, -1, 822, -1, 824, -1, 101, -1,
103, 829, 352, 353, -1, -1, -1, -1, 111, -1,
-1, -1, 392, -1, -1, -1, 396, -1, -1, -1,
821, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 1188, -1, -1, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 1209, 29, 30, 31, -1, -1, -1, 1390,
-1, 37, 890, -1, -1, 1222, -1, 1224, -1, -1,
-1, -1, -1, -1, -1, -1, 1282, -1, -1, -1,
-1, -1, -1, -1, 60, -1, -1, -1, -1, -1,
-1, 67, 68, -1, -1, 71, 1253, -1, 1187, -1,
-1, 481, -1, 1434, 1261, 1262, 1263, -1, -1, -1,
1441, -1, -1, -1, -1, 1272, 1273, -1, -1, -1,
-1, -1, -1, -1, -1, 101, -1, 103, -1, -1,
1287, -1, -1, -1, -1, 111, -1, -1, -1, -1,
-1, 575, 576, -1, -1, 973, -1, -1, -1, 1306,
-1, -1, 1483, -1, -1, -1, -1, -1, -1, -1,
10, 11, 12, 13, 14, -1, -1, -1, -1, 575,
576, 605, -1, -1, 608, 609, -1, 611, -1, 613,
614, -1, -1, -1, 618, 619, -1, 37, -1, -1,
-1, 571, 572, 1282, -1, -1, -1, 1025, 1026, 605,
1028, 1029, 608, 609, -1, 611, -1, 613, 614, 1010,
60, -1, 618, 619, -1, 65, -1, 67, 68, 69,
-1, 1049, -1, -1, -1, -1, 76, 77, -1, -1,
-1, -1, -1, 1390, -1, -1, -1, -1, -1, 7,
-1, -1, 10, 11, 12, 13, 14, -1, -1, -1,
-1, 101, -1, 103, 1082, 1083, -1, -1, -1, -1,
-1, 111, -1, -1, -1, -1, 700, 701, 36, 37,
38, -1, 706, -1, -1, -1, -1, 1434, 658, -1,
-1, -1, 662, -1, 1441, -1, -1, -1, -1, 695,
-1, 59, 60, -1, 700, 701, -1, 65, -1, -1,
706, 69, -1, -1, 72, 73, 74, 75, 76, 77,
-1, 79, 80, -1, -1, 695, -1, 1145, -1, 87,
-1, -1, -1, -1, -1, -1, 1483, -1, -1, -1,
-1, -1, -1, 101, -1, 103, -1, -1, -1, -1,
44, -1, 110, 111, 112, 113, 114, 115, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 63,
1188, -1, -1, -1, -1, -1, 716, -1, 718, -1,
-1, -1, -1, -1, -1, 725, 726, -1, -1, -1,
730, 1209, -1, -1, -1, -1, 1187, -1, -1, -1,
-1, -1, 742, -1, 1222, -1, 1224, 747, -1, -1,
-1, -1, -1, -1, -1, 109, -1, -1, -1, -1,
114, -1, -1, 10, 11, 12, 13, 14, -1, -1,
-1, -1, 772, -1, -1, 1253, -1, -1, 808, -1,
-1, -1, -1, 1261, 1262, 1263, -1, -1, -1, 143,
37, -1, -1, -1, 1272, 1273, -1, -1, -1, 153,
-1, -1, -1, 157, -1, -1, -1, -1, -1, 1287,
-1, -1, -1, 60, -1, -1, 816, -1, 65, -1,
67, 68, 69, -1, -1, -1, -1, -1, 1306, 76,
77, 1282, -1, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
-1, 205, -1, -1, 101, -1, -1, -1, -1, -1,
37, -1, -1, 217, 111, 7, -1, -1, 10, 11,
12, 13, 14, 873, 874, 875, 876, -1, 878, -1,
-1, 235, 236, 60, -1, -1, -1, -1, -1, -1,
920, -1, -1, 893, 36, 37, 38, -1, 10, 11,
12, 13, 14, -1, -1, 259, -1, 907, -1, -1,
-1, -1, 1390, 267, -1, -1, -1, 59, 60, -1,
-1, -1, -1, 65, -1, 37, -1, 69, -1, -1,
72, 73, 74, 75, 76, 77, 290, 79, 80, 293,
-1, -1, -1, -1, -1, 87, 946, -1, 60, -1,
-1, -1, -1, 65, -1, -1, 1434, 69, -1, 101,
-1, 103, -1, 1441, 76, 77, -1, 997, 110, 111,
112, 113, 114, 115, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 1013, -1, 985, 340, -1, -1, 101,
-1, 345, 992, -1, -1, -1, 996, -1, -1, 111,
1084, 1001, -1, 1003, -1, 1483, -1, 1007, 1008, 1009,
-1, -1, 1012, -1, -1, -1, -1, -1, -1, -1,
-1, 1021, -1, -1, -1, -1, -1, -1, 1084, -1,
-1, 63, -1, 10, 11, 12, 13, 14, -1, 1039,
1040, 73, -1, 75, -1, 77, -1, -1, -1, -1,
-1, -1, 84, -1, -1, -1, -1, -1, -1, 1089,
37, -1, -1, -1, -1, 1065, 420, 421, 1068, -1,
-1, -1, -1, 427, -1, -1, -1, -1, -1, -1,
-1, -1, 114, 60, 116, 117, 118, -1, 65, -1,
67, 68, 69, -1, 448, -1, -1, 451, -1, 76,
77, -1, -1, 457, -1, -1, 1106, -1, -1, -1,
-1, -1, 1112, 1113, -1, -1, -1, -1, -1, -1,
-1, -1, 1206, 1123, 101, 157, -1, -1, 1128, -1,
484, 1131, -1, 1133, 111, -1, 1136, -1, -1, -1,
-1, -1, 496, -1, -1, -1, -1, -1, -1, 1149,
1206, 43, -1, -1, 508, -1, -1, -1, 512, -1,
514, 515, 1162, -1, 1164, 1165, 1166, 1167, -1, -1,
-1, -1, -1, 527, -1, -1, -1, -1, -1, -1,
1180, -1, 1182, -1, -1, 217, 1186, 219, 220, 221,
-1, -1, -1, -1, -1, -1, -1, 89, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 99, -1, -1,
-1, -1, -1, -1, 1214, 1215, -1, -1, -1, -1,
-1, -1, -1, 255, -1, 579, -1, 259, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 591, -1, 593,
-1, -1, 596, 275, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, 154, -1, 1264, 1265, -1, -1, 622, -1,
-1, 37, -1, 627, 1274, 167, -1, -1, -1, -1,
-1, -1, 636, 637, 638, -1, -1, -1, -1, -1,
-1, -1, 324, -1, 60, -1, -1, -1, 190, 653,
-1, -1, -1, -1, -1, 71, -1, -1, -1, -1,
-1, -1, 204, 345, -1, -1, -1, -1, 350, 351,
-1, 213, -1, 1323, -1, -1, 358, -1, -1, -1,
-1, 223, -1, -1, 688, 1335, -1, 1337, 1338, 1339,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 1349,
-1, -1, -1, -1, -1, 709, 248, -1, 1358, -1,
-1, 253, -1, -1, -1, -1, -1, -1, 400, -1,
1370, -1, -1, 727, 266, 729, -1, -1, -1, -1,
272, -1, 274, -1, -1, -1, 418, -1, -1, -1,
-1, 423, -1, 425, -1, -1, -1, -1, -1, 291,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 763,
442, -1, -1, 445, 446, -1, -1, -1, -1, -1,
-1, 1421, 1422, -1, -1, -1, -1, -1, -1, 461,
-1, -1, -1, -1, 1434, -1, -1, -1, -1, -1,
-1, 1441, 334, 475, -1, -1, -1, 339, -1, -1,
482, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 817, 36, -1, 38, 821, 1468, -1,
824, -1, -1, -1, -1, 367, -1, -1, -1, 371,
372, -1, 374, -1, -1, -1, -1, 59, 380, 381,
-1, 383, 384, 65, 386, 1495, 388, 69, -1, -1,
72, 73, 74, 75, 76, 77, -1, 79, 80, -1,
-1, -1, -1, 405, -1, 87, -1, -1, -1, -1,
1520, 413, -1, -1, -1, 1525, -1, -1, -1, 101,
-1, 103, -1, -1, -1, -1, -1, -1, 110, 111,
112, 113, 114, 115, -1, -1, 438, -1, -1, -1,
-1, -1, 124, -1, -1, -1, -1, 449, -1, -1,
-1, -1, 916, -1, 596, -1, -1, -1, -1, -1,
36, -1, 38, -1, -1, -1, -1, -1, -1, -1,
472, -1, -1, -1, -1, -1, 478, -1, -1, -1,
-1, 483, 624, 59, -1, -1, -1, 629, -1, 65,
-1, 67, 68, 69, 958, -1, 72, 73, 74, 75,
76, 77, -1, 79, 80, -1, -1, -1, -1, 973,
-1, 87, -1, -1, -1, -1, -1, 519, -1, -1,
-1, -1, -1, -1, -1, 101, -1, 103, -1, 105,
106, -1, -1, 535, 110, 111, 112, 113, 114, 115,
-1, -1, -1, 1007, -1, -1, -1, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, 1028, 1029, 29, 30, 31, 571,
-1, -1, -1, 715, 37, -1, -1, -1, 580, -1,
-1, -1, -1, -1, -1, 587, -1, 729, -1, -1,
592, -1, -1, 36, -1, 38, -1, 60, -1, -1,
-1, 603, 65, -1, 67, 68, 69, 749, -1, -1,
-1, -1, -1, 76, 77, -1, 59, -1, -1, -1,
-1, -1, 65, 1087, -1, -1, 69, -1, -1, 72,
73, 74, 75, 76, 77, -1, 79, 80, 101, -1,
103, 643, -1, -1, 87, -1, -1, -1, 111, -1,
-1, -1, -1, 143, -1, -1, -1, -1, 101, -1,
103, -1, -1, 153, -1, 108, 808, 110, 111, 112,
113, 114, 115, -1, -1, 165, 678, -1, -1, 821,
-1, 1145, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 840, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, 1187, 29, 30, 31, -1, -1, -1,
-1, 733, 37, -1, -1, -1, -1, -1, -1, -1,
-1, 743, 744, 152, 153, 235, -1, -1, -1, -1,
-1, -1, -1, -1, 756, 60, -1, 62, -1, 64,
1224, -1, 67, 68, -1, -1, -1, -1, -1, -1,
260, 773, -1, 775, -1, -1, 185, 779, -1, -1,
-1, -1, -1, 192, 926, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 102, 103, -1,
-1, -1, -1, -1, -1, -1, 111, -1, 1272, 1273,
952, -1, -1, -1, -1, -1, -1, -1, 1282, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, -1, 979, 29, 30,
31, -1, 844, -1, -1, -1, 37, 38, -1, 851,
-1, -1, -1, -1, -1, 264, -1, -1, -1, -1,
-1, -1, 864, -1, 866, -1, -1, -1, 1010, 60,
-1, -1, -1, -1, -1, -1, 67, 68, 880, 1021,
-1, -1, -1, -1, 886, 375, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 898, -1, -1, 901,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
319, -1, 103, -1, -1, -1, 107, 919, 327, 328,
111, 330, 331, -1, -1, -1, 1390, -1, -1, -1,
-1, 340, -1, -1, -1, 344, -1, 36, -1, 38,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 363, -1, -1, 366, -1, 1101,
59, -1, -1, -1, -1, -1, 65, -1, -1, -1,
69, -1, -1, 72, 73, 74, 75, 76, 77, 1443,
79, 80, -1, 392, -1, -1, 476, 396, 87, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 101, -1, 1006, -1, -1, -1, 1472, -1,
-1, 110, 111, 112, 113, 114, 115, -1, 427, -1,
-1, -1, -1, -1, 514, -1, -1, -1, -1, -1,
-1, -1, 1496, -1, -1, -1, -1, 527, -1, -1,
-1, 450, -1, -1, 534, 1187, -1, 36, -1, 38,
-1, -1, -1, -1, -1, -1, -1, 547, 548, -1,
1062, -1, -1, -1, -1, -1, 1068, -1, -1, -1,
59, -1, 481, -1, -1, 484, 65, -1, -1, 569,
69, -1, -1, 72, 73, 74, 75, 76, 77, 579,
79, 80, -1, -1, -1, 1097, 586, -1, 87, -1,
1102, 591, -1, -1, -1, -1, -1, -1, 1110, -1,
-1, -1, 101, -1, 523, -1, -1, 526, 527, -1,
-1, 110, 111, 112, 113, 114, 115, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 1140, -1,
1282, -1, -1, -1, -1, -1, -1, -1, -1, -1,
1152, 641, -1, 1155, -1, 1157, -1, -1, 648, -1,
-1, -1, 571, 572, -1, -1, -1, -1, -1, 1171,
1172, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 590, 591, -1, 593, -1, -1, -1, -1, -1,
-1, 1193, -1, 602, -1, 604, 605, -1, 688, -1,
-1, -1, 611, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 621, 622, -1, -1, -1, 1219, 627, -1,
-1, -1, -1, -1, -1, -1, -1, 636, 637, 638,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 653, -1, -1, -1, -1, 658,
659, -1, -1, 662, 663, -1, -1, -1, -1, -1,
669, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 763, -1, 765, -1, -1, 687, 688,
689, 771, 691, -1, -1, -1, 695, -1, 778, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
36, -1, 38, -1, -1, -1, -1, -1, -1, -1,
1312, -1, 1314, -1, -1, -1, -1, -1, 727, 728,
-1, -1, -1, 59, -1, 1327, -1, 1329, -1, 65,
-1, 821, 822, 69, 824, -1, 72, 73, 74, 75,
76, 77, -1, 79, 80, 1347, -1, -1, -1, 839,
-1, 87, -1, 762, 763, -1, -1, -1, 767, 768,
-1, 1363, -1, -1, -1, 101, -1, 103, 1510, 1371,
106, -1, 1374, -1, 110, 111, 112, 113, 114, 115,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 879,
-1, -1, -1, 883, 1396, -1, -1, -1, -1, 808,
-1, -1, -1, 1405, -1, -1, 1408, 1409, 817, -1,
-1, -1, -1, -1, 823, 824, -1, -1, -1, 828,
-1, 830, -1, 278, 279, 280, -1, -1, -1, -1,
-1, 840, 287, 288, -1, -1, -1, 292, 293, -1,
-1, -1, -1, 1445, -1, 1447, -1, -1, -1, 304,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 1461,
-1, -1, -1, -1, -1, -1, -1, -1, 958, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 973, 974, 340, -1, -1, -1, -1,
980, -1, -1, -1, -1, -1, 986, -1, -1, 989,
-1, 991, -1, 912, -1, -1, -1, 36, -1, 38,
-1, 920, -1, -1, -1, -1, -1, 926, -1, -1,
1010, 376, -1, -1, -1, 934, -1, -1, -1, -1,
59, 1021, -1, -1, -1, -1, 65, -1, 947, 948,
69, -1, -1, 72, 73, 74, 75, 76, 77, -1,
79, 80, -1, 1043, -1, 1045, -1, -1, 87, -1,
-1, -1, -1, -1, 973, -1, -1, -1, -1, -1,
979, 1061, 101, -1, 103, -1, -1, -1, -1, -1,
109, 110, 111, 112, 113, 114, 115, -1, 997, 998,
1080, -1, -1, -1, -1, -1, -1, -1, 1007, -1,
-1, -1, -1, -1, 1013, 1014, -1, 1016, 1017, 1018,
36, -1, 38, -1, -1, -1, -1, -1, -1, 1028,
1029, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 59, -1, -1, 1126, -1, -1, 65,
-1, -1, -1, 69, -1, -1, 72, 73, 74, 75,
76, 77, -1, 79, 80, 1145, -1, -1, -1, -1,
-1, 87, -1, -1, -1, -1, -1, -1, -1, -1,
1160, 1161, -1, -1, -1, 101, -1, 103, -1, 1088,
1089, 1090, -1, -1, 110, 111, 112, 113, 114, 115,
-1, -1, 1101, -1, -1, 550, 551, 552, 553, 554,
555, 556, 557, 558, 559, 560, 561, 562, 563, 564,
565, 566, 567, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 1145, -1, 593, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 1239,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, -1, -1, 29, 30, 31, 1205, -1, -1, -1,
36, 37, 38, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 1224, -1, -1, -1, -1,
-1, -1, -1, 59, 60, -1, 62, -1, 64, 65,
-1, 67, 68, 69, -1, 690, 72, 73, 74, 75,
76, 77, -1, 79, 80, -1, -1, -1, -1, -1,
-1, 87, -1, -1, -1, -1, -1, 712, -1, -1,
-1, -1, -1, 1272, 1273, 101, -1, 103, -1, -1,
725, -1, 108, -1, 110, 111, 112, 113, 114, 115,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 1381, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 770, -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, -1, 801, 29, 30, 31,
32, -1, -1, 35, 36, 37, 38, -1, -1, -1,
-1, 816, 1452, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 59, 60, -1,
62, 1390, 64, 65, -1, 67, 68, 69, -1, -1,
72, 73, 74, 75, 76, 77, -1, 79, 80, -1,
-1, -1, -1, -1, -1, 87, 1496, -1, -1, -1,
-1, -1, 36, -1, 38, -1, -1, -1, -1, 101,
-1, 103, -1, -1, -1, -1, -1, -1, 110, 111,
112, 113, 114, 115, -1, 59, -1, -1, -1, -1,
-1, 65, 124, -1, -1, 69, -1, -1, 72, 73,
74, 75, 76, 77, -1, 79, 80, -1, -1, -1,
1469, -1, -1, 87, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 101, -1, 103,
1489, 1490, 106, -1, -1, -1, 110, 111, 112, 113,
114, 115, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 1510, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 966, -1, -1, -1, 3, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
995, 29, 30, 31, 32, -1, -1, 35, 36, 37,
38, 39, 1007, 41, -1, -1, 44, 45, 46, 47,
48, 49, 50, 51, -1, 53, -1, -1, 56, 57,
-1, 59, 60, -1, 62, -1, 64, 65, -1, 67,
68, 69, -1, -1, 72, 73, 74, 75, 76, 77,
-1, 79, 80, -1, 1049, -1, -1, -1, -1, 87,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 101, -1, 103, -1, -1, 106, -1,
-1, -1, 110, 111, 112, 113, 114, 115, -1, -1,
-1, -1, -1, -1, -1, -1, 124, -1, -1, 3,
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, -1, 1119, 29, 30, 31, 32, -1,
-1, 35, 36, 37, 38, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, -1, -1, 59, 60, -1, 62, -1,
64, 65, 37, 67, 68, 69, -1, 1162, 72, 73,
74, 75, 76, 77, -1, 79, 80, -1, -1, -1,
-1, 1176, 1177, 87, -1, 60, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 71, 101, -1, 103,
-1, -1, -1, -1, -1, -1, 110, 111, 112, 113,
114, 115, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, -1, -1, 29, 30, 31,
-1, -1, -1, -1, 36, 37, 38, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 59, 60, -1,
62, -1, 64, 65, -1, 67, 68, 69, -1, -1,
72, 73, 74, 75, 76, 77, -1, 79, 80, -1,
-1, -1, -1, -1, -1, 87, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 101,
-1, 103, -1, -1, -1, -1, 108, -1, 110, 111,
112, 113, 114, 115, -1, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, -1, -1, -1, -1, 36, 37, 38,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
59, 60, 1377, 62, -1, 64, 65, -1, 67, 68,
69, -1, -1, 72, 73, 74, 75, 76, 77, 1394,
79, 80, -1, -1, -1, -1, -1, -1, 87, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 101, -1, 103, -1, -1, -1, -1, 108,
-1, 110, 111, 112, 113, 114, 115, -1, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 1456, 1457, 29, 30, 31, -1, -1, -1, -1,
36, 37, 38, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 59, 60, -1, 62, -1, 64, 65,
-1, 67, 68, 69, -1, -1, 72, 73, 74, 75,
76, 77, -1, 79, 80, -1, -1, -1, -1, -1,
-1, 87, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 101, -1, 103, -1, -1,
-1, -1, -1, -1, 110, 111, 112, 113, 114, 115,
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, -1, -1, 29, 30, 31, -1, -1,
-1, -1, 36, 37, 38, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 59, 60, -1, 62, -1,
64, 65, -1, 67, 68, 69, -1, -1, 72, 73,
74, 75, 76, 77, -1, 79, 80, -1, -1, -1,
-1, -1, -1, 87, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 101, -1, 103,
-1, -1, -1, -1, -1, -1, 110, 111, 112, 113,
114, 115, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, -1, -1, 29, 30, 31,
-1, -1, -1, -1, 36, 37, 38, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 59, 60, -1,
62, -1, 64, 65, -1, 67, 68, 69, -1, -1,
72, 73, 74, 75, 76, 77, -1, 79, 80, -1,
-1, -1, -1, -1, -1, 87, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 101,
-1, 103, -1, -1, -1, -1, -1, -1, 110, 111,
112, 113, 114, 115, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, -1, -1, 29,
30, 31, -1, -1, -1, -1, 36, 37, 38, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 59,
60, -1, 62, -1, 64, 65, -1, 67, 68, 69,
-1, -1, 72, 73, 74, 75, 76, 77, -1, 79,
80, -1, -1, -1, -1, -1, -1, 87, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 101, -1, 103, -1, -1, -1, -1, -1, -1,
110, 111, 112, 113, 114, 115, 0, -1, -1, 3,
4, 5, 6, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, -1, -1, 29, 30, 31, 32, -1,
-1, 35, -1, 37, 38, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 57, -1, -1, 60, -1, 62, -1,
64, 65, -1, 67, 68, 69, -1, -1, -1, -1,
-1, -1, 76, 77, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 101, -1, 103,
-1, -1, -1, -1, -1, -1, -1, 111, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, 29, 30, 31, 32, -1, -1,
35, -1, 37, 38, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 57, -1, -1, 60, -1, 62, -1, 64,
65, -1, 67, 68, 69, -1, -1, -1, -1, -1,
-1, 76, 77, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 101, -1, 103, -1,
-1, -1, 107, -1, -1, -1, 111, 3, 4, 5,
6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, -1, -1, 29, 30, 31, 32, -1, -1, 35,
-1, 37, 38, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 57, -1, -1, 60, -1, 62, -1, 64, 65,
-1, 67, 68, 69, -1, -1, -1, -1, -1, -1,
76, 77, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 101, -1, 103, -1, -1,
-1, -1, -1, -1, -1, 111, 3, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, 29, 30, 31, -1, -1, -1, -1, -1,
37, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 60, -1, 62, -1, 64, 65, -1,
67, 68, 69, -1, -1, -1, -1, -1, -1, 76,
77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 101, -1, 103, -1, -1, -1,
-1, -1, -1, -1, 111, 3, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
-1, 29, 30, 31, 32, -1, -1, 35, -1, 37,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 60, -1, 62, -1, 64, -1, -1, 67,
68, -1, -1, 71, 3, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, 32, -1, 103, 35, -1, 37, -1,
-1, -1, -1, 111, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 60, -1, 62, -1, 64, -1, -1, 67, 68,
-1, 3, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, -1, -1, 29, 30, 31,
-1, -1, -1, -1, 103, 37, -1, -1, -1, -1,
-1, -1, 111, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 60, -1,
62, -1, 64, -1, -1, 67, 68, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, 29, 30, 31, -1, -1, -1, -1, -1,
37, 103, -1, -1, -1, -1, -1, -1, -1, 111,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 60, -1, 62, -1, 64, 65, -1,
67, 68, 69, -1, -1, -1, -1, -1, -1, 76,
77, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 101, -1, 103, -1, -1, -1,
-1, -1, -1, -1, 111, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, -1, -1, -1, -1, -1, 37, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, 29, 30,
31, 60, -1, 62, -1, 64, 37, -1, 67, 68,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 60,
89, -1, -1, -1, 65, -1, 67, 68, -1, -1,
-1, -1, -1, -1, 103, -1, -1, -1, -1, -1,
-1, -1, 111, 4, 5, 6, 7, 8, 9, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, 29, 30,
31, -1, -1, -1, -1, -1, 37, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, 60,
-1, 62, -1, 64, 37, -1, 67, 68, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 60, 89, -1,
-1, -1, -1, -1, 67, 68, -1, -1, -1, -1,
-1, -1, 103, -1, -1, -1, -1, -1, -1, -1,
111, 4, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, -1,
-1, -1, -1, -1, 37, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 60, -1, 62,
-1, 64, -1, -1, 67, 68, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
-1, 29, 30, 31, -1, -1, -1, -1, -1, 37,
103, -1, -1, -1, -1, -1, -1, -1, 111, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 60, -1, 62, -1, 64, -1, -1, 67,
68, 4, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, -1,
-1, -1, -1, -1, 37, 103, -1, -1, -1, -1,
-1, -1, -1, 111, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 60, -1, 62,
-1, 64, -1, -1, 67, 68, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
-1, 29, 30, 31, -1, -1, -1, -1, -1, 37,
103, -1, -1, -1, -1, -1, -1, -1, 111, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 60, -1, 62, -1, 64, -1, -1, 67,
68, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, -1, -1, -1, -1, 36, 37, 38,
-1, -1, -1, -1, -1, 103, -1, -1, -1, -1,
-1, -1, -1, 111, -1, -1, -1, -1, -1, -1,
59, 60, -1, -1, -1, -1, 65, -1, 67, 68,
69, -1, -1, 72, 73, 74, 75, 76, 77, -1,
79, 80, -1, -1, -1, -1, -1, -1, 87, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 101, -1, 103, -1, -1, 106, -1, -1,
-1, 110, 111, 112, 113, 114, 115, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, -1,
-1, -1, -1, 36, 37, 38, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 59, 60, -1, -1,
-1, -1, 65, -1, 67, 68, 69, -1, -1, 72,
73, 74, 75, 76, 77, -1, 79, 80, -1, -1,
-1, -1, -1, -1, 87, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 101, -1,
103, 104, -1, -1, -1, -1, -1, 110, 111, 112,
113, 114, 115, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, 29, 30, 31, -1, -1, -1, -1, 36,
37, 38, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 59, 60, -1, -1, -1, -1, 65, -1,
67, 68, 69, -1, -1, 72, 73, 74, 75, 76,
77, -1, 79, 80, -1, -1, -1, -1, -1, -1,
87, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 101, 102, 103, -1, -1, -1,
-1, -1, -1, 110, 111, 112, 113, 114, 115, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, 29, 30,
31, -1, -1, -1, -1, 36, 37, 38, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 59, 60,
-1, -1, -1, -1, 65, -1, 67, 68, 69, -1,
-1, 72, 73, 74, 75, 76, 77, -1, 79, 80,
-1, -1, -1, -1, -1, -1, 87, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
101, -1, 103, -1, -1, -1, -1, -1, -1, 110,
111, 112, 113, 114, 115, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, 29, 30, 31, -1, -1, -1,
-1, 36, 37, 38, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, 59, 60, -1, -1, -1, -1,
65, -1, 67, 68, 69, -1, -1, 72, 73, 74,
75, 76, 77, -1, 79, 80, -1, -1, -1, -1,
-1, -1, 87, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 101, -1, 103, -1,
-1, -1, -1, -1, -1, 110, 111, 112, 113, 114,
115, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, -1, -1, -1, -1, 36, 37, 38,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
59, 60, -1, -1, -1, -1, 65, -1, 67, 68,
69, -1, -1, 72, 73, 74, 75, 76, 77, -1,
79, 80, -1, -1, -1, -1, -1, -1, 87, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 101, -1, 103, -1, -1, -1, -1, -1,
-1, 110, 111, 112, 113, 114, 115, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, -1,
-1, -1, -1, 36, 37, 38, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 59, 60, -1, -1,
-1, -1, 65, -1, 67, 68, 69, -1, -1, 72,
73, 74, 75, 76, 77, -1, 79, 80, -1, -1,
-1, -1, -1, -1, 87, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 101, -1,
103, -1, -1, -1, -1, -1, -1, 110, 111, 112,
113, 114, 115, 3, 4, 5, 6, 7, 8, 9,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, -1, -1, 29,
30, 31, -1, -1, -1, -1, -1, 37, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 27, -1, 29, 30, 31,
60, -1, 62, -1, 64, 37, -1, 67, 68, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 60, -1,
-1, -1, -1, 65, -1, 67, 68, 69, -1, 71,
-1, -1, -1, -1, 76, 77, 106, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, -1, 29, 30, 31, 101,
-1, 103, -1, -1, 37, -1, -1, -1, -1, 111,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 60, -1, 29,
30, 31, 65, -1, 67, 68, 69, 37, 71, -1,
-1, -1, -1, 76, 77, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
60, -1, -1, -1, -1, 65, -1, 67, 68, 69,
103, -1, -1, -1, -1, -1, 76, 77, 111, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, 29, 30,
31, 101, -1, 103, -1, -1, 37, -1, -1, -1,
-1, 111, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 60,
-1, -1, -1, -1, 65, -1, 67, 68, 69, -1,
-1, -1, -1, -1, -1, 76, 77, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, -1,
101, -1, 103, -1, 37, -1, -1, -1, -1, -1,
111, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 60, -1, -1,
-1, -1, 65, -1, 67, 68, 69, -1, -1, -1,
-1, -1, -1, 76, 77, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, 29, 30, 31, -1, 101, -1,
103, -1, 37, -1, -1, -1, -1, -1, 111, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 60, -1, -1, -1, -1,
65, -1, 67, 68, 69, -1, -1, -1, -1, -1,
-1, 76, 77, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
27, -1, 29, 30, 31, -1, -1, -1, 103, -1,
37, -1, -1, -1, -1, -1, 111, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 60, -1, -1, -1, -1, -1, -1,
67, 68, -1, -1, 71, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, 29, 30, 31, -1, -1, -1,
-1, -1, 37, 38, 101, -1, 103, -1, -1, -1,
-1, -1, -1, -1, 111, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 60, -1, -1, -1, -1,
-1, -1, 67, 68, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, 27, -1, 29, 30, 31, -1, -1, -1, -1,
-1, 37, -1, -1, -1, -1, -1, -1, 103, -1,
-1, -1, 107, -1, -1, -1, 111, -1, -1, -1,
-1, -1, -1, -1, 60, -1, -1, -1, -1, -1,
-1, 67, 68, -1, -1, 71, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, -1, -1, 29, 30, 31, -1, -1,
-1, -1, -1, 37, 38, -1, -1, 103, -1, -1,
-1, -1, -1, -1, -1, 111, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 60, -1, -1, -1,
-1, -1, -1, 67, 68, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, 29, 30, 31, -1, -1, -1,
-1, -1, 37, -1, -1, -1, -1, -1, -1, 103,
-1, -1, -1, 107, -1, -1, -1, 111, -1, -1,
-1, -1, -1, -1, -1, 60, -1, -1, -1, -1,
65, -1, 67, 68, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, -1, -1, 29, 30, 31, -1, -1, -1, -1,
-1, 37, 38, -1, -1, -1, -1, -1, 103, -1,
-1, -1, -1, -1, -1, -1, 111, -1, -1, -1,
-1, -1, -1, -1, 60, -1, -1, -1, -1, -1,
-1, 67, 68, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, 29, 30, 31, -1, -1, -1, -1, -1,
37, -1, -1, -1, -1, -1, -1, 103, -1, -1,
-1, -1, -1, -1, -1, 111, -1, -1, -1, -1,
-1, -1, -1, 60, -1, -1, -1, -1, -1, -1,
67, 68, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
-1, 29, 30, 31, -1, -1, -1, -1, -1, 37,
-1, -1, -1, -1, 101, -1, 103, -1, -1, -1,
-1, -1, -1, -1, 111, -1, -1, -1, -1, -1,
-1, -1, 60, -1, -1, -1, -1, -1, -1, 67,
68, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, -1, -1, -1, -1, -1, 37, -1,
-1, -1, -1, 101, -1, 103, -1, -1, -1, -1,
-1, -1, -1, 111, -1, -1, -1, -1, -1, -1,
-1, 60, -1, -1, -1, -1, -1, -1, 67, 68,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, -1, -1, 29,
30, 31, -1, -1, -1, -1, -1, 37, -1, -1,
-1, -1, -1, -1, 103, -1, -1, -1, -1, -1,
-1, -1, 111, -1, -1, -1, -1, -1, -1, -1,
60, -1, -1, -1, -1, -1, -1, 67, 68, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, 29, 30,
31, -1, -1, -1, -1, -1, 37, -1, -1, -1,
-1, -1, -1, 103, -1, -1, -1, -1, -1, -1,
-1, 111, -1, -1, -1, -1, -1, -1, -1, 60,
-1, -1, -1, -1, -1, -1, 67, 68, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, -1, -1, 29, 30, 31,
-1, -1, -1, -1, -1, 37, -1, -1, -1, -1,
-1, -1, 103, -1, -1, -1, -1, -1, -1, -1,
111, -1, -1, -1, -1, -1, -1, -1, 60, -1,
-1, -1, -1, -1, -1, 67, 68, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, -1,
-1, -1, -1, -1, 37, -1, -1, -1, -1, -1,
-1, 103, -1, -1, -1, -1, -1, -1, -1, 111,
-1, -1, -1, -1, -1, -1, -1, 60, -1, -1,
-1, -1, -1, -1, 67, 68, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 23,
24, 25, 26, -1, -1, 29, 30, 31, -1, -1,
-1, -1, -1, 37, -1, -1, -1, -1, -1, -1,
103, -1, -1, -1, -1, -1, -1, -1, 111, -1,
-1, -1, -1, -1, -1, -1, 60, -1, -1, -1,
-1, -1, -1, 67, 68, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, 29, 30, 31, -1, -1, -1,
-1, -1, 37, -1, -1, -1, -1, -1, -1, 103,
-1, -1, -1, -1, -1, -1, -1, 111, -1, -1,
-1, -1, -1, -1, -1, 60, -1, -1, -1, -1,
-1, -1, 67, 68, 10, 11, 12, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
26, -1, -1, 29, 30, 31, -1, -1, -1, -1,
-1, 37, -1, -1, -1, -1, -1, -1, 103, -1,
-1, -1, -1, -1, -1, -1, 111, -1, -1, -1,
-1, -1, -1, -1, 60, -1, -1, -1, -1, -1,
-1, 67, 68, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, 29, 30, 31, -1, -1, -1, -1, -1,
37, -1, -1, -1, -1, -1, -1, 103, -1, -1,
-1, -1, -1, -1, -1, 111, -1, -1, -1, -1,
-1, -1, -1, 60, -1, -1, -1, -1, -1, -1,
67, 68, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
-1, 29, 30, 31, -1, -1, -1, -1, -1, 37,
-1, -1, -1, -1, -1, -1, 103, -1, -1, -1,
-1, -1, -1, -1, 111, -1, -1, -1, -1, -1,
-1, -1, 60, -1, -1, -1, -1, -1, -1, 67,
68, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, -1, -1, -1, -1, -1, 37, -1,
-1, -1, -1, -1, -1, 103, -1, -1, -1, -1,
-1, -1, -1, 111, -1, -1, -1, -1, -1, -1,
-1, 60, -1, -1, -1, -1, -1, -1, 67, 68,
10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, -1, -1, 29,
30, 31, -1, -1, -1, -1, -1, 37, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 111, -1, -1, -1, -1, -1, -1, -1,
60, -1, -1, -1, -1, -1, -1, 67, 68, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, -1, -1, 29, 30, 31, -1, -1, -1,
-1, -1, 37, -1, -1, -1, -1, -1, -1, -1,
-1, 111, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, 60, -1, 62, -1, 64,
-1, -1, 67, 68, -1, 36, -1, 38, 39, -1,
41, -1, -1, 44, 45, 46, 47, 48, 49, 50,
51, 52, 53, -1, -1, 56, 57, -1, 59, -1,
-1, -1, -1, -1, 65, -1, -1, 102, 69, -1,
-1, 72, 73, 74, 75, 76, 77, -1, 79, 80,
-1, -1, -1, -1, -1, -1, 87, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
101, -1, 103, -1, -1, 106, -1, -1, -1, 110,
111, 112, 113, 114, 115, -1, 36, -1, 38, 39,
-1, 41, -1, 124, 44, 45, 46, 47, 48, 49,
50, 51, -1, 53, -1, -1, 56, 57, -1, 59,
-1, -1, -1, -1, -1, 65, -1, -1, -1, 69,
-1, -1, 72, 73, 74, 75, 76, 77, -1, 79,
80, -1, -1, -1, -1, -1, -1, 87, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 101, -1, 103, -1, -1, 106, -1, -1, -1,
110, 111, 112, 113, 114, 115, -1, -1, -1, -1,
-1, -1, -1, -1, 124, 4, 5, 6, 7, 8,
9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, -1, -1,
29, 30, 31, -1, -1, -1, -1, -1, 37, 10,
11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
21, 22, 23, 24, 25, 26, -1, -1, 29, 30,
31, 60, -1, 62, -1, 64, 37, -1, 67, 68,
-1, 36, -1, 38, 39, -1, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 60,
89, 56, 57, -1, 59, -1, 67, 68, -1, -1,
65, -1, -1, -1, 69, -1, -1, 72, 73, 74,
75, 76, 77, -1, 79, 80, -1, -1, -1, -1,
-1, -1, 87, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, 111, 112, 113, 114,
115, 36, -1, 38, 39, -1, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, -1, 53, -1,
-1, 56, 57, -1, 59, -1, -1, -1, -1, -1,
65, -1, -1, -1, 69, -1, -1, 72, 73, 74,
75, 76, 77, -1, 79, 80, -1, -1, -1, -1,
-1, -1, 87, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, 111, 112, 113, 114,
115, 36, -1, 38, 39, -1, 41, -1, -1, 44,
45, 46, 47, 48, 49, 50, 51, -1, 53, -1,
-1, 56, 57, -1, 59, -1, -1, -1, -1, -1,
65, -1, -1, -1, 69, -1, -1, 72, 73, 74,
75, 76, 77, -1, 79, 80, -1, -1, -1, -1,
-1, -1, 87, -1, -1, -1, -1, -1, 36, -1,
38, -1, -1, -1, -1, -1, 101, -1, 103, -1,
-1, 106, -1, -1, -1, 110, 111, 112, 113, 114,
115, 59, -1, -1, -1, -1, -1, 65, -1, -1,
-1, 69, -1, -1, 72, 73, 74, 75, 76, 77,
-1, 79, 80, -1, -1, -1, -1, -1, -1, 87,
-1, -1, -1, -1, -1, 36, -1, 38, -1, -1,
-1, -1, -1, 101, -1, 103, -1, -1, -1, -1,
-1, -1, 110, 111, 112, 113, 114, 115, 59, -1,
-1, -1, -1, -1, 65, -1, -1, -1, 69, -1,
-1, 72, 73, 74, 75, 76, 77, -1, 79, 80,
-1, -1, -1, -1, -1, -1, 87, -1, -1, -1,
-1, -1, 36, -1, 38, -1, -1, -1, -1, -1,
101, -1, 103, -1, -1, -1, -1, -1, -1, 110,
111, 112, 113, 114, 115, 59, -1, -1, -1, -1,
-1, 65, -1, -1, -1, 69, -1, -1, 72, 73,
74, 75, 76, 77, -1, 79, 80, -1, -1, -1,
-1, -1, -1, 87, -1, -1, -1, -1, -1, 36,
-1, 38, -1, -1, -1, -1, -1, 101, -1, 103,
-1, -1, -1, -1, -1, -1, 110, 111, 112, 113,
114, 115, 59, -1, -1, -1, -1, -1, 65, -1,
-1, -1, 69, -1, -1, 72, 73, 74, 75, 76,
77, -1, 79, 80, -1, -1, -1, -1, -1, -1,
87, -1, -1, -1, -1, -1, 36, -1, 38, -1,
-1, -1, -1, -1, 101, -1, -1, -1, -1, -1,
-1, -1, -1, 110, 111, 112, 113, 114, 115, 59,
-1, -1, -1, -1, -1, 65, -1, -1, -1, 69,
-1, -1, 72, 73, 74, 75, 76, 77, -1, 79,
80, -1, -1, -1, -1, -1, -1, 87, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, 101, -1, -1, -1, -1, -1, -1, -1, -1,
110, 111, 112, 113, 114, 115, 4, 5, 6, 7,
8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 37,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 60, -1, 62, -1, 64, 65, -1, 67,
68, 69, -1, -1, -1, -1, -1, -1, 76, 77,
3, 4, 5, 6, 7, 8, 9, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, -1,
-1, -1, -1, -1, 37, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 60, -1, 62,
-1, 64, -1, -1, 67, 68, 3, 4, 5, 6,
7, 8, 9, 10, 11, 12, 13, 14, 15, 16,
17, 18, 19, 20, 21, 22, 23, 24, 25, 26,
-1, -1, 29, 30, 31, -1, -1, -1, -1, -1,
37, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, 60, -1, 62, -1, 64, -1, -1,
67, 68, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, -1, -1, 29, 30, 31,
-1, -1, -1, -1, -1, 37, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, 60, -1,
62, -1, 64, -1, -1, 67, 68, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, -1, -1, 29, 30, 31, 32,
33, 34, -1, -1, 37, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, 60, -1, -1,
-1, -1, -1, -1, 67, 68
};
/* YYSTOS[STATE-NUM] -- The (internal number of the) accessing
symbol of state STATE-NUM. */
static const yytype_uint16 yystos[] =
{
0, 3, 4, 5, 6, 7, 8, 9, 10, 11,
12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
22, 23, 24, 25, 26, 29, 30, 31, 32, 35,
37, 38, 57, 60, 62, 64, 65, 67, 68, 69,
76, 77, 101, 103, 111, 129, 132, 189, 202, 203,
204, 205, 206, 207, 208, 209, 210, 211, 212, 213,
214, 215, 216, 217, 218, 219, 221, 222, 223, 224,
225, 226, 227, 228, 230, 231, 232, 233, 234, 235,
236, 244, 245, 271, 272, 273, 281, 284, 290, 291,
293, 295, 296, 302, 307, 311, 312, 313, 314, 315,
316, 317, 318, 338, 355, 356, 357, 358, 65, 111,
131, 205, 207, 215, 217, 227, 231, 233, 272, 75,
101, 300, 301, 302, 300, 300, 65, 67, 68, 69,
130, 131, 261, 262, 282, 283, 67, 68, 262, 101,
293, 11, 190, 101, 111, 307, 312, 313, 314, 316,
317, 318, 104, 126, 103, 208, 215, 217, 311, 315,
354, 355, 358, 359, 127, 123, 265, 106, 127, 164,
67, 68, 129, 260, 127, 127, 127, 108, 127, 67,
68, 101, 111, 297, 306, 307, 308, 309, 310, 311,
315, 319, 320, 321, 322, 323, 329, 3, 27, 71,
229, 3, 5, 67, 103, 111, 207, 218, 222, 225,
234, 273, 311, 315, 358, 205, 207, 217, 227, 231,
233, 272, 311, 315, 32, 223, 223, 218, 225, 127,
223, 218, 223, 218, 68, 101, 106, 262, 273, 106,
262, 223, 218, 108, 127, 127, 0, 126, 101, 164,
300, 300, 126, 103, 215, 217, 356, 260, 260, 217,
123, 101, 111, 297, 307, 311, 103, 111, 358, 294,
220, 302, 101, 278, 101, 101, 49, 101, 36, 38,
59, 65, 69, 72, 73, 74, 75, 79, 80, 87,
101, 103, 110, 111, 112, 113, 114, 115, 128, 132,
133, 134, 135, 140, 141, 142, 143, 144, 145, 146,
147, 148, 149, 150, 151, 152, 153, 155, 157, 215,
264, 280, 354, 359, 217, 102, 102, 102, 102, 102,
102, 102, 67, 68, 103, 215, 260, 338, 356, 103,
111, 155, 207, 208, 214, 217, 221, 222, 227, 230,
231, 233, 250, 251, 255, 256, 257, 258, 272, 338,
350, 351, 352, 353, 358, 359, 104, 101, 311, 315,
358, 101, 108, 124, 103, 106, 111, 155, 266, 107,
126, 108, 124, 101, 108, 124, 108, 124, 108, 124,
300, 124, 307, 308, 309, 310, 320, 321, 322, 323,
217, 306, 319, 57, 299, 103, 300, 337, 338, 300,
300, 164, 126, 101, 300, 337, 300, 300, 217, 297,
101, 101, 216, 217, 215, 217, 104, 126, 215, 354,
359, 164, 126, 260, 265, 207, 222, 311, 315, 164,
126, 282, 217, 227, 124, 217, 217, 280, 38, 103,
215, 237, 238, 239, 240, 354, 358, 106, 246, 262,
106, 217, 282, 124, 124, 293, 126, 131, 259, 3,
127, 198, 199, 212, 214, 217, 126, 299, 101, 299,
155, 307, 217, 101, 126, 260, 106, 32, 33, 34,
215, 274, 275, 277, 126, 121, 123, 279, 126, 218,
224, 225, 260, 303, 304, 305, 101, 133, 101, 140,
140, 142, 101, 140, 101, 101, 140, 140, 131, 103,
155, 160, 164, 215, 263, 354, 104, 126, 142, 142,
75, 78, 79, 80, 101, 103, 105, 90, 91, 92,
93, 94, 95, 96, 97, 98, 99, 123, 159, 142,
111, 116, 117, 113, 114, 81, 82, 83, 84, 118,
119, 85, 86, 112, 120, 121, 87, 88, 122, 123,
361, 101, 111, 333, 334, 335, 336, 337, 102, 108,
101, 337, 338, 101, 337, 338, 126, 101, 215, 356,
104, 126, 103, 111, 127, 215, 217, 349, 350, 358,
359, 127, 101, 103, 111, 307, 324, 325, 326, 327,
328, 329, 330, 331, 332, 338, 339, 340, 341, 342,
343, 344, 111, 358, 217, 127, 127, 111, 215, 217,
351, 260, 215, 338, 351, 260, 101, 126, 126, 126,
104, 126, 65, 103, 105, 262, 266, 267, 268, 269,
270, 126, 126, 126, 126, 126, 126, 297, 102, 102,
102, 102, 102, 102, 102, 306, 319, 101, 265, 104,
198, 126, 297, 160, 264, 160, 264, 297, 103, 198,
299, 164, 126, 198, 102, 239, 240, 104, 126, 101,
109, 111, 241, 243, 306, 307, 319, 337, 345, 346,
347, 348, 107, 238, 108, 124, 108, 124, 262, 237,
108, 360, 123, 247, 246, 217, 252, 253, 254, 257,
258, 102, 108, 164, 126, 111, 155, 126, 214, 217,
251, 350, 358, 291, 292, 101, 111, 324, 102, 108,
361, 262, 274, 101, 106, 262, 264, 274, 102, 108,
101, 133, 102, 109, 263, 263, 103, 131, 137, 155,
264, 263, 104, 126, 102, 108, 102, 101, 111, 345,
102, 108, 155, 103, 131, 103, 136, 137, 126, 103,
131, 155, 155, 142, 142, 142, 143, 143, 144, 144,
145, 145, 145, 145, 146, 146, 147, 148, 149, 150,
151, 109, 160, 155, 126, 334, 335, 336, 217, 333,
300, 300, 155, 264, 126, 259, 111, 126, 215, 338,
351, 217, 221, 104, 126, 104, 358, 104, 101, 126,
307, 325, 326, 327, 330, 340, 341, 342, 104, 126,
217, 324, 328, 339, 101, 300, 343, 361, 300, 300,
361, 101, 300, 343, 300, 300, 300, 300, 338, 215,
349, 359, 260, 104, 108, 104, 108, 361, 215, 351,
361, 248, 249, 250, 251, 248, 248, 260, 155, 126,
103, 262, 109, 108, 360, 266, 103, 109, 270, 28,
200, 201, 260, 248, 131, 297, 131, 299, 101, 337,
338, 101, 337, 338, 133, 338, 164, 252, 102, 102,
102, 102, 104, 164, 198, 164, 106, 124, 124, 103,
307, 346, 347, 348, 153, 154, 217, 345, 242, 243,
242, 300, 300, 262, 300, 107, 262, 107, 154, 360,
127, 127, 131, 212, 127, 127, 248, 101, 111, 358,
127, 107, 217, 275, 276, 127, 126, 126, 101, 127,
102, 304, 160, 161, 109, 124, 103, 133, 191, 192,
193, 102, 102, 126, 109, 102, 102, 102, 155, 217,
106, 142, 157, 155, 156, 158, 108, 127, 126, 126,
102, 108, 155, 126, 153, 109, 252, 102, 102, 102,
333, 252, 102, 248, 215, 351, 103, 111, 155, 155,
217, 330, 252, 102, 102, 102, 102, 102, 102, 102,
7, 217, 324, 328, 339, 126, 126, 361, 126, 126,
102, 127, 127, 127, 127, 265, 127, 153, 154, 155,
298, 126, 266, 268, 107, 126, 131, 195, 262, 38,
39, 41, 44, 45, 46, 47, 48, 49, 50, 51,
53, 56, 103, 131, 161, 162, 163, 164, 165, 166,
168, 169, 181, 183, 184, 189, 202, 296, 28, 127,
123, 265, 126, 126, 102, 127, 164, 237, 104, 102,
102, 102, 345, 241, 247, 107, 102, 108, 104, 104,
127, 217, 108, 361, 278, 102, 274, 205, 207, 215,
286, 287, 288, 289, 280, 102, 102, 109, 154, 101,
102, 109, 108, 155, 155, 267, 108, 127, 158, 104,
131, 138, 139, 155, 137, 127, 138, 153, 157, 127,
101, 337, 338, 127, 127, 126, 127, 127, 127, 155,
102, 127, 101, 337, 338, 101, 343, 101, 343, 338,
216, 7, 111, 127, 155, 252, 252, 251, 255, 255,
256, 108, 108, 102, 102, 104, 89, 115, 127, 127,
138, 266, 155, 108, 124, 202, 206, 217, 221, 101,
101, 162, 101, 101, 124, 131, 124, 131, 111, 131,
161, 101, 164, 124, 155, 104, 109, 124, 127, 126,
127, 195, 102, 155, 252, 252, 300, 102, 107, 101,
337, 338, 126, 102, 126, 127, 297, 107, 126, 127,
127, 102, 106, 191, 104, 154, 124, 191, 193, 108,
127, 360, 156, 104, 127, 78, 105, 108, 127, 127,
104, 127, 102, 126, 102, 102, 104, 104, 104, 127,
102, 126, 126, 126, 155, 155, 127, 104, 127, 127,
127, 127, 126, 126, 154, 154, 104, 104, 127, 127,
131, 262, 217, 160, 160, 45, 160, 126, 124, 124,
160, 124, 124, 160, 54, 55, 185, 186, 187, 124,
300, 166, 107, 124, 127, 127, 126, 89, 257, 258,
102, 287, 108, 124, 108, 124, 107, 285, 109, 133,
102, 102, 109, 158, 104, 107, 104, 103, 139, 103,
139, 139, 104, 104, 104, 252, 104, 252, 252, 252,
127, 127, 104, 104, 102, 102, 104, 108, 89, 251,
89, 127, 104, 104, 102, 102, 101, 102, 161, 182,
202, 124, 102, 101, 164, 187, 54, 162, 102, 102,
252, 106, 126, 126, 286, 133, 194, 101, 124, 194,
127, 109, 126, 126, 127, 127, 127, 127, 104, 104,
126, 127, 104, 162, 42, 43, 106, 172, 173, 174,
160, 162, 127, 102, 161, 106, 174, 89, 126, 101,
127, 126, 260, 297, 107, 108, 109, 154, 102, 104,
155, 138, 138, 102, 102, 102, 102, 255, 40, 154,
170, 171, 298, 109, 126, 162, 172, 102, 124, 162,
124, 126, 102, 126, 89, 126, 102, 286, 133, 195,
102, 124, 109, 127, 127, 162, 89, 108, 109, 127,
196, 197, 202, 124, 161, 161, 196, 164, 188, 215,
354, 102, 126, 107, 102, 155, 104, 104, 154, 170,
173, 175, 176, 126, 124, 173, 177, 178, 127, 101,
111, 297, 345, 131, 164, 188, 101, 124, 162, 167,
107, 173, 202, 161, 52, 167, 180, 107, 173, 102,
217, 127, 280, 162, 167, 124, 179, 180, 167, 180,
164, 102, 102, 179, 127, 164, 127
};
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYEMPTY (-2)
#define YYEOF 0
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
/* Like YYERROR except do call yyerror. This remains here temporarily
to ease the transition to the new meaning of YYERROR, for GCC.
Once GCC version 2 has supplanted version 1, this can go. However,
YYFAIL appears to be in use. Nevertheless, it is formally deprecated
in Bison 2.4.2's NEWS entry, where a plan to phase it out is
discussed. */
#define YYFAIL goto yyerrlab
#if defined YYFAIL
/* This is here to suppress warnings from the GCC cpp's
-Wunused-macros. Normally we don't worry about that warning, but
some users do, and we want to make it easy for users to remove
YYFAIL uses, which will produce warnings from Bison 2.5. */
#endif
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY && yylen == 1) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (1); \
goto yybackup; \
} \
else \
{ \
yyerror (YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (YYID (0))
#define YYTERROR 1
#define YYERRCODE 256
/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].
If N is 0, then set CURRENT to the empty location which ends
the previous symbol: RHS[0] (always defined). */
#define YYRHSLOC(Rhs, K) ((Rhs)[K])
#ifndef YYLLOC_DEFAULT
# define YYLLOC_DEFAULT(Current, Rhs, N) \
do \
if (YYID (N)) \
{ \
(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \
(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \
(Current).last_line = YYRHSLOC (Rhs, N).last_line; \
(Current).last_column = YYRHSLOC (Rhs, N).last_column; \
} \
else \
{ \
(Current).first_line = (Current).last_line = \
YYRHSLOC (Rhs, 0).last_line; \
(Current).first_column = (Current).last_column = \
YYRHSLOC (Rhs, 0).last_column; \
} \
while (YYID (0))
#endif
/* This macro is provided for backward compatibility. */
#ifndef YY_LOCATION_PRINT
# define YY_LOCATION_PRINT(File, Loc) ((void) 0)
#endif
/* YYLEX -- calling `yylex' with the right arguments. */
#ifdef YYLEX_PARAM
# define YYLEX yylex (YYLEX_PARAM)
#else
# define YYLEX yylex ()
#endif
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (YYID (0))
# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Type, Value); \
YYFPRINTF (stderr, "\n"); \
} \
} while (YYID (0))
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_value_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
#endif
{
if (!yyvaluep)
return;
# ifdef YYPRINT
if (yytype < YYNTOKENS)
YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);
# else
YYUSE (yyoutput);
# endif
switch (yytype)
{
default:
break;
}
}
/*--------------------------------.
| Print this symbol on YYOUTPUT. |
`--------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep)
#else
static void
yy_symbol_print (yyoutput, yytype, yyvaluep)
FILE *yyoutput;
int yytype;
YYSTYPE const * const yyvaluep;
#endif
{
if (yytype < YYNTOKENS)
YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);
else
YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);
yy_symbol_value_print (yyoutput, yytype, yyvaluep);
YYFPRINTF (yyoutput, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)
#else
static void
yy_stack_print (yybottom, yytop)
yytype_int16 *yybottom;
yytype_int16 *yytop;
#endif
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (YYID (0))
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yy_reduce_print (YYSTYPE *yyvsp, int yyrule)
#else
static void
yy_reduce_print (yyvsp, yyrule)
YYSTYPE *yyvsp;
int yyrule;
#endif
{
int yynrhs = yyr2[yyrule];
int yyi;
unsigned long int yylno = yyrline[yyrule];
YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],
&(yyvsp[(yyi + 1) - (yynrhs)])
);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyvsp, Rule); \
} while (YYID (0))
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args)
# define YY_SYMBOL_PRINT(Title, Type, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
#if YYERROR_VERBOSE
# ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
# define yystrlen strlen
# else
/* Return the length of YYSTR. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static YYSIZE_T
yystrlen (const char *yystr)
#else
static YYSIZE_T
yystrlen (yystr)
const char *yystr;
#endif
{
YYSIZE_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# endif
# endif
# ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
# define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static char *
yystpcpy (char *yydest, const char *yysrc)
#else
static char *
yystpcpy (yydest, yysrc)
char *yydest;
const char *yysrc;
#endif
{
char *yyd = yydest;
const char *yys = yysrc;
while ((*yyd++ = *yys++) != '\0')
continue;
return yyd - 1;
}
# endif
# endif
# ifndef yytnamerr
/* Copy to YYRES the contents of YYSTR after stripping away unnecessary
quotes and backslashes, so that it's suitable for yyerror. The
heuristic is that double-quoting is unnecessary unless the string
contains an apostrophe, a comma, or backslash (other than
backslash-backslash). YYSTR is taken from yytname. If YYRES is
null, do not copy; instead, return the length of what the result
would have been. */
static YYSIZE_T
yytnamerr (char *yyres, const char *yystr)
{
if (*yystr == '"')
{
YYSIZE_T yyn = 0;
char const *yyp = yystr;
for (;;)
switch (*++yyp)
{
case '\'':
case ',':
goto do_not_strip_quotes;
case '\\':
if (*++yyp != '\\')
goto do_not_strip_quotes;
/* Fall through. */
default:
if (yyres)
yyres[yyn] = *yyp;
yyn++;
break;
case '"':
if (yyres)
yyres[yyn] = '\0';
return yyn;
}
do_not_strip_quotes: ;
}
if (! yyres)
return yystrlen (yystr);
return yystpcpy (yyres, yystr) - yyres;
}
# endif
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
about the unexpected token YYTOKEN for the state stack whose top is
YYSSP.
Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is
not large enough to hold the message. In that case, also set
*YYMSG_ALLOC to the required number of bytes. Return 2 if the
required number of bytes is too large to store. */
static int
yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg,
yytype_int16 *yyssp, int yytoken)
{
YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]);
YYSIZE_T yysize = yysize0;
YYSIZE_T yysize1;
enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };
/* Internationalized format string. */
const char *yyformat = 0;
/* Arguments of yyformat. */
char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];
/* Number of reported tokens (one for the "unexpected", one per
"expected"). */
int yycount = 0;
/* There are many possibilities here to consider:
- Assume YYFAIL is not used. It's too flawed to consider. See
for details. YYERROR is fine as it does not invoke this
function.
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yychar) is if
this state is a consistent state with a default action. Thus,
detecting the absence of a lookahead is sufficient to determine
that there is no unexpected or expected token to report. In that
case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is a
consistent state with a default action. There might have been a
previous inconsistent state, consistent state with a non-default
action, or user semantic action that manipulated yychar.
- Of course, the expected token list depends on states to have
correct lookahead information, and it depends on the parser not
to perform extra reductions after fetching a lookahead from the
scanner and before detecting a syntax error. Thus, state merging
(from LALR or IELR) and default reductions corrupt the expected
token list. However, the list is correct for canonical LR with
one exception: it will still contain any token that will not be
accepted due to an error action in a later state.
*/
if (yytoken != YYEMPTY)
{
int yyn = yypact[*yyssp];
yyarg[yycount++] = yytname[yytoken];
if (!yypact_value_is_default (yyn))
{
/* Start YYX at -YYN if negative to avoid negative indexes in
YYCHECK. In other words, skip the first -YYN actions for
this state because they are default actions. */
int yyxbegin = yyn < 0 ? -yyn : 0;
/* Stay within bounds of both yycheck and yytname. */
int yychecklim = YYLAST - yyn + 1;
int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;
int yyx;
for (yyx = yyxbegin; yyx < yyxend; ++yyx)
if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR
&& !yytable_value_is_error (yytable[yyx + yyn]))
{
if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)
{
yycount = 1;
yysize = yysize0;
break;
}
yyarg[yycount++] = yytname[yyx];
yysize1 = yysize + yytnamerr (0, yytname[yyx]);
if (! (yysize <= yysize1
&& yysize1 <= YYSTACK_ALLOC_MAXIMUM))
return 2;
yysize = yysize1;
}
}
}
switch (yycount)
{
# define YYCASE_(N, S) \
case N: \
yyformat = S; \
break
YYCASE_(0, YY_("syntax error"));
YYCASE_(1, YY_("syntax error, unexpected %s"));
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
# undef YYCASE_
}
yysize1 = yysize + yystrlen (yyformat);
if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM))
return 2;
yysize = yysize1;
if (*yymsg_alloc < yysize)
{
*yymsg_alloc = 2 * yysize;
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
return 1;
}
/* Avoid sprintf, as that infringes on the user's name space.
Don't have undefined behavior even if the translation
produced a string with the wrong number of "%s"s. */
{
char *yyp = *yymsg;
int yyi = 0;
while ((*yyp = *yyformat) != '\0')
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
{
yyp += yytnamerr (yyp, yyarg[yyi++]);
yyformat += 2;
}
else
{
yyp++;
yyformat++;
}
}
return 0;
}
#endif /* YYERROR_VERBOSE */
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
/*ARGSUSED*/
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
static void
yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep)
#else
static void
yydestruct (yymsg, yytype, yyvaluep)
const char *yymsg;
int yytype;
YYSTYPE *yyvaluep;
#endif
{
YYUSE (yyvaluep);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
switch (yytype)
{
default:
break;
}
}
/* Prevent warnings from -Wmissing-prototypes. */
#ifdef YYPARSE_PARAM
#if defined __STDC__ || defined __cplusplus
int yyparse (void *YYPARSE_PARAM);
#else
int yyparse ();
#endif
#else /* ! YYPARSE_PARAM */
#if defined __STDC__ || defined __cplusplus
int yyparse (void);
#else
int yyparse ();
#endif
#endif /* ! YYPARSE_PARAM */
/* The lookahead symbol. */
int yychar;
/* The semantic value of the lookahead symbol. */
YYSTYPE yylval;
/* Number of syntax errors so far. */
int yynerrs;
/*----------.
| yyparse. |
`----------*/
#ifdef YYPARSE_PARAM
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void *YYPARSE_PARAM)
#else
int
yyparse (YYPARSE_PARAM)
void *YYPARSE_PARAM;
#endif
#else /* ! YYPARSE_PARAM */
#if (defined __STDC__ || defined __C99__FUNC__ \
|| defined __cplusplus || defined _MSC_VER)
int
yyparse (void)
#else
int
yyparse ()
#endif
#endif
{
int yystate;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus;
/* The stacks and their tools:
`yyss': related to states.
`yyvs': related to semantic values.
Refer to the stacks thru separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* The state stack. */
yytype_int16 yyssa[YYINITDEPTH];
yytype_int16 *yyss;
yytype_int16 *yyssp;
/* The semantic value stack. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs;
YYSTYPE *yyvsp;
YYSIZE_T yystacksize;
int yyn;
int yyresult;
/* Lookahead token as an internal (translated) token number. */
int yytoken;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
#if YYERROR_VERBOSE
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
YYSIZE_T yymsg_alloc = sizeof yymsgbuf;
#endif
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
yytoken = 0;
yyss = yyssa;
yyvs = yyvsa;
yystacksize = YYINITDEPTH;
YYDPRINTF ((stderr, "Starting parse\n"));
yystate = 0;
yyerrstatus = 0;
yynerrs = 0;
yychar = YYEMPTY; /* Cause a token to be read. */
/* Initialize stack pointers.
Waste one element of value and location stack
so that they stay on the same level as the state stack.
The wasted elements are never initialized. */
yyssp = yyss;
yyvsp = yyvs;
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- Push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
yysetstate:
*yyssp = yystate;
if (yyss + yystacksize - 1 <= yyssp)
{
/* Get the current used size of the three stacks, in elements. */
YYSIZE_T yysize = yyssp - yyss + 1;
#ifdef yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
YYSTYPE *yyvs1 = yyvs;
yytype_int16 *yyss1 = yyss;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * sizeof (*yyssp),
&yyvs1, yysize * sizeof (*yyvsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
}
#else /* no yyoverflow */
# ifndef YYSTACK_RELOCATE
goto yyexhaustedlab;
# else
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
goto yyexhaustedlab;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
yytype_int16 *yyss1 = yyss;
union yyalloc *yyptr =
(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));
if (! yyptr)
goto yyexhaustedlab;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
#endif /* no yyoverflow */
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
YYDPRINTF ((stderr, "Stack size increased to %lu\n",
(unsigned long int) yystacksize));
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token: "));
yychar = YYLEX;
}
if (yychar <= YYEOF)
{
yychar = yytoken = YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
goto yydefault;
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
/* Discard the shifted token. */
yychar = YYEMPTY;
yystate = yyn;
*++yyvsp = yylval;
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- Do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
`$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
YY_REDUCE_PRINT (yyn);
switch (yyn)
{
case 2:
/* Line 1806 of yacc.c */
#line 288 "parser.yy"
{
typedefTable.enterScope();
}
break;
case 3:
/* Line 1806 of yacc.c */
#line 294 "parser.yy"
{
typedefTable.leaveScope();
}
break;
case 4:
/* Line 1806 of yacc.c */
#line 303 "parser.yy"
{ (yyval.constant) = new ConstantNode( ConstantNode::Integer, (yyvsp[(1) - (1)].tok) ); }
break;
case 5:
/* Line 1806 of yacc.c */
#line 304 "parser.yy"
{ (yyval.constant) = new ConstantNode( ConstantNode::Float, (yyvsp[(1) - (1)].tok) ); }
break;
case 6:
/* Line 1806 of yacc.c */
#line 305 "parser.yy"
{ (yyval.constant) = new ConstantNode( ConstantNode::Character, (yyvsp[(1) - (1)].tok) ); }
break;
case 15:
/* Line 1806 of yacc.c */
#line 329 "parser.yy"
{ (yyval.constant) = new ConstantNode( ConstantNode::String, (yyvsp[(1) - (1)].tok) ); }
break;
case 16:
/* Line 1806 of yacc.c */
#line 330 "parser.yy"
{ (yyval.constant) = (yyvsp[(1) - (2)].constant)->appendstr( (yyvsp[(2) - (2)].tok) ); }
break;
case 17:
/* Line 1806 of yacc.c */
#line 337 "parser.yy"
{ (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); }
break;
case 18:
/* Line 1806 of yacc.c */
#line 339 "parser.yy"
{ (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); }
break;
case 19:
/* Line 1806 of yacc.c */
#line 341 "parser.yy"
{ (yyval.en) = (yyvsp[(1) - (1)].constant); }
break;
case 20:
/* Line 1806 of yacc.c */
#line 343 "parser.yy"
{ (yyval.en) = (yyvsp[(1) - (1)].constant); }
break;
case 21:
/* Line 1806 of yacc.c */
#line 345 "parser.yy"
{ (yyval.en) = (yyvsp[(2) - (3)].en); }
break;
case 22:
/* Line 1806 of yacc.c */
#line 347 "parser.yy"
{ (yyval.en) = new ValofExprNode( (yyvsp[(2) - (3)].sn) ); }
break;
case 24:
/* Line 1806 of yacc.c */
#line 357 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Index ), (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en) ); }
break;
case 25:
/* Line 1806 of yacc.c */
#line 359 "parser.yy"
{ (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (4)].en), (yyvsp[(3) - (4)].en) ); }
break;
case 26:
/* Line 1806 of yacc.c */
#line 361 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); }
break;
case 28:
/* Line 1806 of yacc.c */
#line 364 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), (yyvsp[(1) - (3)].en), new VarRefNode( (yyvsp[(3) - (3)].tok) )); }
break;
case 30:
/* Line 1806 of yacc.c */
#line 367 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::IncrPost ), (yyvsp[(1) - (2)].en) ); }
break;
case 31:
/* Line 1806 of yacc.c */
#line 369 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::DecrPost ), (yyvsp[(1) - (2)].en) ); }
break;
case 32:
/* Line 1806 of yacc.c */
#line 372 "parser.yy"
{ (yyval.en) = 0; }
break;
case 34:
/* Line 1806 of yacc.c */
#line 378 "parser.yy"
{ (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); }
break;
case 35:
/* Line 1806 of yacc.c */
#line 383 "parser.yy"
{ (yyval.en) = 0; }
break;
case 37:
/* Line 1806 of yacc.c */
#line 386 "parser.yy"
{ (yyval.en) = (yyvsp[(3) - (3)].en)->set_argName( (yyvsp[(1) - (3)].tok) ); }
break;
case 38:
/* Line 1806 of yacc.c */
#line 391 "parser.yy"
{ (yyval.en) = (yyvsp[(7) - (7)].en)->set_argName( (yyvsp[(3) - (7)].en) ); }
break;
case 39:
/* Line 1806 of yacc.c */
#line 393 "parser.yy"
{ (yyval.en) = (yyvsp[(9) - (9)].en)->set_argName( new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (9)].en)->set_link( flattenCommas( (yyvsp[(5) - (9)].en) )))); }
break;
case 41:
/* Line 1806 of yacc.c */
#line 398 "parser.yy"
{ (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); }
break;
case 42:
/* Line 1806 of yacc.c */
#line 403 "parser.yy"
{ (yyval.en) = new VarRefNode( (yyvsp[(1) - (1)].tok) ); }
break;
case 43:
/* Line 1806 of yacc.c */
#line 405 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); }
break;
case 44:
/* Line 1806 of yacc.c */
#line 407 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::FieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); }
break;
case 45:
/* Line 1806 of yacc.c */
#line 409 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (3)].tok) ), (yyvsp[(3) - (3)].en) ); }
break;
case 46:
/* Line 1806 of yacc.c */
#line 411 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PFieldSel ), new VarRefNode( (yyvsp[(1) - (7)].tok) ), (yyvsp[(5) - (7)].en) ); }
break;
case 48:
/* Line 1806 of yacc.c */
#line 417 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Incr ), (yyvsp[(2) - (2)].en) ); }
break;
case 49:
/* Line 1806 of yacc.c */
#line 419 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Decr ), (yyvsp[(2) - (2)].en) ); }
break;
case 50:
/* Line 1806 of yacc.c */
#line 421 "parser.yy"
{ (yyval.en) = (yyvsp[(2) - (2)].en); }
break;
case 51:
/* Line 1806 of yacc.c */
#line 423 "parser.yy"
{ (yyval.en) = new CompositeExprNode( (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); }
break;
case 52:
/* Line 1806 of yacc.c */
#line 425 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neg ), (yyvsp[(2) - (2)].en) ); }
break;
case 53:
/* Line 1806 of yacc.c */
#line 427 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::PointTo ), (yyvsp[(2) - (2)].en) ); }
break;
case 54:
/* Line 1806 of yacc.c */
#line 433 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), (yyvsp[(2) - (2)].en) ); }
break;
case 55:
/* Line 1806 of yacc.c */
#line 435 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::SizeOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); }
break;
case 56:
/* Line 1806 of yacc.c */
#line 437 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (1)].tok) )); }
break;
case 57:
/* Line 1806 of yacc.c */
#line 439 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); }
break;
case 58:
/* Line 1806 of yacc.c */
#line 441 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Attr ), new VarRefNode( (yyvsp[(1) - (4)].tok) ), (yyvsp[(3) - (4)].en) ); }
break;
case 59:
/* Line 1806 of yacc.c */
#line 443 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), (yyvsp[(2) - (2)].en) ); }
break;
case 60:
/* Line 1806 of yacc.c */
#line 445 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::AlignOf ), new TypeValueNode( (yyvsp[(3) - (4)].decl) )); }
break;
case 61:
/* Line 1806 of yacc.c */
#line 447 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LabelAddress ), new VarRefNode( (yyvsp[(2) - (2)].tok), true )); }
break;
case 62:
/* Line 1806 of yacc.c */
#line 451 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::AddressOf ); }
break;
case 63:
/* Line 1806 of yacc.c */
#line 452 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::UnPlus ); }
break;
case 64:
/* Line 1806 of yacc.c */
#line 453 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::UnMinus ); }
break;
case 65:
/* Line 1806 of yacc.c */
#line 454 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::BitNeg ); }
break;
case 67:
/* Line 1806 of yacc.c */
#line 460 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); }
break;
case 68:
/* Line 1806 of yacc.c */
#line 462 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cast ), new TypeValueNode( (yyvsp[(2) - (4)].decl) ), (yyvsp[(4) - (4)].en) ); }
break;
case 70:
/* Line 1806 of yacc.c */
#line 468 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mul ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 71:
/* Line 1806 of yacc.c */
#line 470 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Div ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 72:
/* Line 1806 of yacc.c */
#line 472 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Mod ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 74:
/* Line 1806 of yacc.c */
#line 478 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Plus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 75:
/* Line 1806 of yacc.c */
#line 480 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Minus ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 77:
/* Line 1806 of yacc.c */
#line 486 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 78:
/* Line 1806 of yacc.c */
#line 488 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::RShift ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 80:
/* Line 1806 of yacc.c */
#line 494 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 81:
/* Line 1806 of yacc.c */
#line 496 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 82:
/* Line 1806 of yacc.c */
#line 498 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::LEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 83:
/* Line 1806 of yacc.c */
#line 500 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::GEThan ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 85:
/* Line 1806 of yacc.c */
#line 506 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Eq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 86:
/* Line 1806 of yacc.c */
#line 508 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Neq ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 88:
/* Line 1806 of yacc.c */
#line 514 "parser.yy"
{ (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::BitAnd ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 90:
/* Line 1806 of yacc.c */
#line 520 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Xor ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 92:
/* Line 1806 of yacc.c */
#line 526 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::BitOr ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 94:
/* Line 1806 of yacc.c */
#line 532 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::And ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 96:
/* Line 1806 of yacc.c */
#line 538 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Or ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 98:
/* Line 1806 of yacc.c */
#line 544 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); }
break;
case 99:
/* Line 1806 of yacc.c */
#line 546 "parser.yy"
{ (yyval.en)=new CompositeExprNode( new OperatorNode( OperatorNode::NCond ), (yyvsp[(1) - (4)].en), (yyvsp[(4) - (4)].en) ); }
break;
case 100:
/* Line 1806 of yacc.c */
#line 548 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Cond ), (ExpressionNode *)mkList( (*(yyvsp[(1) - (5)].en), *(yyvsp[(3) - (5)].en), *(yyvsp[(5) - (5)].en) ) ) ); }
break;
case 103:
/* Line 1806 of yacc.c */
#line 559 "parser.yy"
{ (yyval.en) =new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 104:
/* Line 1806 of yacc.c */
#line 561 "parser.yy"
{ (yyval.en) =new CompositeExprNode( (yyvsp[(2) - (3)].en), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 105:
/* Line 1806 of yacc.c */
#line 563 "parser.yy"
{ (yyval.en) = ( (yyvsp[(2) - (2)].en) == 0 ) ? (yyvsp[(1) - (2)].en) : new CompositeExprNode( new OperatorNode( OperatorNode::Assign ), (yyvsp[(1) - (2)].en), (yyvsp[(2) - (2)].en) ); }
break;
case 106:
/* Line 1806 of yacc.c */
#line 568 "parser.yy"
{ (yyval.en) = new NullExprNode; }
break;
case 108:
/* Line 1806 of yacc.c */
#line 576 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ) ); }
break;
case 109:
/* Line 1806 of yacc.c */
#line 578 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (yyvsp[(3) - (5)].en) ); }
break;
case 110:
/* Line 1806 of yacc.c */
#line 580 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(new NullExprNode)->set_link( (yyvsp[(4) - (6)].en) ) ); }
break;
case 111:
/* Line 1806 of yacc.c */
#line 582 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(yyvsp[(3) - (7)].en)->set_link( flattenCommas( (yyvsp[(5) - (7)].en) ) ) ); }
break;
case 113:
/* Line 1806 of yacc.c */
#line 588 "parser.yy"
{ (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); }
break;
case 114:
/* Line 1806 of yacc.c */
#line 592 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::MulAssn ); }
break;
case 115:
/* Line 1806 of yacc.c */
#line 593 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::DivAssn ); }
break;
case 116:
/* Line 1806 of yacc.c */
#line 594 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::ModAssn ); }
break;
case 117:
/* Line 1806 of yacc.c */
#line 595 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::PlusAssn ); }
break;
case 118:
/* Line 1806 of yacc.c */
#line 596 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::MinusAssn ); }
break;
case 119:
/* Line 1806 of yacc.c */
#line 597 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::LSAssn ); }
break;
case 120:
/* Line 1806 of yacc.c */
#line 598 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::RSAssn ); }
break;
case 121:
/* Line 1806 of yacc.c */
#line 599 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::AndAssn ); }
break;
case 122:
/* Line 1806 of yacc.c */
#line 600 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::ERAssn ); }
break;
case 123:
/* Line 1806 of yacc.c */
#line 601 "parser.yy"
{ (yyval.en) = new OperatorNode( OperatorNode::OrAssn ); }
break;
case 125:
/* Line 1806 of yacc.c */
#line 607 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Comma ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 126:
/* Line 1806 of yacc.c */
#line 612 "parser.yy"
{ (yyval.en) = 0; }
break;
case 130:
/* Line 1806 of yacc.c */
#line 621 "parser.yy"
{ (yyval.sn) = (yyvsp[(1) - (1)].sn); }
break;
case 136:
/* Line 1806 of yacc.c */
#line 631 "parser.yy"
{
(yyval.sn) = (yyvsp[(4) - (4)].sn)->add_label( (yyvsp[(1) - (4)].tok) );
}
break;
case 137:
/* Line 1806 of yacc.c */
#line 638 "parser.yy"
{ (yyval.sn) = new CompoundStmtNode( (StatementNode *)0 ); }
break;
case 138:
/* Line 1806 of yacc.c */
#line 645 "parser.yy"
{ (yyval.sn) = new CompoundStmtNode( (yyvsp[(5) - (7)].sn) ); }
break;
case 140:
/* Line 1806 of yacc.c */
#line 651 "parser.yy"
{ if ( (yyvsp[(1) - (3)].sn) != 0 ) { (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(3) - (3)].sn) ); (yyval.sn) = (yyvsp[(1) - (3)].sn); } }
break;
case 141:
/* Line 1806 of yacc.c */
#line 656 "parser.yy"
{ (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); }
break;
case 142:
/* Line 1806 of yacc.c */
#line 658 "parser.yy"
{ (yyval.sn) = new StatementNode( (yyvsp[(2) - (2)].decl) ); }
break;
case 143:
/* Line 1806 of yacc.c */
#line 660 "parser.yy"
{ (yyval.sn) = new StatementNode( (yyvsp[(1) - (1)].decl) ); }
break;
case 146:
/* Line 1806 of yacc.c */
#line 667 "parser.yy"
{ if ( (yyvsp[(1) - (2)].sn) != 0 ) { (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) ); (yyval.sn) = (yyvsp[(1) - (2)].sn); } }
break;
case 147:
/* Line 1806 of yacc.c */
#line 672 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Exp, (yyvsp[(1) - (2)].en), 0 ); }
break;
case 148:
/* Line 1806 of yacc.c */
#line 678 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); }
break;
case 149:
/* Line 1806 of yacc.c */
#line 680 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::If, (yyvsp[(3) - (7)].en), (StatementNode *)mkList((*(yyvsp[(5) - (7)].sn), *(yyvsp[(7) - (7)].sn) )) ); }
break;
case 150:
/* Line 1806 of yacc.c */
#line 682 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); }
break;
case 151:
/* Line 1806 of yacc.c */
#line 684 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Switch, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); /* xxx */ }
break;
case 152:
/* Line 1806 of yacc.c */
#line 689 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); }
break;
case 153:
/* Line 1806 of yacc.c */
#line 691 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Choose, (yyvsp[(3) - (9)].en), (yyvsp[(8) - (9)].sn) ); }
break;
case 154:
/* Line 1806 of yacc.c */
#line 698 "parser.yy"
{ (yyval.en) = (yyvsp[(1) - (1)].en); }
break;
case 155:
/* Line 1806 of yacc.c */
#line 700 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 158:
/* Line 1806 of yacc.c */
#line 707 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::TupleC ), (ExpressionNode *)(tupleContents( (yyvsp[(1) - (3)].en) ))->set_link( (yyvsp[(3) - (3)].en) ) ); }
break;
case 159:
/* Line 1806 of yacc.c */
#line 711 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Case, (yyvsp[(2) - (3)].en), 0 ); }
break;
case 160:
/* Line 1806 of yacc.c */
#line 712 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Default ); }
break;
case 162:
/* Line 1806 of yacc.c */
#line 718 "parser.yy"
{ (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (2)].sn)->set_link( (yyvsp[(2) - (2)].sn) )); }
break;
case 163:
/* Line 1806 of yacc.c */
#line 722 "parser.yy"
{ (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); }
break;
case 164:
/* Line 1806 of yacc.c */
#line 727 "parser.yy"
{ (yyval.sn) = 0; }
break;
case 166:
/* Line 1806 of yacc.c */
#line 733 "parser.yy"
{ (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); }
break;
case 167:
/* Line 1806 of yacc.c */
#line 735 "parser.yy"
{ (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); }
break;
case 168:
/* Line 1806 of yacc.c */
#line 740 "parser.yy"
{ (yyval.sn) = 0; }
break;
case 170:
/* Line 1806 of yacc.c */
#line 746 "parser.yy"
{ (yyval.sn) = (yyvsp[(1) - (2)].sn)->append_last_case( (yyvsp[(2) - (2)].sn) ); }
break;
case 171:
/* Line 1806 of yacc.c */
#line 748 "parser.yy"
{ (yyval.sn) = (yyvsp[(1) - (3)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].sn) ))); }
break;
case 172:
/* Line 1806 of yacc.c */
#line 750 "parser.yy"
{ (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (3)].sn)->set_link( (yyvsp[(2) - (3)].sn)->append_last_case( (yyvsp[(3) - (3)].sn) ))); }
break;
case 173:
/* Line 1806 of yacc.c */
#line 752 "parser.yy"
{ (yyval.sn) = (StatementNode *)( (yyvsp[(1) - (4)].sn)->set_link( (yyvsp[(2) - (4)].sn)->append_last_case((StatementNode *)mkList((*(yyvsp[(3) - (4)].sn),*(yyvsp[(4) - (4)].sn) ))))); }
break;
case 174:
/* Line 1806 of yacc.c */
#line 757 "parser.yy"
{ (yyval.sn) = 0; }
break;
case 176:
/* Line 1806 of yacc.c */
#line 762 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Fallthru ); }
break;
case 177:
/* Line 1806 of yacc.c */
#line 763 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Fallthru ); }
break;
case 178:
/* Line 1806 of yacc.c */
#line 768 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::While, (yyvsp[(3) - (5)].en), (yyvsp[(5) - (5)].sn) ); }
break;
case 179:
/* Line 1806 of yacc.c */
#line 770 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Do, (yyvsp[(5) - (7)].en), (yyvsp[(2) - (7)].sn) ); }
break;
case 180:
/* Line 1806 of yacc.c */
#line 772 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::For, (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].sn) ); }
break;
case 181:
/* Line 1806 of yacc.c */
#line 777 "parser.yy"
{ (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (6)].en), (yyvsp[(4) - (6)].en), (yyvsp[(6) - (6)].en) ); }
break;
case 182:
/* Line 1806 of yacc.c */
#line 779 "parser.yy"
{ (yyval.en) = new ForCtlExprNode( (yyvsp[(1) - (4)].decl), (yyvsp[(2) - (4)].en), (yyvsp[(4) - (4)].en) ); }
break;
case 183:
/* Line 1806 of yacc.c */
#line 784 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(2) - (3)].tok) ); }
break;
case 184:
/* Line 1806 of yacc.c */
#line 788 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Goto, (yyvsp[(3) - (4)].en) ); }
break;
case 185:
/* Line 1806 of yacc.c */
#line 791 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Continue ); }
break;
case 186:
/* Line 1806 of yacc.c */
#line 795 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Continue, (yyvsp[(2) - (3)].tok) ); }
break;
case 187:
/* Line 1806 of yacc.c */
#line 798 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Break ); }
break;
case 188:
/* Line 1806 of yacc.c */
#line 802 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Break, (yyvsp[(2) - (3)].tok) ); }
break;
case 189:
/* Line 1806 of yacc.c */
#line 804 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Return, (yyvsp[(2) - (3)].en), 0 ); }
break;
case 190:
/* Line 1806 of yacc.c */
#line 806 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Throw, (yyvsp[(2) - (3)].en), 0 ); }
break;
case 191:
/* Line 1806 of yacc.c */
#line 808 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Throw ); }
break;
case 192:
/* Line 1806 of yacc.c */
#line 813 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); }
break;
case 193:
/* Line 1806 of yacc.c */
#line 815 "parser.yy"
{ (yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (3)].sn),*(yyvsp[(3) - (3)].pn) )))); }
break;
case 194:
/* Line 1806 of yacc.c */
#line 817 "parser.yy"
{
(yyvsp[(3) - (4)].pn)->set_link( (yyvsp[(4) - (4)].pn) );
(yyval.sn) = new StatementNode( StatementNode::Try, 0,(StatementNode *)(mkList((*(yyvsp[(2) - (4)].sn),*(yyvsp[(3) - (4)].pn) ))));
}
break;
case 196:
/* Line 1806 of yacc.c */
#line 828 "parser.yy"
{ (yyval.pn) = StatementNode::newCatchStmt( 0, (yyvsp[(5) - (5)].sn), true ); }
break;
case 197:
/* Line 1806 of yacc.c */
#line 830 "parser.yy"
{ (yyval.pn) = (yyvsp[(1) - (6)].pn)->set_link( StatementNode::newCatchStmt( 0, (yyvsp[(6) - (6)].sn), true ) ); }
break;
case 198:
/* Line 1806 of yacc.c */
#line 835 "parser.yy"
{ (yyval.pn) = StatementNode::newCatchStmt( (yyvsp[(5) - (9)].decl), (yyvsp[(8) - (9)].sn) ); }
break;
case 199:
/* Line 1806 of yacc.c */
#line 837 "parser.yy"
{ (yyval.pn) = (yyvsp[(1) - (10)].pn)->set_link( StatementNode::newCatchStmt( (yyvsp[(6) - (10)].decl), (yyvsp[(9) - (10)].sn) ) ); }
break;
case 200:
/* Line 1806 of yacc.c */
#line 842 "parser.yy"
{
(yyval.pn) = new StatementNode( StatementNode::Finally, 0, (yyvsp[(2) - (2)].sn) );
std::cout << "Just created a finally node" << std::endl;
}
break;
case 202:
/* Line 1806 of yacc.c */
#line 856 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) );
}
break;
case 203:
/* Line 1806 of yacc.c */
#line 861 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
break;
case 204:
/* Line 1806 of yacc.c */
#line 863 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) );
}
break;
case 206:
/* Line 1806 of yacc.c */
#line 872 "parser.yy"
{ (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (6)].flag), (yyvsp[(4) - (6)].constant), 0 ); }
break;
case 207:
/* Line 1806 of yacc.c */
#line 874 "parser.yy"
{ (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (8)].flag), (yyvsp[(4) - (8)].constant), (yyvsp[(6) - (8)].en) ); }
break;
case 208:
/* Line 1806 of yacc.c */
#line 876 "parser.yy"
{ (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (10)].flag), (yyvsp[(4) - (10)].constant), (yyvsp[(6) - (10)].en), (yyvsp[(8) - (10)].en) ); }
break;
case 209:
/* Line 1806 of yacc.c */
#line 878 "parser.yy"
{ (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (12)].flag), (yyvsp[(4) - (12)].constant), (yyvsp[(6) - (12)].en), (yyvsp[(8) - (12)].en), (yyvsp[(10) - (12)].constant) ); }
break;
case 210:
/* Line 1806 of yacc.c */
#line 880 "parser.yy"
{ (yyval.sn) = new AsmStmtNode( StatementNode::Asm, (yyvsp[(2) - (14)].flag), (yyvsp[(5) - (14)].constant), 0, (yyvsp[(8) - (14)].en), (yyvsp[(10) - (14)].constant), (yyvsp[(12) - (14)].label) ); }
break;
case 211:
/* Line 1806 of yacc.c */
#line 885 "parser.yy"
{ (yyval.flag) = false; }
break;
case 212:
/* Line 1806 of yacc.c */
#line 887 "parser.yy"
{ (yyval.flag) = true; }
break;
case 213:
/* Line 1806 of yacc.c */
#line 892 "parser.yy"
{ (yyval.en) = 0; }
break;
case 216:
/* Line 1806 of yacc.c */
#line 899 "parser.yy"
{ (yyval.en) = (ExpressionNode *)(yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) ); }
break;
case 217:
/* Line 1806 of yacc.c */
#line 904 "parser.yy"
{ (yyval.en) = new AsmExprNode( 0, (yyvsp[(1) - (4)].constant), (yyvsp[(3) - (4)].en) ); }
break;
case 218:
/* Line 1806 of yacc.c */
#line 906 "parser.yy"
{ (yyval.en) = new AsmExprNode( (yyvsp[(2) - (7)].en), (yyvsp[(4) - (7)].constant), (yyvsp[(6) - (7)].en) ); }
break;
case 219:
/* Line 1806 of yacc.c */
#line 911 "parser.yy"
{ (yyval.constant) = 0; }
break;
case 220:
/* Line 1806 of yacc.c */
#line 913 "parser.yy"
{ (yyval.constant) = (yyvsp[(1) - (1)].constant); }
break;
case 221:
/* Line 1806 of yacc.c */
#line 915 "parser.yy"
{ (yyval.constant) = (ConstantNode *)(yyvsp[(1) - (3)].constant)->set_link( (yyvsp[(3) - (3)].constant) ); }
break;
case 222:
/* Line 1806 of yacc.c */
#line 920 "parser.yy"
{ (yyval.label) = new LabelNode(); (yyval.label)->append_label( (yyvsp[(1) - (1)].tok) ); }
break;
case 223:
/* Line 1806 of yacc.c */
#line 922 "parser.yy"
{ (yyval.label) = (yyvsp[(1) - (3)].label); (yyvsp[(1) - (3)].label)->append_label( (yyvsp[(3) - (3)].tok) ); }
break;
case 224:
/* Line 1806 of yacc.c */
#line 929 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 227:
/* Line 1806 of yacc.c */
#line 936 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); }
break;
case 228:
/* Line 1806 of yacc.c */
#line 941 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 231:
/* Line 1806 of yacc.c */
#line 948 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); }
break;
case 236:
/* Line 1806 of yacc.c */
#line 962 "parser.yy"
{}
break;
case 237:
/* Line 1806 of yacc.c */
#line 963 "parser.yy"
{}
break;
case 245:
/* Line 1806 of yacc.c */
#line 992 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (2)].decl);
}
break;
case 246:
/* Line 1806 of yacc.c */
#line 999 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) );
}
break;
case 247:
/* Line 1806 of yacc.c */
#line 1004 "parser.yy"
{
typedefTable.addToEnclosingScope( *(yyvsp[(5) - (6)].tok), TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneType( (yyvsp[(5) - (6)].tok) ) );
}
break;
case 248:
/* Line 1806 of yacc.c */
#line 1014 "parser.yy"
{
typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) );
(yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) );
}
break;
case 249:
/* Line 1806 of yacc.c */
#line 1019 "parser.yy"
{
typedefTable.setNextIdentifier( *(yyvsp[(2) - (3)].tok) );
(yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) );
}
break;
case 250:
/* Line 1806 of yacc.c */
#line 1024 "parser.yy"
{
typedefTable.setNextIdentifier( *(yyvsp[(3) - (4)].tok) );
(yyval.decl) = (yyvsp[(2) - (4)].decl)->addQualifiers( (yyvsp[(1) - (4)].decl) )->addName( (yyvsp[(3) - (4)].tok) );
}
break;
case 251:
/* Line 1806 of yacc.c */
#line 1032 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (1)].decl);
}
break;
case 252:
/* Line 1806 of yacc.c */
#line 1037 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) );
}
break;
case 253:
/* Line 1806 of yacc.c */
#line 1042 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) );
}
break;
case 254:
/* Line 1806 of yacc.c */
#line 1047 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(2) - (3)].decl) );
}
break;
case 255:
/* Line 1806 of yacc.c */
#line 1052 "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 256:
/* Line 1806 of yacc.c */
#line 1060 "parser.yy"
{
(yyval.decl) = DeclarationNode::newFunction( (yyvsp[(3) - (8)].tok), DeclarationNode::newTuple( 0 ), (yyvsp[(6) - (8)].decl), 0, true );
}
break;
case 257:
/* Line 1806 of yacc.c */
#line 1083 "parser.yy"
{
(yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true );
}
break;
case 258:
/* Line 1806 of yacc.c */
#line 1087 "parser.yy"
{
(yyval.decl) = DeclarationNode::newFunction( (yyvsp[(2) - (7)].tok), (yyvsp[(1) - (7)].decl), (yyvsp[(5) - (7)].decl), 0, true );
}
break;
case 259:
/* Line 1806 of yacc.c */
#line 1094 "parser.yy"
{ (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); }
break;
case 260:
/* Line 1806 of yacc.c */
#line 1098 "parser.yy"
{ (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (9)].decl)->appendList( (yyvsp[(7) - (9)].decl) ) ); }
break;
case 261:
/* Line 1806 of yacc.c */
#line 1103 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::TD );
(yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef();
}
break;
case 262:
/* Line 1806 of yacc.c */
#line 1108 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::TD );
(yyval.decl) = (yyvsp[(2) - (2)].decl)->addTypedef();
}
break;
case 263:
/* Line 1806 of yacc.c */
#line 1113 "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 264:
/* Line 1806 of yacc.c */
#line 1124 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::TD );
(yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(2) - (3)].decl) )->addTypedef();
}
break;
case 265:
/* Line 1806 of yacc.c */
#line 1129 "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 266:
/* Line 1806 of yacc.c */
#line 1134 "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 267:
/* Line 1806 of yacc.c */
#line 1139 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::TD );
(yyval.decl) = (yyvsp[(3) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addTypedef();
}
break;
case 268:
/* Line 1806 of yacc.c */
#line 1144 "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 269:
/* Line 1806 of yacc.c */
#line 1153 "parser.yy"
{
typedefTable.addToEnclosingScope( *(yyvsp[(2) - (4)].tok), TypedefTable::TD );
(yyval.decl) = DeclarationNode::newName( 0 ); // XXX
}
break;
case 270:
/* Line 1806 of yacc.c */
#line 1158 "parser.yy"
{
typedefTable.addToEnclosingScope( *(yyvsp[(5) - (7)].tok), TypedefTable::TD );
(yyval.decl) = DeclarationNode::newName( 0 ); // XXX
}
break;
case 275:
/* Line 1806 of yacc.c */
#line 1175 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = ( (yyvsp[(2) - (4)].decl)->addType( (yyvsp[(1) - (4)].decl) ))->addInitializer( (yyvsp[(4) - (4)].in) );
}
break;
case 276:
/* Line 1806 of yacc.c */
#line 1180 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (6)].decl)->appendList( (yyvsp[(1) - (6)].decl)->cloneBaseType( (yyvsp[(4) - (6)].decl)->addInitializer( (yyvsp[(6) - (6)].in) ) ) );
}
break;
case 285:
/* Line 1806 of yacc.c */
#line 1202 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 288:
/* Line 1806 of yacc.c */
#line 1214 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 291:
/* Line 1806 of yacc.c */
#line 1225 "parser.yy"
{ (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Const ); }
break;
case 292:
/* Line 1806 of yacc.c */
#line 1227 "parser.yy"
{ (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Restrict ); }
break;
case 293:
/* Line 1806 of yacc.c */
#line 1229 "parser.yy"
{ (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Volatile ); }
break;
case 294:
/* Line 1806 of yacc.c */
#line 1231 "parser.yy"
{ (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Lvalue ); }
break;
case 295:
/* Line 1806 of yacc.c */
#line 1233 "parser.yy"
{ (yyval.decl) = DeclarationNode::newQualifier( DeclarationNode::Atomic ); }
break;
case 296:
/* Line 1806 of yacc.c */
#line 1235 "parser.yy"
{
typedefTable.enterScope();
}
break;
case 297:
/* Line 1806 of yacc.c */
#line 1239 "parser.yy"
{
typedefTable.leaveScope();
(yyval.decl) = DeclarationNode::newForall( (yyvsp[(4) - (5)].decl) );
}
break;
case 299:
/* Line 1806 of yacc.c */
#line 1248 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 300:
/* Line 1806 of yacc.c */
#line 1250 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
break;
case 302:
/* Line 1806 of yacc.c */
#line 1261 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 304:
/* Line 1806 of yacc.c */
#line 1270 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Extern ); }
break;
case 305:
/* Line 1806 of yacc.c */
#line 1272 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Static ); }
break;
case 306:
/* Line 1806 of yacc.c */
#line 1274 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Auto ); }
break;
case 307:
/* Line 1806 of yacc.c */
#line 1276 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Register ); }
break;
case 308:
/* Line 1806 of yacc.c */
#line 1278 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Inline ); }
break;
case 309:
/* Line 1806 of yacc.c */
#line 1280 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Fortran ); }
break;
case 310:
/* Line 1806 of yacc.c */
#line 1282 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Noreturn ); }
break;
case 311:
/* Line 1806 of yacc.c */
#line 1284 "parser.yy"
{ (yyval.decl) = DeclarationNode::newStorageClass( DeclarationNode::Threadlocal ); }
break;
case 312:
/* Line 1806 of yacc.c */
#line 1289 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Char ); }
break;
case 313:
/* Line 1806 of yacc.c */
#line 1291 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Double ); }
break;
case 314:
/* Line 1806 of yacc.c */
#line 1293 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Float ); }
break;
case 315:
/* Line 1806 of yacc.c */
#line 1295 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Int ); }
break;
case 316:
/* Line 1806 of yacc.c */
#line 1297 "parser.yy"
{ (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Long ); }
break;
case 317:
/* Line 1806 of yacc.c */
#line 1299 "parser.yy"
{ (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Short ); }
break;
case 318:
/* Line 1806 of yacc.c */
#line 1301 "parser.yy"
{ (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Signed ); }
break;
case 319:
/* Line 1806 of yacc.c */
#line 1303 "parser.yy"
{ (yyval.decl) = DeclarationNode::newModifier( DeclarationNode::Unsigned ); }
break;
case 320:
/* Line 1806 of yacc.c */
#line 1305 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Void ); }
break;
case 321:
/* Line 1806 of yacc.c */
#line 1307 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Bool ); }
break;
case 322:
/* Line 1806 of yacc.c */
#line 1309 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Complex ); }
break;
case 323:
/* Line 1806 of yacc.c */
#line 1311 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBasicType( DeclarationNode::Imaginary ); }
break;
case 325:
/* Line 1806 of yacc.c */
#line 1318 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 326:
/* Line 1806 of yacc.c */
#line 1320 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 327:
/* Line 1806 of yacc.c */
#line 1322 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
break;
case 328:
/* Line 1806 of yacc.c */
#line 1324 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addType( (yyvsp[(1) - (3)].decl) ); }
break;
case 330:
/* Line 1806 of yacc.c */
#line 1330 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
break;
case 332:
/* Line 1806 of yacc.c */
#line 1337 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 333:
/* Line 1806 of yacc.c */
#line 1339 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 334:
/* Line 1806 of yacc.c */
#line 1341 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addType( (yyvsp[(2) - (2)].decl) ); }
break;
case 335:
/* Line 1806 of yacc.c */
#line 1346 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (4)].decl); }
break;
case 336:
/* Line 1806 of yacc.c */
#line 1348 "parser.yy"
{ (yyval.decl) = DeclarationNode::newTypeof( (yyvsp[(3) - (4)].en) ); }
break;
case 337:
/* Line 1806 of yacc.c */
#line 1350 "parser.yy"
{ (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].decl) ); }
break;
case 338:
/* Line 1806 of yacc.c */
#line 1352 "parser.yy"
{ (yyval.decl) = DeclarationNode::newAttr( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); }
break;
case 340:
/* Line 1806 of yacc.c */
#line 1358 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 341:
/* Line 1806 of yacc.c */
#line 1360 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 342:
/* Line 1806 of yacc.c */
#line 1362 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
break;
case 344:
/* Line 1806 of yacc.c */
#line 1368 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 345:
/* Line 1806 of yacc.c */
#line 1370 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 347:
/* Line 1806 of yacc.c */
#line 1376 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 348:
/* Line 1806 of yacc.c */
#line 1378 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 349:
/* Line 1806 of yacc.c */
#line 1380 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
break;
case 350:
/* Line 1806 of yacc.c */
#line 1385 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(1) - (1)].tok) ); }
break;
case 351:
/* Line 1806 of yacc.c */
#line 1387 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFromTypedef( (yyvsp[(2) - (2)].tok) )->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 352:
/* Line 1806 of yacc.c */
#line 1389 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 355:
/* Line 1806 of yacc.c */
#line 1399 "parser.yy"
{ (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (4)].aggKey), 0, 0, (yyvsp[(3) - (4)].decl) ); }
break;
case 356:
/* Line 1806 of yacc.c */
#line 1401 "parser.yy"
{ (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (2)].aggKey), (yyvsp[(2) - (2)].tok), 0, 0 ); }
break;
case 357:
/* Line 1806 of yacc.c */
#line 1403 "parser.yy"
{ (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (5)].aggKey), (yyvsp[(2) - (5)].tok), 0, (yyvsp[(4) - (5)].decl) ); }
break;
case 358:
/* Line 1806 of yacc.c */
#line 1405 "parser.yy"
{ (yyval.decl) = DeclarationNode::newAggregate( (yyvsp[(1) - (7)].aggKey), 0, (yyvsp[(3) - (7)].en), (yyvsp[(6) - (7)].decl) ); }
break;
case 359:
/* Line 1806 of yacc.c */
#line 1407 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl); }
break;
case 360:
/* Line 1806 of yacc.c */
#line 1412 "parser.yy"
{ (yyval.aggKey) = DeclarationNode::Struct; }
break;
case 361:
/* Line 1806 of yacc.c */
#line 1414 "parser.yy"
{ (yyval.aggKey) = DeclarationNode::Union; }
break;
case 362:
/* Line 1806 of yacc.c */
#line 1419 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (1)].decl); }
break;
case 363:
/* Line 1806 of yacc.c */
#line 1421 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); }
break;
case 365:
/* Line 1806 of yacc.c */
#line 1427 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 367:
/* Line 1806 of yacc.c */
#line 1430 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 369:
/* Line 1806 of yacc.c */
#line 1436 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addName( (yyvsp[(2) - (2)].tok) ); }
break;
case 370:
/* Line 1806 of yacc.c */
#line 1438 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(1) - (3)].decl)->cloneType( (yyvsp[(3) - (3)].tok) ) ); }
break;
case 371:
/* Line 1806 of yacc.c */
#line 1440 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(1) - (2)].decl)->cloneType( 0 ) ); }
break;
case 372:
/* Line 1806 of yacc.c */
#line 1445 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
break;
case 373:
/* Line 1806 of yacc.c */
#line 1447 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(1) - (4)].decl)->cloneBaseType( (yyvsp[(4) - (4)].decl) ) ); }
break;
case 374:
/* Line 1806 of yacc.c */
#line 1452 "parser.yy"
{ (yyval.decl) = DeclarationNode::newName( 0 ); /* XXX */ }
break;
case 375:
/* Line 1806 of yacc.c */
#line 1454 "parser.yy"
{ (yyval.decl) = DeclarationNode::newBitfield( (yyvsp[(1) - (1)].en) ); }
break;
case 376:
/* Line 1806 of yacc.c */
#line 1457 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); }
break;
case 377:
/* Line 1806 of yacc.c */
#line 1460 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addBitfield( (yyvsp[(2) - (2)].en) ); }
break;
case 379:
/* Line 1806 of yacc.c */
#line 1466 "parser.yy"
{ (yyval.en) = 0; }
break;
case 380:
/* Line 1806 of yacc.c */
#line 1468 "parser.yy"
{ (yyval.en) = (yyvsp[(1) - (1)].en); }
break;
case 381:
/* Line 1806 of yacc.c */
#line 1473 "parser.yy"
{ (yyval.en) = (yyvsp[(2) - (2)].en); }
break;
case 383:
/* Line 1806 of yacc.c */
#line 1482 "parser.yy"
{ (yyval.decl) = DeclarationNode::newEnum( 0, (yyvsp[(3) - (5)].decl) ); }
break;
case 384:
/* Line 1806 of yacc.c */
#line 1484 "parser.yy"
{ (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (6)].tok), (yyvsp[(4) - (6)].decl) ); }
break;
case 385:
/* Line 1806 of yacc.c */
#line 1486 "parser.yy"
{ (yyval.decl) = DeclarationNode::newEnum( (yyvsp[(2) - (2)].tok), 0 ); }
break;
case 386:
/* Line 1806 of yacc.c */
#line 1491 "parser.yy"
{ (yyval.decl) = DeclarationNode::newEnumConstant( (yyvsp[(1) - (2)].tok), (yyvsp[(2) - (2)].en) ); }
break;
case 387:
/* Line 1806 of yacc.c */
#line 1493 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( DeclarationNode::newEnumConstant( (yyvsp[(3) - (4)].tok), (yyvsp[(4) - (4)].en) ) ); }
break;
case 388:
/* Line 1806 of yacc.c */
#line 1498 "parser.yy"
{ (yyval.en) = 0; }
break;
case 389:
/* Line 1806 of yacc.c */
#line 1500 "parser.yy"
{ (yyval.en) = (yyvsp[(2) - (2)].en); }
break;
case 390:
/* Line 1806 of yacc.c */
#line 1507 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 394:
/* Line 1806 of yacc.c */
#line 1515 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
break;
case 395:
/* Line 1806 of yacc.c */
#line 1517 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); }
break;
case 396:
/* Line 1806 of yacc.c */
#line 1519 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); }
break;
case 398:
/* Line 1806 of yacc.c */
#line 1527 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
break;
case 399:
/* Line 1806 of yacc.c */
#line 1529 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
break;
case 400:
/* Line 1806 of yacc.c */
#line 1531 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (9)].decl)->appendList( (yyvsp[(5) - (9)].decl) )->appendList( (yyvsp[(9) - (9)].decl) ); }
break;
case 402:
/* Line 1806 of yacc.c */
#line 1537 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
break;
case 403:
/* Line 1806 of yacc.c */
#line 1542 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 406:
/* Line 1806 of yacc.c */
#line 1549 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->addVarArgs(); }
break;
case 409:
/* Line 1806 of yacc.c */
#line 1556 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
break;
case 410:
/* Line 1806 of yacc.c */
#line 1558 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(5) - (5)].decl) ); }
break;
case 412:
/* Line 1806 of yacc.c */
#line 1567 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); }
break;
case 413:
/* Line 1806 of yacc.c */
#line 1570 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->addName( (yyvsp[(2) - (3)].tok) ); }
break;
case 414:
/* Line 1806 of yacc.c */
#line 1572 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addName( (yyvsp[(3) - (4)].tok) )->addQualifiers( (yyvsp[(1) - (4)].decl) ); }
break;
case 419:
/* Line 1806 of yacc.c */
#line 1582 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 421:
/* Line 1806 of yacc.c */
#line 1588 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) );
}
break;
case 422:
/* Line 1806 of yacc.c */
#line 1593 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
(yyval.decl) = (yyvsp[(2) - (3)].decl)->addType( (yyvsp[(1) - (3)].decl) )->addInitializer( new InitializerNode( (yyvsp[(3) - (3)].en) ) );
}
break;
case 424:
/* Line 1806 of yacc.c */
#line 1602 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
break;
case 425:
/* Line 1806 of yacc.c */
#line 1611 "parser.yy"
{ (yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) ); }
break;
case 426:
/* Line 1806 of yacc.c */
#line 1613 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( DeclarationNode::newName( (yyvsp[(3) - (3)].tok) ) ); }
break;
case 438:
/* Line 1806 of yacc.c */
#line 1638 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
break;
case 442:
/* Line 1806 of yacc.c */
#line 1646 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) ); }
break;
case 443:
/* Line 1806 of yacc.c */
#line 1651 "parser.yy"
{ (yyval.in) = 0; }
break;
case 444:
/* Line 1806 of yacc.c */
#line 1653 "parser.yy"
{ (yyval.in) = (yyvsp[(2) - (2)].in); }
break;
case 445:
/* Line 1806 of yacc.c */
#line 1657 "parser.yy"
{ (yyval.in) = new InitializerNode( (yyvsp[(1) - (1)].en) ); }
break;
case 446:
/* Line 1806 of yacc.c */
#line 1658 "parser.yy"
{ (yyval.in) = new InitializerNode( (yyvsp[(2) - (4)].in), true ); }
break;
case 448:
/* Line 1806 of yacc.c */
#line 1663 "parser.yy"
{ (yyval.in) = (yyvsp[(2) - (2)].in)->set_designators( (yyvsp[(1) - (2)].en) ); }
break;
case 449:
/* Line 1806 of yacc.c */
#line 1664 "parser.yy"
{ (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (3)].in)->set_link( (yyvsp[(3) - (3)].in) ) ); }
break;
case 450:
/* Line 1806 of yacc.c */
#line 1666 "parser.yy"
{ (yyval.in) = (InitializerNode *)( (yyvsp[(1) - (4)].in)->set_link( (yyvsp[(4) - (4)].in)->set_designators( (yyvsp[(3) - (4)].en) ) ) ); }
break;
case 452:
/* Line 1806 of yacc.c */
#line 1682 "parser.yy"
{ (yyval.en) = new VarRefNode( (yyvsp[(1) - (2)].tok) ); }
break;
case 454:
/* Line 1806 of yacc.c */
#line 1688 "parser.yy"
{ (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (2)].en)->set_link( (yyvsp[(2) - (2)].en) )); }
break;
case 455:
/* Line 1806 of yacc.c */
#line 1694 "parser.yy"
{ (yyval.en) = new VarRefNode( (yyvsp[(2) - (2)].tok) ); }
break;
case 456:
/* Line 1806 of yacc.c */
#line 1697 "parser.yy"
{ (yyval.en) = (yyvsp[(3) - (5)].en); }
break;
case 457:
/* Line 1806 of yacc.c */
#line 1699 "parser.yy"
{ (yyval.en) = (yyvsp[(3) - (5)].en); }
break;
case 458:
/* Line 1806 of yacc.c */
#line 1701 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(3) - (7)].en), (yyvsp[(5) - (7)].en) ); }
break;
case 459:
/* Line 1806 of yacc.c */
#line 1703 "parser.yy"
{ (yyval.en) = (yyvsp[(4) - (6)].en); }
break;
case 461:
/* Line 1806 of yacc.c */
#line 1727 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 462:
/* Line 1806 of yacc.c */
#line 1729 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 463:
/* Line 1806 of yacc.c */
#line 1731 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->addQualifiers( (yyvsp[(2) - (3)].decl) )->addQualifiers( (yyvsp[(3) - (3)].decl) ); }
break;
case 465:
/* Line 1806 of yacc.c */
#line 1737 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 466:
/* Line 1806 of yacc.c */
#line 1739 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 467:
/* Line 1806 of yacc.c */
#line 1744 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFromTypeGen( (yyvsp[(1) - (4)].tok), (yyvsp[(3) - (4)].en) ); }
break;
case 469:
/* Line 1806 of yacc.c */
#line 1750 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (4)].decl)->appendList( (yyvsp[(3) - (4)].decl) ); }
break;
case 470:
/* Line 1806 of yacc.c */
#line 1755 "parser.yy"
{ typedefTable.addToEnclosingScope( *(yyvsp[(2) - (2)].tok), TypedefTable::TD ); }
break;
case 471:
/* Line 1806 of yacc.c */
#line 1757 "parser.yy"
{ (yyval.decl) = DeclarationNode::newTypeParam( (yyvsp[(1) - (4)].tclass), (yyvsp[(2) - (4)].tok) )->addAssertions( (yyvsp[(4) - (4)].decl) ); }
break;
case 473:
/* Line 1806 of yacc.c */
#line 1763 "parser.yy"
{ (yyval.tclass) = DeclarationNode::Type; }
break;
case 474:
/* Line 1806 of yacc.c */
#line 1765 "parser.yy"
{ (yyval.tclass) = DeclarationNode::Ftype; }
break;
case 475:
/* Line 1806 of yacc.c */
#line 1767 "parser.yy"
{ (yyval.tclass) = DeclarationNode::Dtype; }
break;
case 476:
/* Line 1806 of yacc.c */
#line 1772 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 477:
/* Line 1806 of yacc.c */
#line 1774 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl) == 0 ? (yyvsp[(2) - (2)].decl) : (yyvsp[(1) - (2)].decl)->appendList( (yyvsp[(2) - (2)].decl) ); }
break;
case 478:
/* Line 1806 of yacc.c */
#line 1779 "parser.yy"
{
typedefTable.openContext( *(yyvsp[(2) - (5)].tok) );
(yyval.decl) = DeclarationNode::newContextUse( (yyvsp[(2) - (5)].tok), (yyvsp[(4) - (5)].en) );
}
break;
case 479:
/* Line 1806 of yacc.c */
#line 1784 "parser.yy"
{ (yyval.decl) = (yyvsp[(4) - (5)].decl); }
break;
case 480:
/* Line 1806 of yacc.c */
#line 1786 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 481:
/* Line 1806 of yacc.c */
#line 1791 "parser.yy"
{ (yyval.en) = new TypeValueNode( (yyvsp[(1) - (1)].decl) ); }
break;
case 483:
/* Line 1806 of yacc.c */
#line 1794 "parser.yy"
{ (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( new TypeValueNode( (yyvsp[(3) - (3)].decl) ))); }
break;
case 484:
/* Line 1806 of yacc.c */
#line 1796 "parser.yy"
{ (yyval.en) = (ExpressionNode *)( (yyvsp[(1) - (3)].en)->set_link( (yyvsp[(3) - (3)].en) )); }
break;
case 485:
/* Line 1806 of yacc.c */
#line 1801 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl); }
break;
case 486:
/* Line 1806 of yacc.c */
#line 1803 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addQualifiers( (yyvsp[(1) - (3)].decl) ); }
break;
case 487:
/* Line 1806 of yacc.c */
#line 1805 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl)->copyStorageClasses( (yyvsp[(1) - (3)].decl) ) ); }
break;
case 488:
/* Line 1806 of yacc.c */
#line 1810 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addAssertions( (yyvsp[(2) - (2)].decl) ); }
break;
case 489:
/* Line 1806 of yacc.c */
#line 1812 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (4)].decl)->addAssertions( (yyvsp[(2) - (4)].decl) )->addType( (yyvsp[(4) - (4)].decl) ); }
break;
case 490:
/* Line 1806 of yacc.c */
#line 1817 "parser.yy"
{
typedefTable.addToEnclosingScope( *(yyvsp[(1) - (1)].tok), TypedefTable::TD );
(yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (1)].tok), 0 );
}
break;
case 491:
/* Line 1806 of yacc.c */
#line 1822 "parser.yy"
{
typedefTable.addToEnclosingScope( *(yyvsp[(1) - (6)].tok), TypedefTable::TG );
(yyval.decl) = DeclarationNode::newTypeDecl( (yyvsp[(1) - (6)].tok), (yyvsp[(4) - (6)].decl) );
}
break;
case 492:
/* Line 1806 of yacc.c */
#line 1830 "parser.yy"
{
typedefTable.addToEnclosingScope( *(yyvsp[(2) - (9)].tok), TypedefTable::ID );
(yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (9)].tok), (yyvsp[(5) - (9)].decl), 0 );
}
break;
case 493:
/* Line 1806 of yacc.c */
#line 1835 "parser.yy"
{
typedefTable.enterContext( *(yyvsp[(2) - (8)].tok) );
typedefTable.enterScope();
}
break;
case 494:
/* Line 1806 of yacc.c */
#line 1840 "parser.yy"
{
typedefTable.leaveContext();
typedefTable.addToEnclosingScope( *(yyvsp[(2) - (11)].tok), TypedefTable::ID );
(yyval.decl) = DeclarationNode::newContext( (yyvsp[(2) - (11)].tok), (yyvsp[(5) - (11)].decl), (yyvsp[(10) - (11)].decl) );
}
break;
case 496:
/* Line 1806 of yacc.c */
#line 1850 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ); }
break;
case 499:
/* Line 1806 of yacc.c */
#line 1860 "parser.yy"
{
typedefTable.addToEnclosingScope2( TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (1)].decl);
}
break;
case 500:
/* Line 1806 of yacc.c */
#line 1865 "parser.yy"
{
typedefTable.addToEnclosingScope2( TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (1)].decl);
}
break;
case 501:
/* Line 1806 of yacc.c */
#line 1870 "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 502:
/* Line 1806 of yacc.c */
#line 1878 "parser.yy"
{
typedefTable.addToEnclosingScope2( TypedefTable::ID );
(yyval.decl) = (yyvsp[(2) - (2)].decl)->addType( (yyvsp[(1) - (2)].decl) );
}
break;
case 503:
/* Line 1806 of yacc.c */
#line 1883 "parser.yy"
{
typedefTable.addToEnclosingScope2( TypedefTable::ID );
(yyval.decl) = (yyvsp[(1) - (5)].decl)->appendList( (yyvsp[(1) - (5)].decl)->cloneBaseType( (yyvsp[(5) - (5)].decl) ) );
}
break;
case 504:
/* Line 1806 of yacc.c */
#line 1893 "parser.yy"
{}
break;
case 505:
/* Line 1806 of yacc.c */
#line 1895 "parser.yy"
{
if ( theTree ) {
theTree->appendList( (yyvsp[(1) - (1)].decl) );
} else {
theTree = (yyvsp[(1) - (1)].decl);
}
}
break;
case 507:
/* Line 1806 of yacc.c */
#line 1907 "parser.yy"
{ (yyval.decl) = ( (yyvsp[(1) - (3)].decl) != NULL ) ? (yyvsp[(1) - (3)].decl)->appendList( (yyvsp[(3) - (3)].decl) ) : (yyvsp[(3) - (3)].decl); }
break;
case 508:
/* Line 1806 of yacc.c */
#line 1912 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 512:
/* Line 1806 of yacc.c */
#line 1920 "parser.yy"
{}
break;
case 513:
/* Line 1806 of yacc.c */
#line 1922 "parser.yy"
{
linkageStack.push( linkage );
linkage = LinkageSpec::fromString( *(yyvsp[(2) - (2)].tok) );
}
break;
case 514:
/* Line 1806 of yacc.c */
#line 1927 "parser.yy"
{
linkage = linkageStack.top();
linkageStack.pop();
(yyval.decl) = (yyvsp[(5) - (6)].decl);
}
break;
case 515:
/* Line 1806 of yacc.c */
#line 1933 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl); }
break;
case 517:
/* Line 1806 of yacc.c */
#line 1943 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
typedefTable.leaveScope();
(yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) );
}
break;
case 518:
/* Line 1806 of yacc.c */
#line 1949 "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 519:
/* Line 1806 of yacc.c */
#line 1958 "parser.yy"
{
typedefTable.addToEnclosingScope( TypedefTable::ID );
typedefTable.leaveScope();
(yyval.decl) = (yyvsp[(1) - (2)].decl)->addFunctionBody( (yyvsp[(2) - (2)].sn) );
}
break;
case 520:
/* Line 1806 of yacc.c */
#line 1964 "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 521:
/* Line 1806 of yacc.c */
#line 1970 "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 522:
/* Line 1806 of yacc.c */
#line 1976 "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 523:
/* Line 1806 of yacc.c */
#line 1982 "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 524:
/* Line 1806 of yacc.c */
#line 1990 "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 525:
/* Line 1806 of yacc.c */
#line 1996 "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 526:
/* Line 1806 of yacc.c */
#line 2004 "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 527:
/* Line 1806 of yacc.c */
#line 2010 "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 531:
/* Line 1806 of yacc.c */
#line 2025 "parser.yy"
{ (yyval.en) = new CompositeExprNode( new OperatorNode( OperatorNode::Range ), (yyvsp[(1) - (3)].en), (yyvsp[(3) - (3)].en) ); }
break;
case 534:
/* Line 1806 of yacc.c */
#line 2035 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 537:
/* Line 1806 of yacc.c */
#line 2042 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 538:
/* Line 1806 of yacc.c */
#line 2048 "parser.yy"
{ (yyval.decl) = 0; }
break;
case 544:
/* Line 1806 of yacc.c */
#line 2063 "parser.yy"
{}
break;
case 545:
/* Line 1806 of yacc.c */
#line 2064 "parser.yy"
{}
break;
case 546:
/* Line 1806 of yacc.c */
#line 2065 "parser.yy"
{}
break;
case 547:
/* Line 1806 of yacc.c */
#line 2066 "parser.yy"
{}
break;
case 548:
/* Line 1806 of yacc.c */
#line 2101 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 550:
/* Line 1806 of yacc.c */
#line 2104 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 551:
/* Line 1806 of yacc.c */
#line 2106 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 552:
/* Line 1806 of yacc.c */
#line 2111 "parser.yy"
{
typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) );
(yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) );
}
break;
case 553:
/* Line 1806 of yacc.c */
#line 2116 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 554:
/* Line 1806 of yacc.c */
#line 2121 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 555:
/* Line 1806 of yacc.c */
#line 2123 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 556:
/* Line 1806 of yacc.c */
#line 2125 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 557:
/* Line 1806 of yacc.c */
#line 2130 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
break;
case 558:
/* Line 1806 of yacc.c */
#line 2132 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 559:
/* Line 1806 of yacc.c */
#line 2134 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 560:
/* Line 1806 of yacc.c */
#line 2136 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 561:
/* Line 1806 of yacc.c */
#line 2141 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 562:
/* Line 1806 of yacc.c */
#line 2143 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 563:
/* Line 1806 of yacc.c */
#line 2153 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 565:
/* Line 1806 of yacc.c */
#line 2156 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 566:
/* Line 1806 of yacc.c */
#line 2161 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
break;
case 567:
/* Line 1806 of yacc.c */
#line 2163 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 568:
/* Line 1806 of yacc.c */
#line 2165 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 569:
/* Line 1806 of yacc.c */
#line 2170 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 570:
/* Line 1806 of yacc.c */
#line 2172 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 571:
/* Line 1806 of yacc.c */
#line 2174 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 572:
/* Line 1806 of yacc.c */
#line 2179 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 573:
/* Line 1806 of yacc.c */
#line 2181 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 574:
/* Line 1806 of yacc.c */
#line 2183 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 578:
/* Line 1806 of yacc.c */
#line 2198 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (4)].decl)->addIdList( (yyvsp[(3) - (4)].decl) ); }
break;
case 579:
/* Line 1806 of yacc.c */
#line 2200 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (6)].decl)->addIdList( (yyvsp[(5) - (6)].decl) ); }
break;
case 580:
/* Line 1806 of yacc.c */
#line 2202 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 581:
/* Line 1806 of yacc.c */
#line 2207 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 582:
/* Line 1806 of yacc.c */
#line 2209 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 583:
/* Line 1806 of yacc.c */
#line 2211 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 584:
/* Line 1806 of yacc.c */
#line 2216 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 585:
/* Line 1806 of yacc.c */
#line 2218 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 586:
/* Line 1806 of yacc.c */
#line 2220 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 587:
/* Line 1806 of yacc.c */
#line 2235 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 589:
/* Line 1806 of yacc.c */
#line 2238 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 590:
/* Line 1806 of yacc.c */
#line 2240 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 592:
/* Line 1806 of yacc.c */
#line 2246 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 593:
/* Line 1806 of yacc.c */
#line 2251 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 594:
/* Line 1806 of yacc.c */
#line 2253 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 595:
/* Line 1806 of yacc.c */
#line 2255 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 596:
/* Line 1806 of yacc.c */
#line 2260 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
break;
case 597:
/* Line 1806 of yacc.c */
#line 2262 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 598:
/* Line 1806 of yacc.c */
#line 2264 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 599:
/* Line 1806 of yacc.c */
#line 2266 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 600:
/* Line 1806 of yacc.c */
#line 2271 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
break;
case 601:
/* Line 1806 of yacc.c */
#line 2273 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 602:
/* Line 1806 of yacc.c */
#line 2275 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 603:
/* Line 1806 of yacc.c */
#line 2285 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 605:
/* Line 1806 of yacc.c */
#line 2288 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 606:
/* Line 1806 of yacc.c */
#line 2290 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 607:
/* Line 1806 of yacc.c */
#line 2295 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 608:
/* Line 1806 of yacc.c */
#line 2297 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 609:
/* Line 1806 of yacc.c */
#line 2299 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 610:
/* Line 1806 of yacc.c */
#line 2304 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
break;
case 611:
/* Line 1806 of yacc.c */
#line 2306 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 612:
/* Line 1806 of yacc.c */
#line 2308 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 613:
/* Line 1806 of yacc.c */
#line 2310 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 614:
/* Line 1806 of yacc.c */
#line 2315 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
break;
case 615:
/* Line 1806 of yacc.c */
#line 2317 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 616:
/* Line 1806 of yacc.c */
#line 2319 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 617:
/* Line 1806 of yacc.c */
#line 2350 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 619:
/* Line 1806 of yacc.c */
#line 2353 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 620:
/* Line 1806 of yacc.c */
#line 2355 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 621:
/* Line 1806 of yacc.c */
#line 2360 "parser.yy"
{
typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) );
(yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) );
}
break;
case 622:
/* Line 1806 of yacc.c */
#line 2365 "parser.yy"
{
typedefTable.setNextIdentifier( *(yyvsp[(1) - (1)].tok) );
(yyval.decl) = DeclarationNode::newName( (yyvsp[(1) - (1)].tok) );
}
break;
case 623:
/* Line 1806 of yacc.c */
#line 2373 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 624:
/* Line 1806 of yacc.c */
#line 2375 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 625:
/* Line 1806 of yacc.c */
#line 2377 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 626:
/* Line 1806 of yacc.c */
#line 2382 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
break;
case 627:
/* Line 1806 of yacc.c */
#line 2384 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 628:
/* Line 1806 of yacc.c */
#line 2389 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (6)].decl)->addParamList( (yyvsp[(4) - (6)].decl) ); }
break;
case 629:
/* Line 1806 of yacc.c */
#line 2391 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 631:
/* Line 1806 of yacc.c */
#line 2406 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 632:
/* Line 1806 of yacc.c */
#line 2408 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 633:
/* Line 1806 of yacc.c */
#line 2413 "parser.yy"
{ (yyval.decl) = DeclarationNode::newPointer( 0 ); }
break;
case 634:
/* Line 1806 of yacc.c */
#line 2415 "parser.yy"
{ (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); }
break;
case 635:
/* Line 1806 of yacc.c */
#line 2417 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 636:
/* Line 1806 of yacc.c */
#line 2419 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 637:
/* Line 1806 of yacc.c */
#line 2421 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 639:
/* Line 1806 of yacc.c */
#line 2427 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 640:
/* Line 1806 of yacc.c */
#line 2429 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 641:
/* Line 1806 of yacc.c */
#line 2431 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 642:
/* Line 1806 of yacc.c */
#line 2436 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); }
break;
case 643:
/* Line 1806 of yacc.c */
#line 2438 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 644:
/* Line 1806 of yacc.c */
#line 2440 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 645:
/* Line 1806 of yacc.c */
#line 2446 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); }
break;
case 646:
/* Line 1806 of yacc.c */
#line 2448 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( 0, 0, false )->addArray( (yyvsp[(3) - (3)].decl) ); }
break;
case 648:
/* Line 1806 of yacc.c */
#line 2454 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( (yyvsp[(3) - (5)].en), 0, false ); }
break;
case 649:
/* Line 1806 of yacc.c */
#line 2456 "parser.yy"
{ (yyval.decl) = DeclarationNode::newVarArray( 0 ); }
break;
case 650:
/* Line 1806 of yacc.c */
#line 2458 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newArray( (yyvsp[(4) - (6)].en), 0, false ) ); }
break;
case 651:
/* Line 1806 of yacc.c */
#line 2460 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (6)].decl)->addArray( DeclarationNode::newVarArray( 0 ) ); }
break;
case 653:
/* Line 1806 of yacc.c */
#line 2475 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 654:
/* Line 1806 of yacc.c */
#line 2477 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 655:
/* Line 1806 of yacc.c */
#line 2482 "parser.yy"
{ (yyval.decl) = DeclarationNode::newPointer( 0 ); }
break;
case 656:
/* Line 1806 of yacc.c */
#line 2484 "parser.yy"
{ (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); }
break;
case 657:
/* Line 1806 of yacc.c */
#line 2486 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 658:
/* Line 1806 of yacc.c */
#line 2488 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 659:
/* Line 1806 of yacc.c */
#line 2490 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 661:
/* Line 1806 of yacc.c */
#line 2496 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 662:
/* Line 1806 of yacc.c */
#line 2498 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 663:
/* Line 1806 of yacc.c */
#line 2500 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 664:
/* Line 1806 of yacc.c */
#line 2505 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFunction( 0, 0, (yyvsp[(3) - (5)].decl), 0 ); }
break;
case 665:
/* Line 1806 of yacc.c */
#line 2507 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 666:
/* Line 1806 of yacc.c */
#line 2509 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 668:
/* Line 1806 of yacc.c */
#line 2516 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addArray( (yyvsp[(2) - (2)].decl) ); }
break;
case 670:
/* Line 1806 of yacc.c */
#line 2527 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( 0, 0, false ); }
break;
case 671:
/* Line 1806 of yacc.c */
#line 2530 "parser.yy"
{ (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); }
break;
case 672:
/* Line 1806 of yacc.c */
#line 2532 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( 0, (yyvsp[(3) - (5)].decl), false ); }
break;
case 673:
/* Line 1806 of yacc.c */
#line 2535 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); }
break;
case 674:
/* Line 1806 of yacc.c */
#line 2537 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl), true ); }
break;
case 675:
/* Line 1806 of yacc.c */
#line 2539 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(3) - (7)].decl), true ); }
break;
case 677:
/* Line 1806 of yacc.c */
#line 2553 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 678:
/* Line 1806 of yacc.c */
#line 2555 "parser.yy"
{ (yyval.decl) = (yyvsp[(1) - (2)].decl)->addQualifiers( (yyvsp[(2) - (2)].decl) ); }
break;
case 679:
/* Line 1806 of yacc.c */
#line 2560 "parser.yy"
{ (yyval.decl) = DeclarationNode::newPointer( 0 ); }
break;
case 680:
/* Line 1806 of yacc.c */
#line 2562 "parser.yy"
{ (yyval.decl) = DeclarationNode::newPointer( (yyvsp[(2) - (2)].decl) ); }
break;
case 681:
/* Line 1806 of yacc.c */
#line 2564 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 682:
/* Line 1806 of yacc.c */
#line 2566 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addPointer( DeclarationNode::newPointer( (yyvsp[(2) - (3)].decl) ) ); }
break;
case 683:
/* Line 1806 of yacc.c */
#line 2568 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 685:
/* Line 1806 of yacc.c */
#line 2574 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 686:
/* Line 1806 of yacc.c */
#line 2576 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (4)].decl)->addArray( (yyvsp[(4) - (4)].decl) ); }
break;
case 687:
/* Line 1806 of yacc.c */
#line 2578 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 688:
/* Line 1806 of yacc.c */
#line 2583 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (8)].decl)->addParamList( (yyvsp[(6) - (8)].decl) ); }
break;
case 689:
/* Line 1806 of yacc.c */
#line 2585 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (3)].decl); }
break;
case 692:
/* Line 1806 of yacc.c */
#line 2595 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 695:
/* Line 1806 of yacc.c */
#line 2605 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 696:
/* Line 1806 of yacc.c */
#line 2607 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
break;
case 697:
/* Line 1806 of yacc.c */
#line 2609 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 698:
/* Line 1806 of yacc.c */
#line 2611 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
break;
case 699:
/* Line 1806 of yacc.c */
#line 2613 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 700:
/* Line 1806 of yacc.c */
#line 2615 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
break;
case 701:
/* Line 1806 of yacc.c */
#line 2622 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 702:
/* Line 1806 of yacc.c */
#line 2624 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
break;
case 703:
/* Line 1806 of yacc.c */
#line 2626 "parser.yy"
{ (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 704:
/* Line 1806 of yacc.c */
#line 2628 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); }
break;
case 705:
/* Line 1806 of yacc.c */
#line 2630 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
break;
case 706:
/* Line 1806 of yacc.c */
#line 2632 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 707:
/* Line 1806 of yacc.c */
#line 2634 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
break;
case 708:
/* Line 1806 of yacc.c */
#line 2636 "parser.yy"
{ (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 709:
/* Line 1806 of yacc.c */
#line 2638 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( (yyvsp[(2) - (3)].decl) )->addNewArray( (yyvsp[(1) - (3)].decl) ); }
break;
case 710:
/* Line 1806 of yacc.c */
#line 2640 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
break;
case 711:
/* Line 1806 of yacc.c */
#line 2645 "parser.yy"
{ (yyval.decl) = DeclarationNode::newVarArray( (yyvsp[(3) - (6)].decl) ); }
break;
case 712:
/* Line 1806 of yacc.c */
#line 2647 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), false ); }
break;
case 713:
/* Line 1806 of yacc.c */
#line 2652 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( (yyvsp[(4) - (6)].en), (yyvsp[(3) - (6)].decl), true ); }
break;
case 714:
/* Line 1806 of yacc.c */
#line 2654 "parser.yy"
{ (yyval.decl) = DeclarationNode::newArray( (yyvsp[(5) - (7)].en), (yyvsp[(4) - (7)].decl)->addQualifiers( (yyvsp[(3) - (7)].decl) ), true ); }
break;
case 716:
/* Line 1806 of yacc.c */
#line 2681 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addQualifiers( (yyvsp[(1) - (2)].decl) ); }
break;
case 720:
/* Line 1806 of yacc.c */
#line 2692 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 721:
/* Line 1806 of yacc.c */
#line 2694 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
break;
case 722:
/* Line 1806 of yacc.c */
#line 2696 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 723:
/* Line 1806 of yacc.c */
#line 2698 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
break;
case 724:
/* Line 1806 of yacc.c */
#line 2700 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewPointer( DeclarationNode::newPointer( 0 ) ); }
break;
case 725:
/* Line 1806 of yacc.c */
#line 2702 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewPointer( DeclarationNode::newPointer( (yyvsp[(1) - (3)].decl) ) ); }
break;
case 726:
/* Line 1806 of yacc.c */
#line 2709 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 727:
/* Line 1806 of yacc.c */
#line 2711 "parser.yy"
{ (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 728:
/* Line 1806 of yacc.c */
#line 2713 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
break;
case 729:
/* Line 1806 of yacc.c */
#line 2715 "parser.yy"
{ (yyval.decl) = (yyvsp[(3) - (3)].decl)->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 730:
/* Line 1806 of yacc.c */
#line 2717 "parser.yy"
{ (yyval.decl) = (yyvsp[(4) - (4)].decl)->addNewArray( (yyvsp[(3) - (4)].decl) )->addNewArray( DeclarationNode::newArray( 0, 0, false ) ); }
break;
case 731:
/* Line 1806 of yacc.c */
#line 2719 "parser.yy"
{ (yyval.decl) = (yyvsp[(2) - (2)].decl)->addNewArray( (yyvsp[(1) - (2)].decl) ); }
break;
case 732:
/* Line 1806 of yacc.c */
#line 2724 "parser.yy"
{ (yyval.decl) = DeclarationNode::newTuple( (yyvsp[(3) - (5)].decl) ); }
break;
case 733:
/* Line 1806 of yacc.c */
#line 2729 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFunction( 0, DeclarationNode::newTuple( 0 ), (yyvsp[(4) - (5)].decl), 0 ); }
break;
case 734:
/* Line 1806 of yacc.c */
#line 2731 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); }
break;
case 735:
/* Line 1806 of yacc.c */
#line 2733 "parser.yy"
{ (yyval.decl) = DeclarationNode::newFunction( 0, (yyvsp[(1) - (6)].decl), (yyvsp[(4) - (6)].decl), 0 ); }
break;
case 738:
/* Line 1806 of yacc.c */
#line 2757 "parser.yy"
{ (yyval.en) = 0; }
break;
case 739:
/* Line 1806 of yacc.c */
#line 2759 "parser.yy"
{ (yyval.en) = (yyvsp[(2) - (2)].en); }
break;
/* Line 1806 of yacc.c */
#line 9070 "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 2762 "parser.yy"
// ----end of grammar----
void yyerror( const char * ) {
std::cout << "Error ";
if ( yyfilename ) {
std::cout << "in file " << yyfilename << " ";
} // if
std::cout << "at line " << yylineno << " reading token \"" << (yytext[0] == '\0' ? "EOF" : yytext) << "\"" << std::endl;
}
// Local Variables: //
// mode: c++ //
// tab-width: 4 //
// compile-command: "make install" //
// End: //