/* A Bison parser, made from /usr/home/andrea/projects/g-cows-devel/g-cows-current/src/parser.yy, by GNU bison 1.75. */ /* Skeleton parser for Yacc-like parsing with Bison, Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002 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 2, 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, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* As a special exception, when this file is copied by Bison into a Bison output file, you may use that output file without restriction. This special exception was added by the Free Software Foundation in version 1.24 of Bison. */ /* 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 /* Pure parsers. */ #define YYPURE 0 /* Using locations. */ #define YYLSP_NEEDED 0 /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { G_CONST = 258, TYPE_STRING = 259, VAR = 260, VAR_TYPE = 261, UNDEF = 262, PRINT = 263, ECHO = 264, AT_ECHO = 265, VERBATIM = 266, INCLUDE = 267, CMD = 268, EVALCMD = 269, EXEC = 270, EVALEXEC = 271, TOBOOL = 272, TOINT = 273, TOSTRING = 274, TOARRAY = 275, ISINT = 276, ISSTRING = 277, ISARRAY = 278, IF = 279, ELIF = 280, IFDEF = 281, ELIFDEF = 282, IFNDEF = 283, ELIFNDEF = 284, ELSE = 285, DATE = 286, FDATE = 287, FSIZE = 288, ADJ_LINK = 289, INPUT_FILE = 290, ABS_INPUT_FILE = 291, OUTPUT_FILE = 292, ABS_OUTPUT_FILE = 293, SUBSTR = 294, FIND = 295, RFIND = 296, FINDFIRSTOF = 297, FINDLASTOF = 298, FINDFIRSTNOTOF = 299, FINDLASTNOTOF = 300, CHAR = 301, STARTSWITH = 302, ENDSWITH = 303, INSERT = 304, REPLACE = 305, REPLACE_ALL = 306, TRIM = 307, LTRIM = 308, RTRIM = 309, TO_LOWER = 310, TO_UPPER = 311, LENGTH = 312, RAISEERR = 313, RAISEWARN = 314, TERM = 315, TOKENIZE = 316, JOIN = 317, DELETE = 318, PUSH = 319, FOR = 320, WHILE = 321, FOREACH = 322, IN = 323, CPLUS = 324, CMINUS = 325, CTIMES = 326, PP = 327, MM = 328, RANDOM = 329, FILEEXISTS = 330, FILL = 331, END_SCRIPT = 332, END_FILE = 333, END_TYPE = 334, IFX = 335, CPOW = 336, CMOD = 337, CDIV = 338, OR = 339, AND = 340, WNEQ = 341, NEQ = 342, WEQ = 343, EQ = 344, LE = 345, GE = 346, POW = 347, UMINUS = 348 }; #endif #define G_CONST 258 #define TYPE_STRING 259 #define VAR 260 #define VAR_TYPE 261 #define UNDEF 262 #define PRINT 263 #define ECHO 264 #define AT_ECHO 265 #define VERBATIM 266 #define INCLUDE 267 #define CMD 268 #define EVALCMD 269 #define EXEC 270 #define EVALEXEC 271 #define TOBOOL 272 #define TOINT 273 #define TOSTRING 274 #define TOARRAY 275 #define ISINT 276 #define ISSTRING 277 #define ISARRAY 278 #define IF 279 #define ELIF 280 #define IFDEF 281 #define ELIFDEF 282 #define IFNDEF 283 #define ELIFNDEF 284 #define ELSE 285 #define DATE 286 #define FDATE 287 #define FSIZE 288 #define ADJ_LINK 289 #define INPUT_FILE 290 #define ABS_INPUT_FILE 291 #define OUTPUT_FILE 292 #define ABS_OUTPUT_FILE 293 #define SUBSTR 294 #define FIND 295 #define RFIND 296 #define FINDFIRSTOF 297 #define FINDLASTOF 298 #define FINDFIRSTNOTOF 299 #define FINDLASTNOTOF 300 #define CHAR 301 #define STARTSWITH 302 #define ENDSWITH 303 #define INSERT 304 #define REPLACE 305 #define REPLACE_ALL 306 #define TRIM 307 #define LTRIM 308 #define RTRIM 309 #define TO_LOWER 310 #define TO_UPPER 311 #define LENGTH 312 #define RAISEERR 313 #define RAISEWARN 314 #define TERM 315 #define TOKENIZE 316 #define JOIN 317 #define DELETE 318 #define PUSH 319 #define FOR 320 #define WHILE 321 #define FOREACH 322 #define IN 323 #define CPLUS 324 #define CMINUS 325 #define CTIMES 326 #define PP 327 #define MM 328 #define RANDOM 329 #define FILEEXISTS 330 #define FILL 331 #define END_SCRIPT 332 #define END_FILE 333 #define END_TYPE 334 #define IFX 335 #define CPOW 336 #define CMOD 337 #define CDIV 338 #define OR 339 #define AND 340 #define WNEQ 341 #define NEQ 342 #define WEQ 343 #define EQ 344 #define LE 345 #define GE 346 #define POW 347 #define UMINUS 348 /* Copy the first part of user declarations. */ #line 24 "parser.yy" #include "common.H" #include "error.H" #include "language.H" extern char *yytext; extern int cowswitch (string new_buffer); extern int check_file (string new_buffer); extern void unput_brace (); extern int yylex (void); extern Tree *tree; void yyerror (const char *str); int yywrap () { return 1; } static bool inside_var_type = false; static string type_into = ""; /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif #ifndef YYSTYPE #line 43 "parser.yy" typedef union { char *str; Gen_type *gen; Node *node; } yystype; /* Line 193 of /usr/local/share/bison/yacc.c. */ #line 284 "y.tab.c" # define YYSTYPE yystype # define YYSTYPE_IS_TRIVIAL 1 #endif #ifndef YYLTYPE typedef struct yyltype { int first_line; int first_column; int last_line; int last_column; } yyltype; # define YYLTYPE yyltype # define YYLTYPE_IS_TRIVIAL 1 #endif /* Copy the second part of user declarations. */ /* Line 213 of /usr/local/share/bison/yacc.c. */ #line 305 "y.tab.c" #if ! defined (yyoverflow) || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # if YYSTACK_USE_ALLOCA # define YYSTACK_ALLOC alloca # else # ifndef YYSTACK_USE_ALLOCA # if defined (alloca) || defined (_ALLOCA_H) # define YYSTACK_ALLOC alloca # else # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (0) # else # if defined (__STDC__) || defined (__cplusplus) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # endif # define YYSTACK_ALLOC malloc # define YYSTACK_FREE free # endif #endif /* ! defined (yyoverflow) || YYERROR_VERBOSE */ #if (! defined (yyoverflow) \ && (! defined (__cplusplus) \ || (YYLTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { short yyss; YYSTYPE yyvs; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAX (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 (short) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAX) /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ register YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (0) # endif # endif /* 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) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack, Stack, yysize); \ Stack = &yyptr->Stack; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAX; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (0) #endif #if defined (__STDC__) || defined (__cplusplus) typedef signed char yysigned_char; #else typedef short yysigned_char; #endif /* YYFINAL -- State number of the termination state. */ #define YYFINAL 2 #define YYLAST 4929 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 112 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 17 /* YYNRULES -- Number of rules. */ #define YYNRULES 145 /* YYNRULES -- Number of states. */ #define YYNSTATES 474 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 348 #define YYTRANSLATE(X) \ ((unsigned)(X) <= YYMAXUTOK ? yytranslate[X] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const unsigned char 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, 103, 2, 2, 81, 101, 2, 2, 107, 108, 99, 97, 82, 98, 2, 100, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 106, 93, 83, 94, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 105, 2, 111, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 109, 2, 110, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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, 84, 85, 86, 87, 88, 89, 90, 91, 92, 95, 96, 102, 104 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const unsigned short yyprhs[] = { 0, 0, 3, 4, 7, 9, 11, 13, 15, 18, 24, 26, 28, 32, 38, 44, 52, 54, 58, 60, 64, 66, 70, 74, 84, 90, 98, 100, 103, 105, 109, 111, 115, 120, 123, 127, 131, 135, 139, 143, 147, 151, 155, 159, 163, 166, 169, 172, 175, 179, 183, 187, 191, 195, 199, 202, 206, 210, 214, 218, 222, 226, 230, 235, 240, 245, 252, 259, 263, 267, 272, 276, 280, 285, 289, 296, 305, 312, 321, 328, 337, 344, 353, 360, 369, 376, 383, 390, 399, 408, 417, 422, 427, 432, 437, 442, 447, 452, 459, 464, 471, 476, 481, 486, 491, 496, 503, 510, 515, 520, 525, 530, 535, 540, 545, 552, 559, 566, 575, 582, 591, 598, 603, 610, 612, 615, 621, 627, 629, 632, 638, 644, 646, 649, 655, 661, 663, 668, 672, 679, 681, 686, 691, 699, 704, 706 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const short yyrhs[] = { 113, 0, -1, -1, 113, 114, -1, 106, -1, 77, -1, 78, -1, 79, -1, 116, 106, -1, 7, 107, 126, 108, 106, -1, 4, -1, 6, -1, 10, 116, 106, -1, 11, 107, 116, 108, 106, -1, 12, 107, 116, 108, 106, -1, 12, 107, 116, 82, 128, 108, 106, -1, 117, -1, 117, 30, 114, -1, 120, -1, 120, 30, 114, -1, 123, -1, 123, 30, 114, -1, 109, 115, 110, -1, 65, 107, 116, 106, 116, 106, 116, 108, 114, -1, 66, 107, 116, 108, 114, -1, 67, 107, 126, 68, 116, 108, 114, -1, 114, -1, 115, 114, -1, 3, -1, 107, 116, 108, -1, 126, -1, 126, 83, 116, -1, 126, 83, 109, 110, -1, 98, 116, -1, 116, 94, 116, -1, 116, 93, 116, -1, 116, 96, 116, -1, 116, 95, 116, -1, 116, 97, 116, -1, 116, 98, 116, -1, 116, 99, 116, -1, 116, 100, 116, -1, 116, 101, 116, -1, 116, 102, 116, -1, 126, 72, -1, 126, 73, -1, 72, 116, -1, 73, 116, -1, 116, 69, 116, -1, 116, 70, 116, -1, 116, 71, 116, -1, 116, 86, 116, -1, 116, 85, 116, -1, 116, 84, 116, -1, 103, 116, -1, 116, 92, 116, -1, 116, 91, 116, -1, 116, 90, 116, -1, 116, 89, 116, -1, 116, 88, 116, -1, 116, 87, 116, -1, 109, 128, 110, -1, 9, 107, 116, 108, -1, 8, 107, 116, 108, -1, 31, 107, 116, 108, -1, 32, 107, 116, 82, 116, 108, -1, 33, 107, 116, 82, 116, 108, -1, 34, 107, 108, -1, 35, 107, 108, -1, 35, 107, 3, 108, -1, 36, 107, 108, -1, 37, 107, 108, -1, 37, 107, 3, 108, -1, 38, 107, 108, -1, 39, 107, 116, 82, 116, 108, -1, 39, 107, 116, 82, 116, 82, 116, 108, -1, 40, 107, 116, 82, 116, 108, -1, 40, 107, 116, 82, 116, 82, 116, 108, -1, 42, 107, 116, 82, 116, 108, -1, 43, 107, 116, 82, 116, 82, 116, 108, -1, 44, 107, 116, 82, 116, 108, -1, 45, 107, 116, 82, 116, 82, 116, 108, -1, 41, 107, 116, 82, 116, 108, -1, 41, 107, 116, 82, 116, 82, 116, 108, -1, 46, 107, 116, 82, 116, 108, -1, 47, 107, 116, 82, 116, 108, -1, 48, 107, 116, 82, 116, 108, -1, 49, 107, 116, 82, 116, 82, 116, 108, -1, 50, 107, 116, 82, 116, 82, 116, 108, -1, 51, 107, 116, 82, 116, 82, 116, 108, -1, 52, 107, 116, 108, -1, 53, 107, 116, 108, -1, 54, 107, 116, 108, -1, 55, 107, 116, 108, -1, 56, 107, 116, 108, -1, 57, 107, 116, 108, -1, 58, 107, 116, 108, -1, 58, 107, 116, 82, 116, 108, -1, 59, 107, 116, 108, -1, 59, 107, 116, 82, 116, 108, -1, 60, 107, 116, 108, -1, 13, 107, 116, 108, -1, 14, 107, 116, 108, -1, 15, 107, 116, 108, -1, 16, 107, 116, 108, -1, 15, 107, 116, 82, 128, 108, -1, 16, 107, 116, 82, 128, 108, -1, 17, 107, 116, 108, -1, 18, 107, 116, 108, -1, 19, 107, 116, 108, -1, 20, 107, 116, 108, -1, 21, 107, 116, 108, -1, 22, 107, 116, 108, -1, 23, 107, 116, 108, -1, 61, 107, 116, 82, 116, 108, -1, 62, 107, 116, 82, 116, 108, -1, 63, 107, 116, 82, 116, 108, -1, 63, 107, 116, 82, 116, 82, 116, 108, -1, 64, 107, 116, 82, 116, 108, -1, 64, 107, 116, 82, 116, 82, 116, 108, -1, 74, 107, 116, 82, 116, 108, -1, 75, 107, 116, 108, -1, 76, 107, 116, 82, 128, 108, -1, 118, -1, 117, 119, -1, 24, 107, 116, 108, 114, -1, 25, 107, 116, 108, 114, -1, 121, -1, 120, 122, -1, 26, 107, 126, 108, 114, -1, 27, 107, 126, 108, 114, -1, 124, -1, 123, 125, -1, 28, 107, 126, 108, 114, -1, 29, 107, 126, 108, 114, -1, 5, -1, 81, 107, 116, 108, -1, 5, 105, 111, -1, 81, 107, 116, 108, 105, 111, -1, 127, -1, 5, 105, 116, 111, -1, 116, 105, 116, 111, -1, 81, 107, 116, 108, 105, 116, 111, -1, 127, 105, 116, 111, -1, 116, -1, 128, 82, 116, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const unsigned short yyrline[] = { 0, 99, 99, 100, 103, 105, 106, 107, 112, 113, 114, 126, 135, 151, 152, 188, 222, 223, 224, 225, 226, 227, 228, 230, 232, 233, 237, 239, 242, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 265, 267, 269, 271, 273, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 315, 317, 319, 321, 323, 325, 326, 327, 328, 329, 330, 331, 332, 334, 335, 337, 338, 339, 340, 341, 342, 344, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 357, 359, 361, 363, 365, 367, 371, 373, 376, 380, 384, 386, 389, 393, 397, 399, 402, 406, 410, 412, 413, 414, 415, 418, 421, 422, 424, 427, 429 }; #endif #if YYDEBUG || YYERROR_VERBOSE /* YYTNME[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", "G_CONST", "TYPE_STRING", "VAR", "VAR_TYPE", "UNDEF", "PRINT", "ECHO", "AT_ECHO", "VERBATIM", "INCLUDE", "CMD", "EVALCMD", "EXEC", "EVALEXEC", "TOBOOL", "TOINT", "TOSTRING", "TOARRAY", "ISINT", "ISSTRING", "ISARRAY", "IF", "ELIF", "IFDEF", "ELIFDEF", "IFNDEF", "ELIFNDEF", "ELSE", "DATE", "FDATE", "FSIZE", "ADJ_LINK", "INPUT_FILE", "ABS_INPUT_FILE", "OUTPUT_FILE", "ABS_OUTPUT_FILE", "SUBSTR", "FIND", "RFIND", "FINDFIRSTOF", "FINDLASTOF", "FINDFIRSTNOTOF", "FINDLASTNOTOF", "CHAR", "STARTSWITH", "ENDSWITH", "INSERT", "REPLACE", "REPLACE_ALL", "TRIM", "LTRIM", "RTRIM", "TO_LOWER", "TO_UPPER", "LENGTH", "RAISEERR", "RAISEWARN", "TERM", "TOKENIZE", "JOIN", "DELETE", "PUSH", "FOR", "WHILE", "FOREACH", "IN", "CPLUS", "CMINUS", "CTIMES", "PP", "MM", "RANDOM", "FILEEXISTS", "FILL", "END_SCRIPT", "END_FILE", "END_TYPE", "IFX", "'$'", "','", "'='", "CPOW", "CMOD", "CDIV", "OR", "AND", "WNEQ", "NEQ", "WEQ", "EQ", "'<'", "'>'", "LE", "GE", "'+'", "'-'", "'*'", "'/'", "'%'", "POW", "'!'", "UMINUS", "'['", "';'", "'('", "')'", "'{'", "'}'", "']'", "$accept", "input", "stmt", "stmt_list", "expr", "if_seq", "if", "elif", "ifdef_seq", "ifdef", "elifdef", "ifndef_seq", "ifndef", "elifndef", "var", "item", "list", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const unsigned short 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, 36, 44, 61, 336, 337, 338, 339, 340, 341, 342, 343, 344, 60, 62, 345, 346, 43, 45, 42, 47, 37, 347, 33, 348, 91, 59, 40, 41, 123, 125, 93 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const unsigned char yyr1[] = { 0, 112, 113, 113, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 114, 115, 115, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 117, 117, 118, 119, 120, 120, 121, 122, 123, 123, 124, 125, 126, 126, 126, 126, 126, 127, 127, 127, 127, 128, 128 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const unsigned char yyr2[] = { 0, 2, 0, 2, 1, 1, 1, 1, 2, 5, 1, 1, 3, 5, 5, 7, 1, 3, 1, 3, 1, 3, 3, 9, 5, 7, 1, 2, 1, 3, 1, 3, 4, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 6, 6, 3, 3, 4, 3, 3, 4, 3, 6, 8, 6, 8, 6, 8, 6, 8, 6, 8, 6, 6, 6, 8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 6, 4, 6, 4, 4, 4, 4, 4, 6, 6, 4, 4, 4, 4, 4, 4, 4, 6, 6, 6, 8, 6, 8, 6, 4, 6, 1, 2, 5, 5, 1, 2, 5, 5, 1, 2, 5, 5, 1, 4, 3, 6, 1, 4, 4, 7, 4, 1, 3 }; /* YYDEFACT[STATE-NAME] -- Default rule to reduce with in state STATE-NUM when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const unsigned char yydefact[] = { 2, 0, 1, 28, 10, 135, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 6, 7, 0, 0, 0, 4, 0, 0, 3, 0, 16, 123, 18, 127, 20, 131, 30, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 47, 0, 0, 0, 0, 33, 54, 0, 26, 0, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 124, 0, 0, 128, 0, 0, 132, 44, 45, 0, 0, 137, 0, 0, 30, 0, 0, 144, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 0, 0, 0, 67, 0, 68, 70, 0, 71, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 29, 22, 27, 0, 61, 48, 49, 50, 53, 52, 51, 60, 59, 58, 57, 56, 55, 35, 34, 37, 36, 38, 39, 40, 41, 42, 43, 0, 0, 17, 0, 19, 0, 21, 0, 31, 0, 140, 0, 63, 62, 0, 0, 0, 101, 102, 0, 103, 0, 104, 107, 108, 109, 110, 111, 112, 113, 0, 0, 0, 64, 0, 0, 69, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 92, 93, 94, 95, 0, 96, 0, 98, 100, 0, 0, 0, 0, 0, 0, 0, 0, 121, 0, 136, 145, 141, 0, 30, 30, 32, 143, 9, 13, 0, 14, 0, 0, 125, 129, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 105, 106, 65, 66, 0, 74, 0, 76, 0, 82, 78, 0, 80, 0, 84, 85, 86, 0, 0, 0, 97, 99, 114, 115, 0, 116, 0, 118, 0, 0, 120, 122, 138, 0, 126, 130, 134, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 142, 75, 77, 83, 79, 81, 87, 88, 89, 117, 119, 0, 23 }; /* YYDEFGOTO[NTERM-NUM]. */ static const short yydefgoto[] = { -1, 1, 78, 157, 79, 80, 81, 186, 82, 83, 189, 84, 85, 192, 86, 87, 159 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -304 static const short yypact[] = { -304, 510, -304, -304, -304, -97, -304, -84, -72, -33, 1150, -32, -30, -24, -4, -3, -2, 31, 36, 37, 39, 40, 41, 42, 70, 71, 73, 75, 76, 77, 95, 96, 98, 100, 102, 103, 104, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 119, 139, 140, 142, 144, 145, 148, 151, 167, 168, 170, 172, 173, 174, 176, 178, 180, 1150, 1150, 182, 183, 184, -304, -304, -304, 185, 1150, 1150, -304, 1150, 1045, -304, 3710, 16, -304, 23, -304, 13, -304, -44, -95, 615, 1150, 1150, 1150, 1150, 3748, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, -57, -1, -48, 29, 186, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1, 1, 1150, 1150, 1150, 1150, 1, 1, 1710, -304, 829, 3710, -76, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, -304, 188, 1045, -304, 190, 1045, -304, 191, 1045, -304, -304, -304, 1247, 1150, -304, 143, 4824, -68, 1750, 1790, 4824, -304, 1830, 1310, 1870, 1910, 1350, 1390, 1950, 1990, 2030, 2070, 2110, 2150, 2190, 2230, -61, -59, 2270, 3862, 3899, -304, 193, -304, -304, 195, -304, -304, 3936, 3973, 4010, 4047, 4084, 4121, 4158, 4195, 4232, 4269, 4306, 4343, 4380, 2310, 2350, 2390, 2430, 2470, 2510, 1430, 1470, 2550, 4417, 4454, 4491, 4528, 3786, 2590, -35, 4565, 2630, 4602, 2670, -304, -304, -304, 1150, -304, 4824, 4824, 4824, 4824, 4824, 4824, 99, 171, 212, 212, 212, 212, -29, -29, -29, -29, 74, 74, -40, -40, -40, 1, 346, 1150, -304, 1150, -304, 1150, -304, 937, 4824, 394, -304, 187, -304, -304, 198, 1150, 226, -304, -304, 1150, -304, 1150, -304, -304, -304, -304, -304, -304, -304, -304, 1045, 1045, 1045, -304, 1150, 1150, -304, -304, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, -304, -304, -304, -304, -304, -304, 1150, -304, 1150, -304, -304, 1150, 1150, 1150, 1150, 1150, 1045, 1150, 1150, -304, 1150, 194, 4824, -304, 2710, -56, -47, -304, -304, -304, -304, -64, -304, -63, -52, -304, -304, -304, 2750, 2790, 1510, 1550, 1590, 2830, 4639, 2870, 4676, 2910, 2950, 2990, 4713, 4750, 4787, 3030, 3070, 3110, 3150, 1630, 1670, 3824, -304, 3190, 3230, -51, 720, 1045, 1045, 1045, 227, -304, -304, -304, -304, 1150, -304, 1150, -304, 1150, -304, -304, 1150, -304, 1150, -304, -304, -304, 1150, 1150, 1150, -304, -304, -304, -304, 1150, -304, 1150, -304, 1150, 1045, -304, -304, -304, 1273, -304, -304, -304, -304, 3270, 3310, 3350, 3390, 3430, 3470, 3510, 3550, 3590, 3630, 3670, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, -304, 1045, -304 }; /* YYPGOTO[NTERM-NUM]. */ static const short yypgoto[] = { -304, -304, 68, -304, -10, -304, -304, -304, -304, -304, -304, -304, -304, -304, -88, -304, -303 }; /* 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 zero, do what YYDEFACT says. If YYTABLE_NINF, parse error. */ #define YYTABLE_NINF -1 static const unsigned short yytable[] = { 93, 200, 225, 373, 193, 194, 267, 375, 88, 376, 196, 193, 194, 193, 194, 195, 193, 194, 267, 267, 219, 220, 195, 89, 195, 193, 194, 195, 193, 194, 267, 267, 228, 359, 268, 90, 195, 193, 194, 195, 302, 184, 190, 191, 410, 411, 185, 322, 195, 323, 187, 224, 408, 188, 147, 148, 412, 442, 259, 405, 227, 409, 181, 153, 154, 182, 155, 158, 176, 177, 178, 179, 180, 181, 91, 94, 182, 95, 198, 199, 201, 202, 203, 96, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 199, 199, 221, 222, 223, 97, 98, 99, 182, 226, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 199, 229, 100, 260, 261, 262, 263, 101, 102, 156, 103, 104, 105, 106, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 178, 179, 180, 181, 107, 108, 182, 109, 0, 110, 111, 112, 299, 300, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 113, 114, 182, 115, 367, 116, 368, 117, 118, 119, 160, 161, 162, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 266, 130, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 131, 132, 182, 133, 0, 134, 135, 293, 301, 136, 295, 364, 137, 297, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 138, 139, 182, 140, 0, 141, 142, 143, 366, 144, 199, 145, 199, 146, 203, 149, 150, 151, 152, 371, 230, 292, 203, 294, 296, 406, 203, 327, 203, 328, 372, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 380, 381, 182, 0, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 374, 448, 0, 0, 0, 0, 395, 0, 396, 0, 0, 397, 398, 399, 400, 401, 0, 403, 404, 0, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377, 378, 379, 0, 0, 0, 0, 444, 0, 0, 0, 0, 0, 0, 0, 0, 449, 0, 450, 0, 451, 0, 0, 452, 0, 453, 160, 161, 162, 454, 455, 456, 0, 0, 0, 0, 457, 402, 458, 0, 459, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 0, 0, 0, 365, 0, 0, 0, 0, 0, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445, 446, 447, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 0, 0, 0, 370, 0, 0, 460, 0, 2, 0, 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 25, 0, 26, 0, 473, 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, 0, 0, 0, 0, 64, 65, 66, 67, 68, 69, 70, 71, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 74, 0, 0, 75, 76, 3, 77, 5, 0, 0, 8, 9, 0, 0, 0, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 64, 65, 66, 67, 68, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 74, 0, 0, 0, 76, 3, 92, 5, 197, 0, 8, 9, 0, 0, 0, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 64, 65, 66, 67, 68, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 74, 0, 0, 0, 76, 0, 92, 0, 443, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 25, 0, 26, 0, 0, 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, 0, 0, 0, 0, 64, 65, 66, 67, 68, 69, 70, 71, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 74, 0, 0, 75, 76, 0, 77, 265, 3, 0, 5, 0, 0, 8, 9, 0, 0, 0, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 64, 65, 66, 67, 68, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 74, 0, 0, 0, 76, 0, 92, 369, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 0, 25, 0, 26, 0, 0, 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, 0, 0, 0, 0, 64, 65, 66, 67, 68, 69, 70, 71, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 74, 0, 0, 75, 76, 3, 77, 5, 0, 0, 8, 9, 0, 0, 0, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 64, 65, 66, 67, 68, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 3, 0, 5, 74, 0, 8, 9, 76, 0, 92, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 0, 0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0, 0, 0, 64, 65, 66, 67, 68, 0, 0, 0, 0, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 161, 162, 73, 0, 0, 0, 0, 74, 0, 0, 0, 76, 0, 298, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 461, 0, 0, 0, 0, 0, 0, 0, 306, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 307, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 311, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 313, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 349, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 351, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 416, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 418, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 420, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 435, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 436, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 437, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 438, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 264, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 303, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 304, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 305, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 308, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 309, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 314, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 315, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 316, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 317, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 318, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 319, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 320, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 321, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 324, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 342, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 343, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 344, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 345, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 346, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 347, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 352, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 358, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 361, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 363, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 407, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 413, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 414, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 421, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 423, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 425, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 426, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 427, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 431, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 432, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 433, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 434, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 440, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 441, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 462, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 463, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 464, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 465, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 466, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 467, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 468, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 469, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 470, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 471, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 0, 0, 472, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 183, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 204, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 357, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 439, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 337, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 429, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182, 160, 161, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 0, 0, 182 }; static const short yycheck[] = { 10, 89, 3, 306, 72, 73, 82, 310, 105, 312, 105, 72, 73, 72, 73, 83, 72, 73, 82, 82, 108, 109, 83, 107, 83, 72, 73, 83, 72, 73, 82, 82, 3, 68, 110, 107, 83, 72, 73, 83, 108, 25, 29, 30, 108, 108, 30, 108, 83, 108, 27, 108, 108, 30, 64, 65, 108, 108, 146, 362, 108, 108, 102, 73, 74, 105, 76, 77, 97, 98, 99, 100, 101, 102, 107, 107, 105, 107, 88, 89, 90, 91, 92, 107, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 107, 107, 107, 105, 108, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 108, 107, 149, 150, 151, 152, 107, 107, 77, 107, 107, 107, 107, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 99, 100, 101, 102, 107, 107, 105, 107, -1, 107, 107, 107, 195, 196, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 107, 107, 105, 107, 294, 107, 296, 107, 107, 107, 69, 70, 71, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 157, 107, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 107, 107, 105, 107, -1, 107, 107, 185, 111, 107, 188, 267, 107, 191, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 107, 107, 105, 107, -1, 107, 107, 107, 292, 107, 294, 107, 296, 107, 298, 107, 107, 107, 107, 106, 108, 107, 306, 107, 107, 105, 310, 108, 312, 108, 106, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 325, 326, 105, -1, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 106, 106, -1, -1, -1, -1, 348, -1, 350, -1, -1, 353, 354, 355, 356, 357, -1, 359, 360, -1, 362, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 321, 322, 323, -1, -1, -1, -1, 406, -1, -1, -1, -1, -1, -1, -1, -1, 415, -1, 417, -1, 419, -1, -1, 422, -1, 424, 69, 70, 71, 428, 429, 430, -1, -1, -1, -1, 435, 358, 437, -1, 439, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, -1, -1, -1, 111, -1, -1, -1, -1, -1, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, 407, 408, 409, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, -1, -1, -1, 111, -1, -1, 440, -1, 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, -1, 26, -1, 28, -1, 472, 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, -1, -1, -1, -1, 72, 73, 74, 75, 76, 77, 78, 79, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, 103, -1, -1, 106, 107, 3, 109, 5, -1, -1, 8, 9, -1, -1, -1, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, 103, -1, -1, -1, 107, 3, 109, 5, 111, -1, 8, 9, -1, -1, -1, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, 109, -1, 111, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -1, 26, -1, 28, -1, -1, 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, -1, -1, -1, -1, 72, 73, 74, 75, 76, 77, 78, 79, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, 103, -1, -1, 106, 107, -1, 109, 110, 3, -1, 5, -1, -1, 8, 9, -1, -1, -1, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, 109, 110, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, -1, 26, -1, 28, -1, -1, 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, -1, -1, -1, -1, 72, 73, 74, 75, 76, 77, 78, 79, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, -1, -1, -1, 103, -1, -1, 106, 107, 3, 109, 5, -1, -1, 8, 9, -1, -1, -1, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 98, -1, 3, -1, 5, 103, -1, 8, 9, 107, -1, 109, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1, -1, -1, 72, 73, 74, 75, 76, -1, -1, -1, -1, 81, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 69, 70, 71, 98, -1, -1, -1, -1, 103, -1, -1, -1, 107, -1, 109, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, 111, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, -1, -1, 108, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 106, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 106, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 106, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 106, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 82, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105, 69, 70, 71, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, -1, -1, 105 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const unsigned char yystos[] = { 0, 113, 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 28, 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, 72, 73, 74, 75, 76, 77, 78, 79, 81, 98, 103, 106, 107, 109, 114, 116, 117, 118, 120, 121, 123, 124, 126, 127, 105, 107, 107, 107, 109, 116, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, 116, 116, 107, 107, 107, 107, 116, 116, 116, 114, 115, 116, 128, 69, 70, 71, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 105, 106, 25, 30, 119, 27, 30, 122, 29, 30, 125, 72, 73, 83, 105, 111, 116, 116, 126, 116, 116, 116, 106, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 126, 126, 116, 116, 116, 108, 3, 108, 108, 3, 108, 108, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 126, 116, 116, 116, 116, 108, 110, 114, 82, 110, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 107, 114, 107, 114, 107, 114, 109, 116, 116, 111, 108, 108, 108, 108, 82, 108, 108, 108, 82, 108, 82, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 82, 82, 108, 108, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 108, 108, 108, 108, 108, 108, 82, 108, 82, 108, 108, 82, 82, 82, 82, 106, 108, 68, 82, 108, 82, 108, 116, 111, 116, 126, 126, 110, 111, 106, 106, 128, 106, 128, 128, 114, 114, 114, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 114, 116, 116, 128, 105, 108, 108, 108, 108, 108, 108, 108, 108, 82, 108, 82, 108, 82, 108, 108, 82, 108, 82, 108, 108, 108, 82, 82, 82, 108, 108, 108, 108, 82, 108, 82, 108, 106, 108, 108, 108, 111, 116, 114, 114, 114, 106, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, 114, 111, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 108, 114 }; #if ! defined (YYSIZE_T) && defined (__SIZE_TYPE__) # define YYSIZE_T __SIZE_TYPE__ #endif #if ! defined (YYSIZE_T) && defined (size_t) # define YYSIZE_T size_t #endif #if ! defined (YYSIZE_T) # if defined (__STDC__) || defined (__cplusplus) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # endif #endif #if ! defined (YYSIZE_T) # define YYSIZE_T unsigned int #endif #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 yyerrlab1 /* 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. */ #define YYFAIL goto yyerrlab #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ yychar1 = YYTRANSLATE (yychar); \ YYPOPSTACK; \ goto yybackup; \ } \ else \ { \ yyerror ("syntax error: cannot back up"); \ YYERROR; \ } \ while (0) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Compute the default location (before the actions are run). */ #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ Current.first_line = Rhs[1].first_line; \ Current.first_column = Rhs[1].first_column; \ Current.last_line = Rhs[N].last_line; \ Current.last_column = Rhs[N].last_column; #endif /* YYLEX -- calling `yylex' with the right arguments. */ #define YYLEX yylex () /* 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 (0) # define YYDSYMPRINT(Args) \ do { \ if (yydebug) \ yysymprint Args; \ } while (0) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YYDSYMPRINT(Args) #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 SIZE_MAX < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #if YYMAXDEPTH == 0 # undef YYMAXDEPTH #endif #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. */ static YYSIZE_T # if defined (__STDC__) || defined (__cplusplus) yystrlen (const char *yystr) # else yystrlen (yystr) const char *yystr; # endif { register const char *yys = yystr; while (*yys++ != '\0') continue; return yys - yystr - 1; } # 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. */ static char * # if defined (__STDC__) || defined (__cplusplus) yystpcpy (char *yydest, const char *yysrc) # else yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; # endif { register char *yyd = yydest; register const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif #endif /* !YYERROR_VERBOSE */ #if YYDEBUG /*-----------------------------. | Print this symbol on YYOUT. | `-----------------------------*/ static void #if defined (__STDC__) || defined (__cplusplus) yysymprint (FILE* yyout, int yytype, YYSTYPE yyvalue) #else yysymprint (yyout, yytype, yyvalue) FILE* yyout; int yytype; YYSTYPE yyvalue; #endif { /* Pacify ``unused variable'' warnings. */ (void) yyvalue; if (yytype < YYNTOKENS) { YYFPRINTF (yyout, "token %s (", yytname[yytype]); # ifdef YYPRINT YYPRINT (yyout, yytoknum[yytype], yyvalue); # endif } else YYFPRINTF (yyout, "nterm %s (", yytname[yytype]); switch (yytype) { default: break; } YYFPRINTF (yyout, ")"); } #endif /* YYDEBUG. */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ static void #if defined (__STDC__) || defined (__cplusplus) yydestruct (int yytype, YYSTYPE yyvalue) #else yydestruct (yytype, yyvalue) int yytype; YYSTYPE yyvalue; #endif { /* Pacify ``unused variable'' warnings. */ (void) yyvalue; switch (yytype) { default: break; } } /* The user can define YYPARSE_PARAM as the name of an argument to be passed into yyparse. The argument should have type void *. It should actually point to an object. Grammar actions can access the variable by casting it to the proper pointer type. */ #ifdef YYPARSE_PARAM # if defined (__STDC__) || defined (__cplusplus) # define YYPARSE_PARAM_ARG void *YYPARSE_PARAM # define YYPARSE_PARAM_DECL # else # define YYPARSE_PARAM_ARG YYPARSE_PARAM # define YYPARSE_PARAM_DECL void *YYPARSE_PARAM; # endif #else /* !YYPARSE_PARAM */ # define YYPARSE_PARAM_ARG # define YYPARSE_PARAM_DECL #endif /* !YYPARSE_PARAM */ /* Prevent warning if -Wstrict-prototypes. */ #ifdef __GNUC__ # ifdef YYPARSE_PARAM int yyparse (void *); # else int yyparse (void); # endif #endif /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of parse errors so far. */ int yynerrs; int yyparse (YYPARSE_PARAM_ARG) YYPARSE_PARAM_DECL { register int yystate; register int yyn; int yyresult; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* Lookahead token as an internal (translated) token number. */ int yychar1 = 0; /* Three stacks and their tools: `yyss': related to states, `yyvs': related to semantic values, `yyls': related to locations. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ short yyssa[YYINITDEPTH]; short *yyss = yyssa; register short *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs = yyvsa; register YYSTYPE *yyvsp; #define YYPOPSTACK (yyvsp--, yyssp--) YYSIZE_T yystacksize = YYINITDEPTH; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; /* When reducing, the number of symbols on the RHS of the reduced rule. */ int yylen; 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 (yyssp >= yyss + yystacksize - 1) { /* 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; short *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 ("parser stack overflow", &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyoverflowlab; # else /* Extend the stack our own way. */ if (yystacksize >= YYMAXDEPTH) goto yyoverflowlab; yystacksize *= 2; if (yystacksize > YYMAXDEPTH) yystacksize = YYMAXDEPTH; { short *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyoverflowlab; YYSTACK_RELOCATE (yyss); YYSTACK_RELOCATE (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 (yyssp >= yyss + yystacksize - 1) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); 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. */ /* yyresume: */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yyn == YYPACT_NINF) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* yychar is either YYEMPTY or YYEOF or a valid token in external form. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } /* Convert token to internal form (in yychar1) for indexing tables with. */ if (yychar <= 0) /* This means end of input. */ { yychar1 = 0; yychar = YYEOF; /* Don't call YYLEX any more. */ YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yychar1 = YYTRANSLATE (yychar); /* We have to keep this `#if YYDEBUG', since we use variables which are defined only if `YYDEBUG' is set. */ YYDPRINTF ((stderr, "Next token is ")); YYDSYMPRINT ((stderr, yychar1, yylval)); YYDPRINTF ((stderr, "\n")); } /* If the proper action on seeing token YYCHAR1 is to reduce or to detect an error, take that action. */ yyn += yychar1; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yychar1) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yyn == 0 || yyn == YYTABLE_NINF) goto yyerrlab; yyn = -yyn; goto yyreduce; } if (yyn == YYFINAL) YYACCEPT; /* Shift the lookahead token. */ YYDPRINTF ((stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1])); /* Discard the token being shifted unless it is eof. */ if (yychar != YYEOF) yychar = YYEMPTY; *++yyvsp = yylval; /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; yystate = yyn; 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]; #if YYDEBUG /* We have to keep this `#if YYDEBUG', since we use variables which are defined only if `YYDEBUG' is set. */ if (yydebug) { int yyi; YYFPRINTF (stderr, "Reducing via rule %d (line %d), ", yyn - 1, yyrline[yyn]); /* Print the symbols being reduced, and their result. */ for (yyi = yyprhs[yyn]; yyrhs[yyi] >= 0; yyi++) YYFPRINTF (stderr, "%s ", yytname[yyrhs[yyi]]); YYFPRINTF (stderr, " -> %s\n", yytname[yyr1[yyn]]); } #endif switch (yyn) { case 3: #line 100 "parser.yy" { tree->start (); } break; case 4: #line 104 "parser.yy" { yyval.node = tree->push_node (new N_empty () ); } break; case 5: #line 105 "parser.yy" { yyval.node = tree->push_node ( new N_end () ); } break; case 6: #line 106 "parser.yy" { yyval.node = tree->push_node ( new N_eof () ); } break; case 7: #line 107 "parser.yy" { yyval.node = tree->push_node (new N_empty () ); inside_var_type=false; type_into=""; } break; case 8: #line 112 "parser.yy" { yyval.node = yyvsp[-1].node; } break; case 9: #line 113 "parser.yy" { yyval.node = tree->push_node ( new N_undef (yyvsp[-2].node) ); } break; case 10: #line 114 "parser.yy" { if (inside_var_type) { N_var *var1=new N_var (type_into,'s'); N_var *var2=new N_var (type_into,'s'); tree->push_node (var1); tree->push_node (var2); yyval.node=tree->push_node (new N_assign (var1, new N_plus (var2, new N_const (yyvsp[0].gen)))); } else { yyval.node = tree->push_node (new N_echo (new N_const (yyvsp[0].gen)) ); } } break; case 11: #line 126 "parser.yy" { inside_var_type=true; type_into=string(yyvsp[0].str); N_var *var=new N_var (type_into,'s'); N_const *con=new N_const (new Gen_type ("")); tree->push_node (var); tree->push_node (con); yyval.node = tree->push_node (new N_assign (var, con, true)); } break; case 12: #line 135 "parser.yy" { N_var *var1 = new N_var (type_into,'s'); N_var *var2 = new N_var (type_into,'s'); tree->push_node (var1); tree->push_node (var2); if (inside_var_type) { N_var *var1 = new N_var (type_into,'s'); N_var *var2 = new N_var (type_into,'s'); tree->push_node (var1); tree->push_node (var2); yyval.node = tree->push_node (new N_assign (var1, new N_plus (var2, yyvsp[-1].node))); } else { yyval.node = tree->push_node ( new N_echo (yyvsp[-1].node) ); } } break; case 13: #line 151 "parser.yy" { yyval.node = tree->push_node ( new N_verbatim (yyvsp[-2].node) ); } break; case 14: #line 152 "parser.yy" { /* EXPERIMENTAL FEATURE: while in deps-mode, if --fast set, doesn't open file */ if (tree->is_deps ()) ((Deps_tree *)tree)->unset_first_file (); yyval.node = tree->push_node ( new N_include (yyvsp[-2].node) ); string file = (yyvsp[-2].node->exec ()).get_string (); if (tree->is_exec () || tree->is_deps () ) { Msg::inst()->save_buffer (); if ( ! cowswitch (file.c_str ())) { if (set_f_w_dir (file)) { Msg::inst()->sys_fatal ("can't change directory to " + get_dir_from_file_name (file), get_dir_from_file_name (file)); } if (tree->is_deps ()) { ((Deps_tree *)tree)->refresh (file); } } } else { // Even if we don't open the file, we check for its existence if (check_file (file.c_str ()) != EXIT_SUCCESS) { Msg::inst()->sys_fatal ( file + ": No such file or directory"); } unput_brace (); } } break; case 15: #line 188 "parser.yy" { if (tree->is_deps ()) ((Deps_tree *)tree)->unset_first_file (); yyval.node = tree->push_node ( new N_arg_include (yyvsp[-4].node, yyvsp[-2].node) ); string file = (yyvsp[-4].node->exec ()).get_string (); if (tree->is_exec () || tree->is_deps () ) { Msg::inst()->save_buffer (); if ( ! cowswitch (file.c_str ())) { if (set_f_w_dir (file)) { Msg::inst()->sys_fatal ("can't change directory to " + get_dir_from_file_name (file), get_dir_from_file_name (file)); } if (tree->is_deps ()) { ((Deps_tree *)tree)->refresh (file); } } } else { // Even if we don't open the file, we check for its existence if (check_file (file.c_str ()) != EXIT_SUCCESS) { Msg::inst()->sys_fatal (get_dir_from_file_name (file) + ": No such file or directory"); } unput_brace (); } } break; case 16: #line 222 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 17: #line 223 "parser.yy" { yyval.node = tree->push_node ( new N_if_else (yyvsp[-2].node, yyvsp[0].node) ); } break; case 18: #line 224 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 19: #line 225 "parser.yy" { yyval.node = tree->push_node ( new N_if_else (yyvsp[-2].node, yyvsp[0].node) ); } break; case 20: #line 226 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 21: #line 227 "parser.yy" { yyval.node = tree->push_node ( new N_if_else (yyvsp[-2].node, yyvsp[0].node) ); } break; case 22: #line 228 "parser.yy" { yyval.node = yyvsp[-1].node; } break; case 23: #line 230 "parser.yy" { yyval.node = tree->push_node (new N_for (yyvsp[-6].node, yyvsp[-4].node, yyvsp[-2].node, yyvsp[0].node) ); } break; case 24: #line 232 "parser.yy" { yyval.node = tree->push_node (new N_while (yyvsp[-2].node, yyvsp[0].node) ); } break; case 25: #line 233 "parser.yy" { yyval.node = tree->push_node (new N_foreach (yyvsp[-4].node, yyvsp[-2].node, yyvsp[0].node) ); } break; case 26: #line 238 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 27: #line 239 "parser.yy" { yyval.node = tree->push_node ( new N_stmt (yyvsp[-1].node, yyvsp[0].node) ); } break; case 28: #line 243 "parser.yy" { yyval.node = tree->push_node ( new N_const (yyvsp[0].gen) ); } break; case 29: #line 244 "parser.yy" { yyval.node = yyvsp[-1].node; } break; case 30: #line 245 "parser.yy" {yyval.node = yyvsp[0].node; } break; case 31: #line 246 "parser.yy" { yyval.node = tree->push_node ( new N_assign (yyvsp[-2].node, yyvsp[0].node) ); } break; case 32: #line 247 "parser.yy" { yyval.node = tree->push_node ( new N_empty_array (yyvsp[-3].node) ); } break; case 33: #line 248 "parser.yy" { yyval.node = tree->push_node ( new N_uminus (yyvsp[0].node)); } break; case 34: #line 249 "parser.yy" { yyval.node = tree->push_node (new N_gt (yyvsp[-2].node, yyvsp[0].node)); } break; case 35: #line 250 "parser.yy" { yyval.node = tree->push_node (new N_lt (yyvsp[-2].node, yyvsp[0].node)); } break; case 36: #line 251 "parser.yy" { yyval.node = tree->push_node (new N_ge (yyvsp[-2].node, yyvsp[0].node)); } break; case 37: #line 252 "parser.yy" { yyval.node = tree->push_node (new N_le (yyvsp[-2].node, yyvsp[0].node)); } break; case 38: #line 253 "parser.yy" { yyval.node = tree->push_node (new N_plus (yyvsp[-2].node, yyvsp[0].node)); } break; case 39: #line 254 "parser.yy" { yyval.node = tree->push_node (new N_minus (yyvsp[-2].node, yyvsp[0].node)); } break; case 40: #line 255 "parser.yy" { yyval.node = tree->push_node (new N_times (yyvsp[-2].node, yyvsp[0].node)); } break; case 41: #line 256 "parser.yy" { yyval.node = tree->push_node (new N_div (yyvsp[-2].node, yyvsp[0].node)); } break; case 42: #line 257 "parser.yy" { yyval.node = tree->push_node (new N_mod (yyvsp[-2].node, yyvsp[0].node)); } break; case 43: #line 258 "parser.yy" { yyval.node = tree->push_node (new N_pow (yyvsp[-2].node, yyvsp[0].node)); } break; case 44: #line 259 "parser.yy" { yyval.node = tree->push_node (new N_epp (yyvsp[-1].node, 1, true)); } break; case 45: #line 260 "parser.yy" { yyval.node = tree->push_node (new N_epp (yyvsp[-1].node, -1, true)); } break; case 46: #line 261 "parser.yy" { yyval.node = tree->push_node (new N_epp (yyvsp[0].node, 1, false)); } break; case 47: #line 262 "parser.yy" { yyval.node = tree->push_node (new N_epp (yyvsp[0].node, -1, false)); } break; case 48: #line 263 "parser.yy" { yyval.node=tree->push_node (new N_assign_rec (yyvsp[-2].node, new N_plus (yyvsp[-2].node, yyvsp[0].node)) ); } break; case 49: #line 265 "parser.yy" { yyval.node=tree->push_node (new N_assign_rec (yyvsp[-2].node, new N_minus (yyvsp[-2].node, yyvsp[0].node)) ); } break; case 50: #line 267 "parser.yy" { yyval.node=tree->push_node (new N_assign_rec (yyvsp[-2].node, new N_times (yyvsp[-2].node, yyvsp[0].node)) ); } break; case 51: #line 269 "parser.yy" { yyval.node=tree->push_node (new N_assign_rec (yyvsp[-2].node, new N_div (yyvsp[-2].node, yyvsp[0].node)) ); } break; case 52: #line 271 "parser.yy" { yyval.node=tree->push_node (new N_assign_rec (yyvsp[-2].node, new N_mod (yyvsp[-2].node, yyvsp[0].node)) ); } break; case 53: #line 273 "parser.yy" { yyval.node=tree->push_node (new N_assign_rec (yyvsp[-2].node, new N_pow (yyvsp[-2].node, yyvsp[0].node)) ); } break; case 54: #line 275 "parser.yy" { yyval.node = tree->push_node ( new N_not (yyvsp[0].node)); } break; case 55: #line 276 "parser.yy" { yyval.node = tree->push_node (new N_eq (yyvsp[-2].node, yyvsp[0].node)); } break; case 56: #line 277 "parser.yy" { yyval.node = tree->push_node (new N_w_eq (yyvsp[-2].node, yyvsp[0].node)); } break; case 57: #line 278 "parser.yy" { yyval.node = tree->push_node (new N_neq (yyvsp[-2].node, yyvsp[0].node)); } break; case 58: #line 279 "parser.yy" { yyval.node = tree->push_node (new N_w_neq (yyvsp[-2].node, yyvsp[0].node)); } break; case 59: #line 280 "parser.yy" { yyval.node = tree->push_node (new N_and (yyvsp[-2].node, yyvsp[0].node)); } break; case 60: #line 281 "parser.yy" { yyval.node = tree->push_node (new N_or (yyvsp[-2].node, yyvsp[0].node)); } break; case 61: #line 282 "parser.yy" { yyval.node = tree->push_node (new N_fix_list (yyvsp[-1].node)); } break; case 62: #line 283 "parser.yy" { yyval.node = tree->push_node (new N_echo (yyvsp[-1].node)); } break; case 63: #line 284 "parser.yy" { yyval.node = tree->push_node (new N_print (yyvsp[-1].node)); } break; case 64: #line 285 "parser.yy" { yyval.node = tree->push_node (new N_date (yyvsp[-1].node)); } break; case 65: #line 286 "parser.yy" { yyval.node = tree->push_node (new N_fdate (yyvsp[-3].node, yyvsp[-1].node)); } break; case 66: #line 287 "parser.yy" { yyval.node = tree->push_node (new N_fsize (yyvsp[-3].node, yyvsp[-1].node)); } break; case 67: #line 288 "parser.yy" { yyval.node = tree->push_node (new N_adj_link () );} break; case 68: #line 289 "parser.yy" { yyval.node = tree->push_node (new N_input () ); } break; case 69: #line 290 "parser.yy" { yyval.node = tree->push_node (new N_input (yyvsp[-1].gen) ); } break; case 70: #line 291 "parser.yy" { yyval.node = tree->push_node (new N_abs_input () ); } break; case 71: #line 292 "parser.yy" { yyval.node = tree->push_node (new N_output () ); } break; case 72: #line 293 "parser.yy" { yyval.node = tree->push_node (new N_output (yyvsp[-1].gen) ); } break; case 73: #line 294 "parser.yy" { yyval.node = tree->push_node (new N_abs_output () ); } break; case 74: #line 295 "parser.yy" { yyval.node = tree->push_node (new N_substr (yyvsp[-3].node, yyvsp[-1].node));} break; case 75: #line 296 "parser.yy" { yyval.node = tree->push_node (new N_substr (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node)); } break; case 76: #line 298 "parser.yy" { yyval.node = tree->push_node (new N_find (yyvsp[-3].node, yyvsp[-1].node,NULL));} break; case 77: #line 300 "parser.yy" { yyval.node = tree->push_node (new N_find (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node)); } break; case 78: #line 302 "parser.yy" { yyval.node = tree->push_node (new N_find_match (yyvsp[-3].node, yyvsp[-1].node, false));} break; case 79: #line 304 "parser.yy" { yyval.node = tree->push_node (new N_find_match (yyvsp[-5].node, yyvsp[-3].node, true)); } break; case 80: #line 306 "parser.yy" { yyval.node = tree->push_node (new N_find_match (yyvsp[-3].node, yyvsp[-1].node, false, true));} break; case 81: #line 308 "parser.yy" { yyval.node = tree->push_node (new N_find_match (yyvsp[-5].node, yyvsp[-3].node, true, true)); } break; case 82: #line 310 "parser.yy" { yyval.node = tree->push_node (new N_find (yyvsp[-3].node, yyvsp[-1].node, NULL, true)); } break; case 83: #line 312 "parser.yy" { yyval.node = tree->push_node (new N_find (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node, true)); } break; case 84: #line 314 "parser.yy" { yyval.node = tree->push_node (new N_char (yyvsp[-3].node, yyvsp[-1].node)); } break; case 85: #line 315 "parser.yy" { yyval.node = tree->push_node (new N_startswith (yyvsp[-3].node, yyvsp[-1].node)); } break; case 86: #line 317 "parser.yy" { yyval.node = tree->push_node (new N_endswith (yyvsp[-3].node, yyvsp[-1].node)); } break; case 87: #line 319 "parser.yy" { yyval.node = tree->push_node (new N_insert (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node) ); } break; case 88: #line 321 "parser.yy" { yyval.node = tree->push_node (new N_replace (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node, false) ); } break; case 89: #line 323 "parser.yy" { yyval.node = tree->push_node (new N_replace (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node, true) ); } break; case 90: #line 325 "parser.yy" { yyval.node = tree->push_node (new N_trim (yyvsp[-1].node)); } break; case 91: #line 326 "parser.yy" { yyval.node = tree->push_node (new N_ltrim (yyvsp[-1].node)); } break; case 92: #line 327 "parser.yy" { yyval.node = tree->push_node (new N_rtrim (yyvsp[-1].node)); } break; case 93: #line 328 "parser.yy" { yyval.node = tree->push_node (new N_ch_case (yyvsp[-1].node, true)); } break; case 94: #line 329 "parser.yy" { yyval.node = tree->push_node (new N_ch_case (yyvsp[-1].node)); } break; case 95: #line 330 "parser.yy" { yyval.node = tree->push_node (new N_length (yyvsp[-1].node)); } break; case 96: #line 331 "parser.yy" { yyval.node = tree->push_node (new N_raiseerr (yyvsp[-1].node)); } break; case 97: #line 333 "parser.yy" { yyval.node = tree->push_node (new N_raiseerr (yyvsp[-3].node, yyvsp[-1].node)); } break; case 98: #line 334 "parser.yy" { yyval.node = tree->push_node (new N_raisewarn (yyvsp[-1].node)); } break; case 99: #line 336 "parser.yy" { yyval.node = tree->push_node (new N_raisewarn (yyvsp[-3].node, yyvsp[-1].node)); } break; case 100: #line 337 "parser.yy" { yyval.node = tree->push_node (new N_term (yyvsp[-1].node)); } break; case 101: #line 338 "parser.yy" { yyval.node = tree->push_node (new N_cmd (yyvsp[-1].node) ); } break; case 102: #line 339 "parser.yy" { yyval.node = tree->push_node (new N_cmd (yyvsp[-1].node, true)); } break; case 103: #line 340 "parser.yy" { yyval.node = tree->push_node (new N_exec (yyvsp[-1].node) ); } break; case 104: #line 341 "parser.yy" { yyval.node = tree->push_node (new N_exec (yyvsp[-1].node, true)); } break; case 105: #line 343 "parser.yy" { yyval.node = tree->push_node (new N_exec (yyvsp[-3].node, yyvsp[-1].node)); } break; case 106: #line 345 "parser.yy" { yyval.node = tree->push_node (new N_exec (yyvsp[-3].node, yyvsp[-1].node, true)); } break; case 107: #line 346 "parser.yy" { yyval.node = tree->push_node ( new N_tobool (yyvsp[-1].node) ); } break; case 108: #line 347 "parser.yy" { yyval.node = tree->push_node ( new N_toint (yyvsp[-1].node) ); } break; case 109: #line 348 "parser.yy" { yyval.node = tree->push_node ( new N_tostring (yyvsp[-1].node) ); } break; case 110: #line 349 "parser.yy" { yyval.node = tree->push_node ( new N_toarray (yyvsp[-1].node) ); } break; case 111: #line 350 "parser.yy" { yyval.node = tree->push_node ( new N_isint (yyvsp[-1].node) ); } break; case 112: #line 351 "parser.yy" { yyval.node = tree->push_node ( new N_isstring (yyvsp[-1].node) ); } break; case 113: #line 352 "parser.yy" { yyval.node = tree->push_node ( new N_isarray (yyvsp[-1].node) ); } break; case 114: #line 353 "parser.yy" { yyval.node = tree->push_node (new N_tok (yyvsp[-3].node, yyvsp[-1].node));} break; case 115: #line 354 "parser.yy" { yyval.node = tree->push_node (new N_join (yyvsp[-3].node, yyvsp[-1].node));} break; case 116: #line 355 "parser.yy" { yyval.node = tree->push_node (new N_del (yyvsp[-3].node, yyvsp[-1].node, NULL)); } break; case 117: #line 357 "parser.yy" { yyval.node = tree->push_node (new N_del (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node)); } break; case 118: #line 359 "parser.yy" { yyval.node = tree->push_node (new N_push (yyvsp[-3].node, yyvsp[-1].node, NULL)); } break; case 119: #line 361 "parser.yy" { yyval.node = tree->push_node (new N_push (yyvsp[-5].node, yyvsp[-3].node, yyvsp[-1].node)); } break; case 120: #line 363 "parser.yy" { yyval.node = tree->push_node (new N_random (yyvsp[-3].node, yyvsp[-1].node)); } break; case 121: #line 365 "parser.yy" { yyval.node = tree->push_node (new N_fileexists (yyvsp[-1].node)); } break; case 122: #line 367 "parser.yy" { yyval.node = tree->push_node (new N_fill (yyvsp[-3].node, yyvsp[-1].node)); } break; case 123: #line 372 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 124: #line 373 "parser.yy" { yyval.node = tree->push_node (new N_cond_seq (yyvsp[-1].node, yyvsp[0].node)); } break; case 125: #line 377 "parser.yy" { yyval.node = tree->push_node (new N_if (yyvsp[-2].node, yyvsp[0].node)); } break; case 126: #line 381 "parser.yy" { yyval.node = tree->push_node (new N_if (yyvsp[-2].node, yyvsp[0].node)); } break; case 127: #line 385 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 128: #line 386 "parser.yy" { yyval.node = tree->push_node (new N_cond_seq (yyvsp[-1].node, yyvsp[0].node)); } break; case 129: #line 390 "parser.yy" { yyval.node = tree->push_node (new N_ifdef (yyvsp[-2].node, yyvsp[0].node)); } break; case 130: #line 394 "parser.yy" { yyval.node = tree->push_node (new N_ifdef (yyvsp[-2].node, yyvsp[0].node)); } break; case 131: #line 398 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 132: #line 399 "parser.yy" { yyval.node = tree->push_node (new N_cond_seq (yyvsp[-1].node, yyvsp[0].node)); } break; case 133: #line 403 "parser.yy" { yyval.node = tree->push_node (new N_ifndef (yyvsp[-2].node, yyvsp[0].node)); } break; case 134: #line 407 "parser.yy" { yyval.node = tree->push_node (new N_ifndef (yyvsp[-2].node, yyvsp[0].node)); } break; case 135: #line 411 "parser.yy" { yyval.node = tree->push_node (new N_var (yyvsp[0].str, 's')); } break; case 136: #line 412 "parser.yy" { yyval.node = tree->push_node (new N_ind_expr (yyvsp[-1].node, 's')); } break; case 137: #line 413 "parser.yy" { yyval.node = tree->push_node (new N_var (yyvsp[-2].str, 'a')); } break; case 138: #line 414 "parser.yy" { yyval.node=tree->push_node (new N_ind_expr (yyvsp[-3].node, 'a')); } break; case 139: #line 415 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 140: #line 420 "parser.yy" { yyval.node = tree->push_node (new N_var (yyvsp[-3].str, yyvsp[-1].node)); } break; case 141: #line 421 "parser.yy" { yyval.node = tree->push_node (new N_var (yyvsp[-3].node, yyvsp[-1].node)); } break; case 142: #line 422 "parser.yy" { yyval.node=tree->push_node (new N_ind_expr (yyvsp[-4].node, yyvsp[-1].node)); } break; case 143: #line 424 "parser.yy" { yyval.node = tree->push_node (new N_var (yyvsp[-3].node, yyvsp[-1].node)); } break; case 144: #line 428 "parser.yy" { yyval.node = yyvsp[0].node; } break; case 145: #line 429 "parser.yy" { yyval.node = tree->push_node (new N_list (yyvsp[-2].node, yyvsp[0].node) ); } break; } /* Line 1016 of /usr/local/share/bison/yacc.c. */ #line 3246 "y.tab.c" yyvsp -= yylen; yyssp -= yylen; #if YYDEBUG if (yydebug) { short *yyssp1 = yyss - 1; YYFPRINTF (stderr, "state stack now"); while (yyssp1 != yyssp) YYFPRINTF (stderr, " %d", *++yyssp1); YYFPRINTF (stderr, "\n"); } #endif *++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: /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if YYERROR_VERBOSE yyn = yypact[yystate]; if (YYPACT_NINF < yyn && yyn < YYLAST) { YYSIZE_T yysize = 0; int yytype = YYTRANSLATE (yychar); char *yymsg; int yyx, yycount; yycount = 0; /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. */ for (yyx = yyn < 0 ? -yyn : 0; yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) yysize += yystrlen (yytname[yyx]) + 15, yycount++; yysize += yystrlen ("parse error, unexpected ") + 1; yysize += yystrlen (yytname[yytype]); yymsg = (char *) YYSTACK_ALLOC (yysize); if (yymsg != 0) { char *yyp = yystpcpy (yymsg, "parse error, unexpected "); yyp = yystpcpy (yyp, yytname[yytype]); if (yycount < 5) { yycount = 0; for (yyx = yyn < 0 ? -yyn : 0; yyx < (int) (sizeof (yytname) / sizeof (char *)); yyx++) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR) { const char *yyq = ! yycount ? ", expecting " : " or "; yyp = yystpcpy (yyp, yyq); yyp = yystpcpy (yyp, yytname[yyx]); yycount++; } } yyerror (yymsg); YYSTACK_FREE (yymsg); } else yyerror ("parse error; also virtual memory exhausted"); } else #endif /* YYERROR_VERBOSE */ yyerror ("parse error"); } goto yyerrlab1; /*----------------------------------------------------. | yyerrlab1 -- error raised explicitly by an action. | `----------------------------------------------------*/ yyerrlab1: if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ /* Return failure if at end of input. */ if (yychar == YYEOF) { /* Pop the error token. */ YYPOPSTACK; /* Pop the rest of the stack. */ while (yyssp > yyss) { YYDPRINTF ((stderr, "Error: popping ")); YYDSYMPRINT ((stderr, yystos[*yyssp], *yyvsp)); YYDPRINTF ((stderr, "\n")); yydestruct (yystos[*yyssp], *yyvsp); YYPOPSTACK; } YYABORT; } YYDPRINTF ((stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1])); yydestruct (yychar1, yylval); yychar = YYEMPTY; } /* Else will try to reuse lookahead token after shifting the error token. */ yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (yyn != YYPACT_NINF) { 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; YYDPRINTF ((stderr, "Error: popping ")); YYDSYMPRINT ((stderr, yystos[*yyssp], *yyvsp)); YYDPRINTF ((stderr, "\n")); yydestruct (yystos[yystate], *yyvsp); yyvsp--; yystate = *--yyssp; #if YYDEBUG if (yydebug) { short *yyssp1 = yyss - 1; YYFPRINTF (stderr, "Error: state stack now"); while (yyssp1 != yyssp) YYFPRINTF (stderr, " %d", *++yyssp1); YYFPRINTF (stderr, "\n"); } #endif } if (yyn == YYFINAL) YYACCEPT; YYDPRINTF ((stderr, "Shifting error token, ")); *++yyvsp = yylval; yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #ifndef yyoverflow /*----------------------------------------------. | yyoverflowlab -- parser overflow comes here. | `----------------------------------------------*/ yyoverflowlab: yyerror ("parser stack overflow"); yyresult = 2; /* Fall through. */ #endif yyreturn: #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif return yyresult; } #line 432 "parser.yy" void yyerror (const char *str) { string err_token = string (yytext); if (err_token == "") { Msg::inst()->error (string (str) ); } else { unsigned int eol_pos = err_token.find ("\n"); if (eol_pos != string::npos) { err_token = err_token.substr (0, eol_pos); int n_eol=0; int start = -1; string token_string (yytext); while ((start=token_string.find ("\n", start + 1) )!=(int)string::npos) n_eol++; Msg::inst()->error (n_eol, string (str) + " before `" + err_token + "'"); } else { Msg::inst()->error (string (str) + " before `" + err_token + "'"); } } }