#line 2 "scanner.c" /* Must come first for _LARGE_FILE_API on AIX. */ #ifdef HAVE_CONFIG_H #include #endif /* * Must come first to avoid warnings on Windows. * * Flex-generated scanners may only include if __STDC_VERSION__ * is defined with a value >= 199901, meaning "full C99", and MSVC may not * define it with that value, because it isn't 100% C99-compliant, even * though it has an capable of defining everything the Flex * scanner needs. * * We, however, will include it if we know we have an MSVC version that has * it; this means that we may define the INTn_MAX and UINTn_MAX values in * scanner.c, and then include , which may define them differently * (same value, but different string of characters), causing compiler warnings. * * If we include it here, and they're defined, that'll prevent scanner.c * from defining them. So we include , to get * if we have it. */ #include #include "diag-control.h" #line 30 "scanner.c" #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 0 #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 #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* An opaque pointer. */ #ifndef YY_TYPEDEF_YY_SCANNER_T #define YY_TYPEDEF_YY_SCANNER_T typedef void* yyscan_t; #endif /* For convenience, these vars (plus the bison vars far below) are macros in the reentrant scanner. */ #define yyin yyg->yyin_r #define yyout yyg->yyout_r #define yyextra yyg->yyextra_r #define yyleng yyg->yyleng_r #define yytext yyg->yytext_r #define yylineno (YY_CURRENT_BUFFER_LVALUE->yy_bs_lineno) #define yycolumn (YY_CURRENT_BUFFER_LVALUE->yy_bs_column) #define yy_flex_debug yyg->yy_flex_debug_r /* 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 yyg->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 ((yyg->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 pcap_restart(yyin ,yyscanner ) #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 #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 = yyg->yy_hold_char; \ YY_RESTORE_YY_MORE_OFFSET \ yyg->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, yyg->yytext_ptr , yyscanner ) #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. */ yy_size_t 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 pcap_restart()), 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 */ /* 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 ( yyg->yy_buffer_stack \ ? yyg->yy_buffer_stack[yyg->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 yyg->yy_buffer_stack[yyg->yy_buffer_stack_top] void pcap_restart (FILE *input_file ,yyscan_t yyscanner ); void pcap__switch_to_buffer (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); YY_BUFFER_STATE pcap__create_buffer (FILE *file,int size ,yyscan_t yyscanner ); void pcap__delete_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void pcap__flush_buffer (YY_BUFFER_STATE b ,yyscan_t yyscanner ); void pcap_push_buffer_state (YY_BUFFER_STATE new_buffer ,yyscan_t yyscanner ); void pcap_pop_buffer_state (yyscan_t yyscanner ); static void pcap_ensure_buffer_stack (yyscan_t yyscanner ); static void pcap__load_buffer_state (yyscan_t yyscanner ); static void pcap__init_buffer (YY_BUFFER_STATE b,FILE *file ,yyscan_t yyscanner ); #define YY_FLUSH_BUFFER pcap__flush_buffer(YY_CURRENT_BUFFER ,yyscanner) YY_BUFFER_STATE pcap__scan_buffer (char *base,yy_size_t size ,yyscan_t yyscanner ); YY_BUFFER_STATE pcap__scan_string (yyconst char *yy_str ,yyscan_t yyscanner ); YY_BUFFER_STATE pcap__scan_bytes (yyconst char *bytes,yy_size_t len ,yyscan_t yyscanner ); void *pcap_alloc (yy_size_t ,yyscan_t yyscanner ); void *pcap_realloc (void *,yy_size_t ,yyscan_t yyscanner ); void pcap_free (void * ,yyscan_t yyscanner ); #define yy_new_buffer pcap__create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ pcap_ensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ pcap__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ pcap_ensure_buffer_stack (yyscanner); \ YY_CURRENT_BUFFER_LVALUE = \ pcap__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define pcap_wrap(yyscanner) (/*CONSTCOND*/1) #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; typedef int yy_state_type; #define yytext_ptr yytext_r static yy_state_type yy_get_previous_state (yyscan_t yyscanner ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ,yyscan_t yyscanner); static int yy_get_next_buffer (yyscan_t yyscanner ); #if defined(__GNUC__) && __GNUC__ >= 3 __attribute__((__noreturn__)) #endif static void yy_fatal_error (yyconst char msg[] ,yyscan_t yyscanner ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ yyg->yytext_ptr = yy_bp; \ yyleng = (size_t) (yy_cp - yy_bp); \ yyg->yy_hold_char = *yy_cp; \ *yy_cp = '\0'; \ yyg->yy_c_buf_p = yy_cp; #define YY_NUM_RULES 184 #define YY_END_OF_BUFFER 185 /* 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 yyconst flex_int16_t yy_accept[1729] = { 0, 0, 0, 185, 182, 113, 113, 113, 114, 182, 114, 114, 114, 183, 123, 123, 114, 114, 114, 114, 180, 180, 182, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 114, 182, 117, 121, 67, 0, 180, 123, 0, 180, 180, 180, 0, 125, 119, 116, 118, 115, 120, 180, 181, 181, 180, 180, 180, 20, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 7, 180, 34, 35, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 92, 180, 68, 180, 180, 180, 180, 180, 180, 60, 180, 180, 180, 180, 86, 180, 180, 180, 180, 180, 180, 61, 180, 4, 180, 180, 180, 180, 180, 180, 180, 68, 121, 180, 124, 124, 180, 123, 180, 0, 125, 123, 125, 125, 125, 180, 180, 180, 67, 5, 180, 81, 180, 180, 180, 180, 180, 180, 180, 55, 107, 1, 0, 180, 21, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 36, 180, 180, 18, 43, 0, 180, 29, 180, 25, 70, 180, 180, 79, 37, 180, 100, 180, 180, 180, 180, 101, 180, 46, 69, 82, 106, 180, 14, 180, 3, 180, 180, 180, 180, 180, 94, 180, 180, 26, 180, 105, 180, 108, 38, 2, 180, 42, 180, 9, 180, 10, 89, 180, 88, 180, 180, 0, 180, 180, 124, 180, 180, 180, 180, 123, 0, 180, 0, 126, 125, 125, 0, 125, 0, 125, 0, 125, 0, 23, 180, 180, 180, 180, 64, 16, 41, 180, 39, 180, 180, 180, 30, 180, 98, 180, 180, 180, 111, 180, 180, 104, 110, 45, 109, 112, 11, 180, 12, 13, 180, 180, 180, 32, 78, 180, 62, 3, 99, 47, 180, 180, 180, 74, 180, 180, 180, 180, 48, 180, 180, 40, 180, 6, 180, 93, 180, 8, 95, 180, 180, 0, 180, 53, 73, 15, 180, 124, 124, 180, 124, 124, 124, 180, 123, 180, 0, 125, 180, 0, 0, 125, 0, 125, 126, 125, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 180, 56, 57, 58, 59, 180, 22, 180, 180, 180, 180, 31, 180, 180, 180, 102, 103, 0, 19, 180, 180, 180, 87, 180, 33, 180, 80, 28, 27, 180, 180, 83, 180, 180, 180, 50, 17, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 0, 180, 180, 124, 180, 180, 180, 180, 124, 124, 180, 123, 180, 0, 0, 125, 125, 125, 0, 0, 126, 125, 125, 126, 125, 0, 0, 125, 125, 125, 125, 125, 0, 0, 0, 0, 125, 125, 0, 125, 0, 125, 0, 97, 180, 180, 180, 24, 180, 180, 77, 180, 180, 180, 180, 180, 180, 180, 180, 180, 0, 180, 180, 180, 180, 180, 70, 180, 180, 180, 180, 180, 180, 180, 75, 76, 180, 96, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 124, 124, 180, 124, 124, 124, 124, 180, 123, 180, 0, 125, 125, 0, 125, 0, 0, 125, 0, 125, 126, 125, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 180, 180, 180, 180, 52, 63, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 71, 180, 180, 44, 84, 85, 180, 180, 180, 180, 54, 176, 179, 178, 172, 180, 174, 173, 177, 180, 0, 180, 180, 124, 180, 180, 180, 124, 180, 123, 180, 0, 0, 125, 125, 125, 125, 125, 125, 0, 0, 126, 125, 125, 125, 0, 0, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 125, 125, 0, 125, 0, 125, 0, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 128, 127, 180, 180, 72, 180, 180, 180, 175, 171, 180, 180, 124, 124, 124, 124, 180, 123, 180, 0, 125, 125, 0, 125, 125, 0, 125, 0, 0, 125, 0, 125, 126, 125, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 0, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 65, 180, 55, 133, 140, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 145, 144, 180, 66, 49, 180, 180, 0, 180, 180, 180, 180, 180, 123, 180, 0, 0, 125, 125, 125, 125, 125, 125, 125, 125, 125, 0, 0, 126, 125, 125, 125, 0, 0, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 125, 125, 0, 125, 0, 125, 0, 90, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 146, 180, 180, 180, 180, 180, 180, 180, 180, 180, 51, 122, 122, 124, 124, 180, 123, 180, 0, 125, 125, 0, 125, 125, 0, 125, 125, 0, 125, 0, 122, 125, 0, 125, 126, 125, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 0, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 0, 0, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 180, 180, 180, 180, 180, 180, 180, 180, 138, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 91, 122, 122, 124, 180, 122, 122, 0, 0, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 0, 122, 126, 125, 125, 125, 0, 0, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 125, 125, 0, 125, 0, 125, 0, 180, 180, 180, 142, 180, 180, 180, 180, 180, 180, 180, 130, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 124, 180, 123, 0, 125, 125, 0, 125, 125, 0, 125, 125, 0, 125, 125, 0, 125, 0, 0, 0, 125, 0, 0, 125, 126, 125, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 0, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 0, 0, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 0, 0, 0, 0, 0, 125, 125, 0, 125, 126, 125, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 0, 180, 180, 180, 180, 132, 180, 180, 180, 136, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 122, 0, 0, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 0, 0, 0, 126, 0, 0, 125, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 0, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 0, 125, 125, 0, 125, 0, 125, 0, 129, 141, 143, 137, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 155, 180, 180, 180, 0, 0, 125, 0, 125, 0, 125, 125, 0, 125, 125, 0, 125, 125, 0, 125, 125, 0, 125, 0, 0, 0, 0, 125, 125, 0, 125, 0, 0, 125, 125, 125, 0, 0, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 125, 125, 125, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 125, 125, 125, 0, 180, 180, 180, 180, 180, 180, 147, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 0, 0, 0, 125, 125, 125, 125, 125, 125, 0, 0, 0, 0, 125, 125, 0, 0, 0, 0, 125, 125, 125, 0, 0, 0, 0, 0, 125, 125, 125, 125, 0, 0, 0, 0, 0, 125, 125, 125, 125, 0, 0, 0, 0, 0, 125, 125, 125, 125, 0, 0, 0, 0, 0, 125, 0, 0, 0, 0, 0, 125, 125, 125, 180, 180, 180, 139, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 125, 125, 125, 125, 125, 125, 125, 125, 0, 0, 0, 0, 125, 125, 0, 0, 125, 0, 0, 0, 125, 0, 0, 0, 125, 0, 0, 0, 125, 0, 0, 0, 125, 125, 125, 125, 0, 0, 0, 0, 0, 125, 134, 180, 131, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 156, 180, 125, 0, 0, 125, 125, 0, 125, 125, 125, 0, 125, 125, 125, 0, 125, 125, 125, 0, 125, 125, 125, 0, 0, 0, 0, 125, 135, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 152, 180, 125, 125, 0, 0, 0, 0, 0, 0, 125, 125, 125, 0, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 151, 0, 125, 125, 125, 125, 125, 0, 167, 180, 180, 180, 180, 180, 180, 180, 154, 180, 180, 125, 125, 166, 180, 180, 180, 180, 180, 180, 153, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 165, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 164, 180, 180, 180, 180, 180, 170, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 157, 180, 180, 180, 180, 180, 150, 180, 180, 168, 180, 180, 180, 180, 180, 180, 148, 180, 169, 180, 163, 180, 180, 180, 180, 158, 180, 160, 180, 180, 162, 159, 149, 161, 0 } ; static yyconst 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, 5, 1, 1, 6, 7, 8, 1, 9, 9, 7, 7, 1, 10, 11, 7, 12, 13, 14, 15, 16, 17, 18, 17, 17, 17, 19, 1, 20, 21, 22, 1, 1, 23, 23, 23, 23, 23, 23, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 25, 24, 24, 26, 27, 26, 7, 28, 1, 29, 30, 31, 32, 33, 34, 35, 36, 37, 24, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 24, 1, 53, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 yyconst YY_CHAR yy_meta[54] = { 0, 1, 2, 2, 1, 2, 1, 1, 3, 2, 4, 5, 6, 6, 6, 6, 6, 6, 6, 7, 3, 3, 3, 8, 4, 9, 3, 1, 4, 8, 8, 8, 8, 8, 8, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 9, 4, 3 } ; static yyconst flex_uint16_t yy_base[2189] = { 0, 0, 0, 5455, 53, 7856, 7856, 57, 5433, 64, 81, 5445, 7856, 7856, 99, 30, 151, 46, 5430, 52, 168, 210, 168, 160, 44, 125, 60, 31, 58, 132, 170, 214, 217, 229, 59, 170, 222, 237, 243, 250, 5418, 255, 5410, 5380, 300, 7856, 0, 7856, 316, 339, 363, 5413, 387, 0, 394, 0, 428, 7856, 7856, 7856, 7856, 7856, 296, 316, 0, 5386, 5383, 5397, 0, 5395, 5383, 5396, 5378, 5366, 5360, 5361, 5362, 5360, 5344, 5352, 5337, 5350, 5331, 116, 5341, 5312, 5297, 5295, 5299, 5305, 5294, 5299, 5279, 5278, 56, 68, 5263, 5261, 80, 5265, 5259, 5267, 68, 166, 0, 0, 15, 122, 5255, 5264, 189, 5238, 5236, 5219, 5222, 5212, 5219, 5209, 5208, 5214, 0, 5212, 0, 5195, 5181, 5175, 5176, 5175, 5174, 128, 5185, 5168, 5167, 5160, 159, 5147, 201, 5144, 38, 5137, 5149, 0, 5133, 0, 5112, 5111, 5094, 5090, 5078, 5048, 5062, 7856, 7856, 453, 477, 236, 518, 542, 566, 5071, 573, 5078, 597, 248, 5054, 5029, 5034, 5025, 0, 0, 5030, 0, 5038, 5033, 5022, 5006, 5007, 5004, 5005, 5012, 0, 0, 5006, 4996, 0, 5008, 4988, 4976, 4990, 4989, 4992, 4988, 4972, 4971, 4953, 4969, 4952, 4956, 4951, 4952, 4965, 4950, 4934, 0, 4939, 4933, 0, 0, 4937, 4927, 0, 4938, 0, 4935, 4907, 4912, 0, 0, 4901, 0, 4909, 4917, 244, 4899, 0, 4887, 4882, 0, 4877, 0, 4880, 0, 4861, 4864, 4857, 4845, 4850, 4843, 4839, 0, 4837, 4849, 0, 4838, 0, 4837, 0, 0, 0, 4819, 0, 153, 156, 4830, 0, 0, 4821, 0, 4818, 4818, 637, 4847, 660, 684, 4830, 691, 500, 281, 715, 4821, 739, 4820, 4819, 747, 290, 4818, 4816, 507, 788, 811, 4815, 0, 0, 4775, 350, 4778, 4783, 0, 0, 0, 4781, 0, 4777, 4762, 4746, 0, 4746, 0, 4740, 4739, 4740, 0, 4722, 4721, 0, 0, 0, 0, 0, 614, 4728, 0, 0, 4736, 4715, 4700, 0, 0, 4698, 0, 0, 0, 0, 4713, 4704, 4710, 0, 4703, 4706, 4707, 4679, 4675, 4667, 4639, 0, 4632, 0, 4607, 0, 275, 0, 0, 4599, 4592, 817, 4585, 0, 0, 0, 856, 880, 293, 921, 4610, 4608, 405, 944, 968, 992, 4598, 999, 621, 4581, 4579, 1022, 770, 1046, 1069, 4562, 0, 4553, 427, 428, 1093, 4552, 1117, 333, 4551, 4550, 4519, 0, 0, 0, 0, 4491, 0, 4504, 4502, 4469, 4460, 0, 4477, 4472, 4463, 0, 0, 1136, 293, 4453, 4420, 4437, 0, 4427, 0, 4429, 4422, 0, 0, 4420, 4394, 292, 4393, 4411, 387, 4408, 0, 4390, 4382, 4394, 4368, 4362, 4372, 4350, 4357, 4338, 4317, 4318, 4310, 4278, 4292, 1173, 4310, 1196, 1220, 4305, 1227, 777, 285, 1251, 334, 1291, 1314, 1338, 4294, 4293, 1346, 336, 4291, 4256, 4255, 4254, 1387, 363, 4252, 4251, 515, 631, 1428, 4250, 1452, 364, 4240, 4247, 4218, 840, 0, 371, 4214, 903, 1493, 1516, 4212, 0, 0, 4184, 4200, 4149, 0, 4158, 4140, 0, 4145, 4158, 4143, 4126, 4125, 380, 4109, 427, 4108, 1121, 4106, 4095, 4082, 4067, 4076, 0, 4066, 4077, 4025, 4028, 4026, 4015, 4014, 0, 0, 4018, 0, 3981, 3973, 3986, 3984, 3976, 3949, 3960, 3929, 3923, 3918, 3909, 3888, 3885, 1541, 1565, 423, 1606, 3892, 3888, 633, 1630, 1654, 1661, 1685, 3877, 1692, 1716, 1739, 3876, 3857, 3856, 1762, 910, 1786, 1809, 3852, 0, 1274, 0, 461, 3837, 1281, 1833, 1856, 3833, 0, 785, 824, 3820, 485, 853, 856, 1880, 3810, 1904, 424, 3809, 3798, 529, 3762, 3765, 3739, 0, 0, 3742, 3729, 3715, 3691, 3703, 3683, 3666, 3672, 3664, 3643, 3632, 3633, 3619, 3601, 56, 504, 646, 3609, 3575, 3584, 3582, 0, 3573, 3567, 0, 0, 0, 3580, 3552, 3533, 3519, 0, 0, 0, 0, 0, 3523, 0, 0, 0, 3512, 1944, 3547, 1967, 1991, 3514, 1998, 325, 2022, 2046, 2053, 2077, 3505, 3474, 2085, 452, 3434, 2126, 476, 3393, 3386, 3385, 3365, 2167, 513, 3345, 918, 938, 2208, 3344, 2232, 542, 3343, 3348, 1142, 1149, 3347, 3314, 1167, 1169, 2273, 3305, 2297, 543, 3304, 3310, 1369, 0, 1376, 0, 486, 3282, 1410, 2338, 2361, 3278, 0, 2384, 374, 115, 389, 150, 672, 205, 610, 3235, 550, 403, 313, 783, 553, 761, 522, 800, 451, 578, 893, 633, 829, 571, 1108, 1112, 3231, 3228, 1123, 3206, 3189, 1130, 1128, 593, 3186, 3185, 2422, 2459, 2495, 2531, 634, 2555, 258, 2563, 2587, 3194, 2594, 2618, 2641, 3193, 2665, 2688, 3191, 3188, 3185, 2711, 1417, 2735, 2758, 3184, 0, 1475, 0, 723, 3172, 1482, 2782, 2805, 3147, 0, 1588, 0, 1595, 0, 724, 3146, 1927, 2829, 2852, 3135, 0, 661, 1934, 3122, 1290, 1425, 3114, 3111, 1490, 1510, 2876, 3101, 2900, 662, 3090, 3061, 636, 803, 653, 1290, 1427, 1492, 2095, 1604, 708, 849, 937, 2122, 872, 1605, 1944, 804, 1187, 1242, 2099, 936, 960, 1532, 2101, 874, 938, 1015, 962, 1014, 2124, 2163, 2942, 1016, 2965, 1038, 2988, 2154, 3012, 3036, 3052, 3051, 3044, 686, 3049, 3085, 967, 3047, 3126, 969, 3046, 3045, 3020, 3017, 3167, 970, 2967, 1541, 1733, 3208, 2966, 3232, 1022, 2947, 2953, 2096, 2163, 2951, 2950, 2164, 2182, 3273, 2909, 3297, 1042, 2908, 2915, 1043, 2255, 2913, 2183, 2184, 2911, 2892, 2205, 2249, 3338, 2882, 3362, 1045, 2881, 2886, 0, 2263, 0, 2320, 0, 756, 2857, 2327, 3403, 3426, 2853, 0, 1061, 1062, 1087, 1111, 2337, 1188, 1943, 1189, 1244, 2376, 1534, 2377, 2336, 1109, 1243, 2402, 2013, 1306, 2096, 2378, 1446, 2375, 1245, 3451, 3474, 3498, 1066, 3538, 3562, 3586, 2834, 3593, 3617, 3640, 2830, 3664, 3687, 2811, 3711, 3734, 2810, 2806, 2791, 3757, 2445, 3781, 3804, 2789, 0, 2482, 0, 1008, 2787, 2502, 3828, 3851, 2744, 0, 2509, 0, 2516, 0, 1153, 2741, 2523, 3875, 3898, 2740, 0, 0, 2923, 0, 2930, 0, 1300, 2718, 3067, 3922, 3945, 2717, 0, 0, 1198, 3074, 2724, 2399, 2417, 2721, 2701, 2453, 2454, 3969, 2670, 3993, 1285, 2649, 2655, 2401, 2438, 3083, 2398, 1558, 2457, 2940, 1708, 3084, 1557, 1385, 1709, 1508, 1754, 1710, 1755, 1778, 3120, 1779, 3118, 1801, 1803, 1825, 4035, 4059, 4068, 1826, 2646, 2643, 4086, 1287, 2624, 4127, 1288, 2600, 4168, 1315, 2599, 4209, 1345, 2597, 2596, 2595, 4249, 4273, 1427, 2594, 2635, 2682, 4314, 2572, 4338, 1429, 2571, 2578, 2938, 2942, 2577, 2576, 3096, 3142, 4379, 2566, 4403, 1489, 2540, 2544, 1600, 3156, 2542, 3151, 3164, 2541, 2540, 3183, 3184, 4444, 2531, 4468, 1603, 2468, 2469, 0, 1605, 3255, 2438, 3203, 3205, 2372, 2371, 3249, 3268, 4509, 2343, 4533, 1606, 2341, 2348, 0, 3320, 0, 3327, 0, 1396, 2306, 3385, 4574, 4597, 2299, 0, 3095, 3096, 3178, 1827, 3122, 2399, 1848, 3420, 2959, 1849, 1850, 1872, 3248, 3380, 1874, 1896, 3490, 2014, 3492, 1959, 2016, 3337, 4622, 4646, 4655, 2275, 4672, 4696, 4719, 2263, 4743, 4766, 2239, 4790, 4813, 2234, 4837, 4860, 2198, 2194, 4884, 1630, 2192, 2145, 3523, 4925, 2144, 2107, 0, 3530, 0, 1615, 2106, 4016, 4949, 2103, 2060, 0, 4023, 0, 4075, 0, 1639, 2059, 4109, 4973, 2058, 2055, 0, 0, 4116, 0, 4150, 0, 1669, 2000, 4157, 4997, 1999, 1976, 0, 0, 4191, 0, 4198, 0, 1748, 1951, 4232, 5021, 1945, 1913, 0, 0, 1660, 4239, 1917, 3335, 3399, 1914, 1897, 3400, 3420, 5045, 1882, 5069, 1661, 1842, 1846, 2102, 2177, 2200, 2289, 2103, 2612, 4283, 2226, 2473, 4266, 2680, 4348, 4267, 4331, 3249, 3271, 4289, 4332, 3399, 2610, 2611, 4396, 5111, 1815, 5128, 5152, 1662, 1814, 5193, 1689, 1811, 5234, 1736, 1795, 5275, 1879, 1791, 5316, 1880, 1747, 1744, 4365, 5357, 1741, 1698, 0, 1697, 3634, 3681, 5381, 1670, 1664, 1671, 3728, 4289, 1616, 1580, 4374, 4418, 5405, 1568, 1565, 1552, 1938, 4432, 1527, 4441, 4478, 1508, 1506, 4479, 4483, 5429, 1494, 1454, 1442, 0, 1940, 4497, 1438, 4506, 4543, 1437, 1400, 4544, 4548, 5453, 1390, 1389, 1363, 0, 1941, 4562, 1362, 4571, 4591, 83, 110, 4666, 4667, 5477, 195, 198, 225, 0, 4907, 0, 4914, 0, 2006, 307, 5092, 5501, 0, 348, 0, 2474, 2635, 2657, 2659, 2681, 3003, 5107, 5162, 4670, 2703, 4291, 4356, 2682, 4376, 4923, 4443, 2728, 2729, 5108, 5163, 5525, 1943, 0, 372, 5566, 0, 399, 5590, 0, 418, 5614, 0, 480, 5638, 0, 520, 5662, 0, 544, 4671, 4713, 5686, 551, 580, 582, 610, 604, 5180, 0, 2061, 624, 643, 5216, 0, 5223, 0, 2062, 696, 697, 0, 5257, 0, 5264, 0, 2109, 698, 720, 0, 5298, 0, 5305, 0, 2142, 721, 749, 0, 5339, 0, 5346, 0, 2193, 750, 752, 0, 1995, 5548, 762, 4760, 4807, 763, 798, 4854, 5086, 5710, 793, 0, 804, 4508, 2751, 2752, 2774, 2775, 5146, 2776, 2799, 2822, 2823, 5720, 2845, 5703, 5722, 2846, 3270, 3489, 5755, 820, 864, 0, 0, 0, 0, 0, 0, 5555, 0, 2282, 880, 887, 0, 5127, 5354, 897, 930, 0, 1997, 5739, 931, 5563, 5724, 934, 976, 0, 0, 2024, 5778, 985, 5752, 5772, 1012, 1039, 0, 0, 2151, 5792, 1063, 5787, 5788, 1102, 1103, 0, 0, 2181, 5802, 1107, 5800, 5810, 1132, 1160, 0, 0, 5814, 0, 5828, 0, 2347, 1176, 0, 5085, 3553, 2868, 2870, 3103, 5824, 5827, 5837, 5838, 5839, 5826, 3379, 5843, 2892, 4573, 5736, 2981, 0, 7856, 0, 0, 0, 0, 0, 0, 5845, 5847, 1190, 1235, 0, 7856, 5871, 0, 7856, 0, 5887, 0, 7856, 0, 5894, 0, 7856, 0, 5901, 0, 7856, 0, 5908, 0, 7856, 0, 2270, 5915, 1236, 5923, 5924, 1237, 2414, 0, 2980, 5086, 2982, 3004, 5926, 5356, 5565, 3201, 5849, 4287, 3005, 5927, 5106, 5850, 3006, 5928, 0, 5927, 0, 2272, 5954, 1240, 0, 2273, 5964, 1264, 0, 2338, 5971, 1306, 0, 2396, 5978, 1322, 0, 2531, 5985, 1356, 0, 5992, 0, 7856, 3177, 6001, 3442, 3444, 3467, 6002, 6004, 6005, 6008, 3491, 6006, 3378, 6007, 2532, 6007, 1357, 0, 0, 0, 0, 0, 0, 2533, 6043, 1361, 6016, 6037, 5852, 6039, 3554, 6040, 3555, 3556, 6017, 6052, 6056, 3419, 0, 0, 0, 0, 0, 0, 0, 3466, 6059, 3611, 3658, 3705, 6060, 6062, 6063, 3468, 6065, 6066, 0, 0, 3609, 3610, 3634, 3656, 6067, 3680, 6068, 3681, 6073, 6082, 6092, 6095, 3727, 6101, 3728, 6103, 3749, 5102, 3773, 3774, 3797, 6106, 6111, 6115, 3775, 6116, 6122, 3820, 6123, 6126, 6128, 3822, 6114, 6142, 6148, 3844, 3845, 6152, 6153, 6154, 6155, 3869, 3890, 6158, 3891, 6162, 3914, 6163, 6167, 3915, 3916, 3938, 6169, 6177, 4737, 6191, 3939, 6182, 6194, 6197, 6198, 3961, 6204, 6203, 6205, 3963, 6206, 3985, 4084, 6213, 3987, 6218, 6227, 4125, 4613, 6219, 4308, 4032, 6228, 4033, 4615, 4085, 6238, 6229, 6240, 4784, 4166, 6239, 4207, 6241, 6268, 4208, 4665, 4666, 4669, 7856, 6296, 6304, 6308, 6311, 6314, 6317, 6320, 6323, 6326, 6329, 6332, 6335, 6338, 6341, 6344, 6347, 6350, 6353, 6356, 6360, 6364, 6367, 6370, 6373, 6376, 6379, 6382, 6385, 6388, 6392, 6396, 6399, 6402, 6406, 6408, 6411, 6414, 6417, 6420, 6423, 6426, 6429, 6432, 6436, 6438, 6441, 6445, 6450, 6454, 6457, 6461, 6464, 6467, 6470, 6473, 6476, 6479, 6482, 6486, 6490, 6493, 6497, 6501, 6506, 6510, 6512, 6516, 6519, 6523, 6526, 6529, 6533, 6535, 6538, 6541, 6544, 6547, 6550, 6553, 6556, 6559, 6562, 6566, 6568, 6571, 6574, 6577, 6581, 6583, 6586, 6589, 6594, 6598, 6603, 6607, 6609, 6613, 6616, 6620, 6625, 6629, 6632, 6635, 6638, 6641, 6644, 6647, 6650, 6654, 6658, 6661, 6665, 6669, 6674, 6678, 6680, 6684, 6687, 6691, 6694, 6699, 6703, 6708, 6712, 6714, 6718, 6721, 6725, 6728, 6731, 6734, 6738, 6740, 6743, 6748, 6752, 6755, 6758, 6761, 6764, 6767, 6770, 6773, 6776, 6780, 6782, 6785, 6788, 6791, 6795, 6797, 6800, 6803, 6806, 6809, 6813, 6815, 6818, 6821, 6824, 6829, 6833, 6838, 6842, 6844, 6848, 6851, 6855, 6860, 6864, 6867, 6870, 6873, 6876, 6879, 6882, 6885, 6889, 6893, 6896, 6900, 6904, 6909, 6913, 6915, 6919, 6922, 6926, 6929, 6934, 6938, 6943, 6947, 6949, 6953, 6956, 6960, 6963, 6966, 6971, 6975, 6980, 6984, 6986, 6990, 6993, 6997, 7000, 7003, 7006, 7010, 7012, 7015, 7020, 7024, 7027, 7030, 7033, 7036, 7039, 7042, 7045, 7048, 7051, 7054, 7057, 7061, 7063, 7066, 7069, 7072, 7075, 7079, 7081, 7084, 7087, 7090, 7093, 7096, 7100, 7102, 7105, 7108, 7111, 7114, 7117, 7121, 7123, 7126, 7129, 7132, 7135, 7140, 7144, 7149, 7153, 7155, 7159, 7162, 7166, 7171, 7175, 7178, 7181, 7184, 7187, 7190, 7193, 7196, 7199, 7202, 7206, 7210, 7213, 7217, 7221, 7226, 7230, 7232, 7236, 7239, 7243, 7246, 7251, 7255, 7260, 7264, 7266, 7270, 7273, 7277, 7280, 7283, 7288, 7292, 7297, 7301, 7303, 7307, 7310, 7314, 7317, 7320, 7325, 7329, 7334, 7338, 7340, 7344, 7347, 7351, 7354, 7357, 7360, 7364, 7366, 7369, 7372, 7377, 7381, 7384, 7387, 7390, 7393, 7396, 7399, 7402, 7405, 7408, 7411, 7414, 7418, 7422, 7425, 7428, 7432, 7435, 7438, 7442, 7444, 7447, 7450, 7454, 7456, 7459, 7462, 7465, 7469, 7471, 7474, 7477, 7480, 7484, 7486, 7489, 7492, 7495, 7499, 7501, 7504, 7507, 7512, 7516, 7521, 7525, 7527, 7531, 7534, 7538, 7543, 7547, 7550, 7553, 7556, 7559, 7562, 7565, 7568, 7571, 7575, 7577, 7580, 7584, 7589, 7593, 7594, 7597, 7602, 7606, 7611, 7615, 7616, 7619, 7622, 7627, 7631, 7636, 7640, 7641, 7644, 7647, 7652, 7656, 7661, 7665, 7666, 7669, 7672, 7677, 7681, 7686, 7690, 7691, 7694, 7697, 7700, 7704, 7706, 7711, 7715, 7718, 7721, 7724, 7727, 7730, 7733, 7737, 7742, 7746, 7747, 7750, 7753, 7756, 7759, 7762, 7765, 7768, 7771, 7774, 7777, 7782, 7786, 7789, 7792, 7795, 7799, 7803, 7807, 7811, 7815, 7818, 7821, 7825, 7828, 7831, 7834, 7837, 7840, 7844, 7847 } ; static yyconst flex_int16_t yy_def[2189] = { 0, 1728, 1, 1728, 1728, 1728, 1728, 1728, 1728, 1729, 1728, 1728, 1728, 1728, 1728, 14, 1728, 1728, 1728, 1728, 14, 20, 1730, 20, 20, 20, 20, 20, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 1728, 1728, 1728, 1731, 1728, 21, 21, 20, 1732, 50, 21, 21, 21, 1728, 1728, 1728, 1728, 1728, 1728, 49, 1730, 1730, 52, 52, 52, 21, 21, 21, 21, 52, 21, 21, 52, 21, 21, 21, 52, 21, 21, 21, 21, 21, 52, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 1728, 1728, 21, 21, 154, 21, 21, 157, 1733, 1728, 54, 1728, 162, 1734, 21, 21, 158, 21, 21, 21, 158, 21, 21, 21, 21, 21, 21, 158, 21, 21, 21, 21, 21, 21, 21, 158, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 262, 263, 158, 1735, 268, 1736, 1737, 1728, 273, 1738, 1739, 1728, 1728, 1728, 1740, 1741, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 350, 21, 263, 265, 263, 265, 265, 357, 1742, 1728, 356, 1743, 1744, 1728, 1728, 1728, 1728, 1745, 1746, 1747, 1748, 1748, 1728, 1749, 1728, 375, 1750, 1741, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 432, 433, 433, 438, 432, 357, 441, 1751, 1752, 1728, 445, 1753, 1728, 1754, 1755, 1728, 451, 1756, 1757, 1758, 1758, 1728, 1759, 1728, 459, 1760, 1746, 1728, 1728, 1761, 1762, 1728, 1728, 1728, 1728, 1763, 1764, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 522, 21, 433, 435, 433, 433, 528, 441, 530, 1765, 1728, 1728, 1728, 1766, 1767, 1768, 1728, 1728, 1728, 1728, 1769, 1770, 1728, 1771, 1772, 1728, 1728, 1728, 1728, 1773, 1774, 1775, 1775, 1761, 1762, 1776, 1776, 1728, 1777, 1728, 562, 1778, 1779, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 616, 616, 620, 530, 622, 1780, 1781, 1728, 626, 1782, 1728, 629, 1783, 1728, 1784, 1785, 1728, 635, 1786, 1787, 1787, 1728, 1788, 1728, 642, 1789, 1790, 1791, 1791, 1792, 1793, 1794, 1794, 1728, 1795, 1728, 654, 1796, 1797, 1728, 1798, 1728, 1799, 1800, 1728, 1728, 1728, 1728, 1801, 1802, 623, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 669, 706, 706, 706, 669, 706, 711, 1803, 1728, 1728, 1728, 1804, 1728, 1728, 1805, 1806, 1807, 1728, 1728, 1728, 1728, 1808, 1809, 1728, 1810, 1811, 1728, 1728, 1728, 1728, 1812, 1813, 1728, 1814, 1728, 1815, 1816, 1728, 1728, 1728, 1728, 1817, 1818, 1819, 1728, 1820, 1821, 1821, 1822, 1823, 1824, 1824, 1728, 1825, 1728, 760, 1826, 1827, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 794, 1828, 794, 798, 798, 800, 1829, 1830, 1728, 804, 1831, 1728, 807, 1832, 1728, 810, 1833, 1728, 1834, 1835, 1728, 816, 1836, 1837, 1837, 1728, 1838, 1728, 823, 1839, 1840, 1841, 1841, 1842, 1843, 1844, 1844, 1728, 1845, 1728, 835, 1846, 1847, 1848, 1728, 1849, 1850, 1850, 1851, 1852, 1853, 1853, 1728, 1854, 1728, 850, 1855, 1856, 1857, 1728, 1858, 1728, 1859, 1860, 1728, 1728, 1728, 1728, 1861, 1862, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 1863, 889, 889, 891, 889, 889, 894, 1864, 1728, 1728, 1728, 1865, 1728, 1728, 1866, 1728, 1728, 1867, 1868, 1869, 1728, 1728, 1728, 1728, 1870, 1871, 1728, 1872, 1873, 1728, 1728, 1728, 1728, 1874, 1875, 1728, 1876, 1728, 1877, 1878, 1728, 1728, 1728, 1728, 1879, 1880, 1881, 1728, 1882, 1728, 1883, 1884, 1728, 1728, 1728, 1728, 1885, 1886, 1887, 1888, 1728, 1889, 1890, 1890, 1891, 1892, 1893, 1893, 1728, 1894, 1728, 959, 1895, 1896, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 986, 1897, 1897, 1898, 1899, 1728, 992, 1900, 1728, 995, 1901, 1728, 998, 1902, 1728, 1001, 1903, 1728, 1904, 1728, 1728, 1007, 1905, 1906, 1906, 1728, 1907, 1728, 1014, 1908, 1909, 1910, 1910, 1911, 1912, 1913, 1913, 1728, 1914, 1728, 1026, 1915, 1916, 1917, 1728, 1918, 1919, 1919, 1920, 1921, 1922, 1922, 1728, 1923, 1728, 1041, 1924, 1925, 1926, 1927, 1728, 1928, 1929, 1929, 1930, 1931, 1932, 1932, 1728, 1933, 1728, 1057, 1934, 1935, 1936, 1728, 1937, 1728, 1938, 1939, 1728, 1728, 1728, 1728, 1940, 1941, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1095, 1942, 1943, 1728, 1728, 1728, 1944, 1728, 1728, 1945, 1728, 1728, 1946, 1728, 1728, 1947, 1948, 1728, 1113, 1949, 1950, 1728, 1728, 1951, 1952, 1953, 1728, 1954, 1955, 1728, 1728, 1728, 1956, 1957, 1958, 1728, 1959, 1728, 1960, 1961, 1728, 1728, 1728, 1962, 1963, 1964, 1965, 1728, 1966, 1728, 1967, 1968, 1728, 1728, 1728, 1969, 1970, 1971, 1972, 1728, 1973, 1728, 1974, 1975, 1728, 1728, 1728, 1976, 1977, 1978, 1979, 1980, 1728, 1981, 1982, 1982, 1983, 1984, 1985, 1985, 1728, 1986, 1728, 1178, 1987, 1988, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1990, 1728, 1728, 1207, 1991, 1728, 1210, 1992, 1728, 1213, 1993, 1728, 1216, 1994, 1728, 1219, 1995, 1728, 1728, 1728, 1996, 1997, 1998, 1999, 2000, 2000, 1728, 2001, 2002, 2003, 2004, 2004, 2005, 2006, 2007, 2007, 1728, 2008, 2009, 2010, 2011, 1728, 2012, 2013, 2013, 2014, 2015, 2016, 2016, 1728, 2017, 2018, 2019, 2020, 2021, 1728, 2022, 2023, 2023, 2024, 2025, 2026, 2026, 1728, 2027, 2028, 2029, 2030, 2031, 1728, 2032, 2033, 2033, 2034, 2035, 2036, 2036, 1728, 2037, 2038, 2039, 2040, 1728, 2041, 1728, 2042, 2043, 1728, 1728, 1728, 2044, 2045, 2046, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 1728, 1318, 2048, 2049, 1728, 2050, 2051, 1728, 2052, 2053, 1728, 2054, 2055, 1728, 2056, 2057, 1728, 2058, 2059, 2060, 2060, 1728, 2061, 2062, 2063, 2064, 2065, 1728, 2066, 2067, 1728, 2068, 1728, 2069, 1728, 2070, 2071, 1728, 2072, 2073, 1728, 2074, 1728, 2075, 2076, 1728, 2077, 2078, 1728, 2079, 1728, 2080, 2081, 1728, 2082, 2083, 1728, 2084, 1728, 2085, 2086, 1728, 2087, 2088, 2089, 1728, 2090, 2091, 2091, 2092, 2093, 2094, 2094, 1728, 2095, 2096, 2097, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 2098, 1728, 2099, 2100, 2101, 2102, 2103, 2104, 2105, 2106, 1728, 2107, 2108, 1728, 2109, 2110, 2111, 2111, 2112, 2113, 2114, 2115, 1728, 2116, 2117, 2117, 2118, 2119, 2120, 2121, 2122, 1728, 2123, 2124, 2124, 2125, 2126, 2127, 2128, 2129, 1728, 2130, 2131, 2131, 2132, 2133, 2134, 2135, 2136, 1728, 2137, 2138, 2138, 2139, 2140, 2141, 2142, 1728, 2143, 1728, 2144, 2145, 1728, 2146, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2148, 1728, 2149, 2150, 2151, 2152, 2153, 2154, 2155, 2155, 2156, 2157, 2158, 1728, 1728, 2159, 1728, 2160, 1728, 2161, 1728, 2162, 1728, 2163, 1728, 2164, 1728, 2165, 1728, 2166, 1728, 2167, 1728, 2142, 2168, 1728, 2143, 2169, 2169, 2144, 2145, 2170, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2171, 1728, 2172, 2173, 1728, 2159, 2160, 2174, 1728, 2161, 2162, 2175, 1728, 2163, 2164, 2176, 1728, 2165, 2166, 2177, 1728, 2167, 2178, 1728, 2179, 1728, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2180, 1728, 2172, 2181, 2182, 2183, 2184, 2185, 2178, 2186, 1728, 2179, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2187, 2181, 2182, 2183, 2184, 2185, 2188, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2187, 2188, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 0, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728 } ; static yyconst flex_uint16_t yy_nxt[7910] = { 0, 4, 5, 6, 7, 8, 9, 10, 11, 12, 12, 13, 14, 15, 15, 15, 15, 15, 15, 16, 17, 18, 19, 20, 21, 21, 12, 22, 13, 23, 24, 25, 26, 27, 28, 29, 30, 31, 21, 32, 33, 34, 35, 36, 21, 37, 38, 39, 40, 41, 42, 21, 21, 43, 44, 53, 211, 44, 44, 44, 44, 44, 212, 44, 44, 44, 57, 58, 44, 248, 44, 44, 44, 60, 61, 72, 44, 83, 84, 249, 44, 53, 44, 44, 44, 44, 206, 44, 44, 73, 85, 44, 117, 79, 1157, 86, 74, 80, 686, 195, 44, 118, 196, 81, 687, 197, 82, 198, 44, 48, 49, 50, 50, 50, 50, 50, 50, 50, 51, 207, 201, 942, 52, 53, 54, 202, 182, 55, 52, 52, 52, 52, 52, 52, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 54, 53, 44, 183, 75, 44, 766, 44, 44, 184, 236, 87, 53, 213, 76, 88, 344, 77, 214, 63, 56, 78, 63, 237, 63, 63, 208, 89, 44, 62, 52, 52, 52, 52, 52, 52, 52, 63, 242, 65, 345, 66, 67, 53, 768, 63, 68, 53, 342, 119, 343, 69, 90, 209, 91, 70, 243, 71, 210, 92, 93, 120, 94, 121, 1335, 122, 95, 453, 123, 53, 55, 53, 53, 53, 53, 53, 53, 53, 53, 1728, 104, 105, 217, 53, 770, 218, 1161, 219, 245, 53, 53, 53, 53, 53, 53, 96, 106, 246, 97, 98, 107, 99, 53, 100, 108, 101, 109, 102, 111, 124, 103, 53, 112, 110, 125, 126, 129, 127, 128, 799, 130, 113, 114, 1728, 134, 115, 324, 116, 131, 141, 135, 142, 136, 132, 137, 133, 146, 53, 138, 325, 139, 140, 53, 355, 147, 143, 53, 527, 148, 1728, 149, 44, 144, 490, 44, 53, 44, 44, 156, 156, 156, 156, 156, 156, 156, 1728, 417, 63, 53, 44, 63, 418, 63, 63, 491, 500, 1070, 44, 153, 153, 153, 153, 153, 153, 153, 63, 53, 708, 501, 153, 492, 1728, 775, 63, 53, 153, 153, 153, 153, 153, 153, 154, 155, 155, 155, 155, 155, 155, 1728, 53, 53, 1728, 156, 380, 381, 382, 383, 1295, 156, 156, 156, 156, 156, 156, 49, 157, 157, 157, 157, 157, 157, 157, 277, 384, 1728, 53, 158, 1728, 1728, 1728, 279, 1413, 158, 158, 158, 158, 158, 158, 62, 158, 158, 158, 158, 158, 158, 158, 161, 161, 161, 161, 161, 161, 161, 576, 1728, 1728, 437, 161, 1323, 504, 765, 53, 577, 161, 161, 161, 161, 161, 161, 44, 265, 767, 44, 505, 44, 44, 53, 1326, 464, 464, 162, 163, 163, 163, 163, 163, 163, 44, 53, 1728, 53, 164, 465, 1728, 774, 44, 265, 164, 164, 164, 164, 164, 164, 260, 579, 261, 261, 261, 261, 261, 261, 261, 365, 580, 53, 1728, 261, 1728, 465, 1728, 535, 781, 261, 261, 261, 261, 261, 261, 262, 263, 263, 263, 263, 263, 263, 263, 277, 468, 53, 1329, 264, 1728, 265, 1728, 1728, 470, 264, 264, 264, 264, 264, 264, 352, 352, 352, 352, 352, 352, 352, 371, 372, 372, 372, 372, 372, 372, 545, 1728, 265, 266, 264, 264, 264, 264, 264, 264, 264, 688, 1728, 1332, 546, 264, 380, 381, 382, 383, 689, 264, 264, 264, 264, 264, 264, 267, 268, 268, 268, 268, 268, 268, 268, 269, 779, 1335, 1728, 270, 546, 1728, 1728, 53, 1413, 270, 270, 270, 270, 270, 270, 53, 270, 270, 270, 270, 270, 270, 270, 273, 274, 274, 274, 274, 274, 274, 275, 1728, 1728, 773, 276, 53, 777, 453, 53, 453, 276, 276, 276, 276, 276, 276, 277, 278, 278, 278, 278, 278, 278, 278, 279, 782, 53, 786, 280, 1223, 281, 453, 396, 53, 280, 280, 280, 280, 280, 280, 397, 440, 440, 440, 440, 440, 440, 440, 53, 793, 545, 1323, 619, 398, 55, 771, 281, 349, 349, 349, 349, 349, 349, 349, 1728, 53, 435, 618, 349, 399, 453, 55, 55, 784, 349, 349, 349, 349, 349, 349, 350, 351, 351, 351, 351, 351, 351, 690, 53, 55, 1728, 352, 435, 618, 854, 1728, 691, 352, 352, 352, 352, 352, 352, 262, 353, 353, 353, 353, 353, 353, 353, 354, 354, 354, 354, 354, 354, 354, 769, 1728, 854, 1728, 354, 1326, 453, 1329, 55, 53, 354, 354, 354, 354, 354, 354, 356, 357, 357, 357, 357, 357, 357, 357, 540, 549, 55, 1728, 358, 453, 1332, 872, 716, 719, 358, 358, 358, 358, 358, 358, 361, 358, 358, 358, 358, 358, 358, 358, 365, 366, 366, 366, 366, 366, 366, 366, 367, 664, 453, 1335, 368, 453, 369, 1287, 1289, 666, 368, 368, 368, 368, 368, 368, 455, 456, 456, 456, 456, 456, 456, 524, 524, 524, 524, 524, 524, 524, 658, 778, 369, 277, 373, 373, 373, 373, 373, 373, 373, 279, 53, 1068, 659, 374, 1295, 55, 55, 1293, 776, 374, 374, 374, 374, 374, 374, 375, 376, 376, 376, 376, 376, 376, 53, 55, 55, 780, 377, 658, 659, 879, 866, 1493, 377, 377, 377, 377, 377, 377, 421, 53, 422, 1728, 423, 424, 554, 555, 555, 555, 555, 555, 555, 55, 425, 785, 426, 427, 660, 428, 430, 660, 431, 431, 431, 431, 431, 431, 431, 1728, 53, 55, 661, 431, 873, 1728, 55, 1413, 55, 431, 431, 431, 431, 431, 431, 432, 433, 433, 433, 433, 433, 433, 433, 1413, 55, 876, 55, 434, 661, 435, 453, 1728, 1345, 434, 434, 434, 434, 434, 434, 558, 559, 559, 559, 559, 559, 559, 638, 639, 639, 639, 639, 639, 639, 729, 783, 435, 436, 434, 434, 434, 434, 434, 434, 434, 53, 1117, 1350, 730, 434, 1352, 55, 55, 55, 729, 434, 434, 434, 434, 434, 434, 438, 439, 439, 439, 439, 439, 439, 1728, 55, 55, 55, 440, 874, 730, 55, 883, 55, 440, 440, 440, 440, 440, 440, 267, 441, 441, 441, 441, 441, 441, 441, 1126, 55, 1728, 55, 442, 1728, 884, 1728, 1728, 1358, 442, 442, 442, 442, 442, 442, 53, 442, 442, 442, 442, 442, 442, 442, 445, 446, 446, 446, 446, 446, 446, 1728, 724, 1728, 1728, 447, 1360, 55, 55, 794, 899, 447, 447, 447, 447, 447, 447, 451, 452, 452, 452, 452, 452, 452, 453, 55, 55, 55, 454, 887, 1728, 55, 796, 1137, 454, 454, 454, 454, 454, 454, 365, 457, 457, 457, 457, 457, 457, 457, 367, 55, 1728, 935, 458, 1728, 55, 55, 1728, 1366, 458, 458, 458, 458, 458, 458, 459, 460, 460, 460, 460, 460, 460, 453, 55, 55, 53, 461, 1728, 935, 963, 1728, 55, 461, 461, 461, 461, 461, 461, 277, 466, 466, 466, 466, 466, 466, 466, 279, 1368, 1149, 55, 467, 53, 1374, 55, 964, 55, 467, 467, 467, 467, 467, 467, 468, 469, 469, 469, 469, 469, 469, 469, 470, 55, 975, 55, 471, 787, 472, 1376, 965, 788, 471, 471, 471, 471, 471, 471, 582, 738, 583, 53, 789, 584, 585, 53, 738, 586, 587, 791, 733, 792, 588, 739, 472, 482, 53, 1161, 902, 483, 1728, 53, 484, 53, 740, 485, 740, 486, 487, 488, 489, 521, 521, 521, 521, 521, 521, 521, 741, 739, 1728, 1295, 521, 55, 55, 55, 1728, 1421, 521, 521, 521, 521, 521, 521, 522, 523, 523, 523, 523, 523, 523, 55, 55, 55, 741, 524, 1728, 967, 969, 1061, 880, 524, 524, 524, 524, 524, 524, 432, 525, 525, 525, 525, 525, 525, 525, 526, 526, 526, 526, 526, 526, 526, 1223, 1468, 1470, 1061, 526, 1506, 55, 55, 55, 55, 526, 526, 526, 526, 526, 526, 437, 528, 528, 528, 528, 528, 528, 528, 55, 55, 55, 55, 529, 1510, 265, 970, 976, 881, 529, 529, 529, 529, 529, 529, 646, 647, 647, 647, 647, 647, 647, 650, 651, 651, 651, 651, 651, 651, 55, 855, 265, 529, 529, 529, 529, 529, 529, 529, 1728, 744, 1728, 1728, 529, 856, 55, 1514, 55, 905, 529, 529, 529, 529, 529, 529, 530, 530, 530, 530, 530, 530, 530, 1518, 55, 867, 1728, 531, 1728, 1728, 1728, 856, 979, 531, 531, 531, 531, 531, 531, 53, 531, 531, 531, 531, 531, 531, 531, 365, 534, 534, 534, 534, 534, 534, 534, 535, 1728, 1522, 1551, 536, 1728, 369, 1573, 1155, 1149, 536, 536, 536, 536, 536, 536, 749, 750, 750, 750, 750, 750, 750, 752, 753, 753, 753, 753, 753, 753, 55, 1728, 369, 540, 541, 541, 541, 541, 541, 541, 541, 542, 861, 453, 1332, 543, 930, 544, 55, 1085, 863, 543, 543, 543, 543, 543, 543, 756, 757, 757, 757, 757, 757, 757, 819, 820, 820, 820, 820, 820, 820, 855, 55, 544, 365, 547, 547, 547, 547, 547, 547, 547, 535, 1145, 1143, 1728, 548, 1728, 1137, 1728, 55, 55, 548, 548, 548, 548, 548, 548, 549, 550, 550, 550, 550, 550, 550, 550, 551, 868, 453, 55, 552, 1728, 553, 1728, 982, 1728, 552, 552, 552, 552, 552, 552, 827, 828, 828, 828, 828, 828, 828, 831, 832, 832, 832, 832, 832, 832, 857, 55, 553, 468, 560, 560, 560, 560, 560, 560, 560, 470, 1329, 1728, 858, 561, 919, 55, 1133, 55, 857, 561, 561, 561, 561, 561, 561, 562, 563, 563, 563, 563, 563, 563, 1728, 55, 869, 1131, 564, 1728, 858, 55, 1087, 55, 564, 564, 564, 564, 564, 564, 613, 915, 614, 614, 614, 614, 614, 614, 614, 55, 1728, 55, 1126, 614, 972, 916, 55, 55, 885, 614, 614, 614, 614, 614, 614, 615, 616, 616, 616, 616, 616, 616, 616, 453, 55, 55, 1326, 617, 1078, 618, 910, 916, 1084, 617, 617, 617, 617, 617, 617, 839, 840, 840, 840, 840, 840, 840, 842, 843, 843, 843, 843, 843, 843, 55, 55, 618, 615, 617, 617, 617, 617, 617, 617, 617, 1142, 910, 1122, 1728, 617, 1154, 1728, 55, 55, 1101, 617, 617, 617, 617, 617, 617, 437, 620, 620, 620, 620, 620, 620, 620, 871, 919, 1142, 877, 621, 1728, 1728, 1154, 1728, 1104, 621, 621, 621, 621, 621, 621, 53, 621, 621, 621, 621, 621, 621, 621, 622, 622, 622, 622, 622, 622, 622, 930, 1728, 1117, 453, 623, 1286, 1728, 1728, 1107, 1323, 623, 623, 623, 623, 623, 623, 53, 623, 623, 623, 623, 623, 623, 623, 626, 627, 627, 627, 627, 627, 627, 1286, 1728, 1728, 1728, 628, 453, 1225, 55, 55, 55, 628, 628, 628, 628, 628, 628, 365, 457, 457, 457, 457, 457, 457, 457, 535, 55, 55, 55, 458, 1728, 1082, 1086, 1089, 915, 458, 458, 458, 458, 458, 458, 629, 630, 630, 630, 630, 630, 630, 1728, 942, 1342, 1728, 631, 1206, 55, 55, 1335, 1110, 631, 631, 631, 631, 631, 631, 635, 636, 636, 636, 636, 636, 636, 453, 55, 55, 1728, 637, 1090, 1728, 55, 55, 1088, 637, 637, 637, 637, 637, 637, 540, 640, 640, 640, 640, 640, 640, 640, 542, 55, 55, 1091, 641, 1332, 55, 1093, 55, 1329, 641, 641, 641, 641, 641, 641, 642, 643, 643, 643, 643, 643, 643, 453, 55, 1326, 55, 644, 1323, 1206, 55, 55, 55, 644, 644, 644, 644, 644, 644, 549, 652, 652, 652, 652, 652, 652, 652, 551, 55, 55, 55, 653, 1068, 55, 55, 55, 1295, 653, 653, 653, 653, 653, 653, 654, 655, 655, 655, 655, 655, 655, 453, 55, 55, 55, 656, 1187, 1190, 55, 1191, 55, 656, 656, 656, 656, 656, 656, 468, 662, 662, 662, 662, 662, 662, 662, 470, 55, 1070, 55, 663, 1728, 1728, 55, 1194, 861, 663, 663, 663, 663, 663, 663, 664, 665, 665, 665, 665, 665, 665, 665, 666, 55, 1064, 1195, 667, 1062, 668, 1728, 1728, 1163, 667, 667, 667, 667, 667, 667, 846, 847, 847, 847, 847, 847, 847, 750, 750, 750, 750, 750, 750, 750, 55, 55, 668, 704, 704, 704, 704, 704, 704, 704, 1357, 453, 1365, 1373, 704, 1728, 55, 1110, 55, 55, 704, 704, 704, 704, 704, 704, 705, 705, 705, 705, 705, 705, 705, 878, 55, 968, 1357, 705, 1365, 1373, 1199, 1728, 1151, 705, 705, 705, 705, 705, 705, 615, 706, 706, 706, 706, 706, 706, 706, 707, 707, 707, 707, 707, 707, 707, 1068, 453, 1107, 1467, 707, 1509, 55, 55, 1070, 55, 707, 707, 707, 707, 707, 707, 437, 709, 709, 709, 709, 709, 709, 709, 55, 55, 1197, 55, 710, 1467, 1200, 1509, 1513, 978, 710, 710, 710, 710, 710, 710, 53, 710, 710, 710, 710, 710, 710, 710, 711, 711, 711, 711, 711, 711, 711, 1117, 1126, 1139, 1513, 712, 453, 1104, 1128, 1323, 1326, 712, 712, 712, 712, 712, 712, 53, 712, 712, 712, 712, 712, 712, 712, 540, 715, 715, 715, 715, 715, 715, 715, 716, 55, 55, 924, 717, 55, 544, 55, 55, 55, 717, 717, 717, 717, 717, 717, 1137, 925, 453, 55, 55, 1101, 1119, 55, 1329, 55, 55, 55, 55, 980, 55, 870, 544, 549, 718, 718, 718, 718, 718, 718, 718, 719, 882, 925, 886, 720, 55, 553, 55, 1149, 1298, 720, 720, 720, 720, 720, 720, 1332, 875, 453, 1225, 888, 893, 893, 893, 893, 893, 893, 893, 55, 924, 926, 1517, 553, 724, 725, 725, 725, 725, 725, 725, 725, 726, 55, 1728, 927, 727, 55, 728, 926, 936, 936, 727, 727, 727, 727, 727, 727, 1517, 341, 1161, 55, 1521, 1728, 937, 1728, 55, 453, 1335, 1206, 1728, 927, 938, 1110, 728, 540, 731, 731, 731, 731, 731, 731, 731, 716, 55, 1299, 939, 732, 1521, 1728, 937, 1728, 55, 732, 732, 732, 732, 732, 732, 733, 734, 734, 734, 734, 734, 734, 734, 735, 1300, 1107, 55, 736, 939, 737, 1104, 1304, 938, 736, 736, 736, 736, 736, 736, 840, 840, 840, 840, 840, 840, 840, 1728, 948, 949, 949, 949, 949, 949, 949, 1101, 737, 549, 742, 742, 742, 742, 742, 742, 742, 719, 1223, 1206, 1572, 743, 1592, 1593, 55, 1728, 1413, 743, 743, 743, 743, 743, 743, 744, 745, 745, 745, 745, 745, 745, 745, 746, 55, 1070, 1301, 747, 1572, 748, 1592, 1593, 863, 747, 747, 747, 747, 747, 747, 951, 952, 952, 952, 952, 952, 952, 955, 956, 956, 956, 956, 956, 956, 55, 55, 748, 664, 758, 758, 758, 758, 758, 758, 758, 666, 1293, 942, 1163, 759, 1110, 1594, 55, 55, 1295, 759, 759, 759, 759, 759, 759, 760, 761, 761, 761, 761, 761, 761, 966, 974, 744, 938, 762, 55, 55, 55, 55, 1594, 762, 762, 762, 762, 762, 762, 53, 53, 53, 53, 53, 53, 53, 55, 55, 55, 55, 53, 55, 55, 1062, 55, 55, 53, 53, 53, 53, 53, 53, 971, 973, 1595, 983, 981, 1063, 1293, 55, 55, 1062, 55, 55, 764, 794, 1728, 795, 795, 795, 795, 795, 795, 795, 977, 1728, 1077, 1073, 795, 1186, 1595, 55, 936, 1063, 795, 795, 795, 795, 795, 795, 1010, 1011, 1011, 1011, 1011, 1011, 1011, 1064, 1064, 55, 55, 1728, 53, 796, 797, 797, 797, 797, 797, 797, 797, 1065, 1728, 930, 1074, 797, 55, 55, 55, 1079, 1151, 797, 797, 797, 797, 797, 797, 1018, 1019, 1019, 1019, 1019, 1019, 1019, 55, 55, 1080, 1065, 1728, 53, 706, 706, 706, 706, 706, 706, 706, 1022, 1023, 1023, 1023, 1023, 1023, 1023, 1030, 1031, 1031, 1031, 1031, 1031, 1031, 1033, 1034, 1034, 1034, 1034, 1034, 1034, 1037, 1038, 1038, 1038, 1038, 1038, 1038, 53, 707, 707, 707, 707, 707, 707, 707, 1107, 733, 926, 924, 707, 919, 1596, 1613, 1619, 1139, 707, 707, 707, 707, 707, 707, 798, 353, 353, 353, 353, 353, 353, 353, 267, 800, 800, 800, 800, 800, 800, 800, 1596, 1613, 1619, 1104, 801, 724, 915, 910, 1128, 1101, 801, 801, 801, 801, 801, 801, 53, 801, 801, 801, 801, 801, 801, 801, 804, 805, 805, 805, 805, 805, 805, 1119, 1006, 991, 1110, 806, 1107, 1104, 55, 55, 55, 806, 806, 806, 806, 806, 806, 540, 640, 640, 640, 640, 640, 640, 640, 716, 55, 55, 55, 641, 1315, 1101, 1316, 55, 1122, 641, 641, 641, 641, 641, 641, 807, 808, 808, 808, 808, 808, 808, 1123, 1302, 1099, 55, 809, 991, 861, 55, 1070, 55, 809, 809, 809, 809, 809, 809, 549, 652, 652, 652, 652, 652, 652, 652, 719, 55, 1123, 55, 653, 863, 55, 55, 55, 1122, 653, 653, 653, 653, 653, 653, 810, 811, 811, 811, 811, 811, 811, 1728, 55, 55, 55, 812, 664, 55, 1395, 1404, 1306, 812, 812, 812, 812, 812, 812, 816, 817, 817, 817, 817, 817, 817, 453, 55, 857, 1728, 818, 855, 944, 905, 55, 55, 818, 818, 818, 818, 818, 818, 724, 821, 821, 821, 821, 821, 821, 821, 726, 1401, 55, 55, 822, 932, 902, 55, 55, 921, 822, 822, 822, 822, 822, 822, 823, 824, 824, 824, 824, 824, 824, 453, 1409, 55, 55, 825, 1476, 1477, 55, 55, 55, 825, 825, 825, 825, 825, 825, 733, 833, 833, 833, 833, 833, 833, 833, 735, 55, 55, 55, 834, 899, 1479, 912, 55, 1006, 834, 834, 834, 834, 834, 834, 835, 836, 836, 836, 836, 836, 836, 453, 991, 1478, 55, 837, 905, 902, 1481, 55, 55, 837, 837, 837, 837, 837, 837, 744, 848, 848, 848, 848, 848, 848, 848, 746, 899, 55, 55, 849, 991, 1482, 55, 55, 1483, 849, 849, 849, 849, 849, 849, 850, 851, 851, 851, 851, 851, 851, 453, 863, 55, 55, 852, 666, 1486, 55, 1489, 55, 852, 852, 852, 852, 852, 852, 664, 859, 859, 859, 859, 859, 859, 859, 666, 55, 744, 55, 860, 944, 905, 55, 549, 1536, 860, 860, 860, 860, 860, 860, 861, 862, 862, 862, 862, 862, 862, 862, 863, 55, 1546, 740, 864, 738, 865, 733, 932, 902, 864, 864, 864, 864, 864, 864, 1046, 1047, 1047, 1047, 1047, 1047, 1047, 1049, 1050, 1050, 1050, 1050, 1050, 1050, 1131, 55, 865, 55, 1131, 889, 889, 889, 889, 889, 889, 889, 540, 729, 1132, 724, 889, 921, 1728, 55, 55, 55, 889, 889, 889, 889, 889, 889, 890, 890, 890, 890, 890, 890, 890, 1081, 899, 912, 55, 890, 1132, 55, 55, 55, 1728, 890, 890, 890, 890, 890, 890, 891, 892, 892, 892, 892, 892, 892, 1189, 55, 55, 55, 893, 1549, 55, 55, 55, 55, 893, 893, 893, 893, 893, 893, 267, 894, 894, 894, 894, 894, 894, 894, 55, 55, 55, 55, 895, 909, 1577, 1584, 815, 1396, 895, 895, 895, 895, 895, 895, 53, 895, 895, 895, 895, 895, 895, 895, 724, 898, 898, 898, 898, 898, 898, 898, 899, 803, 905, 902, 900, 899, 728, 897, 803, 664, 900, 900, 900, 900, 900, 900, 1053, 1054, 1054, 1054, 1054, 1054, 1054, 949, 949, 949, 949, 949, 949, 949, 55, 55, 728, 733, 901, 901, 901, 901, 901, 901, 901, 902, 55, 55, 1133, 903, 863, 737, 55, 55, 55, 903, 903, 903, 903, 903, 903, 666, 1134, 468, 55, 55, 660, 1075, 1076, 55, 1083, 55, 55, 55, 658, 1182, 1183, 737, 744, 904, 904, 904, 904, 904, 904, 904, 905, 55, 1134, 55, 906, 55, 748, 1537, 1133, 746, 906, 906, 906, 906, 906, 906, 1092, 1143, 1094, 1185, 719, 735, 1728, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1143, 1144, 748, 910, 911, 911, 911, 911, 911, 911, 911, 912, 55, 55, 1728, 913, 716, 914, 1728, 1145, 1145, 913, 913, 913, 913, 913, 913, 1144, 726, 815, 55, 55, 803, 1146, 1728, 719, 55, 716, 803, 1155, 1728, 1155, 1184, 914, 724, 917, 917, 917, 917, 917, 917, 917, 899, 1156, 55, 1728, 918, 53, 53, 1146, 1728, 53, 918, 918, 918, 918, 918, 918, 919, 920, 920, 920, 920, 920, 920, 920, 921, 1581, 790, 1156, 922, 1728, 923, 55, 55, 1157, 922, 922, 922, 922, 922, 922, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1158, 53, 55, 55, 53, 1157, 55, 55, 772, 923, 733, 928, 928, 928, 928, 928, 928, 928, 902, 1728, 1310, 1192, 929, 666, 55, 55, 1158, 470, 929, 929, 929, 929, 929, 929, 930, 931, 931, 931, 931, 931, 931, 931, 932, 1311, 1490, 1728, 933, 549, 934, 746, 719, 365, 933, 933, 933, 933, 933, 933, 1167, 1168, 1168, 1168, 1168, 1168, 1168, 1170, 1171, 1171, 1171, 1171, 1171, 1171, 1287, 55, 934, 744, 940, 940, 940, 940, 940, 940, 940, 905, 545, 540, 1288, 941, 735, 716, 726, 55, 1201, 941, 941, 941, 941, 941, 941, 942, 943, 943, 943, 943, 943, 943, 943, 944, 1202, 1203, 723, 945, 1288, 946, 55, 55, 55, 945, 945, 945, 945, 945, 945, 1174, 1175, 1175, 1175, 1175, 1175, 1175, 634, 625, 55, 55, 55, 55, 1287, 1289, 719, 946, 861, 957, 957, 957, 957, 957, 957, 957, 863, 1193, 1728, 1290, 958, 55, 1544, 55, 55, 1289, 958, 958, 958, 958, 958, 958, 959, 960, 960, 960, 960, 960, 960, 1728, 1314, 55, 55, 961, 1728, 1290, 55, 716, 55, 961, 961, 961, 961, 961, 961, 55, 1188, 984, 984, 984, 984, 984, 984, 984, 55, 1728, 55, 1602, 984, 1603, 55, 55, 55, 55, 984, 984, 984, 984, 984, 984, 985, 985, 985, 985, 985, 985, 985, 714, 55, 55, 55, 985, 1604, 55, 55, 55, 55, 985, 985, 985, 985, 985, 985, 619, 986, 986, 986, 986, 986, 986, 986, 55, 55, 55, 55, 987, 1610, 435, 625, 615, 1491, 987, 987, 987, 987, 987, 987, 1196, 1198, 1229, 1230, 1230, 1230, 1230, 1230, 1230, 1235, 1236, 1236, 1236, 1236, 1236, 1236, 435, 987, 987, 987, 987, 987, 987, 987, 613, 703, 702, 701, 987, 700, 55, 55, 55, 55, 987, 987, 987, 987, 987, 987, 267, 988, 988, 988, 988, 988, 988, 988, 55, 55, 55, 55, 989, 1624, 699, 1626, 1627, 1535, 989, 989, 989, 989, 989, 989, 53, 989, 989, 989, 989, 989, 989, 989, 992, 993, 993, 993, 993, 993, 993, 698, 697, 696, 695, 994, 694, 693, 55, 55, 55, 994, 994, 994, 994, 994, 994, 724, 821, 821, 821, 821, 821, 821, 821, 899, 55, 55, 55, 822, 692, 685, 1642, 55, 1345, 822, 822, 822, 822, 822, 822, 995, 996, 996, 996, 996, 996, 996, 1346, 1634, 684, 55, 997, 683, 682, 55, 1643, 55, 997, 997, 997, 997, 997, 997, 733, 833, 833, 833, 833, 833, 833, 833, 902, 55, 1346, 55, 834, 681, 1644, 55, 55, 1345, 834, 834, 834, 834, 834, 834, 998, 999, 999, 999, 999, 999, 999, 1728, 1635, 55, 55, 1000, 680, 679, 1646, 678, 55, 1000, 1000, 1000, 1000, 1000, 1000, 744, 848, 848, 848, 848, 848, 848, 848, 905, 677, 1728, 55, 849, 676, 675, 55, 55, 1350, 849, 849, 849, 849, 849, 849, 1001, 1002, 1002, 1002, 1002, 1002, 1002, 1351, 1636, 55, 55, 1003, 1655, 55, 1657, 674, 673, 1003, 1003, 1003, 1003, 1003, 1003, 1007, 1008, 1008, 1008, 1008, 1008, 1008, 453, 55, 672, 1351, 1009, 671, 1659, 55, 55, 55, 1009, 1009, 1009, 1009, 1009, 1009, 910, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 912, 55, 55, 55, 1013, 670, 1661, 55, 669, 468, 1013, 1013, 1013, 1013, 1013, 1013, 1014, 1015, 1015, 1015, 1015, 1015, 1015, 453, 1669, 55, 1662, 1016, 666, 470, 55, 464, 55, 1016, 1016, 1016, 1016, 1016, 1016, 919, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 921, 55, 1663, 55, 1025, 551, 1672, 55, 55, 535, 1025, 1025, 1025, 1025, 1025, 1025, 1026, 1027, 1027, 1027, 1027, 1027, 1027, 453, 542, 55, 55, 1028, 634, 625, 1680, 1681, 55, 1028, 1028, 1028, 1028, 1028, 1028, 930, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 932, 535, 625, 55, 1040, 619, 55, 55, 1686, 619, 1040, 1040, 1040, 1040, 1040, 1040, 1041, 1042, 1042, 1042, 1042, 1042, 1042, 453, 55, 55, 612, 1043, 1687, 611, 55, 55, 55, 1043, 1043, 1043, 1043, 1043, 1043, 942, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 944, 55, 55, 55, 1056, 1693, 1690, 55, 55, 610, 1056, 1056, 1056, 1056, 1056, 1056, 1057, 1058, 1058, 1058, 1058, 1058, 1058, 453, 609, 55, 55, 1059, 608, 607, 55, 1700, 55, 1059, 1059, 1059, 1059, 1059, 1059, 861, 1066, 1066, 1066, 1066, 1066, 1066, 1066, 863, 55, 1694, 55, 1067, 606, 605, 55, 1708, 55, 1067, 1067, 1067, 1067, 1067, 1067, 1068, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1070, 55, 604, 55, 1071, 603, 1072, 602, 338, 239, 1071, 1071, 1071, 1071, 1071, 1071, 1239, 1240, 1240, 1240, 1240, 1240, 1240, 1245, 1246, 1246, 1246, 1246, 1246, 1246, 55, 55, 1072, 55, 619, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 601, 600, 599, 598, 1096, 597, 55, 55, 596, 55, 1096, 1096, 1096, 1096, 1096, 1096, 53, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 55, 267, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1248, 1249, 1249, 1249, 1249, 1249, 1249, 55, 55, 55, 910, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1101, 595, 594, 593, 1102, 592, 914, 55, 55, 591, 1102, 1102, 1102, 1102, 1102, 1102, 1252, 1253, 1253, 1253, 1253, 1253, 1253, 1259, 1260, 1260, 1260, 1260, 1260, 1260, 55, 1710, 914, 919, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1104, 590, 589, 581, 1105, 578, 923, 55, 575, 574, 1105, 1105, 1105, 1105, 1105, 1105, 1262, 1263, 1263, 1263, 1263, 1263, 1263, 1266, 1267, 1267, 1267, 1267, 1267, 1267, 55, 1714, 923, 930, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1107, 573, 572, 571, 1108, 570, 934, 55, 569, 568, 1108, 1108, 1108, 1108, 1108, 1108, 1273, 1274, 1274, 1274, 1274, 1274, 1274, 1276, 1277, 1277, 1277, 1277, 1277, 1277, 55, 55, 934, 942, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1110, 567, 566, 470, 1111, 279, 946, 55, 55, 453, 1111, 1111, 1111, 1111, 1111, 1111, 1280, 1281, 1281, 1281, 1281, 1281, 1281, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 365, 551, 946, 1113, 1114, 1114, 1114, 1114, 1114, 1114, 1115, 535, 542, 453, 1116, 539, 450, 444, 55, 55, 1116, 1116, 1116, 1116, 1116, 1116, 1117, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1119, 55, 55, 55, 1120, 55, 1121, 55, 1350, 55, 1120, 1120, 1120, 1120, 1120, 1120, 1308, 1305, 535, 55, 533, 444, 1728, 55, 436, 55, 55, 55, 430, 520, 1303, 519, 1121, 910, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1101, 1312, 1583, 55, 1125, 1402, 1717, 1728, 55, 55, 1125, 1125, 1125, 1125, 1125, 1125, 1126, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1128, 55, 55, 55, 1129, 518, 1130, 517, 516, 55, 1129, 1129, 1129, 1129, 1129, 1129, 1309, 1313, 515, 55, 1337, 1338, 1338, 1338, 1338, 1338, 1338, 55, 1352, 55, 1307, 514, 1130, 919, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1104, 1353, 513, 1403, 1136, 512, 55, 511, 55, 510, 1136, 1136, 1136, 1136, 1136, 1136, 1137, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1139, 1405, 55, 1353, 1140, 509, 1141, 1352, 508, 507, 1140, 1140, 1140, 1140, 1140, 1140, 1317, 506, 503, 502, 499, 1728, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 498, 1358, 55, 1141, 930, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1107, 497, 496, 1359, 1148, 495, 1728, 120, 55, 494, 1148, 1148, 1148, 1148, 1148, 1148, 1149, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1151, 1408, 1358, 1360, 1152, 1359, 1153, 1360, 493, 481, 1152, 1152, 1152, 1152, 1152, 1152, 1728, 1361, 480, 479, 478, 1728, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 477, 1366, 55, 1153, 942, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1110, 1728, 1361, 1367, 1160, 476, 1728, 475, 55, 474, 1160, 1160, 1160, 1160, 1160, 1160, 1161, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1163, 1475, 1366, 1368, 1164, 1367, 1165, 1368, 473, 277, 1164, 1164, 1164, 1164, 1164, 1164, 1728, 1369, 470, 279, 453, 1728, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 367, 1374, 55, 1165, 1068, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1070, 1728, 1369, 1375, 1177, 450, 1728, 444, 55, 1374, 1177, 1177, 1177, 1177, 1177, 1177, 1178, 1179, 1179, 1179, 1179, 1179, 1179, 1728, 444, 1547, 437, 1180, 437, 1375, 55, 429, 55, 1180, 1180, 1180, 1180, 1180, 1180, 55, 619, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 55, 1728, 55, 420, 989, 1715, 419, 1719, 416, 55, 989, 989, 989, 989, 989, 989, 53, 989, 989, 989, 989, 989, 989, 989, 55, 267, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 415, 55, 55, 1376, 1376, 55, 55, 414, 1421, 55, 1207, 1208, 1208, 1208, 1208, 1208, 1208, 1377, 1728, 55, 55, 1209, 1422, 55, 55, 1399, 413, 1209, 1209, 1209, 1209, 1209, 1209, 910, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1101, 1400, 1377, 1728, 1013, 412, 411, 1422, 410, 1421, 1013, 1013, 1013, 1013, 1013, 1013, 1210, 1211, 1211, 1211, 1211, 1211, 1211, 1728, 409, 408, 407, 1212, 406, 405, 404, 403, 55, 1212, 1212, 1212, 1212, 1212, 1212, 919, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1104, 402, 1728, 55, 1025, 401, 400, 395, 394, 1468, 1025, 1025, 1025, 1025, 1025, 1025, 1213, 1214, 1214, 1214, 1214, 1214, 1214, 1469, 1698, 393, 392, 1215, 391, 320, 390, 389, 55, 1215, 1215, 1215, 1215, 1215, 1215, 930, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1107, 388, 1469, 55, 1040, 387, 386, 385, 379, 1468, 1040, 1040, 1040, 1040, 1040, 1040, 1216, 1217, 1217, 1217, 1217, 1217, 1217, 1728, 1723, 279, 367, 1218, 275, 364, 272, 360, 266, 1218, 1218, 1218, 1218, 1218, 1218, 942, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1110, 260, 1728, 143, 1056, 348, 347, 346, 341, 1470, 1056, 1056, 1056, 1056, 1056, 1056, 1219, 1220, 1220, 1220, 1220, 1220, 1220, 1471, 320, 340, 339, 1221, 338, 337, 336, 335, 334, 1221, 1221, 1221, 1221, 1221, 1221, 1223, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1225, 333, 1471, 332, 1226, 331, 1227, 330, 329, 328, 1226, 1226, 1226, 1226, 1226, 1226, 1382, 1383, 1383, 1383, 1383, 1383, 1383, 1385, 1386, 1386, 1386, 1386, 1386, 1386, 55, 327, 1227, 1117, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1119, 326, 323, 322, 1232, 321, 320, 55, 1406, 319, 1232, 1232, 1232, 1232, 1232, 1232, 1126, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1128, 1407, 318, 317, 1242, 316, 315, 314, 313, 312, 1242, 1242, 1242, 1242, 1242, 1242, 1137, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1139, 311, 310, 309, 1255, 308, 307, 306, 305, 304, 1255, 1255, 1255, 1255, 1255, 1255, 1149, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1151, 303, 302, 301, 1269, 300, 299, 298, 297, 143, 1269, 1269, 1269, 1269, 1269, 1269, 1161, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1163, 296, 295, 294, 1283, 293, 292, 291, 290, 289, 1283, 1283, 1283, 1283, 1283, 1283, 1068, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1070, 288, 287, 286, 1292, 285, 284, 283, 282, 279, 1292, 1292, 1292, 1292, 1292, 1292, 1293, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1295, 267, 272, 259, 1296, 258, 1297, 55, 55, 1470, 1296, 1296, 1296, 1296, 1296, 1296, 1389, 1390, 1390, 1390, 1390, 1390, 1390, 1728, 55, 55, 55, 257, 55, 55, 55, 256, 1297, 55, 619, 525, 525, 525, 525, 525, 525, 525, 55, 255, 1534, 1576, 55, 55, 55, 1728, 1506, 55, 1318, 1319, 1319, 1319, 1319, 1319, 1319, 1320, 1397, 1410, 1660, 1321, 1507, 1586, 254, 253, 55, 1321, 1321, 1321, 1321, 1321, 1321, 1117, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1323, 55, 55, 55, 1324, 252, 1121, 1507, 251, 250, 1324, 1324, 1324, 1324, 1324, 1324, 247, 1480, 244, 55, 55, 1427, 1428, 1428, 1428, 1428, 1428, 1428, 241, 240, 1398, 1411, 1121, 1126, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1326, 239, 238, 235, 1327, 234, 1130, 233, 232, 231, 1327, 1327, 1327, 1327, 1327, 1327, 1432, 1433, 1433, 1433, 1433, 1433, 1433, 1435, 1436, 1436, 1436, 1436, 1436, 1436, 230, 229, 1130, 1137, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1329, 228, 227, 226, 1330, 225, 1141, 224, 223, 222, 1330, 1330, 1330, 1330, 1330, 1330, 1441, 1442, 1442, 1442, 1442, 1442, 1442, 1444, 1445, 1445, 1445, 1445, 1445, 1445, 221, 220, 1141, 1149, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1332, 216, 215, 205, 1333, 204, 1153, 203, 200, 199, 1333, 1333, 1333, 1333, 1333, 1333, 1450, 1451, 1451, 1451, 1451, 1451, 1451, 1453, 1454, 1454, 1454, 1454, 1454, 1454, 194, 193, 1153, 1161, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1335, 192, 191, 190, 1336, 189, 1165, 188, 187, 186, 1336, 1336, 1336, 1336, 1336, 1336, 1459, 1460, 1460, 1460, 1460, 1460, 1460, 1462, 1463, 1463, 1463, 1463, 1463, 1463, 1506, 55, 1165, 1223, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1225, 185, 181, 1728, 1340, 180, 179, 178, 55, 177, 1340, 1340, 1340, 1340, 1340, 1340, 1117, 1347, 1347, 1347, 1347, 1347, 1347, 1347, 1323, 176, 1579, 175, 1348, 1728, 174, 173, 172, 171, 1348, 1348, 1348, 1348, 1348, 1348, 1126, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1326, 170, 169, 168, 1355, 167, 166, 165, 160, 151, 1355, 1355, 1355, 1355, 1355, 1355, 1137, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1329, 150, 145, 59, 1363, 47, 45, 1728, 1728, 1728, 1363, 1363, 1363, 1363, 1363, 1363, 1149, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1332, 1728, 1728, 1728, 1371, 1728, 1728, 1728, 1728, 1728, 1371, 1371, 1371, 1371, 1371, 1371, 1161, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1335, 1728, 1728, 1728, 1379, 1728, 1728, 1728, 1728, 1728, 1379, 1379, 1379, 1379, 1379, 1379, 1293, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1295, 1728, 1728, 1728, 1392, 1728, 1728, 1728, 1728, 1728, 1392, 1392, 1392, 1392, 1392, 1392, 1223, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1413, 1728, 1728, 1728, 1414, 1728, 1227, 1728, 1728, 1728, 1414, 1414, 1414, 1414, 1414, 1414, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1500, 1501, 1501, 1501, 1501, 1501, 1501, 1510, 55, 1227, 1117, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1323, 1728, 1728, 1511, 1232, 1728, 1728, 1728, 55, 1728, 1232, 1232, 1232, 1232, 1232, 1232, 1126, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1326, 1728, 1580, 1728, 1242, 1511, 1728, 1728, 1728, 1728, 1242, 1242, 1242, 1242, 1242, 1242, 1137, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1329, 1728, 1728, 1728, 1255, 1728, 1728, 1728, 1728, 1728, 1255, 1255, 1255, 1255, 1255, 1255, 1149, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1332, 1728, 1728, 1728, 1269, 1728, 1728, 1728, 1728, 1728, 1269, 1269, 1269, 1269, 1269, 1269, 1161, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1335, 1728, 1728, 1728, 1283, 1728, 1728, 1728, 1728, 1728, 1283, 1283, 1283, 1283, 1283, 1283, 1223, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1413, 1728, 1728, 1728, 1424, 1728, 1728, 1728, 55, 1728, 1424, 1424, 1424, 1424, 1424, 1424, 1293, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1295, 55, 55, 55, 1473, 1728, 1510, 1728, 1728, 1728, 1473, 1473, 1473, 1473, 1473, 1473, 1487, 55, 1728, 55, 1728, 55, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1728, 1484, 1728, 1728, 1488, 1514, 55, 1485, 1223, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1413, 1728, 1548, 1515, 1340, 1728, 1728, 1728, 1728, 1514, 1340, 1340, 1340, 1340, 1340, 1340, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1728, 1518, 1518, 1728, 1728, 1728, 1515, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1522, 1519, 1728, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1522, 1728, 1728, 1728, 1523, 1526, 1527, 1527, 1527, 1527, 1527, 1527, 1728, 55, 1728, 55, 55, 1519, 1728, 1529, 1530, 1530, 1530, 1530, 1530, 1530, 55, 55, 55, 1728, 1523, 55, 55, 55, 55, 1551, 1728, 1551, 55, 55, 1728, 55, 1538, 1539, 55, 55, 55, 1543, 1728, 1552, 55, 1728, 1728, 1540, 1541, 1542, 55, 55, 1728, 55, 1728, 1545, 1553, 1554, 1554, 1554, 1554, 1554, 1554, 1728, 1728, 1728, 1728, 1622, 1582, 1552, 1587, 1728, 1557, 1558, 1558, 1558, 1558, 1558, 1558, 1561, 1562, 1562, 1562, 1562, 1562, 1562, 1565, 1566, 1566, 1566, 1566, 1566, 1566, 1569, 1570, 1570, 1570, 1570, 1570, 1570, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1573, 1573, 55, 55, 55, 1589, 1590, 1590, 1590, 1590, 1590, 1590, 1728, 1728, 1574, 1728, 1728, 1728, 1728, 1728, 55, 55, 55, 1728, 1728, 1728, 1728, 1728, 1728, 1578, 1585, 1588, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1728, 1574, 1728, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1598, 1599, 1599, 1599, 1599, 1599, 1599, 55, 55, 1728, 55, 55, 55, 55, 55, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 55, 55, 1728, 55, 55, 1605, 55, 55, 55, 55, 55, 1728, 1728, 1728, 1728, 1728, 1728, 1611, 55, 55, 1601, 55, 1606, 55, 55, 1607, 1608, 1609, 1612, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 55, 1620, 1628, 55, 55, 55, 55, 55, 55, 1728, 55, 55, 1621, 55, 55, 55, 55, 1728, 55, 1623, 1625, 55, 55, 1728, 1728, 55, 55, 1629, 55, 55, 55, 55, 55, 55, 55, 1647, 1630, 1637, 1728, 55, 55, 1638, 1645, 55, 1633, 1641, 1639, 1728, 55, 55, 1640, 55, 1648, 1649, 55, 1650, 1651, 1728, 55, 55, 1728, 55, 55, 55, 55, 1652, 1728, 55, 1728, 55, 55, 55, 55, 1728, 55, 1653, 55, 55, 1654, 1728, 55, 55, 55, 1658, 1656, 1666, 1665, 1728, 55, 55, 55, 1664, 55, 1670, 55, 1675, 55, 1667, 1668, 1677, 55, 55, 55, 55, 1728, 1671, 55, 1673, 55, 1674, 55, 55, 1676, 1728, 55, 55, 1728, 55, 55, 55, 55, 55, 1678, 1728, 55, 55, 1728, 1682, 55, 55, 55, 1683, 1728, 55, 1679, 55, 1685, 1684, 1688, 55, 1728, 1689, 55, 55, 1691, 55, 55, 1728, 55, 1695, 1692, 55, 55, 55, 55, 1728, 1728, 55, 1696, 1697, 55, 55, 1728, 55, 55, 1701, 55, 55, 1699, 55, 55, 55, 55, 1704, 1702, 55, 55, 55, 1728, 55, 1706, 1709, 1703, 1705, 55, 55, 55, 55, 55, 55, 1728, 1707, 1728, 55, 55, 55, 1711, 1728, 1728, 1728, 1728, 1728, 1716, 1712, 55, 55, 55, 55, 1728, 1728, 1728, 1713, 1728, 1718, 1721, 1722, 55, 1728, 1728, 1726, 1727, 1728, 1720, 1728, 1724, 1728, 1725, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 55, 46, 1728, 1728, 1728, 1728, 46, 46, 46, 64, 1728, 64, 64, 64, 64, 64, 64, 64, 152, 1728, 152, 159, 159, 159, 271, 271, 271, 280, 280, 280, 359, 359, 359, 362, 362, 362, 363, 363, 363, 370, 370, 370, 368, 368, 368, 374, 374, 374, 378, 1728, 378, 443, 443, 443, 448, 448, 448, 449, 449, 449, 458, 458, 458, 462, 1728, 462, 463, 463, 463, 372, 372, 1728, 1728, 372, 467, 467, 467, 471, 471, 471, 362, 362, 362, 532, 532, 532, 536, 536, 536, 537, 537, 537, 538, 538, 538, 370, 370, 370, 543, 543, 543, 456, 456, 1728, 1728, 456, 548, 548, 548, 552, 552, 552, 556, 1728, 556, 557, 557, 557, 561, 561, 561, 565, 1728, 565, 624, 624, 624, 458, 458, 458, 632, 632, 632, 633, 633, 633, 641, 641, 641, 645, 1728, 645, 648, 1728, 648, 649, 649, 649, 653, 653, 653, 657, 1728, 657, 555, 555, 1728, 1728, 555, 559, 559, 1728, 1728, 559, 663, 663, 663, 667, 667, 667, 565, 565, 1728, 565, 537, 537, 537, 713, 713, 713, 717, 717, 717, 720, 720, 720, 721, 721, 721, 722, 722, 722, 727, 727, 727, 639, 639, 1728, 1728, 639, 732, 732, 732, 736, 736, 736, 645, 645, 1728, 645, 647, 647, 1728, 1728, 647, 648, 648, 1728, 648, 649, 649, 651, 651, 1728, 1728, 651, 743, 743, 743, 747, 747, 747, 657, 657, 1728, 657, 751, 1728, 751, 754, 1728, 754, 755, 755, 755, 759, 759, 759, 763, 1728, 763, 802, 802, 802, 641, 641, 641, 653, 653, 653, 813, 813, 813, 814, 814, 814, 822, 822, 822, 826, 1728, 826, 829, 1728, 829, 830, 830, 830, 834, 834, 834, 838, 1728, 838, 841, 1728, 841, 844, 1728, 844, 845, 845, 845, 849, 849, 849, 853, 1728, 853, 750, 1728, 1728, 750, 751, 751, 1728, 751, 753, 753, 1728, 1728, 753, 754, 754, 1728, 754, 755, 755, 757, 757, 1728, 1728, 757, 860, 860, 860, 864, 864, 864, 763, 763, 1728, 763, 53, 53, 53, 1728, 53, 53, 721, 721, 721, 896, 896, 896, 900, 900, 900, 903, 903, 903, 906, 906, 906, 907, 907, 907, 908, 908, 908, 913, 913, 913, 820, 820, 1728, 1728, 820, 918, 918, 918, 922, 922, 922, 826, 826, 1728, 826, 828, 828, 1728, 1728, 828, 829, 829, 1728, 829, 830, 830, 832, 832, 1728, 1728, 832, 929, 929, 929, 933, 933, 933, 838, 838, 1728, 838, 840, 1728, 1728, 840, 841, 841, 1728, 841, 843, 843, 1728, 1728, 843, 844, 844, 1728, 844, 845, 845, 847, 847, 1728, 1728, 847, 941, 941, 941, 945, 945, 945, 853, 853, 1728, 853, 947, 1728, 947, 950, 1728, 950, 953, 1728, 953, 954, 954, 954, 958, 958, 958, 962, 1728, 962, 53, 53, 53, 1728, 53, 53, 990, 990, 990, 822, 822, 822, 834, 834, 834, 849, 849, 849, 1004, 1004, 1004, 1005, 1005, 1005, 1013, 1013, 1013, 1017, 1728, 1017, 1020, 1728, 1020, 1021, 1021, 1021, 1025, 1025, 1025, 1029, 1728, 1029, 1032, 1728, 1032, 1035, 1728, 1035, 1036, 1036, 1036, 1040, 1040, 1040, 1044, 1728, 1044, 1045, 1728, 1045, 1048, 1728, 1048, 1051, 1728, 1051, 1052, 1052, 1052, 1056, 1056, 1056, 1060, 1728, 1060, 947, 1728, 947, 949, 1728, 1728, 949, 950, 950, 1728, 950, 952, 952, 1728, 1728, 952, 953, 953, 1728, 953, 954, 954, 956, 956, 1728, 1728, 956, 1067, 1067, 1067, 1071, 1071, 1071, 962, 962, 1728, 962, 53, 53, 53, 1728, 53, 53, 907, 907, 907, 1098, 1098, 1098, 1102, 1102, 1102, 1105, 1105, 1105, 1108, 1108, 1108, 1111, 1111, 1111, 1112, 1112, 1112, 1120, 1120, 1120, 1011, 1011, 1728, 1728, 1011, 1125, 1125, 1125, 1129, 1129, 1129, 1017, 1017, 1728, 1017, 1019, 1019, 1728, 1728, 1019, 1020, 1020, 1728, 1020, 1021, 1021, 1023, 1023, 1728, 1728, 1023, 1136, 1136, 1136, 1140, 1140, 1140, 1029, 1029, 1728, 1029, 1031, 1728, 1728, 1031, 1032, 1032, 1728, 1032, 1034, 1034, 1728, 1728, 1034, 1035, 1035, 1728, 1035, 1036, 1036, 1038, 1038, 1728, 1728, 1038, 1148, 1148, 1148, 1152, 1152, 1152, 1044, 1044, 1728, 1044, 1045, 1728, 1045, 1047, 1728, 1728, 1047, 1048, 1048, 1728, 1048, 1050, 1050, 1728, 1728, 1050, 1051, 1051, 1728, 1051, 1052, 1052, 1054, 1054, 1728, 1728, 1054, 1160, 1160, 1160, 1164, 1164, 1164, 1060, 1060, 1728, 1060, 1166, 1728, 1166, 1169, 1728, 1169, 1172, 1728, 1172, 1173, 1173, 1173, 1177, 1177, 1177, 1181, 1728, 1181, 53, 53, 53, 1728, 53, 53, 1205, 1205, 1205, 1013, 1013, 1013, 1025, 1025, 1025, 1040, 1040, 1040, 1056, 1056, 1056, 1222, 1222, 1222, 1228, 1228, 1228, 1226, 1226, 1226, 1233, 1233, 1233, 1232, 1232, 1232, 1234, 1728, 1234, 1237, 1728, 1237, 1238, 1238, 1238, 1243, 1243, 1243, 1242, 1242, 1242, 1244, 1728, 1244, 1247, 1728, 1247, 1250, 1728, 1250, 1251, 1251, 1251, 1256, 1256, 1256, 1255, 1255, 1255, 1257, 1728, 1257, 1258, 1728, 1258, 1261, 1728, 1261, 1264, 1728, 1264, 1265, 1265, 1265, 1270, 1270, 1270, 1269, 1269, 1269, 1271, 1728, 1271, 1272, 1728, 1272, 1275, 1728, 1275, 1278, 1728, 1278, 1279, 1279, 1279, 1284, 1284, 1284, 1283, 1283, 1283, 1285, 1728, 1285, 1166, 1728, 1166, 1168, 1728, 1728, 1168, 1169, 1169, 1728, 1169, 1171, 1171, 1728, 1728, 1171, 1172, 1172, 1728, 1172, 1173, 1173, 1175, 1175, 1728, 1728, 1175, 1292, 1292, 1292, 1296, 1296, 1296, 1181, 1181, 1728, 1181, 53, 53, 53, 1728, 53, 53, 1112, 1112, 1112, 1324, 1324, 1324, 1327, 1327, 1327, 1330, 1330, 1330, 1333, 1333, 1333, 1336, 1336, 1336, 1341, 1341, 1341, 1340, 1340, 1340, 1343, 1728, 1343, 1344, 1344, 1344, 1230, 1230, 1728, 1728, 1230, 1348, 1348, 1348, 1349, 1349, 1349, 1234, 1234, 1728, 1234, 1236, 1236, 1728, 1728, 1236, 1237, 1237, 1728, 1237, 1238, 1238, 1240, 1240, 1728, 1728, 1240, 1355, 1355, 1355, 1356, 1356, 1356, 1244, 1244, 1728, 1244, 1246, 1728, 1728, 1246, 1247, 1247, 1728, 1247, 1249, 1249, 1728, 1728, 1249, 1250, 1250, 1728, 1250, 1251, 1251, 1253, 1253, 1728, 1728, 1253, 1363, 1363, 1363, 1364, 1364, 1364, 1257, 1257, 1728, 1257, 1258, 1728, 1258, 1260, 1728, 1728, 1260, 1261, 1261, 1728, 1261, 1263, 1263, 1728, 1728, 1263, 1264, 1264, 1728, 1264, 1265, 1265, 1267, 1267, 1728, 1728, 1267, 1371, 1371, 1371, 1372, 1372, 1372, 1271, 1271, 1728, 1271, 1272, 1728, 1272, 1274, 1728, 1728, 1274, 1275, 1275, 1728, 1275, 1277, 1277, 1728, 1728, 1277, 1278, 1278, 1728, 1278, 1279, 1279, 1281, 1281, 1728, 1728, 1281, 1379, 1379, 1379, 1380, 1380, 1380, 1285, 1285, 1728, 1285, 1381, 1728, 1381, 1384, 1728, 1384, 1387, 1728, 1387, 1388, 1388, 1388, 1393, 1728, 1393, 1392, 1392, 1392, 1394, 1728, 1394, 53, 53, 53, 1728, 53, 53, 1415, 1728, 1415, 1414, 1414, 1414, 1416, 1728, 1416, 1232, 1232, 1232, 1417, 1728, 1417, 1242, 1242, 1242, 1418, 1728, 1418, 1255, 1255, 1255, 1419, 1728, 1419, 1269, 1269, 1269, 1420, 1728, 1420, 1283, 1283, 1283, 1338, 1338, 1728, 1728, 1338, 1424, 1424, 1424, 1425, 1425, 1425, 370, 370, 370, 1343, 1343, 1728, 1343, 1426, 1426, 1426, 1429, 1728, 1429, 1430, 1430, 1430, 1431, 1431, 1431, 1434, 1728, 1434, 1437, 1728, 1437, 1438, 1438, 1438, 1439, 1439, 1439, 1440, 1728, 1440, 1443, 1728, 1443, 1446, 1728, 1446, 1447, 1447, 1447, 1448, 1448, 1448, 1449, 1728, 1449, 1452, 1728, 1452, 1455, 1728, 1455, 1456, 1456, 1456, 1457, 1457, 1457, 1458, 1728, 1458, 1461, 1728, 1461, 1464, 1728, 1464, 1465, 1465, 1465, 1466, 1466, 1466, 1381, 1728, 1381, 1383, 1728, 1728, 1383, 1384, 1384, 1728, 1384, 1386, 1386, 1728, 1728, 1386, 1387, 1387, 1728, 1387, 1388, 1388, 1390, 1390, 1728, 1728, 1390, 1473, 1473, 1473, 1474, 1728, 1474, 1394, 1394, 1728, 1394, 53, 53, 53, 1728, 53, 53, 1492, 1492, 1492, 1340, 1340, 1340, 1494, 1728, 1494, 1495, 1728, 1495, 1496, 1728, 1496, 1497, 1728, 1497, 1498, 1728, 1498, 1499, 1728, 1499, 1502, 1728, 1502, 1503, 1503, 1503, 1504, 1504, 1504, 1505, 1728, 1505, 1428, 1428, 1728, 1728, 1428, 1429, 1429, 1728, 1429, 1430, 1430, 1508, 1728, 1508, 1433, 1728, 1728, 1433, 1434, 1434, 1728, 1434, 1436, 1436, 1728, 1728, 1436, 1437, 1437, 1728, 1437, 1438, 1438, 1512, 1728, 1512, 1440, 1728, 1440, 1442, 1728, 1728, 1442, 1443, 1443, 1728, 1443, 1445, 1445, 1728, 1728, 1445, 1446, 1446, 1728, 1446, 1447, 1447, 1516, 1728, 1516, 1449, 1728, 1449, 1451, 1728, 1728, 1451, 1452, 1452, 1728, 1452, 1454, 1454, 1728, 1728, 1454, 1455, 1455, 1728, 1455, 1456, 1456, 1520, 1728, 1520, 1458, 1728, 1458, 1460, 1728, 1728, 1460, 1461, 1461, 1728, 1461, 1463, 1463, 1728, 1728, 1463, 1464, 1464, 1728, 1464, 1465, 1465, 1524, 1728, 1524, 1525, 1728, 1525, 1528, 1728, 1528, 1531, 1728, 1531, 1532, 1532, 1532, 1533, 1728, 1533, 53, 53, 53, 1728, 53, 53, 1550, 1728, 1550, 1426, 1728, 1426, 1431, 1728, 1431, 1439, 1728, 1439, 1448, 1728, 1448, 1457, 1728, 1457, 1466, 1728, 1466, 1501, 1501, 1728, 1728, 1501, 1502, 1502, 1728, 1502, 1503, 1503, 1493, 1728, 1493, 1555, 1728, 1555, 1556, 1728, 1556, 1559, 1728, 1559, 1560, 1728, 1560, 1563, 1728, 1563, 1564, 1728, 1564, 1567, 1728, 1567, 1568, 1728, 1568, 1571, 1728, 1571, 1527, 1728, 1728, 1527, 1530, 1530, 1728, 1728, 1530, 1575, 1728, 1575, 1504, 1728, 1504, 1591, 1728, 1591, 1554, 1728, 1728, 1554, 1558, 1728, 1728, 1558, 1562, 1728, 1728, 1562, 1566, 1728, 1728, 1566, 1570, 1728, 1728, 1570, 1597, 1728, 1597, 1600, 1728, 1600, 1590, 1728, 1728, 1590, 1614, 1728, 1614, 1615, 1728, 1615, 1616, 1728, 1616, 1617, 1728, 1617, 1618, 1728, 1618, 1599, 1728, 1728, 1599, 1631, 1728, 1631, 1632, 1728, 1632, 3, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728 } ; static yyconst flex_int16_t yy_chk[7910] = { 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, 4, 15, 106, 4, 7, 4, 4, 7, 106, 7, 7, 9, 17, 17, 9, 138, 9, 9, 4, 19, 19, 24, 7, 27, 27, 138, 4, 15, 10, 9, 7, 10, 102, 10, 10, 24, 28, 9, 34, 26, 1278, 28, 24, 26, 586, 94, 10, 34, 94, 26, 586, 95, 26, 95, 10, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 102, 98, 1279, 14, 14, 14, 98, 83, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 16, 83, 25, 16, 671, 16, 16, 83, 129, 29, 671, 107, 25, 29, 252, 25, 107, 22, 16, 25, 22, 129, 22, 22, 103, 29, 16, 20, 20, 20, 20, 20, 20, 20, 20, 22, 134, 23, 252, 23, 23, 20, 673, 22, 23, 673, 251, 35, 251, 23, 30, 103, 30, 23, 134, 23, 103, 30, 30, 35, 30, 35, 1283, 35, 30, 1284, 35, 20, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 32, 32, 110, 21, 675, 110, 1285, 110, 136, 21, 21, 21, 21, 21, 21, 31, 32, 136, 31, 31, 32, 31, 675, 31, 32, 31, 32, 31, 33, 36, 31, 155, 33, 32, 36, 36, 37, 36, 36, 710, 37, 33, 33, 163, 38, 33, 222, 33, 37, 39, 38, 39, 38, 37, 38, 37, 41, 155, 38, 222, 38, 38, 267, 267, 41, 39, 437, 437, 41, 163, 41, 44, 39, 397, 44, 710, 44, 44, 62, 62, 62, 62, 62, 62, 62, 274, 339, 63, 351, 44, 63, 339, 63, 63, 397, 410, 1292, 44, 48, 48, 48, 48, 48, 48, 48, 63, 619, 619, 410, 48, 397, 274, 680, 63, 351, 48, 48, 48, 48, 48, 48, 49, 49, 49, 49, 49, 49, 49, 376, 439, 680, 446, 49, 284, 284, 284, 284, 1296, 49, 49, 49, 49, 49, 49, 50, 50, 50, 50, 50, 50, 50, 50, 466, 284, 376, 439, 50, 446, 452, 460, 466, 1321, 50, 50, 50, 50, 50, 50, 52, 52, 52, 52, 52, 52, 52, 52, 54, 54, 54, 54, 54, 54, 54, 486, 452, 460, 355, 54, 1324, 413, 670, 670, 486, 54, 54, 54, 54, 54, 54, 56, 355, 672, 56, 413, 56, 56, 672, 1327, 371, 372, 56, 56, 56, 56, 56, 56, 56, 56, 523, 563, 679, 56, 371, 372, 679, 56, 355, 56, 56, 56, 56, 56, 56, 153, 488, 153, 153, 153, 153, 153, 153, 153, 547, 488, 523, 563, 153, 627, 371, 372, 547, 686, 153, 153, 153, 153, 153, 153, 154, 154, 154, 154, 154, 154, 154, 154, 557, 662, 686, 1330, 154, 630, 154, 627, 557, 662, 154, 154, 154, 154, 154, 154, 266, 266, 266, 266, 266, 266, 266, 277, 277, 277, 277, 277, 277, 277, 455, 630, 154, 156, 156, 156, 156, 156, 156, 156, 156, 587, 636, 1333, 455, 156, 566, 566, 566, 566, 587, 156, 156, 156, 156, 156, 156, 157, 157, 157, 157, 157, 157, 157, 157, 157, 684, 1336, 636, 157, 455, 643, 655, 684, 1340, 157, 157, 157, 157, 157, 157, 158, 158, 158, 158, 158, 158, 158, 158, 160, 160, 160, 160, 160, 160, 160, 160, 643, 655, 678, 160, 678, 682, 1341, 682, 1342, 160, 160, 160, 160, 160, 160, 162, 162, 162, 162, 162, 162, 162, 162, 162, 687, 691, 691, 162, 1343, 162, 1344, 309, 687, 162, 162, 162, 162, 162, 162, 309, 361, 361, 361, 361, 361, 361, 361, 701, 701, 456, 1348, 527, 309, 764, 676, 162, 260, 260, 260, 260, 260, 260, 260, 456, 676, 527, 708, 260, 309, 1349, 766, 764, 689, 260, 260, 260, 260, 260, 260, 262, 262, 262, 262, 262, 262, 262, 588, 689, 766, 456, 262, 527, 708, 749, 761, 588, 262, 262, 262, 262, 262, 262, 263, 263, 263, 263, 263, 263, 263, 263, 265, 265, 265, 265, 265, 265, 265, 674, 805, 749, 761, 265, 1355, 1356, 1363, 772, 674, 265, 265, 265, 265, 265, 265, 268, 268, 268, 268, 268, 268, 268, 268, 731, 742, 772, 805, 268, 1364, 1371, 772, 731, 742, 268, 268, 268, 268, 268, 268, 270, 270, 270, 270, 270, 270, 270, 270, 273, 273, 273, 273, 273, 273, 273, 273, 273, 859, 1372, 1379, 273, 1380, 273, 1384, 1387, 859, 273, 273, 273, 273, 273, 273, 365, 365, 365, 365, 365, 365, 365, 436, 436, 436, 436, 436, 436, 436, 554, 683, 273, 278, 278, 278, 278, 278, 278, 278, 278, 278, 683, 1388, 554, 278, 1392, 765, 779, 1394, 681, 278, 278, 278, 278, 278, 278, 279, 279, 279, 279, 279, 279, 279, 681, 765, 779, 685, 279, 555, 554, 779, 765, 1413, 279, 279, 279, 279, 279, 279, 344, 685, 344, 555, 344, 344, 464, 464, 464, 464, 464, 464, 464, 773, 344, 690, 344, 344, 558, 344, 349, 559, 349, 349, 349, 349, 349, 349, 349, 555, 690, 773, 558, 349, 773, 559, 776, 1414, 787, 349, 349, 349, 349, 349, 349, 350, 350, 350, 350, 350, 350, 350, 350, 1424, 776, 776, 787, 350, 558, 350, 1425, 559, 1429, 350, 350, 350, 350, 350, 350, 468, 468, 468, 468, 468, 468, 468, 540, 540, 540, 540, 540, 540, 540, 638, 688, 350, 352, 352, 352, 352, 352, 352, 352, 352, 688, 1430, 1434, 638, 352, 1437, 783, 774, 788, 639, 352, 352, 352, 352, 352, 352, 356, 356, 356, 356, 356, 356, 356, 639, 783, 774, 788, 356, 774, 638, 784, 783, 790, 356, 356, 356, 356, 356, 356, 357, 357, 357, 357, 357, 357, 357, 357, 1438, 784, 639, 790, 357, 808, 784, 811, 817, 1443, 357, 357, 357, 357, 357, 357, 358, 358, 358, 358, 358, 358, 358, 358, 360, 360, 360, 360, 360, 360, 360, 808, 917, 811, 817, 360, 1446, 791, 789, 795, 917, 360, 360, 360, 360, 360, 360, 364, 364, 364, 364, 364, 364, 364, 364, 791, 789, 795, 364, 789, 824, 797, 797, 1447, 364, 364, 364, 364, 364, 364, 366, 366, 366, 366, 366, 366, 366, 366, 366, 797, 836, 839, 366, 851, 866, 867, 824, 1452, 366, 366, 366, 366, 366, 366, 367, 367, 367, 367, 367, 367, 367, 367, 866, 867, 892, 367, 836, 839, 867, 851, 868, 367, 367, 367, 367, 367, 367, 373, 373, 373, 373, 373, 373, 373, 373, 373, 1455, 1456, 868, 373, 892, 1461, 879, 868, 869, 373, 373, 373, 373, 373, 373, 375, 375, 375, 375, 375, 375, 375, 375, 375, 879, 879, 869, 375, 692, 375, 1464, 869, 693, 375, 375, 375, 375, 375, 375, 490, 646, 490, 692, 696, 490, 490, 693, 647, 490, 490, 699, 928, 700, 490, 646, 375, 396, 696, 1465, 928, 396, 647, 700, 396, 699, 650, 396, 651, 396, 396, 396, 396, 430, 430, 430, 430, 430, 430, 430, 650, 646, 651, 1473, 430, 780, 871, 873, 647, 1502, 430, 430, 430, 430, 430, 430, 432, 432, 432, 432, 432, 432, 432, 780, 871, 873, 650, 432, 651, 871, 873, 948, 780, 432, 432, 432, 432, 432, 432, 433, 433, 433, 433, 433, 433, 433, 433, 435, 435, 435, 435, 435, 435, 435, 1503, 1528, 1531, 948, 435, 1555, 781, 880, 874, 888, 435, 435, 435, 435, 435, 435, 438, 438, 438, 438, 438, 438, 438, 438, 781, 880, 874, 888, 438, 1559, 438, 874, 880, 781, 438, 438, 438, 438, 438, 438, 545, 545, 545, 545, 545, 545, 545, 549, 549, 549, 549, 549, 549, 549, 767, 752, 438, 440, 440, 440, 440, 440, 440, 440, 960, 940, 993, 996, 440, 752, 883, 1563, 767, 940, 440, 440, 440, 440, 440, 440, 441, 441, 441, 441, 441, 441, 441, 1567, 883, 767, 960, 441, 993, 996, 999, 752, 883, 441, 441, 441, 441, 441, 441, 442, 442, 442, 442, 442, 442, 442, 442, 445, 445, 445, 445, 445, 445, 445, 445, 445, 999, 1571, 1591, 445, 1002, 445, 1600, 1275, 1271, 445, 445, 445, 445, 445, 445, 658, 658, 658, 658, 658, 658, 658, 660, 660, 660, 660, 660, 660, 660, 973, 1002, 445, 451, 451, 451, 451, 451, 451, 451, 451, 451, 1066, 1270, 1269, 451, 1265, 451, 973, 973, 1066, 451, 451, 451, 451, 451, 451, 664, 664, 664, 664, 664, 664, 664, 724, 724, 724, 724, 724, 724, 724, 753, 768, 451, 457, 457, 457, 457, 457, 457, 457, 457, 457, 1264, 1261, 753, 457, 1008, 1257, 1015, 768, 886, 457, 457, 457, 457, 457, 457, 459, 459, 459, 459, 459, 459, 459, 459, 459, 768, 1256, 886, 459, 753, 459, 1008, 886, 1015, 459, 459, 459, 459, 459, 459, 729, 729, 729, 729, 729, 729, 729, 733, 733, 733, 733, 733, 733, 733, 756, 769, 459, 469, 469, 469, 469, 469, 469, 469, 469, 469, 1255, 1027, 756, 469, 1251, 975, 1250, 769, 757, 469, 469, 469, 469, 469, 469, 470, 470, 470, 470, 470, 470, 470, 757, 975, 769, 1247, 470, 1027, 756, 785, 975, 876, 470, 470, 470, 470, 470, 470, 521, 819, 521, 521, 521, 521, 521, 521, 521, 785, 757, 876, 1244, 521, 876, 819, 972, 967, 785, 521, 521, 521, 521, 521, 521, 522, 522, 522, 522, 522, 522, 522, 522, 1243, 972, 967, 1242, 522, 967, 522, 1238, 819, 972, 522, 522, 522, 522, 522, 522, 738, 738, 738, 738, 738, 738, 738, 740, 740, 740, 740, 740, 740, 740, 771, 777, 522, 524, 524, 524, 524, 524, 524, 524, 524, 1030, 1124, 1237, 1042, 524, 1046, 1058, 771, 777, 1124, 524, 524, 524, 524, 524, 524, 528, 528, 528, 528, 528, 528, 528, 528, 771, 1135, 1030, 777, 528, 1042, 1114, 1046, 1058, 1135, 528, 528, 528, 528, 528, 528, 529, 529, 529, 529, 529, 529, 529, 529, 530, 530, 530, 530, 530, 530, 530, 1147, 1114, 1234, 1233, 530, 1167, 1179, 1208, 1147, 1232, 530, 530, 530, 530, 530, 530, 531, 531, 531, 531, 531, 531, 531, 531, 533, 533, 533, 533, 533, 533, 533, 1167, 1179, 1208, 1211, 533, 1228, 1226, 970, 974, 977, 533, 533, 533, 533, 533, 533, 534, 534, 534, 534, 534, 534, 534, 534, 534, 970, 974, 977, 534, 1211, 970, 974, 977, 820, 534, 534, 534, 534, 534, 534, 535, 535, 535, 535, 535, 535, 535, 820, 1159, 1225, 1214, 535, 1222, 976, 978, 1221, 1159, 535, 535, 535, 535, 535, 535, 539, 539, 539, 539, 539, 539, 539, 539, 976, 978, 820, 539, 978, 1214, 979, 981, 976, 539, 539, 539, 539, 539, 539, 541, 541, 541, 541, 541, 541, 541, 541, 541, 979, 981, 979, 541, 1218, 983, 981, 984, 1215, 541, 541, 541, 541, 541, 541, 542, 542, 542, 542, 542, 542, 542, 542, 983, 1212, 984, 542, 1209, 1205, 985, 989, 1076, 542, 542, 542, 542, 542, 542, 550, 550, 550, 550, 550, 550, 550, 550, 550, 985, 989, 1076, 550, 1181, 1079, 1082, 1083, 1180, 550, 550, 550, 550, 550, 550, 551, 551, 551, 551, 551, 551, 551, 551, 1079, 1082, 1083, 551, 1079, 1082, 1084, 1083, 1087, 551, 551, 551, 551, 551, 551, 560, 560, 560, 560, 560, 560, 560, 560, 560, 1084, 1177, 1087, 560, 1217, 1220, 1088, 1087, 1173, 560, 560, 560, 560, 560, 560, 562, 562, 562, 562, 562, 562, 562, 562, 562, 1088, 1172, 1088, 562, 1169, 562, 1217, 1220, 1164, 562, 562, 562, 562, 562, 562, 744, 744, 744, 744, 744, 744, 744, 750, 750, 750, 750, 750, 750, 750, 872, 778, 562, 613, 613, 613, 613, 613, 613, 613, 1245, 1163, 1259, 1273, 613, 1319, 1092, 1160, 872, 778, 613, 613, 613, 613, 613, 613, 615, 615, 615, 615, 615, 615, 615, 778, 1092, 872, 1245, 615, 1259, 1273, 1092, 1319, 1152, 615, 615, 615, 615, 615, 615, 616, 616, 616, 616, 616, 616, 616, 616, 618, 618, 618, 618, 618, 618, 618, 1291, 1151, 1148, 1382, 618, 1432, 882, 1090, 1291, 1093, 618, 618, 618, 618, 618, 618, 620, 620, 620, 620, 620, 620, 620, 620, 882, 1090, 1090, 1093, 620, 1382, 1093, 1432, 1441, 882, 620, 620, 620, 620, 620, 620, 621, 621, 621, 621, 621, 621, 621, 621, 622, 622, 622, 622, 622, 622, 622, 1347, 1354, 1140, 1441, 622, 1139, 1136, 1129, 1347, 1354, 622, 622, 622, 622, 622, 622, 623, 623, 623, 623, 623, 623, 623, 623, 626, 626, 626, 626, 626, 626, 626, 626, 626, 770, 884, 827, 626, 782, 626, 786, 1182, 1186, 626, 626, 626, 626, 626, 626, 1362, 827, 1128, 770, 884, 1125, 1120, 782, 1362, 786, 1182, 1186, 775, 884, 792, 770, 626, 629, 629, 629, 629, 629, 629, 629, 629, 629, 782, 827, 786, 629, 775, 629, 792, 1370, 1182, 629, 629, 629, 629, 629, 629, 1370, 775, 1119, 1116, 792, 799, 799, 799, 799, 799, 799, 799, 793, 828, 831, 1450, 629, 635, 635, 635, 635, 635, 635, 635, 635, 635, 1183, 828, 831, 635, 793, 635, 832, 842, 843, 635, 635, 635, 635, 635, 635, 1450, 793, 1378, 1183, 1459, 832, 842, 843, 1184, 1115, 1378, 1112, 828, 831, 846, 1111, 635, 640, 640, 640, 640, 640, 640, 640, 640, 640, 1184, 1183, 846, 640, 1459, 832, 842, 843, 1189, 640, 640, 640, 640, 640, 640, 642, 642, 642, 642, 642, 642, 642, 642, 642, 1184, 1108, 1189, 642, 846, 642, 1105, 1189, 847, 642, 642, 642, 642, 642, 642, 840, 840, 840, 840, 840, 840, 840, 847, 855, 855, 855, 855, 855, 855, 855, 1102, 642, 652, 652, 652, 652, 652, 652, 652, 652, 652, 1423, 1098, 1526, 652, 1553, 1557, 1185, 847, 1423, 652, 652, 652, 652, 652, 652, 654, 654, 654, 654, 654, 654, 654, 654, 654, 1185, 1071, 1185, 654, 1526, 654, 1553, 1557, 1067, 654, 654, 654, 654, 654, 654, 857, 857, 857, 857, 857, 857, 857, 861, 861, 861, 861, 861, 861, 861, 878, 870, 654, 665, 665, 665, 665, 665, 665, 665, 665, 665, 1472, 1060, 1059, 665, 1056, 1561, 878, 870, 1472, 665, 665, 665, 665, 665, 665, 666, 666, 666, 666, 666, 666, 666, 870, 878, 1052, 1051, 666, 887, 875, 877, 885, 1561, 666, 666, 666, 666, 666, 666, 669, 669, 669, 669, 669, 669, 669, 887, 875, 877, 885, 669, 966, 1078, 951, 963, 881, 669, 669, 669, 669, 669, 669, 875, 877, 1565, 887, 885, 951, 1532, 966, 1078, 952, 963, 881, 669, 704, 1532, 704, 704, 704, 704, 704, 704, 704, 881, 952, 966, 963, 704, 1078, 1565, 964, 1048, 951, 704, 704, 704, 704, 704, 704, 910, 910, 910, 910, 910, 910, 910, 955, 956, 964, 968, 952, 704, 705, 705, 705, 705, 705, 705, 705, 705, 955, 956, 1044, 964, 705, 1190, 1298, 968, 968, 1043, 705, 705, 705, 705, 705, 705, 915, 915, 915, 915, 915, 915, 915, 1190, 1298, 968, 955, 956, 705, 706, 706, 706, 706, 706, 706, 706, 919, 919, 919, 919, 919, 919, 919, 924, 924, 924, 924, 924, 924, 924, 926, 926, 926, 926, 926, 926, 926, 930, 930, 930, 930, 930, 930, 930, 706, 707, 707, 707, 707, 707, 707, 707, 1040, 1036, 1035, 1032, 707, 1029, 1569, 1589, 1598, 1028, 707, 707, 707, 707, 707, 707, 709, 709, 709, 709, 709, 709, 709, 709, 711, 711, 711, 711, 711, 711, 711, 711, 1569, 1589, 1598, 1025, 711, 1021, 1020, 1017, 1016, 1013, 711, 711, 711, 711, 711, 711, 712, 712, 712, 712, 712, 712, 712, 712, 714, 714, 714, 714, 714, 714, 714, 1009, 1005, 1004, 1003, 714, 1000, 997, 1201, 1202, 1187, 714, 714, 714, 714, 714, 714, 715, 715, 715, 715, 715, 715, 715, 715, 715, 1201, 1202, 1187, 715, 1201, 994, 1202, 1299, 1010, 715, 715, 715, 715, 715, 715, 716, 716, 716, 716, 716, 716, 716, 1010, 1187, 991, 1299, 716, 990, 962, 1300, 961, 1301, 716, 716, 716, 716, 716, 716, 718, 718, 718, 718, 718, 718, 718, 718, 718, 1300, 1010, 1301, 718, 958, 1192, 1302, 1310, 1011, 718, 718, 718, 718, 718, 718, 719, 719, 719, 719, 719, 719, 719, 1011, 1192, 1302, 1310, 719, 954, 1307, 1302, 1310, 1192, 719, 719, 719, 719, 719, 719, 723, 723, 723, 723, 723, 723, 723, 723, 1307, 953, 1011, 723, 950, 945, 941, 1314, 1315, 723, 723, 723, 723, 723, 723, 725, 725, 725, 725, 725, 725, 725, 725, 725, 1307, 1314, 1315, 725, 933, 929, 1396, 1397, 922, 725, 725, 725, 725, 725, 725, 726, 726, 726, 726, 726, 726, 726, 726, 1315, 1396, 1397, 726, 1396, 1397, 1398, 1399, 1401, 726, 726, 726, 726, 726, 726, 734, 734, 734, 734, 734, 734, 734, 734, 734, 1398, 1399, 1401, 734, 918, 1399, 913, 1402, 908, 734, 734, 734, 734, 734, 734, 735, 735, 735, 735, 735, 735, 735, 735, 907, 1398, 1402, 735, 906, 903, 1402, 1403, 1404, 735, 735, 735, 735, 735, 735, 745, 745, 745, 745, 745, 745, 745, 745, 745, 900, 1403, 1404, 745, 896, 1403, 1406, 1409, 1404, 745, 745, 745, 745, 745, 745, 746, 746, 746, 746, 746, 746, 746, 746, 864, 1406, 1409, 746, 860, 1406, 1477, 1409, 1478, 746, 746, 746, 746, 746, 746, 758, 758, 758, 758, 758, 758, 758, 758, 758, 1477, 853, 1478, 758, 852, 849, 1488, 845, 1477, 758, 758, 758, 758, 758, 758, 760, 760, 760, 760, 760, 760, 760, 760, 760, 1488, 1488, 844, 760, 841, 760, 838, 837, 834, 760, 760, 760, 760, 760, 760, 936, 936, 936, 936, 936, 936, 936, 938, 938, 938, 938, 938, 938, 938, 1018, 969, 760, 794, 1019, 794, 794, 794, 794, 794, 794, 794, 830, 829, 1018, 826, 794, 825, 1019, 969, 1081, 794, 794, 794, 794, 794, 794, 794, 796, 796, 796, 796, 796, 796, 796, 969, 822, 818, 1081, 796, 1018, 1534, 1491, 1536, 1019, 796, 796, 796, 796, 796, 796, 798, 798, 798, 798, 798, 798, 798, 1081, 1534, 1491, 1536, 798, 1491, 1303, 1537, 1544, 1548, 798, 798, 798, 798, 798, 798, 800, 800, 800, 800, 800, 800, 800, 800, 1303, 1537, 1544, 1548, 800, 815, 1537, 1544, 814, 1303, 800, 800, 800, 800, 800, 800, 801, 801, 801, 801, 801, 801, 801, 801, 804, 804, 804, 804, 804, 804, 804, 804, 804, 813, 812, 809, 804, 806, 804, 803, 802, 763, 804, 804, 804, 804, 804, 804, 942, 942, 942, 942, 942, 942, 942, 949, 949, 949, 949, 949, 949, 949, 965, 971, 804, 807, 807, 807, 807, 807, 807, 807, 807, 807, 1073, 1074, 1022, 807, 762, 807, 965, 971, 1479, 807, 807, 807, 807, 807, 807, 759, 1022, 755, 1073, 1074, 754, 965, 965, 982, 971, 980, 1479, 1077, 751, 1073, 1074, 807, 810, 810, 810, 810, 810, 810, 810, 810, 810, 982, 1022, 980, 810, 1077, 810, 1479, 1023, 747, 810, 810, 810, 810, 810, 810, 980, 1033, 982, 1077, 743, 736, 1023, 1031, 1031, 1031, 1031, 1031, 1031, 1031, 1034, 1033, 810, 816, 816, 816, 816, 816, 816, 816, 816, 816, 1576, 1075, 1034, 816, 732, 816, 1023, 1037, 1038, 816, 816, 816, 816, 816, 816, 1033, 727, 722, 1576, 1075, 721, 1037, 1038, 720, 1541, 717, 713, 1049, 1034, 1050, 1075, 816, 821, 821, 821, 821, 821, 821, 821, 821, 821, 1049, 1541, 1050, 821, 703, 702, 1037, 1038, 698, 821, 821, 821, 821, 821, 821, 823, 823, 823, 823, 823, 823, 823, 823, 823, 1541, 697, 1049, 823, 1050, 823, 1085, 1196, 1053, 823, 823, 823, 823, 823, 823, 1047, 1047, 1047, 1047, 1047, 1047, 1047, 1053, 695, 1085, 1196, 694, 1054, 1410, 1197, 677, 823, 833, 833, 833, 833, 833, 833, 833, 833, 833, 1054, 1196, 1085, 833, 667, 1410, 1197, 1053, 663, 833, 833, 833, 833, 833, 833, 835, 835, 835, 835, 835, 835, 835, 835, 835, 1197, 1410, 1054, 835, 657, 835, 656, 653, 649, 835, 835, 835, 835, 835, 835, 1062, 1062, 1062, 1062, 1062, 1062, 1062, 1064, 1064, 1064, 1064, 1064, 1064, 1064, 1170, 1094, 835, 848, 848, 848, 848, 848, 848, 848, 848, 848, 648, 645, 1170, 848, 644, 641, 637, 1094, 1094, 848, 848, 848, 848, 848, 848, 850, 850, 850, 850, 850, 850, 850, 850, 850, 1094, 1094, 634, 850, 1170, 850, 1587, 1486, 1086, 850, 850, 850, 850, 850, 850, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 633, 632, 1587, 1486, 1086, 1200, 1171, 1174, 631, 850, 862, 862, 862, 862, 862, 862, 862, 862, 862, 1086, 1171, 1174, 862, 1200, 1486, 1612, 1080, 1175, 862, 862, 862, 862, 862, 862, 863, 863, 863, 863, 863, 863, 863, 1175, 1200, 1612, 1080, 863, 1171, 1174, 1578, 628, 1579, 863, 863, 863, 863, 863, 863, 889, 1080, 889, 889, 889, 889, 889, 889, 889, 1578, 1175, 1579, 1578, 889, 1579, 1620, 1580, 1628, 889, 889, 889, 889, 889, 889, 889, 890, 890, 890, 890, 890, 890, 890, 625, 1620, 1580, 1628, 890, 1580, 1411, 1089, 1585, 1091, 890, 890, 890, 890, 890, 890, 891, 891, 891, 891, 891, 891, 891, 891, 1411, 1089, 1585, 1091, 891, 1585, 891, 624, 617, 1411, 891, 891, 891, 891, 891, 891, 1089, 1091, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 891, 893, 893, 893, 893, 893, 893, 893, 614, 612, 608, 602, 893, 601, 1476, 1605, 1607, 1608, 893, 893, 893, 893, 893, 893, 894, 894, 894, 894, 894, 894, 894, 894, 1476, 1605, 1607, 1608, 894, 1605, 600, 1607, 1608, 1476, 894, 894, 894, 894, 894, 894, 895, 895, 895, 895, 895, 895, 895, 895, 897, 897, 897, 897, 897, 897, 897, 599, 595, 594, 592, 897, 591, 590, 1633, 1634, 1622, 897, 897, 897, 897, 897, 897, 898, 898, 898, 898, 898, 898, 898, 898, 898, 1633, 1634, 1622, 898, 589, 585, 1634, 1635, 1229, 898, 898, 898, 898, 898, 898, 899, 899, 899, 899, 899, 899, 899, 1229, 1622, 584, 1635, 899, 583, 582, 1636, 1635, 1623, 899, 899, 899, 899, 899, 899, 901, 901, 901, 901, 901, 901, 901, 901, 901, 1636, 1229, 1623, 901, 581, 1636, 1638, 1640, 1230, 901, 901, 901, 901, 901, 901, 902, 902, 902, 902, 902, 902, 902, 1230, 1623, 1638, 1640, 902, 580, 579, 1638, 578, 1624, 902, 902, 902, 902, 902, 902, 904, 904, 904, 904, 904, 904, 904, 904, 904, 577, 1230, 1624, 904, 576, 575, 1645, 1647, 1235, 904, 904, 904, 904, 904, 904, 905, 905, 905, 905, 905, 905, 905, 1235, 1624, 1645, 1647, 905, 1645, 1649, 1647, 574, 573, 905, 905, 905, 905, 905, 905, 909, 909, 909, 909, 909, 909, 909, 909, 1649, 572, 1235, 909, 569, 1649, 1651, 1652, 1657, 909, 909, 909, 909, 909, 909, 911, 911, 911, 911, 911, 911, 911, 911, 911, 1651, 1652, 1657, 911, 568, 1651, 1653, 567, 565, 911, 911, 911, 911, 911, 911, 912, 912, 912, 912, 912, 912, 912, 912, 1657, 1653, 1652, 912, 564, 561, 1660, 556, 1664, 912, 912, 912, 912, 912, 912, 920, 920, 920, 920, 920, 920, 920, 920, 920, 1660, 1653, 1664, 920, 552, 1660, 1668, 1669, 548, 920, 920, 920, 920, 920, 920, 921, 921, 921, 921, 921, 921, 921, 921, 543, 1668, 1669, 921, 538, 537, 1668, 1669, 1674, 921, 921, 921, 921, 921, 921, 931, 931, 931, 931, 931, 931, 931, 931, 931, 536, 532, 1674, 931, 526, 1675, 1677, 1674, 525, 931, 931, 931, 931, 931, 931, 932, 932, 932, 932, 932, 932, 932, 932, 1675, 1677, 520, 932, 1675, 519, 1679, 1682, 1683, 932, 932, 932, 932, 932, 932, 943, 943, 943, 943, 943, 943, 943, 943, 943, 1679, 1682, 1683, 943, 1682, 1679, 1684, 1689, 518, 943, 943, 943, 943, 943, 943, 944, 944, 944, 944, 944, 944, 944, 944, 517, 1684, 1689, 944, 516, 515, 1694, 1689, 1698, 944, 944, 944, 944, 944, 944, 957, 957, 957, 957, 957, 957, 957, 957, 957, 1694, 1684, 1698, 957, 514, 513, 1700, 1698, 1703, 957, 957, 957, 957, 957, 957, 959, 959, 959, 959, 959, 959, 959, 959, 959, 1700, 512, 1703, 959, 511, 959, 510, 509, 508, 959, 959, 959, 959, 959, 959, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1710, 1712, 959, 986, 986, 986, 986, 986, 986, 986, 986, 986, 506, 503, 502, 501, 986, 500, 1710, 1712, 499, 986, 986, 986, 986, 986, 986, 986, 987, 987, 987, 987, 987, 987, 987, 987, 988, 988, 988, 988, 988, 988, 988, 988, 988, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1701, 1714, 988, 992, 992, 992, 992, 992, 992, 992, 992, 992, 498, 497, 495, 992, 494, 992, 1701, 1714, 493, 992, 992, 992, 992, 992, 992, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1706, 1701, 992, 995, 995, 995, 995, 995, 995, 995, 995, 995, 492, 491, 489, 995, 487, 995, 1706, 485, 484, 995, 995, 995, 995, 995, 995, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1719, 1706, 995, 998, 998, 998, 998, 998, 998, 998, 998, 998, 483, 482, 481, 998, 479, 998, 1719, 478, 476, 998, 998, 998, 998, 998, 998, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1721, 1724, 998, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 1001, 475, 474, 471, 1001, 467, 1001, 1721, 1724, 463, 1001, 1001, 1001, 1001, 1001, 1001, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 462, 461, 1001, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 1006, 458, 454, 453, 1006, 450, 449, 448, 1191, 1194, 1006, 1006, 1006, 1006, 1006, 1006, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1007, 1188, 1191, 1194, 1007, 1543, 1007, 1198, 1236, 1308, 1007, 1007, 1007, 1007, 1007, 1007, 1194, 1191, 447, 1188, 444, 443, 1236, 1543, 434, 1198, 1709, 1308, 431, 429, 1188, 428, 1007, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1012, 1198, 1543, 1709, 1012, 1308, 1709, 1236, 1195, 1199, 1012, 1012, 1012, 1012, 1012, 1012, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1014, 1193, 1195, 1199, 1014, 427, 1014, 426, 425, 1309, 1014, 1014, 1014, 1014, 1014, 1014, 1195, 1199, 424, 1193, 1223, 1223, 1223, 1223, 1223, 1223, 1223, 1309, 1239, 1311, 1193, 423, 1014, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1024, 1239, 422, 1309, 1024, 421, 1311, 420, 1203, 419, 1024, 1024, 1024, 1024, 1024, 1024, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1311, 1203, 1239, 1026, 418, 1026, 1240, 417, 416, 1026, 1026, 1026, 1026, 1026, 1026, 1203, 414, 412, 411, 409, 1240, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 408, 1248, 1313, 1026, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 1039, 405, 404, 1248, 1039, 402, 1240, 400, 1313, 399, 1039, 1039, 1039, 1039, 1039, 1039, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1041, 1313, 1249, 1252, 1041, 1248, 1041, 1253, 398, 393, 1041, 1041, 1041, 1041, 1041, 1041, 1249, 1252, 392, 391, 389, 1253, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 388, 1262, 1395, 1041, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1249, 1252, 1262, 1055, 387, 1253, 386, 1395, 384, 1055, 1055, 1055, 1055, 1055, 1055, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1395, 1263, 1266, 1057, 1262, 1057, 1267, 379, 378, 1057, 1057, 1057, 1057, 1057, 1057, 1263, 1266, 377, 374, 370, 1267, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 368, 1276, 1489, 1057, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1263, 1266, 1276, 1069, 363, 1267, 362, 1489, 1277, 1069, 1069, 1069, 1069, 1069, 1069, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1277, 359, 1489, 354, 1070, 353, 1276, 1707, 345, 1713, 1070, 1070, 1070, 1070, 1070, 1070, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1707, 1277, 1713, 343, 1095, 1707, 342, 1713, 337, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 335, 1725, 1726, 1280, 1281, 1727, 1306, 333, 1337, 1097, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1280, 1281, 1725, 1726, 1099, 1337, 1727, 1306, 1306, 332, 1099, 1099, 1099, 1099, 1099, 1099, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1306, 1280, 1281, 1100, 331, 330, 1337, 329, 1338, 1100, 1100, 1100, 1100, 1100, 1100, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1338, 328, 327, 325, 1101, 324, 323, 318, 315, 1687, 1101, 1101, 1101, 1101, 1101, 1101, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 314, 1338, 1687, 1103, 313, 310, 303, 302, 1385, 1103, 1103, 1103, 1103, 1103, 1103, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1385, 1687, 300, 299, 1104, 298, 296, 294, 293, 1718, 1104, 1104, 1104, 1104, 1104, 1104, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 292, 1385, 1718, 1106, 290, 286, 285, 283, 1386, 1106, 1106, 1106, 1106, 1106, 1106, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1386, 1718, 280, 276, 1107, 275, 272, 271, 269, 264, 1107, 1107, 1107, 1107, 1107, 1107, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 261, 1386, 259, 1109, 258, 256, 253, 249, 1389, 1109, 1109, 1109, 1109, 1109, 1109, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1389, 245, 243, 241, 1110, 240, 238, 237, 236, 235, 1110, 1110, 1110, 1110, 1110, 1110, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 234, 1389, 233, 1113, 232, 1113, 230, 228, 226, 1113, 1113, 1113, 1113, 1113, 1113, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1312, 225, 1113, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 223, 221, 220, 1118, 218, 215, 1312, 1312, 214, 1118, 1118, 1118, 1118, 1118, 1118, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1312, 213, 211, 1127, 209, 208, 205, 204, 202, 1127, 1127, 1127, 1127, 1127, 1127, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 201, 200, 199, 1138, 198, 197, 196, 195, 194, 1138, 1138, 1138, 1138, 1138, 1138, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 193, 192, 191, 1150, 190, 189, 188, 187, 186, 1150, 1150, 1150, 1150, 1150, 1150, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 185, 183, 182, 1162, 179, 178, 177, 176, 175, 1162, 1162, 1162, 1162, 1162, 1162, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 174, 173, 172, 1176, 170, 167, 166, 165, 164, 1176, 1176, 1176, 1176, 1176, 1176, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 161, 159, 150, 1178, 149, 1178, 1475, 1535, 1390, 1178, 1178, 1178, 1178, 1178, 1178, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1390, 1650, 1475, 1535, 148, 1546, 1304, 1316, 147, 1178, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1650, 146, 1475, 1535, 1546, 1304, 1316, 1390, 1427, 1204, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1304, 1316, 1650, 1206, 1427, 1546, 145, 144, 1400, 1206, 1206, 1206, 1206, 1206, 1206, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1305, 1317, 1400, 1207, 142, 1207, 1427, 140, 139, 1207, 1207, 1207, 1207, 1207, 1207, 137, 1400, 135, 1305, 1317, 1345, 1345, 1345, 1345, 1345, 1345, 1345, 133, 132, 1305, 1317, 1207, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 131, 130, 128, 1210, 127, 1210, 126, 125, 124, 1210, 1210, 1210, 1210, 1210, 1210, 1350, 1350, 1350, 1350, 1350, 1350, 1350, 1352, 1352, 1352, 1352, 1352, 1352, 1352, 123, 121, 1210, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 119, 118, 117, 1213, 116, 1213, 115, 114, 113, 1213, 1213, 1213, 1213, 1213, 1213, 1358, 1358, 1358, 1358, 1358, 1358, 1358, 1360, 1360, 1360, 1360, 1360, 1360, 1360, 112, 111, 1213, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 109, 108, 101, 1216, 100, 1216, 99, 97, 96, 1216, 1216, 1216, 1216, 1216, 1216, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 93, 92, 1216, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 91, 90, 89, 1219, 88, 1219, 87, 86, 85, 1219, 1219, 1219, 1219, 1219, 1219, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1428, 1539, 1219, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 1224, 84, 82, 1428, 1224, 81, 80, 79, 1539, 78, 1224, 1224, 1224, 1224, 1224, 1224, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 1231, 77, 1539, 76, 1231, 1428, 75, 74, 73, 72, 1231, 1231, 1231, 1231, 1231, 1231, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 71, 70, 69, 1241, 67, 66, 65, 51, 43, 1241, 1241, 1241, 1241, 1241, 1241, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 42, 40, 18, 1254, 11, 8, 3, 0, 0, 1254, 1254, 1254, 1254, 1254, 1254, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 0, 0, 0, 1268, 0, 0, 0, 0, 0, 1268, 1268, 1268, 1268, 1268, 1268, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 0, 0, 0, 1282, 0, 0, 0, 0, 0, 1282, 1282, 1282, 1282, 1282, 1282, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 0, 0, 0, 1294, 0, 0, 0, 0, 0, 1294, 1294, 1294, 1294, 1294, 1294, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 0, 0, 0, 1318, 0, 1318, 0, 0, 0, 1318, 1318, 1318, 1318, 1318, 1318, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1435, 1540, 1318, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 0, 0, 1435, 1322, 0, 0, 0, 1540, 0, 1322, 1322, 1322, 1322, 1322, 1322, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 0, 1540, 0, 1325, 1435, 0, 0, 0, 0, 1325, 1325, 1325, 1325, 1325, 1325, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 0, 0, 0, 1328, 0, 0, 0, 0, 0, 1328, 1328, 1328, 1328, 1328, 1328, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 0, 0, 0, 1331, 0, 0, 0, 0, 0, 1331, 1331, 1331, 1331, 1331, 1331, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 0, 0, 0, 1334, 0, 0, 0, 0, 0, 1334, 1334, 1334, 1334, 1334, 1334, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 1339, 0, 0, 0, 1339, 0, 0, 0, 1407, 0, 1339, 1339, 1339, 1339, 1339, 1339, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1405, 1407, 1408, 1391, 0, 1436, 0, 0, 0, 1391, 1391, 1391, 1391, 1391, 1391, 1407, 1490, 0, 1405, 1436, 1408, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 0, 1405, 0, 0, 1408, 1444, 1490, 1405, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1436, 1490, 1444, 1412, 0, 0, 0, 0, 1445, 1412, 1412, 1412, 1412, 1412, 1412, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1445, 1453, 1454, 0, 0, 0, 1444, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1462, 1453, 1454, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1463, 0, 1445, 0, 1462, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 0, 1480, 1463, 1485, 1481, 1453, 1454, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1482, 1483, 1484, 0, 1462, 1480, 1487, 1485, 1481, 1500, 0, 1501, 1542, 1547, 1463, 1603, 1480, 1481, 1482, 1483, 1484, 1485, 0, 1500, 1487, 1501, 0, 1482, 1483, 1484, 1542, 1547, 0, 1603, 0, 1487, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 0, 0, 0, 0, 1603, 1542, 1500, 1547, 1501, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1529, 1530, 1538, 1545, 1549, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 0, 0, 1529, 1530, 0, 0, 0, 0, 1538, 1545, 1549, 0, 0, 0, 0, 0, 0, 1538, 1545, 1549, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 0, 1529, 1530, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1577, 1581, 0, 1582, 1583, 1586, 1588, 1584, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1601, 1609, 0, 1577, 1581, 1581, 1582, 1583, 1586, 1588, 1584, 0, 0, 0, 0, 0, 0, 1586, 1601, 1609, 1577, 1602, 1581, 1604, 1606, 1582, 1583, 1584, 1588, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1610, 1601, 1609, 1602, 1611, 1604, 1606, 1621, 1625, 0, 1626, 1627, 1602, 1629, 1630, 1637, 1639, 0, 1610, 1604, 1606, 1641, 1611, 0, 0, 1621, 1625, 1610, 1626, 1627, 1642, 1629, 1630, 1637, 1639, 1639, 1611, 1625, 0, 1641, 1643, 1626, 1637, 1644, 1621, 1630, 1627, 0, 1642, 1646, 1629, 1648, 1639, 1639, 1654, 1641, 1641, 0, 1643, 1655, 0, 1644, 1665, 1656, 1658, 1642, 0, 1646, 0, 1648, 1659, 1661, 1654, 0, 1662, 1643, 1663, 1655, 1644, 0, 1665, 1656, 1658, 1648, 1646, 1656, 1655, 0, 1659, 1661, 1666, 1654, 1662, 1658, 1663, 1663, 1667, 1656, 1656, 1665, 1670, 1671, 1672, 1673, 0, 1659, 1676, 1661, 1666, 1662, 1678, 1680, 1663, 0, 1667, 1681, 0, 1685, 1670, 1671, 1672, 1673, 1666, 0, 1676, 1686, 0, 1670, 1678, 1680, 1690, 1671, 0, 1681, 1667, 1685, 1673, 1672, 1676, 1688, 0, 1678, 1691, 1686, 1680, 1692, 1693, 0, 1690, 1685, 1681, 1696, 1695, 1697, 1699, 0, 0, 1688, 1686, 1686, 1691, 1702, 0, 1692, 1693, 1690, 1704, 1708, 1688, 1696, 1695, 1697, 1699, 1693, 1691, 1705, 1711, 1716, 0, 1702, 1696, 1699, 1692, 1695, 1704, 1708, 1715, 1720, 1717, 1722, 0, 1697, 0, 1705, 1711, 1716, 1702, 0, 0, 0, 0, 0, 1708, 1704, 1715, 1720, 1717, 1722, 0, 0, 0, 1705, 0, 1711, 1716, 1717, 1723, 0, 0, 1723, 1723, 0, 1715, 0, 1720, 0, 1722, 0, 0, 0, 0, 0, 0, 0, 1723, 1729, 0, 0, 0, 0, 1729, 1729, 1729, 1730, 0, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1731, 0, 1731, 1732, 1732, 1732, 1733, 1733, 1733, 1734, 1734, 1734, 1735, 1735, 1735, 1736, 1736, 1736, 1737, 1737, 1737, 1738, 1738, 1738, 1739, 1739, 1739, 1740, 1740, 1740, 1741, 0, 1741, 1742, 1742, 1742, 1743, 1743, 1743, 1744, 1744, 1744, 1745, 1745, 1745, 1746, 0, 1746, 1747, 1747, 1747, 1748, 1748, 0, 0, 1748, 1749, 1749, 1749, 1750, 1750, 1750, 1751, 1751, 1751, 1752, 1752, 1752, 1753, 1753, 1753, 1754, 1754, 1754, 1755, 1755, 1755, 1756, 1756, 1756, 1757, 1757, 1757, 1758, 1758, 0, 0, 1758, 1759, 1759, 1759, 1760, 1760, 1760, 1761, 0, 1761, 1762, 1762, 1762, 1763, 1763, 1763, 1764, 0, 1764, 1765, 1765, 1765, 1766, 1766, 1766, 1767, 1767, 1767, 1768, 1768, 1768, 1769, 1769, 1769, 1770, 0, 1770, 1771, 0, 1771, 1772, 1772, 1772, 1773, 1773, 1773, 1774, 0, 1774, 1775, 1775, 0, 0, 1775, 1776, 1776, 0, 0, 1776, 1777, 1777, 1777, 1778, 1778, 1778, 1779, 1779, 0, 1779, 1780, 1780, 1780, 1781, 1781, 1781, 1782, 1782, 1782, 1783, 1783, 1783, 1784, 1784, 1784, 1785, 1785, 1785, 1786, 1786, 1786, 1787, 1787, 0, 0, 1787, 1788, 1788, 1788, 1789, 1789, 1789, 1790, 1790, 0, 1790, 1791, 1791, 0, 0, 1791, 1792, 1792, 0, 1792, 1793, 1793, 1794, 1794, 0, 0, 1794, 1795, 1795, 1795, 1796, 1796, 1796, 1797, 1797, 0, 1797, 1798, 0, 1798, 1799, 0, 1799, 1800, 1800, 1800, 1801, 1801, 1801, 1802, 0, 1802, 1803, 1803, 1803, 1804, 1804, 1804, 1805, 1805, 1805, 1806, 1806, 1806, 1807, 1807, 1807, 1808, 1808, 1808, 1809, 0, 1809, 1810, 0, 1810, 1811, 1811, 1811, 1812, 1812, 1812, 1813, 0, 1813, 1814, 0, 1814, 1815, 0, 1815, 1816, 1816, 1816, 1817, 1817, 1817, 1818, 0, 1818, 1819, 0, 0, 1819, 1820, 1820, 0, 1820, 1821, 1821, 0, 0, 1821, 1822, 1822, 0, 1822, 1823, 1823, 1824, 1824, 0, 0, 1824, 1825, 1825, 1825, 1826, 1826, 1826, 1827, 1827, 0, 1827, 1828, 1828, 1828, 0, 1828, 1828, 1829, 1829, 1829, 1830, 1830, 1830, 1831, 1831, 1831, 1832, 1832, 1832, 1833, 1833, 1833, 1834, 1834, 1834, 1835, 1835, 1835, 1836, 1836, 1836, 1837, 1837, 0, 0, 1837, 1838, 1838, 1838, 1839, 1839, 1839, 1840, 1840, 0, 1840, 1841, 1841, 0, 0, 1841, 1842, 1842, 0, 1842, 1843, 1843, 1844, 1844, 0, 0, 1844, 1845, 1845, 1845, 1846, 1846, 1846, 1847, 1847, 0, 1847, 1848, 0, 0, 1848, 1849, 1849, 0, 1849, 1850, 1850, 0, 0, 1850, 1851, 1851, 0, 1851, 1852, 1852, 1853, 1853, 0, 0, 1853, 1854, 1854, 1854, 1855, 1855, 1855, 1856, 1856, 0, 1856, 1857, 0, 1857, 1858, 0, 1858, 1859, 0, 1859, 1860, 1860, 1860, 1861, 1861, 1861, 1862, 0, 1862, 1863, 1863, 1863, 0, 1863, 1863, 1864, 1864, 1864, 1865, 1865, 1865, 1866, 1866, 1866, 1867, 1867, 1867, 1868, 1868, 1868, 1869, 1869, 1869, 1870, 1870, 1870, 1871, 0, 1871, 1872, 0, 1872, 1873, 1873, 1873, 1874, 1874, 1874, 1875, 0, 1875, 1876, 0, 1876, 1877, 0, 1877, 1878, 1878, 1878, 1879, 1879, 1879, 1880, 0, 1880, 1881, 0, 1881, 1882, 0, 1882, 1883, 0, 1883, 1884, 1884, 1884, 1885, 1885, 1885, 1886, 0, 1886, 1887, 0, 1887, 1888, 0, 0, 1888, 1889, 1889, 0, 1889, 1890, 1890, 0, 0, 1890, 1891, 1891, 0, 1891, 1892, 1892, 1893, 1893, 0, 0, 1893, 1894, 1894, 1894, 1895, 1895, 1895, 1896, 1896, 0, 1896, 1897, 1897, 1897, 0, 1897, 1897, 1898, 1898, 1898, 1899, 1899, 1899, 1900, 1900, 1900, 1901, 1901, 1901, 1902, 1902, 1902, 1903, 1903, 1903, 1904, 1904, 1904, 1905, 1905, 1905, 1906, 1906, 0, 0, 1906, 1907, 1907, 1907, 1908, 1908, 1908, 1909, 1909, 0, 1909, 1910, 1910, 0, 0, 1910, 1911, 1911, 0, 1911, 1912, 1912, 1913, 1913, 0, 0, 1913, 1914, 1914, 1914, 1915, 1915, 1915, 1916, 1916, 0, 1916, 1917, 0, 0, 1917, 1918, 1918, 0, 1918, 1919, 1919, 0, 0, 1919, 1920, 1920, 0, 1920, 1921, 1921, 1922, 1922, 0, 0, 1922, 1923, 1923, 1923, 1924, 1924, 1924, 1925, 1925, 0, 1925, 1926, 0, 1926, 1927, 0, 0, 1927, 1928, 1928, 0, 1928, 1929, 1929, 0, 0, 1929, 1930, 1930, 0, 1930, 1931, 1931, 1932, 1932, 0, 0, 1932, 1933, 1933, 1933, 1934, 1934, 1934, 1935, 1935, 0, 1935, 1936, 0, 1936, 1937, 0, 1937, 1938, 0, 1938, 1939, 1939, 1939, 1940, 1940, 1940, 1941, 0, 1941, 1942, 1942, 1942, 0, 1942, 1942, 1943, 1943, 1943, 1944, 1944, 1944, 1945, 1945, 1945, 1946, 1946, 1946, 1947, 1947, 1947, 1948, 1948, 1948, 1949, 1949, 1949, 1950, 1950, 1950, 1951, 1951, 1951, 1952, 1952, 1952, 1953, 0, 1953, 1954, 0, 1954, 1955, 1955, 1955, 1956, 1956, 1956, 1957, 1957, 1957, 1958, 0, 1958, 1959, 0, 1959, 1960, 0, 1960, 1961, 1961, 1961, 1962, 1962, 1962, 1963, 1963, 1963, 1964, 0, 1964, 1965, 0, 1965, 1966, 0, 1966, 1967, 0, 1967, 1968, 1968, 1968, 1969, 1969, 1969, 1970, 1970, 1970, 1971, 0, 1971, 1972, 0, 1972, 1973, 0, 1973, 1974, 0, 1974, 1975, 1975, 1975, 1976, 1976, 1976, 1977, 1977, 1977, 1978, 0, 1978, 1979, 0, 1979, 1980, 0, 0, 1980, 1981, 1981, 0, 1981, 1982, 1982, 0, 0, 1982, 1983, 1983, 0, 1983, 1984, 1984, 1985, 1985, 0, 0, 1985, 1986, 1986, 1986, 1987, 1987, 1987, 1988, 1988, 0, 1988, 1989, 1989, 1989, 0, 1989, 1989, 1990, 1990, 1990, 1991, 1991, 1991, 1992, 1992, 1992, 1993, 1993, 1993, 1994, 1994, 1994, 1995, 1995, 1995, 1996, 1996, 1996, 1997, 1997, 1997, 1998, 0, 1998, 1999, 1999, 1999, 2000, 2000, 0, 0, 2000, 2001, 2001, 2001, 2002, 2002, 2002, 2003, 2003, 0, 2003, 2004, 2004, 0, 0, 2004, 2005, 2005, 0, 2005, 2006, 2006, 2007, 2007, 0, 0, 2007, 2008, 2008, 2008, 2009, 2009, 2009, 2010, 2010, 0, 2010, 2011, 0, 0, 2011, 2012, 2012, 0, 2012, 2013, 2013, 0, 0, 2013, 2014, 2014, 0, 2014, 2015, 2015, 2016, 2016, 0, 0, 2016, 2017, 2017, 2017, 2018, 2018, 2018, 2019, 2019, 0, 2019, 2020, 0, 2020, 2021, 0, 0, 2021, 2022, 2022, 0, 2022, 2023, 2023, 0, 0, 2023, 2024, 2024, 0, 2024, 2025, 2025, 2026, 2026, 0, 0, 2026, 2027, 2027, 2027, 2028, 2028, 2028, 2029, 2029, 0, 2029, 2030, 0, 2030, 2031, 0, 0, 2031, 2032, 2032, 0, 2032, 2033, 2033, 0, 0, 2033, 2034, 2034, 0, 2034, 2035, 2035, 2036, 2036, 0, 0, 2036, 2037, 2037, 2037, 2038, 2038, 2038, 2039, 2039, 0, 2039, 2040, 0, 2040, 2041, 0, 2041, 2042, 0, 2042, 2043, 2043, 2043, 2044, 0, 2044, 2045, 2045, 2045, 2046, 0, 2046, 2047, 2047, 2047, 0, 2047, 2047, 2048, 0, 2048, 2049, 2049, 2049, 2050, 0, 2050, 2051, 2051, 2051, 2052, 0, 2052, 2053, 2053, 2053, 2054, 0, 2054, 2055, 2055, 2055, 2056, 0, 2056, 2057, 2057, 2057, 2058, 0, 2058, 2059, 2059, 2059, 2060, 2060, 0, 0, 2060, 2061, 2061, 2061, 2062, 2062, 2062, 2063, 2063, 2063, 2064, 2064, 0, 2064, 2065, 2065, 2065, 2066, 0, 2066, 2067, 2067, 2067, 2068, 2068, 2068, 2069, 0, 2069, 2070, 0, 2070, 2071, 2071, 2071, 2072, 2072, 2072, 2073, 0, 2073, 2074, 0, 2074, 2075, 0, 2075, 2076, 2076, 2076, 2077, 2077, 2077, 2078, 0, 2078, 2079, 0, 2079, 2080, 0, 2080, 2081, 2081, 2081, 2082, 2082, 2082, 2083, 0, 2083, 2084, 0, 2084, 2085, 0, 2085, 2086, 2086, 2086, 2087, 2087, 2087, 2088, 0, 2088, 2089, 0, 0, 2089, 2090, 2090, 0, 2090, 2091, 2091, 0, 0, 2091, 2092, 2092, 0, 2092, 2093, 2093, 2094, 2094, 0, 0, 2094, 2095, 2095, 2095, 2096, 0, 2096, 2097, 2097, 0, 2097, 2098, 2098, 2098, 0, 2098, 2098, 2099, 2099, 2099, 2100, 2100, 2100, 2101, 0, 2101, 2102, 0, 2102, 2103, 0, 2103, 2104, 0, 2104, 2105, 0, 2105, 2106, 0, 2106, 2107, 0, 2107, 2108, 2108, 2108, 2109, 2109, 2109, 2110, 0, 2110, 2111, 2111, 0, 0, 2111, 2112, 2112, 0, 2112, 2113, 2113, 2114, 0, 2114, 2115, 0, 0, 2115, 2116, 2116, 0, 2116, 2117, 2117, 0, 0, 2117, 2118, 2118, 0, 2118, 2119, 2119, 2120, 0, 2120, 2121, 0, 2121, 2122, 0, 0, 2122, 2123, 2123, 0, 2123, 2124, 2124, 0, 0, 2124, 2125, 2125, 0, 2125, 2126, 2126, 2127, 0, 2127, 2128, 0, 2128, 2129, 0, 0, 2129, 2130, 2130, 0, 2130, 2131, 2131, 0, 0, 2131, 2132, 2132, 0, 2132, 2133, 2133, 2134, 0, 2134, 2135, 0, 2135, 2136, 0, 0, 2136, 2137, 2137, 0, 2137, 2138, 2138, 0, 0, 2138, 2139, 2139, 0, 2139, 2140, 2140, 2141, 0, 2141, 2142, 0, 2142, 2143, 0, 2143, 2144, 0, 2144, 2145, 2145, 2145, 2146, 0, 2146, 2147, 2147, 2147, 0, 2147, 2147, 2148, 0, 2148, 2149, 0, 2149, 2150, 0, 2150, 2151, 0, 2151, 2152, 0, 2152, 2153, 0, 2153, 2154, 0, 2154, 2155, 2155, 0, 0, 2155, 2156, 2156, 0, 2156, 2157, 2157, 2158, 0, 2158, 2159, 0, 2159, 2160, 0, 2160, 2161, 0, 2161, 2162, 0, 2162, 2163, 0, 2163, 2164, 0, 2164, 2165, 0, 2165, 2166, 0, 2166, 2167, 0, 2167, 2168, 0, 0, 2168, 2169, 2169, 0, 0, 2169, 2170, 0, 2170, 2171, 0, 2171, 2172, 0, 2172, 2173, 0, 0, 2173, 2174, 0, 0, 2174, 2175, 0, 0, 2175, 2176, 0, 0, 2176, 2177, 0, 0, 2177, 2178, 0, 2178, 2179, 0, 2179, 2180, 0, 0, 2180, 2181, 0, 2181, 2182, 0, 2182, 2183, 0, 2183, 2184, 0, 2184, 2185, 0, 2185, 2186, 0, 0, 2186, 2187, 0, 2187, 2188, 0, 2188, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728 } ; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET #line 1 "scanner.l" /* * We want a reentrant scanner. */ /* * And we need to pass the compiler state to the scanner. */ /* * We don't use input, so don't generate code for it. */ #define YY_NO_INPUT 1 /* * We don't use unput, so don't generate code for it. */ /* * We don't read from the terminal. */ /* * We want to stop processing when we get to the end of the input. */ /* * We want to generate code that can be used by a reentrant parser * generated by Bison or Berkeley YACC. */ #line 67 "scanner.l" /* * Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that: (1) source code distributions * retain the above copyright notice and this paragraph in its entirety, (2) * distributions including binary code include the above copyright notice and * this paragraph in its entirety in the documentation or other materials * provided with the distribution, and (3) all advertising materials mentioning * features or use of this software display the following acknowledgement: * ``This product includes software developed by the University of California, * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of * the University nor the names of its contributors may be used to endorse * or promote products derived from this software without specific prior * written permission. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ #include #include #include "pcap-int.h" #include "gencode.h" #include "grammar.h" /* * Earlier versions of Flex don't declare these, so we declare them * ourselves to squelch warnings. */ int pcap_get_column(yyscan_t); void pcap_set_column(int, yyscan_t); #ifdef INET6 #ifdef _WIN32 #include #include /* * To quote the MSDN page for getaddrinfo() at * * https://msdn.microsoft.com/en-us/library/windows/desktop/ms738520(v=vs.85).aspx * * "Support for getaddrinfo on Windows 2000 and older versions * The getaddrinfo function was added to the Ws2_32.dll on Windows XP and * later. To execute an application that uses this function on earlier * versions of Windows, then you need to include the Ws2tcpip.h and * Wspiapi.h files. When the Wspiapi.h include file is added, the * getaddrinfo function is defined to the WspiapiGetAddrInfo inline * function in the Wspiapi.h file. At runtime, the WspiapiGetAddrInfo * function is implemented in such a way that if the Ws2_32.dll or the * Wship6.dll (the file containing getaddrinfo in the IPv6 Technology * Preview for Windows 2000) does not include getaddrinfo, then a * version of getaddrinfo is implemented inline based on code in the * Wspiapi.h header file. This inline code will be used on older Windows * platforms that do not natively support the getaddrinfo function." * * We use getaddrinfo(), so we include Wspiapi.h here. */ #include #else /* _WIN32 */ #include /* for "struct sockaddr" in "struct addrinfo" */ #include /* for "struct addrinfo" */ #endif /* _WIN32 */ /* Workaround for AIX 4.3 */ #if !defined(AI_NUMERICHOST) #define AI_NUMERICHOST 0x04 #endif #endif /*INET6*/ #include #include "grammar.h" #ifdef HAVE_OS_PROTO_H #include "os-proto.h" #endif static int stoi(char *); static inline int xdtoi(int); /* * Disable diagnostics in the code generated by Flex. */ DIAG_OFF_FLEX #line 2997 "scanner.c" #define INITIAL 0 #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 #define YY_EXTRA_TYPE compiler_state_t * /* Holds the entire state of the reentrant scanner. */ struct yyguts_t { /* User-defined. Not touched by flex. */ YY_EXTRA_TYPE yyextra_r; /* The rest are the same as the globals declared in the non-reentrant scanner. */ FILE *yyin_r, *yyout_r; size_t yy_buffer_stack_top; /**< index of top of stack. */ size_t yy_buffer_stack_max; /**< capacity of stack. */ YY_BUFFER_STATE * yy_buffer_stack; /**< Stack as an array. */ char yy_hold_char; int yy_n_chars; yy_size_t yyleng_r; char *yy_c_buf_p; int yy_init; int yy_start; int yy_did_buffer_switch_on_eof; int yy_start_stack_ptr; int yy_start_stack_depth; int *yy_start_stack; yy_state_type yy_last_accepting_state; char* yy_last_accepting_cpos; int yylineno_r; int yy_flex_debug_r; char *yytext_r; int yy_more_flag; int yy_more_len; YYSTYPE * yylval_r; }; /* end struct yyguts_t */ static int yy_init_globals (yyscan_t yyscanner ); /* This must go here because YYSTYPE and YYLTYPE are included * from bison output in section 1.*/ # define yylval yyg->yylval_r int pcap_lex_init (yyscan_t* scanner); int pcap_lex_init_extra (YY_EXTRA_TYPE user_defined,yyscan_t* scanner); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int pcap_lex_destroy (yyscan_t yyscanner ); int pcap_get_debug (yyscan_t yyscanner ); void pcap_set_debug (int debug_flag ,yyscan_t yyscanner ); YY_EXTRA_TYPE pcap_get_extra (yyscan_t yyscanner ); void pcap_set_extra (YY_EXTRA_TYPE user_defined ,yyscan_t yyscanner ); FILE *pcap_get_in (yyscan_t yyscanner ); void pcap_set_in (FILE * _in_str ,yyscan_t yyscanner ); FILE *pcap_get_out (yyscan_t yyscanner ); void pcap_set_out (FILE * _out_str ,yyscan_t yyscanner ); yy_size_t pcap_get_leng (yyscan_t yyscanner ); char *pcap_get_text (yyscan_t yyscanner ); int pcap_get_lineno (yyscan_t yyscanner ); void pcap_set_lineno (int _line_number ,yyscan_t yyscanner ); int pcap_get_column (yyscan_t yyscanner ); void pcap_set_column (int _column_no ,yyscan_t yyscanner ); YYSTYPE * pcap_get_lval (yyscan_t yyscanner ); void pcap_set_lval (YYSTYPE * yylval_param ,yyscan_t yyscanner ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int pcap_wrap (yyscan_t yyscanner ); #else extern int pcap_wrap (yyscan_t yyscanner ); #endif #endif #ifndef YY_NO_UNPUT #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ,yyscan_t yyscanner); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ,yyscan_t yyscanner); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (yyscan_t yyscanner ); #else static int input (yyscan_t yyscanner ); #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, 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 = '*'; \ size_t 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 = fread(buf, 1, 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 , yyscanner) #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 pcap_lex \ (YYSTYPE * yylval_param ,yyscan_t yyscanner); #define YY_DECL int pcap_lex \ (YYSTYPE * yylval_param , yyscan_t yyscanner) #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; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yylval = yylval_param; if ( !yyg->yy_init ) { yyg->yy_init = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! yyg->yy_start ) yyg->yy_start = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { pcap_ensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = pcap__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); } pcap__load_buffer_state(yyscanner ); } { #line 254 "scanner.l" #line 3270 "scanner.c" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { yy_cp = yyg->yy_c_buf_p; /* Support of yytext. */ *yy_cp = yyg->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 = yyg->yy_start; yy_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->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 >= 1729 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_current_state != 1728 ); yy_cp = yyg->yy_last_accepting_cpos; yy_current_state = yyg->yy_last_accepting_state; yy_find_action: 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 = yyg->yy_hold_char; yy_cp = yyg->yy_last_accepting_cpos; yy_current_state = yyg->yy_last_accepting_state; goto yy_find_action; case 1: YY_RULE_SETUP #line 255 "scanner.l" return DST; YY_BREAK case 2: YY_RULE_SETUP #line 256 "scanner.l" return SRC; YY_BREAK case 3: YY_RULE_SETUP #line 258 "scanner.l" return LINK; YY_BREAK case 4: YY_RULE_SETUP #line 259 "scanner.l" return LINK; YY_BREAK case 5: YY_RULE_SETUP #line 260 "scanner.l" return ARP; YY_BREAK case 6: YY_RULE_SETUP #line 261 "scanner.l" return RARP; YY_BREAK case 7: YY_RULE_SETUP #line 262 "scanner.l" return IP; YY_BREAK case 8: YY_RULE_SETUP #line 263 "scanner.l" return SCTP; YY_BREAK case 9: YY_RULE_SETUP #line 264 "scanner.l" return TCP; YY_BREAK case 10: YY_RULE_SETUP #line 265 "scanner.l" return UDP; YY_BREAK case 11: YY_RULE_SETUP #line 266 "scanner.l" return ICMP; YY_BREAK case 12: YY_RULE_SETUP #line 267 "scanner.l" return IGMP; YY_BREAK case 13: YY_RULE_SETUP #line 268 "scanner.l" return IGRP; YY_BREAK case 14: YY_RULE_SETUP #line 269 "scanner.l" return PIM; YY_BREAK case 15: YY_RULE_SETUP #line 270 "scanner.l" return VRRP; YY_BREAK case 16: YY_RULE_SETUP #line 271 "scanner.l" return CARP; YY_BREAK case 17: YY_RULE_SETUP #line 272 "scanner.l" return RADIO; YY_BREAK case 18: YY_RULE_SETUP #line 274 "scanner.l" return IPV6; YY_BREAK case 19: YY_RULE_SETUP #line 275 "scanner.l" return ICMPV6; YY_BREAK case 20: YY_RULE_SETUP #line 276 "scanner.l" return AH; YY_BREAK case 21: YY_RULE_SETUP #line 277 "scanner.l" return ESP; YY_BREAK case 22: YY_RULE_SETUP #line 279 "scanner.l" return ATALK; YY_BREAK case 23: YY_RULE_SETUP #line 280 "scanner.l" return AARP; YY_BREAK case 24: YY_RULE_SETUP #line 281 "scanner.l" return DECNET; YY_BREAK case 25: YY_RULE_SETUP #line 282 "scanner.l" return LAT; YY_BREAK case 26: YY_RULE_SETUP #line 283 "scanner.l" return SCA; YY_BREAK case 27: YY_RULE_SETUP #line 284 "scanner.l" return MOPRC; YY_BREAK case 28: YY_RULE_SETUP #line 285 "scanner.l" return MOPDL; YY_BREAK case 29: YY_RULE_SETUP #line 287 "scanner.l" return ISO; YY_BREAK case 30: YY_RULE_SETUP #line 288 "scanner.l" return ESIS; YY_BREAK case 31: YY_RULE_SETUP #line 289 "scanner.l" return ESIS; YY_BREAK case 32: YY_RULE_SETUP #line 290 "scanner.l" return ISIS; YY_BREAK case 33: YY_RULE_SETUP #line 291 "scanner.l" return ISIS; YY_BREAK case 34: YY_RULE_SETUP #line 292 "scanner.l" return L1; YY_BREAK case 35: YY_RULE_SETUP #line 293 "scanner.l" return L2; YY_BREAK case 36: YY_RULE_SETUP #line 294 "scanner.l" return IIH; YY_BREAK case 37: YY_RULE_SETUP #line 295 "scanner.l" return LSP; YY_BREAK case 38: YY_RULE_SETUP #line 296 "scanner.l" return SNP; YY_BREAK case 39: YY_RULE_SETUP #line 297 "scanner.l" return CSNP; YY_BREAK case 40: YY_RULE_SETUP #line 298 "scanner.l" return PSNP; YY_BREAK case 41: YY_RULE_SETUP #line 300 "scanner.l" return CLNP; YY_BREAK case 42: YY_RULE_SETUP #line 302 "scanner.l" return STP; YY_BREAK case 43: YY_RULE_SETUP #line 304 "scanner.l" return IPX; YY_BREAK case 44: YY_RULE_SETUP #line 306 "scanner.l" return NETBEUI; YY_BREAK case 45: YY_RULE_SETUP #line 308 "scanner.l" return HOST; YY_BREAK case 46: YY_RULE_SETUP #line 309 "scanner.l" return NET; YY_BREAK case 47: YY_RULE_SETUP #line 310 "scanner.l" return NETMASK; YY_BREAK case 48: YY_RULE_SETUP #line 311 "scanner.l" return PORT; YY_BREAK case 49: YY_RULE_SETUP #line 312 "scanner.l" return PORTRANGE; YY_BREAK case 50: YY_RULE_SETUP #line 313 "scanner.l" return PROTO; YY_BREAK case 51: YY_RULE_SETUP #line 314 "scanner.l" { #ifdef NO_PROTOCHAIN bpf_error(yyextra, "%s not supported", yytext); #else return PROTOCHAIN; #endif } YY_BREAK case 52: YY_RULE_SETUP #line 322 "scanner.l" return GATEWAY; YY_BREAK case 53: YY_RULE_SETUP #line 324 "scanner.l" return TYPE; YY_BREAK case 54: YY_RULE_SETUP #line 325 "scanner.l" return SUBTYPE; YY_BREAK case 55: YY_RULE_SETUP #line 326 "scanner.l" return DIR; YY_BREAK case 56: YY_RULE_SETUP #line 327 "scanner.l" return ADDR1; YY_BREAK case 57: YY_RULE_SETUP #line 328 "scanner.l" return ADDR2; YY_BREAK case 58: YY_RULE_SETUP #line 329 "scanner.l" return ADDR3; YY_BREAK case 59: YY_RULE_SETUP #line 330 "scanner.l" return ADDR4; YY_BREAK case 60: YY_RULE_SETUP #line 331 "scanner.l" return RA; YY_BREAK case 61: YY_RULE_SETUP #line 332 "scanner.l" return TA; YY_BREAK case 62: YY_RULE_SETUP #line 334 "scanner.l" return LESS; YY_BREAK case 63: YY_RULE_SETUP #line 335 "scanner.l" return GREATER; YY_BREAK case 64: YY_RULE_SETUP #line 336 "scanner.l" return CBYTE; YY_BREAK case 65: YY_RULE_SETUP #line 337 "scanner.l" return TK_BROADCAST; YY_BREAK case 66: YY_RULE_SETUP #line 338 "scanner.l" return TK_MULTICAST; YY_BREAK case 67: YY_RULE_SETUP #line 340 "scanner.l" return AND; YY_BREAK case 68: YY_RULE_SETUP #line 341 "scanner.l" return OR; YY_BREAK case 69: YY_RULE_SETUP #line 342 "scanner.l" return '!'; YY_BREAK case 70: YY_RULE_SETUP #line 344 "scanner.l" return LEN; YY_BREAK case 71: YY_RULE_SETUP #line 345 "scanner.l" return INBOUND; YY_BREAK case 72: YY_RULE_SETUP #line 346 "scanner.l" return OUTBOUND; YY_BREAK case 73: YY_RULE_SETUP #line 348 "scanner.l" return VLAN; YY_BREAK case 74: YY_RULE_SETUP #line 349 "scanner.l" return MPLS; YY_BREAK case 75: YY_RULE_SETUP #line 350 "scanner.l" return PPPOED; YY_BREAK case 76: YY_RULE_SETUP #line 351 "scanner.l" return PPPOES; YY_BREAK case 77: YY_RULE_SETUP #line 352 "scanner.l" return GENEVE; YY_BREAK case 78: YY_RULE_SETUP #line 354 "scanner.l" return LANE; YY_BREAK case 79: YY_RULE_SETUP #line 355 "scanner.l" return LLC; YY_BREAK case 80: YY_RULE_SETUP #line 356 "scanner.l" return METAC; YY_BREAK case 81: YY_RULE_SETUP #line 357 "scanner.l" return BCC; YY_BREAK case 82: YY_RULE_SETUP #line 358 "scanner.l" return OAM; YY_BREAK case 83: YY_RULE_SETUP #line 359 "scanner.l" return OAMF4; YY_BREAK case 84: YY_RULE_SETUP #line 360 "scanner.l" return OAMF4EC; YY_BREAK case 85: YY_RULE_SETUP #line 361 "scanner.l" return OAMF4SC; YY_BREAK case 86: YY_RULE_SETUP #line 362 "scanner.l" return SC; YY_BREAK case 87: YY_RULE_SETUP #line 363 "scanner.l" return ILMIC; YY_BREAK case 88: YY_RULE_SETUP #line 364 "scanner.l" return VPI; YY_BREAK case 89: YY_RULE_SETUP #line 365 "scanner.l" return VCI; YY_BREAK case 90: YY_RULE_SETUP #line 366 "scanner.l" return CONNECTMSG; YY_BREAK case 91: YY_RULE_SETUP #line 367 "scanner.l" return METACONNECT; YY_BREAK case 92: YY_RULE_SETUP #line 369 "scanner.l" return PF_IFNAME; YY_BREAK case 93: YY_RULE_SETUP #line 370 "scanner.l" return PF_RSET; YY_BREAK case 94: YY_RULE_SETUP #line 371 "scanner.l" return PF_RNR; YY_BREAK case 95: YY_RULE_SETUP #line 372 "scanner.l" return PF_SRNR; YY_BREAK case 96: YY_RULE_SETUP #line 373 "scanner.l" return PF_REASON; YY_BREAK case 97: YY_RULE_SETUP #line 374 "scanner.l" return PF_ACTION; YY_BREAK case 98: YY_RULE_SETUP #line 376 "scanner.l" return FISU; YY_BREAK case 99: YY_RULE_SETUP #line 377 "scanner.l" return LSSU; YY_BREAK case 100: YY_RULE_SETUP #line 378 "scanner.l" return LSSU; YY_BREAK case 101: YY_RULE_SETUP #line 379 "scanner.l" return MSU; YY_BREAK case 102: YY_RULE_SETUP #line 380 "scanner.l" return HFISU; YY_BREAK case 103: YY_RULE_SETUP #line 381 "scanner.l" return HLSSU; YY_BREAK case 104: YY_RULE_SETUP #line 382 "scanner.l" return HMSU; YY_BREAK case 105: YY_RULE_SETUP #line 383 "scanner.l" return SIO; YY_BREAK case 106: YY_RULE_SETUP #line 384 "scanner.l" return OPC; YY_BREAK case 107: YY_RULE_SETUP #line 385 "scanner.l" return DPC; YY_BREAK case 108: YY_RULE_SETUP #line 386 "scanner.l" return SLS; YY_BREAK case 109: YY_RULE_SETUP #line 387 "scanner.l" return HSIO; YY_BREAK case 110: YY_RULE_SETUP #line 388 "scanner.l" return HOPC; YY_BREAK case 111: YY_RULE_SETUP #line 389 "scanner.l" return HDPC; YY_BREAK case 112: YY_RULE_SETUP #line 390 "scanner.l" return HSLS; YY_BREAK case 113: /* rule 113 can match eol */ YY_RULE_SETUP #line 392 "scanner.l" ; YY_BREAK case 114: YY_RULE_SETUP #line 393 "scanner.l" return yytext[0]; YY_BREAK case 115: YY_RULE_SETUP #line 394 "scanner.l" return GEQ; YY_BREAK case 116: YY_RULE_SETUP #line 395 "scanner.l" return LEQ; YY_BREAK case 117: YY_RULE_SETUP #line 396 "scanner.l" return NEQ; YY_BREAK case 118: YY_RULE_SETUP #line 397 "scanner.l" return '='; YY_BREAK case 119: YY_RULE_SETUP #line 398 "scanner.l" return LSH; YY_BREAK case 120: YY_RULE_SETUP #line 399 "scanner.l" return RSH; YY_BREAK case 121: YY_RULE_SETUP #line 400 "scanner.l" { yylval->e = pcap_ether_aton(((char *)yytext)+1); if (yylval->e == NULL) bpf_error(yyextra, "malloc"); return AID; } YY_BREAK case 122: YY_RULE_SETUP #line 404 "scanner.l" { yylval->e = pcap_ether_aton((char *)yytext); if (yylval->e == NULL) bpf_error(yyextra, "malloc"); return EID; } YY_BREAK case 123: YY_RULE_SETUP #line 408 "scanner.l" { yylval->i = stoi((char *)yytext); return NUM; } YY_BREAK case 124: YY_RULE_SETUP #line 409 "scanner.l" { yylval->s = sdup(yyextra, (char *)yytext); return HID; } YY_BREAK case 125: YY_RULE_SETUP #line 411 "scanner.l" { #ifdef INET6 struct addrinfo hints, *res; memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_INET6; hints.ai_flags = AI_NUMERICHOST; if (getaddrinfo(yytext, NULL, &hints, &res)) bpf_error(yyextra, "bogus IPv6 address %s", yytext); else { freeaddrinfo(res); yylval->s = sdup(yyextra, (char *)yytext); return HID6; } #else bpf_error(yyextra, "IPv6 address %s not supported", yytext); #endif /*INET6*/ } YY_BREAK case 126: YY_RULE_SETUP #line 427 "scanner.l" { bpf_error(yyextra, "bogus ethernet address %s", yytext); } YY_BREAK case 127: YY_RULE_SETUP #line 428 "scanner.l" { yylval->i = 0; return NUM; } YY_BREAK case 128: YY_RULE_SETUP #line 429 "scanner.l" { yylval->i = 1; return NUM; } YY_BREAK case 129: YY_RULE_SETUP #line 430 "scanner.l" { yylval->i = 0; return NUM; } YY_BREAK case 130: YY_RULE_SETUP #line 431 "scanner.l" { yylval->i = 3; return NUM; } YY_BREAK case 131: YY_RULE_SETUP #line 432 "scanner.l" { yylval->i = 4; return NUM; } YY_BREAK case 132: YY_RULE_SETUP #line 433 "scanner.l" { yylval->i = 5; return NUM; } YY_BREAK case 133: YY_RULE_SETUP #line 434 "scanner.l" { yylval->i = 8; return NUM; } YY_BREAK case 134: YY_RULE_SETUP #line 435 "scanner.l" { yylval->i = 9; return NUM; } YY_BREAK case 135: YY_RULE_SETUP #line 436 "scanner.l" { yylval->i = 10; return NUM; } YY_BREAK case 136: YY_RULE_SETUP #line 437 "scanner.l" { yylval->i = 11; return NUM; } YY_BREAK case 137: YY_RULE_SETUP #line 438 "scanner.l" { yylval->i = 12; return NUM; } YY_BREAK case 138: YY_RULE_SETUP #line 439 "scanner.l" { yylval->i = 13; return NUM; } YY_BREAK case 139: YY_RULE_SETUP #line 440 "scanner.l" { yylval->i = 14; return NUM; } YY_BREAK case 140: YY_RULE_SETUP #line 441 "scanner.l" { yylval->i = 15; return NUM; } YY_BREAK case 141: YY_RULE_SETUP #line 442 "scanner.l" { yylval->i = 16; return NUM; } YY_BREAK case 142: YY_RULE_SETUP #line 443 "scanner.l" { yylval->i = 17; return NUM; } YY_BREAK case 143: YY_RULE_SETUP #line 444 "scanner.l" { yylval->i = 18; return NUM; } YY_BREAK case 144: YY_RULE_SETUP #line 446 "scanner.l" { yylval->i = 0; return NUM; } YY_BREAK case 145: YY_RULE_SETUP #line 447 "scanner.l" { yylval->i = 1; return NUM; } YY_BREAK case 146: YY_RULE_SETUP #line 449 "scanner.l" { yylval->i = 128; return NUM; } YY_BREAK case 147: YY_RULE_SETUP #line 450 "scanner.l" { yylval->i = 129; return NUM; } YY_BREAK case 148: YY_RULE_SETUP #line 451 "scanner.l" { yylval->i = 130; return NUM; } YY_BREAK case 149: YY_RULE_SETUP #line 452 "scanner.l" { yylval->i = 131; return NUM; } YY_BREAK case 150: YY_RULE_SETUP #line 453 "scanner.l" { yylval->i = 132; return NUM; } YY_BREAK case 151: YY_RULE_SETUP #line 454 "scanner.l" { yylval->i = 133; return NUM; } YY_BREAK case 152: YY_RULE_SETUP #line 455 "scanner.l" { yylval->i = 134; return NUM; } YY_BREAK case 153: YY_RULE_SETUP #line 456 "scanner.l" { yylval->i = 135; return NUM; } YY_BREAK case 154: YY_RULE_SETUP #line 457 "scanner.l" { yylval->i = 136; return NUM; } YY_BREAK case 155: YY_RULE_SETUP #line 458 "scanner.l" { yylval->i = 137; return NUM; } YY_BREAK case 156: YY_RULE_SETUP #line 459 "scanner.l" { yylval->i = 138; return NUM; } YY_BREAK case 157: YY_RULE_SETUP #line 460 "scanner.l" { yylval->i = 139; return NUM; } YY_BREAK case 158: YY_RULE_SETUP #line 461 "scanner.l" { yylval->i = 140; return NUM; } YY_BREAK case 159: YY_RULE_SETUP #line 462 "scanner.l" { yylval->i = 141; return NUM; } YY_BREAK case 160: YY_RULE_SETUP #line 463 "scanner.l" { yylval->i = 142; return NUM; } YY_BREAK case 161: YY_RULE_SETUP #line 464 "scanner.l" { yylval->i = 143; return NUM; } YY_BREAK case 162: YY_RULE_SETUP #line 465 "scanner.l" { yylval->i = 144; return NUM; } YY_BREAK case 163: YY_RULE_SETUP #line 466 "scanner.l" { yylval->i = 145; return NUM; } YY_BREAK case 164: YY_RULE_SETUP #line 467 "scanner.l" { yylval->i = 146; return NUM; } YY_BREAK case 165: YY_RULE_SETUP #line 468 "scanner.l" { yylval->i = 147; return NUM; } YY_BREAK case 166: YY_RULE_SETUP #line 469 "scanner.l" { yylval->i = 148; return NUM; } YY_BREAK case 167: YY_RULE_SETUP #line 470 "scanner.l" { yylval->i = 149; return NUM; } YY_BREAK case 168: YY_RULE_SETUP #line 471 "scanner.l" { yylval->i = 151; return NUM; } YY_BREAK case 169: YY_RULE_SETUP #line 472 "scanner.l" { yylval->i = 152; return NUM; } YY_BREAK case 170: YY_RULE_SETUP #line 473 "scanner.l" { yylval->i = 153; return NUM; } YY_BREAK case 171: YY_RULE_SETUP #line 475 "scanner.l" { yylval->i = 13; return NUM; } YY_BREAK case 172: YY_RULE_SETUP #line 476 "scanner.l" { yylval->i = 0x01; return NUM; } YY_BREAK case 173: YY_RULE_SETUP #line 477 "scanner.l" { yylval->i = 0x02; return NUM; } YY_BREAK case 174: YY_RULE_SETUP #line 478 "scanner.l" { yylval->i = 0x04; return NUM; } YY_BREAK case 175: YY_RULE_SETUP #line 479 "scanner.l" { yylval->i = 0x08; return NUM; } YY_BREAK case 176: YY_RULE_SETUP #line 480 "scanner.l" { yylval->i = 0x10; return NUM; } YY_BREAK case 177: YY_RULE_SETUP #line 481 "scanner.l" { yylval->i = 0x20; return NUM; } YY_BREAK case 178: YY_RULE_SETUP #line 482 "scanner.l" { yylval->i = 0x40; return NUM; } YY_BREAK case 179: YY_RULE_SETUP #line 483 "scanner.l" { yylval->i = 0x80; return NUM; } YY_BREAK case 180: YY_RULE_SETUP #line 484 "scanner.l" { yylval->s = sdup(yyextra, (char *)yytext); return ID; } YY_BREAK case 181: YY_RULE_SETUP #line 486 "scanner.l" { yylval->s = sdup(yyextra, (char *)yytext + 1); return ID; } YY_BREAK case 182: YY_RULE_SETUP #line 487 "scanner.l" { bpf_error(yyextra, "illegal token: %s", yytext); } YY_BREAK case 183: YY_RULE_SETUP #line 489 "scanner.l" { bpf_error(yyextra, "illegal char '%c'", *yytext); } YY_BREAK case 184: YY_RULE_SETUP #line 490 "scanner.l" ECHO; YY_BREAK #line 4274 "scanner.c" case YY_STATE_EOF(INITIAL): yyterminate(); case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - yyg->yytext_ptr) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = yyg->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 * pcap_lex(). 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. */ yyg->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 ( yyg->yy_c_buf_p <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) { /* This was really a NUL. */ yy_state_type yy_next_state; yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( yyscanner ); /* 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 , yyscanner); yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++yyg->yy_c_buf_p; yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = yyg->yy_last_accepting_cpos; yy_current_state = yyg->yy_last_accepting_state; goto yy_find_action; } } else switch ( yy_get_next_buffer( yyscanner ) ) { case EOB_ACT_END_OF_FILE: { yyg->yy_did_buffer_switch_on_eof = 0; if ( pcap_wrap(yyscanner ) ) { /* 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. */ yyg->yy_c_buf_p = yyg->yytext_ptr + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! yyg->yy_did_buffer_switch_on_eof ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: yyg->yy_c_buf_p = yyg->yytext_ptr + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( yyscanner ); yy_cp = yyg->yy_c_buf_p; yy_bp = yyg->yytext_ptr + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: yyg->yy_c_buf_p = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars]; yy_current_state = yy_get_previous_state( yyscanner ); yy_cp = yyg->yy_c_buf_p; yy_bp = yyg->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 pcap_lex */ /* 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 (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = yyg->yytext_ptr; yy_size_t number_to_move, i; int ret_val; if ( yyg->yy_c_buf_p > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->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 ( yyg->yy_c_buf_p - yyg->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 = (yy_size_t) (yyg->yy_c_buf_p - yyg->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 = yyg->yy_n_chars = 0; else { yy_size_t 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) (yyg->yy_c_buf_p - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { yy_size_t 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. */ pcap_realloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ,yyscanner ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); yyg->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]), yyg->yy_n_chars, num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } if ( yyg->yy_n_chars == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; pcap_restart(yyin ,yyscanner); } 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 ((int) (yyg->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 = yyg->yy_n_chars + number_to_move + (yyg->yy_n_chars >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) pcap_realloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ,yyscanner ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } yyg->yy_n_chars += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR; yyg->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 (yyscan_t yyscanner) { yy_state_type yy_current_state; char *yy_cp; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_current_state = yyg->yy_start; for ( yy_cp = yyg->yytext_ptr + YY_MORE_ADJ; yy_cp < yyg->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] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->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 >= 1729 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) 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 , yyscan_t yyscanner) { int yy_is_jam; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* This var may be unused depending upon options. */ char *yy_cp = yyg->yy_c_buf_p; YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { yyg->yy_last_accepting_state = yy_current_state; yyg->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 >= 1729 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 1728); (void)yyg; return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (yyscan_t yyscanner) #else static int input (yyscan_t yyscanner) #endif { int c; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; *yyg->yy_c_buf_p = yyg->yy_hold_char; if ( *yyg->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 ( yyg->yy_c_buf_p < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[yyg->yy_n_chars] ) /* This was really a NUL. */ *yyg->yy_c_buf_p = '\0'; else { /* need more input */ yy_size_t offset = yyg->yy_c_buf_p - yyg->yytext_ptr; ++yyg->yy_c_buf_p; switch ( yy_get_next_buffer( yyscanner ) ) { 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. */ pcap_restart(yyin ,yyscanner); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( pcap_wrap(yyscanner ) ) return EOF; if ( ! yyg->yy_did_buffer_switch_on_eof ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(yyscanner); #else return input(yyscanner); #endif } case EOB_ACT_CONTINUE_SCAN: yyg->yy_c_buf_p = yyg->yytext_ptr + offset; break; } } } c = *(unsigned char *) yyg->yy_c_buf_p; /* cast for 8-bit char's */ *yyg->yy_c_buf_p = '\0'; /* preserve yytext */ yyg->yy_hold_char = *++yyg->yy_c_buf_p; return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * @param yyscanner The scanner object. * @note This function does not reset the start condition to @c INITIAL . */ void pcap_restart (FILE * input_file , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if ( ! YY_CURRENT_BUFFER ){ pcap_ensure_buffer_stack (yyscanner); YY_CURRENT_BUFFER_LVALUE = pcap__create_buffer(yyin,YY_BUF_SIZE ,yyscanner); } pcap__init_buffer(YY_CURRENT_BUFFER,input_file ,yyscanner); pcap__load_buffer_state(yyscanner ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * @param yyscanner The scanner object. */ void pcap__switch_to_buffer (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* TODO. We should be able to replace this entire function body * with * pcap_pop_buffer_state(); * pcap_push_buffer_state(new_buffer); */ pcap_ensure_buffer_stack (yyscanner); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *yyg->yy_c_buf_p = yyg->yy_hold_char; YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } YY_CURRENT_BUFFER_LVALUE = new_buffer; pcap__load_buffer_state(yyscanner ); /* We don't actually know whether we did this switch during * EOF (pcap_wrap()) processing, but the only time this flag * is looked at is after pcap_wrap() is called, so it's safe * to go ahead and always set it. */ yyg->yy_did_buffer_switch_on_eof = 1; } static void pcap__load_buffer_state (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyg->yy_n_chars = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; yyg->yytext_ptr = yyg->yy_c_buf_p = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; yyg->yy_hold_char = *yyg->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. * @param yyscanner The scanner object. * @return the allocated buffer state. */ YY_BUFFER_STATE pcap__create_buffer (FILE * file, int size , yyscan_t yyscanner) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) pcap_alloc(sizeof( struct yy_buffer_state ) ,yyscanner ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in pcap__create_buffer()" ); b->yy_buf_size = (yy_size_t)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 *) pcap_alloc(b->yy_buf_size + 2 ,yyscanner ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in pcap__create_buffer()" ); b->yy_is_our_buffer = 1; pcap__init_buffer(b,file ,yyscanner); return b; } /** Destroy the buffer. * @param b a buffer created with pcap__create_buffer() * @param yyscanner The scanner object. */ void pcap__delete_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; 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 ) pcap_free((void *) b->yy_ch_buf ,yyscanner ); pcap_free((void *) b ,yyscanner ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a pcap_restart() or at EOF. */ static void pcap__init_buffer (YY_BUFFER_STATE b, FILE * file , yyscan_t yyscanner) { int oerrno = errno; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; pcap__flush_buffer(b ,yyscanner); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then pcap__init_buffer was _probably_ * called from pcap_restart() 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 = 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. * @param yyscanner The scanner object. */ void pcap__flush_buffer (YY_BUFFER_STATE b , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; 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 ) pcap__load_buffer_state(yyscanner ); } /** 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. * @param yyscanner The scanner object. */ void pcap_push_buffer_state (YY_BUFFER_STATE new_buffer , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (new_buffer == NULL) return; pcap_ensure_buffer_stack(yyscanner); /* This block is copied from pcap__switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *yyg->yy_c_buf_p = yyg->yy_hold_char; YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = yyg->yy_c_buf_p; YY_CURRENT_BUFFER_LVALUE->yy_n_chars = yyg->yy_n_chars; } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) yyg->yy_buffer_stack_top++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from pcap__switch_to_buffer. */ pcap__load_buffer_state(yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * @param yyscanner The scanner object. */ void pcap_pop_buffer_state (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!YY_CURRENT_BUFFER) return; pcap__delete_buffer(YY_CURRENT_BUFFER ,yyscanner); YY_CURRENT_BUFFER_LVALUE = NULL; if (yyg->yy_buffer_stack_top > 0) --yyg->yy_buffer_stack_top; if (YY_CURRENT_BUFFER) { pcap__load_buffer_state(yyscanner ); yyg->yy_did_buffer_switch_on_eof = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void pcap_ensure_buffer_stack (yyscan_t yyscanner) { yy_size_t num_to_alloc; struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (!yyg->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... */ yyg->yy_buffer_stack = (struct yy_buffer_state**)pcap_alloc (num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) YY_FATAL_ERROR( "out of dynamic memory in pcap_ensure_buffer_stack()" ); memset(yyg->yy_buffer_stack, 0, num_to_alloc * sizeof(struct yy_buffer_state*)); yyg->yy_buffer_stack_max = num_to_alloc; yyg->yy_buffer_stack_top = 0; return; } if (yyg->yy_buffer_stack_top >= (yyg->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 = yyg->yy_buffer_stack_max + grow_size; yyg->yy_buffer_stack = (struct yy_buffer_state**)pcap_realloc (yyg->yy_buffer_stack, num_to_alloc * sizeof(struct yy_buffer_state*) , yyscanner); if ( ! yyg->yy_buffer_stack ) YY_FATAL_ERROR( "out of dynamic memory in pcap_ensure_buffer_stack()" ); /* zero only the new slots.*/ memset(yyg->yy_buffer_stack + yyg->yy_buffer_stack_max, 0, grow_size * sizeof(struct yy_buffer_state*)); yyg->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 * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ YY_BUFFER_STATE pcap__scan_buffer (char * base, yy_size_t size , yyscan_t yyscanner) { 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 0; b = (YY_BUFFER_STATE) pcap_alloc(sizeof( struct yy_buffer_state ) ,yyscanner ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in pcap__scan_buffer()" ); b->yy_buf_size = 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 = 0; 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; pcap__switch_to_buffer(b ,yyscanner ); return b; } /** Setup the input buffer state to scan a string. The next call to pcap_lex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * @param yyscanner The scanner object. * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * pcap__scan_bytes() instead. */ YY_BUFFER_STATE pcap__scan_string (yyconst char * yystr , yyscan_t yyscanner) { return pcap__scan_bytes(yystr,strlen(yystr) ,yyscanner); } /** Setup the input buffer state to scan the given bytes. The next call to pcap_lex() 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. * @param yyscanner The scanner object. * @return the newly allocated buffer state object. */ YY_BUFFER_STATE pcap__scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len , yyscan_t yyscanner) { YY_BUFFER_STATE b; char *buf; yy_size_t n; yy_size_t i; /* Get memory for full buffer, including space for trailing EOB's. */ n = _yybytes_len + 2; buf = (char *) pcap_alloc(n ,yyscanner ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in pcap__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 = pcap__scan_buffer(buf,n ,yyscanner); if ( ! b ) YY_FATAL_ERROR( "bad buffer in pcap__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 yy_fatal_error (yyconst char* msg , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; (void) 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] = yyg->yy_hold_char; \ yyg->yy_c_buf_p = yytext + yyless_macro_arg; \ yyg->yy_hold_char = *yyg->yy_c_buf_p; \ *yyg->yy_c_buf_p = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the user-defined data for this scanner. * @param yyscanner The scanner object. */ YY_EXTRA_TYPE pcap_get_extra (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyextra; } /** Get the current line number. * @param yyscanner The scanner object. */ int pcap_get_lineno (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (! YY_CURRENT_BUFFER) return 0; return yylineno; } /** Get the current column number. * @param yyscanner The scanner object. */ int pcap_get_column (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; if (! YY_CURRENT_BUFFER) return 0; return yycolumn; } /** Get the input stream. * @param yyscanner The scanner object. */ FILE *pcap_get_in (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyin; } /** Get the output stream. * @param yyscanner The scanner object. */ FILE *pcap_get_out (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyout; } /** Get the length of the current token. * @param yyscanner The scanner object. */ yy_size_t pcap_get_leng (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yyleng; } /** Get the current token. * @param yyscanner The scanner object. */ char *pcap_get_text (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yytext; } /** Set the user-defined data. This data is never touched by the scanner. * @param user_defined The data to be associated with this scanner. * @param yyscanner The scanner object. */ void pcap_set_extra (YY_EXTRA_TYPE user_defined , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyextra = user_defined ; } /** Set the current line number. * @param _line_number line number * @param yyscanner The scanner object. */ void pcap_set_lineno (int _line_number , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* lineno is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) YY_FATAL_ERROR( "pcap_set_lineno called with no buffer" ); yylineno = _line_number; } /** Set the current column. * @param _column_no column number * @param yyscanner The scanner object. */ void pcap_set_column (int _column_no , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* column is only valid if an input buffer exists. */ if (! YY_CURRENT_BUFFER ) YY_FATAL_ERROR( "pcap_set_column called with no buffer" ); yycolumn = _column_no; } /** Set the input stream. This does not discard the current * input buffer. * @param _in_str A readable stream. * @param yyscanner The scanner object. * @see pcap__switch_to_buffer */ void pcap_set_in (FILE * _in_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyin = _in_str ; } void pcap_set_out (FILE * _out_str , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yyout = _out_str ; } int pcap_get_debug (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yy_flex_debug; } void pcap_set_debug (int _bdebug , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yy_flex_debug = _bdebug ; } /* Accessor methods for yylval and yylloc */ YYSTYPE * pcap_get_lval (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; return yylval; } void pcap_set_lval (YYSTYPE * yylval_param , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; yylval = yylval_param; } /* User-visible API */ /* pcap_lex_init is special because it creates the scanner itself, so it is * the ONLY reentrant function that doesn't take the scanner as the last argument. * That's why we explicitly handle the declaration, instead of using our macros. */ int pcap_lex_init(yyscan_t* ptr_yy_globals) { if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } *ptr_yy_globals = (yyscan_t) pcap_alloc ( sizeof( struct yyguts_t ), NULL ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; return 1; } /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); return yy_init_globals ( *ptr_yy_globals ); } /* pcap_lex_init_extra has the same functionality as pcap_lex_init, but follows the * convention of taking the scanner as the last argument. Note however, that * this is a *pointer* to a scanner, as it will be allocated by this call (and * is the reason, too, why this function also must handle its own declaration). * The user defined value in the first argument will be available to pcap_alloc in * the yyextra field. */ int pcap_lex_init_extra(YY_EXTRA_TYPE yy_user_defined,yyscan_t* ptr_yy_globals ) { struct yyguts_t dummy_yyguts; pcap_set_extra (yy_user_defined, &dummy_yyguts); if (ptr_yy_globals == NULL){ errno = EINVAL; return 1; } *ptr_yy_globals = (yyscan_t) pcap_alloc ( sizeof( struct yyguts_t ), &dummy_yyguts ); if (*ptr_yy_globals == NULL){ errno = ENOMEM; return 1; } /* By setting to 0xAA, we expose bugs in yy_init_globals. Leave at 0x00 for releases. */ memset(*ptr_yy_globals,0x00,sizeof(struct yyguts_t)); pcap_set_extra (yy_user_defined, *ptr_yy_globals); return yy_init_globals ( *ptr_yy_globals ); } static int yy_init_globals (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Initialization is the same as for the non-reentrant scanner. * This function is called from pcap_lex_destroy(), so don't allocate here. */ yyg->yy_buffer_stack = 0; yyg->yy_buffer_stack_top = 0; yyg->yy_buffer_stack_max = 0; yyg->yy_c_buf_p = (char *) 0; yyg->yy_init = 0; yyg->yy_start = 0; yyg->yy_start_stack_ptr = 0; yyg->yy_start_stack_depth = 0; yyg->yy_start_stack = NULL; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * pcap_lex_init() */ return 0; } /* pcap_lex_destroy is for both reentrant and non-reentrant scanners. */ int pcap_lex_destroy (yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ pcap__delete_buffer(YY_CURRENT_BUFFER ,yyscanner ); YY_CURRENT_BUFFER_LVALUE = NULL; pcap_pop_buffer_state(yyscanner); } /* Destroy the stack itself. */ pcap_free(yyg->yy_buffer_stack ,yyscanner); yyg->yy_buffer_stack = NULL; /* Destroy the start condition stack. */ pcap_free(yyg->yy_start_stack ,yyscanner ); yyg->yy_start_stack = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * pcap_lex() is called, initialization will occur. */ yy_init_globals( yyscanner); /* Destroy the main struct (reentrant only). */ pcap_free ( yyscanner , yyscanner ); yyscanner = NULL; return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s , yyscan_t yyscanner) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *pcap_alloc (yy_size_t size , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; return (void *) malloc( size ); } void *pcap_realloc (void * ptr, yy_size_t size , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; /* 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 (void *) realloc( (char *) ptr, size ); } void pcap_free (void * ptr , yyscan_t yyscanner) { struct yyguts_t * yyg = (struct yyguts_t*)yyscanner; (void)yyg; free( (char *) ptr ); /* see pcap_realloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 490 "scanner.l" /* * Turn diagnostics back on, so we check the code that we've written. */ DIAG_ON_FLEX /* Hex digit to integer. */ static inline int xdtoi(int c) { if (isdigit(c)) return c - '0'; else if (islower(c)) return c - 'a' + 10; else return c - 'A' + 10; } /* * Convert string to integer. Just like atoi(), but checks for * preceding 0x or 0 and uses hex or octal instead of decimal. */ static int stoi(char *s) { int base = 10; int n = 0; if (*s == '0') { if (s[1] == 'x' || s[1] == 'X') { s += 2; base = 16; } else { base = 8; s += 1; } } while (*s) n = n * base + xdtoi(*s++); return n; }