#include "config.h" #include "util/configyyrename.h" #line 3 "" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 #define YY_FLEX_SUBMINOR_VERSION 4 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #ifndef SIZE_MAX #define SIZE_MAX (~(size_t)0) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ /* begin standard C++ headers. */ /* TODO: this is always defined, so inline it */ #define yyconst const #if defined(__GNUC__) && __GNUC__ >= 3 #define yynoreturn __attribute__((__noreturn__)) #else #define yynoreturn #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an * integer in range [0..255] for use as an array index. */ #define YY_SC_TO_UI(c) ((YY_CHAR) (c)) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart( yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ int yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = NULL; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart ( FILE *input_file ); void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size ); void yy_delete_buffer ( YY_BUFFER_STATE b ); void yy_flush_buffer ( YY_BUFFER_STATE b ); void yypush_buffer_state ( YY_BUFFER_STATE new_buffer ); void yypop_buffer_state ( void ); static void yyensure_buffer_stack ( void ); static void yy_load_buffer_state ( void ); static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size ); YY_BUFFER_STATE yy_scan_string ( const char *yy_str ); YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len ); void *yyalloc ( yy_size_t ); void *yyrealloc ( void *, yy_size_t ); void yyfree ( void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer( yyin, YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef flex_uint8_t YY_CHAR; FILE *yyin = NULL, *yyout = NULL; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #ifdef yytext_ptr #undef yytext_ptr #endif #define yytext_ptr yytext static yy_state_type yy_get_previous_state ( void ); static yy_state_type yy_try_NUL_trans ( yy_state_type current_state ); static int yy_get_next_buffer ( void ); static void yynoreturn yy_fatal_error ( const char* msg ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ (yytext_ptr) -= (yy_more_len); \ yyleng = (int) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 294 #define YY_END_OF_BUFFER 295 /* This struct is not used in this scanner, but its presence is necessary. */ struct yy_trans_info { flex_int32_t yy_verify; flex_int32_t yy_nxt; }; static const flex_int16_t yy_accept[2913] = { 0, 1, 1, 276, 276, 280, 280, 284, 284, 288, 288, 1, 1, 295, 292, 1, 274, 274, 293, 2, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 293, 276, 277, 277, 278, 293, 280, 281, 281, 282, 293, 287, 284, 285, 285, 286, 293, 288, 289, 289, 290, 293, 291, 275, 2, 279, 291, 293, 292, 0, 1, 2, 2, 2, 2, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 276, 0, 280, 0, 287, 0, 284, 288, 0, 291, 0, 2, 2, 291, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 291, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 114, 292, 292, 292, 292, 292, 292, 292, 291, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 96, 292, 292, 292, 292, 292, 292, 8, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 119, 292, 291, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 269, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 291, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 54, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 214, 292, 14, 15, 292, 18, 17, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 113, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 198, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 3, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 291, 292, 292, 292, 292, 292, 292, 292, 264, 292, 292, 263, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 283, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 57, 292, 238, 292, 292, 292, 292, 292, 292, 292, 292, 270, 271, 292, 292, 292, 292, 292, 58, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 187, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 20, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 138, 292, 292, 283, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 94, 292, 292, 292, 292, 292, 292, 292, 246, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 159, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 137, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 93, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 31, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 32, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 55, 292, 292, 292, 292, 292, 292, 292, 292, 292, 112, 292, 292, 292, 292, 292, 111, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 56, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 160, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 45, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 229, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 49, 292, 50, 292, 292, 292, 292, 292, 97, 292, 98, 292, 292, 292, 292, 95, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 7, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 207, 292, 292, 292, 292, 140, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 46, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 179, 292, 178, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 16, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 59, 292, 292, 292, 292, 292, 292, 292, 292, 186, 292, 292, 292, 292, 292, 292, 100, 292, 99, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 170, 292, 292, 292, 292, 292, 292, 292, 292, 120, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 78, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 82, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 53, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 173, 174, 292, 292, 292, 240, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 6, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 244, 292, 292, 292, 265, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 41, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 43, 292, 292, 292, 292, 292, 292, 292, 292, 166, 292, 292, 292, 115, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 191, 292, 167, 292, 292, 292, 204, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 44, 292, 292, 292, 292, 292, 292, 292, 292, 292, 117, 105, 292, 106, 292, 292, 292, 104, 292, 292, 292, 292, 292, 292, 292, 292, 135, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 228, 292, 292, 292, 292, 292, 292, 292, 292, 168, 292, 292, 292, 292, 292, 171, 292, 177, 292, 292, 292, 292, 292, 203, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 92, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 51, 292, 292, 292, 25, 292, 292, 292, 292, 292, 292, 292, 292, 292, 19, 292, 292, 292, 292, 292, 292, 26, 35, 292, 145, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 67, 69, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 248, 292, 292, 292, 215, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 107, 292, 292, 292, 292, 292, 292, 292, 292, 292, 134, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 259, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 139, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 197, 292, 292, 292, 292, 292, 292, 292, 292, 268, 292, 292, 292, 292, 292, 292, 292, 292, 292, 156, 292, 292, 292, 292, 292, 292, 292, 292, 101, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 151, 292, 161, 292, 292, 292, 292, 292, 123, 292, 292, 292, 292, 292, 88, 292, 292, 292, 292, 189, 292, 292, 292, 292, 292, 292, 205, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 220, 292, 292, 292, 292, 292, 292, 292, 292, 292, 116, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 155, 292, 292, 292, 292, 292, 70, 71, 292, 292, 292, 292, 292, 52, 292, 292, 292, 292, 292, 77, 162, 292, 180, 292, 208, 292, 292, 172, 241, 292, 292, 292, 292, 292, 63, 292, 164, 292, 292, 292, 292, 292, 9, 292, 292, 292, 91, 292, 292, 292, 292, 233, 292, 292, 292, 188, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 154, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 141, 292, 247, 292, 292, 292, 292, 219, 292, 292, 292, 292, 292, 292, 292, 292, 199, 292, 292, 292, 292, 239, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 262, 292, 163, 292, 292, 292, 292, 292, 292, 292, 62, 64, 292, 292, 292, 292, 292, 292, 292, 90, 292, 292, 292, 292, 231, 292, 292, 292, 243, 292, 292, 292, 292, 292, 292, 292, 193, 33, 27, 29, 292, 292, 292, 292, 292, 292, 292, 292, 292, 34, 292, 28, 30, 292, 292, 292, 292, 292, 292, 292, 292, 87, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 195, 192, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 61, 292, 292, 118, 292, 108, 292, 292, 292, 292, 292, 292, 292, 292, 136, 13, 292, 292, 292, 292, 292, 292, 292, 292, 292, 257, 292, 260, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 12, 292, 292, 21, 292, 292, 292, 237, 292, 292, 292, 245, 292, 65, 292, 201, 292, 292, 194, 292, 292, 60, 292, 292, 292, 292, 22, 292, 42, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 150, 149, 292, 292, 292, 292, 292, 292, 292, 292, 292, 196, 190, 292, 206, 292, 292, 249, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 72, 292, 292, 292, 232, 292, 292, 292, 292, 176, 292, 292, 292, 292, 200, 292, 292, 292, 292, 292, 292, 292, 292, 266, 267, 147, 66, 292, 292, 157, 292, 292, 102, 103, 292, 292, 292, 292, 142, 292, 144, 292, 181, 292, 292, 292, 292, 148, 292, 292, 209, 292, 292, 292, 292, 292, 292, 292, 125, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 216, 292, 292, 292, 23, 292, 242, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 182, 292, 292, 230, 292, 261, 292, 175, 292, 292, 292, 292, 47, 292, 292, 292, 292, 4, 292, 292, 124, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 212, 36, 37, 292, 292, 292, 292, 292, 292, 292, 250, 292, 292, 292, 292, 292, 292, 218, 292, 292, 292, 185, 292, 292, 292, 292, 292, 292, 292, 292, 292, 75, 292, 48, 236, 292, 213, 292, 292, 292, 292, 11, 292, 292, 292, 292, 292, 292, 292, 183, 79, 292, 39, 292, 292, 292, 292, 292, 292, 292, 292, 153, 292, 292, 292, 292, 292, 127, 292, 292, 292, 292, 292, 292, 292, 292, 292, 217, 121, 292, 292, 109, 110, 292, 292, 292, 81, 85, 80, 292, 73, 292, 292, 292, 292, 292, 10, 292, 292, 292, 234, 292, 292, 273, 38, 292, 292, 292, 292, 292, 152, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 86, 84, 292, 74, 258, 292, 292, 292, 292, 292, 292, 292, 169, 292, 292, 292, 184, 292, 292, 292, 292, 292, 292, 292, 292, 143, 68, 292, 292, 292, 292, 292, 251, 292, 292, 292, 292, 292, 292, 292, 122, 292, 83, 128, 129, 132, 133, 130, 131, 76, 292, 235, 292, 292, 146, 292, 292, 292, 292, 292, 211, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 158, 40, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 89, 292, 210, 292, 227, 255, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 5, 292, 202, 292, 292, 256, 292, 292, 292, 292, 292, 292, 292, 292, 24, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 126, 292, 292, 292, 292, 292, 292, 292, 292, 292, 165, 292, 292, 292, 292, 292, 292, 292, 292, 292, 252, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 272, 292, 292, 223, 292, 292, 292, 292, 292, 253, 292, 292, 292, 292, 292, 292, 254, 292, 292, 292, 221, 292, 224, 225, 292, 292, 292, 292, 292, 222, 226, 0 } ; static const YY_CHAR yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 6, 1, 1, 1, 7, 1, 1, 1, 1, 1, 8, 1, 1, 1, 9, 1, 10, 11, 1, 12, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1, 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, 1, 40, 1, 1, 1, 1, 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, 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, 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, 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, 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 } ; static const YY_CHAR yy_meta[67] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 1, 1, 1, 1, 7, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static const flex_int16_t yy_base[2927] = { 0, 0, 0, 64, 67, 70, 72, 78, 84, 89, 92, 131, 137, 352, 307, 96, 8310, 8310, 8310, 109, 171, 85, 142, 215, 83, 117, 152, 207, 50, 110, 75, 167, 231, 112, 275, 121, 259, 323, 243, 291, 320, 170, 368, 289, 8310, 8310, 8310, 104, 288, 8310, 8310, 8310, 147, 286, 289, 8310, 8310, 8310, 305, 239, 8310, 8310, 8310, 160, 210, 8310, 372, 8310, 177, 382, 201, 386, 115, 0, 390, 0, 0, 160, 162, 199, 204, 188, 169, 303, 222, 256, 248, 377, 369, 254, 226, 313, 271, 365, 382, 296, 327, 396, 392, 381, 423, 411, 386, 420, 428, 417, 419, 444, 317, 427, 432, 452, 453, 456, 457, 458, 472, 462, 463, 466, 483, 479, 478, 504, 485, 212, 499, 514, 501, 500, 517, 512, 521, 545, 528, 525, 538, 543, 546, 539, 190, 164, 138, 231, 122, 590, 158, 79, 277, 66, 598, 602, 0, 572, 571, 591, 579, 586, 596, 594, 599, 589, 595, 609, 592, 606, 645, 618, 620, 629, 340, 651, 695, 647, 634, 650, 657, 637, 638, 656, 659, 661, 544, 676, 685, 642, 687, 696, 719, 702, 713, 678, 407, 729, 743, 718, 721, 740, 756, 723, 758, 727, 760, 763, 754, 759, 767, 742, 768, 753, 769, 766, 786, 788, 783, 787, 785, 802, 790, 812, 799, 814, 801, 827, 811, 818, 834, 826, 832, 842, 825, 845, 837, 841, 850, 617, 847, 861, 860, 843, 868, 863, 864, 859, 876, 880, 874, 886, 889, 893, 894, 909, 890, 900, 901, 904, 903, 908, 913, 912, 920, 928, 173, 916, 936, 943, 932, 935, 949, 947, 945, 958, 953, 962, 963, 971, 978, 968, 979, 973, 966, 970, 980, 989, 990, 1000, 992, 1004, 994, 1013, 1005, 1022, 1021, 1009, 1017, 1026, 1061, 1036, 1016, 1019, 1063, 1055, 1049, 1044, 1072, 1059, 1064, 1092, 1083, 1087, 1094, 668, 1099, 1114, 1101, 1108, 1105, 1110, 1100, 1107, 1060, 1118, 1119, 1123, 1128, 1143, 1156, 1139, 1155, 1160, 1151, 1162, 1163, 1191, 1239, 1164, 1172, 1182, 1187, 1178, 8310, 1203, 1196, 1288, 1201, 1198, 1241, 1211, 1205, 1227, 1230, 1238, 1229, 1256, 1244, 1188, 1236, 1257, 1269, 1259, 1274, 1266, 1293, 1284, 1283, 1308, 1285, 1301, 1310, 1319, 1314, 1306, 1311, 1346, 1327, 1326, 1332, 1336, 1356, 1351, 1353, 1359, 1343, 1337, 1365, 1370, 1377, 1385, 1384, 1363, 1392, 1389, 1406, 1379, 1403, 1410, 1397, 1408, 1412, 1404, 784, 1421, 1425, 1441, 1427, 1439, 1430, 1429, 1444, 1446, 1458, 1435, 1455, 1461, 1468, 1457, 1477, 1471, 1462, 1486, 1472, 1495, 1470, 8310, 1499, 1482, 1497, 1502, 1494, 1489, 8310, 1513, 1515, 1498, 1520, 1525, 1522, 1532, 1529, 1540, 1541, 1526, 1542, 1559, 1530, 1558, 1552, 1555, 1561, 1575, 1566, 1578, 1568, 1570, 1585, 1625, 1567, 1594, 1592, 1572, 1597, 1611, 1623, 1607, 1630, 1621, 1620, 1668, 1627, 1658, 1642, 1647, 1674, 1652, 1679, 1666, 1664, 1669, 1663, 1683, 1692, 1689, 1693, 1672, 1707, 8310, 1706, 1714, 1694, 1710, 1702, 1704, 1716, 1711, 1709, 1724, 1733, 1745, 1740, 1600, 1757, 1744, 1763, 1749, 1732, 1750, 1751, 1760, 1767, 1780, 1752, 1785, 1773, 1781, 1782, 1774, 1798, 1802, 1808, 1783, 1803, 1800, 1792, 1807, 1814, 1813, 1797, 1809, 1833, 1819, 1835, 1825, 1844, 1830, 1826, 1846, 1834, 1855, 1838, 1853, 1841, 1864, 1874, 1870, 1872, 8310, 1877, 1880, 1885, 1891, 1893, 1897, 1903, 1876, 1905, 1902, 1913, 1916, 1911, 1910, 1919, 1914, 1918, 1930, 1935, 1954, 1936, 1948, 1966, 1949, 1962, 1941, 1956, 1961, 1968, 1976, 1969, 1975, 1982, 1971, 1974, 1985, 1990, 1989, 1983, 1986, 2003, 1995, 2011, 2010, 2025, 2026, 1999, 2032, 2009, 2037, 2022, 2029, 2042, 2038, 2043, 2046, 2041, 2035, 2061, 2062, 2064, 2056, 2066, 2065, 2084, 2067, 2073, 2079, 2091, 2092, 2068, 2099, 2102, 2103, 2097, 2087, 2126, 2113, 2112, 2123, 2118, 2128, 2119, 2137, 2125, 2144, 2136, 2150, 2161, 2162, 2152, 2165, 2160, 2159, 2171, 2163, 2176, 2179, 2187, 2190, 2186, 2196, 2198, 2189, 2174, 2218, 2205, 2206, 8310, 2201, 2226, 2209, 2230, 2223, 2199, 2222, 2246, 2236, 2241, 2225, 2233, 2239, 2282, 8310, 2250, 8310, 8310, 2252, 8310, 8310, 2263, 2249, 2262, 2276, 2283, 2292, 2270, 2288, 2286, 2275, 2303, 2333, 2311, 2296, 2314, 2321, 2309, 2326, 2322, 2341, 2339, 2349, 2353, 2344, 2360, 2355, 2363, 2364, 2366, 2368, 2367, 2381, 2395, 2384, 2387, 2397, 2382, 2391, 2385, 2409, 2412, 2405, 2438, 8310, 2414, 2425, 2426, 2424, 2436, 2432, 2431, 2434, 2440, 2443, 2439, 2427, 2444, 2441, 2454, 2450, 2451, 2471, 2462, 2461, 8310, 2474, 2475, 2477, 2476, 2487, 2481, 2478, 2466, 2493, 2500, 2497, 2513, 2472, 2523, 8310, 2527, 2525, 2509, 2528, 2510, 2512, 2518, 2519, 2524, 2539, 2540, 2543, 2546, 2550, 2567, 2570, 2560, 2557, 2566, 2575, 2568, 2573, 2583, 2565, 2577, 2591, 2590, 2594, 2593, 2597, 2599, 2606, 2608, 2628, 2607, 2633, 2634, 2626, 2612, 2620, 2639, 2624, 2635, 2642, 2647, 2638, 2651, 2653, 2648, 2652, 2655, 2665, 2676, 2666, 2680, 2685, 2667, 2678, 2682, 2669, 8310, 2675, 2690, 8310, 2700, 2697, 2745, 2705, 2715, 2695, 2701, 2711, 2726, 2725, 2735, 2738, 2737, 2744, 2741, 2765, 2758, 2774, 2775, 2770, 2777, 2772, 2781, 2763, 2764, 2794, 1268, 2800, 2783, 2790, 2785, 2836, 2806, 2814, 2808, 2812, 2825, 2833, 2832, 2820, 2839, 2849, 2843, 2853, 8310, 2859, 2845, 2854, 2861, 2883, 2882, 2871, 2870, 2884, 2875, 2897, 2885, 2877, 2898, 2888, 2899, 2902, 2904, 2910, 2918, 2901, 2915, 2938, 8310, 2920, 8310, 2925, 2921, 2931, 2930, 2933, 2940, 2948, 2956, 8310, 8310, 2957, 2960, 2963, 2943, 2959, 8310, 2958, 2981, 2991, 2970, 2979, 2978, 2976, 2989, 2996, 3009, 2987, 3014, 3010, 3003, 3012, 3021, 3015, 3022, 3023, 3020, 8310, 3029, 3030, 3037, 3038, 3045, 3051, 3034, 3063, 3067, 3053, 3050, 3054, 3072, 3070, 3081, 3087, 3079, 3080, 3086, 3093, 8310, 3082, 3095, 3094, 3098, 3092, 3096, 3107, 3099, 3101, 3121, 3118, 3119, 3123, 3114, 3141, 3143, 3125, 3134, 3147, 3130, 3144, 3142, 410, 3145, 3146, 3156, 3152, 8310, 3159, 3153, 61, 3170, 3172, 3176, 3186, 3180, 3165, 3173, 3199, 3200, 3196, 3204, 3203, 3195, 3198, 3205, 3202, 3215, 3214, 3223, 3224, 8310, 3219, 3226, 3227, 3232, 3246, 3229, 3250, 8310, 3256, 3253, 3261, 3248, 3260, 3274, 3272, 3273, 3267, 3293, 3291, 3284, 8310, 3297, 3299, 3301, 3287, 3305, 3308, 3300, 3323, 3325, 3296, 3329, 3328, 3337, 3333, 3327, 3326, 3330, 3352, 3334, 3339, 3342, 3354, 8310, 3356, 3364, 3369, 3360, 3379, 3370, 3393, 3373, 3381, 3385, 3400, 3424, 3386, 3394, 3407, 3413, 3412, 3409, 3415, 3426, 3430, 3422, 3425, 3453, 3458, 3428, 3449, 3456, 3451, 3464, 3452, 3450, 3477, 3487, 3479, 3482, 3506, 3500, 1065, 3478, 8310, 3498, 3492, 3485, 3508, 3523, 3509, 3505, 3525, 3529, 3521, 3527, 3533, 3543, 3550, 3545, 3552, 3544, 3549, 3558, 3564, 3554, 3575, 3576, 8310, 3577, 3582, 3573, 3584, 3583, 3579, 3594, 3596, 3590, 3591, 3604, 3608, 3607, 3610, 3609, 3611, 3606, 3626, 3614, 8310, 3641, 3630, 3642, 3643, 3638, 3653, 3655, 3649, 3656, 3663, 3672, 3657, 3666, 8310, 3603, 3667, 3684, 3668, 3677, 3673, 3685, 3697, 3682, 8310, 3683, 3691, 3671, 3706, 3701, 8310, 3720, 3711, 3712, 3709, 3708, 3699, 3726, 3723, 3715, 3719, 3746, 3745, 3733, 3750, 8310, 3738, 3766, 3744, 3754, 3760, 3761, 3759, 3776, 3792, 3777, 3771, 3781, 3765, 3788, 3786, 3783, 3789, 3806, 3796, 3812, 3802, 8310, 3816, 3810, 3813, 3819, 3821, 3824, 3826, 3840, 3838, 3835, 3846, 3841, 3844, 3847, 3858, 3857, 3865, 3861, 3867, 3874, 3880, 3872, 3877, 3884, 3885, 3887, 3899, 3907, 8310, 3896, 3905, 3901, 3897, 3903, 3904, 3906, 3920, 3918, 3931, 3924, 3927, 3930, 3955, 3964, 3933, 3942, 3944, 3948, 3952, 3957, 3954, 3958, 3956, 3925, 3972, 3960, 3997, 3976, 3987, 4001, 3979, 3983, 3988, 3989, 4003, 3991, 3994, 4010, 4016, 4014, 4023, 4022, 4028, 4018, 4024, 4029, 4046, 8310, 4035, 4049, 4041, 4047, 4057, 4066, 4067, 4073, 4074, 4060, 4068, 4062, 4075, 4081, 8310, 4079, 8310, 4089, 4091, 4084, 4088, 4094, 8310, 4103, 8310, 4116, 4117, 4104, 4106, 8310, 4123, 4105, 4118, 4128, 4121, 4113, 4132, 4130, 4144, 4137, 4142, 4152, 4141, 4169, 4159, 4154, 4171, 4162, 4174, 4178, 4163, 4179, 4186, 4164, 4184, 4193, 4187, 8310, 4195, 4198, 4203, 4204, 4207, 4201, 4228, 4213, 4222, 4227, 4232, 4231, 4237, 4244, 4233, 4266, 4250, 4267, 8310, 4258, 4252, 4256, 4274, 8310, 4271, 4254, 4281, 4285, 4273, 4277, 4291, 4289, 4309, 4284, 4297, 4322, 4293, 4316, 4318, 4324, 4305, 4312, 4331, 4333, 4334, 4345, 4336, 4342, 4337, 4341, 4351, 4355, 4363, 4358, 4376, 4374, 4381, 4357, 4378, 4387, 4384, 4373, 4368, 4372, 4382, 4390, 4386, 4399, 4425, 4401, 4402, 4410, 4406, 8310, 4430, 4414, 4431, 4437, 4417, 4426, 4418, 4428, 4441, 4420, 4449, 4462, 4454, 8310, 4460, 8310, 4457, 4463, 4472, 4478, 4467, 4468, 4485, 4491, 4483, 4473, 4498, 4499, 4489, 4495, 4505, 4501, 4512, 4518, 4490, 4529, 4513, 4523, 4516, 4528, 4530, 4525, 8310, 4540, 4526, 4548, 4543, 4553, 4561, 4557, 4569, 4550, 4570, 4556, 4587, 8310, 4576, 4584, 4580, 4594, 4605, 4597, 4609, 4600, 8310, 4592, 4596, 4614, 4603, 4617, 4618, 8310, 4607, 8310, 4619, 4621, 4623, 4642, 4622, 4639, 4641, 4643, 4654, 4633, 4661, 4646, 4644, 4645, 4658, 4667, 4666, 4665, 4673, 4656, 8310, 4676, 4678, 4691, 4692, 4694, 4701, 4700, 4685, 8310, 4696, 4710, 4712, 4703, 4713, 4717, 4720, 4722, 4733, 4736, 4724, 4726, 4725, 4738, 4737, 4735, 4754, 4763, 4757, 8310, 4762, 4760, 4776, 4774, 4768, 4777, 4775, 4765, 4761, 4773, 4781, 4792, 4789, 4801, 4794, 4806, 4805, 4795, 4802, 4820, 4828, 4810, 4816, 4818, 4819, 4846, 4836, 4829, 4849, 4851, 4833, 4859, 4863, 4844, 4847, 4867, 4866, 4874, 4869, 8310, 4886, 4871, 4887, 4858, 4881, 4888, 4899, 4892, 4890, 4885, 4898, 4911, 4901, 8310, 4939, 4906, 4922, 4926, 4908, 4927, 4931, 4932, 4934, 4941, 4916, 4943, 4936, 4935, 4945, 4960, 4954, 8310, 8310, 4965, 4950, 4967, 8310, 4969, 4959, 4990, 4988, 4968, 4982, 4984, 4995, 4972, 4992, 4986, 4994, 8310, 5001, 5005, 5003, 5007, 5013, 5031, 5027, 5024, 5026, 5016, 5019, 5030, 5041, 5034, 5021, 5048, 5050, 5039, 5040, 5060, 8310, 5058, 5054, 5057, 8310, 5069, 5066, 5077, 5081, 5089, 5091, 5087, 5092, 5085, 5097, 5075, 5096, 5093, 5107, 5114, 5116, 5121, 5129, 5134, 5128, 8310, 5130, 5133, 5125, 5136, 5137, 5147, 5151, 5155, 5141, 5160, 5157, 5156, 8310, 5158, 5171, 5161, 5152, 5185, 5159, 5194, 5178, 8310, 5179, 5174, 5198, 8310, 5192, 5206, 5199, 5209, 5196, 5215, 5205, 5208, 5218, 5219, 8310, 5222, 8310, 5226, 5225, 5230, 8310, 5232, 5235, 5234, 5214, 5241, 5243, 5255, 5263, 5245, 5258, 5251, 5254, 5272, 5274, 5285, 5270, 8310, 5290, 5268, 5280, 5282, 5295, 5281, 5294, 5300, 5301, 8310, 8310, 5298, 8310, 5316, 5307, 5308, 8310, 5311, 5322, 5335, 5320, 5332, 5338, 5339, 5344, 8310, 5341, 5334, 5355, 5349, 5351, 5357, 5361, 5362, 5360, 5365, 5371, 8310, 5375, 5379, 5370, 5376, 5385, 5406, 5388, 5396, 8310, 5403, 5412, 5392, 5419, 5404, 8310, 5417, 8310, 5407, 5418, 5428, 5445, 5423, 8310, 5446, 5435, 5429, 5431, 5454, 5458, 5456, 5463, 5452, 5444, 5471, 5472, 5465, 5474, 8310, 5475, 5466, 5489, 5495, 5485, 5483, 5511, 5508, 5512, 5509, 5515, 5506, 5519, 5523, 5522, 5544, 5530, 5507, 5548, 5545, 5549, 8310, 5550, 5555, 5558, 8310, 5551, 5546, 5559, 5565, 5552, 5576, 5580, 5584, 5585, 8310, 5587, 5589, 5582, 5603, 5605, 5595, 8310, 8310, 5614, 8310, 5607, 5592, 5609, 5621, 5618, 5629, 5617, 5637, 5649, 5631, 5648, 5654, 5640, 5662, 5542, 5579, 5658, 5647, 5651, 8310, 8310, 5663, 5668, 5675, 5672, 5686, 5679, 5674, 5673, 5688, 5696, 5703, 5699, 5710, 8310, 5705, 5702, 5708, 8310, 5700, 5711, 5717, 5718, 5723, 5724, 5730, 5707, 5737, 5732, 5743, 5727, 5744, 5739, 5757, 5750, 5754, 5761, 8310, 5768, 5759, 5760, 5769, 5767, 5774, 5777, 5770, 5781, 8310, 5785, 5807, 5808, 5797, 5799, 5801, 5815, 5817, 5821, 5818, 5809, 5829, 5838, 5831, 5827, 8310, 5834, 5826, 5835, 5840, 5851, 5863, 5845, 5868, 5853, 5869, 5860, 5865, 5876, 5881, 5872, 5874, 5879, 5885, 8310, 5884, 5888, 5890, 5894, 5887, 5901, 5897, 5917, 5919, 5903, 5908, 5910, 5925, 8310, 5920, 5915, 5924, 5937, 5926, 5935, 5928, 5942, 8310, 5948, 5951, 5952, 5947, 5946, 5962, 5949, 5975, 5960, 8310, 5970, 5978, 5986, 5967, 5987, 5974, 5988, 5985, 8310, 5998, 6001, 5981, 6021, 6005, 6022, 6019, 6029, 6010, 6018, 6033, 6030, 6032, 6038, 6043, 6028, 6045, 6048, 6040, 8310, 6053, 8310, 6055, 6049, 6059, 6080, 6063, 8310, 6068, 6071, 6078, 6077, 6079, 8310, 6082, 6086, 6103, 6105, 8310, 6093, 6119, 6106, 6110, 6101, 6130, 8310, 6125, 6132, 6129, 6141, 6143, 6127, 6128, 6138, 6136, 6133, 6145, 6149, 8310, 6163, 6168, 6173, 6174, 6169, 6160, 6177, 6182, 6170, 8310, 6184, 6165, 6166, 6188, 6195, 6194, 6198, 6193, 6211, 6200, 8310, 6207, 6219, 6233, 6227, 6229, 8310, 8310, 6222, 6238, 6234, 6206, 6241, 8310, 6243, 6245, 6240, 6248, 6244, 8310, 8310, 6255, 8310, 6258, 8310, 6259, 6261, 8310, 8310, 6278, 6263, 6279, 6282, 6281, 8310, 6291, 8310, 6297, 6292, 6280, 6272, 6290, 8310, 6306, 6300, 6301, 8310, 6304, 6302, 6308, 6315, 8310, 6332, 6317, 6316, 8310, 6337, 6341, 6340, 6342, 6344, 6335, 6352, 6328, 6351, 6350, 6354, 6358, 6360, 6368, 6364, 6365, 6383, 6385, 6376, 6377, 6374, 6390, 6396, 6381, 6398, 6399, 6391, 6393, 6407, 6410, 6404, 6423, 6415, 6416, 6419, 6421, 6412, 6420, 6431, 6429, 6445, 6451, 6455, 6439, 6446, 8310, 6442, 6448, 6462, 6465, 6463, 6469, 6471, 6483, 6484, 6492, 8310, 6498, 8310, 6501, 6482, 6494, 6487, 8310, 6488, 6489, 6491, 6497, 6514, 6510, 6504, 6535, 8310, 6538, 6520, 6534, 6539, 8310, 6537, 6545, 6533, 6540, 6541, 6544, 6556, 6561, 6560, 6562, 6553, 6555, 6557, 6572, 6577, 6575, 6586, 6573, 6578, 6602, 6595, 6596, 6608, 6609, 8310, 6611, 8310, 6605, 6612, 6615, 6606, 6623, 6620, 6624, 8310, 8310, 6625, 6641, 6646, 6633, 6638, 6649, 6655, 8310, 6647, 6657, 6663, 6651, 8310, 6660, 6665, 6666, 8310, 6667, 6669, 6676, 6677, 6692, 6686, 6681, 8310, 8310, 8310, 8310, 6699, 6683, 6701, 6689, 6696, 6706, 6708, 6711, 6703, 8310, 6714, 8310, 8310, 6716, 6726, 6720, 6732, 6738, 6730, 6741, 6743, 8310, 6725, 6755, 6757, 6739, 6756, 6763, 6764, 6767, 6761, 6768, 6774, 6770, 6784, 6765, 6788, 6796, 6800, 8310, 8310, 6790, 6804, 6802, 6814, 6811, 6813, 6815, 6817, 6819, 6799, 6807, 6820, 6831, 6825, 8310, 6834, 6830, 8310, 6838, 8310, 6848, 6849, 6841, 6843, 6858, 6860, 6861, 6863, 8310, 8310, 6852, 6864, 6855, 6873, 6876, 6883, 6878, 6897, 6885, 8310, 6887, 8310, 6886, 6903, 6908, 6890, 6914, 6921, 6923, 6925, 6918, 6922, 8310, 6919, 6924, 8310, 6932, 6929, 6942, 8310, 6938, 6940, 6944, 8310, 6947, 8310, 6958, 8310, 6941, 6977, 8310, 6953, 6959, 8310, 6962, 6975, 6976, 6965, 8310, 6963, 8310, 6971, 6982, 6992, 6983, 6980, 6994, 6984, 6996, 6985, 7001, 7013, 7011, 8310, 8310, 7030, 7004, 7009, 7012, 7010, 7006, 7019, 7031, 7034, 8310, 8310, 7040, 8310, 7039, 7046, 8310, 7023, 7050, 7051, 7055, 7052, 7061, 7071, 7063, 7064, 7057, 7094, 7074, 7086, 7098, 7101, 7103, 7105, 7084, 7109, 7095, 7090, 7110, 7118, 7120, 8310, 7107, 7121, 7117, 8310, 7123, 7132, 7149, 7147, 8310, 7153, 7145, 7146, 7148, 8310, 7142, 7156, 7159, 7161, 7162, 7196, 7158, 7183, 8310, 8310, 8310, 8310, 7168, 7175, 8310, 7185, 7187, 8310, 8310, 7176, 7191, 7186, 7210, 8310, 7195, 8310, 7188, 8310, 7203, 7211, 7223, 7220, 8310, 7212, 7241, 8310, 7225, 7231, 7232, 7237, 7228, 7230, 7235, 8310, 7258, 7255, 7256, 7254, 7247, 7250, 7273, 7252, 7268, 7259, 7266, 8310, 7272, 7274, 7276, 8310, 7280, 8310, 7277, 7281, 7298, 7297, 7293, 7295, 7304, 7305, 7300, 7313, 7311, 8310, 7315, 7319, 8310, 7307, 8310, 7335, 8310, 7327, 7329, 7331, 7339, 8310, 7348, 7332, 7337, 7342, 8310, 7349, 7351, 8310, 7358, 7346, 7367, 7380, 7362, 7381, 7372, 7375, 7366, 7396, 7378, 7389, 7392, 7398, 7403, 7413, 8310, 8310, 8310, 7405, 7395, 7408, 7404, 7418, 7423, 7402, 8310, 7429, 7431, 7419, 7442, 7435, 7443, 8310, 7449, 7432, 7445, 8310, 7455, 7457, 7459, 7446, 7461, 7467, 7468, 7471, 7469, 8310, 7475, 8310, 8310, 7458, 8310, 7470, 7478, 7481, 7482, 8310, 7489, 7485, 7486, 7498, 7490, 7495, 7510, 8310, 8310, 7511, 8310, 7518, 7516, 7509, 7525, 7512, 7520, 7529, 7526, 8310, 7534, 7537, 7535, 7532, 7543, 8310, 7538, 7541, 7552, 7555, 7551, 7547, 7568, 7556, 7561, 8310, 8310, 7571, 7567, 8310, 8310, 7589, 7592, 7593, 8310, 8310, 8310, 7600, 8310, 7601, 7607, 7610, 7612, 7599, 8310, 7614, 7604, 7609, 8310, 7616, 7615, 8310, 8310, 7608, 7618, 7613, 7620, 7631, 8310, 7635, 7642, 7637, 7632, 7654, 7640, 7652, 7659, 7666, 7675, 7647, 7648, 7656, 7680, 7682, 7669, 7676, 7684, 8310, 8310, 7691, 8310, 8310, 7692, 7694, 7697, 7700, 7701, 7705, 7706, 8310, 7699, 7710, 7693, 8310, 7698, 7722, 7714, 7718, 7711, 7733, 7715, 7736, 8310, 8310, 7721, 7740, 7720, 7750, 7735, 8310, 7749, 7759, 7741, 7760, 7745, 7756, 7768, 8310, 7754, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 8310, 7772, 8310, 7771, 7785, 8310, 7766, 7779, 7786, 7777, 7780, 8310, 7782, 7792, 7795, 7806, 7799, 7809, 7807, 7804, 7811, 7812, 7815, 7830, 7822, 7824, 8310, 8310, 7832, 7833, 7825, 7839, 7854, 7857, 7861, 7862, 7849, 7859, 7860, 7864, 7872, 7867, 7878, 7870, 7884, 7880, 7874, 7883, 7882, 8310, 7888, 8310, 7890, 8310, 8310, 7912, 7913, 7910, 7897, 7926, 7927, 7909, 7915, 7919, 7931, 8310, 7924, 8310, 7920, 7929, 8310, 7932, 7943, 7930, 7950, 7951, 7947, 7957, 7967, 8310, 7955, 7961, 7968, 7976, 7974, 7982, 7987, 7991, 7993, 7978, 7990, 7999, 7986, 8310, 8002, 8003, 8005, 8008, 8009, 8007, 8018, 8025, 8014, 8310, 8016, 8035, 8041, 8021, 8031, 8043, 8052, 8054, 8048, 8310, 8058, 8062, 8068, 8065, 8071, 8064, 8075, 8078, 8051, 8089, 8074, 8100, 8099, 8101, 8085, 8102, 8091, 8310, 8113, 8096, 8310, 8112, 8114, 8103, 8124, 8131, 8310, 8120, 8126, 8129, 8135, 8125, 8147, 8310, 8138, 8150, 8153, 8310, 8152, 8310, 8310, 8156, 8149, 8159, 8155, 8164, 8310, 8310, 8310, 8218, 8225, 8232, 8239, 8246, 83, 8253, 8260, 8267, 8274, 8281, 8288, 8295, 8302 } ; static const flex_int16_t yy_def[2927] = { 0, 2912, 1, 2913, 2913, 2914, 2914, 2915, 2915, 2916, 2916, 2917, 2917, 2912, 2918, 2912, 2912, 2912, 2912, 2919, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2920, 2912, 2912, 2912, 2920, 2921, 2912, 2912, 2912, 2921, 2922, 2912, 2912, 2912, 2912, 2922, 2923, 2912, 2912, 2912, 2923, 2924, 2912, 2925, 2912, 2924, 2924, 2918, 2918, 2912, 2926, 2919, 2926, 2919, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2920, 2920, 2921, 2921, 2922, 2922, 2912, 2923, 2923, 2924, 2924, 2925, 2925, 2924, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2924, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2924, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2924, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2924, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2912, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2924, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2924, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2912, 2918, 2912, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2912, 2912, 2918, 2918, 2912, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2912, 2912, 2912, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2918, 2918, 2918, 2912, 2918, 2918, 2918, 2912, 2918, 2912, 2912, 2918, 2918, 2918, 2918, 2918, 2912, 2912, 0, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912 } ; static const flex_int16_t yy_nxt[8377] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 14, 18, 20, 21, 22, 23, 24, 25, 14, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 14, 14, 14, 41, 42, 20, 21, 22, 23, 24, 25, 14, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 14, 14, 14, 41, 44, 45, 46, 44, 45, 46, 49, 50, 49, 50, 51, 102, 51, 54, 55, 56, 57, 70, 18, 54, 55, 56, 57, 71, 18, 60, 61, 62, 60, 61, 62, 72, 82, 92, 150, 73, 104, 47, 102, 150, 47, 140, 140, 52, 75, 52, 75, 75, 71, 75, 72, 58, 148, 93, 73, 75, 71, 58, 71, 82, 92, 103, 63, 104, 94, 63, 15, 16, 17, 65, 66, 67, 15, 16, 17, 65, 66, 67, 95, 112, 93, 118, 76, 71, 142, 71, 68, 142, 103, 83, 71, 94, 68, 146, 71, 145, 84, 147, 147, 96, 85, 140, 140, 86, 69, 95, 112, 97, 118, 154, 69, 143, 155, 68, 105, 71, 83, 369, 159, 68, 77, 78, 106, 84, 79, 71, 96, 85, 107, 80, 86, 139, 108, 71, 97, 71, 154, 153, 81, 155, 71, 105, 71, 71, 71, 159, 71, 77, 78, 106, 150, 79, 156, 222, 158, 107, 80, 98, 139, 108, 99, 71, 157, 141, 153, 81, 87, 100, 142, 101, 88, 142, 71, 89, 71, 90, 91, 71, 109, 156, 71, 158, 110, 150, 98, 71, 162, 99, 71, 157, 128, 171, 129, 87, 100, 71, 101, 88, 111, 71, 89, 130, 90, 91, 71, 109, 119, 131, 164, 110, 120, 163, 148, 162, 147, 147, 71, 128, 171, 129, 121, 71, 170, 122, 146, 111, 113, 71, 130, 71, 114, 174, 71, 119, 131, 164, 115, 120, 163, 116, 144, 132, 144, 144, 71, 144, 117, 121, 71, 170, 122, 133, 160, 113, 172, 134, 135, 114, 174, 145, 179, 143, 141, 115, 71, 161, 116, 136, 132, 71, 200, 137, 173, 117, 123, 138, 71, 124, 133, 160, 71, 261, 134, 135, 125, 2912, 71, 179, 126, 127, 71, 180, 161, 71, 136, 2912, 71, 200, 137, 173, 71, 123, 138, 70, 124, 70, 70, 75, 70, 75, 75, 125, 75, 71, 70, 126, 127, 149, 180, 149, 149, 70, 149, 70, 70, 75, 70, 75, 75, 165, 75, 175, 70, 168, 169, 166, 75, 167, 71, 176, 177, 183, 71, 182, 2912, 152, 181, 178, 294, 2912, 71, 190, 188, 1147, 71, 71, 165, 2912, 175, 71, 168, 169, 166, 76, 167, 71, 176, 177, 183, 71, 182, 191, 184, 181, 178, 185, 189, 193, 190, 198, 71, 194, 196, 71, 71, 202, 201, 197, 186, 187, 71, 192, 71, 71, 199, 2912, 71, 195, 191, 184, 71, 71, 185, 189, 193, 71, 198, 206, 194, 196, 211, 203, 202, 201, 197, 186, 187, 71, 192, 204, 205, 199, 207, 208, 195, 71, 71, 209, 210, 71, 71, 71, 212, 213, 206, 71, 71, 211, 203, 71, 216, 2912, 214, 217, 221, 71, 204, 205, 215, 207, 208, 71, 71, 218, 209, 210, 71, 223, 71, 212, 213, 224, 228, 2912, 219, 227, 2912, 216, 220, 214, 217, 221, 71, 71, 71, 215, 236, 71, 225, 230, 218, 226, 229, 231, 223, 71, 235, 71, 224, 228, 71, 219, 227, 232, 71, 220, 237, 239, 71, 240, 2912, 71, 233, 236, 280, 225, 230, 238, 226, 229, 231, 71, 71, 235, 234, 2912, 71, 71, 71, 71, 232, 241, 242, 237, 239, 144, 240, 144, 144, 233, 144, 280, 243, 149, 238, 149, 149, 75, 149, 75, 75, 234, 75, 245, 71, 150, 244, 246, 241, 242, 247, 249, 71, 250, 251, 2912, 252, 248, 254, 71, 253, 255, 71, 340, 71, 71, 2912, 71, 71, 71, 245, 259, 71, 244, 246, 152, 260, 247, 249, 71, 250, 251, 71, 252, 248, 254, 256, 253, 255, 258, 71, 71, 257, 71, 270, 274, 262, 276, 259, 271, 263, 272, 71, 260, 275, 2912, 284, 71, 273, 278, 71, 71, 279, 2912, 430, 71, 258, 264, 71, 257, 71, 270, 274, 71, 71, 277, 271, 263, 272, 71, 71, 275, 71, 284, 71, 273, 278, 281, 285, 279, 293, 71, 2912, 282, 264, 265, 283, 286, 2912, 71, 266, 71, 277, 291, 2912, 267, 2912, 2912, 71, 298, 71, 268, 269, 2912, 281, 285, 287, 293, 71, 71, 282, 288, 265, 283, 286, 71, 295, 266, 305, 292, 291, 300, 267, 289, 296, 290, 71, 299, 268, 269, 303, 71, 71, 287, 71, 297, 71, 301, 288, 304, 71, 306, 71, 295, 307, 305, 292, 308, 311, 2912, 289, 302, 290, 71, 299, 71, 71, 303, 309, 310, 312, 313, 297, 314, 2912, 315, 71, 71, 2912, 71, 545, 71, 71, 71, 308, 311, 71, 316, 302, 71, 71, 71, 71, 317, 318, 309, 310, 312, 313, 319, 314, 320, 315, 321, 322, 325, 71, 71, 71, 71, 71, 71, 323, 71, 316, 326, 327, 324, 328, 330, 317, 318, 71, 333, 71, 71, 319, 329, 320, 332, 321, 322, 331, 334, 71, 71, 336, 71, 341, 323, 335, 71, 326, 327, 324, 337, 330, 339, 71, 71, 71, 338, 343, 2912, 329, 71, 332, 71, 344, 331, 71, 342, 346, 350, 71, 71, 71, 335, 71, 347, 71, 348, 337, 71, 339, 345, 2912, 354, 338, 349, 355, 352, 71, 71, 71, 344, 150, 71, 342, 346, 350, 71, 351, 353, 356, 357, 347, 71, 348, 71, 358, 359, 345, 71, 365, 2912, 349, 363, 352, 71, 360, 366, 71, 71, 362, 361, 71, 71, 367, 351, 353, 356, 357, 71, 71, 368, 71, 71, 359, 364, 370, 71, 71, 371, 363, 71, 71, 360, 366, 71, 372, 362, 361, 71, 373, 367, 374, 376, 375, 378, 377, 71, 368, 380, 2912, 71, 364, 370, 71, 71, 371, 381, 382, 379, 387, 385, 71, 372, 71, 2912, 71, 373, 71, 374, 376, 375, 71, 377, 383, 2912, 386, 71, 388, 2912, 389, 71, 71, 392, 381, 71, 379, 71, 385, 71, 71, 384, 71, 390, 391, 393, 402, 71, 71, 71, 395, 383, 394, 386, 396, 388, 397, 389, 71, 71, 392, 71, 403, 71, 2912, 398, 413, 399, 384, 71, 390, 391, 393, 71, 71, 401, 412, 395, 71, 394, 404, 396, 71, 397, 400, 71, 71, 411, 71, 403, 71, 71, 398, 413, 399, 71, 422, 439, 419, 2912, 417, 423, 401, 412, 418, 71, 1267, 404, 414, 424, 415, 400, 405, 71, 411, 406, 420, 421, 71, 2912, 407, 408, 409, 410, 71, 419, 416, 417, 71, 71, 71, 418, 71, 71, 71, 414, 424, 415, 428, 405, 427, 71, 406, 420, 421, 429, 431, 407, 408, 409, 410, 425, 71, 416, 426, 434, 71, 432, 433, 435, 442, 71, 437, 71, 438, 428, 441, 427, 71, 71, 71, 436, 429, 431, 71, 443, 71, 71, 425, 71, 440, 426, 434, 71, 432, 433, 435, 71, 71, 437, 444, 438, 71, 441, 454, 448, 445, 71, 436, 455, 449, 446, 443, 447, 2912, 2912, 2912, 440, 71, 2912, 456, 453, 71, 450, 2912, 2912, 451, 444, 452, 2912, 71, 454, 448, 445, 71, 71, 467, 449, 446, 71, 447, 71, 71, 71, 471, 468, 457, 456, 453, 469, 450, 71, 458, 451, 470, 452, 459, 71, 472, 483, 494, 71, 474, 467, 460, 2912, 71, 71, 482, 486, 71, 471, 468, 457, 473, 71, 469, 71, 487, 458, 71, 470, 71, 459, 150, 472, 483, 494, 484, 474, 71, 460, 461, 485, 462, 482, 486, 489, 488, 490, 491, 473, 495, 492, 496, 487, 71, 463, 71, 71, 464, 2912, 465, 497, 466, 71, 1022, 71, 71, 461, 71, 462, 493, 71, 489, 488, 490, 491, 2912, 495, 504, 499, 2912, 501, 463, 71, 71, 464, 71, 465, 497, 466, 475, 476, 498, 71, 500, 71, 71, 493, 502, 503, 477, 71, 478, 479, 480, 506, 499, 481, 501, 505, 71, 71, 71, 507, 509, 71, 512, 475, 476, 498, 71, 500, 511, 2912, 508, 502, 503, 477, 71, 478, 479, 480, 506, 71, 481, 71, 505, 71, 71, 510, 507, 71, 516, 512, 513, 514, 71, 515, 517, 511, 518, 508, 526, 71, 71, 521, 2912, 522, 519, 71, 524, 2912, 525, 71, 71, 2912, 510, 2912, 534, 516, 71, 2912, 523, 71, 515, 517, 520, 518, 71, 526, 71, 527, 521, 71, 522, 519, 71, 524, 528, 525, 71, 529, 71, 533, 530, 534, 535, 71, 536, 523, 538, 537, 541, 520, 71, 531, 71, 532, 527, 539, 2912, 71, 71, 543, 540, 528, 71, 544, 529, 71, 533, 530, 549, 535, 71, 536, 546, 538, 542, 541, 71, 71, 531, 71, 532, 71, 539, 71, 547, 71, 543, 540, 548, 550, 544, 551, 2912, 557, 71, 553, 552, 554, 71, 546, 71, 542, 71, 71, 2912, 555, 561, 2912, 71, 564, 2912, 547, 71, 556, 71, 548, 550, 71, 551, 71, 557, 558, 553, 552, 554, 559, 560, 562, 71, 563, 71, 71, 555, 561, 71, 71, 564, 565, 568, 566, 556, 71, 567, 71, 71, 71, 569, 574, 558, 570, 71, 571, 559, 560, 562, 71, 563, 572, 578, 71, 573, 579, 71, 581, 565, 568, 566, 71, 71, 567, 71, 71, 71, 569, 574, 71, 570, 575, 571, 576, 580, 577, 586, 582, 572, 578, 71, 573, 71, 583, 591, 588, 587, 71, 584, 71, 2912, 585, 71, 71, 589, 2912, 71, 71, 575, 71, 576, 580, 577, 592, 582, 595, 2912, 71, 71, 71, 583, 591, 588, 587, 593, 584, 594, 590, 585, 71, 596, 597, 71, 598, 599, 71, 71, 610, 71, 600, 592, 613, 595, 71, 71, 71, 612, 71, 601, 71, 654, 593, 71, 594, 590, 71, 2912, 596, 597, 611, 598, 599, 71, 614, 610, 615, 600, 2912, 613, 71, 2912, 71, 618, 612, 71, 601, 602, 71, 616, 621, 2912, 603, 617, 604, 71, 619, 611, 620, 71, 605, 614, 606, 615, 624, 607, 608, 2912, 71, 71, 618, 71, 609, 71, 602, 71, 616, 621, 71, 603, 617, 604, 625, 619, 622, 620, 626, 605, 627, 606, 71, 624, 607, 608, 623, 71, 628, 632, 629, 609, 71, 630, 631, 634, 2912, 633, 71, 2912, 639, 625, 643, 71, 71, 626, 71, 627, 71, 71, 636, 637, 71, 623, 71, 628, 632, 629, 635, 71, 630, 631, 634, 71, 633, 638, 640, 639, 641, 71, 645, 642, 71, 71, 71, 644, 646, 636, 637, 648, 649, 650, 71, 647, 71, 635, 71, 71, 659, 71, 71, 71, 638, 640, 150, 641, 71, 645, 642, 651, 652, 653, 644, 646, 71, 655, 648, 649, 650, 656, 647, 657, 71, 71, 658, 659, 2912, 660, 662, 661, 71, 667, 673, 663, 71, 71, 651, 652, 653, 71, 71, 71, 71, 668, 671, 672, 656, 71, 669, 670, 71, 658, 664, 71, 660, 662, 661, 71, 667, 665, 663, 674, 666, 71, 71, 675, 676, 677, 679, 678, 71, 71, 71, 71, 680, 71, 670, 687, 681, 664, 682, 683, 71, 684, 692, 2912, 665, 71, 71, 666, 71, 685, 71, 71, 677, 679, 678, 71, 71, 71, 686, 680, 688, 71, 71, 681, 689, 682, 683, 71, 684, 694, 690, 691, 693, 71, 71, 699, 685, 698, 71, 695, 700, 71, 71, 71, 696, 686, 71, 688, 697, 71, 701, 689, 71, 705, 71, 2912, 694, 690, 691, 693, 702, 71, 699, 71, 698, 703, 695, 700, 704, 707, 706, 696, 71, 713, 2912, 697, 708, 701, 71, 710, 71, 711, 71, 2912, 71, 71, 2912, 702, 71, 712, 715, 719, 703, 71, 2912, 704, 707, 706, 709, 71, 713, 71, 717, 708, 714, 71, 710, 716, 711, 720, 71, 71, 718, 71, 721, 722, 712, 715, 71, 71, 723, 71, 71, 726, 71, 709, 71, 71, 724, 717, 725, 714, 727, 730, 716, 2912, 720, 734, 71, 718, 732, 721, 722, 71, 71, 728, 729, 723, 731, 71, 726, 733, 736, 737, 735, 724, 71, 71, 739, 727, 730, 738, 71, 740, 71, 741, 745, 732, 742, 71, 71, 751, 748, 747, 71, 731, 71, 71, 733, 71, 737, 735, 71, 71, 71, 743, 744, 749, 738, 746, 71, 71, 741, 71, 71, 742, 753, 71, 71, 748, 747, 754, 750, 71, 752, 757, 755, 71, 756, 759, 2912, 71, 743, 744, 749, 758, 746, 71, 71, 71, 760, 761, 766, 753, 2912, 768, 767, 2912, 762, 750, 71, 752, 757, 71, 71, 756, 759, 71, 764, 2912, 71, 763, 758, 71, 765, 71, 71, 760, 761, 71, 71, 71, 768, 767, 71, 762, 772, 769, 770, 773, 775, 774, 776, 771, 71, 764, 777, 781, 763, 71, 71, 765, 71, 71, 71, 71, 71, 780, 2912, 778, 2912, 71, 787, 772, 769, 770, 773, 71, 774, 776, 771, 779, 71, 777, 781, 71, 782, 786, 789, 71, 71, 783, 784, 785, 780, 71, 778, 71, 788, 787, 71, 71, 790, 792, 793, 791, 794, 2912, 779, 796, 71, 71, 798, 782, 786, 789, 71, 71, 783, 784, 785, 71, 797, 71, 71, 788, 71, 795, 799, 790, 792, 793, 791, 794, 71, 71, 796, 800, 801, 798, 804, 802, 71, 803, 805, 816, 807, 2912, 71, 797, 71, 806, 808, 809, 795, 799, 2912, 71, 71, 71, 71, 71, 810, 71, 800, 801, 812, 804, 802, 71, 803, 805, 71, 807, 150, 811, 819, 71, 806, 808, 809, 815, 813, 814, 71, 71, 820, 71, 71, 810, 817, 821, 822, 812, 71, 826, 71, 71, 818, 71, 823, 2912, 811, 71, 71, 824, 825, 71, 815, 813, 814, 827, 828, 820, 831, 829, 71, 817, 821, 830, 71, 71, 826, 71, 71, 818, 842, 823, 71, 832, 833, 71, 824, 825, 71, 2912, 839, 71, 827, 71, 840, 831, 829, 841, 71, 2912, 830, 71, 71, 843, 71, 844, 847, 842, 2912, 845, 832, 833, 834, 2912, 71, 71, 835, 839, 846, 836, 850, 840, 71, 851, 841, 849, 837, 71, 71, 838, 843, 848, 844, 847, 71, 71, 845, 863, 71, 834, 71, 859, 860, 835, 71, 846, 836, 850, 71, 2912, 2912, 864, 849, 837, 865, 71, 838, 861, 848, 852, 853, 71, 854, 71, 863, 855, 71, 866, 859, 860, 856, 862, 870, 71, 71, 868, 857, 858, 71, 867, 2912, 865, 872, 869, 861, 71, 852, 853, 2912, 854, 871, 71, 855, 71, 866, 875, 71, 856, 862, 870, 873, 71, 868, 857, 858, 71, 867, 71, 874, 872, 869, 877, 71, 876, 878, 71, 71, 871, 71, 71, 71, 879, 875, 882, 880, 883, 881, 873, 884, 886, 888, 2912, 885, 71, 71, 874, 71, 71, 877, 71, 876, 878, 887, 71, 891, 892, 893, 71, 879, 71, 882, 880, 883, 881, 894, 884, 895, 71, 889, 885, 896, 71, 897, 890, 71, 899, 71, 898, 900, 887, 902, 891, 901, 904, 903, 906, 71, 71, 71, 71, 2912, 894, 909, 71, 71, 907, 71, 896, 71, 897, 71, 71, 71, 71, 898, 71, 71, 902, 905, 901, 904, 903, 71, 71, 908, 910, 71, 913, 911, 912, 914, 916, 907, 71, 71, 915, 918, 917, 71, 919, 2912, 923, 2912, 71, 71, 905, 71, 71, 71, 71, 71, 908, 910, 71, 913, 911, 912, 914, 916, 71, 920, 921, 915, 918, 917, 71, 919, 922, 923, 71, 927, 924, 71, 2912, 926, 928, 930, 931, 929, 925, 2912, 71, 71, 932, 71, 71, 933, 920, 921, 934, 71, 71, 937, 935, 922, 71, 71, 71, 924, 71, 71, 926, 928, 930, 931, 929, 925, 940, 936, 938, 932, 71, 71, 933, 939, 71, 934, 942, 71, 937, 935, 943, 71, 947, 941, 944, 945, 946, 948, 71, 949, 950, 71, 2912, 2912, 936, 938, 71, 71, 71, 71, 939, 71, 952, 942, 71, 957, 71, 943, 71, 947, 941, 944, 945, 946, 71, 951, 949, 950, 953, 954, 955, 71, 71, 956, 71, 71, 958, 959, 71, 952, 71, 960, 961, 962, 963, 964, 965, 71, 71, 71, 969, 970, 951, 71, 966, 953, 954, 955, 967, 968, 956, 71, 974, 958, 971, 71, 976, 71, 960, 71, 972, 963, 964, 965, 71, 71, 71, 969, 973, 71, 71, 966, 975, 71, 978, 967, 968, 977, 71, 71, 979, 971, 71, 71, 71, 980, 71, 972, 981, 2912, 982, 985, 986, 983, 2912, 973, 71, 71, 71, 975, 71, 978, 984, 987, 977, 1000, 71, 150, 988, 71, 997, 71, 980, 71, 999, 981, 71, 982, 985, 986, 983, 71, 990, 998, 989, 2912, 71, 2912, 71, 984, 987, 71, 71, 2912, 1002, 988, 71, 997, 2912, 2912, 1001, 999, 71, 1007, 1003, 2912, 71, 1005, 1008, 990, 998, 989, 991, 1004, 992, 1006, 71, 71, 993, 1009, 994, 1002, 1019, 1020, 2912, 995, 71, 1001, 71, 71, 996, 1003, 71, 1010, 1005, 71, 71, 1011, 2912, 991, 1004, 992, 1006, 1012, 1014, 993, 1009, 994, 1015, 71, 1017, 1018, 995, 1013, 71, 71, 71, 996, 1021, 1023, 1010, 71, 1016, 71, 1011, 71, 71, 1026, 71, 1024, 1012, 1014, 71, 1025, 71, 1015, 71, 1017, 1018, 2912, 1013, 71, 1034, 1035, 2912, 71, 1036, 2912, 1037, 1016, 1038, 71, 2912, 2912, 1026, 2912, 1024, 71, 1041, 71, 1025, 1027, 1039, 71, 1040, 71, 1028, 1044, 1029, 1034, 1035, 71, 1047, 1036, 1030, 1037, 71, 1038, 1046, 1031, 1032, 1045, 1042, 71, 71, 1041, 1033, 71, 1027, 1039, 71, 1040, 1043, 1028, 71, 1029, 71, 1048, 1049, 1047, 71, 1030, 1050, 1053, 71, 71, 1031, 1032, 1045, 1042, 71, 1051, 71, 1033, 1052, 1055, 1056, 1054, 1057, 1043, 1058, 71, 71, 2912, 1048, 1049, 71, 1059, 71, 2912, 1053, 1066, 1060, 71, 71, 71, 71, 1061, 1051, 71, 1063, 1052, 1055, 1064, 1054, 1057, 1062, 1058, 71, 71, 71, 1065, 71, 71, 1059, 71, 1067, 1068, 1066, 1060, 1069, 71, 1081, 1070, 1061, 1071, 71, 1063, 1073, 71, 1064, 71, 71, 1062, 1072, 1074, 71, 1076, 1065, 1075, 2912, 71, 71, 1067, 71, 1077, 1078, 1069, 1080, 71, 1070, 71, 1071, 1079, 71, 1073, 1082, 1088, 1083, 71, 1084, 1072, 1074, 2912, 1076, 1085, 1075, 71, 71, 71, 71, 71, 1077, 1078, 71, 1080, 1086, 1089, 1091, 1087, 1079, 71, 1090, 1082, 1088, 1083, 1092, 71, 1094, 71, 71, 1095, 71, 1096, 2912, 1093, 2912, 1097, 71, 2912, 71, 1099, 71, 1086, 1089, 1091, 1087, 71, 1098, 1090, 1100, 1102, 1103, 1092, 71, 1101, 1104, 1108, 1095, 1105, 71, 71, 1093, 71, 1097, 71, 71, 1107, 1099, 1109, 1106, 71, 71, 71, 71, 1098, 1111, 1100, 1102, 1103, 71, 71, 1101, 1104, 1110, 71, 1105, 2912, 71, 71, 1112, 2912, 1113, 1115, 1107, 1114, 71, 1106, 1116, 1117, 1119, 71, 71, 1111, 71, 71, 1120, 1118, 1121, 1122, 2912, 1110, 1124, 1127, 71, 1123, 1129, 1112, 71, 1113, 1115, 71, 1114, 71, 1125, 1116, 1117, 1128, 1133, 1130, 71, 71, 71, 71, 1118, 1121, 1122, 71, 71, 1126, 1131, 1132, 1123, 71, 71, 71, 71, 71, 1134, 71, 71, 1125, 71, 1135, 1128, 1133, 1130, 1138, 71, 1137, 1139, 1136, 1140, 1142, 1141, 71, 1126, 1131, 1132, 71, 71, 1143, 71, 1144, 71, 1134, 71, 1153, 1146, 1149, 1135, 71, 1145, 2912, 1138, 71, 1137, 1148, 1136, 1159, 1142, 1141, 71, 71, 71, 71, 71, 71, 71, 1150, 1144, 1151, 1152, 71, 71, 1146, 1149, 71, 1154, 1145, 71, 1155, 1156, 1158, 1148, 1157, 71, 1160, 1161, 1162, 2912, 71, 2912, 71, 71, 1163, 1150, 71, 1151, 1152, 1164, 71, 1165, 1166, 1168, 1154, 1167, 71, 1155, 1156, 1158, 1169, 1157, 1174, 1160, 1171, 71, 71, 2912, 71, 71, 71, 1163, 71, 71, 71, 71, 1164, 1170, 1165, 1166, 1168, 1172, 1167, 1175, 71, 71, 1173, 1169, 1176, 71, 1177, 1171, 1179, 71, 71, 1178, 71, 71, 1180, 71, 1184, 1185, 71, 2912, 1170, 1187, 1188, 1181, 1172, 1182, 1175, 1186, 1183, 1173, 2912, 1176, 71, 1177, 71, 1179, 71, 1191, 1178, 71, 1190, 1180, 71, 1184, 1185, 1192, 71, 71, 1187, 1188, 1181, 1189, 1182, 71, 1186, 1183, 1196, 1193, 71, 71, 71, 1194, 1195, 1197, 1191, 1198, 1199, 1190, 1202, 1200, 71, 1201, 1192, 71, 1205, 2912, 2912, 71, 1189, 71, 2912, 2912, 71, 71, 1193, 71, 71, 71, 1194, 1195, 1197, 71, 1198, 1199, 71, 1202, 1200, 1203, 1201, 1204, 1206, 1205, 1207, 1208, 1209, 1210, 1211, 1212, 1214, 71, 1218, 71, 71, 71, 71, 71, 71, 1213, 1215, 71, 71, 1216, 1217, 71, 1203, 71, 1204, 1206, 71, 1207, 1208, 1209, 1210, 1211, 1212, 1214, 1220, 1219, 71, 1221, 71, 1223, 71, 1222, 1213, 1215, 71, 1224, 1216, 1217, 71, 1226, 1225, 2912, 1227, 71, 71, 1228, 1236, 71, 1229, 1238, 1237, 1220, 1219, 71, 1221, 71, 1223, 1242, 1222, 71, 71, 1239, 2912, 2912, 1240, 1241, 1226, 71, 71, 1227, 1245, 2912, 1228, 1236, 71, 1229, 1230, 1237, 1243, 1231, 1232, 71, 1244, 71, 1233, 2912, 71, 71, 1239, 71, 1234, 1240, 1241, 1246, 1235, 1250, 71, 1245, 71, 71, 71, 1247, 71, 1230, 71, 1243, 1231, 1232, 1248, 1244, 1249, 1233, 1252, 1255, 1251, 1256, 1254, 1234, 1253, 1257, 1246, 1235, 1250, 71, 71, 71, 71, 71, 1247, 1258, 71, 1259, 71, 1260, 2912, 1248, 1268, 1249, 71, 1252, 1255, 1251, 1256, 1254, 2912, 1253, 2912, 2912, 1266, 1269, 1271, 71, 71, 71, 1270, 2912, 71, 1276, 1259, 71, 1260, 71, 1261, 1268, 1272, 1273, 71, 1262, 2912, 1263, 1274, 1264, 71, 1265, 71, 1266, 1269, 1271, 1275, 71, 71, 1270, 71, 71, 1276, 1278, 1277, 1279, 1281, 1261, 2912, 1272, 2912, 1280, 1262, 71, 1263, 71, 1264, 71, 1265, 71, 1283, 71, 1282, 1275, 1284, 71, 1285, 1286, 1288, 1289, 1278, 1277, 1279, 1281, 1290, 71, 71, 71, 1280, 1287, 1291, 71, 71, 1292, 71, 1293, 71, 1283, 1297, 1282, 71, 1284, 1294, 1285, 1286, 1288, 71, 1295, 1296, 1299, 1301, 1290, 1300, 1325, 1298, 71, 1287, 71, 71, 71, 1292, 71, 1293, 1304, 71, 71, 71, 1302, 1306, 1294, 1309, 1308, 71, 71, 1295, 1296, 71, 1301, 71, 1300, 1303, 1298, 1305, 1310, 1307, 71, 71, 1311, 71, 71, 71, 71, 71, 71, 1302, 1306, 71, 1309, 1308, 1312, 1313, 1316, 1314, 1315, 2912, 1319, 2912, 1303, 71, 1305, 1310, 1307, 71, 1317, 1311, 1318, 1320, 1326, 1328, 1323, 71, 1336, 2912, 71, 71, 71, 1312, 1313, 1316, 1314, 1315, 71, 1319, 1322, 1324, 71, 1321, 71, 71, 71, 1317, 1329, 1318, 1320, 1327, 71, 1323, 1330, 71, 71, 71, 1331, 1332, 71, 71, 71, 1337, 1333, 1334, 71, 1322, 1324, 1338, 1321, 71, 71, 71, 71, 1329, 1335, 1339, 1327, 1345, 71, 1330, 2912, 1343, 1344, 1331, 71, 1340, 71, 1346, 71, 1333, 1334, 1341, 1342, 71, 1338, 71, 71, 1349, 71, 71, 1348, 1335, 71, 1347, 1345, 1351, 71, 71, 1343, 1344, 71, 1350, 1340, 71, 1346, 1353, 1352, 1354, 1341, 1342, 71, 1355, 1357, 1358, 1349, 71, 1356, 1348, 1359, 1369, 1347, 71, 71, 71, 1361, 1360, 1368, 71, 1350, 1366, 2912, 71, 1353, 1352, 1354, 1367, 71, 71, 71, 1357, 1358, 1362, 71, 71, 1363, 1359, 1369, 1364, 71, 1370, 1365, 1361, 1360, 71, 71, 1371, 1366, 1373, 71, 1372, 71, 1374, 1367, 71, 1375, 71, 71, 1376, 1362, 71, 1381, 1363, 1377, 71, 1364, 1382, 1370, 1365, 1379, 71, 1378, 1380, 1371, 71, 1373, 1385, 1372, 71, 1374, 71, 71, 1375, 1383, 71, 1376, 1384, 71, 1381, 71, 1377, 1386, 71, 1382, 71, 1387, 1379, 1389, 1378, 1380, 1390, 1388, 2912, 71, 1392, 1393, 71, 1391, 71, 71, 1383, 1394, 71, 1384, 71, 71, 1397, 1396, 1386, 1399, 1395, 1402, 1387, 1403, 1389, 71, 71, 1390, 1388, 71, 1401, 1392, 1393, 71, 1391, 71, 1398, 1406, 1394, 1400, 71, 1404, 71, 1397, 1396, 71, 1399, 1395, 71, 1405, 1407, 1408, 71, 71, 1412, 71, 1409, 1401, 1410, 2912, 1411, 1432, 1413, 1398, 71, 71, 1400, 71, 1404, 71, 1416, 71, 71, 71, 71, 71, 1405, 1407, 1408, 1414, 1415, 1412, 1417, 1409, 1424, 1410, 71, 1411, 71, 1413, 1418, 1419, 71, 71, 1423, 71, 1420, 1416, 71, 71, 1421, 71, 1427, 1428, 1425, 1422, 1414, 1415, 1426, 1417, 71, 1424, 71, 2912, 1429, 1431, 71, 1418, 1433, 1430, 71, 1423, 71, 71, 71, 71, 71, 1434, 71, 1427, 1428, 1425, 71, 1435, 1437, 1426, 1436, 1438, 2912, 1439, 71, 1429, 1431, 1440, 71, 1433, 1430, 71, 1441, 1442, 1445, 71, 1446, 1444, 1434, 71, 71, 71, 1443, 71, 1447, 1437, 71, 1436, 1449, 71, 1439, 1448, 1450, 71, 1440, 71, 1452, 1451, 1453, 1441, 1442, 1445, 71, 1446, 1444, 1458, 71, 1454, 71, 1443, 71, 1447, 2912, 1455, 71, 71, 71, 1456, 1448, 1450, 71, 71, 1462, 1452, 1451, 1453, 1460, 71, 1461, 1459, 1457, 2912, 1458, 71, 1454, 1470, 1463, 1464, 71, 71, 1455, 71, 1465, 1466, 1456, 1467, 1471, 1469, 1476, 71, 1475, 1468, 71, 1460, 71, 1461, 1459, 1457, 71, 71, 71, 1474, 1472, 1463, 1464, 71, 71, 71, 1478, 1465, 1466, 71, 1467, 71, 1469, 1473, 71, 1475, 1468, 1477, 71, 71, 1480, 71, 1479, 1481, 71, 1482, 1474, 1472, 1484, 1483, 1485, 2912, 1486, 71, 71, 71, 71, 1488, 1490, 1487, 1473, 1492, 2912, 71, 1477, 2912, 71, 71, 71, 1479, 1481, 71, 1482, 71, 1489, 1484, 1483, 1485, 71, 1486, 71, 1491, 71, 1493, 1488, 1490, 1487, 71, 1492, 1495, 1494, 71, 71, 1496, 71, 1498, 1497, 1501, 1506, 1499, 1500, 1489, 71, 1504, 71, 1502, 1503, 2912, 1491, 71, 1493, 1507, 71, 71, 71, 1509, 1495, 1494, 1510, 71, 1496, 71, 1498, 1497, 71, 1506, 1499, 1500, 71, 71, 1504, 1505, 1502, 1503, 71, 1508, 71, 71, 1507, 1511, 1512, 1518, 1509, 71, 1515, 71, 1513, 1514, 71, 1516, 2912, 71, 1517, 71, 71, 2912, 2912, 71, 1505, 1522, 2912, 1525, 1508, 71, 1521, 1519, 1511, 1512, 1518, 1524, 1520, 1515, 71, 1513, 1514, 1530, 1516, 71, 71, 1517, 1523, 71, 71, 71, 1526, 1528, 1522, 71, 1525, 2912, 2912, 1521, 1519, 1527, 71, 1529, 1524, 1520, 1531, 1533, 71, 1534, 71, 1532, 71, 1535, 71, 1523, 71, 1536, 1537, 1547, 2912, 2912, 2912, 1540, 71, 71, 1538, 1542, 1527, 71, 1529, 71, 71, 1531, 1533, 71, 1534, 1539, 1532, 71, 1535, 1541, 71, 71, 1536, 1537, 1552, 71, 1543, 71, 1540, 71, 1548, 1538, 1542, 71, 1544, 1553, 1549, 1545, 1550, 1551, 1557, 71, 1539, 2912, 1555, 71, 1541, 1554, 71, 1546, 2912, 1552, 71, 1543, 71, 1556, 1558, 1548, 71, 1559, 71, 1544, 1564, 1549, 1545, 1550, 1551, 71, 1560, 71, 71, 1555, 71, 71, 1554, 1563, 1546, 71, 71, 1561, 1565, 71, 1556, 1558, 1562, 1567, 1559, 71, 1566, 1568, 2912, 71, 1569, 71, 71, 1560, 1570, 1573, 1571, 71, 1572, 1574, 1563, 2912, 71, 1575, 1561, 1577, 71, 71, 71, 1562, 71, 1576, 71, 1566, 1568, 71, 71, 1569, 71, 1578, 71, 71, 1573, 1571, 71, 1572, 1574, 1579, 1580, 1581, 1575, 1582, 1577, 71, 1583, 71, 71, 1584, 1576, 1588, 71, 1585, 1593, 1586, 71, 1587, 1578, 1589, 71, 1590, 2912, 71, 71, 1591, 71, 1580, 1581, 1592, 1582, 71, 71, 1583, 71, 1594, 71, 71, 1588, 2912, 1585, 1593, 1586, 71, 1587, 1601, 1589, 71, 1590, 1597, 1595, 1602, 1591, 1596, 1598, 71, 1592, 1603, 1604, 1599, 71, 1600, 1594, 71, 1619, 1605, 71, 1606, 71, 71, 1607, 1609, 1601, 71, 71, 1608, 1597, 1595, 71, 71, 1596, 1598, 1610, 1611, 71, 1604, 1599, 1612, 1600, 71, 1613, 71, 1605, 1614, 1606, 71, 71, 71, 1609, 1615, 1616, 71, 1608, 1617, 71, 71, 1618, 71, 1620, 1610, 1611, 71, 1621, 1623, 1612, 1622, 1626, 1613, 71, 71, 1614, 1624, 71, 1628, 71, 1625, 1615, 1616, 1629, 71, 1617, 71, 71, 1618, 71, 71, 71, 1633, 1630, 1621, 1623, 1631, 1622, 1626, 1627, 1632, 71, 1637, 1624, 71, 1628, 1634, 1625, 1639, 71, 1629, 71, 1635, 1643, 71, 1636, 1640, 71, 71, 1633, 1630, 1641, 71, 1631, 1642, 1638, 1627, 1632, 1645, 1637, 71, 71, 1644, 1634, 1646, 1639, 1647, 71, 1648, 1635, 1649, 71, 1636, 1652, 1651, 71, 1650, 1656, 71, 1657, 1653, 1642, 1638, 71, 1654, 71, 2912, 71, 71, 1644, 1655, 71, 1668, 1647, 71, 1660, 71, 1649, 71, 1662, 71, 1651, 1658, 1650, 1659, 71, 1657, 1653, 71, 71, 71, 1654, 71, 71, 71, 1661, 1663, 1655, 1666, 1664, 1669, 1665, 1660, 1670, 71, 1675, 1662, 1672, 1671, 1658, 71, 1659, 71, 71, 71, 71, 71, 71, 1678, 1667, 1679, 1673, 1661, 1663, 1674, 71, 1664, 71, 1665, 71, 1670, 1676, 71, 1677, 1672, 1671, 71, 71, 71, 1681, 2912, 1682, 1680, 1683, 71, 1678, 1667, 71, 1673, 71, 1684, 1674, 1686, 1685, 1688, 1687, 71, 2912, 1676, 1690, 1677, 1692, 71, 71, 1699, 71, 1681, 71, 1682, 1680, 1683, 71, 71, 1694, 71, 1689, 1691, 1684, 1693, 1686, 1685, 71, 1687, 71, 71, 1702, 1690, 1697, 71, 1695, 1698, 71, 1696, 71, 1700, 71, 71, 71, 1703, 1701, 1694, 1705, 1689, 1691, 71, 1693, 71, 71, 71, 71, 1704, 1706, 1702, 1707, 1697, 1708, 1695, 1698, 1709, 1696, 2912, 1700, 1712, 1711, 1710, 71, 1701, 1714, 71, 1713, 2912, 71, 71, 71, 71, 1715, 71, 1704, 1706, 71, 1707, 1717, 1718, 1716, 71, 71, 71, 71, 71, 1712, 1711, 1710, 71, 1720, 1714, 1721, 1713, 1719, 1722, 1724, 71, 1725, 1715, 71, 1726, 71, 71, 1727, 1717, 1718, 1716, 1723, 71, 71, 1735, 1728, 71, 71, 1730, 1729, 1720, 71, 1721, 1731, 1719, 1722, 1724, 71, 1725, 71, 71, 71, 1732, 1736, 1733, 1737, 1734, 1738, 1723, 71, 71, 1735, 1728, 1739, 71, 1730, 1729, 71, 1740, 1741, 1731, 1743, 1742, 1745, 1744, 71, 1746, 71, 71, 1732, 71, 1733, 71, 1734, 1738, 1747, 1749, 1750, 1751, 71, 71, 1754, 1752, 1748, 71, 1740, 1741, 71, 71, 1742, 71, 1744, 71, 1746, 1753, 71, 1755, 1756, 1757, 1759, 1761, 2912, 71, 1758, 1750, 1751, 71, 71, 71, 71, 1748, 71, 1760, 71, 1765, 1762, 1769, 1768, 1766, 71, 71, 1753, 71, 1755, 1756, 1757, 1759, 71, 1763, 71, 1758, 1767, 71, 1764, 1770, 1773, 1774, 71, 1775, 1760, 1778, 1765, 1762, 71, 1768, 1766, 1771, 71, 71, 1772, 1776, 1777, 71, 71, 1779, 71, 71, 71, 1767, 1781, 71, 1770, 71, 1774, 71, 1775, 71, 1778, 1780, 1782, 1783, 71, 1784, 1771, 1785, 71, 1772, 1776, 1777, 1786, 71, 71, 1787, 1788, 2912, 1790, 71, 1793, 71, 71, 71, 1789, 1792, 71, 1797, 1780, 1782, 1783, 1791, 1784, 1796, 1785, 1800, 71, 1795, 71, 1794, 71, 1799, 71, 1788, 71, 1790, 71, 1793, 71, 71, 1798, 1789, 1792, 1801, 1802, 71, 1803, 71, 1791, 71, 1796, 71, 1804, 1805, 1795, 1806, 1794, 71, 1799, 1807, 71, 1808, 1812, 71, 1810, 71, 1811, 1798, 71, 1809, 71, 71, 1814, 1803, 71, 71, 1813, 2912, 71, 1804, 1805, 1815, 1806, 71, 71, 71, 1807, 1821, 1808, 1819, 1818, 1810, 71, 1811, 71, 1817, 1809, 1816, 71, 1814, 1822, 71, 71, 1813, 71, 1820, 1824, 1823, 1815, 1828, 71, 1831, 1825, 71, 1821, 1826, 1819, 1818, 1832, 71, 1827, 71, 1817, 1829, 1816, 71, 1835, 1822, 1830, 71, 1833, 71, 1820, 71, 1823, 71, 71, 71, 1831, 1825, 71, 71, 1826, 1837, 1834, 1832, 1838, 1827, 1836, 1840, 1829, 71, 1839, 1845, 1846, 1830, 1841, 1833, 71, 1847, 71, 1842, 1844, 1849, 1848, 71, 1843, 1850, 1854, 71, 1837, 1834, 71, 71, 71, 1836, 1840, 71, 71, 1839, 71, 71, 1852, 1841, 1851, 71, 1853, 1855, 1842, 1844, 1857, 71, 1856, 1843, 1858, 71, 71, 1859, 1860, 71, 71, 71, 71, 71, 71, 71, 1861, 1862, 1863, 1852, 1864, 1851, 1866, 1853, 1855, 71, 1868, 1857, 71, 1856, 1865, 1858, 71, 71, 1867, 1860, 1869, 1871, 1872, 71, 1873, 1883, 2912, 1870, 1862, 1863, 71, 1864, 71, 1866, 71, 1874, 71, 71, 1876, 1875, 1877, 1865, 1879, 71, 71, 1867, 71, 71, 1878, 1872, 1882, 1873, 71, 71, 1870, 1880, 71, 71, 1881, 1885, 71, 1884, 1874, 71, 71, 1876, 1875, 1877, 71, 1879, 71, 1886, 71, 71, 1887, 1878, 1888, 1882, 1889, 71, 1890, 71, 1880, 71, 1891, 1881, 1885, 1892, 1884, 71, 1893, 1894, 71, 71, 1900, 1895, 71, 1898, 1886, 2912, 1899, 71, 1896, 1888, 1902, 1889, 71, 1890, 71, 1906, 71, 1891, 71, 1897, 1892, 1901, 1904, 1893, 71, 71, 71, 1900, 1895, 71, 1898, 1905, 1903, 1899, 71, 1896, 1907, 1902, 71, 71, 1908, 1909, 71, 1910, 71, 71, 1897, 1912, 1901, 1904, 1914, 71, 71, 1911, 1913, 71, 1916, 1915, 1905, 1903, 71, 2912, 2912, 1907, 71, 1918, 71, 1908, 1909, 1917, 1910, 1919, 2912, 1920, 2912, 1921, 71, 1914, 71, 71, 1911, 1913, 71, 71, 1915, 71, 1923, 1932, 71, 1922, 1924, 1925, 1918, 71, 1928, 71, 1917, 1927, 1919, 71, 1920, 71, 1921, 1926, 71, 71, 71, 1929, 1931, 71, 1936, 1933, 1930, 1923, 71, 71, 1922, 1924, 1925, 71, 71, 1928, 1934, 71, 1927, 1938, 1935, 1940, 1942, 71, 1926, 1939, 71, 1937, 1929, 1931, 71, 1936, 1933, 1930, 71, 1941, 1944, 1943, 1945, 2912, 1951, 71, 71, 1934, 71, 71, 1938, 1935, 1940, 1942, 71, 1946, 1939, 1948, 1937, 71, 71, 71, 1947, 1949, 1950, 71, 1941, 1944, 1943, 1945, 71, 71, 1952, 71, 1953, 1954, 1955, 71, 2912, 1958, 2912, 1959, 1946, 1956, 1948, 1957, 71, 71, 71, 1947, 1949, 1950, 1960, 1961, 71, 1964, 71, 1962, 71, 1952, 71, 1953, 1954, 1955, 1965, 71, 1958, 71, 71, 1963, 1956, 1966, 1957, 71, 71, 1967, 71, 71, 1968, 1960, 1961, 1969, 1964, 2912, 1962, 71, 2912, 71, 1970, 1971, 1974, 71, 1972, 1975, 2912, 1976, 1963, 71, 1966, 1977, 1973, 2912, 1967, 1982, 2912, 1968, 1978, 1981, 71, 71, 71, 71, 2022, 71, 71, 1970, 1971, 71, 1983, 1972, 1975, 71, 1976, 1984, 71, 71, 1977, 1973, 1979, 1985, 1982, 1980, 71, 1978, 1981, 1988, 1986, 1987, 1989, 1990, 1993, 1991, 2912, 1992, 71, 1994, 71, 71, 71, 2023, 71, 71, 71, 71, 71, 1979, 1985, 71, 1980, 2912, 71, 71, 1988, 1986, 1987, 1989, 1990, 71, 1991, 1995, 1992, 1996, 1994, 1997, 1999, 1998, 2000, 2001, 71, 2004, 2912, 71, 71, 2002, 71, 2003, 71, 71, 2007, 71, 2008, 71, 2013, 2912, 71, 2005, 1995, 71, 1996, 2009, 1997, 1999, 1998, 2000, 2001, 71, 2004, 71, 2006, 71, 2002, 71, 2003, 2012, 2010, 2007, 71, 2008, 2011, 71, 71, 2014, 2005, 71, 2015, 2016, 2009, 2017, 2019, 2912, 2025, 71, 2020, 71, 2018, 2006, 2024, 2021, 2027, 71, 2012, 2010, 71, 2036, 2028, 2011, 2026, 2032, 2014, 71, 71, 71, 2016, 71, 2017, 2019, 71, 2025, 2029, 2031, 71, 2018, 2033, 2024, 71, 71, 2034, 2035, 2037, 2030, 71, 2028, 2038, 2026, 71, 71, 71, 71, 2039, 2040, 2041, 71, 2052, 2912, 2042, 2029, 2031, 2044, 71, 2033, 71, 2046, 2912, 2034, 2035, 2037, 2030, 2043, 71, 2038, 2045, 71, 71, 2049, 71, 71, 2040, 71, 2048, 71, 71, 2042, 71, 71, 2044, 2047, 2053, 2050, 2046, 71, 71, 2051, 2054, 2055, 2043, 71, 71, 2045, 2056, 71, 2049, 2057, 71, 2058, 71, 2048, 2062, 2059, 2060, 71, 2912, 71, 2047, 2053, 2050, 71, 71, 2061, 2051, 2054, 2055, 2063, 71, 2064, 2065, 2056, 71, 2070, 2057, 71, 2058, 71, 71, 71, 2059, 2060, 2067, 2066, 2068, 71, 71, 71, 71, 2069, 2061, 2072, 71, 2071, 2063, 71, 2064, 2065, 2073, 71, 2070, 2075, 2074, 71, 2076, 2077, 2912, 2078, 2079, 2067, 2066, 2068, 2080, 2082, 2912, 71, 2069, 71, 2072, 71, 2071, 2083, 2086, 2087, 2081, 71, 71, 71, 2075, 2074, 2088, 2076, 2077, 71, 2078, 71, 71, 2089, 2084, 71, 2082, 2085, 2092, 2091, 71, 71, 2090, 71, 2083, 71, 2087, 2081, 71, 71, 2093, 2094, 71, 2088, 71, 2095, 2097, 2099, 2096, 71, 2089, 2084, 2098, 2100, 2085, 71, 2091, 71, 2101, 2090, 2103, 2912, 2912, 2102, 71, 2107, 2106, 71, 2094, 71, 2104, 2109, 71, 71, 2099, 2096, 71, 2112, 71, 2098, 71, 2105, 2110, 71, 2111, 71, 2108, 2103, 71, 71, 2102, 71, 71, 2106, 71, 2113, 2115, 2104, 71, 2116, 2117, 71, 2119, 2124, 2112, 71, 2118, 71, 2105, 2110, 2114, 2111, 71, 2108, 71, 2121, 2122, 2120, 2123, 71, 2126, 71, 2113, 71, 71, 2128, 2116, 2117, 71, 71, 71, 2125, 71, 2118, 2127, 2134, 2130, 2114, 2131, 71, 2133, 71, 2121, 2122, 2120, 2123, 71, 2126, 2129, 2132, 71, 71, 71, 71, 2135, 71, 71, 2136, 2125, 2137, 2138, 2127, 2134, 2130, 71, 2131, 71, 2133, 2139, 2140, 2143, 71, 2142, 2147, 71, 2129, 2132, 2141, 71, 71, 2145, 2135, 71, 2146, 2136, 71, 2137, 2138, 2144, 71, 71, 71, 71, 2148, 2150, 2139, 2140, 2143, 2912, 2142, 2147, 2151, 71, 2149, 2141, 71, 2912, 2145, 2154, 71, 2146, 2152, 2153, 2155, 71, 2144, 2156, 2161, 2157, 2160, 2162, 2163, 71, 71, 2158, 71, 71, 2166, 2151, 2159, 2149, 2167, 71, 71, 71, 2154, 71, 71, 2152, 2153, 2155, 2165, 71, 2156, 71, 2157, 2160, 71, 2163, 71, 2164, 2158, 71, 71, 2166, 2174, 2159, 71, 2168, 71, 2170, 2172, 2171, 71, 2173, 2176, 2169, 71, 2165, 2175, 2912, 2177, 71, 2181, 2912, 71, 2912, 2164, 2185, 2178, 2912, 71, 71, 71, 71, 2168, 71, 2170, 2172, 2171, 71, 2173, 2176, 2169, 2180, 2179, 2175, 71, 2177, 2184, 2181, 2182, 2187, 2183, 2192, 71, 2178, 71, 2186, 71, 71, 2189, 2188, 2190, 71, 2191, 2194, 2912, 2912, 2193, 2912, 2180, 2179, 71, 2196, 2195, 2184, 2198, 2182, 71, 2183, 71, 71, 71, 71, 2186, 71, 71, 2189, 2188, 71, 2197, 71, 2194, 2199, 71, 2193, 71, 2200, 71, 2201, 2196, 2195, 71, 2198, 2203, 2202, 2204, 2205, 2206, 2207, 2912, 2209, 2210, 71, 2215, 2208, 71, 2197, 71, 71, 2199, 71, 71, 71, 2200, 2212, 71, 71, 2211, 2214, 71, 2203, 2202, 2204, 2205, 71, 2207, 71, 2209, 2210, 2213, 71, 2208, 2216, 2217, 2912, 71, 71, 71, 2218, 2219, 71, 2212, 71, 2220, 2211, 2214, 2222, 2226, 71, 71, 2221, 2223, 2225, 71, 2224, 2229, 2213, 2227, 2912, 2216, 2217, 71, 2228, 2231, 71, 2218, 2219, 2230, 2232, 71, 2233, 71, 2912, 2222, 2226, 71, 71, 2221, 2223, 2225, 71, 2224, 71, 71, 2227, 71, 71, 71, 2235, 2228, 71, 2234, 2236, 2912, 2230, 2232, 2241, 71, 2237, 2239, 71, 71, 2240, 71, 2238, 71, 2242, 2243, 2244, 2246, 2247, 2245, 2252, 2912, 71, 2235, 2250, 2912, 2234, 2236, 71, 71, 71, 71, 71, 2237, 2239, 2249, 2251, 2240, 2912, 2238, 71, 71, 71, 2244, 2246, 2247, 2245, 71, 2248, 2253, 71, 71, 71, 2254, 71, 2255, 71, 2257, 71, 2256, 2912, 2258, 2249, 2251, 2259, 71, 71, 71, 2260, 2262, 2261, 2265, 2263, 2267, 2912, 2248, 2253, 2268, 71, 2266, 2254, 2269, 71, 2270, 2257, 71, 2256, 71, 2258, 2264, 71, 71, 71, 2273, 71, 2260, 2262, 2261, 2265, 2263, 71, 71, 71, 2271, 71, 2272, 2266, 2274, 71, 2275, 71, 2276, 2277, 2912, 71, 71, 2264, 2278, 71, 2280, 2273, 2282, 2283, 2281, 71, 2284, 71, 71, 2285, 2279, 2271, 71, 2272, 71, 2274, 71, 2275, 2286, 2276, 2277, 71, 71, 2292, 71, 2278, 2287, 71, 2288, 71, 71, 2281, 2289, 2284, 2293, 71, 2285, 2279, 71, 2290, 2291, 71, 2294, 71, 2295, 2286, 71, 71, 2296, 2912, 71, 71, 71, 2287, 71, 2288, 2299, 2297, 2301, 2289, 71, 2293, 71, 2298, 2303, 2302, 2290, 2291, 2300, 2294, 71, 2295, 2306, 71, 2304, 2296, 71, 71, 2308, 71, 2309, 2307, 71, 2299, 2297, 2301, 71, 2310, 2311, 2305, 2298, 2303, 2302, 71, 71, 2300, 71, 2312, 2912, 2306, 71, 2304, 71, 2313, 2315, 2308, 2314, 2309, 2307, 2316, 2317, 2319, 2318, 71, 71, 71, 2305, 2320, 71, 71, 71, 2321, 71, 71, 2312, 71, 2324, 2322, 71, 71, 2313, 2315, 71, 2314, 2323, 71, 2316, 2317, 2319, 2318, 2325, 71, 2326, 2329, 2320, 71, 2327, 2328, 2321, 2331, 2330, 71, 2334, 2324, 2322, 2332, 2342, 2340, 2912, 2341, 2912, 2323, 2333, 2335, 71, 71, 71, 2325, 71, 71, 71, 71, 71, 2327, 2328, 71, 71, 2330, 2336, 2334, 2338, 2912, 2332, 2337, 71, 2339, 71, 71, 71, 2333, 2335, 71, 71, 71, 2343, 2346, 2344, 2347, 2345, 2912, 2351, 2350, 2348, 71, 71, 2336, 71, 2338, 71, 71, 2337, 2349, 2339, 2353, 2352, 2912, 2912, 71, 2355, 2912, 2912, 2343, 2346, 2344, 2347, 2345, 71, 71, 2350, 2348, 2358, 2357, 2359, 71, 2354, 2356, 71, 71, 2349, 71, 71, 2352, 71, 71, 2360, 2355, 71, 2361, 2363, 2362, 2364, 71, 2365, 2367, 71, 71, 71, 2358, 2357, 2359, 2366, 2354, 2356, 2368, 71, 2370, 2369, 2371, 2372, 71, 2375, 2360, 71, 2377, 2361, 2363, 2362, 71, 71, 2365, 71, 2379, 71, 2376, 2373, 2382, 71, 2366, 71, 2374, 2368, 71, 2370, 2369, 71, 2372, 71, 71, 71, 2378, 71, 2380, 2381, 2912, 2383, 2385, 2386, 71, 71, 2384, 2376, 2373, 71, 2387, 71, 2390, 2374, 71, 2392, 2388, 71, 2389, 2391, 71, 2912, 2393, 2378, 71, 2380, 2381, 71, 2383, 71, 2386, 71, 2394, 2384, 71, 2395, 71, 2387, 2396, 71, 2912, 2401, 71, 2388, 71, 2389, 2391, 2397, 71, 2393, 2398, 2399, 2400, 71, 71, 2404, 2912, 2405, 71, 2394, 71, 2402, 2395, 2403, 2406, 2396, 71, 71, 2401, 71, 2411, 71, 2407, 2408, 2397, 2912, 2412, 2398, 2399, 2400, 2409, 2414, 2404, 71, 71, 71, 2413, 2410, 2402, 71, 2403, 71, 71, 71, 2415, 71, 71, 2416, 71, 2407, 2408, 2417, 71, 2412, 2418, 2419, 2420, 2409, 2414, 2428, 2421, 2425, 71, 2413, 2410, 2422, 71, 2423, 71, 2424, 2912, 2415, 2426, 2429, 71, 2427, 2912, 71, 71, 2430, 71, 2418, 71, 2420, 2434, 71, 2428, 2431, 2432, 71, 2433, 71, 71, 71, 2423, 71, 2424, 71, 71, 2426, 2429, 2435, 2427, 71, 2436, 2437, 2430, 2439, 71, 71, 2438, 2434, 71, 2442, 2431, 2432, 71, 2433, 2440, 71, 2441, 71, 2444, 2443, 2447, 2446, 71, 71, 2435, 2912, 71, 2436, 2437, 71, 2439, 2445, 71, 2438, 71, 71, 2442, 71, 71, 2449, 2450, 2440, 2448, 2441, 2451, 2444, 2443, 71, 2446, 2453, 71, 2452, 71, 2454, 2455, 2456, 2458, 71, 2445, 71, 71, 71, 2457, 2459, 71, 2460, 2449, 2450, 2912, 2448, 2912, 71, 2461, 2462, 2463, 2464, 2453, 71, 2452, 2912, 2454, 2455, 71, 2466, 2465, 2912, 2469, 2470, 71, 2457, 2467, 2471, 71, 71, 2472, 71, 71, 71, 71, 71, 2462, 2463, 2464, 71, 2468, 2473, 71, 2478, 2474, 2479, 2466, 2465, 71, 2469, 71, 71, 71, 2467, 71, 2475, 2477, 71, 2480, 2912, 2476, 2482, 2481, 71, 2483, 2485, 2487, 2468, 71, 71, 2478, 2474, 71, 71, 2484, 71, 2486, 2489, 2488, 2493, 2490, 71, 2492, 2477, 2502, 71, 71, 71, 2482, 2481, 71, 2483, 71, 71, 71, 71, 2494, 2491, 2495, 2501, 2912, 2484, 71, 2486, 71, 2488, 71, 2490, 2496, 2492, 2498, 71, 2499, 2497, 71, 2500, 71, 2505, 2504, 71, 71, 71, 71, 71, 2491, 2495, 2501, 2503, 2506, 71, 2507, 2509, 2508, 71, 2912, 2912, 2510, 2498, 2912, 2499, 71, 71, 2500, 2513, 71, 2504, 2517, 2912, 2519, 71, 71, 2511, 2512, 2514, 2503, 2506, 71, 2507, 2509, 2508, 71, 71, 71, 2510, 2515, 71, 2518, 71, 2516, 2523, 2513, 71, 2520, 71, 71, 2519, 2522, 2521, 2511, 2512, 2514, 71, 2524, 2528, 71, 2525, 2912, 2526, 2912, 2527, 2535, 2515, 2912, 2518, 71, 2516, 71, 2529, 2530, 2531, 71, 2912, 2532, 2522, 71, 71, 2538, 2536, 71, 2524, 2528, 71, 2525, 71, 2526, 71, 2527, 71, 2537, 71, 71, 2533, 2539, 2534, 2529, 2530, 2531, 71, 71, 2532, 71, 71, 2540, 71, 2536, 2541, 2542, 2543, 2544, 2547, 2545, 2912, 71, 2546, 2912, 2537, 2548, 2912, 2533, 2539, 2534, 2555, 71, 2549, 2553, 71, 71, 71, 71, 71, 2550, 2912, 2541, 71, 2543, 2544, 71, 2545, 71, 71, 2546, 71, 71, 2548, 2551, 2554, 2556, 2557, 71, 2552, 2549, 2553, 2558, 2560, 2559, 71, 71, 2550, 2562, 2561, 2563, 2565, 2564, 71, 2912, 71, 71, 71, 71, 2566, 2569, 71, 2554, 2556, 2557, 71, 71, 2567, 2572, 2558, 2560, 2559, 2568, 71, 2573, 2574, 2561, 2563, 2565, 2564, 71, 71, 71, 2578, 2912, 2570, 2566, 2569, 2571, 2575, 71, 2576, 2577, 71, 2567, 71, 2579, 2582, 71, 2568, 71, 71, 71, 2580, 2581, 71, 2587, 71, 2583, 2589, 2578, 71, 2570, 2586, 2584, 2571, 2575, 71, 2576, 2577, 71, 2585, 71, 2593, 71, 71, 71, 2588, 71, 71, 2580, 2581, 2591, 2594, 2590, 2583, 71, 2595, 71, 2592, 2586, 2584, 71, 71, 71, 2596, 71, 71, 2585, 2597, 71, 71, 2598, 2601, 2588, 2600, 2603, 2599, 2605, 2591, 2594, 2590, 2606, 71, 2595, 71, 2592, 71, 71, 2602, 71, 2607, 2596, 2604, 71, 71, 2597, 71, 2608, 2598, 2601, 71, 2600, 71, 2599, 71, 2609, 2612, 2610, 71, 2611, 2613, 2912, 2617, 2912, 2614, 2602, 71, 2607, 71, 2604, 71, 71, 2615, 2616, 71, 2619, 71, 2618, 71, 2621, 2620, 71, 2609, 2612, 2610, 71, 2611, 71, 71, 2617, 71, 2614, 2622, 2624, 2623, 2626, 2627, 71, 2628, 2615, 2616, 71, 2619, 2629, 2618, 71, 71, 2620, 2912, 2630, 2633, 71, 2625, 2631, 71, 2638, 2639, 71, 2634, 71, 71, 2623, 2626, 2627, 2632, 2628, 2635, 2637, 71, 2636, 2641, 71, 2642, 2640, 71, 71, 2630, 71, 2912, 2625, 2631, 71, 71, 71, 71, 2634, 2643, 71, 2644, 2646, 2645, 2632, 71, 2635, 2637, 2649, 2636, 71, 71, 2642, 2640, 2650, 71, 2651, 2647, 2648, 2652, 2653, 71, 2654, 71, 71, 2656, 2643, 71, 2644, 2655, 2645, 2657, 2658, 2659, 71, 71, 2660, 71, 71, 2661, 2662, 71, 2663, 2651, 2647, 2648, 2652, 71, 2667, 71, 71, 71, 2656, 71, 2668, 2672, 2655, 2664, 2657, 71, 71, 71, 71, 71, 2669, 2665, 2661, 71, 2666, 2663, 71, 2670, 2671, 71, 71, 2667, 2675, 71, 71, 2673, 2674, 71, 71, 2676, 2664, 2679, 2677, 71, 2678, 2680, 71, 2669, 2665, 2681, 2682, 2666, 2683, 2912, 2670, 2671, 2912, 71, 71, 71, 71, 2686, 2673, 2674, 71, 2687, 71, 2689, 71, 2677, 2688, 2678, 2680, 71, 71, 2684, 2681, 71, 2685, 2683, 71, 2690, 71, 71, 2694, 71, 71, 2698, 2686, 71, 2693, 71, 2687, 2691, 2689, 71, 2692, 2688, 2697, 71, 71, 2700, 2684, 71, 71, 2685, 2695, 2696, 2690, 71, 2701, 2694, 2699, 2702, 2698, 71, 71, 2693, 2703, 71, 2691, 2704, 2705, 2692, 2712, 2697, 2706, 2707, 2700, 2708, 2709, 2710, 2711, 2695, 2696, 2713, 2717, 71, 2720, 2699, 71, 71, 2716, 2714, 2715, 2703, 2719, 71, 71, 71, 2721, 2712, 71, 2726, 2718, 71, 71, 71, 71, 2725, 71, 71, 71, 71, 71, 2720, 71, 2722, 71, 2716, 2714, 2715, 2724, 2719, 2723, 2727, 2728, 2721, 2729, 71, 71, 2718, 2732, 71, 2736, 71, 2725, 2733, 71, 2730, 71, 2734, 2731, 2735, 2722, 71, 71, 2741, 2737, 2724, 71, 2723, 71, 2728, 71, 2729, 2738, 71, 2739, 2740, 2742, 2736, 2743, 2744, 71, 2745, 2730, 71, 2746, 2731, 2735, 2747, 2748, 71, 71, 2737, 2749, 2750, 71, 2751, 71, 2752, 71, 2738, 2753, 2739, 2740, 2742, 2754, 71, 71, 71, 71, 2755, 2758, 71, 71, 71, 71, 71, 2756, 2760, 2757, 71, 71, 2759, 2751, 2761, 71, 71, 2762, 2753, 71, 71, 2763, 2754, 71, 2764, 71, 71, 71, 2758, 2765, 2767, 2766, 2768, 2769, 2756, 2760, 2757, 2912, 71, 2759, 71, 71, 2771, 2770, 2762, 71, 71, 2774, 2763, 2776, 71, 2764, 2772, 2775, 71, 71, 2765, 2767, 2766, 71, 2769, 71, 2773, 2777, 71, 71, 2779, 2778, 2780, 2771, 2770, 71, 2782, 71, 2774, 2781, 71, 71, 2785, 2772, 2775, 2784, 71, 2783, 71, 71, 2786, 71, 2788, 2773, 71, 71, 2787, 2779, 2778, 2780, 2912, 71, 2789, 2782, 71, 2790, 2781, 2799, 71, 2785, 2792, 2791, 2784, 71, 2783, 71, 71, 2786, 71, 2788, 71, 71, 2793, 2787, 71, 2795, 2796, 2794, 2797, 2789, 2800, 71, 2790, 71, 71, 2798, 2801, 2792, 2791, 71, 2802, 71, 71, 2803, 2804, 2807, 2912, 2812, 71, 2793, 2805, 2808, 2795, 2796, 2794, 2797, 2815, 2800, 71, 2809, 2912, 2806, 2798, 71, 2817, 2912, 71, 2802, 71, 71, 71, 71, 2807, 71, 2810, 2811, 71, 2805, 2808, 71, 2813, 71, 2814, 71, 2816, 2818, 2809, 71, 2806, 71, 2819, 71, 71, 71, 2820, 2912, 2821, 71, 2823, 71, 2822, 2810, 2811, 2824, 2825, 2826, 71, 2813, 2912, 2814, 2827, 2816, 2818, 2829, 2912, 2832, 2831, 2819, 71, 71, 2828, 71, 71, 2821, 71, 2823, 2830, 2822, 71, 71, 2834, 2835, 2826, 71, 2833, 71, 71, 2827, 71, 71, 71, 71, 2832, 2831, 2839, 2836, 2837, 2828, 2838, 2912, 2843, 2845, 71, 2830, 2840, 2841, 71, 2834, 2835, 71, 71, 2833, 2842, 2844, 71, 2846, 71, 2851, 2853, 2912, 71, 2839, 2836, 2837, 2847, 2838, 71, 71, 2848, 2850, 2849, 2840, 2841, 71, 2859, 71, 2852, 71, 2854, 2842, 2844, 71, 2846, 2912, 2856, 71, 71, 2862, 2863, 71, 71, 2847, 71, 2912, 2855, 2848, 2850, 2849, 71, 2857, 2858, 71, 71, 2852, 71, 2854, 71, 71, 71, 2860, 2861, 2856, 2867, 71, 2862, 71, 2864, 71, 2866, 2865, 71, 2855, 2868, 2881, 71, 2870, 2857, 2858, 2869, 2912, 71, 2871, 2912, 2872, 71, 2874, 2860, 2861, 2876, 2867, 71, 2878, 71, 2864, 2877, 2866, 2865, 71, 2883, 2868, 71, 71, 2870, 71, 2879, 2869, 2873, 71, 2871, 2875, 2872, 71, 2874, 71, 71, 2876, 2882, 71, 2878, 2880, 71, 2877, 2884, 71, 71, 2883, 2887, 71, 2885, 2888, 2886, 2879, 2889, 2873, 71, 2890, 2875, 2891, 71, 2892, 71, 2893, 2897, 2882, 2894, 71, 2880, 2901, 71, 71, 71, 71, 71, 2887, 2896, 2885, 2888, 2886, 2900, 2889, 2903, 71, 71, 71, 2891, 2895, 2892, 2898, 2893, 71, 2899, 2894, 2904, 71, 71, 71, 2902, 2910, 71, 2906, 71, 2896, 2905, 2907, 71, 2900, 2911, 71, 2912, 2912, 2908, 2912, 2895, 2912, 2898, 2912, 71, 2899, 71, 71, 2909, 71, 71, 2902, 71, 71, 2906, 2912, 71, 2905, 2907, 2912, 2912, 71, 2912, 2912, 2912, 2908, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2909, 43, 43, 43, 43, 43, 43, 43, 48, 48, 48, 48, 48, 48, 48, 53, 53, 53, 53, 53, 53, 53, 59, 59, 59, 59, 59, 59, 59, 64, 64, 64, 64, 64, 64, 64, 74, 74, 2912, 74, 74, 74, 74, 140, 140, 2912, 2912, 2912, 140, 140, 142, 142, 2912, 2912, 142, 2912, 142, 144, 2912, 2912, 2912, 2912, 2912, 144, 147, 147, 2912, 2912, 2912, 147, 147, 149, 2912, 2912, 2912, 2912, 2912, 149, 151, 151, 2912, 151, 151, 151, 151, 75, 75, 2912, 75, 75, 75, 75, 13, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912 } ; static const flex_int16_t yy_chk[8377] = { 0, 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, 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, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 28, 6, 7, 7, 7, 7, 2918, 7, 8, 8, 8, 8, 28, 8, 9, 9, 9, 10, 10, 10, 15, 21, 24, 979, 15, 30, 3, 28, 149, 4, 47, 47, 5, 19, 6, 19, 19, 30, 19, 72, 7, 147, 24, 72, 19, 24, 8, 21, 21, 24, 29, 9, 30, 25, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 25, 33, 24, 35, 19, 29, 52, 33, 11, 52, 29, 22, 25, 25, 12, 146, 35, 144, 22, 63, 63, 26, 22, 141, 141, 22, 11, 25, 33, 26, 35, 77, 12, 142, 78, 11, 31, 22, 22, 262, 82, 12, 20, 20, 31, 22, 20, 26, 26, 22, 31, 20, 22, 41, 31, 77, 26, 78, 77, 68, 20, 78, 31, 31, 82, 41, 20, 82, 262, 20, 20, 31, 68, 20, 79, 125, 81, 31, 20, 27, 41, 31, 27, 81, 80, 140, 68, 20, 23, 27, 143, 27, 23, 143, 79, 23, 70, 23, 23, 80, 32, 79, 27, 81, 32, 64, 27, 125, 84, 27, 23, 80, 38, 90, 38, 23, 27, 84, 27, 23, 32, 90, 23, 38, 23, 23, 32, 32, 36, 38, 86, 32, 36, 85, 59, 84, 148, 148, 38, 38, 90, 38, 36, 86, 89, 36, 54, 32, 34, 89, 38, 85, 34, 92, 36, 36, 38, 86, 34, 36, 85, 34, 58, 39, 58, 58, 92, 58, 34, 36, 34, 89, 36, 39, 83, 34, 91, 39, 39, 34, 92, 53, 95, 48, 43, 34, 39, 83, 34, 40, 39, 95, 108, 40, 91, 34, 37, 40, 83, 37, 39, 83, 14, 170, 39, 39, 37, 13, 91, 95, 37, 37, 108, 96, 83, 40, 40, 0, 37, 108, 40, 91, 96, 37, 40, 42, 37, 42, 42, 66, 42, 66, 66, 37, 66, 170, 42, 37, 37, 69, 96, 69, 69, 71, 69, 71, 71, 74, 71, 74, 74, 87, 74, 93, 71, 88, 88, 87, 74, 87, 93, 94, 94, 99, 88, 98, 0, 66, 97, 94, 192, 0, 87, 102, 101, 971, 99, 94, 87, 0, 93, 102, 88, 88, 87, 74, 87, 98, 94, 94, 99, 97, 98, 103, 100, 97, 94, 100, 101, 104, 102, 106, 192, 104, 105, 971, 101, 110, 109, 105, 100, 100, 105, 103, 106, 103, 107, 0, 100, 104, 103, 100, 109, 104, 100, 101, 104, 110, 106, 114, 104, 105, 118, 111, 110, 109, 105, 100, 100, 107, 103, 112, 113, 107, 115, 116, 104, 111, 112, 116, 117, 113, 114, 115, 119, 120, 114, 117, 118, 118, 111, 119, 121, 0, 120, 122, 124, 116, 112, 113, 120, 115, 116, 122, 121, 123, 116, 117, 120, 126, 124, 119, 120, 127, 129, 0, 123, 128, 0, 121, 123, 120, 122, 124, 126, 129, 128, 120, 135, 123, 127, 131, 123, 127, 130, 132, 126, 131, 134, 127, 127, 129, 130, 123, 128, 133, 132, 123, 136, 138, 135, 139, 0, 134, 133, 135, 182, 127, 131, 137, 127, 130, 132, 136, 139, 134, 133, 0, 137, 182, 133, 138, 133, 153, 154, 136, 138, 145, 139, 145, 145, 133, 145, 182, 155, 150, 137, 150, 150, 151, 150, 151, 151, 133, 151, 156, 154, 153, 155, 157, 153, 154, 158, 159, 156, 160, 161, 0, 162, 158, 164, 157, 163, 165, 161, 235, 155, 164, 0, 159, 162, 158, 156, 168, 160, 155, 157, 151, 169, 158, 159, 165, 160, 161, 163, 162, 158, 164, 166, 163, 165, 167, 235, 167, 166, 168, 173, 177, 171, 179, 168, 174, 171, 175, 169, 169, 178, 0, 185, 174, 176, 180, 177, 178, 181, 0, 311, 185, 167, 171, 166, 166, 173, 173, 177, 175, 171, 179, 174, 171, 175, 179, 176, 178, 180, 185, 181, 176, 180, 183, 186, 181, 191, 311, 0, 184, 171, 172, 184, 187, 0, 183, 172, 191, 179, 189, 0, 172, 0, 0, 184, 195, 186, 172, 172, 0, 183, 186, 188, 191, 172, 187, 184, 188, 172, 184, 187, 189, 193, 172, 201, 190, 189, 197, 172, 188, 194, 188, 190, 196, 172, 172, 199, 195, 188, 188, 196, 194, 199, 198, 188, 200, 201, 202, 193, 193, 203, 201, 190, 204, 207, 0, 188, 198, 188, 197, 196, 207, 194, 199, 205, 206, 208, 209, 194, 210, 0, 211, 209, 204, 0, 198, 400, 200, 205, 202, 204, 207, 203, 212, 198, 211, 206, 208, 210, 213, 214, 205, 206, 208, 209, 215, 210, 216, 211, 217, 218, 221, 214, 400, 216, 212, 215, 213, 219, 218, 212, 222, 222, 220, 223, 225, 213, 214, 220, 228, 222, 217, 215, 224, 216, 227, 217, 218, 226, 229, 224, 219, 231, 221, 236, 219, 230, 225, 222, 222, 220, 232, 225, 234, 230, 227, 223, 233, 237, 0, 224, 228, 227, 226, 238, 226, 232, 236, 239, 243, 233, 229, 239, 230, 231, 240, 236, 241, 232, 234, 234, 238, 0, 247, 233, 242, 248, 245, 243, 238, 237, 238, 241, 242, 236, 239, 243, 240, 244, 246, 249, 250, 240, 246, 241, 244, 251, 252, 238, 245, 258, 0, 242, 256, 245, 247, 253, 259, 248, 252, 255, 254, 249, 250, 260, 244, 246, 249, 250, 253, 254, 261, 256, 255, 252, 257, 263, 257, 251, 264, 256, 259, 258, 253, 259, 263, 265, 255, 254, 260, 266, 260, 267, 269, 268, 271, 270, 261, 261, 273, 0, 266, 257, 263, 267, 264, 264, 274, 275, 272, 279, 277, 265, 265, 270, 0, 269, 266, 268, 267, 269, 268, 272, 270, 276, 0, 278, 271, 280, 0, 281, 273, 274, 284, 274, 280, 272, 277, 277, 281, 275, 276, 279, 282, 283, 285, 293, 276, 278, 282, 287, 276, 286, 278, 288, 280, 289, 281, 283, 284, 284, 286, 294, 288, 0, 290, 299, 291, 276, 285, 282, 283, 285, 287, 290, 292, 298, 287, 293, 286, 295, 288, 289, 289, 291, 298, 294, 297, 299, 294, 292, 291, 290, 299, 291, 295, 305, 320, 303, 0, 301, 305, 292, 298, 302, 297, 1083, 295, 300, 306, 300, 291, 296, 303, 297, 296, 304, 304, 302, 0, 296, 296, 296, 296, 301, 303, 300, 301, 305, 320, 296, 302, 300, 306, 1083, 300, 306, 300, 309, 296, 308, 304, 296, 304, 304, 310, 312, 296, 296, 296, 296, 307, 308, 300, 307, 315, 309, 313, 314, 316, 323, 307, 318, 310, 319, 309, 322, 308, 312, 318, 314, 317, 310, 312, 316, 324, 319, 315, 307, 317, 321, 307, 315, 313, 313, 314, 316, 321, 322, 318, 325, 319, 323, 322, 330, 327, 325, 324, 317, 331, 328, 326, 324, 326, 0, 0, 0, 321, 327, 0, 332, 329, 325, 328, 0, 0, 328, 325, 328, 0, 330, 330, 327, 325, 328, 326, 335, 328, 326, 329, 326, 331, 332, 335, 339, 336, 333, 332, 329, 337, 328, 336, 333, 328, 338, 328, 333, 339, 341, 345, 355, 337, 342, 335, 333, 0, 338, 355, 344, 347, 333, 339, 336, 333, 341, 342, 337, 345, 348, 333, 344, 338, 341, 333, 348, 341, 345, 355, 346, 342, 347, 333, 334, 346, 334, 344, 347, 350, 349, 351, 352, 341, 356, 353, 357, 348, 349, 334, 352, 350, 334, 0, 334, 357, 334, 356, 846, 351, 334, 334, 346, 334, 354, 354, 350, 349, 351, 352, 0, 356, 364, 359, 0, 361, 334, 353, 357, 334, 359, 334, 357, 334, 343, 343, 358, 361, 360, 846, 358, 354, 362, 363, 343, 360, 343, 343, 343, 366, 359, 343, 361, 365, 364, 363, 366, 367, 369, 343, 372, 343, 343, 358, 362, 360, 371, 0, 368, 362, 363, 343, 367, 343, 343, 343, 366, 371, 343, 365, 365, 368, 372, 370, 367, 370, 375, 372, 373, 373, 369, 374, 376, 371, 377, 368, 383, 375, 374, 379, 0, 380, 378, 376, 381, 0, 382, 377, 383, 0, 370, 0, 389, 375, 382, 0, 380, 373, 374, 376, 378, 377, 379, 383, 380, 384, 379, 378, 380, 378, 381, 381, 385, 382, 389, 386, 384, 388, 387, 389, 390, 385, 391, 380, 393, 392, 396, 378, 386, 387, 393, 387, 384, 394, 0, 388, 387, 398, 395, 385, 391, 399, 386, 390, 388, 387, 404, 390, 396, 391, 401, 393, 397, 396, 394, 399, 387, 392, 387, 397, 394, 395, 402, 398, 398, 395, 403, 405, 399, 406, 0, 411, 401, 408, 407, 409, 402, 401, 404, 397, 407, 406, 0, 410, 415, 0, 411, 418, 0, 402, 405, 410, 403, 403, 405, 408, 406, 409, 411, 412, 408, 407, 409, 413, 414, 416, 412, 417, 415, 410, 410, 415, 413, 418, 418, 419, 422, 420, 410, 414, 421, 422, 417, 420, 424, 429, 412, 425, 416, 426, 413, 414, 416, 425, 417, 427, 433, 419, 428, 434, 429, 436, 419, 422, 420, 428, 421, 421, 426, 433, 424, 424, 429, 427, 425, 431, 426, 431, 435, 432, 440, 437, 427, 433, 431, 428, 432, 438, 444, 442, 441, 434, 439, 436, 0, 439, 435, 441, 443, 0, 438, 444, 431, 437, 431, 435, 432, 445, 437, 448, 0, 439, 440, 442, 438, 444, 442, 441, 446, 439, 447, 443, 439, 446, 449, 450, 447, 451, 452, 445, 443, 456, 448, 453, 445, 459, 448, 450, 456, 452, 458, 453, 454, 459, 499, 446, 449, 447, 443, 451, 0, 449, 450, 457, 451, 452, 454, 460, 456, 461, 453, 0, 459, 458, 0, 457, 463, 458, 460, 454, 455, 499, 462, 466, 0, 455, 462, 455, 463, 464, 457, 465, 461, 455, 460, 455, 461, 468, 455, 455, 0, 466, 465, 463, 462, 455, 455, 455, 468, 462, 466, 464, 455, 462, 455, 469, 464, 467, 465, 470, 455, 471, 455, 470, 468, 455, 455, 467, 471, 472, 476, 473, 455, 473, 474, 475, 478, 0, 477, 469, 0, 483, 469, 488, 478, 476, 470, 475, 471, 467, 477, 480, 481, 483, 467, 472, 472, 476, 473, 479, 474, 474, 475, 478, 479, 477, 482, 484, 483, 486, 481, 490, 487, 480, 482, 488, 489, 491, 480, 481, 493, 494, 495, 490, 492, 491, 479, 486, 484, 504, 494, 489, 493, 482, 484, 487, 486, 492, 490, 487, 496, 497, 498, 489, 491, 495, 500, 493, 494, 495, 501, 492, 502, 504, 496, 503, 504, 0, 505, 507, 506, 498, 510, 515, 508, 501, 497, 496, 497, 498, 503, 505, 506, 510, 511, 513, 514, 501, 500, 511, 512, 507, 503, 509, 502, 505, 507, 506, 508, 510, 509, 508, 516, 509, 512, 515, 517, 518, 519, 521, 520, 509, 513, 514, 519, 522, 511, 512, 529, 523, 509, 524, 525, 522, 526, 534, 0, 509, 526, 516, 509, 521, 527, 517, 520, 519, 521, 520, 523, 518, 527, 528, 522, 530, 525, 524, 523, 531, 524, 525, 529, 526, 536, 532, 533, 535, 531, 534, 539, 527, 538, 533, 537, 540, 528, 536, 530, 537, 528, 538, 530, 537, 540, 541, 531, 532, 546, 535, 0, 536, 532, 533, 535, 542, 539, 539, 537, 538, 543, 537, 540, 544, 548, 547, 537, 541, 553, 0, 537, 549, 541, 543, 550, 544, 551, 542, 0, 553, 546, 0, 542, 547, 552, 555, 559, 543, 548, 0, 544, 548, 547, 549, 549, 553, 550, 557, 549, 554, 551, 550, 556, 551, 560, 555, 552, 558, 554, 561, 562, 552, 555, 559, 558, 563, 556, 561, 566, 557, 549, 562, 560, 564, 557, 565, 554, 567, 569, 556, 0, 560, 573, 563, 558, 571, 561, 562, 564, 566, 568, 568, 563, 570, 571, 566, 572, 575, 576, 574, 564, 567, 569, 578, 567, 569, 577, 565, 578, 572, 579, 582, 571, 580, 573, 570, 587, 585, 584, 568, 570, 574, 576, 572, 579, 576, 574, 580, 577, 575, 581, 581, 586, 577, 583, 578, 584, 579, 581, 585, 580, 589, 583, 582, 585, 584, 590, 586, 587, 588, 592, 590, 592, 591, 594, 0, 586, 581, 581, 586, 593, 583, 594, 589, 588, 595, 596, 601, 589, 0, 603, 602, 0, 597, 586, 596, 588, 592, 590, 591, 591, 594, 597, 599, 0, 593, 598, 593, 603, 600, 595, 599, 595, 596, 602, 598, 600, 603, 602, 601, 597, 607, 604, 605, 608, 610, 609, 611, 606, 607, 599, 612, 616, 598, 604, 605, 600, 606, 609, 608, 611, 616, 615, 0, 613, 0, 612, 621, 607, 604, 605, 608, 613, 609, 611, 606, 614, 610, 612, 616, 621, 617, 620, 623, 614, 615, 618, 619, 619, 615, 620, 613, 617, 622, 621, 618, 619, 624, 626, 627, 625, 628, 0, 614, 630, 624, 623, 632, 617, 620, 623, 626, 628, 618, 619, 619, 625, 631, 630, 622, 622, 627, 629, 633, 624, 626, 627, 625, 628, 632, 629, 630, 634, 635, 632, 638, 636, 631, 637, 639, 650, 641, 0, 633, 631, 636, 640, 642, 643, 629, 633, 0, 639, 638, 634, 635, 641, 644, 637, 634, 635, 646, 638, 636, 640, 637, 639, 650, 641, 642, 645, 652, 643, 640, 642, 643, 649, 647, 648, 646, 644, 653, 649, 645, 644, 651, 655, 656, 646, 647, 660, 648, 660, 651, 655, 657, 0, 645, 652, 653, 658, 659, 657, 649, 647, 648, 661, 662, 653, 665, 663, 651, 651, 655, 664, 661, 659, 660, 665, 656, 651, 677, 657, 658, 666, 667, 666, 658, 659, 663, 0, 670, 667, 661, 664, 673, 665, 663, 676, 662, 0, 664, 677, 670, 678, 673, 679, 682, 677, 0, 680, 666, 667, 668, 0, 678, 676, 668, 670, 681, 668, 685, 673, 682, 686, 676, 684, 668, 685, 679, 668, 678, 683, 679, 682, 668, 680, 680, 692, 684, 668, 683, 688, 689, 668, 681, 681, 668, 685, 689, 0, 0, 693, 684, 668, 694, 686, 668, 690, 683, 687, 687, 692, 687, 688, 692, 687, 690, 695, 688, 689, 687, 691, 699, 691, 694, 697, 687, 687, 693, 696, 0, 694, 701, 698, 690, 687, 687, 687, 0, 687, 700, 696, 687, 695, 695, 704, 699, 687, 691, 699, 702, 697, 697, 687, 687, 698, 696, 701, 703, 701, 698, 706, 700, 705, 707, 702, 703, 700, 704, 706, 705, 708, 704, 711, 709, 712, 710, 702, 713, 715, 717, 0, 714, 707, 712, 703, 709, 714, 706, 710, 705, 707, 716, 713, 720, 721, 722, 708, 708, 711, 711, 709, 712, 710, 723, 713, 724, 717, 718, 714, 725, 715, 726, 718, 716, 728, 720, 727, 729, 716, 731, 720, 730, 733, 732, 735, 723, 721, 722, 731, 0, 723, 738, 726, 725, 736, 727, 725, 724, 726, 718, 730, 728, 733, 727, 729, 732, 731, 734, 730, 733, 732, 735, 736, 737, 739, 734, 743, 741, 742, 744, 746, 736, 739, 738, 745, 748, 747, 748, 749, 0, 753, 0, 737, 753, 734, 741, 742, 744, 743, 747, 737, 739, 746, 743, 741, 742, 744, 746, 745, 750, 751, 745, 748, 747, 749, 749, 752, 753, 751, 757, 754, 750, 0, 756, 758, 760, 761, 759, 754, 0, 758, 760, 762, 761, 752, 763, 750, 751, 764, 762, 763, 767, 765, 752, 754, 764, 757, 754, 756, 759, 756, 758, 760, 761, 759, 754, 770, 766, 768, 762, 765, 766, 763, 769, 767, 764, 772, 768, 767, 765, 773, 769, 777, 771, 774, 775, 776, 778, 773, 779, 780, 772, 0, 0, 766, 768, 779, 774, 770, 776, 769, 771, 782, 772, 777, 787, 775, 773, 780, 777, 771, 774, 775, 776, 778, 781, 779, 780, 783, 784, 785, 782, 781, 786, 784, 783, 788, 789, 785, 782, 786, 790, 791, 792, 793, 794, 795, 787, 790, 788, 798, 799, 781, 794, 795, 783, 784, 785, 796, 797, 786, 795, 803, 788, 800, 797, 805, 793, 790, 789, 801, 793, 794, 795, 791, 792, 798, 798, 802, 801, 796, 795, 804, 799, 807, 796, 797, 806, 800, 804, 808, 800, 802, 805, 803, 809, 806, 801, 810, 0, 811, 814, 815, 812, 0, 802, 807, 809, 812, 804, 815, 807, 813, 817, 806, 826, 817, 808, 818, 813, 823, 810, 809, 814, 825, 810, 811, 811, 814, 815, 812, 818, 821, 824, 820, 0, 825, 0, 821, 813, 817, 820, 826, 0, 828, 818, 823, 823, 0, 0, 827, 825, 827, 833, 829, 0, 824, 831, 833, 821, 824, 820, 822, 830, 822, 832, 829, 828, 822, 834, 822, 828, 843, 844, 0, 822, 830, 827, 832, 831, 822, 829, 834, 835, 831, 833, 822, 836, 0, 822, 830, 822, 832, 837, 838, 822, 834, 822, 839, 836, 841, 842, 822, 837, 843, 844, 835, 822, 845, 847, 835, 839, 840, 841, 836, 837, 838, 850, 840, 848, 837, 838, 842, 849, 848, 839, 850, 841, 842, 0, 837, 849, 852, 853, 0, 845, 854, 0, 855, 840, 856, 847, 0, 0, 850, 0, 848, 852, 859, 854, 849, 851, 857, 855, 858, 853, 851, 862, 851, 852, 853, 859, 866, 854, 851, 855, 856, 856, 865, 851, 851, 863, 860, 858, 857, 859, 851, 851, 851, 857, 860, 858, 861, 851, 862, 851, 866, 867, 868, 866, 861, 851, 869, 872, 863, 867, 851, 851, 863, 860, 865, 870, 868, 851, 871, 874, 875, 873, 876, 861, 877, 872, 871, 0, 867, 868, 874, 878, 877, 0, 872, 885, 879, 870, 869, 873, 876, 880, 870, 879, 882, 871, 874, 883, 873, 876, 881, 877, 875, 878, 880, 884, 885, 881, 878, 882, 886, 887, 885, 879, 889, 883, 904, 891, 880, 892, 886, 882, 894, 884, 883, 889, 892, 881, 893, 895, 891, 897, 884, 896, 0, 894, 893, 886, 895, 898, 901, 889, 903, 887, 891, 896, 892, 902, 904, 894, 905, 910, 907, 897, 908, 893, 895, 0, 897, 908, 896, 898, 901, 907, 905, 902, 898, 901, 903, 903, 909, 911, 913, 909, 902, 910, 912, 905, 910, 907, 914, 913, 916, 912, 911, 917, 908, 918, 0, 915, 0, 919, 917, 0, 914, 921, 909, 909, 911, 913, 909, 915, 920, 912, 922, 924, 925, 914, 920, 923, 926, 931, 917, 928, 916, 919, 915, 921, 919, 918, 923, 930, 921, 932, 929, 926, 922, 924, 925, 920, 934, 922, 924, 925, 928, 929, 923, 926, 933, 934, 928, 0, 930, 931, 935, 0, 936, 938, 930, 937, 932, 929, 939, 940, 942, 938, 933, 934, 937, 939, 943, 941, 944, 945, 0, 933, 947, 951, 935, 946, 953, 935, 936, 936, 938, 941, 937, 940, 949, 939, 940, 952, 957, 954, 944, 945, 942, 949, 941, 944, 945, 946, 943, 950, 955, 956, 946, 953, 947, 951, 950, 954, 958, 952, 956, 949, 957, 959, 952, 957, 954, 962, 955, 961, 963, 960, 964, 966, 965, 962, 950, 955, 956, 959, 960, 967, 958, 968, 961, 958, 965, 978, 970, 973, 959, 968, 969, 0, 962, 966, 961, 972, 960, 985, 966, 965, 963, 970, 964, 969, 972, 973, 967, 974, 968, 975, 977, 975, 978, 970, 973, 974, 980, 969, 977, 981, 982, 984, 972, 983, 985, 986, 987, 988, 0, 980, 0, 981, 986, 989, 974, 982, 975, 977, 990, 984, 991, 992, 994, 980, 993, 983, 981, 982, 984, 995, 983, 1001, 986, 997, 992, 989, 0, 993, 987, 988, 989, 995, 991, 990, 994, 990, 996, 991, 992, 994, 998, 993, 1002, 997, 996, 999, 995, 1003, 1001, 1004, 997, 1006, 998, 999, 1005, 1002, 1003, 1007, 1006, 1009, 1010, 1004, 0, 996, 1012, 1013, 1007, 998, 1007, 1002, 1011, 1007, 999, 0, 1003, 1005, 1004, 1012, 1006, 1007, 1016, 1005, 1010, 1015, 1007, 1009, 1009, 1010, 1017, 1013, 1011, 1012, 1013, 1007, 1014, 1007, 1017, 1011, 1007, 1022, 1018, 1015, 1016, 1014, 1019, 1020, 1023, 1016, 1024, 1025, 1015, 1028, 1026, 1020, 1027, 1017, 1025, 1031, 0, 0, 1019, 1014, 1018, 0, 0, 1031, 1022, 1018, 1023, 1028, 1024, 1019, 1020, 1023, 1026, 1024, 1025, 1027, 1028, 1026, 1029, 1027, 1030, 1032, 1031, 1033, 1034, 1035, 1036, 1037, 1038, 1040, 1029, 1045, 1030, 1037, 1036, 1033, 1032, 1038, 1039, 1041, 1035, 1040, 1042, 1043, 1034, 1029, 1041, 1030, 1032, 1042, 1033, 1034, 1035, 1036, 1037, 1038, 1040, 1047, 1046, 1039, 1048, 1043, 1050, 1045, 1049, 1039, 1041, 1048, 1051, 1042, 1043, 1046, 1052, 1051, 0, 1053, 1047, 1050, 1054, 1057, 1052, 1055, 1059, 1058, 1047, 1046, 1049, 1048, 1053, 1050, 1063, 1049, 1054, 1057, 1060, 0, 0, 1061, 1062, 1052, 1051, 1058, 1053, 1066, 0, 1054, 1057, 1055, 1055, 1056, 1058, 1064, 1056, 1056, 1059, 1065, 1062, 1056, 0, 1061, 1060, 1060, 1063, 1056, 1061, 1062, 1067, 1056, 1070, 1066, 1066, 1056, 1067, 1064, 1068, 1070, 1056, 1065, 1064, 1056, 1056, 1069, 1065, 1069, 1056, 1072, 1075, 1071, 1076, 1074, 1056, 1073, 1077, 1067, 1056, 1070, 1071, 1076, 1073, 1075, 1068, 1068, 1078, 1072, 1079, 1069, 1080, 0, 1069, 1084, 1069, 1074, 1072, 1075, 1071, 1076, 1074, 0, 1073, 0, 0, 1082, 1086, 1088, 1077, 1084, 1079, 1087, 0, 1080, 1092, 1079, 1088, 1080, 1078, 1081, 1084, 1089, 1090, 1087, 1081, 0, 1081, 1090, 1081, 1086, 1081, 1082, 1082, 1086, 1088, 1091, 1092, 1081, 1087, 1089, 1091, 1092, 1094, 1093, 1095, 1097, 1081, 0, 1089, 0, 1096, 1081, 1095, 1081, 1090, 1081, 1093, 1081, 1096, 1099, 1094, 1098, 1091, 1100, 1097, 1101, 1102, 1104, 1105, 1094, 1093, 1095, 1097, 1106, 1098, 1102, 1100, 1096, 1103, 1107, 1103, 1099, 1108, 1101, 1110, 1106, 1099, 1114, 1098, 1104, 1100, 1111, 1101, 1102, 1104, 1105, 1112, 1113, 1116, 1118, 1106, 1117, 1144, 1115, 1112, 1103, 1107, 1108, 1110, 1108, 1115, 1110, 1121, 1111, 1114, 1113, 1119, 1123, 1111, 1126, 1125, 1118, 1119, 1112, 1113, 1116, 1118, 1117, 1117, 1120, 1115, 1122, 1127, 1124, 1144, 1120, 1128, 1126, 1122, 1121, 1124, 1123, 1125, 1119, 1123, 1128, 1126, 1125, 1130, 1131, 1134, 1132, 1133, 0, 1137, 0, 1120, 1127, 1122, 1127, 1124, 1131, 1135, 1128, 1136, 1138, 1145, 1147, 1141, 1134, 1156, 0, 1130, 1132, 1133, 1130, 1131, 1134, 1132, 1133, 1137, 1137, 1140, 1142, 1135, 1139, 1136, 1138, 1141, 1135, 1148, 1136, 1138, 1146, 1139, 1141, 1149, 1142, 1145, 1147, 1150, 1151, 1156, 1140, 1149, 1157, 1152, 1154, 1148, 1140, 1142, 1158, 1139, 1152, 1154, 1146, 1150, 1148, 1155, 1160, 1146, 1165, 1155, 1149, 0, 1163, 1164, 1150, 1151, 1161, 1165, 1166, 1158, 1152, 1154, 1161, 1162, 1157, 1158, 1164, 1163, 1169, 1161, 1162, 1168, 1155, 1168, 1167, 1165, 1171, 1169, 1160, 1163, 1164, 1167, 1170, 1161, 1166, 1166, 1173, 1172, 1175, 1161, 1162, 1172, 1176, 1177, 1178, 1169, 1175, 1176, 1168, 1179, 1187, 1167, 1177, 1171, 1170, 1181, 1180, 1186, 1173, 1170, 1184, 0, 1178, 1173, 1172, 1175, 1185, 1181, 1179, 1180, 1177, 1178, 1182, 1187, 1176, 1182, 1179, 1187, 1183, 1185, 1188, 1183, 1181, 1180, 1182, 1184, 1189, 1184, 1191, 1186, 1190, 1190, 1192, 1185, 1189, 1193, 1188, 1191, 1194, 1182, 1183, 1200, 1182, 1195, 1193, 1183, 1201, 1188, 1183, 1198, 1195, 1197, 1199, 1189, 1192, 1191, 1204, 1190, 1198, 1192, 1194, 1199, 1193, 1202, 1197, 1194, 1203, 1200, 1200, 1201, 1195, 1205, 1202, 1201, 1203, 1206, 1198, 1208, 1197, 1199, 1209, 1207, 0, 1206, 1211, 1212, 1205, 1210, 1204, 1208, 1202, 1213, 1209, 1203, 1207, 1210, 1216, 1215, 1205, 1218, 1214, 1221, 1206, 1222, 1208, 1212, 1211, 1209, 1207, 1214, 1220, 1211, 1212, 1213, 1210, 1215, 1217, 1226, 1213, 1219, 1218, 1223, 1216, 1216, 1215, 1219, 1218, 1214, 1217, 1224, 1227, 1228, 1220, 1221, 1232, 1222, 1229, 1220, 1230, 0, 1231, 1250, 1233, 1217, 1226, 1229, 1219, 1223, 1223, 1228, 1236, 1230, 1231, 1227, 1232, 1224, 1224, 1227, 1228, 1234, 1235, 1232, 1237, 1229, 1242, 1230, 1234, 1231, 1233, 1233, 1238, 1239, 1236, 1250, 1241, 1237, 1239, 1236, 1238, 1235, 1240, 1241, 1245, 1246, 1243, 1240, 1234, 1235, 1244, 1237, 1242, 1242, 1243, 0, 1247, 1249, 1244, 1238, 1251, 1248, 1245, 1241, 1247, 1239, 1249, 1246, 1248, 1252, 1252, 1245, 1246, 1243, 1240, 1253, 1255, 1244, 1254, 1256, 0, 1257, 1251, 1247, 1249, 1258, 1254, 1251, 1248, 1257, 1259, 1260, 1263, 1258, 1264, 1262, 1252, 1255, 1259, 1260, 1261, 1262, 1265, 1255, 1263, 1254, 1267, 1253, 1257, 1266, 1268, 1256, 1258, 1261, 1270, 1269, 1271, 1259, 1260, 1263, 1264, 1264, 1262, 1275, 1266, 1272, 1265, 1261, 1270, 1265, 0, 1273, 1268, 1267, 1271, 1273, 1266, 1268, 1269, 1272, 1279, 1270, 1269, 1271, 1277, 1275, 1278, 1276, 1273, 0, 1275, 1277, 1272, 1287, 1280, 1281, 1273, 1278, 1273, 1276, 1282, 1283, 1273, 1284, 1288, 1286, 1295, 1279, 1294, 1285, 1284, 1277, 1286, 1278, 1276, 1273, 1280, 1281, 1285, 1293, 1290, 1280, 1281, 1282, 1283, 1287, 1298, 1282, 1283, 1290, 1284, 1288, 1286, 1292, 1294, 1294, 1285, 1296, 1295, 1292, 1301, 1293, 1300, 1302, 1296, 1303, 1293, 1290, 1306, 1305, 1307, 0, 1308, 1298, 1302, 1306, 1303, 1310, 1312, 1309, 1292, 1314, 0, 1310, 1296, 0, 1300, 1301, 1307, 1300, 1302, 1309, 1303, 1305, 1311, 1306, 1305, 1307, 1308, 1308, 1312, 1313, 1311, 1315, 1310, 1312, 1309, 1314, 1314, 1317, 1316, 1317, 1315, 1318, 1313, 1320, 1319, 1323, 1328, 1321, 1322, 1311, 1316, 1326, 1320, 1324, 1325, 0, 1313, 1319, 1315, 1329, 1322, 1325, 1328, 1331, 1317, 1316, 1333, 1318, 1318, 1321, 1320, 1319, 1323, 1328, 1321, 1322, 1324, 1326, 1326, 1327, 1324, 1325, 1329, 1330, 1327, 1331, 1329, 1334, 1335, 1340, 1331, 1330, 1337, 1333, 1336, 1336, 1334, 1338, 0, 1338, 1339, 1335, 1336, 0, 0, 1337, 1327, 1344, 0, 1347, 1330, 1340, 1343, 1341, 1334, 1335, 1340, 1346, 1342, 1337, 1341, 1336, 1336, 1353, 1338, 1342, 1339, 1339, 1345, 1344, 1343, 1347, 1348, 1350, 1344, 1345, 1347, 0, 0, 1343, 1341, 1349, 1346, 1352, 1346, 1342, 1354, 1357, 1349, 1358, 1353, 1355, 1358, 1359, 1354, 1345, 1352, 1360, 1361, 1369, 0, 0, 0, 1364, 1348, 1350, 1362, 1366, 1349, 1357, 1352, 1361, 1355, 1354, 1357, 1362, 1358, 1363, 1355, 1359, 1359, 1365, 1366, 1360, 1360, 1361, 1374, 1364, 1367, 1363, 1364, 1369, 1370, 1362, 1366, 1367, 1368, 1375, 1371, 1368, 1372, 1373, 1379, 1373, 1363, 0, 1377, 1365, 1365, 1376, 1374, 1368, 0, 1374, 1370, 1367, 1371, 1378, 1380, 1370, 1368, 1381, 1372, 1368, 1386, 1371, 1368, 1372, 1373, 1375, 1382, 1376, 1377, 1377, 1379, 1381, 1376, 1385, 1368, 1382, 1380, 1383, 1387, 1378, 1378, 1380, 1384, 1389, 1381, 1383, 1388, 1390, 0, 1384, 1391, 1390, 1386, 1382, 1392, 1395, 1393, 1385, 1394, 1396, 1385, 0, 1395, 1397, 1383, 1399, 1396, 1394, 1388, 1384, 1387, 1398, 1391, 1388, 1390, 1389, 1397, 1391, 1393, 1400, 1399, 1392, 1395, 1393, 1398, 1394, 1396, 1401, 1402, 1403, 1397, 1404, 1399, 1400, 1405, 1402, 1403, 1407, 1398, 1411, 1405, 1408, 1416, 1409, 1404, 1410, 1400, 1412, 1408, 1413, 0, 1411, 1413, 1414, 1416, 1402, 1403, 1415, 1404, 1401, 1412, 1405, 1414, 1417, 1407, 1409, 1411, 0, 1408, 1416, 1409, 1410, 1410, 1424, 1412, 1415, 1413, 1419, 1418, 1425, 1414, 1418, 1421, 1417, 1415, 1426, 1427, 1421, 1419, 1423, 1417, 1423, 1441, 1428, 1421, 1429, 1418, 1424, 1430, 1432, 1424, 1427, 1428, 1431, 1419, 1418, 1425, 1432, 1418, 1421, 1433, 1434, 1426, 1427, 1421, 1435, 1423, 1431, 1436, 1429, 1428, 1437, 1429, 1435, 1441, 1430, 1432, 1438, 1439, 1436, 1431, 1439, 1433, 1434, 1440, 1438, 1442, 1433, 1434, 1437, 1443, 1445, 1435, 1444, 1448, 1436, 1439, 1443, 1437, 1446, 1445, 1451, 1440, 1447, 1438, 1439, 1452, 1444, 1439, 1448, 1451, 1440, 1446, 1442, 1447, 1456, 1453, 1443, 1445, 1454, 1444, 1448, 1450, 1455, 1450, 1458, 1446, 1453, 1451, 1456, 1447, 1460, 1452, 1452, 1458, 1457, 1464, 1454, 1457, 1461, 1460, 1456, 1456, 1453, 1461, 1455, 1454, 1463, 1459, 1450, 1455, 1466, 1458, 1457, 1459, 1465, 1456, 1467, 1460, 1468, 1463, 1469, 1457, 1470, 1465, 1457, 1474, 1473, 1464, 1472, 1477, 1461, 1479, 1475, 1463, 1459, 1472, 1476, 1466, 0, 1473, 1468, 1465, 1476, 1470, 1490, 1468, 1475, 1483, 1467, 1470, 1479, 1485, 1469, 1473, 1481, 1472, 1482, 1474, 1479, 1475, 1476, 1477, 1481, 1476, 1482, 1485, 1483, 1484, 1486, 1476, 1489, 1487, 1491, 1488, 1483, 1492, 1490, 1497, 1485, 1494, 1493, 1481, 1486, 1482, 1487, 1484, 1488, 1493, 1494, 1492, 1500, 1489, 1502, 1495, 1484, 1486, 1496, 1489, 1487, 1500, 1488, 1495, 1492, 1498, 1491, 1499, 1494, 1493, 1498, 1497, 1496, 1504, 0, 1505, 1503, 1506, 1499, 1500, 1489, 1502, 1495, 1503, 1507, 1496, 1509, 1508, 1512, 1511, 1509, 0, 1498, 1514, 1499, 1516, 1504, 1505, 1523, 1506, 1504, 1511, 1505, 1503, 1506, 1508, 1507, 1518, 1514, 1513, 1515, 1507, 1517, 1509, 1508, 1512, 1511, 1513, 1515, 1526, 1514, 1521, 1516, 1519, 1522, 1517, 1520, 1518, 1524, 1521, 1523, 1522, 1527, 1525, 1518, 1529, 1513, 1515, 1519, 1517, 1526, 1520, 1525, 1524, 1528, 1531, 1526, 1532, 1521, 1533, 1519, 1522, 1534, 1520, 0, 1524, 1537, 1536, 1535, 1527, 1525, 1539, 1529, 1538, 0, 1532, 1539, 1531, 1528, 1540, 1538, 1528, 1531, 1535, 1532, 1542, 1543, 1541, 1540, 1534, 1537, 1533, 1536, 1537, 1536, 1535, 1541, 1545, 1539, 1546, 1538, 1544, 1547, 1548, 1543, 1549, 1540, 1542, 1550, 1545, 1548, 1551, 1542, 1543, 1541, 1547, 1544, 1549, 1558, 1552, 1547, 1546, 1554, 1553, 1545, 1552, 1546, 1555, 1544, 1547, 1548, 1553, 1549, 1554, 1555, 1550, 1556, 1559, 1557, 1560, 1557, 1561, 1547, 1551, 1558, 1558, 1552, 1562, 1561, 1554, 1553, 1557, 1563, 1564, 1555, 1566, 1565, 1568, 1567, 1564, 1569, 1556, 1565, 1556, 1559, 1557, 1560, 1557, 1561, 1571, 1573, 1574, 1575, 1574, 1562, 1578, 1576, 1572, 1563, 1563, 1564, 1567, 1566, 1565, 1569, 1567, 1572, 1569, 1577, 1568, 1579, 1579, 1579, 1580, 1582, 0, 1575, 1579, 1574, 1575, 1580, 1571, 1573, 1576, 1572, 1579, 1581, 1578, 1586, 1583, 1590, 1589, 1587, 1581, 1577, 1577, 1583, 1579, 1579, 1579, 1580, 1586, 1585, 1589, 1579, 1588, 1582, 1585, 1591, 1594, 1595, 1595, 1596, 1581, 1599, 1586, 1583, 1587, 1589, 1587, 1592, 1588, 1590, 1593, 1597, 1598, 1591, 1592, 1600, 1593, 1598, 1597, 1588, 1604, 1585, 1591, 1594, 1595, 1596, 1596, 1599, 1599, 1601, 1605, 1606, 1605, 1608, 1592, 1609, 1601, 1593, 1597, 1598, 1610, 1609, 1600, 1611, 1612, 0, 1614, 1604, 1617, 1606, 1612, 1608, 1613, 1616, 1616, 1622, 1601, 1605, 1606, 1615, 1608, 1621, 1609, 1625, 1613, 1619, 1614, 1618, 1618, 1624, 1611, 1612, 1610, 1614, 1617, 1617, 1619, 1615, 1623, 1613, 1616, 1626, 1627, 1621, 1628, 1623, 1615, 1622, 1621, 1624, 1629, 1630, 1619, 1631, 1618, 1625, 1624, 1632, 1630, 1633, 1637, 1631, 1635, 1635, 1636, 1623, 1628, 1634, 1629, 1627, 1639, 1628, 1632, 1626, 1638, 0, 1634, 1629, 1630, 1640, 1631, 1638, 1639, 1633, 1632, 1647, 1633, 1644, 1643, 1635, 1636, 1636, 1637, 1642, 1634, 1640, 1643, 1639, 1648, 1644, 1642, 1638, 1640, 1646, 1650, 1649, 1640, 1653, 1647, 1656, 1651, 1646, 1647, 1652, 1644, 1643, 1657, 1656, 1652, 1648, 1642, 1654, 1640, 1649, 1660, 1648, 1655, 1654, 1658, 1652, 1646, 1650, 1649, 1651, 1653, 1658, 1656, 1651, 1657, 1655, 1652, 1662, 1659, 1657, 1663, 1652, 1661, 1665, 1654, 1659, 1664, 1670, 1671, 1655, 1667, 1658, 1660, 1672, 1661, 1668, 1669, 1673, 1672, 1662, 1668, 1674, 1678, 1669, 1662, 1659, 1665, 1663, 1667, 1661, 1665, 1668, 1664, 1664, 1670, 1671, 1676, 1667, 1675, 1675, 1677, 1680, 1668, 1669, 1682, 1672, 1681, 1668, 1683, 1673, 1683, 1684, 1685, 1674, 1678, 1677, 1680, 1685, 1676, 1682, 1686, 1687, 1689, 1676, 1690, 1675, 1693, 1677, 1680, 1681, 1695, 1682, 1690, 1681, 1691, 1683, 1687, 1689, 1694, 1685, 1696, 1698, 1699, 1684, 1700, 1713, 0, 1697, 1687, 1689, 1693, 1690, 1686, 1693, 1697, 1701, 1691, 1695, 1704, 1702, 1706, 1691, 1708, 1699, 1694, 1694, 1700, 1696, 1707, 1699, 1712, 1700, 1713, 1698, 1697, 1710, 1701, 1702, 1711, 1715, 1704, 1714, 1701, 1707, 1706, 1704, 1702, 1706, 1708, 1708, 1710, 1716, 1712, 1711, 1717, 1707, 1718, 1712, 1719, 1714, 1720, 1715, 1710, 1718, 1721, 1711, 1715, 1722, 1714, 1720, 1723, 1724, 1721, 1716, 1730, 1725, 1719, 1728, 1716, 0, 1729, 1717, 1727, 1718, 1732, 1719, 1728, 1720, 1725, 1738, 1722, 1721, 1723, 1727, 1722, 1731, 1734, 1723, 1729, 1732, 1730, 1730, 1725, 1724, 1728, 1735, 1733, 1729, 1727, 1727, 1740, 1732, 1733, 1731, 1741, 1742, 1738, 1744, 1734, 1735, 1727, 1746, 1731, 1734, 1748, 1741, 1742, 1745, 1747, 1744, 1750, 1749, 1735, 1733, 1740, 0, 0, 1740, 1747, 1753, 1745, 1741, 1742, 1751, 1744, 1754, 0, 1755, 0, 1756, 1748, 1748, 1754, 1746, 1745, 1747, 1749, 1750, 1749, 1753, 1758, 1767, 1751, 1757, 1759, 1760, 1753, 1756, 1763, 1757, 1751, 1762, 1754, 1755, 1755, 1758, 1756, 1761, 1761, 1759, 1760, 1763, 1766, 1762, 1771, 1768, 1765, 1758, 1767, 1763, 1757, 1759, 1760, 1765, 1768, 1763, 1769, 1766, 1762, 1774, 1770, 1776, 1778, 1769, 1761, 1775, 1771, 1772, 1763, 1766, 1776, 1771, 1768, 1765, 1772, 1777, 1782, 1780, 1783, 0, 1790, 1774, 1778, 1769, 1770, 1782, 1774, 1770, 1776, 1778, 1775, 1784, 1775, 1786, 1772, 1780, 1783, 1777, 1785, 1788, 1789, 1786, 1777, 1782, 1780, 1783, 1784, 1790, 1791, 1791, 1792, 1793, 1794, 1789, 0, 1797, 0, 1798, 1784, 1795, 1786, 1796, 1797, 1785, 1788, 1785, 1788, 1789, 1799, 1800, 1796, 1804, 1792, 1801, 1794, 1791, 1793, 1792, 1793, 1794, 1805, 1795, 1797, 1800, 1804, 1803, 1795, 1806, 1796, 1798, 1799, 1807, 1801, 1803, 1808, 1799, 1800, 1809, 1804, 0, 1801, 1808, 0, 1807, 1810, 1811, 1813, 1805, 1812, 1814, 0, 1815, 1803, 1806, 1806, 1816, 1812, 0, 1807, 1820, 0, 1808, 1817, 1819, 1814, 1820, 1810, 1812, 1863, 1809, 1811, 1810, 1811, 1813, 1821, 1812, 1814, 1815, 1815, 1821, 1817, 1816, 1816, 1812, 1818, 1822, 1820, 1818, 1819, 1817, 1819, 1826, 1823, 1825, 1827, 1829, 1832, 1830, 0, 1831, 1863, 1833, 1818, 1822, 1830, 1864, 1821, 1823, 1825, 1829, 1833, 1818, 1822, 1826, 1818, 0, 1827, 1831, 1826, 1823, 1825, 1827, 1829, 1832, 1830, 1834, 1831, 1835, 1833, 1836, 1839, 1837, 1840, 1841, 1834, 1844, 0, 1864, 1835, 1842, 1841, 1843, 1836, 1837, 1849, 1839, 1850, 1840, 1855, 0, 1850, 1847, 1834, 1844, 1835, 1851, 1836, 1839, 1837, 1840, 1841, 1842, 1844, 1843, 1847, 1849, 1842, 1851, 1843, 1854, 1852, 1849, 1847, 1850, 1853, 1855, 1853, 1856, 1847, 1852, 1857, 1858, 1851, 1859, 1861, 0, 1866, 1854, 1862, 1858, 1860, 1847, 1865, 1862, 1870, 1856, 1854, 1852, 1861, 1877, 1871, 1853, 1867, 1873, 1856, 1866, 1859, 1857, 1858, 1867, 1859, 1861, 1860, 1866, 1871, 1872, 1865, 1860, 1874, 1865, 1862, 1870, 1875, 1876, 1878, 1871, 1871, 1871, 1879, 1867, 1873, 1877, 1876, 1872, 1880, 1881, 1882, 1875, 1895, 0, 1884, 1871, 1872, 1886, 1874, 1874, 1878, 1889, 0, 1875, 1876, 1878, 1871, 1885, 1879, 1879, 1888, 1881, 1888, 1892, 1885, 1880, 1881, 1884, 1891, 1895, 1886, 1884, 1882, 1889, 1886, 1890, 1896, 1893, 1889, 1890, 1891, 1894, 1897, 1898, 1885, 1892, 1893, 1888, 1899, 1899, 1892, 1900, 1894, 1901, 1897, 1891, 1905, 1902, 1903, 1896, 0, 1901, 1890, 1896, 1893, 1898, 1900, 1904, 1894, 1897, 1898, 1907, 1903, 1908, 1909, 1899, 1904, 1914, 1900, 1902, 1901, 1908, 1909, 1905, 1902, 1903, 1911, 1910, 1912, 1911, 1907, 1910, 1914, 1913, 1904, 1917, 1912, 1915, 1907, 1913, 1908, 1909, 1918, 1915, 1914, 1920, 1919, 1917, 1921, 1922, 0, 1923, 1924, 1911, 1910, 1912, 1925, 1927, 0, 1920, 1913, 1921, 1917, 1922, 1915, 1928, 1930, 1931, 1926, 1918, 1919, 1927, 1920, 1919, 1933, 1921, 1922, 1923, 1923, 1924, 1926, 1934, 1929, 1925, 1927, 1929, 1937, 1936, 1934, 1931, 1935, 1928, 1928, 1930, 1931, 1926, 1933, 1935, 1938, 1939, 1929, 1933, 1936, 1940, 1942, 1944, 1941, 1939, 1934, 1929, 1943, 1945, 1929, 1937, 1936, 1941, 1946, 1935, 1948, 0, 0, 1947, 1943, 1953, 1952, 1938, 1939, 1944, 1949, 1955, 1940, 1942, 1944, 1941, 1947, 1958, 1948, 1943, 1945, 1950, 1956, 1949, 1957, 1946, 1954, 1948, 1952, 1950, 1947, 1956, 1953, 1952, 1954, 1959, 1960, 1949, 1955, 1961, 1962, 1958, 1964, 1970, 1958, 1957, 1963, 1961, 1950, 1956, 1959, 1957, 1962, 1954, 1963, 1967, 1968, 1966, 1969, 1967, 1972, 1959, 1959, 1960, 1966, 1975, 1961, 1962, 1968, 1964, 1970, 1971, 1972, 1963, 1973, 1981, 1977, 1959, 1978, 1971, 1980, 1969, 1967, 1968, 1966, 1969, 1973, 1972, 1976, 1979, 1979, 1978, 1975, 1981, 1982, 1976, 1977, 1983, 1971, 1985, 1986, 1973, 1981, 1977, 1983, 1978, 1980, 1980, 1987, 1988, 1991, 1988, 1990, 1996, 1985, 1976, 1979, 1989, 1990, 1982, 1994, 1982, 1986, 1995, 1983, 1996, 1985, 1986, 1992, 1992, 1987, 1989, 1991, 1997, 1999, 1987, 1988, 1991, 0, 1990, 1996, 2000, 1994, 1998, 1989, 1995, 0, 1994, 2003, 1998, 1995, 2001, 2002, 2004, 2002, 1992, 2005, 2010, 2006, 2009, 2011, 2012, 2003, 2000, 2007, 1997, 1999, 2017, 2000, 2008, 1998, 2018, 2009, 2001, 2005, 2003, 2006, 2004, 2001, 2002, 2004, 2016, 2007, 2005, 2012, 2006, 2009, 2008, 2012, 2010, 2014, 2007, 2011, 2017, 2017, 2024, 2008, 2014, 2019, 2016, 2020, 2022, 2020, 2018, 2023, 2026, 2019, 2020, 2016, 2025, 0, 2028, 2022, 2033, 0, 2023, 0, 2014, 2037, 2029, 0, 2025, 2024, 2026, 2019, 2019, 2028, 2020, 2022, 2020, 2029, 2023, 2026, 2019, 2031, 2030, 2025, 2033, 2028, 2036, 2033, 2034, 2040, 2035, 2045, 2037, 2029, 2030, 2038, 2031, 2035, 2042, 2041, 2043, 2036, 2044, 2047, 0, 0, 2046, 0, 2031, 2030, 2034, 2049, 2048, 2036, 2051, 2034, 2040, 2035, 2045, 2046, 2042, 2038, 2038, 2041, 2049, 2042, 2041, 2048, 2050, 2047, 2047, 2053, 2043, 2046, 2044, 2054, 2050, 2055, 2049, 2048, 2051, 2051, 2057, 2056, 2058, 2059, 2060, 2061, 0, 2064, 2065, 2058, 2070, 2063, 2053, 2050, 2064, 2065, 2053, 2054, 2057, 2061, 2054, 2067, 2055, 2056, 2066, 2069, 2059, 2057, 2056, 2058, 2059, 2060, 2061, 2063, 2064, 2065, 2068, 2066, 2063, 2071, 2072, 0, 2070, 2068, 2067, 2074, 2075, 2069, 2067, 2072, 2076, 2066, 2069, 2078, 2084, 2084, 2074, 2077, 2081, 2083, 2071, 2082, 2088, 2068, 2085, 0, 2071, 2072, 2075, 2087, 2090, 2081, 2074, 2075, 2089, 2091, 2077, 2094, 2078, 0, 2078, 2084, 2076, 2083, 2077, 2081, 2083, 2082, 2082, 2089, 2085, 2085, 2087, 2091, 2088, 2098, 2087, 2090, 2096, 2099, 0, 2089, 2091, 2106, 2094, 2102, 2104, 2096, 2098, 2105, 2099, 2103, 2103, 2108, 2110, 2111, 2113, 2114, 2112, 2121, 0, 2113, 2098, 2118, 0, 2096, 2099, 2102, 2104, 2112, 2106, 2105, 2102, 2104, 2117, 2120, 2105, 0, 2103, 2114, 2108, 2111, 2111, 2113, 2114, 2112, 2110, 2116, 2122, 2117, 2118, 2121, 2123, 2120, 2125, 2116, 2127, 2122, 2126, 0, 2129, 2117, 2120, 2130, 2123, 2127, 2126, 2131, 2133, 2132, 2136, 2134, 2138, 0, 2116, 2122, 2139, 2136, 2137, 2123, 2140, 2125, 2141, 2127, 2134, 2126, 2129, 2129, 2135, 2131, 2130, 2132, 2144, 2133, 2131, 2133, 2132, 2136, 2134, 2138, 2137, 2135, 2142, 2139, 2143, 2137, 2145, 2140, 2146, 2141, 2147, 2148, 0, 2143, 2144, 2135, 2149, 2142, 2151, 2144, 2153, 2154, 2152, 2149, 2155, 2147, 2148, 2156, 2150, 2142, 2152, 2143, 2145, 2145, 2146, 2146, 2157, 2147, 2148, 2150, 2155, 2163, 2156, 2149, 2158, 2151, 2159, 2153, 2154, 2152, 2160, 2155, 2164, 2159, 2156, 2150, 2157, 2161, 2162, 2158, 2165, 2165, 2166, 2157, 2161, 2162, 2167, 0, 2163, 2166, 2164, 2158, 2160, 2159, 2170, 2168, 2172, 2160, 2168, 2164, 2167, 2169, 2175, 2173, 2161, 2162, 2171, 2165, 2172, 2166, 2178, 2175, 2176, 2167, 2169, 2173, 2180, 2176, 2181, 2179, 2170, 2170, 2168, 2172, 2171, 2182, 2183, 2177, 2169, 2175, 2173, 2177, 2179, 2171, 2178, 2184, 0, 2178, 2180, 2176, 2181, 2186, 2189, 2180, 2188, 2181, 2179, 2190, 2191, 2194, 2193, 2189, 2182, 2183, 2177, 2195, 2191, 2193, 2194, 2196, 2195, 2184, 2184, 2190, 2199, 2197, 2196, 2186, 2186, 2189, 2188, 2188, 2198, 2199, 2190, 2191, 2194, 2193, 2200, 2198, 2202, 2205, 2195, 2197, 2203, 2204, 2196, 2208, 2207, 2203, 2211, 2199, 2197, 2209, 2219, 2217, 0, 2218, 0, 2198, 2210, 2212, 2209, 2204, 2200, 2200, 2207, 2202, 2205, 2210, 2211, 2203, 2204, 2212, 2208, 2207, 2213, 2211, 2215, 0, 2209, 2214, 2217, 2216, 2218, 2213, 2219, 2210, 2212, 2215, 2214, 2216, 2220, 2223, 2221, 2224, 2222, 0, 2228, 2227, 2225, 2220, 2224, 2213, 2222, 2215, 2221, 2225, 2214, 2226, 2216, 2230, 2229, 0, 0, 2223, 2234, 0, 0, 2220, 2223, 2221, 2224, 2222, 2227, 2228, 2227, 2225, 2237, 2236, 2238, 2226, 2232, 2235, 2234, 2237, 2226, 2229, 2230, 2229, 2232, 2235, 2239, 2234, 2236, 2240, 2244, 2243, 2245, 2239, 2246, 2248, 2238, 2240, 2243, 2237, 2236, 2238, 2247, 2232, 2235, 2249, 2246, 2252, 2251, 2253, 2254, 2247, 2258, 2239, 2244, 2261, 2240, 2244, 2243, 2245, 2251, 2246, 2248, 2263, 2254, 2260, 2256, 2266, 2249, 2247, 2252, 2257, 2249, 2256, 2252, 2251, 2253, 2254, 2257, 2258, 2260, 2262, 2261, 2264, 2265, 0, 2271, 2273, 2274, 2262, 2263, 2272, 2260, 2256, 2266, 2275, 2272, 2278, 2257, 2265, 2281, 2276, 2274, 2277, 2279, 2264, 0, 2284, 2262, 2275, 2264, 2265, 2271, 2271, 2273, 2274, 2279, 2285, 2272, 2276, 2286, 2277, 2275, 2287, 2278, 0, 2293, 2281, 2276, 2284, 2277, 2279, 2288, 2286, 2284, 2289, 2290, 2291, 2293, 2285, 2296, 0, 2297, 2289, 2285, 2287, 2294, 2286, 2295, 2298, 2287, 2288, 2296, 2293, 2290, 2303, 2291, 2299, 2300, 2288, 0, 2304, 2289, 2290, 2291, 2301, 2306, 2296, 2294, 2297, 2295, 2305, 2302, 2294, 2301, 2295, 2298, 2299, 2306, 2307, 2300, 2302, 2308, 2304, 2299, 2300, 2309, 2303, 2304, 2312, 2313, 2314, 2301, 2306, 2321, 2315, 2318, 2305, 2305, 2302, 2315, 2307, 2316, 2312, 2317, 0, 2307, 2319, 2322, 2308, 2320, 0, 2321, 2309, 2323, 2314, 2312, 2313, 2314, 2328, 2322, 2321, 2324, 2325, 2316, 2327, 2317, 2315, 2318, 2316, 2319, 2317, 2320, 2323, 2319, 2322, 2330, 2320, 2325, 2332, 2333, 2323, 2335, 2328, 2324, 2334, 2328, 2327, 2338, 2324, 2325, 2330, 2327, 2336, 2334, 2337, 2335, 2342, 2339, 2345, 2344, 2332, 2333, 2330, 0, 2342, 2332, 2333, 2344, 2335, 2343, 2336, 2334, 2337, 2338, 2338, 2339, 2343, 2347, 2348, 2336, 2346, 2337, 2349, 2342, 2339, 2345, 2344, 2352, 2346, 2350, 2348, 2354, 2355, 2356, 2358, 2347, 2343, 2350, 2354, 2352, 2357, 2359, 2357, 2360, 2347, 2348, 0, 2346, 0, 2349, 2361, 2362, 2363, 2365, 2352, 2355, 2350, 0, 2354, 2355, 2356, 2368, 2366, 0, 2372, 2373, 2358, 2357, 2369, 2374, 2362, 2365, 2376, 2359, 2363, 2360, 2366, 2361, 2362, 2363, 2365, 2369, 2370, 2378, 2368, 2384, 2380, 2386, 2368, 2366, 2372, 2372, 2373, 2380, 2370, 2369, 2374, 2381, 2383, 2376, 2387, 0, 2381, 2389, 2388, 2383, 2391, 2394, 2396, 2370, 2378, 2384, 2384, 2380, 2386, 2391, 2393, 2389, 2395, 2398, 2397, 2402, 2399, 2393, 2401, 2383, 2412, 2387, 2388, 2381, 2389, 2388, 2397, 2391, 2394, 2396, 2399, 2401, 2403, 2400, 2404, 2411, 0, 2393, 2395, 2395, 2398, 2397, 2400, 2399, 2407, 2401, 2408, 2402, 2409, 2407, 2408, 2410, 2412, 2415, 2414, 2409, 2411, 2404, 2410, 2403, 2400, 2404, 2411, 2413, 2418, 2413, 2420, 2423, 2421, 2423, 0, 0, 2424, 2408, 0, 2409, 2407, 2414, 2410, 2426, 2415, 2414, 2430, 0, 2432, 2420, 2418, 2425, 2425, 2427, 2413, 2418, 2421, 2420, 2423, 2421, 2424, 2425, 2427, 2424, 2428, 2426, 2431, 2432, 2429, 2435, 2426, 2428, 2433, 2430, 2431, 2432, 2434, 2433, 2425, 2425, 2427, 2429, 2436, 2440, 2434, 2437, 0, 2438, 0, 2439, 2448, 2428, 0, 2431, 2440, 2429, 2435, 2441, 2442, 2443, 2443, 0, 2444, 2434, 2433, 2442, 2452, 2449, 2436, 2436, 2440, 2437, 2437, 2438, 2438, 2439, 2439, 2448, 2450, 2441, 2444, 2445, 2453, 2446, 2441, 2442, 2443, 2450, 2445, 2444, 2446, 2449, 2454, 2452, 2449, 2455, 2457, 2458, 2459, 2463, 2460, 0, 2453, 2462, 0, 2450, 2464, 0, 2445, 2453, 2446, 2474, 2462, 2465, 2468, 2458, 2459, 2455, 2460, 2454, 2466, 0, 2455, 2457, 2458, 2459, 2463, 2460, 2468, 2464, 2462, 2465, 2466, 2464, 2467, 2469, 2475, 2477, 2474, 2467, 2465, 2468, 2478, 2482, 2481, 2475, 2481, 2466, 2484, 2483, 2486, 2490, 2488, 2469, 0, 2477, 2483, 2478, 2488, 2491, 2495, 2482, 2469, 2475, 2477, 2486, 2467, 2492, 2498, 2478, 2482, 2481, 2493, 2490, 2499, 2500, 2483, 2486, 2490, 2488, 2484, 2491, 2495, 2504, 0, 2496, 2491, 2495, 2496, 2501, 2493, 2502, 2503, 2492, 2492, 2498, 2506, 2509, 2502, 2493, 2503, 2499, 2500, 2507, 2508, 2504, 2514, 2501, 2510, 2516, 2504, 2496, 2496, 2513, 2511, 2496, 2501, 2510, 2502, 2503, 2511, 2512, 2513, 2522, 2509, 2507, 2508, 2515, 2506, 2515, 2507, 2508, 2519, 2524, 2518, 2510, 2516, 2525, 2514, 2520, 2513, 2511, 2518, 2512, 2519, 2526, 2520, 2524, 2512, 2527, 2522, 2525, 2528, 2531, 2515, 2530, 2533, 2529, 2536, 2519, 2524, 2518, 2537, 2528, 2525, 2529, 2520, 2527, 2526, 2532, 2532, 2539, 2526, 2534, 2530, 2531, 2527, 2539, 2541, 2528, 2531, 2534, 2530, 2533, 2529, 2536, 2543, 2546, 2544, 2537, 2545, 2548, 0, 2553, 0, 2549, 2532, 2543, 2539, 2544, 2534, 2545, 2549, 2550, 2551, 2541, 2556, 2550, 2554, 2546, 2558, 2557, 2551, 2543, 2546, 2544, 2557, 2545, 2548, 2553, 2553, 2554, 2549, 2559, 2561, 2560, 2562, 2563, 2556, 2564, 2550, 2551, 2560, 2556, 2565, 2554, 2564, 2558, 2557, 0, 2566, 2569, 2562, 2561, 2567, 2563, 2577, 2578, 2566, 2570, 2559, 2561, 2560, 2562, 2563, 2568, 2564, 2571, 2576, 2567, 2575, 2580, 2568, 2581, 2579, 2576, 2565, 2566, 2569, 0, 2561, 2567, 2581, 2570, 2578, 2575, 2570, 2583, 2577, 2584, 2586, 2585, 2568, 2571, 2571, 2576, 2588, 2575, 2579, 2585, 2581, 2579, 2590, 2580, 2591, 2587, 2587, 2592, 2594, 2583, 2595, 2584, 2591, 2597, 2583, 2587, 2584, 2596, 2585, 2598, 2599, 2600, 2586, 2588, 2601, 2592, 2597, 2602, 2604, 2590, 2607, 2591, 2587, 2587, 2592, 2594, 2612, 2595, 2607, 2596, 2597, 2598, 2614, 2618, 2596, 2609, 2598, 2599, 2600, 2602, 2609, 2601, 2615, 2610, 2602, 2604, 2611, 2607, 2610, 2616, 2617, 2611, 2612, 2612, 2623, 2615, 2616, 2619, 2620, 2614, 2618, 2625, 2609, 2628, 2626, 2619, 2627, 2629, 2617, 2615, 2610, 2630, 2631, 2611, 2632, 0, 2616, 2617, 0, 2627, 2620, 2623, 2629, 2636, 2619, 2620, 2626, 2637, 2625, 2640, 2630, 2626, 2638, 2627, 2629, 2628, 2632, 2634, 2630, 2631, 2635, 2632, 2637, 2641, 2634, 2636, 2645, 2635, 2640, 2648, 2636, 2641, 2644, 2638, 2637, 2642, 2640, 2645, 2643, 2638, 2647, 2644, 2642, 2652, 2634, 2643, 2647, 2635, 2646, 2646, 2641, 2648, 2655, 2645, 2651, 2656, 2648, 2652, 2646, 2644, 2657, 2651, 2642, 2661, 2663, 2643, 2667, 2647, 2664, 2664, 2652, 2665, 2665, 2666, 2666, 2646, 2646, 2669, 2674, 2655, 2679, 2651, 2656, 2657, 2673, 2670, 2671, 2657, 2678, 2667, 2661, 2663, 2680, 2667, 2670, 2686, 2677, 2664, 2677, 2671, 2665, 2685, 2666, 2679, 2669, 2674, 2673, 2679, 2678, 2681, 2680, 2673, 2670, 2671, 2684, 2678, 2683, 2687, 2688, 2680, 2689, 2681, 2686, 2677, 2691, 2683, 2694, 2685, 2685, 2691, 2688, 2690, 2684, 2692, 2690, 2693, 2681, 2693, 2694, 2699, 2695, 2684, 2689, 2683, 2687, 2688, 2695, 2689, 2696, 2690, 2697, 2698, 2700, 2694, 2703, 2706, 2691, 2707, 2690, 2698, 2708, 2690, 2693, 2709, 2710, 2692, 2699, 2695, 2711, 2712, 2696, 2714, 2697, 2715, 2700, 2696, 2716, 2697, 2698, 2700, 2718, 2703, 2706, 2716, 2707, 2719, 2722, 2708, 2718, 2714, 2709, 2710, 2720, 2724, 2721, 2711, 2712, 2723, 2714, 2725, 2715, 2722, 2728, 2716, 2720, 2724, 2729, 2718, 2721, 2730, 2730, 2728, 2719, 2722, 2731, 2734, 2732, 2735, 2736, 2720, 2724, 2721, 0, 2723, 2723, 2732, 2725, 2738, 2737, 2728, 2729, 2736, 2742, 2729, 2753, 2738, 2730, 2739, 2751, 2734, 2731, 2731, 2734, 2732, 2742, 2736, 2739, 2740, 2754, 2735, 2737, 2757, 2756, 2758, 2738, 2737, 2756, 2760, 2740, 2742, 2759, 2753, 2751, 2764, 2739, 2751, 2763, 2759, 2762, 2757, 2760, 2765, 2762, 2767, 2740, 2754, 2758, 2766, 2757, 2756, 2758, 0, 2763, 2768, 2760, 2764, 2769, 2759, 2780, 2766, 2764, 2771, 2770, 2763, 2769, 2762, 2765, 2768, 2765, 2767, 2767, 2770, 2771, 2772, 2766, 2772, 2774, 2775, 2773, 2778, 2768, 2781, 2774, 2769, 2775, 2780, 2779, 2782, 2771, 2770, 2773, 2783, 2778, 2779, 2784, 2785, 2788, 0, 2793, 2781, 2772, 2786, 2789, 2774, 2775, 2773, 2778, 2796, 2781, 2786, 2790, 0, 2787, 2779, 2782, 2798, 0, 2783, 2783, 2787, 2788, 2784, 2785, 2788, 2789, 2791, 2792, 2791, 2786, 2789, 2793, 2794, 2790, 2795, 2796, 2797, 2800, 2790, 2792, 2787, 2795, 2802, 2798, 2797, 2794, 2805, 0, 2806, 2800, 2808, 2802, 2807, 2791, 2792, 2809, 2810, 2811, 2808, 2794, 0, 2795, 2812, 2797, 2800, 2814, 0, 2819, 2818, 2802, 2811, 2807, 2813, 2805, 2806, 2806, 2812, 2808, 2816, 2807, 2813, 2818, 2822, 2823, 2811, 2816, 2821, 2809, 2810, 2812, 2819, 2823, 2814, 2821, 2819, 2818, 2827, 2824, 2825, 2813, 2826, 0, 2832, 2834, 2822, 2816, 2828, 2830, 2826, 2822, 2823, 2824, 2825, 2821, 2831, 2833, 2830, 2835, 2827, 2840, 2842, 0, 2831, 2827, 2824, 2825, 2836, 2826, 2828, 2832, 2837, 2839, 2838, 2828, 2830, 2834, 2849, 2833, 2841, 2839, 2844, 2831, 2833, 2835, 2835, 0, 2846, 2842, 2836, 2852, 2854, 2840, 2837, 2836, 2838, 0, 2845, 2837, 2839, 2838, 2841, 2847, 2848, 2844, 2845, 2841, 2846, 2844, 2849, 2847, 2848, 2850, 2851, 2846, 2857, 2852, 2852, 2854, 2855, 2850, 2856, 2855, 2857, 2845, 2858, 2872, 2851, 2860, 2847, 2848, 2859, 0, 2858, 2861, 0, 2862, 2855, 2865, 2850, 2851, 2867, 2857, 2856, 2869, 2859, 2855, 2868, 2856, 2855, 2862, 2874, 2858, 2872, 2860, 2860, 2861, 2870, 2859, 2864, 2864, 2861, 2866, 2862, 2865, 2865, 2869, 2867, 2867, 2873, 2866, 2869, 2871, 2868, 2868, 2875, 2874, 2870, 2874, 2878, 2871, 2876, 2879, 2877, 2870, 2880, 2864, 2878, 2882, 2866, 2883, 2873, 2885, 2880, 2886, 2891, 2873, 2887, 2883, 2871, 2895, 2876, 2875, 2877, 2879, 2887, 2878, 2889, 2876, 2879, 2877, 2894, 2880, 2898, 2885, 2882, 2886, 2883, 2888, 2885, 2892, 2886, 2891, 2893, 2887, 2899, 2888, 2895, 2892, 2896, 2908, 2893, 2902, 2889, 2889, 2900, 2905, 2894, 2894, 2909, 2898, 0, 0, 2906, 0, 2888, 0, 2892, 0, 2896, 2893, 2906, 2899, 2907, 2902, 2900, 2896, 2908, 2905, 2902, 0, 2907, 2900, 2905, 0, 0, 2909, 0, 0, 0, 2906, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2907, 2913, 2913, 2913, 2913, 2913, 2913, 2913, 2914, 2914, 2914, 2914, 2914, 2914, 2914, 2915, 2915, 2915, 2915, 2915, 2915, 2915, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2917, 2917, 2917, 2917, 2917, 2917, 2917, 2919, 2919, 0, 2919, 2919, 2919, 2919, 2920, 2920, 0, 0, 0, 2920, 2920, 2921, 2921, 0, 0, 2921, 0, 2921, 2922, 0, 0, 0, 0, 0, 2922, 2923, 2923, 0, 0, 0, 2923, 2923, 2924, 0, 0, 0, 0, 0, 2924, 2925, 2925, 0, 2925, 2925, 2925, 2925, 2926, 2926, 0, 2926, 2926, 2926, 2926, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912, 2912 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 0; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() ((yy_more_flag) = 1) #define YY_MORE_ADJ (yy_more_len) #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "util/configlexer.lex" #line 2 "util/configlexer.lex" /* * configlexer.lex - lexical analyzer for unbound config file * * Copyright (c) 2001-2006, NLnet Labs. All rights reserved * * See LICENSE for the license. * */ /* because flex keeps having sign-unsigned compare problems that are unfixed*/ #if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2)))) #pragma GCC diagnostic ignored "-Wsign-compare" #endif #include #include #ifdef HAVE_GLOB_H # include #endif #include "util/config_file.h" #include "util/configparser.h" void ub_c_error(const char *message); #if 0 #define LEXOUT(s) printf s /* used ONLY when debugging */ #else #define LEXOUT(s) #endif /** avoid warning in about fwrite return value */ #define ECHO ub_c_error_msg("syntax error at text: %s", yytext) /** A parser variable, this is a statement in the config file which is * of the form variable: value1 value2 ... nargs is the number of values. */ #define YDVAR(nargs, var) \ num_args=(nargs); \ LEXOUT(("v(%s%d) ", yytext, num_args)); \ if(num_args > 0) { BEGIN(val); } \ return (var); struct inc_state { char* filename; int line; YY_BUFFER_STATE buffer; struct inc_state* next; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; } static void config_start_include(const char* filename) { FILE *input; struct inc_state* s; char* nm; if(inc_depth++ > 100000) { ub_c_error_msg("too many include files"); return; } if(*filename == '\0') { ub_c_error_msg("empty include file name"); return; } s = (struct inc_state*)malloc(sizeof(*s)); if(!s) { ub_c_error_msg("include %s: malloc failure", filename); return; } if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } nm = strdup(filename); if(!nm) { ub_c_error_msg("include %s: strdup failure", filename); free(s); return; } input = fopen(filename, "r"); if(!input) { ub_c_error_msg("cannot open include file '%s': %s", filename, strerror(errno)); free(s); free(nm); return; } LEXOUT(("switch_to_include_file(%s)\n", filename)); s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename) { /* check for wildcards */ #ifdef HAVE_GLOB glob_t g; int i, r, flags; if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') && !strchr(filename, '{') && !strchr(filename, '~'))) { flags = 0 #ifdef GLOB_ERR | GLOB_ERR #endif /* do not set GLOB_NOSORT so the results are sorted and in a predictable order. */ #ifdef GLOB_BRACE | GLOB_BRACE #endif #ifdef GLOB_TILDE | GLOB_TILDE #endif ; memset(&g, 0, sizeof(g)); if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } r = glob(filename, flags, NULL, &g); if(r) { /* some error */ globfree(&g); if(r == GLOB_NOMATCH) return; /* no matches for pattern */ config_start_include(filename); /* let original deal with it */ return; } /* process files found, if any */ for(i=(int)g.gl_pathc-1; i>=0; i--) { config_start_include(g.gl_pathv[i]); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename); } static void config_end_include(void) { struct inc_state* s = config_include_stack; --inc_depth; if(!s) return; free(cfg_parser->filename); cfg_parser->filename = s->filename; cfg_parser->line = s->line; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(s->buffer); config_include_stack = s->next; free(s); } #ifndef yy_set_bol /* compat definition, for flex 2.4.6 */ #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \ yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \ } #endif #line 3431 "" #define YY_NO_INPUT 1 #line 184 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 3440 "" #line 3442 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals ( void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy ( void ); int yyget_debug ( void ); void yyset_debug ( int debug_flag ); YY_EXTRA_TYPE yyget_extra ( void ); void yyset_extra ( YY_EXTRA_TYPE user_defined ); FILE *yyget_in ( void ); void yyset_in ( FILE * _in_str ); FILE *yyget_out ( void ); void yyset_out ( FILE * _out_str ); int yyget_leng ( void ); char *yyget_text ( void ); int yyget_lineno ( void ); void yyset_lineno ( int _line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap ( void ); #else extern int yywrap ( void ); #endif #endif #ifndef YY_NO_UNPUT #endif #ifndef yytext_ptr static void yy_flex_strncpy ( char *, const char *, int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen ( const char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput ( void ); #else static int input ( void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ int n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK /*LINTED*/break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_load_buffer_state( ); } { #line 204 "util/configlexer.lex" #line 3664 "" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr)); (yy_more_flag) = 0; } yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2913 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 8310 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 205 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 207 "util/configlexer.lex" { /* note that flex makes the longest match and '.' is any but not nl */ LEXOUT(("comment(%s) ", yytext)); /* ignore */ } YY_BREAK case 3: YY_RULE_SETUP #line 210 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 211 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 212 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) } YY_BREAK case 6: YY_RULE_SETUP #line 213 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 7: YY_RULE_SETUP #line 214 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 8: YY_RULE_SETUP #line 215 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 9: YY_RULE_SETUP #line 216 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 10: YY_RULE_SETUP #line 217 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 11: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 12: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 14: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 15: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 16: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP6) } YY_BREAK case 17: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 18: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 19: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 20: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_TCP_MSS) } YY_BREAK case 21: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_TCP_MSS) } YY_BREAK case 22: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_TCP_IDLE_TIMEOUT) } YY_BREAK case 23: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) } YY_BREAK case 24: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) } YY_BREAK case 25: YY_RULE_SETUP #line 232 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 26: YY_RULE_SETUP #line 233 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 27: YY_RULE_SETUP #line 234 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 28: YY_RULE_SETUP #line 235 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 29: YY_RULE_SETUP #line 236 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 30: YY_RULE_SETUP #line 237 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 31: YY_RULE_SETUP #line 238 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 32: YY_RULE_SETUP #line 239 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 33: YY_RULE_SETUP #line 240 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 34: YY_RULE_SETUP #line 241 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 35: YY_RULE_SETUP #line 242 "util/configlexer.lex" { YDVAR(1, VAR_TLS_WIN_CERT) } YY_BREAK case 36: YY_RULE_SETUP #line 243 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 37: YY_RULE_SETUP #line 244 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 38: YY_RULE_SETUP #line 245 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 39: YY_RULE_SETUP #line 246 "util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 40: YY_RULE_SETUP #line 247 "util/configlexer.lex" { YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) } YY_BREAK case 41: YY_RULE_SETUP #line 248 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERS) } YY_BREAK case 42: YY_RULE_SETUP #line 249 "util/configlexer.lex" { YDVAR(1, VAR_TLS_CIPHERSUITES) } YY_BREAK case 43: YY_RULE_SETUP #line 250 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 44: YY_RULE_SETUP #line 251 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 45: YY_RULE_SETUP #line 252 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 46: YY_RULE_SETUP #line 253 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 47: YY_RULE_SETUP #line 254 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 48: YY_RULE_SETUP #line 255 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 49: YY_RULE_SETUP #line 256 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 50: YY_RULE_SETUP #line 257 "util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 51: YY_RULE_SETUP #line 258 "util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 52: YY_RULE_SETUP #line 259 "util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 53: YY_RULE_SETUP #line 260 "util/configlexer.lex" { YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 54: YY_RULE_SETUP #line 261 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 55: YY_RULE_SETUP #line 262 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 56: YY_RULE_SETUP #line 263 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 57: YY_RULE_SETUP #line 264 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 58: YY_RULE_SETUP #line 265 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 59: YY_RULE_SETUP #line 266 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 60: YY_RULE_SETUP #line 267 "util/configlexer.lex" { YDVAR(1, VAR_STREAM_WAIT_SIZE) } YY_BREAK case 61: YY_RULE_SETUP #line 268 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 62: YY_RULE_SETUP #line 269 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 63: YY_RULE_SETUP #line 270 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 64: YY_RULE_SETUP #line 271 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 65: YY_RULE_SETUP #line 272 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 66: YY_RULE_SETUP #line 273 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 67: YY_RULE_SETUP #line 274 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 68: YY_RULE_SETUP #line 275 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 69: YY_RULE_SETUP #line 276 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 70: YY_RULE_SETUP #line 277 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 71: YY_RULE_SETUP #line 278 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 72: YY_RULE_SETUP #line 279 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 73: YY_RULE_SETUP #line 280 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 74: YY_RULE_SETUP #line 281 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 75: YY_RULE_SETUP #line 282 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 76: YY_RULE_SETUP #line 283 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 77: YY_RULE_SETUP #line 284 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 78: YY_RULE_SETUP #line 285 "util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 79: YY_RULE_SETUP #line 286 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 80: YY_RULE_SETUP #line 287 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 81: YY_RULE_SETUP #line 288 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 82: YY_RULE_SETUP #line 289 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 83: YY_RULE_SETUP #line 290 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 84: YY_RULE_SETUP #line 291 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 85: YY_RULE_SETUP #line 292 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 86: YY_RULE_SETUP #line 293 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 87: YY_RULE_SETUP #line 294 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 88: YY_RULE_SETUP #line 295 "util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 89: YY_RULE_SETUP #line 296 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 90: YY_RULE_SETUP #line 297 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 91: YY_RULE_SETUP #line 298 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 92: YY_RULE_SETUP #line 299 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 93: YY_RULE_SETUP #line 300 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 94: YY_RULE_SETUP #line 301 "util/configlexer.lex" { YDVAR(1, VAR_DENY_ANY) } YY_BREAK case 95: YY_RULE_SETUP #line 302 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 96: YY_RULE_SETUP #line 303 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 97: YY_RULE_SETUP #line 304 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 98: YY_RULE_SETUP #line 305 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 99: YY_RULE_SETUP #line 306 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 100: YY_RULE_SETUP #line 307 "util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 101: YY_RULE_SETUP #line 308 "util/configlexer.lex" { YDVAR(1, VAR_STUB_NO_CACHE) } YY_BREAK case 102: YY_RULE_SETUP #line 309 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 103: YY_RULE_SETUP #line 310 "util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 104: YY_RULE_SETUP #line 311 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 105: YY_RULE_SETUP #line 312 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 106: YY_RULE_SETUP #line 313 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 107: YY_RULE_SETUP #line 314 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 108: YY_RULE_SETUP #line 315 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_NO_CACHE) } YY_BREAK case 109: YY_RULE_SETUP #line 316 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 110: YY_RULE_SETUP #line 317 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 111: YY_RULE_SETUP #line 318 "util/configlexer.lex" { YDVAR(0, VAR_AUTH_ZONE) } YY_BREAK case 112: YY_RULE_SETUP #line 319 "util/configlexer.lex" { YDVAR(1, VAR_ZONEFILE) } YY_BREAK case 113: YY_RULE_SETUP #line 320 "util/configlexer.lex" { YDVAR(1, VAR_MASTER) } YY_BREAK case 114: YY_RULE_SETUP #line 321 "util/configlexer.lex" { YDVAR(1, VAR_URL) } YY_BREAK case 115: YY_RULE_SETUP #line 322 "util/configlexer.lex" { YDVAR(1, VAR_ALLOW_NOTIFY) } YY_BREAK case 116: YY_RULE_SETUP #line 323 "util/configlexer.lex" { YDVAR(1, VAR_FOR_DOWNSTREAM) } YY_BREAK case 117: YY_RULE_SETUP #line 324 "util/configlexer.lex" { YDVAR(1, VAR_FOR_UPSTREAM) } YY_BREAK case 118: YY_RULE_SETUP #line 325 "util/configlexer.lex" { YDVAR(1, VAR_FALLBACK_ENABLED) } YY_BREAK case 119: YY_RULE_SETUP #line 326 "util/configlexer.lex" { YDVAR(0, VAR_VIEW) } YY_BREAK case 120: YY_RULE_SETUP #line 327 "util/configlexer.lex" { YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 121: YY_RULE_SETUP #line 328 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 122: YY_RULE_SETUP #line 329 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 123: YY_RULE_SETUP #line 330 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 124: YY_RULE_SETUP #line 331 "util/configlexer.lex" { YDVAR(1, VAR_SEND_CLIENT_SUBNET) } YY_BREAK case 125: YY_RULE_SETUP #line 332 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } YY_BREAK case 126: YY_RULE_SETUP #line 333 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } YY_BREAK case 127: YY_RULE_SETUP #line 334 "util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } YY_BREAK case 128: YY_RULE_SETUP #line 335 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } YY_BREAK case 129: YY_RULE_SETUP #line 336 "util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } YY_BREAK case 130: YY_RULE_SETUP #line 337 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) } YY_BREAK case 131: YY_RULE_SETUP #line 338 "util/configlexer.lex" { YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) } YY_BREAK case 132: YY_RULE_SETUP #line 339 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) } YY_BREAK case 133: YY_RULE_SETUP #line 340 "util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) } YY_BREAK case 134: YY_RULE_SETUP #line 341 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 135: YY_RULE_SETUP #line 342 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 136: YY_RULE_SETUP #line 343 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_TRUSTANCHOR) } YY_BREAK case 137: YY_RULE_SETUP #line 344 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 138: YY_RULE_SETUP #line 345 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 139: YY_RULE_SETUP #line 346 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 140: YY_RULE_SETUP #line 347 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 141: YY_RULE_SETUP #line 348 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 142: YY_RULE_SETUP #line 349 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 143: YY_RULE_SETUP #line 350 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 144: YY_RULE_SETUP #line 351 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 145: YY_RULE_SETUP #line 352 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 146: YY_RULE_SETUP #line 353 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } YY_BREAK case 147: YY_RULE_SETUP #line 354 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_KEY_SENTINEL) } YY_BREAK case 148: YY_RULE_SETUP #line 355 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 149: YY_RULE_SETUP #line 356 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 150: YY_RULE_SETUP #line 357 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 151: YY_RULE_SETUP #line 358 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 152: YY_RULE_SETUP #line 359 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 153: YY_RULE_SETUP #line 360 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 154: YY_RULE_SETUP #line 361 "util/configlexer.lex" { YDVAR(1, VAR_AGGRESSIVE_NSEC) } YY_BREAK case 155: YY_RULE_SETUP #line 362 "util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 156: YY_RULE_SETUP #line 363 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 157: YY_RULE_SETUP #line 364 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL) } YY_BREAK case 158: YY_RULE_SETUP #line 365 "util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) } YY_BREAK case 159: YY_RULE_SETUP #line 366 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 160: YY_RULE_SETUP #line 367 "util/configlexer.lex" { YDVAR(1, VAR_FAKE_SHA1) } YY_BREAK case 161: YY_RULE_SETUP #line 368 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 162: YY_RULE_SETUP #line 369 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 163: YY_RULE_SETUP #line 370 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 164: YY_RULE_SETUP #line 371 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 165: YY_RULE_SETUP #line 372 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 166: YY_RULE_SETUP #line 374 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 167: YY_RULE_SETUP #line 375 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 168: YY_RULE_SETUP #line 376 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 169: YY_RULE_SETUP #line 377 "util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 170: YY_RULE_SETUP #line 378 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 171: YY_RULE_SETUP #line 379 "util/configlexer.lex" { YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 172: YY_RULE_SETUP #line 380 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 173: YY_RULE_SETUP #line 381 "util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 174: YY_RULE_SETUP #line 382 "util/configlexer.lex" { YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 175: YY_RULE_SETUP #line 383 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TAG_QUERYREPLY) } YY_BREAK case 176: YY_RULE_SETUP #line 384 "util/configlexer.lex" { YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } YY_BREAK case 177: YY_RULE_SETUP #line 385 "util/configlexer.lex" { YDVAR(1, VAR_LOG_SERVFAIL) } YY_BREAK case 178: YY_RULE_SETUP #line 386 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 179: YY_RULE_SETUP #line 387 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 180: YY_RULE_SETUP #line 388 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 181: YY_RULE_SETUP #line 389 "util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 182: YY_RULE_SETUP #line 390 "util/configlexer.lex" { YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 183: YY_RULE_SETUP #line 391 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 184: YY_RULE_SETUP #line 392 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 185: YY_RULE_SETUP #line 393 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 186: YY_RULE_SETUP #line 394 "util/configlexer.lex" { YDVAR(1, VAR_SHM_ENABLE) } YY_BREAK case 187: YY_RULE_SETUP #line 395 "util/configlexer.lex" { YDVAR(1, VAR_SHM_KEY) } YY_BREAK case 188: YY_RULE_SETUP #line 396 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 189: YY_RULE_SETUP #line 397 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 190: YY_RULE_SETUP #line 398 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 191: YY_RULE_SETUP #line 399 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 192: YY_RULE_SETUP #line 400 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 193: YY_RULE_SETUP #line 401 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 194: YY_RULE_SETUP #line 402 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 195: YY_RULE_SETUP #line 403 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 196: YY_RULE_SETUP #line 404 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 197: YY_RULE_SETUP #line 405 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 198: YY_RULE_SETUP #line 406 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 199: YY_RULE_SETUP #line 407 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 200: YY_RULE_SETUP #line 408 "util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 201: YY_RULE_SETUP #line 409 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 202: YY_RULE_SETUP #line 410 "util/configlexer.lex" { YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) } YY_BREAK case 203: YY_RULE_SETUP #line 411 "util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 204: YY_RULE_SETUP #line 412 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 205: YY_RULE_SETUP #line 413 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 206: YY_RULE_SETUP #line 414 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_IGNORE_AAAA) } YY_BREAK case 207: YY_RULE_SETUP #line 415 "util/configlexer.lex" { YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 208: YY_RULE_SETUP #line 416 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 209: YY_RULE_SETUP #line 417 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 210: YY_RULE_SETUP #line 418 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 211: YY_RULE_SETUP #line 419 "util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 212: YY_RULE_SETUP #line 420 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 213: YY_RULE_SETUP #line 421 "util/configlexer.lex" { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 214: YY_RULE_SETUP #line 422 "util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 215: YY_RULE_SETUP #line 423 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 216: YY_RULE_SETUP #line 424 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 217: YY_RULE_SETUP #line 425 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 218: YY_RULE_SETUP #line 426 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 219: YY_RULE_SETUP #line 427 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 220: YY_RULE_SETUP #line 428 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 221: YY_RULE_SETUP #line 429 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 222: YY_RULE_SETUP #line 431 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 223: YY_RULE_SETUP #line 433 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 224: YY_RULE_SETUP #line 435 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 225: YY_RULE_SETUP #line 437 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 226: YY_RULE_SETUP #line 439 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 227: YY_RULE_SETUP #line 441 "util/configlexer.lex" { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 228: YY_RULE_SETUP #line 442 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 229: YY_RULE_SETUP #line 443 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 230: YY_RULE_SETUP #line 444 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 231: YY_RULE_SETUP #line 445 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 232: YY_RULE_SETUP #line 446 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 233: YY_RULE_SETUP #line 447 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 234: YY_RULE_SETUP #line 448 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 235: YY_RULE_SETUP #line 449 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 236: YY_RULE_SETUP #line 450 "util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 237: YY_RULE_SETUP #line 451 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 238: YY_RULE_SETUP #line 452 "util/configlexer.lex" { YDVAR(1, VAR_LOW_RTT) } YY_BREAK case 239: YY_RULE_SETUP #line 453 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_NUM) } YY_BREAK case 240: YY_RULE_SETUP #line 454 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 241: YY_RULE_SETUP #line 455 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 242: YY_RULE_SETUP #line 456 "util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 243: YY_RULE_SETUP #line 457 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_TAG) } YY_BREAK case 244: YY_RULE_SETUP #line 458 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP) } YY_BREAK case 245: YY_RULE_SETUP #line 459 "util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_DATA) } YY_BREAK case 246: YY_RULE_SETUP #line 460 "util/configlexer.lex" { YDVAR(0, VAR_DNSCRYPT) } YY_BREAK case 247: YY_RULE_SETUP #line 461 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_ENABLE) } YY_BREAK case 248: YY_RULE_SETUP #line 462 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PORT) } YY_BREAK case 249: YY_RULE_SETUP #line 463 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER) } YY_BREAK case 250: YY_RULE_SETUP #line 464 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } YY_BREAK case 251: YY_RULE_SETUP #line 465 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } YY_BREAK case 252: YY_RULE_SETUP #line 466 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } YY_BREAK case 253: YY_RULE_SETUP #line 467 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } YY_BREAK case 254: YY_RULE_SETUP #line 469 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } YY_BREAK case 255: YY_RULE_SETUP #line 471 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } YY_BREAK case 256: YY_RULE_SETUP #line 472 "util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } YY_BREAK case 257: YY_RULE_SETUP #line 473 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_ENABLED) } YY_BREAK case 258: YY_RULE_SETUP #line 474 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } YY_BREAK case 259: YY_RULE_SETUP #line 475 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_HOOK) } YY_BREAK case 260: YY_RULE_SETUP #line 476 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_MAX_TTL) } YY_BREAK case 261: YY_RULE_SETUP #line 477 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 262: YY_RULE_SETUP #line 478 "util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_STRICT) } YY_BREAK case 263: YY_RULE_SETUP #line 479 "util/configlexer.lex" { YDVAR(0, VAR_CACHEDB) } YY_BREAK case 264: YY_RULE_SETUP #line 480 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_BACKEND) } YY_BREAK case 265: YY_RULE_SETUP #line 481 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_SECRETSEED) } YY_BREAK case 266: YY_RULE_SETUP #line 482 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISHOST) } YY_BREAK case 267: YY_RULE_SETUP #line 483 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISPORT) } YY_BREAK case 268: YY_RULE_SETUP #line 484 "util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } YY_BREAK case 269: YY_RULE_SETUP #line 485 "util/configlexer.lex" { YDVAR(0, VAR_IPSET) } YY_BREAK case 270: YY_RULE_SETUP #line 486 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V4) } YY_BREAK case 271: YY_RULE_SETUP #line 487 "util/configlexer.lex" { YDVAR(1, VAR_IPSET_NAME_V6) } YY_BREAK case 272: YY_RULE_SETUP #line 488 "util/configlexer.lex" { YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } YY_BREAK case 273: YY_RULE_SETUP #line 489 "util/configlexer.lex" { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) } YY_BREAK case 274: /* rule 274 can match eol */ YY_RULE_SETUP #line 490 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 275: YY_RULE_SETUP #line 493 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 494 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 276: YY_RULE_SETUP #line 499 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 277: /* rule 277 can match eol */ YY_RULE_SETUP #line 500 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 278: YY_RULE_SETUP #line 502 "util/configlexer.lex" { LEXOUT(("QE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* Single Quoted strings. Strip leading and ending quotes */ case 279: YY_RULE_SETUP #line 514 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 515 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 280: YY_RULE_SETUP #line 520 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 281: /* rule 281 can match eol */ YY_RULE_SETUP #line 521 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 282: YY_RULE_SETUP #line 523 "util/configlexer.lex" { LEXOUT(("SQE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* include: directive */ case 283: YY_RULE_SETUP #line 535 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 537 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 284: YY_RULE_SETUP #line 541 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 285: /* rule 285 can match eol */ YY_RULE_SETUP #line 542 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 286: YY_RULE_SETUP #line 543 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 287: YY_RULE_SETUP #line 544 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 549 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 288: YY_RULE_SETUP #line 553 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 289: /* rule 289 can match eol */ YY_RULE_SETUP #line 554 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 290: YY_RULE_SETUP #line 556 "util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 562 "util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { fclose(yyin); config_end_include(); } } YY_BREAK case 291: YY_RULE_SETUP #line 573 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 292: YY_RULE_SETUP #line 577 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 293: YY_RULE_SETUP #line 581 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 294: YY_RULE_SETUP #line 585 "util/configlexer.lex" ECHO; YY_BREAK #line 5298 "" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of user's declarations */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1); for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc( (void *) b->yy_ch_buf, (yy_size_t) (b->yy_buf_size + 2) ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = NULL; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart( yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc( (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); /* "- 2" to take care of EOB's */ YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { yy_state_type yy_current_state; char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2913 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { int yy_is_jam; char *yy_cp = (yy_c_buf_p); YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2913 ) yy_c = yy_meta[yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; yy_is_jam = (yy_current_state == 2912); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (int) ((yy_c_buf_p) - (yytext_ptr)); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart( yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer( yyin, YY_BUF_SIZE ); } yy_init_buffer( YY_CURRENT_BUFFER, input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer( b, file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree( (void *) b->yy_ch_buf ); yyfree( (void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer( b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ yy_size_t grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return NULL; b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = NULL; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer( b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (const char * yystr ) { return yy_scan_bytes( yystr, (int) strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; int i; /* Get memory for full buffer, including space for trailing EOB's. */ n = (yy_size_t) (_yybytes_len + 2); buf = (char *) yyalloc( n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer( buf, n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yynoreturn yy_fatal_error (const char* msg ) { fprintf( stderr, "%s\n", msg ); exit( YY_EXIT_FAILURE ); } /* Redefine yyless() so it works in section 3 code. */ #undef yyless #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param _line_number line number * */ void yyset_lineno (int _line_number ) { yylineno = _line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param _in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * _in_str ) { yyin = _in_str ; } void yyset_out (FILE * _out_str ) { yyout = _out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int _bdebug ) { yy_flex_debug = _bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (yy_buffer_stack) = NULL; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = NULL; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = NULL; yyout = NULL; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer( YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, const char * s2, int n ) { int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (const char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return malloc(size); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return realloc(ptr, size); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 585 "util/configlexer.lex"