#include "config.h" #include "util/configyyrename.h" #line 3 "" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 6 #define YY_FLEX_SUBMINOR_VERSION 1 #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 */ /* TODO: this is always defined, so inline it */ #define yyconst const #if defined(__GNUC__) && __GNUC__ >= 3 #define yynoreturn __attribute__((__noreturn__)) #else #define yynoreturn #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an 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) /* Enter a start condition. This macro really ought to take a parameter, * but we do it the disgusting crufty way forced on us by the ()-less * definition of BEGIN. */ #define BEGIN (yy_start) = 1 + 2 * /* Translate the current start state into a value that can be later handed * to BEGIN to return to the state. The YYSTATE alias is for lex * compatibility. */ #define YY_START (((yy_start) - 1) / 2) #define YYSTATE YY_START /* Action number for EOF rule of a given start state. */ #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) /* Special action meaning "start processing a new file". */ #define YY_NEW_FILE yyrestart(yyin ) #define YY_END_OF_BUFFER_CHAR 0 /* Size of default input buffer. */ #ifndef YY_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k. * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. * Ditto for the __ia64__ case accordingly. */ #define YY_BUF_SIZE 32768 #else #define YY_BUF_SIZE 16384 #endif /* __ia64__ */ #endif /* The state buf must be large enough to hold one state per character in the main buffer. */ #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) #ifndef YY_TYPEDEF_YY_BUFFER_STATE #define YY_TYPEDEF_YY_BUFFER_STATE typedef struct yy_buffer_state *YY_BUFFER_STATE; #endif #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef size_t yy_size_t; #endif extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) #define YY_LINENO_REWIND_TO(ptr) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ yy_size_t yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ int yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via yyrestart()), so that the user can continue scanning by * just pointing yyin at a new input file. */ #define YY_BUFFER_EOF_PENDING 2 }; #endif /* !YY_STRUCT_YY_BUFFER_STATE */ /* Stack of input buffers. */ static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ /* We provide macros for accessing buffer states in case in the * future we want to put the buffer states in a more general * "scanner state". * * Returns the top of the stack, or NULL. */ #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ : NULL) /* Same as previous macro, but useful when we know that the buffer stack is not * NULL or when we need an lvalue. For internal use only. */ #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] /* yy_hold_char holds the character lost when yytext is formed. */ static char yy_hold_char; static int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = NULL; static int yy_init = 0; /* whether we need to initialize */ static int yy_start = 0; /* start state number */ /* Flag which is used to allow yywrap()'s to do buffer switches * instead of setting up a fresh yyin. A bit of a hack ... */ static int yy_did_buffer_switch_on_eof; void yyrestart (FILE *input_file ); void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); void yy_delete_buffer (YY_BUFFER_STATE b ); void yy_flush_buffer (YY_BUFFER_STATE b ); void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); void yypop_buffer_state (void ); static void yyensure_buffer_stack (void ); static void yy_load_buffer_state (void ); static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ typedef unsigned char YY_CHAR; FILE *yyin = NULL, *yyout = NULL; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #ifdef yytext_ptr #undef yytext_ptr #endif #define yytext_ptr yytext static yy_state_type yy_get_previous_state (void ); static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); static int yy_get_next_buffer (void ); static void yynoreturn yy_fatal_error (yyconst char* msg ); /* Done after the current pattern has been matched and before the * corresponding action - sets up yytext. */ #define YY_DO_BEFORE_ACTION \ (yytext_ptr) = yy_bp; \ (yytext_ptr) -= (yy_more_len); \ yyleng = (int) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 283 #define YY_END_OF_BUFFER 284 /* 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[2799] = { 0, 1, 1, 265, 265, 269, 269, 273, 273, 277, 277, 1, 1, 284, 281, 1, 263, 263, 282, 2, 282, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 265, 266, 266, 267, 282, 269, 270, 270, 271, 282, 276, 273, 274, 274, 275, 282, 277, 278, 278, 279, 282, 280, 264, 2, 268, 282, 280, 281, 0, 1, 2, 2, 2, 2, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 265, 0, 269, 0, 276, 0, 273, 277, 0, 280, 0, 2, 2, 280, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 280, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 110, 281, 281, 281, 281, 281, 281, 281, 280, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 92, 281, 281, 281, 281, 281, 281, 8, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 115, 281, 280, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 280, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 51, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 206, 281, 14, 15, 281, 18, 17, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 109, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 191, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 3, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 280, 281, 281, 281, 281, 281, 281, 281, 256, 281, 281, 255, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 272, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 54, 281, 230, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 55, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 180, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 20, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 132, 281, 281, 272, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 90, 281, 281, 281, 281, 281, 281, 281, 238, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 153, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 131, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 89, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 31, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 32, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 52, 281, 281, 281, 281, 281, 281, 281, 281, 281, 108, 281, 281, 281, 281, 281, 107, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 53, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 154, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 42, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 221, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 46, 281, 47, 281, 281, 281, 281, 93, 281, 94, 281, 281, 281, 281, 91, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 7, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 199, 281, 281, 281, 281, 134, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 43, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 172, 281, 171, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 16, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 56, 281, 281, 281, 281, 281, 281, 281, 281, 179, 281, 281, 281, 281, 281, 96, 281, 95, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 164, 281, 281, 281, 281, 281, 281, 281, 281, 116, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 74, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 78, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 50, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 167, 168, 281, 281, 232, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 6, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 236, 281, 281, 281, 257, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 40, 281, 281, 281, 281, 281, 281, 281, 281, 160, 281, 281, 281, 111, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 184, 281, 161, 281, 281, 281, 196, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 41, 281, 281, 281, 281, 281, 281, 281, 281, 281, 113, 101, 281, 102, 281, 281, 281, 100, 281, 281, 281, 281, 281, 281, 281, 281, 129, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 220, 281, 281, 281, 281, 281, 281, 281, 281, 162, 281, 281, 281, 281, 281, 165, 281, 170, 281, 281, 281, 281, 195, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 88, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 48, 281, 281, 281, 25, 281, 281, 281, 281, 281, 281, 281, 281, 19, 281, 281, 281, 281, 26, 35, 281, 139, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 63, 65, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 240, 281, 281, 281, 207, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 103, 281, 281, 281, 281, 281, 281, 281, 281, 281, 128, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 251, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 133, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 190, 281, 281, 281, 281, 281, 281, 281, 281, 260, 281, 281, 281, 281, 281, 281, 281, 281, 281, 150, 281, 281, 281, 281, 281, 281, 281, 97, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 145, 281, 155, 281, 281, 281, 281, 281, 119, 281, 281, 281, 281, 281, 84, 281, 281, 281, 281, 182, 281, 281, 281, 281, 281, 281, 197, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 212, 281, 281, 281, 281, 281, 281, 281, 281, 281, 112, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 149, 281, 281, 281, 281, 281, 66, 67, 281, 281, 281, 281, 281, 49, 281, 281, 281, 281, 281, 73, 156, 281, 173, 281, 200, 281, 166, 233, 281, 281, 281, 281, 59, 281, 158, 281, 281, 281, 281, 281, 9, 281, 281, 281, 87, 281, 281, 281, 281, 225, 281, 281, 281, 181, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 148, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 135, 281, 239, 281, 281, 281, 281, 211, 281, 281, 281, 281, 281, 281, 281, 281, 192, 281, 281, 281, 281, 231, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 254, 281, 157, 281, 281, 281, 281, 281, 58, 60, 281, 281, 281, 281, 281, 281, 281, 86, 281, 281, 281, 281, 223, 281, 281, 281, 235, 281, 281, 281, 281, 281, 281, 281, 186, 33, 27, 29, 281, 281, 281, 281, 281, 281, 281, 281, 34, 28, 30, 281, 281, 281, 281, 281, 281, 83, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 188, 185, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 57, 281, 281, 114, 281, 104, 281, 281, 281, 281, 281, 281, 281, 281, 130, 13, 281, 281, 281, 281, 281, 281, 281, 281, 281, 249, 281, 252, 281, 281, 281, 281, 281, 281, 281, 281, 12, 281, 281, 21, 281, 281, 281, 229, 281, 281, 281, 237, 281, 61, 281, 194, 281, 281, 187, 281, 281, 281, 281, 281, 281, 22, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 144, 143, 281, 281, 281, 281, 281, 281, 281, 281, 281, 189, 183, 281, 198, 281, 281, 241, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 68, 281, 281, 281, 224, 281, 281, 281, 281, 169, 281, 281, 193, 281, 281, 281, 281, 281, 281, 281, 281, 258, 259, 141, 62, 281, 281, 151, 281, 281, 98, 99, 281, 281, 281, 136, 281, 138, 281, 174, 281, 281, 281, 142, 281, 281, 201, 281, 281, 281, 281, 281, 281, 281, 121, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 208, 281, 281, 281, 23, 281, 234, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 175, 281, 281, 222, 281, 253, 281, 281, 281, 281, 44, 281, 281, 281, 281, 4, 281, 281, 120, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 204, 36, 37, 281, 281, 281, 281, 281, 281, 281, 242, 281, 281, 281, 281, 281, 281, 210, 281, 281, 281, 178, 281, 281, 281, 281, 281, 281, 281, 281, 281, 71, 281, 45, 228, 281, 205, 281, 281, 281, 11, 281, 281, 281, 281, 281, 281, 281, 176, 75, 281, 39, 281, 281, 281, 281, 281, 281, 147, 281, 281, 281, 281, 281, 123, 281, 281, 281, 281, 281, 281, 281, 281, 281, 209, 117, 281, 281, 105, 106, 281, 281, 281, 77, 81, 76, 281, 69, 281, 281, 281, 281, 10, 281, 281, 281, 226, 281, 281, 262, 38, 281, 281, 281, 146, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 82, 80, 281, 70, 250, 281, 281, 281, 281, 281, 163, 281, 281, 281, 177, 281, 281, 281, 281, 281, 281, 137, 64, 281, 281, 281, 281, 281, 243, 281, 281, 281, 281, 281, 281, 281, 118, 281, 79, 124, 125, 126, 127, 72, 281, 227, 281, 140, 281, 281, 281, 281, 203, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 152, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 85, 281, 202, 281, 219, 247, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 5, 281, 281, 281, 248, 281, 281, 281, 281, 281, 281, 281, 281, 24, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 122, 281, 281, 281, 281, 281, 281, 281, 281, 281, 159, 281, 281, 281, 281, 281, 281, 281, 281, 281, 244, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 261, 281, 281, 215, 281, 281, 281, 281, 281, 245, 281, 281, 281, 281, 281, 281, 246, 281, 281, 281, 213, 281, 216, 217, 281, 281, 281, 281, 281, 214, 218, 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, 1, 5, 6, 1, 1, 1, 7, 1, 1, 1, 1, 1, 8, 1, 1, 1, 9, 1, 10, 11, 1, 12, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 14, 1, 1, 1, 1, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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[41] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_uint16_t yy_base[2813] = { 0, 0, 0, 38, 41, 44, 46, 59, 65, 71, 77, 90, 112, 2348, 2233, 81, 5464, 5464, 5464, 96, 52, 106, 63, 107, 111, 70, 128, 130, 133, 57, 88, 76, 135, 141, 117, 148, 145, 160, 164, 185, 176, 191, 152, 2084, 5464, 5464, 5464, 107, 1644, 5464, 5464, 5464, 165, 1483, 1462, 5464, 5464, 5464, 211, 1373, 5464, 5464, 5464, 180, 1249, 5464, 217, 5464, 221, 168, 1136, 225, 189, 0, 232, 0, 0, 226, 189, 85, 221, 114, 227, 234, 156, 219, 235, 239, 236, 238, 132, 246, 242, 241, 252, 244, 247, 266, 243, 258, 273, 275, 187, 277, 278, 267, 274, 280, 283, 287, 289, 295, 297, 298, 299, 304, 305, 306, 311, 307, 315, 309, 313, 330, 318, 329, 325, 320, 335, 336, 338, 339, 340, 343, 342, 346, 347, 349, 350, 358, 1033, 371, 979, 375, 576, 383, 557, 369, 373, 198, 387, 391, 0, 383, 385, 393, 370, 389, 392, 257, 395, 394, 396, 401, 397, 399, 415, 398, 405, 418, 420, 424, 421, 428, 412, 432, 433, 434, 436, 445, 443, 448, 426, 449, 450, 451, 452, 454, 460, 458, 455, 467, 476, 471, 479, 487, 474, 488, 477, 484, 495, 491, 498, 499, 490, 500, 501, 502, 503, 504, 506, 508, 510, 511, 512, 516, 517, 518, 524, 525, 519, 534, 530, 539, 531, 536, 540, 550, 552, 535, 559, 543, 556, 561, 564, 568, 565, 563, 566, 569, 570, 572, 573, 574, 575, 583, 591, 587, 590, 594, 596, 599, 597, 600, 601, 578, 608, 604, 610, 605, 619, 617, 620, 622, 618, 624, 625, 626, 627, 637, 629, 638, 640, 647, 644, 645, 649, 656, 633, 651, 652, 655, 657, 659, 660, 663, 661, 670, 664, 672, 674, 683, 681, 676, 689, 685, 687, 690, 697, 680, 691, 710, 715, 696, 704, 711, 716, 719, 723, 727, 729, 720, 731, 733, 734, 717, 739, 744, 740, 741, 748, 747, 750, 759, 743, 763, 749, 771, 751, 767, 789, 773, 774, 768, 772, 5464, 775, 777, 813, 781, 797, 804, 801, 799, 800, 787, 809, 811, 823, 666, 814, 821, 837, 822, 824, 826, 833, 838, 836, 853, 839, 842, 849, 850, 858, 854, 769, 855, 859, 863, 865, 866, 870, 867, 868, 871, 873, 876, 877, 878, 880, 885, 888, 891, 896, 889, 902, 909, 886, 906, 913, 914, 904, 915, 905, 920, 921, 922, 932, 927, 928, 929, 930, 933, 936, 937, 939, 940, 941, 944, 942, 951, 955, 948, 956, 5464, 961, 954, 963, 964, 965, 966, 5464, 968, 967, 970, 980, 972, 982, 989, 977, 990, 999, 983, 992, 1002, 997, 1000, 1004, 1006, 1008, 1009, 1007, 1010, 1013, 1016, 1036, 1018, 1017, 1019, 1021, 1025, 1024, 1034, 1030, 1043, 1031, 1049, 1059, 1051, 1054, 1046, 1060, 1063, 1068, 1065, 1070, 1071, 1072, 1073, 1074, 1075, 1077, 1078, 1081, 5464, 1076, 1090, 1089, 1092, 1097, 1098, 1099, 1100, 1101, 1102, 1103, 1105, 1110, 1109, 1120, 1111, 1127, 1122, 1125, 1124, 1126, 1130, 1129, 1131, 1133, 1143, 1139, 1145, 1154, 1157, 1156, 1159, 1166, 1146, 1161, 1163, 1162, 1165, 1169, 1170, 1148, 1174, 1176, 1183, 1178, 1179, 1184, 1185, 1192, 1190, 1187, 1188, 1194, 1198, 1202, 1203, 1204, 1207, 1210, 1217, 1206, 1213, 1214, 1219, 1223, 1222, 1228, 1229, 1230, 1231, 1232, 1234, 1237, 1235, 1239, 1238, 1248, 1245, 1253, 1257, 1258, 1241, 1261, 1268, 1264, 1271, 1267, 1272, 1279, 1274, 1276, 1266, 1288, 1280, 1281, 1291, 1292, 1300, 1293, 1297, 1304, 1283, 1301, 1306, 1309, 1311, 1307, 1312, 1314, 1315, 1316, 1317, 1318, 1320, 1322, 1323, 1319, 1331, 1324, 1346, 1333, 1342, 1329, 1344, 1345, 1350, 1351, 1352, 1353, 1357, 1355, 1358, 1359, 1364, 1360, 1361, 1366, 1367, 1374, 1379, 1376, 1382, 1386, 1388, 1389, 1390, 1393, 1392, 1397, 1395, 1402, 1394, 1403, 1404, 1408, 1410, 1411, 1415, 1418, 1421, 1416, 5464, 1412, 1428, 1426, 1429, 1430, 1434, 1435, 1443, 1436, 1438, 1439, 1440, 1441, 1451, 5464, 1447, 5464, 5464, 1449, 5464, 5464, 1455, 1448, 1452, 1467, 1474, 1476, 1458, 1472, 1478, 1479, 1486, 1500, 1482, 1484, 1485, 1481, 1488, 1494, 1489, 1497, 1495, 1508, 1511, 1514, 1515, 1521, 1513, 1522, 1524, 1526, 1529, 1527, 1530, 1532, 1536, 1533, 1537, 1539, 1538, 1540, 1543, 1558, 5464, 1544, 1559, 1562, 1567, 1563, 1564, 1565, 1568, 1554, 1569, 1571, 1575, 1580, 1577, 1581, 1588, 1583, 5464, 1584, 1587, 1585, 1591, 1592, 1598, 1597, 1599, 1604, 1601, 1606, 1608, 1607, 1609, 5464, 1613, 1619, 1614, 1621, 1622, 1610, 1627, 1623, 1628, 1629, 1632, 1633, 1634, 1646, 1641, 1637, 1639, 1642, 1654, 1652, 1657, 1664, 1655, 1659, 1661, 1665, 1667, 1670, 1677, 1669, 1678, 1673, 1680, 1682, 1676, 1679, 1687, 1684, 1696, 1694, 1698, 1700, 1702, 1709, 1704, 1707, 1708, 1711, 1713, 1710, 1717, 1719, 1714, 1722, 1723, 1727, 5464, 1729, 1730, 5464, 1731, 1733, 1755, 1734, 1737, 1732, 1739, 1740, 1745, 1748, 1743, 1756, 1759, 1768, 1769, 1770, 1772, 1775, 1777, 1778, 1779, 1781, 1785, 1794, 1799, 1797, 1789, 1804, 1786, 1801, 1803, 1822, 1802, 1805, 1811, 1806, 1812, 1819, 1807, 1817, 1816, 1826, 1833, 1834, 5464, 1843, 1844, 1827, 1839, 1855, 1851, 1840, 1853, 1854, 1850, 1864, 1860, 1857, 1865, 1809, 1861, 1867, 1868, 1872, 1873, 1871, 1884, 5464, 1874, 5464, 1879, 1883, 1885, 1888, 1886, 1889, 1891, 1892, 1898, 1899, 1908, 1905, 5464, 1895, 1915, 1912, 1917, 1910, 1919, 1922, 1921, 1923, 1931, 1926, 1933, 1929, 1928, 1930, 1936, 1937, 1942, 1943, 1944, 5464, 1945, 1950, 1952, 1960, 1962, 1955, 1957, 1965, 1959, 1963, 1967, 1969, 1970, 1979, 1980, 1971, 1981, 1984, 1991, 5464, 1978, 1988, 1998, 1994, 1990, 1995, 1997, 2001, 2003, 2002, 2005, 2012, 2015, 2007, 2011, 2019, 2010, 2021, 2024, 2027, 2025, 2028, 2026, 2030, 5464, 2031, 2033, 124, 2034, 2038, 2039, 2041, 2040, 2057, 2042, 2058, 2060, 2059, 1750, 2061, 2063, 2065, 2067, 2068, 2069, 2071, 2070, 2073, 5464, 2075, 2076, 2080, 2081, 2087, 2082, 2089, 5464, 2099, 2086, 2097, 2095, 2044, 2101, 2106, 2107, 2110, 2111, 2113, 2114, 5464, 2118, 2120, 2121, 2122, 2123, 2127, 2130, 2132, 2134, 2135, 2136, 2137, 2138, 2141, 2140, 2143, 2144, 2150, 2146, 2151, 2155, 2157, 5464, 2169, 2158, 2160, 2165, 2173, 2167, 2182, 2170, 2174, 2177, 2183, 2191, 2180, 2186, 2198, 2201, 2203, 2197, 2211, 2207, 2213, 2215, 2219, 2221, 2209, 2217, 2222, 2223, 2225, 2227, 2236, 2238, 2237, 2240, 2234, 2246, 2251, 2253, 5464, 2255, 2241, 2257, 2258, 2266, 2261, 2263, 2262, 2269, 2270, 2271, 2272, 2273, 2274, 2277, 2284, 2281, 2282, 2292, 2286, 2288, 2295, 2296, 5464, 2301, 2300, 2302, 2309, 2306, 2311, 2312, 2314, 2315, 2316, 2318, 2320, 2322, 2323, 2324, 2330, 2331, 5464, 2332, 2341, 2342, 2344, 2345, 2348, 2327, 2338, 2349, 2187, 2351, 5464, 2360, 2363, 2361, 2365, 2358, 2362, 2368, 2370, 2371, 5464, 2372, 2373, 2380, 2382, 2377, 5464, 2384, 2375, 2385, 2386, 2387, 2388, 2393, 2390, 2397, 2399, 2402, 2404, 2400, 2408, 5464, 2409, 2420, 2411, 2412, 2416, 2418, 2415, 2425, 2426, 2433, 2427, 2442, 2444, 2438, 2437, 2439, 2445, 2446, 2450, 2447, 2453, 5464, 2455, 2454, 2457, 2458, 2460, 2461, 2462, 2476, 2466, 2467, 2471, 2474, 2477, 2480, 2482, 2483, 2488, 2484, 2491, 2494, 2496, 2497, 2498, 2501, 2510, 2513, 2508, 2514, 5464, 2517, 2518, 2512, 2505, 2520, 2524, 2525, 2526, 2528, 2529, 2530, 2531, 2533, 2542, 2544, 2540, 2546, 2549, 2550, 2553, 2551, 2554, 2555, 2563, 2556, 2558, 2559, 2565, 2572, 2564, 2567, 2575, 2576, 2577, 2579, 2581, 2587, 2582, 2580, 2590, 2593, 2597, 2599, 2602, 2603, 2604, 5464, 2608, 2605, 2607, 2609, 2615, 2617, 2619, 2626, 2628, 2618, 2621, 2629, 2637, 2634, 5464, 2635, 5464, 2636, 2640, 2641, 2650, 5464, 2647, 5464, 2648, 2655, 2643, 2652, 5464, 2658, 2656, 2660, 2662, 2664, 2665, 2666, 2672, 2667, 2674, 2670, 2677, 2680, 2682, 2675, 2684, 2688, 2681, 2696, 2691, 2693, 2698, 2699, 2700, 5464, 2707, 2703, 2708, 2709, 2710, 2711, 2714, 2712, 2719, 2720, 2716, 2726, 2723, 2730, 2733, 2741, 2727, 2748, 5464, 2737, 2745, 2734, 2746, 5464, 2749, 2750, 2755, 2757, 2759, 2760, 2761, 2762, 2763, 2767, 2766, 2769, 2777, 2780, 2781, 2783, 2768, 2789, 2797, 2794, 2795, 2800, 2804, 2802, 2803, 2805, 2806, 2808, 2809, 2817, 2819, 2810, 2820, 2818, 2821, 2830, 2822, 2824, 2831, 2832, 2770, 2833, 2834, 2835, 2843, 2836, 2838, 2839, 2840, 5464, 2845, 2849, 2850, 2859, 2857, 2854, 2862, 2863, 2864, 2865, 2867, 2866, 2871, 5464, 2870, 5464, 2876, 2879, 2884, 2889, 2891, 2892, 2894, 2896, 2897, 2899, 2900, 2898, 2902, 2906, 2908, 2910, 2913, 2922, 2912, 2915, 2918, 2923, 2924, 2926, 5464, 2927, 2929, 2930, 2933, 2934, 2939, 2941, 2945, 2935, 2946, 2948, 2961, 5464, 2950, 2965, 2951, 2963, 2974, 2970, 2977, 2972, 5464, 2973, 2976, 2985, 2981, 2980, 5464, 2984, 5464, 2982, 2986, 2987, 2988, 2991, 2996, 2998, 2999, 3006, 3002, 3003, 3007, 3008, 3011, 3016, 3014, 3017, 5464, 3019, 3020, 3022, 3028, 3029, 3031, 3032, 3021, 5464, 3037, 3039, 3042, 3043, 3045, 3047, 3048, 3049, 3051, 3053, 3050, 3054, 3066, 3058, 3057, 3067, 3072, 3076, 3078, 5464, 3080, 3059, 3087, 3083, 3084, 3086, 3089, 3090, 3091, 3093, 3094, 3095, 3097, 3102, 3101, 3098, 3099, 3104, 3105, 3118, 3115, 3107, 3119, 3123, 3122, 3125, 3129, 3130, 3133, 3135, 3126, 3137, 3140, 3144, 3147, 3149, 3150, 3157, 3152, 5464, 3159, 3156, 3164, 3160, 3163, 3162, 3169, 3173, 3175, 3171, 3172, 3182, 3177, 5464, 3184, 3179, 3196, 3190, 3180, 3205, 3200, 3186, 3181, 3204, 3207, 3210, 3208, 3212, 3213, 3216, 3217, 5464, 5464, 3219, 3220, 5464, 3221, 3222, 3231, 3224, 3226, 3232, 3227, 3235, 3244, 3238, 3240, 5464, 3242, 3252, 3248, 3250, 3255, 3259, 3263, 3260, 3258, 3251, 3254, 3266, 3269, 3270, 3274, 3275, 3283, 3279, 3280, 3281, 5464, 3282, 3284, 3289, 5464, 3286, 3287, 3290, 3297, 3293, 3294, 3307, 3309, 3310, 3311, 3312, 3313, 3314, 3321, 3320, 3319, 3327, 3328, 3332, 3330, 3338, 3340, 3348, 3322, 3349, 3344, 3345, 3356, 5464, 3351, 3354, 3352, 3353, 3361, 3359, 3366, 3362, 5464, 3365, 3367, 3368, 5464, 3369, 3375, 3380, 3383, 3371, 3390, 3387, 3389, 3392, 3388, 5464, 3395, 5464, 3396, 3401, 3402, 5464, 3404, 3405, 3406, 3408, 3409, 3410, 3414, 3421, 3412, 3422, 3423, 3424, 3425, 3428, 3436, 3426, 5464, 3434, 3427, 3438, 3448, 3442, 3444, 3437, 3450, 3439, 5464, 5464, 3454, 5464, 3457, 3459, 3461, 5464, 3463, 3462, 3470, 3465, 3466, 3469, 3473, 3479, 5464, 3474, 3468, 3483, 3480, 3485, 3486, 3490, 3491, 3492, 3493, 3494, 5464, 3495, 3497, 3505, 3496, 3499, 3507, 3511, 3501, 5464, 3512, 3520, 3523, 3524, 3525, 5464, 3526, 5464, 3527, 3528, 3531, 3530, 5464, 3534, 3538, 3539, 3542, 3543, 3546, 3550, 3544, 3552, 3559, 3556, 3554, 3558, 5464, 3557, 3560, 3564, 3568, 3570, 3571, 3579, 3575, 3581, 3578, 3588, 3577, 3592, 3595, 3590, 3597, 3582, 3598, 3608, 3601, 3600, 5464, 3603, 3611, 3613, 5464, 3604, 3605, 3621, 3614, 3622, 3623, 3624, 3626, 5464, 3630, 3631, 3628, 3629, 5464, 5464, 3644, 5464, 3645, 3635, 3637, 3636, 3646, 3648, 3653, 3657, 3649, 3660, 3654, 3665, 3672, 3673, 3675, 3674, 3676, 3670, 5464, 5464, 3680, 3681, 3683, 3686, 3687, 3689, 3691, 3699, 3695, 3697, 3703, 3705, 3712, 5464, 3704, 3694, 3711, 5464, 3713, 3716, 3717, 3718, 3719, 3723, 3720, 3726, 3727, 3722, 3729, 3728, 3730, 3732, 3739, 3735, 3743, 3746, 5464, 3747, 3749, 3750, 3752, 3753, 3757, 3758, 3759, 3760, 5464, 3763, 3765, 3767, 3772, 3766, 3773, 3782, 3788, 3790, 3784, 3791, 3792, 3794, 3796, 3797, 5464, 3800, 3798, 3801, 3762, 3808, 3810, 3811, 3813, 3814, 3816, 3819, 3823, 3825, 3817, 3820, 3826, 5464, 3828, 3836, 3827, 3838, 3839, 3841, 3840, 3848, 3851, 3842, 3844, 3852, 3854, 5464, 3855, 3856, 3858, 3862, 3868, 3863, 3865, 3869, 5464, 3877, 3870, 3874, 3872, 3878, 3887, 3883, 3889, 3885, 5464, 3894, 3893, 3895, 3896, 3897, 3899, 3902, 5464, 3903, 3909, 3901, 3917, 3912, 3919, 3918, 3915, 3922, 3925, 3927, 3928, 3929, 3930, 3932, 3939, 5464, 3931, 5464, 3941, 3945, 3948, 3952, 3947, 5464, 3949, 3954, 3956, 3957, 3959, 5464, 3962, 3960, 3958, 3963, 5464, 3977, 3966, 3964, 3978, 3982, 3985, 5464, 3988, 3989, 3991, 3999, 4000, 3998, 3995, 4001, 4003, 4004, 4005, 4006, 5464, 3979, 4008, 4013, 4014, 4016, 4010, 4017, 4023, 4020, 5464, 4026, 4027, 4028, 4029, 4032, 4034, 4035, 4044, 4039, 4037, 5464, 4041, 4046, 4056, 4052, 4059, 5464, 5464, 4049, 4064, 4066, 4042, 4070, 5464, 4058, 4073, 4072, 4075, 4076, 5464, 5464, 4078, 5464, 4079, 5464, 4080, 5464, 5464, 4081, 4082, 4083, 4090, 5464, 4092, 5464, 4093, 4095, 4098, 4099, 4100, 5464, 4101, 4103, 4107, 5464, 4102, 4110, 4109, 4113, 5464, 4117, 4112, 4118, 5464, 4122, 4125, 4129, 4130, 4137, 4119, 4126, 4132, 4138, 4142, 4145, 4147, 4149, 4150, 4151, 4153, 4155, 4158, 4159, 4157, 4160, 4164, 4166, 4168, 4161, 4172, 4174, 4175, 4178, 4180, 4182, 4184, 4185, 4187, 4188, 4189, 4190, 4191, 4194, 4197, 4199, 5464, 4198, 4196, 4202, 4205, 4206, 4210, 4217, 4224, 4227, 4228, 5464, 4230, 5464, 4232, 4219, 4234, 4221, 5464, 4235, 4236, 4238, 4239, 4241, 4242, 4243, 4246, 5464, 4249, 4244, 4256, 4252, 5464, 4258, 4264, 4253, 4257, 4269, 4268, 4270, 4272, 4273, 4274, 4278, 4280, 4287, 4282, 4284, 4285, 4286, 4292, 4294, 4296, 4295, 4303, 4305, 4309, 5464, 4298, 5464, 4306, 4310, 4311, 4313, 4316, 5464, 5464, 4319, 4320, 4322, 4325, 4324, 4327, 4328, 5464, 4330, 4333, 4344, 4334, 5464, 4336, 4338, 4349, 5464, 4341, 4351, 4346, 4355, 4352, 4359, 4361, 5464, 5464, 5464, 5464, 4362, 4364, 4366, 4367, 4368, 4369, 4373, 4370, 5464, 5464, 5464, 4376, 4374, 4382, 4375, 4384, 4389, 5464, 4390, 4391, 4393, 4392, 4395, 4400, 4401, 4404, 4402, 4406, 4416, 4412, 4413, 4411, 4418, 4422, 4428, 5464, 5464, 4419, 4430, 4431, 4439, 4435, 4436, 4443, 4442, 4444, 4445, 4447, 4448, 4450, 4451, 5464, 4452, 4458, 5464, 4453, 5464, 4459, 4466, 4460, 4467, 4468, 4470, 4472, 4474, 5464, 5464, 4469, 4475, 4481, 4485, 4482, 4487, 4476, 4490, 4486, 5464, 4492, 5464, 4493, 4494, 4503, 4510, 4512, 4509, 4511, 4515, 5464, 4514, 4516, 5464, 4517, 4518, 4522, 5464, 4524, 4527, 4531, 5464, 4534, 5464, 4536, 5464, 4528, 4544, 5464, 4539, 4540, 4546, 4550, 4551, 4542, 5464, 4547, 4553, 4556, 4561, 4558, 4563, 4564, 4566, 4574, 4570, 4567, 5464, 5464, 4578, 4575, 4576, 4579, 4581, 4589, 4584, 4586, 4592, 5464, 5464, 4588, 5464, 4594, 4597, 5464, 4585, 4601, 4595, 4603, 4605, 4606, 4607, 4615, 4611, 4616, 4628, 4617, 4619, 4631, 4633, 4637, 4639, 4625, 4642, 4629, 4620, 4635, 4643, 4645, 5464, 4651, 4652, 4648, 5464, 4654, 4657, 4659, 4656, 5464, 4660, 4662, 5464, 4667, 4673, 4670, 4668, 4675, 4682, 4678, 4679, 5464, 5464, 5464, 5464, 4684, 4680, 5464, 4686, 4687, 5464, 5464, 4689, 4692, 4693, 5464, 4694, 5464, 4696, 5464, 4697, 4703, 4700, 5464, 4705, 4707, 5464, 4716, 4719, 4721, 4722, 4712, 4723, 4724, 5464, 4733, 4725, 4734, 4736, 4726, 4728, 4738, 4737, 4746, 4741, 4748, 5464, 4745, 4750, 4751, 5464, 4753, 5464, 4754, 4756, 4757, 4759, 4758, 4760, 4762, 4772, 4763, 4776, 4773, 5464, 4781, 4783, 5464, 4778, 5464, 4785, 4786, 4787, 4788, 5464, 4791, 4794, 4795, 4796, 5464, 4797, 4805, 5464, 4801, 4800, 4808, 4810, 4804, 4812, 4816, 4813, 4817, 4820, 4821, 4827, 4834, 4828, 5464, 5464, 5464, 4823, 4830, 4844, 4840, 4842, 4849, 4846, 5464, 4847, 4848, 4851, 4860, 4855, 4857, 5464, 4859, 4861, 4862, 5464, 4866, 4868, 4869, 4863, 4876, 4879, 4883, 4885, 4886, 5464, 4888, 5464, 5464, 4875, 5464, 4889, 4890, 4892, 5464, 4896, 4899, 4897, 4898, 4901, 4902, 4903, 5464, 5464, 4905, 5464, 4910, 4906, 4922, 4915, 4919, 4924, 5464, 4914, 4925, 4926, 4927, 4930, 5464, 4932, 4928, 4933, 4935, 4938, 4941, 4942, 4937, 4943, 5464, 5464, 4944, 4949, 5464, 5464, 4951, 4966, 4963, 5464, 5464, 5464, 4969, 5464, 4971, 4975, 4979, 4974, 5464, 4981, 4982, 4983, 5464, 4984, 4986, 5464, 5464, 4954, 4987, 4988, 5464, 4990, 4992, 4993, 4996, 4999, 5002, 5004, 5006, 5011, 4952, 5007, 5012, 5013, 5014, 5016, 5020, 5023, 5024, 5464, 5464, 5026, 5464, 5464, 5031, 5036, 5038, 5041, 5043, 5464, 5044, 5046, 5028, 5464, 5050, 5047, 5051, 5054, 5052, 5057, 5464, 5464, 5058, 5061, 5033, 5065, 5060, 5464, 5068, 5075, 5070, 5072, 5073, 5079, 5074, 5464, 5080, 5464, 5464, 5464, 5464, 5464, 5464, 5082, 5464, 5087, 5464, 5081, 5089, 5083, 5088, 5464, 5091, 5094, 5096, 4497, 5098, 5099, 5106, 5107, 5109, 5108, 5110, 5115, 5111, 5116, 5464, 5117, 5121, 5125, 5123, 5128, 5138, 5140, 5133, 5141, 5142, 5143, 5144, 5146, 5147, 5118, 5150, 5153, 5155, 5151, 5464, 5157, 5464, 5156, 5464, 5464, 5159, 5165, 5160, 5163, 5175, 5183, 5167, 5176, 5178, 5180, 5464, 5184, 5185, 5186, 5464, 5187, 5188, 5191, 5192, 5195, 5194, 5196, 5198, 5464, 5200, 5202, 5212, 5209, 5222, 5219, 5223, 5224, 5225, 5215, 5232, 5231, 5238, 5464, 5235, 5227, 5233, 5241, 5242, 5249, 5244, 5245, 5247, 5464, 5251, 5253, 5252, 5254, 5255, 5256, 5266, 5259, 5268, 5464, 5270, 5271, 5275, 5276, 5278, 5280, 5282, 5283, 5287, 5288, 5290, 5298, 5284, 5299, 5295, 5300, 5301, 5464, 5304, 5307, 5464, 5308, 5310, 5309, 5311, 5316, 5464, 5319, 5312, 5321, 5322, 5325, 5327, 5464, 5333, 5336, 5337, 5464, 5338, 5464, 5464, 5341, 5329, 5339, 5350, 5352, 5464, 5464, 5464, 5372, 5379, 5386, 5393, 5400, 88, 5407, 5414, 5421, 5428, 5435, 5442, 5449, 5456 } ; static yyconst flex_int16_t yy_def[2813] = { 0, 2798, 1, 2799, 2799, 2800, 2800, 2801, 2801, 2802, 2802, 2803, 2803, 2798, 2804, 2798, 2798, 2798, 2798, 2805, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2806, 2798, 2798, 2798, 2806, 2807, 2798, 2798, 2798, 2807, 2808, 2798, 2798, 2798, 2798, 2808, 2809, 2798, 2798, 2798, 2809, 2810, 2798, 2811, 2798, 2810, 2810, 2804, 2804, 2798, 2812, 2805, 2812, 2805, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2806, 2806, 2807, 2807, 2808, 2808, 2798, 2809, 2809, 2810, 2810, 2811, 2811, 2810, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2810, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2810, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2810, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2810, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2798, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2810, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2810, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2798, 2804, 2798, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2798, 2798, 2804, 2804, 2798, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2798, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2798, 2798, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2798, 2798, 2798, 2798, 2798, 2804, 2798, 2804, 2798, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2798, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2804, 2804, 2804, 2798, 2804, 2804, 2804, 2798, 2804, 2798, 2798, 2804, 2804, 2804, 2804, 2804, 2798, 2798, 0, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798 } ; static yyconst flex_uint16_t yy_nxt[5505] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 14, 18, 20, 21, 22, 23, 24, 25, 26, 14, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 14, 14, 14, 42, 44, 45, 46, 44, 45, 46, 49, 50, 49, 50, 51, 47, 51, 70, 47, 70, 70, 52, 70, 52, 54, 55, 56, 57, 70, 18, 54, 55, 56, 57, 71, 18, 58, 60, 61, 62, 71, 82, 58, 60, 61, 62, 72, 71, 63, 102, 73, 92, 70, 71, 63, 15, 16, 17, 65, 66, 67, 75, 71, 75, 75, 71, 75, 68, 104, 156, 103, 93, 75, 76, 140, 140, 69, 15, 16, 17, 65, 66, 67, 71, 71, 83, 77, 78, 71, 68, 79, 71, 84, 87, 71, 80, 85, 88, 69, 86, 89, 150, 90, 91, 81, 71, 94, 71, 96, 71, 71, 158, 71, 105, 98, 112, 97, 99, 71, 109, 95, 106, 71, 110, 100, 71, 101, 107, 171, 71, 113, 108, 142, 71, 114, 142, 118, 71, 119, 111, 115, 71, 120, 116, 139, 150, 123, 147, 147, 124, 117, 162, 121, 71, 72, 122, 125, 132, 73, 153, 126, 127, 71, 128, 71, 129, 71, 133, 71, 136, 155, 134, 135, 137, 130, 150, 144, 138, 144, 144, 131, 144, 75, 190, 75, 75, 149, 75, 149, 149, 70, 149, 70, 70, 152, 70, 71, 75, 71, 75, 75, 70, 75, 71, 71, 163, 154, 159, 75, 76, 157, 71, 71, 71, 160, 71, 71, 172, 71, 71, 71, 71, 165, 71, 71, 182, 164, 161, 166, 71, 167, 168, 169, 174, 71, 71, 173, 170, 175, 179, 176, 177, 180, 71, 71, 247, 188, 181, 178, 183, 71, 71, 71, 184, 71, 71, 185, 71, 193, 191, 71, 199, 194, 196, 71, 198, 71, 200, 197, 186, 187, 189, 71, 202, 71, 71, 71, 201, 195, 192, 206, 71, 71, 71, 71, 203, 71, 208, 71, 211, 71, 209, 71, 205, 204, 71, 213, 71, 224, 207, 222, 216, 71, 210, 212, 214, 71, 71, 221, 217, 218, 215, 71, 71, 223, 71, 71, 71, 225, 71, 71, 219, 231, 71, 71, 220, 71, 71, 234, 227, 226, 233, 237, 230, 228, 71, 235, 229, 140, 140, 147, 147, 142, 232, 236, 142, 148, 71, 144, 238, 144, 144, 149, 144, 149, 149, 75, 149, 75, 75, 150, 75, 71, 239, 241, 243, 71, 240, 152, 71, 71, 71, 71, 71, 71, 71, 71, 245, 71, 242, 248, 244, 71, 251, 246, 253, 254, 257, 250, 71, 249, 259, 71, 255, 252, 71, 258, 71, 71, 260, 256, 71, 263, 71, 261, 71, 268, 264, 269, 71, 71, 71, 265, 71, 270, 271, 274, 278, 266, 267, 71, 262, 71, 272, 276, 71, 71, 71, 71, 71, 277, 71, 71, 273, 283, 71, 284, 71, 285, 280, 289, 279, 281, 286, 71, 275, 282, 292, 71, 293, 294, 71, 290, 71, 71, 287, 71, 288, 296, 298, 291, 71, 295, 299, 71, 71, 301, 71, 71, 303, 304, 297, 71, 302, 305, 71, 71, 71, 71, 71, 71, 71, 300, 71, 307, 71, 309, 71, 71, 71, 306, 311, 313, 71, 71, 71, 71, 314, 312, 308, 318, 71, 71, 310, 315, 322, 320, 71, 71, 316, 325, 71, 71, 71, 317, 327, 71, 71, 321, 319, 71, 329, 146, 330, 328, 323, 324, 71, 326, 71, 332, 331, 333, 71, 334, 336, 71, 335, 71, 338, 71, 71, 71, 71, 339, 71, 150, 71, 342, 71, 71, 71, 71, 145, 349, 71, 347, 345, 343, 337, 71, 340, 350, 341, 71, 353, 344, 71, 71, 351, 346, 71, 352, 71, 71, 348, 71, 71, 71, 360, 359, 71, 71, 363, 361, 71, 358, 71, 354, 362, 355, 357, 356, 364, 71, 71, 71, 71, 366, 71, 367, 71, 71, 71, 71, 370, 71, 371, 373, 375, 71, 368, 365, 372, 71, 71, 369, 71, 377, 376, 374, 71, 71, 380, 71, 378, 71, 382, 71, 71, 383, 381, 71, 71, 71, 387, 71, 71, 71, 388, 71, 71, 379, 71, 390, 386, 384, 71, 392, 71, 385, 71, 394, 71, 396, 389, 391, 71, 71, 393, 71, 397, 71, 395, 71, 398, 71, 71, 71, 483, 411, 405, 407, 71, 71, 399, 416, 408, 400, 409, 412, 71, 406, 401, 402, 403, 404, 71, 71, 413, 414, 415, 71, 71, 71, 410, 71, 71, 417, 422, 71, 418, 420, 419, 71, 421, 71, 424, 71, 423, 71, 71, 425, 426, 429, 431, 71, 71, 71, 434, 71, 71, 427, 433, 71, 71, 71, 71, 71, 435, 428, 430, 436, 447, 440, 445, 71, 432, 437, 438, 71, 439, 446, 441, 71, 71, 71, 448, 71, 71, 71, 71, 71, 449, 71, 462, 442, 450, 71, 443, 460, 444, 501, 461, 71, 451, 71, 452, 464, 453, 458, 463, 459, 472, 71, 474, 150, 71, 71, 479, 475, 71, 454, 473, 476, 455, 71, 456, 71, 457, 71, 71, 465, 466, 482, 480, 478, 477, 71, 71, 71, 71, 467, 71, 468, 469, 470, 481, 486, 471, 71, 484, 485, 71, 71, 71, 71, 495, 487, 71, 492, 489, 488, 490, 494, 491, 71, 71, 493, 499, 71, 71, 71, 503, 504, 71, 71, 502, 497, 496, 71, 498, 71, 71, 71, 71, 509, 71, 71, 511, 71, 514, 512, 71, 71, 71, 500, 71, 506, 507, 505, 508, 71, 71, 510, 71, 71, 513, 71, 516, 525, 517, 515, 71, 520, 518, 519, 523, 524, 71, 527, 71, 71, 71, 528, 521, 71, 522, 526, 529, 71, 71, 71, 533, 530, 534, 531, 71, 71, 71, 537, 532, 535, 538, 71, 71, 71, 71, 539, 71, 71, 536, 542, 71, 71, 543, 71, 71, 71, 71, 540, 71, 544, 550, 549, 71, 545, 541, 71, 551, 548, 71, 71, 71, 554, 547, 546, 552, 71, 555, 71, 71, 71, 71, 71, 71, 553, 71, 557, 71, 558, 565, 556, 567, 71, 560, 143, 71, 566, 71, 71, 564, 559, 561, 563, 562, 71, 71, 569, 71, 572, 568, 574, 575, 71, 570, 71, 71, 571, 71, 573, 71, 578, 71, 71, 71, 71, 71, 577, 581, 71, 582, 584, 71, 71, 71, 71, 576, 71, 583, 597, 71, 71, 579, 580, 600, 585, 71, 71, 596, 141, 71, 586, 71, 587, 595, 601, 598, 599, 588, 71, 589, 602, 71, 604, 603, 71, 590, 71, 591, 606, 71, 592, 593, 609, 605, 71, 71, 611, 594, 71, 607, 71, 610, 608, 71, 613, 71, 71, 71, 71, 71, 71, 71, 71, 71, 619, 614, 71, 615, 626, 620, 624, 616, 623, 612, 71, 150, 617, 71, 622, 625, 618, 621, 71, 71, 71, 71, 71, 71, 71, 627, 71, 633, 635, 637, 71, 71, 71, 628, 630, 638, 631, 634, 629, 636, 632, 71, 640, 71, 639, 71, 71, 71, 71, 642, 71, 71, 71, 646, 71, 641, 645, 71, 651, 643, 71, 647, 644, 652, 71, 654, 71, 71, 648, 71, 650, 649, 656, 653, 655, 71, 657, 71, 71, 658, 71, 659, 71, 71, 71, 661, 71, 71, 660, 662, 71, 71, 667, 665, 664, 71, 666, 71, 670, 71, 71, 669, 663, 671, 71, 71, 71, 675, 71, 71, 673, 71, 678, 71, 668, 71, 676, 679, 672, 71, 682, 680, 677, 71, 71, 71, 674, 71, 71, 684, 685, 71, 688, 681, 71, 71, 689, 690, 71, 691, 71, 683, 686, 71, 71, 693, 687, 694, 695, 71, 71, 71, 71, 71, 701, 71, 71, 699, 71, 71, 71, 692, 71, 706, 698, 696, 71, 702, 697, 71, 150, 705, 707, 700, 71, 703, 704, 708, 71, 71, 711, 709, 71, 713, 710, 71, 715, 71, 71, 71, 714, 716, 71, 71, 718, 71, 712, 71, 717, 719, 71, 71, 71, 724, 71, 735, 722, 723, 720, 71, 721, 726, 71, 71, 71, 730, 728, 727, 71, 733, 725, 71, 71, 732, 734, 71, 731, 71, 71, 737, 71, 729, 71, 71, 739, 71, 71, 71, 71, 71, 71, 71, 745, 71, 71, 71, 740, 736, 746, 738, 71, 741, 71, 742, 71, 743, 747, 744, 748, 750, 752, 753, 749, 71, 751, 71, 71, 71, 754, 756, 758, 71, 71, 71, 71, 755, 71, 764, 71, 71, 71, 71, 71, 765, 757, 71, 768, 71, 71, 759, 760, 761, 763, 762, 148, 71, 767, 71, 769, 766, 71, 771, 772, 71, 774, 773, 770, 71, 775, 71, 71, 71, 776, 71, 71, 71, 150, 778, 71, 785, 779, 783, 781, 71, 71, 71, 784, 777, 780, 71, 782, 71, 71, 71, 787, 791, 71, 71, 786, 71, 792, 794, 71, 797, 788, 789, 795, 71, 793, 71, 71, 71, 796, 790, 799, 71, 71, 71, 803, 71, 71, 71, 71, 800, 71, 804, 805, 798, 71, 71, 71, 146, 71, 71, 802, 817, 71, 809, 806, 71, 801, 810, 808, 814, 811, 816, 807, 815, 71, 818, 822, 812, 819, 71, 813, 71, 820, 71, 821, 71, 71, 826, 71, 71, 145, 71, 71, 71, 834, 71, 71, 823, 838, 824, 839, 71, 71, 840, 71, 841, 825, 71, 827, 828, 836, 829, 835, 837, 830, 71, 843, 842, 71, 831, 71, 71, 71, 844, 845, 832, 833, 846, 71, 71, 847, 71, 848, 71, 71, 850, 71, 71, 854, 71, 71, 857, 853, 71, 71, 71, 71, 71, 849, 862, 71, 71, 861, 851, 855, 852, 865, 856, 859, 863, 866, 71, 858, 867, 864, 71, 71, 860, 868, 71, 71, 71, 71, 869, 71, 71, 71, 870, 71, 873, 871, 874, 71, 872, 71, 875, 877, 71, 71, 880, 71, 71, 71, 878, 71, 71, 879, 884, 71, 71, 882, 876, 886, 883, 71, 71, 71, 885, 71, 881, 887, 71, 890, 71, 71, 71, 71, 71, 888, 895, 71, 71, 897, 891, 893, 898, 71, 896, 71, 71, 71, 889, 892, 900, 71, 71, 71, 902, 894, 71, 71, 71, 899, 907, 71, 906, 71, 910, 71, 71, 901, 143, 904, 71, 903, 905, 912, 911, 908, 71, 909, 71, 71, 914, 71, 913, 71, 915, 71, 917, 918, 71, 71, 916, 71, 920, 71, 71, 925, 927, 71, 929, 919, 71, 71, 71, 71, 71, 921, 71, 926, 71, 922, 930, 71, 937, 923, 924, 932, 934, 928, 71, 931, 71, 936, 71, 933, 71, 938, 71, 941, 71, 935, 943, 71, 71, 71, 71, 71, 946, 150, 71, 940, 945, 71, 939, 71, 949, 948, 71, 71, 942, 947, 944, 71, 952, 71, 71, 71, 71, 71, 71, 964, 950, 71, 967, 71, 71, 965, 951, 71, 955, 71, 953, 966, 71, 969, 71, 956, 1125, 954, 957, 71, 71, 971, 958, 71, 959, 972, 974, 970, 960, 968, 961, 975, 71, 71, 71, 962, 71, 973, 977, 71, 963, 71, 71, 71, 979, 71, 981, 976, 989, 71, 71, 978, 986, 71, 980, 985, 982, 987, 71, 984, 988, 71, 990, 71, 983, 71, 71, 71, 71, 71, 71, 71, 991, 71, 1002, 71, 71, 1005, 1001, 1007, 71, 71, 1004, 71, 992, 993, 71, 994, 1006, 1003, 71, 71, 995, 1027, 996, 1008, 1011, 71, 71, 1009, 997, 1013, 1012, 71, 71, 998, 999, 71, 71, 1010, 1015, 1014, 1000, 1017, 71, 71, 1016, 71, 71, 71, 1018, 71, 1023, 1019, 71, 71, 1020, 1021, 71, 71, 1022, 71, 71, 1024, 1026, 71, 71, 71, 71, 1028, 1025, 1033, 1034, 71, 1030, 1031, 1032, 71, 71, 71, 71, 1029, 71, 71, 1035, 71, 71, 1036, 1041, 71, 1042, 1043, 71, 71, 1045, 1040, 1046, 1037, 1038, 71, 1039, 1044, 71, 1049, 71, 1048, 71, 1051, 1050, 71, 1052, 71, 1047, 71, 1053, 71, 71, 71, 1054, 1059, 71, 1061, 71, 71, 71, 71, 1062, 71, 1057, 1064, 71, 71, 1058, 1055, 1056, 1065, 71, 71, 71, 71, 1060, 1067, 1068, 1063, 71, 1070, 71, 1066, 1073, 71, 1069, 71, 1072, 71, 71, 1074, 71, 71, 1075, 71, 1071, 71, 1077, 71, 71, 71, 1081, 1083, 1084, 1076, 1085, 1078, 71, 71, 71, 71, 1079, 1082, 71, 1088, 1086, 1080, 71, 1087, 71, 71, 1091, 1092, 71, 71, 1089, 71, 71, 1093, 1095, 71, 71, 71, 1096, 71, 1100, 71, 1090, 1101, 71, 71, 71, 1094, 1097, 71, 1103, 1099, 1104, 71, 1098, 71, 1102, 1108, 71, 71, 71, 71, 71, 1105, 71, 71, 1114, 71, 71, 1106, 1107, 1110, 71, 71, 71, 71, 71, 1109, 71, 1111, 1118, 1149, 1115, 1119, 1113, 1117, 1122, 1116, 1123, 1112, 1120, 71, 71, 71, 71, 71, 1121, 71, 1124, 71, 1126, 71, 71, 71, 71, 71, 1129, 71, 1135, 71, 71, 1127, 1132, 1128, 71, 71, 71, 1130, 141, 1133, 71, 71, 1131, 71, 1136, 1146, 1134, 1139, 1141, 71, 1138, 71, 1137, 71, 1145, 71, 1140, 1142, 1147, 1143, 71, 71, 1144, 1148, 71, 71, 1152, 71, 71, 1151, 1154, 1157, 71, 1150, 71, 71, 71, 71, 1155, 1158, 1159, 71, 1161, 1153, 71, 1162, 71, 1156, 71, 71, 71, 71, 71, 1163, 71, 71, 1160, 71, 71, 1169, 71, 1164, 1167, 1165, 71, 71, 1168, 1170, 1166, 71, 1174, 71, 71, 1171, 71, 1175, 1173, 1179, 1172, 71, 1178, 71, 1181, 71, 71, 1176, 1180, 71, 71, 1177, 1185, 71, 1183, 1184, 71, 1186, 71, 71, 1190, 1182, 71, 71, 1188, 1187, 1189, 71, 1199, 1197, 1278, 1198, 1191, 71, 71, 1192, 1193, 71, 1200, 71, 1194, 1203, 1202, 71, 1201, 71, 1195, 71, 1204, 71, 1196, 71, 1206, 71, 1205, 71, 1207, 71, 71, 71, 1208, 71, 1209, 71, 1213, 1210, 1216, 1212, 1217, 71, 71, 1211, 71, 71, 71, 1214, 71, 71, 1218, 1220, 1219, 1215, 71, 1225, 1221, 1226, 1222, 71, 1223, 71, 1224, 71, 1229, 71, 71, 1228, 1232, 71, 71, 71, 1227, 1233, 71, 1231, 1235, 71, 71, 71, 71, 71, 71, 1230, 1236, 71, 1237, 1242, 1240, 71, 71, 1234, 71, 1248, 71, 1241, 71, 1238, 1239, 1243, 71, 1244, 1250, 71, 71, 1247, 1251, 1245, 71, 71, 71, 1249, 1252, 1253, 71, 1246, 1255, 71, 1257, 71, 71, 1258, 71, 71, 71, 1262, 71, 1259, 71, 1254, 71, 71, 71, 1264, 1256, 71, 1275, 1266, 71, 71, 71, 1268, 2798, 1269, 1260, 1261, 71, 1267, 1263, 71, 71, 1265, 71, 71, 1270, 1271, 71, 71, 1273, 71, 1272, 1274, 1280, 1277, 1276, 1281, 71, 1283, 71, 71, 71, 71, 1279, 71, 1282, 1284, 71, 1287, 71, 71, 71, 71, 1291, 71, 1292, 71, 1294, 1286, 71, 1285, 71, 1293, 71, 71, 71, 71, 71, 1295, 71, 1288, 1289, 71, 1301, 1296, 1290, 71, 1298, 71, 71, 1299, 71, 1306, 71, 1297, 1300, 1305, 71, 71, 1302, 71, 71, 1308, 1310, 71, 71, 1304, 71, 1311, 71, 1313, 1303, 1307, 1314, 71, 71, 71, 1309, 1312, 1316, 1319, 1315, 71, 1320, 1321, 1323, 71, 71, 71, 1317, 1322, 71, 1318, 71, 71, 71, 71, 1324, 1325, 71, 1329, 1331, 71, 71, 71, 1326, 71, 71, 1336, 71, 71, 71, 1328, 1337, 1327, 71, 71, 1330, 1333, 1340, 71, 1334, 1332, 71, 1335, 71, 71, 1341, 1338, 71, 1339, 71, 71, 71, 1343, 1342, 1347, 71, 1344, 1348, 71, 1345, 1349, 71, 1352, 71, 71, 71, 1346, 1351, 71, 1350, 1354, 1357, 71, 1356, 1358, 71, 1359, 71, 1353, 71, 71, 71, 1360, 1361, 71, 71, 1355, 71, 1363, 1362, 1364, 71, 71, 71, 1368, 71, 71, 71, 71, 1367, 71, 1365, 1371, 1374, 1370, 1376, 1366, 71, 1375, 71, 1377, 71, 1372, 71, 1379, 1369, 71, 71, 71, 1373, 71, 71, 71, 71, 1386, 71, 71, 1378, 1387, 1382, 71, 71, 71, 1391, 71, 1380, 1381, 1383, 1390, 71, 1385, 1384, 71, 71, 71, 1389, 71, 71, 71, 71, 1392, 1388, 1400, 1393, 71, 1399, 1402, 71, 1396, 1401, 71, 1394, 1395, 1398, 71, 1403, 71, 1397, 1404, 71, 71, 71, 71, 1408, 71, 71, 71, 1409, 1406, 1405, 1411, 1415, 71, 1407, 71, 71, 71, 1412, 71, 1416, 1410, 1417, 1414, 71, 1413, 71, 71, 1418, 1423, 1419, 1424, 71, 71, 71, 71, 1420, 1421, 71, 71, 1428, 71, 1429, 1427, 1430, 71, 71, 1422, 71, 1431, 71, 1425, 1432, 71, 71, 1426, 71, 1433, 71, 1435, 71, 1438, 71, 71, 71, 71, 1434, 1437, 71, 1441, 71, 1442, 71, 71, 1436, 71, 1446, 1439, 71, 71, 71, 1450, 71, 1443, 1440, 1448, 71, 1444, 1449, 71, 1451, 71, 1447, 1445, 71, 1453, 71, 71, 71, 1452, 1456, 71, 1455, 1458, 1459, 71, 71, 71, 71, 71, 71, 1454, 71, 1466, 71, 1467, 1457, 71, 71, 1460, 1461, 71, 1464, 1470, 71, 71, 1462, 1463, 71, 1471, 1473, 71, 71, 1475, 1465, 71, 1474, 1468, 1469, 71, 1477, 1472, 1479, 71, 71, 1476, 71, 71, 71, 1478, 1481, 1480, 1482, 71, 1484, 71, 1485, 71, 71, 71, 71, 71, 1490, 1489, 71, 71, 71, 71, 71, 1496, 1493, 1486, 1483, 1494, 1488, 71, 1487, 1491, 71, 71, 2798, 71, 1524, 1497, 1492, 1495, 1499, 71, 1498, 1502, 1501, 1500, 71, 71, 1504, 71, 1506, 1503, 71, 1505, 71, 71, 71, 71, 71, 1507, 71, 71, 71, 1513, 1512, 1514, 1516, 1515, 1508, 71, 71, 71, 71, 71, 71, 1509, 71, 1510, 1518, 1520, 1511, 1519, 71, 71, 71, 71, 71, 71, 71, 1528, 71, 71, 71, 1517, 1521, 71, 1533, 71, 1526, 1525, 1527, 71, 71, 1522, 1523, 1531, 71, 1535, 1529, 71, 1530, 71, 1536, 1532, 71, 71, 71, 71, 71, 71, 1538, 1534, 71, 71, 1537, 1541, 1543, 1544, 71, 2798, 1545, 71, 1542, 1540, 1550, 1551, 71, 1547, 1539, 1546, 1552, 71, 1548, 71, 71, 1555, 71, 1554, 71, 71, 71, 71, 71, 1549, 71, 1553, 1558, 1559, 71, 1566, 71, 1556, 71, 1561, 71, 71, 1560, 71, 1557, 1563, 71, 1565, 1564, 1567, 71, 71, 71, 1562, 71, 71, 1569, 71, 71, 1576, 1568, 71, 71, 71, 1570, 1571, 1573, 71, 1572, 71, 1580, 1578, 1579, 71, 71, 1575, 71, 1577, 71, 71, 1574, 1584, 1582, 1587, 1581, 1583, 2798, 1590, 1588, 71, 1592, 71, 1589, 71, 1586, 1585, 1593, 1591, 71, 1595, 71, 71, 71, 1594, 71, 71, 1596, 1599, 71, 71, 71, 1601, 71, 71, 71, 71, 71, 1602, 1598, 71, 1603, 1597, 1600, 1606, 71, 1607, 71, 71, 1612, 1604, 71, 71, 1608, 1605, 71, 71, 71, 1609, 1618, 71, 1610, 1611, 71, 1613, 71, 71, 1621, 71, 71, 71, 71, 1614, 1617, 1615, 1623, 1616, 71, 71, 1619, 71, 71, 1624, 1625, 1620, 1626, 71, 1630, 71, 1622, 1627, 71, 71, 1628, 71, 1634, 71, 71, 71, 71, 71, 1629, 71, 71, 1632, 1636, 71, 71, 71, 1641, 1631, 1635, 1637, 1633, 1638, 71, 71, 1649, 1639, 1642, 1645, 71, 1644, 1640, 1643, 71, 1647, 71, 1646, 71, 1650, 1651, 71, 71, 1648, 71, 71, 1653, 71, 71, 71, 1654, 71, 71, 71, 1652, 71, 71, 71, 1659, 71, 71, 1663, 71, 71, 1660, 71, 1664, 1669, 1655, 1657, 1658, 1656, 1661, 71, 1662, 1668, 71, 71, 1667, 1665, 71, 71, 1666, 71, 71, 1674, 1670, 71, 71, 1677, 1678, 71, 1679, 71, 1681, 71, 1671, 1672, 71, 1682, 1673, 1675, 71, 1676, 1680, 71, 1685, 71, 71, 1687, 71, 1689, 1686, 1688, 71, 71, 1691, 71, 71, 1694, 71, 71, 71, 1683, 1693, 1696, 1684, 71, 1695, 71, 71, 71, 1690, 71, 1703, 71, 1705, 71, 71, 71, 71, 1706, 71, 1692, 71, 1697, 1698, 1699, 71, 1701, 1702, 1707, 1700, 1710, 71, 1704, 1708, 1711, 71, 1709, 1714, 1715, 71, 71, 1713, 71, 71, 1712, 71, 1717, 71, 71, 1720, 1721, 71, 71, 1723, 71, 71, 71, 71, 1728, 71, 1727, 71, 71, 1718, 1724, 1725, 71, 71, 1716, 1719, 71, 1731, 1722, 71, 1730, 71, 1729, 71, 1726, 71, 1733, 1737, 1736, 71, 1740, 71, 71, 71, 1741, 71, 71, 1735, 1739, 71, 71, 71, 1732, 1742, 71, 1734, 1743, 71, 1744, 1738, 71, 71, 1745, 1748, 1746, 71, 71, 1751, 1752, 1747, 71, 71, 71, 71, 71, 71, 1755, 71, 71, 1749, 71, 71, 1761, 1764, 71, 71, 1754, 1762, 71, 1765, 1753, 1750, 1756, 1757, 1758, 1759, 1760, 1763, 71, 1768, 71, 71, 71, 71, 71, 71, 1774, 1786, 1771, 1766, 71, 71, 71, 71, 1767, 1776, 1770, 1777, 71, 71, 1778, 71, 1769, 71, 1772, 1773, 1775, 1779, 1782, 71, 1783, 71, 1780, 1784, 1787, 71, 71, 1781, 1785, 71, 71, 1790, 71, 71, 71, 71, 1795, 71, 1789, 1792, 71, 1797, 71, 71, 1791, 1793, 71, 71, 71, 71, 71, 1788, 71, 1802, 1801, 1798, 71, 1803, 1799, 1794, 1804, 71, 1796, 1805, 71, 1807, 2798, 1800, 71, 71, 71, 71, 1806, 71, 1808, 1809, 71, 71, 1811, 1810, 1813, 1812, 71, 71, 1815, 71, 71, 71, 1819, 71, 71, 71, 1818, 71, 1814, 71, 1821, 1816, 1817, 1820, 1822, 1823, 71, 71, 71, 71, 71, 71, 71, 71, 1828, 1830, 1825, 1824, 1829, 71, 1832, 71, 71, 71, 71, 1831, 1826, 71, 1827, 71, 1834, 1833, 1835, 71, 1836, 71, 1837, 1841, 1842, 71, 1840, 1838, 71, 1839, 71, 1843, 71, 71, 71, 1848, 71, 71, 1850, 71, 71, 71, 1851, 1852, 71, 71, 1844, 1847, 1845, 1846, 71, 71, 1854, 1849, 71, 1856, 71, 71, 1853, 1855, 1857, 71, 71, 71, 71, 71, 71, 71, 71, 1859, 71, 1864, 71, 1860, 1861, 1868, 71, 1858, 71, 1863, 1867, 1871, 71, 71, 1865, 1869, 1866, 1872, 1874, 1862, 1870, 71, 1873, 1875, 71, 71, 71, 71, 71, 71, 1877, 71, 71, 1878, 1882, 71, 1879, 1880, 1885, 71, 71, 1881, 1876, 71, 71, 71, 1888, 71, 1887, 1884, 1883, 71, 1889, 71, 1893, 71, 1890, 71, 71, 71, 71, 71, 1894, 1891, 1899, 71, 1886, 1896, 1895, 71, 1900, 71, 71, 1892, 1903, 1898, 71, 1897, 71, 71, 71, 1904, 71, 71, 1905, 1915, 1901, 1906, 1908, 71, 1909, 71, 1902, 71, 1910, 1907, 71, 1911, 71, 71, 1912, 71, 71, 1917, 71, 71, 71, 1913, 1918, 71, 1914, 1919, 71, 1920, 71, 71, 1921, 1922, 1924, 1923, 1916, 1926, 71, 71, 71, 71, 1925, 71, 2798, 71, 71, 71, 71, 1927, 1934, 1935, 71, 71, 71, 1930, 1929, 1928, 1931, 1932, 1933, 71, 71, 71, 1943, 71, 71, 1936, 1938, 1940, 71, 71, 1942, 1945, 71, 1939, 1948, 71, 1941, 1944, 1937, 1947, 71, 1950, 1952, 1946, 1953, 71, 1951, 71, 71, 71, 71, 71, 1954, 1949, 1957, 71, 71, 1958, 71, 1955, 1962, 71, 71, 1963, 71, 1956, 71, 1961, 1966, 71, 71, 1959, 71, 1968, 71, 1967, 1964, 1969, 71, 71, 71, 1971, 1960, 1972, 1965, 1970, 71, 71, 71, 1973, 1974, 71, 71, 71, 71, 71, 1976, 71, 71, 1979, 1982, 71, 71, 71, 71, 71, 1983, 71, 1978, 1985, 71, 1981, 1984, 1975, 71, 1977, 1980, 1987, 71, 1989, 1992, 71, 71, 1990, 71, 71, 1988, 71, 71, 1986, 1993, 2798, 71, 71, 71, 71, 1991, 71, 71, 2003, 71, 71, 71, 1994, 1995, 2004, 2000, 71, 71, 2021, 1996, 1998, 1997, 2002, 1999, 2006, 2001, 71, 2008, 71, 2005, 2007, 2009, 71, 2010, 71, 71, 71, 2013, 71, 2016, 71, 71, 71, 2011, 71, 71, 2017, 2014, 2012, 2018, 2015, 2022, 71, 2023, 71, 71, 2025, 71, 71, 2027, 71, 71, 2019, 71, 71, 2020, 2029, 71, 2030, 71, 71, 71, 71, 2032, 2024, 2031, 2026, 2034, 2028, 2035, 71, 2037, 71, 71, 71, 71, 71, 2040, 71, 2033, 2036, 2039, 71, 2041, 2043, 71, 71, 2047, 71, 71, 71, 2038, 71, 2045, 2798, 2044, 71, 71, 2042, 71, 2051, 2052, 71, 71, 71, 2046, 71, 2050, 71, 2048, 2056, 71, 71, 2049, 2054, 2058, 2053, 71, 2055, 71, 2059, 71, 2061, 71, 2057, 2063, 2062, 71, 71, 71, 71, 71, 2066, 71, 2067, 71, 71, 71, 2060, 2064, 2065, 2071, 2072, 71, 2069, 2075, 71, 2077, 2073, 71, 2074, 71, 71, 71, 2070, 2068, 71, 2078, 2798, 71, 2086, 71, 71, 71, 71, 71, 71, 2076, 2081, 2080, 2082, 2083, 2084, 71, 2079, 71, 2091, 2087, 2085, 71, 2090, 71, 71, 71, 2089, 2088, 71, 2092, 71, 2098, 71, 71, 71, 71, 71, 2093, 71, 71, 71, 2096, 71, 2094, 2100, 2095, 2097, 2106, 2099, 2103, 2101, 2104, 2102, 71, 71, 71, 2105, 2109, 71, 2123, 2107, 71, 2110, 2111, 71, 71, 2108, 71, 2112, 2114, 2115, 71, 2113, 2116, 71, 71, 71, 71, 2118, 71, 71, 71, 71, 2122, 71, 2117, 71, 2124, 2125, 71, 71, 2119, 71, 71, 2120, 2126, 71, 2129, 2130, 71, 2121, 2127, 71, 71, 71, 71, 2128, 2132, 71, 2131, 71, 71, 2136, 71, 2139, 71, 2138, 71, 71, 2135, 71, 2140, 71, 2133, 2134, 71, 2144, 2143, 71, 2798, 2137, 2141, 71, 2142, 71, 71, 2145, 2146, 2152, 2147, 71, 2148, 71, 2153, 2150, 2149, 71, 2151, 71, 71, 2155, 71, 71, 2157, 71, 71, 71, 71, 71, 71, 2154, 2156, 2160, 2165, 2162, 2163, 71, 2164, 71, 71, 2159, 71, 2166, 2158, 71, 71, 71, 71, 71, 71, 2174, 2169, 2172, 71, 2161, 71, 71, 2173, 71, 71, 2167, 2171, 2177, 71, 71, 71, 2170, 2168, 71, 2180, 2181, 71, 71, 2175, 2176, 71, 71, 2178, 71, 2185, 2182, 2183, 2179, 71, 71, 2184, 2186, 2189, 71, 2188, 2190, 71, 2191, 71, 2192, 71, 71, 71, 2187, 71, 2195, 71, 2196, 71, 71, 71, 71, 71, 2193, 2201, 71, 2202, 71, 2203, 71, 2194, 2197, 2198, 71, 2204, 71, 71, 2200, 2199, 71, 2205, 71, 2210, 71, 2208, 71, 71, 2206, 71, 71, 71, 71, 71, 2217, 2211, 71, 2207, 71, 71, 71, 71, 2209, 2214, 71, 2218, 2216, 71, 71, 2213, 2224, 2798, 71, 2212, 2219, 2215, 2220, 2226, 2221, 71, 2222, 71, 2225, 71, 2227, 2228, 71, 2223, 2229, 71, 71, 2230, 71, 2231, 71, 2232, 71, 71, 71, 2233, 71, 71, 2235, 71, 71, 71, 71, 2234, 71, 2243, 2244, 71, 2240, 2247, 71, 71, 2237, 2236, 71, 71, 71, 2239, 2238, 2242, 2241, 2249, 71, 2246, 2245, 2248, 71, 71, 71, 2250, 71, 71, 71, 2251, 2252, 2258, 71, 2259, 71, 2260, 71, 2253, 71, 71, 71, 71, 2254, 2256, 2255, 2264, 71, 2257, 71, 71, 71, 2268, 71, 2262, 2261, 2267, 2269, 71, 2263, 71, 71, 2270, 2271, 71, 71, 71, 2265, 71, 2266, 2273, 71, 2272, 2276, 71, 71, 2280, 71, 2279, 71, 71, 2283, 71, 71, 2274, 71, 2275, 2284, 71, 71, 2277, 71, 2286, 71, 2278, 2281, 71, 2282, 2287, 71, 2285, 71, 2288, 2291, 71, 2293, 71, 71, 2292, 2295, 71, 2289, 2296, 2290, 71, 2298, 71, 71, 2299, 71, 2294, 71, 71, 71, 71, 71, 2297, 2305, 71, 71, 71, 71, 2303, 2304, 2301, 2302, 2307, 71, 2310, 71, 2306, 2300, 2309, 2308, 71, 71, 71, 71, 71, 2317, 71, 2314, 2312, 2315, 2318, 71, 71, 71, 2311, 71, 2313, 71, 2316, 2319, 2320, 2323, 71, 71, 71, 2325, 2798, 71, 2324, 71, 71, 2321, 2328, 71, 2327, 2322, 2798, 2326, 2329, 71, 2331, 71, 71, 2330, 2333, 2332, 71, 71, 2337, 2334, 71, 2335, 2336, 71, 71, 71, 71, 2338, 71, 71, 2339, 71, 71, 71, 71, 2340, 2343, 2342, 2345, 71, 71, 71, 2346, 2341, 2344, 2348, 2347, 71, 71, 71, 71, 71, 2349, 71, 2354, 71, 71, 71, 2352, 2350, 2353, 2351, 71, 71, 2355, 2359, 71, 71, 71, 2356, 2363, 71, 2362, 71, 71, 71, 2357, 2361, 71, 2367, 2674, 2358, 2360, 2368, 71, 2369, 2364, 2370, 2365, 2371, 71, 71, 71, 71, 2366, 71, 71, 71, 71, 71, 2372, 2373, 2376, 71, 2374, 71, 2379, 2380, 71, 71, 2375, 2381, 71, 2377, 2382, 71, 2383, 71, 2378, 2385, 71, 71, 2388, 71, 2386, 71, 2389, 71, 71, 2384, 2390, 71, 71, 2394, 71, 2391, 2392, 71, 2395, 71, 2387, 2396, 71, 2398, 71, 71, 2393, 71, 71, 2401, 2402, 71, 2403, 2404, 2397, 71, 71, 71, 2405, 71, 71, 2400, 71, 2399, 2410, 71, 71, 71, 2409, 71, 71, 2412, 2413, 71, 2414, 71, 71, 2407, 71, 2406, 2408, 2416, 71, 2415, 71, 2418, 71, 71, 71, 2421, 2411, 2417, 71, 2419, 2420, 2425, 71, 71, 71, 2431, 71, 71, 2424, 2428, 2422, 2427, 71, 2423, 2429, 71, 71, 2426, 71, 2432, 71, 2433, 71, 2430, 71, 2434, 71, 2435, 2436, 71, 71, 2440, 71, 2439, 2437, 71, 2438, 2443, 71, 71, 2446, 71, 2444, 71, 71, 2448, 71, 71, 2449, 71, 2441, 2447, 2442, 2445, 71, 71, 2450, 71, 2451, 2453, 71, 2454, 71, 2457, 2455, 71, 71, 71, 2458, 71, 2461, 71, 2452, 71, 71, 2460, 71, 2456, 2459, 71, 71, 71, 2463, 71, 71, 2462, 2464, 71, 2466, 2470, 71, 2471, 71, 2468, 71, 2474, 2472, 2473, 2475, 71, 2467, 2465, 2476, 71, 2469, 2477, 71, 2478, 71, 71, 71, 71, 71, 71, 2483, 71, 2482, 2484, 2479, 2480, 71, 71, 2486, 71, 71, 71, 2485, 2491, 71, 2481, 2489, 2487, 71, 71, 2493, 71, 2488, 71, 71, 2497, 71, 71, 2490, 71, 71, 71, 71, 71, 2500, 71, 71, 2494, 2495, 2492, 2498, 2501, 2499, 2504, 2496, 71, 71, 2502, 2507, 71, 2505, 71, 2503, 2509, 71, 2510, 71, 2512, 71, 71, 71, 71, 2506, 2516, 71, 2508, 2515, 71, 71, 71, 71, 2520, 2511, 71, 71, 2513, 2514, 71, 71, 2522, 2524, 71, 2525, 71, 2527, 71, 71, 2517, 2519, 71, 71, 2518, 2521, 71, 71, 2523, 71, 2526, 2529, 2534, 71, 71, 2536, 71, 2528, 2532, 2530, 71, 2537, 2531, 2535, 2539, 2540, 71, 2533, 71, 2542, 71, 2541, 71, 71, 71, 71, 2538, 71, 2544, 2545, 2547, 71, 2550, 71, 2551, 71, 71, 71, 71, 71, 2543, 2554, 71, 2555, 71, 71, 2546, 2553, 2548, 2549, 2556, 71, 71, 2557, 2559, 71, 2552, 2558, 2560, 71, 2561, 71, 71, 2563, 71, 71, 71, 2562, 71, 2567, 2564, 2568, 71, 71, 71, 71, 2572, 71, 71, 71, 2575, 71, 71, 2571, 2574, 2576, 71, 2565, 2566, 2569, 71, 71, 2578, 2570, 2580, 71, 2577, 2573, 71, 2579, 71, 71, 71, 71, 71, 2581, 71, 2584, 71, 71, 2582, 71, 2586, 71, 71, 2585, 2587, 71, 71, 71, 71, 2583, 2628, 2588, 2596, 71, 2599, 71, 71, 2589, 71, 2590, 2591, 2592, 2595, 2593, 2594, 2614, 2598, 71, 2597, 2600, 71, 2601, 2602, 71, 2603, 71, 2604, 2605, 71, 71, 2606, 2607, 2608, 71, 2609, 71, 71, 71, 71, 2613, 71, 71, 71, 2612, 71, 2615, 71, 71, 2619, 2620, 71, 2611, 2621, 71, 2610, 2618, 71, 2616, 71, 2626, 71, 71, 2617, 2623, 2627, 71, 71, 71, 71, 2624, 71, 2622, 2625, 2632, 71, 2633, 2635, 71, 71, 2637, 71, 2630, 71, 2636, 2638, 71, 2629, 71, 2631, 2639, 71, 2640, 71, 2634, 2641, 71, 2642, 71, 71, 2644, 71, 71, 2645, 2646, 71, 71, 71, 2643, 71, 2649, 2651, 71, 71, 2654, 71, 71, 2647, 2648, 2653, 71, 2655, 2650, 71, 2658, 71, 2657, 71, 71, 71, 71, 2652, 2660, 2656, 71, 71, 71, 71, 71, 2659, 2665, 2666, 71, 71, 71, 2663, 71, 2661, 2668, 71, 2664, 71, 2662, 71, 71, 2676, 2673, 2670, 2669, 2667, 2672, 71, 71, 71, 71, 71, 71, 2699, 2675, 2671, 71, 71, 71, 71, 2677, 2686, 71, 2688, 71, 2680, 71, 2678, 2679, 71, 2689, 2682, 2685, 2683, 71, 2687, 2681, 2684, 2690, 71, 2691, 71, 71, 71, 71, 71, 2694, 71, 71, 2695, 2696, 71, 71, 2692, 71, 2702, 71, 71, 71, 2706, 71, 71, 2693, 2698, 71, 2700, 71, 2707, 71, 2708, 2710, 2703, 2697, 2704, 2701, 2705, 71, 71, 2711, 71, 2715, 71, 2712, 2709, 71, 71, 71, 71, 71, 71, 2713, 2718, 71, 71, 2720, 71, 71, 71, 2714, 71, 2717, 71, 2725, 71, 2726, 2716, 2722, 2798, 2719, 2723, 71, 2721, 2729, 71, 2724, 2730, 71, 2731, 2798, 2727, 71, 2732, 2728, 71, 71, 71, 71, 2737, 71, 2733, 2734, 2735, 71, 71, 71, 2736, 71, 2738, 2739, 71, 2740, 2742, 71, 71, 2745, 71, 71, 2741, 71, 2748, 71, 2749, 71, 71, 71, 71, 71, 71, 2752, 2747, 71, 2743, 2744, 2750, 2746, 2757, 2751, 71, 2756, 71, 2755, 71, 71, 2760, 2753, 2754, 71, 71, 2762, 71, 2763, 71, 2758, 71, 71, 71, 2764, 2767, 71, 71, 2765, 71, 2771, 2769, 2768, 2761, 71, 2759, 2770, 71, 71, 71, 71, 2766, 2776, 71, 2774, 2772, 71, 71, 71, 71, 71, 71, 2778, 2773, 2779, 71, 2782, 2783, 71, 2775, 71, 71, 2786, 2787, 71, 2777, 71, 2780, 71, 2781, 2784, 2789, 71, 2788, 2790, 71, 71, 71, 71, 2785, 71, 2798, 2792, 2791, 2798, 2793, 2798, 2794, 2796, 71, 2797, 71, 2798, 2798, 2798, 2798, 2798, 2795, 43, 43, 43, 43, 43, 43, 43, 48, 48, 48, 48, 48, 48, 48, 53, 53, 53, 53, 53, 53, 53, 59, 59, 59, 59, 59, 59, 59, 64, 64, 64, 64, 64, 64, 64, 74, 74, 2798, 74, 74, 74, 74, 140, 140, 2798, 2798, 2798, 140, 140, 142, 142, 2798, 2798, 142, 2798, 142, 144, 2798, 2798, 2798, 2798, 2798, 144, 147, 147, 2798, 2798, 2798, 147, 147, 149, 2798, 2798, 2798, 2798, 2798, 149, 151, 151, 2798, 151, 151, 151, 151, 75, 75, 2798, 75, 75, 75, 75, 13, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798 } ; static yyconst flex_int16_t yy_chk[5505] = { 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, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 3, 6, 20, 4, 20, 20, 5, 20, 6, 7, 7, 7, 7, 20, 7, 8, 8, 8, 8, 29, 8, 7, 9, 9, 9, 22, 22, 8, 10, 10, 10, 15, 25, 9, 29, 15, 25, 2804, 31, 10, 11, 11, 11, 11, 11, 11, 19, 79, 19, 19, 30, 19, 11, 31, 79, 30, 25, 19, 19, 47, 47, 11, 12, 12, 12, 12, 12, 12, 21, 23, 23, 21, 21, 24, 12, 21, 81, 23, 24, 34, 21, 23, 24, 12, 23, 24, 946, 24, 24, 21, 26, 26, 27, 27, 90, 28, 81, 32, 32, 28, 34, 27, 28, 33, 33, 26, 32, 36, 33, 28, 35, 28, 32, 90, 42, 35, 32, 52, 84, 35, 52, 36, 37, 37, 33, 35, 38, 37, 35, 42, 69, 38, 63, 63, 38, 35, 84, 37, 40, 72, 37, 38, 40, 72, 69, 38, 38, 39, 39, 102, 39, 78, 40, 41, 41, 78, 40, 40, 41, 39, 149, 58, 41, 58, 58, 39, 58, 66, 102, 66, 66, 68, 66, 68, 68, 71, 68, 71, 71, 66, 71, 85, 74, 80, 74, 74, 71, 74, 77, 82, 85, 77, 82, 74, 74, 80, 83, 86, 88, 83, 89, 87, 91, 93, 92, 98, 95, 87, 91, 96, 98, 86, 83, 87, 94, 87, 88, 88, 92, 159, 99, 91, 89, 93, 95, 94, 94, 96, 97, 105, 159, 101, 97, 94, 99, 100, 106, 101, 100, 103, 104, 100, 107, 104, 103, 108, 107, 104, 105, 109, 106, 110, 108, 105, 100, 100, 101, 111, 110, 112, 113, 114, 109, 104, 103, 114, 115, 116, 117, 119, 111, 121, 116, 118, 118, 122, 116, 120, 113, 112, 124, 120, 127, 127, 115, 125, 121, 126, 117, 119, 120, 125, 123, 124, 122, 123, 120, 128, 129, 126, 130, 131, 132, 127, 134, 133, 123, 133, 135, 136, 123, 137, 138, 135, 129, 128, 134, 138, 132, 130, 139, 136, 131, 141, 141, 148, 148, 143, 133, 137, 143, 147, 156, 145, 139, 145, 145, 150, 145, 150, 150, 151, 150, 151, 151, 153, 151, 154, 153, 155, 156, 157, 154, 151, 158, 155, 161, 160, 162, 164, 167, 165, 158, 163, 155, 160, 157, 168, 163, 158, 165, 166, 168, 162, 174, 161, 170, 166, 166, 164, 169, 169, 170, 172, 171, 167, 171, 172, 182, 171, 173, 173, 172, 174, 175, 176, 177, 172, 178, 175, 176, 179, 182, 172, 172, 180, 171, 179, 177, 180, 181, 183, 184, 185, 186, 181, 187, 190, 178, 186, 189, 187, 188, 188, 184, 189, 183, 184, 188, 191, 179, 185, 192, 193, 193, 194, 196, 190, 192, 198, 188, 194, 188, 195, 197, 191, 199, 194, 198, 195, 197, 200, 204, 201, 202, 203, 196, 200, 201, 204, 202, 203, 205, 206, 207, 208, 209, 199, 210, 206, 211, 208, 212, 213, 214, 205, 210, 212, 215, 216, 217, 220, 213, 211, 207, 217, 218, 219, 209, 214, 221, 219, 222, 224, 215, 223, 221, 229, 225, 216, 225, 223, 226, 220, 218, 231, 227, 146, 228, 226, 222, 222, 227, 224, 228, 230, 229, 231, 232, 232, 234, 230, 233, 233, 235, 237, 234, 236, 238, 236, 235, 239, 240, 238, 241, 242, 243, 244, 144, 245, 255, 243, 241, 239, 234, 245, 236, 246, 237, 247, 249, 240, 248, 246, 247, 242, 249, 248, 250, 252, 244, 251, 253, 254, 256, 255, 257, 259, 259, 257, 256, 254, 258, 250, 258, 251, 253, 252, 260, 261, 264, 260, 262, 262, 263, 263, 265, 266, 267, 268, 266, 270, 267, 269, 271, 278, 264, 261, 268, 269, 271, 265, 272, 273, 272, 270, 274, 275, 275, 273, 274, 276, 277, 279, 280, 278, 276, 281, 277, 282, 282, 283, 284, 286, 283, 285, 288, 274, 349, 285, 281, 279, 287, 287, 289, 280, 290, 289, 293, 291, 284, 286, 299, 292, 288, 291, 292, 295, 290, 296, 293, 294, 297, 300, 349, 299, 295, 297, 303, 298, 294, 303, 298, 294, 298, 300, 304, 296, 294, 294, 294, 294, 301, 305, 301, 301, 302, 302, 306, 315, 298, 307, 311, 304, 308, 308, 304, 306, 305, 309, 307, 310, 310, 312, 309, 313, 314, 311, 312, 315, 317, 316, 318, 319, 320, 324, 317, 313, 319, 321, 320, 326, 322, 328, 321, 314, 316, 322, 328, 324, 326, 323, 318, 322, 323, 325, 323, 327, 325, 329, 333, 366, 329, 327, 334, 331, 332, 336, 329, 337, 336, 325, 329, 339, 325, 333, 325, 366, 334, 345, 329, 330, 330, 337, 330, 331, 336, 332, 339, 340, 341, 343, 344, 342, 345, 341, 341, 330, 340, 342, 330, 346, 330, 347, 330, 338, 350, 338, 338, 348, 346, 344, 343, 351, 353, 348, 354, 338, 355, 338, 338, 338, 347, 352, 338, 356, 350, 351, 358, 352, 357, 360, 360, 352, 361, 357, 354, 353, 355, 359, 356, 362, 363, 358, 364, 359, 365, 367, 368, 368, 364, 368, 367, 362, 361, 369, 363, 370, 371, 373, 374, 373, 372, 375, 374, 376, 376, 375, 377, 378, 379, 365, 380, 370, 371, 369, 372, 381, 388, 373, 382, 385, 375, 383, 378, 385, 379, 377, 384, 382, 380, 381, 383, 384, 386, 387, 392, 394, 389, 388, 382, 387, 382, 386, 389, 390, 391, 393, 393, 390, 394, 391, 395, 396, 397, 397, 392, 395, 398, 399, 400, 401, 402, 399, 398, 403, 396, 402, 404, 405, 403, 406, 407, 408, 410, 400, 409, 404, 410, 409, 413, 405, 401, 411, 411, 408, 417, 412, 414, 414, 407, 406, 412, 416, 416, 418, 419, 420, 421, 424, 423, 413, 425, 418, 427, 419, 426, 417, 428, 430, 421, 142, 426, 427, 428, 433, 425, 420, 423, 424, 423, 429, 431, 430, 434, 432, 429, 434, 435, 436, 431, 432, 437, 431, 435, 433, 438, 437, 439, 442, 440, 441, 443, 436, 440, 444, 441, 443, 445, 448, 447, 449, 435, 450, 442, 449, 452, 451, 438, 439, 452, 444, 454, 456, 448, 140, 453, 445, 446, 446, 447, 453, 450, 451, 446, 455, 446, 454, 461, 456, 455, 457, 446, 459, 446, 458, 460, 446, 446, 460, 457, 458, 462, 462, 446, 463, 458, 465, 461, 459, 464, 464, 466, 467, 468, 469, 470, 471, 476, 472, 473, 470, 465, 474, 466, 478, 471, 476, 467, 474, 463, 478, 477, 468, 479, 473, 477, 469, 472, 480, 481, 482, 483, 484, 485, 486, 479, 487, 485, 487, 489, 489, 488, 491, 480, 482, 490, 483, 486, 481, 488, 484, 490, 492, 493, 491, 495, 494, 496, 492, 494, 498, 497, 499, 498, 500, 493, 497, 70, 501, 495, 502, 499, 496, 501, 501, 503, 503, 509, 499, 516, 500, 499, 505, 502, 504, 504, 506, 506, 505, 507, 507, 508, 510, 512, 511, 510, 513, 508, 509, 511, 514, 515, 516, 514, 513, 517, 515, 518, 519, 520, 521, 518, 512, 520, 519, 522, 523, 524, 526, 527, 522, 525, 527, 524, 517, 528, 525, 527, 521, 529, 529, 527, 526, 530, 531, 532, 523, 536, 533, 531, 532, 534, 535, 528, 537, 538, 536, 537, 535, 538, 539, 530, 533, 541, 540, 539, 534, 540, 541, 542, 543, 544, 545, 546, 547, 547, 549, 545, 548, 551, 550, 538, 557, 552, 544, 542, 553, 548, 543, 552, 64, 551, 553, 546, 554, 549, 550, 554, 555, 556, 557, 555, 558, 559, 556, 560, 561, 567, 562, 559, 560, 562, 561, 563, 564, 565, 558, 566, 563, 564, 564, 569, 570, 568, 577, 577, 567, 567, 565, 568, 566, 570, 571, 572, 574, 573, 572, 571, 575, 576, 569, 573, 578, 575, 576, 576, 574, 579, 582, 579, 580, 572, 581, 583, 581, 584, 585, 586, 587, 588, 592, 589, 587, 590, 591, 594, 582, 578, 588, 580, 598, 583, 593, 584, 596, 585, 589, 586, 590, 592, 594, 595, 591, 597, 593, 599, 600, 595, 596, 598, 600, 601, 602, 603, 604, 597, 606, 606, 605, 607, 608, 610, 611, 607, 599, 609, 610, 612, 613, 601, 602, 603, 605, 604, 59, 614, 609, 616, 611, 608, 615, 613, 614, 617, 616, 615, 612, 618, 617, 619, 620, 621, 618, 623, 622, 627, 625, 620, 624, 627, 621, 625, 623, 626, 628, 629, 626, 619, 622, 630, 624, 631, 632, 638, 629, 633, 633, 636, 628, 634, 634, 635, 635, 639, 630, 631, 636, 640, 634, 639, 641, 642, 638, 632, 641, 643, 644, 646, 645, 647, 648, 649, 650, 642, 645, 646, 647, 640, 653, 660, 656, 54, 651, 661, 644, 660, 659, 651, 648, 665, 643, 651, 650, 653, 651, 659, 649, 656, 662, 661, 665, 651, 662, 666, 651, 663, 663, 664, 664, 667, 668, 669, 674, 671, 53, 672, 673, 669, 671, 675, 677, 666, 675, 667, 676, 676, 679, 677, 678, 678, 668, 670, 670, 670, 673, 670, 672, 674, 670, 680, 680, 679, 681, 670, 685, 682, 683, 681, 682, 670, 670, 683, 684, 686, 684, 687, 685, 688, 690, 687, 689, 691, 691, 692, 694, 694, 690, 693, 695, 697, 696, 698, 686, 699, 699, 702, 698, 688, 692, 689, 702, 693, 696, 700, 703, 710, 695, 704, 700, 700, 703, 697, 705, 704, 706, 707, 708, 706, 705, 709, 711, 707, 712, 710, 708, 711, 713, 709, 715, 712, 714, 714, 716, 717, 718, 720, 722, 715, 721, 717, 716, 722, 723, 724, 720, 713, 724, 721, 726, 725, 727, 723, 729, 718, 725, 728, 728, 730, 732, 731, 733, 740, 726, 733, 735, 737, 735, 729, 731, 736, 736, 733, 738, 739, 742, 727, 730, 738, 741, 743, 744, 740, 732, 745, 746, 747, 737, 745, 750, 744, 751, 748, 749, 752, 739, 48, 742, 748, 741, 743, 750, 749, 746, 754, 747, 753, 757, 752, 755, 751, 758, 753, 759, 755, 756, 756, 760, 754, 761, 758, 764, 762, 763, 765, 766, 767, 757, 769, 763, 765, 770, 767, 759, 768, 764, 772, 760, 768, 771, 774, 761, 762, 770, 771, 766, 774, 769, 773, 773, 775, 770, 776, 775, 777, 778, 779, 772, 780, 780, 781, 778, 784, 782, 783, 783, 787, 777, 782, 785, 776, 786, 786, 785, 788, 789, 779, 784, 781, 790, 789, 792, 793, 795, 800, 796, 798, 798, 787, 799, 801, 801, 802, 799, 788, 805, 793, 803, 790, 800, 804, 803, 957, 795, 957, 792, 796, 797, 806, 805, 797, 807, 797, 806, 808, 804, 797, 802, 797, 808, 808, 809, 810, 797, 811, 807, 810, 812, 797, 813, 814, 815, 812, 816, 813, 809, 821, 817, 823, 811, 818, 821, 812, 817, 814, 819, 818, 816, 820, 820, 822, 819, 815, 824, 827, 825, 822, 828, 830, 833, 823, 854, 828, 829, 831, 831, 827, 833, 835, 834, 830, 832, 824, 825, 826, 826, 832, 829, 836, 842, 826, 854, 826, 834, 837, 837, 838, 835, 826, 840, 838, 843, 846, 826, 826, 840, 841, 836, 842, 841, 826, 844, 849, 845, 843, 847, 848, 844, 845, 852, 850, 846, 851, 855, 847, 848, 850, 853, 849, 856, 857, 851, 853, 860, 858, 859, 863, 855, 852, 860, 861, 865, 857, 858, 859, 866, 861, 867, 869, 856, 868, 870, 863, 871, 872, 865, 870, 878, 871, 872, 873, 874, 874, 869, 875, 866, 867, 876, 868, 873, 875, 879, 882, 878, 880, 880, 879, 879, 880, 881, 876, 883, 881, 885, 884, 886, 882, 887, 888, 889, 891, 890, 892, 887, 890, 889, 885, 892, 893, 894, 886, 883, 884, 893, 895, 896, 897, 899, 888, 895, 896, 891, 900, 899, 901, 894, 902, 904, 897, 905, 901, 907, 902, 903, 903, 908, 904, 906, 900, 909, 906, 910, 911, 914, 910, 912, 913, 905, 914, 907, 919, 912, 913, 915, 908, 911, 916, 917, 915, 909, 920, 916, 923, 917, 921, 922, 922, 924, 919, 925, 921, 923, 925, 926, 928, 927, 926, 929, 930, 932, 920, 931, 935, 933, 930, 924, 927, 931, 933, 929, 934, 934, 928, 936, 932, 938, 937, 939, 941, 938, 940, 935, 942, 944, 945, 945, 947, 936, 937, 940, 948, 949, 951, 950, 953, 939, 980, 941, 950, 980, 947, 951, 944, 949, 954, 948, 955, 942, 952, 952, 954, 956, 955, 958, 953, 959, 956, 960, 958, 961, 962, 963, 965, 964, 961, 966, 968, 968, 969, 959, 964, 960, 970, 971, 973, 962, 43, 965, 977, 972, 963, 974, 969, 977, 966, 972, 974, 979, 971, 978, 970, 976, 976, 981, 973, 974, 978, 974, 982, 983, 974, 979, 984, 985, 983, 986, 987, 982, 985, 989, 989, 981, 990, 991, 992, 993, 986, 990, 991, 994, 993, 984, 995, 994, 996, 987, 997, 998, 999, 1000, 1001, 995, 1003, 1002, 992, 1004, 1005, 1001, 1007, 996, 999, 997, 1006, 1008, 1000, 1002, 998, 1009, 1006, 1010, 1013, 1003, 1014, 1007, 1005, 1012, 1004, 1015, 1010, 1017, 1014, 1012, 1019, 1008, 1013, 1016, 1020, 1009, 1018, 1021, 1016, 1017, 1024, 1018, 1018, 1022, 1022, 1015, 1025, 1102, 1020, 1019, 1021, 1023, 1026, 1024, 1102, 1025, 1023, 1029, 1026, 1023, 1023, 1027, 1027, 1028, 1023, 1030, 1029, 1031, 1028, 1036, 1023, 1030, 1031, 1032, 1023, 1033, 1033, 1037, 1032, 1034, 1034, 1035, 1038, 1039, 1035, 1040, 1035, 1041, 1039, 1036, 1042, 1038, 1043, 14, 1046, 1037, 1042, 1044, 1043, 1040, 1045, 1052, 1044, 1046, 1045, 1041, 1047, 1047, 1046, 1048, 1046, 1048, 1046, 1049, 1046, 1051, 1052, 1053, 1054, 1051, 1055, 1056, 1058, 1057, 1049, 1055, 1055, 1054, 1057, 1059, 1060, 1061, 1062, 1063, 1064, 1053, 1058, 1065, 1059, 1064, 1062, 1067, 1068, 1056, 1066, 1070, 1070, 1063, 1071, 1060, 1061, 1065, 1069, 1066, 1072, 1072, 1073, 1069, 1073, 1067, 1076, 1075, 1077, 1071, 1075, 1076, 1079, 1068, 1078, 1078, 1080, 1080, 1081, 1081, 1082, 1083, 1084, 1085, 1085, 1082, 1086, 1077, 1087, 1088, 1089, 1087, 1079, 1099, 1099, 1089, 1090, 1091, 1093, 1091, 13, 1093, 1083, 1084, 1100, 1090, 1086, 1094, 1095, 1088, 1096, 1097, 1094, 1095, 1098, 1101, 1097, 1103, 1096, 1098, 1105, 1101, 1100, 1106, 1109, 1108, 1105, 1107, 1110, 1106, 1103, 1108, 1107, 1109, 1111, 1112, 1112, 1113, 1115, 1116, 1117, 1122, 1118, 1119, 1121, 1111, 1117, 1110, 1118, 1119, 1121, 1123, 1124, 1125, 1126, 1122, 1128, 1113, 1115, 1127, 1127, 1122, 1116, 1129, 1124, 1130, 1133, 1125, 1131, 1132, 1132, 1123, 1126, 1131, 1134, 1136, 1128, 1138, 1139, 1134, 1137, 1142, 1140, 1130, 1141, 1137, 1137, 1139, 1129, 1133, 1140, 1143, 1144, 1146, 1136, 1138, 1142, 1144, 1141, 1145, 1144, 1145, 1147, 1150, 1149, 1151, 1143, 1146, 1147, 1143, 1148, 1152, 1153, 1155, 1148, 1149, 1154, 1153, 1155, 1156, 1159, 1158, 1150, 1160, 1161, 1161, 1162, 1163, 1164, 1152, 1162, 1151, 1166, 1167, 1154, 1158, 1165, 1168, 1159, 1156, 1169, 1160, 1165, 1170, 1166, 1163, 1171, 1164, 1172, 1173, 1175, 1168, 1167, 1172, 1174, 1169, 1173, 1176, 1170, 1174, 1177, 1177, 1178, 1179, 1180, 1171, 1176, 1181, 1175, 1179, 1182, 1190, 1181, 1183, 1184, 1184, 1182, 1178, 1189, 1183, 1185, 1185, 1187, 1187, 1188, 1180, 1191, 1189, 1188, 1190, 1192, 1193, 1194, 1194, 1195, 1196, 1197, 1198, 1193, 1199, 1191, 1197, 1200, 1196, 1201, 1192, 1202, 1200, 1200, 1201, 1201, 1198, 1203, 1203, 1195, 1204, 1205, 1207, 1199, 1206, 1208, 1209, 1211, 1210, 1212, 1213, 1202, 1211, 1206, 1210, 1216, 1214, 1215, 1217, 1204, 1205, 1207, 1214, 1215, 1209, 1208, 1218, 1219, 1220, 1213, 1221, 1225, 1222, 1224, 1216, 1212, 1224, 1217, 1223, 1223, 1226, 1226, 1220, 1225, 1227, 1218, 1219, 1222, 1228, 1227, 1229, 1221, 1228, 1230, 1231, 1232, 1235, 1232, 1236, 1234, 1237, 1232, 1230, 1229, 1234, 1238, 1238, 1231, 1239, 1243, 1240, 1235, 1244, 1239, 1232, 1240, 1237, 1241, 1236, 1242, 1245, 1241, 1246, 1242, 1247, 1247, 1249, 1251, 1246, 1243, 1244, 1252, 1253, 1253, 1260, 1254, 1252, 1256, 1256, 1258, 1245, 1254, 1258, 1261, 1249, 1259, 1259, 1264, 1251, 1263, 1260, 1265, 1263, 1266, 1266, 1267, 1268, 1269, 1271, 1261, 1265, 1273, 1269, 1270, 1270, 1272, 1277, 1264, 1274, 1274, 1267, 1275, 1280, 1276, 1278, 1278, 1271, 1268, 1276, 1279, 1272, 1277, 1282, 1279, 1283, 1275, 1273, 1281, 1281, 1284, 1285, 1286, 1280, 1284, 1289, 1283, 1286, 1288, 1288, 1290, 1291, 1292, 1293, 1295, 1282, 1294, 1294, 1298, 1295, 1285, 1296, 1297, 1289, 1290, 1300, 1292, 1298, 1299, 1304, 1291, 1291, 1301, 1299, 1301, 1302, 1309, 1303, 1293, 1307, 1302, 1296, 1297, 1303, 1305, 1300, 1308, 1308, 1310, 1304, 1305, 1312, 1313, 1307, 1310, 1309, 1312, 1314, 1314, 1315, 1315, 1316, 1317, 1318, 1319, 1320, 1320, 1319, 1322, 1321, 1328, 1323, 1352, 1324, 1323, 1316, 1313, 1323, 1318, 1324, 1317, 1321, 1325, 1326, 0, 1327, 1352, 1325, 1322, 1323, 1327, 1329, 1326, 1330, 1329, 1328, 1331, 1332, 1332, 1330, 1334, 1331, 1333, 1333, 1335, 1336, 1334, 1337, 1338, 1335, 1339, 1340, 1343, 1341, 1340, 1342, 1344, 1343, 1336, 1341, 1345, 1342, 1344, 1346, 1348, 1337, 1349, 1338, 1346, 1348, 1339, 1347, 1347, 1350, 1351, 1353, 1354, 1355, 1357, 1356, 1358, 1359, 1360, 1345, 1349, 1356, 1362, 1362, 1354, 1353, 1355, 1363, 1364, 1350, 1351, 1359, 1367, 1364, 1357, 1366, 1358, 1365, 1365, 1360, 1368, 1369, 1370, 1371, 1373, 1372, 1367, 1363, 1376, 1374, 1366, 1370, 1372, 1373, 1378, 0, 1373, 1379, 1371, 1369, 1379, 1380, 1380, 1376, 1368, 1374, 1381, 1381, 1376, 1382, 1383, 1384, 1384, 1383, 1385, 1386, 1389, 1387, 1388, 1378, 1390, 1382, 1387, 1388, 1391, 1394, 1392, 1385, 1393, 1390, 1396, 1394, 1389, 1397, 1386, 1392, 1398, 1393, 1392, 1395, 1395, 1399, 1400, 1391, 1401, 1403, 1397, 1404, 1405, 1405, 1396, 1406, 1407, 1411, 1398, 1399, 1401, 1408, 1400, 1409, 1409, 1407, 1408, 1410, 1412, 1404, 1413, 1406, 1416, 1418, 1403, 1411, 1410, 1414, 1409, 1410, 0, 1417, 1414, 1414, 1419, 1419, 1416, 1417, 1413, 1412, 1420, 1418, 1421, 1422, 1423, 1425, 1420, 1421, 1426, 1422, 1423, 1427, 1429, 1428, 1433, 1429, 1431, 1427, 1434, 1435, 1436, 1429, 1426, 1437, 1431, 1425, 1428, 1435, 1438, 1436, 1439, 1440, 1441, 1433, 1442, 1443, 1437, 1434, 1441, 1444, 1445, 1438, 1447, 1446, 1439, 1440, 1448, 1442, 1447, 1449, 1451, 1451, 1452, 1458, 1453, 1443, 1446, 1444, 1453, 1445, 1454, 1455, 1448, 1456, 1457, 1454, 1455, 1449, 1456, 1460, 1461, 1461, 1452, 1457, 1462, 1463, 1458, 1464, 1465, 1465, 1466, 1467, 1470, 1468, 1460, 1469, 1471, 1463, 1467, 1474, 1473, 1481, 1472, 1462, 1466, 1468, 1464, 1469, 1472, 1475, 1481, 1470, 1473, 1476, 1476, 1475, 1471, 1474, 1477, 1478, 1478, 1477, 1480, 1482, 1483, 1483, 1484, 1480, 1485, 1482, 1485, 1486, 1487, 1488, 1486, 1489, 1490, 1491, 1484, 1492, 1495, 1496, 1491, 1494, 1493, 1495, 1497, 1498, 1492, 1501, 1496, 1500, 1487, 1489, 1490, 1488, 1493, 1500, 1494, 1499, 1499, 1502, 1498, 1496, 1504, 1503, 1497, 1505, 1510, 1505, 1501, 1506, 1507, 1507, 1508, 1508, 1509, 1509, 1511, 1511, 1502, 1503, 1512, 1512, 1504, 1506, 1513, 1506, 1510, 1514, 1515, 1515, 1516, 1517, 1518, 1520, 1516, 1518, 1521, 1517, 1522, 1520, 1523, 1525, 1525, 1524, 1522, 1513, 1524, 1527, 1514, 1526, 1526, 1529, 1530, 1527, 1521, 1528, 1531, 1532, 1534, 1535, 1538, 1542, 1531, 1534, 1534, 1523, 1541, 1528, 1528, 1528, 1537, 1529, 1530, 1535, 1528, 1538, 1536, 1532, 1536, 1539, 1540, 1537, 1542, 1543, 1543, 1539, 1541, 1544, 1546, 1540, 1545, 1545, 1547, 1548, 1548, 1549, 1549, 1550, 1553, 1553, 1554, 1556, 1557, 1559, 1559, 1558, 1560, 1562, 1546, 1554, 1556, 1558, 1561, 1544, 1547, 1563, 1562, 1550, 1565, 1561, 1566, 1560, 1568, 1557, 1564, 1564, 1569, 1568, 1570, 1572, 1571, 1577, 1569, 1573, 1578, 1572, 1566, 1571, 1576, 1573, 1575, 1563, 1574, 1574, 1565, 1575, 1579, 1576, 1570, 1580, 1581, 1577, 1580, 1578, 1582, 1583, 1583, 1584, 1579, 1585, 1586, 1587, 1589, 1584, 1590, 1587, 1593, 1594, 1581, 1591, 1595, 1594, 1597, 1597, 1598, 1586, 1595, 1596, 1598, 1585, 1582, 1587, 1589, 1590, 1591, 1593, 1596, 1599, 1600, 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1616, 1603, 1599, 1608, 1607, 1606, 1616, 1599, 1608, 1602, 1609, 1609, 1610, 1610, 1612, 1601, 1611, 1604, 1605, 1607, 1611, 1613, 1613, 1614, 1614, 1612, 1615, 1617, 1618, 1619, 1612, 1615, 1615, 1617, 1620, 1622, 1624, 1625, 1623, 1626, 1620, 1619, 1623, 1627, 1628, 1626, 1629, 1622, 1624, 1631, 1628, 1632, 1633, 1635, 1618, 1639, 1635, 1633, 1629, 1636, 1636, 1631, 1625, 1637, 1637, 1627, 1638, 1638, 1640, 0, 1632, 1641, 1644, 1642, 1640, 1639, 1643, 1641, 1642, 1646, 1648, 1644, 1643, 1648, 1646, 1649, 1650, 1650, 1652, 1653, 1654, 1655, 1655, 1656, 1657, 1654, 1660, 1649, 1658, 1657, 1652, 1653, 1656, 1658, 1659, 1659, 1661, 1662, 1663, 1664, 1667, 1670, 1665, 1664, 1666, 1661, 1660, 1665, 1669, 1669, 1666, 1675, 1671, 1677, 1667, 1662, 1673, 1663, 1674, 1670, 1669, 1671, 1672, 1672, 1676, 1673, 1677, 1680, 1680, 1676, 1674, 1682, 1675, 1683, 1682, 1684, 1687, 1686, 1688, 1689, 1690, 1690, 1696, 1691, 1688, 1691, 1692, 1692, 1695, 1683, 1687, 1684, 1686, 1693, 1698, 1695, 1689, 1697, 1697, 1699, 1700, 1693, 1696, 1698, 1701, 1702, 1703, 1704, 1705, 1707, 1710, 1708, 1700, 1711, 1705, 1714, 1701, 1702, 1709, 1709, 1699, 1712, 1704, 1708, 1712, 1713, 1716, 1705, 1710, 1707, 1713, 1716, 1703, 1711, 1717, 1714, 1717, 1718, 1719, 1720, 1722, 1724, 1725, 1719, 1727, 1726, 1720, 1726, 1729, 1722, 1724, 1730, 1730, 1731, 1725, 1718, 1732, 1733, 1736, 1733, 1734, 1732, 1729, 1727, 1735, 1734, 1737, 1738, 1740, 1735, 1739, 1743, 1741, 1738, 1744, 1739, 1736, 1745, 1745, 1731, 1741, 1740, 1746, 1746, 1747, 1748, 1737, 1749, 1744, 1750, 1743, 1754, 1752, 1749, 1750, 1751, 1759, 1751, 1759, 1747, 1752, 1753, 1753, 1754, 1757, 1748, 1755, 1755, 1752, 1756, 1756, 1758, 1760, 1757, 1763, 1762, 1761, 1765, 1769, 1770, 1758, 1761, 1761, 1758, 1762, 1766, 1763, 1767, 1772, 1765, 1766, 1769, 1767, 1760, 1771, 1771, 1773, 1774, 1775, 1770, 1776, 0, 1780, 1781, 1778, 1779, 1772, 1780, 1781, 1787, 1789, 1788, 1775, 1774, 1773, 1776, 1778, 1779, 1784, 1786, 1790, 1791, 1791, 1794, 1784, 1786, 1788, 1792, 1796, 1790, 1793, 1793, 1787, 1796, 1795, 1789, 1792, 1784, 1795, 1797, 1798, 1799, 1794, 1800, 1803, 1798, 1798, 1799, 1801, 1800, 1802, 1801, 1797, 1806, 1806, 1807, 1807, 1808, 1802, 1809, 1809, 1810, 1810, 1811, 1803, 1812, 1808, 1813, 1821, 1814, 1807, 1815, 1815, 1813, 1814, 1811, 1816, 1816, 1820, 1817, 1818, 1807, 1820, 1812, 1817, 1822, 1818, 1824, 1821, 1822, 1825, 1826, 1827, 1828, 1830, 1825, 1833, 1829, 1828, 1831, 1831, 1832, 1835, 1834, 1836, 1832, 1837, 1827, 1834, 1839, 1830, 1833, 1824, 1838, 1826, 1829, 1836, 1840, 1838, 1841, 1841, 1843, 1839, 1844, 1845, 1837, 1846, 1847, 1835, 1843, 0, 1848, 1849, 1850, 1851, 1840, 1872, 1853, 1854, 1854, 1857, 1855, 1844, 1845, 1855, 1850, 1856, 1858, 1872, 1846, 1848, 1847, 1853, 1849, 1857, 1851, 1859, 1859, 1862, 1856, 1858, 1860, 1860, 1861, 1861, 1863, 1864, 1864, 1865, 1866, 1866, 1867, 1870, 1862, 1869, 1871, 1867, 1865, 1863, 1869, 1865, 1873, 1873, 1874, 1874, 1875, 1876, 1876, 1877, 1878, 1878, 1882, 1870, 1879, 1883, 1871, 1880, 1880, 1881, 1881, 1884, 1888, 1886, 1883, 1875, 1882, 1877, 1886, 1879, 1887, 1887, 1889, 1889, 1890, 1892, 1891, 1895, 1892, 1896, 1884, 1888, 1891, 1893, 1893, 1894, 1894, 1897, 1898, 1898, 1900, 1901, 1890, 1902, 1896, 0, 1895, 1903, 1905, 1893, 1906, 1903, 1904, 1904, 1907, 1910, 1897, 1912, 1902, 1911, 1900, 1909, 1909, 1913, 1901, 1906, 1911, 1905, 1915, 1907, 1917, 1912, 1914, 1914, 1916, 1910, 1916, 1915, 1920, 1919, 1921, 1922, 1923, 1920, 1924, 1921, 1929, 1925, 1927, 1913, 1917, 1919, 1925, 1927, 1928, 1923, 1930, 1931, 1932, 1928, 1934, 1929, 1930, 1933, 1932, 1924, 1922, 1935, 1933, 0, 1936, 1941, 1937, 1938, 1939, 1940, 1944, 1941, 1931, 1936, 1935, 1937, 1938, 1939, 1942, 1934, 1946, 1948, 1942, 1940, 1947, 1947, 1950, 1948, 1952, 1946, 1944, 1949, 1949, 1953, 1954, 1954, 1955, 1960, 1956, 1959, 1949, 1958, 1961, 1965, 1952, 1964, 1950, 1956, 1950, 1953, 1964, 1955, 1960, 1958, 1961, 1959, 1963, 1966, 1983, 1963, 1967, 1967, 1983, 1965, 1968, 1968, 1970, 1970, 1971, 1966, 1972, 1971, 1973, 1974, 1976, 1972, 1975, 1975, 1973, 1974, 1977, 1977, 1978, 1979, 1980, 1981, 1981, 1984, 1976, 1988, 1984, 1985, 1985, 1986, 1978, 1987, 1989, 1979, 1986, 1991, 1989, 1990, 1990, 1980, 1987, 1993, 1994, 1995, 1996, 1988, 1993, 1997, 1991, 1998, 1999, 1997, 2002, 2000, 2001, 1999, 2004, 2014, 1996, 2000, 2001, 2005, 1994, 1995, 2011, 2006, 2005, 2007, 0, 1998, 2002, 2006, 2004, 2017, 2008, 2007, 2008, 2017, 2011, 2012, 2012, 2013, 2018, 2014, 2013, 2015, 2015, 2019, 2018, 2020, 2020, 2021, 2024, 2024, 2026, 2028, 2031, 2032, 2033, 2019, 2021, 2031, 2038, 2033, 2034, 2034, 2036, 2036, 2038, 2028, 2039, 2039, 2026, 2040, 2041, 2042, 2044, 2048, 2045, 2049, 2042, 2046, 2046, 2032, 2050, 2049, 2048, 2054, 2051, 2040, 2045, 2053, 2053, 2055, 2062, 2044, 2041, 2057, 2057, 2058, 2058, 2063, 2050, 2051, 2059, 2060, 2054, 2064, 2062, 2059, 2060, 2055, 2061, 2065, 2061, 2063, 2066, 2066, 2065, 2067, 2067, 2068, 2068, 2069, 2069, 2070, 2071, 2064, 2072, 2072, 2073, 2073, 2076, 2074, 2075, 2077, 2081, 2070, 2078, 2078, 2079, 2079, 2080, 2080, 2071, 2074, 2075, 2082, 2081, 2083, 2084, 2077, 2076, 2085, 2082, 2086, 2087, 2087, 2085, 2088, 2089, 2083, 2090, 2091, 2092, 2093, 2094, 2094, 2088, 2095, 2084, 2100, 2096, 2099, 2097, 2086, 2091, 2101, 2095, 2093, 2102, 2103, 2090, 2102, 0, 2104, 2089, 2096, 2092, 2097, 2104, 2099, 2105, 2100, 2113, 2103, 2115, 2105, 2106, 2106, 2101, 2107, 2107, 2108, 2108, 2110, 2110, 2112, 2112, 2114, 2117, 2118, 2113, 2119, 2120, 2115, 2121, 2122, 2123, 2127, 2114, 2124, 2124, 2126, 2126, 2121, 2129, 2129, 2133, 2118, 2117, 2128, 2134, 2131, 2120, 2119, 2123, 2122, 2132, 2132, 2128, 2127, 2131, 2136, 2135, 2137, 2133, 2138, 2139, 2140, 2134, 2135, 2141, 2141, 2142, 2142, 2143, 2144, 2136, 2145, 2146, 2147, 2143, 2137, 2139, 2138, 2147, 2148, 2140, 2149, 2151, 2150, 2151, 2156, 2145, 2144, 2150, 2152, 2152, 2146, 2153, 2158, 2153, 2154, 2154, 2159, 2160, 2148, 2161, 2149, 2158, 2162, 2156, 2161, 2165, 2166, 2167, 2167, 2166, 2169, 2168, 2170, 2170, 2171, 2159, 2173, 2160, 2171, 2174, 2176, 2162, 2178, 2174, 2179, 2165, 2168, 2182, 2169, 2175, 2175, 2173, 2184, 2176, 2180, 2180, 2183, 2183, 2186, 2182, 2185, 2185, 2178, 2186, 2179, 2187, 2188, 2188, 2193, 2193, 2194, 2184, 2195, 2196, 2197, 2198, 2200, 2187, 2199, 2199, 2205, 2207, 2204, 2197, 2198, 2195, 2196, 2204, 2206, 2207, 2208, 2200, 2194, 2206, 2205, 2209, 2211, 2212, 2214, 2213, 2215, 2215, 2212, 2209, 2213, 2216, 2216, 2217, 2219, 2208, 2218, 2211, 2220, 2214, 2217, 2218, 2221, 2224, 2222, 2223, 2223, 0, 2221, 2222, 2225, 2230, 2219, 2226, 2226, 2225, 2220, 0, 2224, 2227, 2227, 2231, 2231, 2232, 2230, 2233, 2232, 2234, 2235, 2236, 2233, 2233, 2234, 2235, 2237, 2236, 2238, 2239, 2237, 2240, 2241, 2238, 2242, 2243, 2245, 2248, 2239, 2242, 2241, 2245, 2246, 2250, 2252, 2246, 2240, 2243, 2250, 2248, 2251, 2253, 2254, 2260, 2255, 2251, 2256, 2256, 2257, 2261, 2266, 2254, 2252, 2255, 2253, 2262, 2264, 2257, 2263, 2263, 2268, 2265, 2260, 2267, 2267, 2266, 2270, 2272, 2273, 2261, 2265, 2655, 2273, 2655, 2262, 2264, 2274, 2274, 2275, 2268, 2276, 2270, 2277, 2277, 2275, 2278, 2276, 2272, 2281, 2279, 2282, 2284, 2285, 2278, 2279, 2284, 2286, 2281, 2288, 2288, 2289, 2289, 2296, 2282, 2290, 2290, 2285, 2292, 2292, 2294, 2294, 2286, 2297, 2299, 2300, 2300, 2304, 2297, 2297, 2301, 2301, 2306, 2296, 2302, 2302, 2303, 2307, 2307, 2303, 2304, 2308, 2308, 2310, 2299, 2309, 2309, 2311, 2311, 2312, 2306, 2313, 2316, 2314, 2315, 2315, 2316, 2319, 2310, 2314, 2320, 2321, 2319, 2319, 2322, 2313, 2323, 2312, 2324, 2325, 2335, 2326, 2323, 2330, 2324, 2326, 2327, 2327, 2330, 2332, 2337, 2321, 2333, 2320, 2322, 2333, 2336, 2332, 2338, 2336, 2339, 2340, 2341, 2338, 2325, 2335, 2343, 2337, 2337, 2342, 2342, 2344, 2346, 2347, 2347, 2355, 2341, 2345, 2339, 2344, 2352, 2340, 2345, 2345, 2354, 2343, 2348, 2348, 2349, 2349, 2356, 2346, 2350, 2350, 2351, 2351, 2352, 2353, 2357, 2356, 2358, 2355, 2353, 2362, 2354, 2360, 2360, 2361, 2364, 2364, 2361, 2367, 2365, 2366, 2366, 2369, 2367, 2370, 2357, 2365, 2358, 2362, 2372, 2375, 2369, 2374, 2370, 2373, 2373, 2374, 2376, 2377, 2375, 2378, 2379, 2385, 2377, 2377, 2384, 2384, 2372, 2387, 2388, 2379, 2391, 2376, 2378, 2392, 2393, 2395, 2387, 2397, 2399, 2385, 2388, 2401, 2392, 2399, 2400, 2400, 2403, 2395, 2404, 2404, 2401, 2403, 2404, 2410, 2393, 2391, 2406, 2406, 2397, 2407, 2407, 2408, 2408, 2409, 2411, 2412, 2415, 2418, 2414, 2419, 2412, 2415, 2409, 2410, 2414, 2416, 2417, 2417, 2421, 2420, 2416, 2422, 2423, 2411, 2420, 2418, 2426, 2422, 2424, 2424, 2419, 2427, 2428, 2430, 2430, 2432, 2421, 2433, 2434, 2436, 2435, 2437, 2434, 2438, 2440, 2426, 2427, 2423, 2432, 2435, 2433, 2438, 2428, 2439, 2442, 2436, 2441, 2441, 2439, 2447, 2437, 2444, 2444, 2445, 2445, 2449, 2449, 2450, 2451, 2452, 2440, 2454, 2454, 2442, 2452, 2455, 2456, 2457, 2459, 2459, 2447, 2463, 2462, 2450, 2451, 2466, 2460, 2462, 2464, 2464, 2465, 2465, 2467, 2467, 2469, 2455, 2457, 2468, 2470, 2456, 2460, 2471, 2472, 2463, 2479, 2466, 2468, 2473, 2473, 2475, 2475, 2480, 2467, 2471, 2469, 2474, 2479, 2470, 2474, 2481, 2482, 2482, 2472, 2483, 2484, 2481, 2483, 2485, 2487, 2488, 2484, 2480, 2489, 2487, 2488, 2490, 2491, 2492, 2492, 2494, 2494, 2490, 2495, 2496, 2501, 2485, 2498, 2498, 2499, 2499, 2500, 2489, 2496, 2491, 2491, 2500, 2511, 2502, 2501, 2503, 2503, 2495, 2502, 2504, 2504, 2505, 2505, 2506, 2508, 2508, 2513, 2514, 2506, 2515, 2515, 2511, 2517, 2517, 2519, 2520, 2518, 2521, 2521, 2522, 2523, 2526, 2526, 2529, 2520, 2523, 2528, 2528, 2513, 2514, 2518, 2535, 2531, 2530, 2519, 2532, 2532, 2529, 2522, 2530, 2531, 2533, 2536, 2537, 2538, 2542, 2533, 2539, 2537, 2541, 2543, 2535, 2544, 2539, 2548, 2545, 2538, 2541, 2546, 2547, 2549, 2552, 2536, 2590, 2542, 2549, 2553, 2556, 2556, 2590, 2543, 2577, 2544, 2545, 2546, 2548, 2547, 2547, 2577, 2553, 2558, 2552, 2557, 2557, 2558, 2562, 2562, 2564, 2564, 2565, 2565, 2567, 2565, 2566, 2566, 2567, 2566, 2569, 2569, 2570, 2571, 2573, 2574, 2574, 2578, 2579, 2573, 2581, 2578, 2582, 2583, 2583, 2584, 2584, 2571, 2585, 2585, 2570, 2582, 2586, 2579, 2587, 2589, 2588, 2591, 2581, 2587, 2589, 2589, 2592, 2593, 2594, 2588, 2595, 2586, 2588, 2594, 2596, 2595, 2597, 2597, 2598, 2601, 2601, 2592, 2612, 2598, 2604, 2604, 2591, 2624, 2593, 2605, 2605, 2606, 2606, 2596, 2607, 2607, 2608, 2608, 2610, 2611, 2611, 2615, 2612, 2614, 2614, 2616, 2618, 2610, 2617, 2617, 2619, 2619, 2622, 2624, 2626, 2623, 2615, 2616, 2623, 2625, 2625, 2618, 2628, 2629, 2630, 2628, 2631, 2632, 2634, 2629, 2622, 2631, 2626, 2633, 2636, 2647, 2643, 2649, 2630, 2643, 2645, 2645, 2650, 2648, 2634, 2652, 2632, 2648, 2653, 2636, 2654, 2633, 2656, 2657, 2657, 2654, 2650, 2649, 2647, 2653, 2658, 2659, 2661, 2660, 2662, 2664, 2681, 2656, 2652, 2663, 2665, 2667, 2681, 2658, 2668, 2668, 2670, 2670, 2661, 2669, 2659, 2660, 2671, 2671, 2663, 2667, 2664, 2674, 2669, 2662, 2665, 2672, 2672, 2673, 2673, 2675, 2676, 2677, 2678, 2676, 2679, 2680, 2677, 2678, 2682, 2685, 2674, 2683, 2684, 2684, 2689, 2687, 2692, 2692, 2694, 2675, 2680, 2695, 2682, 2693, 2693, 2698, 2694, 2696, 2685, 2679, 2687, 2683, 2689, 2696, 2699, 2697, 2700, 2701, 2701, 2698, 2695, 2697, 2703, 2704, 2705, 2707, 2708, 2699, 2705, 2709, 2710, 2708, 2712, 2711, 2713, 2700, 2714, 2704, 2716, 2713, 2717, 2714, 2703, 2710, 0, 2707, 2711, 2719, 2709, 2718, 2718, 2712, 2719, 2725, 2720, 0, 2716, 2721, 2721, 2717, 2720, 2722, 2723, 2724, 2726, 2731, 2722, 2723, 2724, 2727, 2726, 2732, 2725, 2730, 2727, 2728, 2728, 2730, 2732, 2733, 2734, 2735, 2736, 2737, 2731, 2738, 2738, 2735, 2740, 2740, 2742, 2741, 2743, 2744, 2745, 2742, 2737, 2747, 2733, 2734, 2741, 2736, 2747, 2741, 2746, 2746, 2748, 2745, 2750, 2751, 2751, 2743, 2744, 2752, 2753, 2753, 2754, 2754, 2755, 2748, 2756, 2757, 2762, 2755, 2758, 2758, 2759, 2756, 2760, 2762, 2760, 2759, 2752, 2764, 2750, 2761, 2761, 2763, 2765, 2766, 2757, 2768, 2768, 2765, 2763, 2769, 2771, 2773, 2772, 2774, 2778, 2771, 2764, 2772, 2775, 2775, 2777, 2777, 2766, 2779, 2780, 2780, 2781, 2781, 2769, 2782, 2773, 2792, 2774, 2778, 2784, 2784, 2782, 2785, 2785, 2786, 2788, 2793, 2779, 2791, 0, 2788, 2786, 0, 2791, 0, 2792, 2794, 2794, 2795, 2795, 0, 0, 0, 0, 0, 2793, 2799, 2799, 2799, 2799, 2799, 2799, 2799, 2800, 2800, 2800, 2800, 2800, 2800, 2800, 2801, 2801, 2801, 2801, 2801, 2801, 2801, 2802, 2802, 2802, 2802, 2802, 2802, 2802, 2803, 2803, 2803, 2803, 2803, 2803, 2803, 2805, 2805, 0, 2805, 2805, 2805, 2805, 2806, 2806, 0, 0, 0, 2806, 2806, 2807, 2807, 0, 0, 2807, 0, 2807, 2808, 0, 0, 0, 0, 0, 2808, 2809, 2809, 0, 0, 0, 2809, 2809, 2810, 0, 0, 0, 0, 0, 2810, 2811, 2811, 0, 2811, 2811, 2811, 2811, 2812, 2812, 0, 2812, 2812, 2812, 2812, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798, 2798 } ; static yy_state_type yy_last_accepting_state; static char *yy_last_accepting_cpos; extern int yy_flex_debug; int yy_flex_debug = 0; /* The intent behind this definition is that it'll catch * any uses of REJECT which flex missed. */ #define REJECT reject_used_but_not_detected static int yy_more_flag = 0; static int yy_more_len = 0; #define yymore() ((yy_more_flag) = 1) #define YY_MORE_ADJ (yy_more_len) #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "./util/configlexer.lex" #line 2 "./util/configlexer.lex" /* * configlexer.lex - lexical analyzer for unbound config file * * Copyright (c) 2001-2006, NLnet Labs. All rights reserved * * See LICENSE for the license. * */ /* because flex keeps having sign-unsigned compare problems that are unfixed*/ #if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2)))) #pragma GCC diagnostic ignored "-Wsign-compare" #endif #include #include #ifdef HAVE_GLOB_H # include #endif #include "util/config_file.h" #include "util/configparser.h" void ub_c_error(const char *message); #if 0 #define LEXOUT(s) printf s /* used ONLY when debugging */ #else #define LEXOUT(s) #endif /** avoid warning in about fwrite return value */ #define ECHO ub_c_error_msg("syntax error at text: %s", yytext) /** A parser variable, this is a statement in the config file which is * of the form variable: value1 value2 ... nargs is the number of values. */ #define YDVAR(nargs, var) \ num_args=(nargs); \ LEXOUT(("v(%s%d) ", yytext, num_args)); \ if(num_args > 0) { BEGIN(val); } \ return (var); struct inc_state { char* filename; int line; YY_BUFFER_STATE buffer; struct inc_state* next; }; static struct inc_state* config_include_stack = NULL; static int inc_depth = 0; static int inc_prev = 0; static int num_args = 0; void init_cfg_parse(void) { config_include_stack = NULL; inc_depth = 0; inc_prev = 0; num_args = 0; } static void config_start_include(const char* filename) { FILE *input; struct inc_state* s; char* nm; if(inc_depth++ > 100000) { ub_c_error_msg("too many include files"); return; } if(*filename == '\0') { ub_c_error_msg("empty include file name"); return; } s = (struct inc_state*)malloc(sizeof(*s)); if(!s) { ub_c_error_msg("include %s: malloc failure", filename); return; } if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } nm = strdup(filename); if(!nm) { ub_c_error_msg("include %s: strdup failure", filename); free(s); return; } input = fopen(filename, "r"); if(!input) { ub_c_error_msg("cannot open include file '%s': %s", filename, strerror(errno)); free(s); free(nm); return; } LEXOUT(("switch_to_include_file(%s)\n", filename)); s->filename = cfg_parser->filename; s->line = cfg_parser->line; s->buffer = YY_CURRENT_BUFFER; s->next = config_include_stack; config_include_stack = s; cfg_parser->filename = nm; cfg_parser->line = 1; yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE)); } static void config_start_include_glob(const char* filename) { /* check for wildcards */ #ifdef HAVE_GLOB glob_t g; size_t i; int r, flags; if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') && !strchr(filename, '{') && !strchr(filename, '~'))) { flags = 0 #ifdef GLOB_ERR | GLOB_ERR #endif #ifdef GLOB_NOSORT | GLOB_NOSORT #endif #ifdef GLOB_BRACE | GLOB_BRACE #endif #ifdef GLOB_TILDE | GLOB_TILDE #endif ; memset(&g, 0, sizeof(g)); if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot, strlen(cfg_parser->chroot)) == 0) { filename += strlen(cfg_parser->chroot); } r = glob(filename, flags, NULL, &g); if(r) { /* some error */ globfree(&g); if(r == GLOB_NOMATCH) return; /* no matches for pattern */ config_start_include(filename); /* let original deal with it */ return; } /* process files found, if any */ for(i=0; i<(size_t)g.gl_pathc; i++) { config_start_include(g.gl_pathv[i]); } globfree(&g); return; } #endif /* HAVE_GLOB */ config_start_include(filename); } static void config_end_include(void) { struct inc_state* s = config_include_stack; --inc_depth; if(!s) return; free(cfg_parser->filename); cfg_parser->filename = s->filename; cfg_parser->line = s->line; yy_delete_buffer(YY_CURRENT_BUFFER); yy_switch_to_buffer(s->buffer); config_include_stack = s->next; free(s); } #ifndef yy_set_bol /* compat definition, for flex 2.4.6 */ #define yy_set_bol(at_bol) \ { \ if ( ! yy_current_buffer ) \ yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \ yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \ } #endif #define YY_NO_INPUT 1 #line 186 "./util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 2781 "" #define INITIAL 0 #define quotedstring 1 #define singlequotedstr 2 #define include 3 #define include_quoted 4 #define val 5 #ifndef YY_NO_UNISTD_H /* Special case for "unistd.h", since it is non-ANSI. We include it way * down here because we want the user's section 1 to have been scanned first. * The user has a chance to override it with an option. */ #include #endif #ifndef YY_EXTRA_TYPE #define YY_EXTRA_TYPE void * #endif static int yy_init_globals (void ); /* Accessor methods to globals. These are made visible to non-reentrant scanners for convenience. */ int yylex_destroy (void ); int yyget_debug (void ); void yyset_debug (int debug_flag ); YY_EXTRA_TYPE yyget_extra (void ); void yyset_extra (YY_EXTRA_TYPE user_defined ); FILE *yyget_in (void ); void yyset_in (FILE * _in_str ); FILE *yyget_out (void ); void yyset_out (FILE * _out_str ); int yyget_leng (void ); char *yyget_text (void ); int yyget_lineno (void ); void yyset_lineno (int _line_number ); /* Macros after this point can all be overridden by user definitions in * section 1. */ #ifndef YY_SKIP_YYWRAP #ifdef __cplusplus extern "C" int yywrap (void ); #else extern int yywrap (void ); #endif #endif #ifndef YY_NO_UNPUT #endif #ifndef yytext_ptr static void yy_flex_strncpy (char *,yyconst char *,int ); #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * ); #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void ); #else static int input (void ); #endif #endif /* Amount of stuff to slurp up with each read. */ #ifndef YY_READ_BUF_SIZE #ifdef __ia64__ /* On IA-64, the buffer size is 16k, not 8k */ #define YY_READ_BUF_SIZE 16384 #else #define YY_READ_BUF_SIZE 8192 #endif /* __ia64__ */ #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ int n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #endif /* end tables serialization structures and prototypes */ /* Default declaration of generated scanner - a define so the user can * easily add parameters. */ #ifndef YY_DECL #define YY_DECL_IS_OURS 1 extern int yylex (void); #define YY_DECL int yylex (void) #endif /* !YY_DECL */ /* Code executed at the beginning of each rule, after yytext and yyleng * have been set up. */ #ifndef YY_USER_ACTION #define YY_USER_ACTION #endif /* Code executed at the end of each rule. */ #ifndef YY_BREAK #define YY_BREAK /*LINTED*/break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { yy_state_type yy_current_state; char *yy_cp, *yy_bp; int yy_act; if ( !(yy_init) ) { (yy_init) = 1; #ifdef YY_USER_INIT YY_USER_INIT; #endif if ( ! (yy_start) ) (yy_start) = 1; /* first start state */ if ( ! yyin ) yyin = stdin; if ( ! yyout ) yyout = stdout; if ( ! YY_CURRENT_BUFFER ) { yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_load_buffer_state( ); } { #line 206 "./util/configlexer.lex" #line 3004 "" while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ { (yy_more_len) = 0; if ( (yy_more_flag) ) { (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); (yy_more_flag) = 0; } yy_cp = (yy_c_buf_p); /* Support of yytext. */ *yy_cp = (yy_hold_char); /* yy_bp points to the position in yy_ch_buf of the start of * the current run. */ yy_bp = yy_cp; yy_current_state = (yy_start); yy_match: do { YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2799 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 5464 ); yy_find_action: yy_act = yy_accept[yy_current_state]; if ( yy_act == 0 ) { /* have to back up */ yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); yy_act = yy_accept[yy_current_state]; } YY_DO_BEFORE_ACTION; do_action: /* This label is used only to access EOF actions. */ switch ( yy_act ) { /* beginning of action switch */ case 0: /* must back up */ /* undo the effects of YY_DO_BEFORE_ACTION */ *yy_cp = (yy_hold_char); yy_cp = (yy_last_accepting_cpos); yy_current_state = (yy_last_accepting_state); goto yy_find_action; case 1: YY_RULE_SETUP #line 207 "./util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 209 "./util/configlexer.lex" { /* note that flex makes the longest match and '.' is any but not nl */ LEXOUT(("comment(%s) ", yytext)); /* ignore */ } YY_BREAK case 3: YY_RULE_SETUP #line 212 "./util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 213 "./util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 214 "./util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) } YY_BREAK case 6: YY_RULE_SETUP #line 215 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 7: YY_RULE_SETUP #line 216 "./util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 8: YY_RULE_SETUP #line 217 "./util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 9: YY_RULE_SETUP #line 218 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 10: YY_RULE_SETUP #line 219 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 11: YY_RULE_SETUP #line 220 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 12: YY_RULE_SETUP #line 221 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 222 "./util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 14: YY_RULE_SETUP #line 223 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 15: YY_RULE_SETUP #line 224 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 16: YY_RULE_SETUP #line 225 "./util/configlexer.lex" { YDVAR(1, VAR_PREFER_IP6) } YY_BREAK case 17: YY_RULE_SETUP #line 226 "./util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 18: YY_RULE_SETUP #line 227 "./util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 19: YY_RULE_SETUP #line 228 "./util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 20: YY_RULE_SETUP #line 229 "./util/configlexer.lex" { YDVAR(1, VAR_TCP_MSS) } YY_BREAK case 21: YY_RULE_SETUP #line 230 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_TCP_MSS) } YY_BREAK case 22: YY_RULE_SETUP #line 231 "./util/configlexer.lex" { YDVAR(1, VAR_TCP_IDLE_TIMEOUT) } YY_BREAK case 23: YY_RULE_SETUP #line 232 "./util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) } YY_BREAK case 24: YY_RULE_SETUP #line 233 "./util/configlexer.lex" { YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) } YY_BREAK case 25: YY_RULE_SETUP #line 234 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 26: YY_RULE_SETUP #line 235 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 27: YY_RULE_SETUP #line 236 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 28: YY_RULE_SETUP #line 237 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 29: YY_RULE_SETUP #line 238 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 30: YY_RULE_SETUP #line 239 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 31: YY_RULE_SETUP #line 240 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 32: YY_RULE_SETUP #line 241 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 33: YY_RULE_SETUP #line 242 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 34: YY_RULE_SETUP #line 243 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_CERT_BUNDLE) } YY_BREAK case 35: YY_RULE_SETUP #line 244 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_WIN_CERT) } YY_BREAK case 36: YY_RULE_SETUP #line 245 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 37: YY_RULE_SETUP #line 246 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 38: YY_RULE_SETUP #line 247 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 39: YY_RULE_SETUP #line 248 "./util/configlexer.lex" { YDVAR(1, VAR_TLS_ADDITIONAL_PORT) } YY_BREAK case 40: YY_RULE_SETUP #line 249 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSTEMD) } YY_BREAK case 41: YY_RULE_SETUP #line 250 "./util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 42: YY_RULE_SETUP #line 251 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 43: YY_RULE_SETUP #line 252 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 44: YY_RULE_SETUP #line 253 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 45: YY_RULE_SETUP #line 254 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 46: YY_RULE_SETUP #line 255 "./util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 47: YY_RULE_SETUP #line 256 "./util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 48: YY_RULE_SETUP #line 257 "./util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 49: YY_RULE_SETUP #line 258 "./util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 50: YY_RULE_SETUP #line 259 "./util/configlexer.lex" { YDVAR(1, VAR_IP_FREEBIND) } YY_BREAK case 51: YY_RULE_SETUP #line 260 "./util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 52: YY_RULE_SETUP #line 261 "./util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 53: YY_RULE_SETUP #line 262 "./util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 54: YY_RULE_SETUP #line 263 "./util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 55: YY_RULE_SETUP #line 264 "./util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 56: YY_RULE_SETUP #line 265 "./util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 57: YY_RULE_SETUP #line 266 "./util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 58: YY_RULE_SETUP #line 267 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 59: YY_RULE_SETUP #line 268 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 60: YY_RULE_SETUP #line 269 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 61: YY_RULE_SETUP #line 270 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 62: YY_RULE_SETUP #line 271 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 63: YY_RULE_SETUP #line 272 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 64: YY_RULE_SETUP #line 273 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 65: YY_RULE_SETUP #line 274 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 66: YY_RULE_SETUP #line 275 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 67: YY_RULE_SETUP #line 276 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 68: YY_RULE_SETUP #line 277 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 69: YY_RULE_SETUP #line 278 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 70: YY_RULE_SETUP #line 279 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 71: YY_RULE_SETUP #line 280 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 72: YY_RULE_SETUP #line 281 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 73: YY_RULE_SETUP #line 282 "./util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 74: YY_RULE_SETUP #line 283 "./util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 75: YY_RULE_SETUP #line 284 "./util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 76: YY_RULE_SETUP #line 285 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 77: YY_RULE_SETUP #line 286 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 78: YY_RULE_SETUP #line 287 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 79: YY_RULE_SETUP #line 288 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 80: YY_RULE_SETUP #line 289 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 81: YY_RULE_SETUP #line 290 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 82: YY_RULE_SETUP #line 291 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 83: YY_RULE_SETUP #line 292 "./util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 84: YY_RULE_SETUP #line 293 "./util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 85: YY_RULE_SETUP #line 294 "./util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 86: YY_RULE_SETUP #line 295 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 87: YY_RULE_SETUP #line 296 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 88: YY_RULE_SETUP #line 297 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 89: YY_RULE_SETUP #line 298 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 90: YY_RULE_SETUP #line 299 "./util/configlexer.lex" { YDVAR(1, VAR_DENY_ANY) } YY_BREAK case 91: YY_RULE_SETUP #line 300 "./util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 92: YY_RULE_SETUP #line 301 "./util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 93: YY_RULE_SETUP #line 302 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 94: YY_RULE_SETUP #line 303 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 95: YY_RULE_SETUP #line 304 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 96: YY_RULE_SETUP #line 305 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 97: YY_RULE_SETUP #line 306 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_NO_CACHE) } YY_BREAK case 98: YY_RULE_SETUP #line 307 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 99: YY_RULE_SETUP #line 308 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_SSL_UPSTREAM) } YY_BREAK case 100: YY_RULE_SETUP #line 309 "./util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 101: YY_RULE_SETUP #line 310 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 102: YY_RULE_SETUP #line 311 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 103: YY_RULE_SETUP #line 312 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 104: YY_RULE_SETUP #line 313 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_NO_CACHE) } YY_BREAK case 105: YY_RULE_SETUP #line 314 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 106: YY_RULE_SETUP #line 315 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) } YY_BREAK case 107: YY_RULE_SETUP #line 316 "./util/configlexer.lex" { YDVAR(0, VAR_AUTH_ZONE) } YY_BREAK case 108: YY_RULE_SETUP #line 317 "./util/configlexer.lex" { YDVAR(1, VAR_ZONEFILE) } YY_BREAK case 109: YY_RULE_SETUP #line 318 "./util/configlexer.lex" { YDVAR(1, VAR_MASTER) } YY_BREAK case 110: YY_RULE_SETUP #line 319 "./util/configlexer.lex" { YDVAR(1, VAR_URL) } YY_BREAK case 111: YY_RULE_SETUP #line 320 "./util/configlexer.lex" { YDVAR(1, VAR_ALLOW_NOTIFY) } YY_BREAK case 112: YY_RULE_SETUP #line 321 "./util/configlexer.lex" { YDVAR(1, VAR_FOR_DOWNSTREAM) } YY_BREAK case 113: YY_RULE_SETUP #line 322 "./util/configlexer.lex" { YDVAR(1, VAR_FOR_UPSTREAM) } YY_BREAK case 114: YY_RULE_SETUP #line 323 "./util/configlexer.lex" { YDVAR(1, VAR_FALLBACK_ENABLED) } YY_BREAK case 115: YY_RULE_SETUP #line 324 "./util/configlexer.lex" { YDVAR(0, VAR_VIEW) } YY_BREAK case 116: YY_RULE_SETUP #line 325 "./util/configlexer.lex" { YDVAR(1, VAR_VIEW_FIRST) } YY_BREAK case 117: YY_RULE_SETUP #line 326 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 118: YY_RULE_SETUP #line 327 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 119: YY_RULE_SETUP #line 328 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 120: YY_RULE_SETUP #line 329 "./util/configlexer.lex" { YDVAR(1, VAR_SEND_CLIENT_SUBNET) } YY_BREAK case 121: YY_RULE_SETUP #line 330 "./util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ZONE) } YY_BREAK case 122: YY_RULE_SETUP #line 331 "./util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) } YY_BREAK case 123: YY_RULE_SETUP #line 332 "./util/configlexer.lex" { YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) } YY_BREAK case 124: YY_RULE_SETUP #line 333 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) } YY_BREAK case 125: YY_RULE_SETUP #line 334 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) } YY_BREAK case 126: YY_RULE_SETUP #line 335 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) } YY_BREAK case 127: YY_RULE_SETUP #line 336 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) } YY_BREAK case 128: YY_RULE_SETUP #line 337 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 129: YY_RULE_SETUP #line 338 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 130: YY_RULE_SETUP #line 339 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_TRUSTANCHOR) } YY_BREAK case 131: YY_RULE_SETUP #line 340 "./util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 132: YY_RULE_SETUP #line 341 "./util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 133: YY_RULE_SETUP #line 342 "./util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 134: YY_RULE_SETUP #line 343 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 135: YY_RULE_SETUP #line 344 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 136: YY_RULE_SETUP #line 345 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 137: YY_RULE_SETUP #line 346 "./util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 138: YY_RULE_SETUP #line 347 "./util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 139: YY_RULE_SETUP #line 348 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 140: YY_RULE_SETUP #line 349 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) } YY_BREAK case 141: YY_RULE_SETUP #line 350 "./util/configlexer.lex" { YDVAR(1, VAR_ROOT_KEY_SENTINEL) } YY_BREAK case 142: YY_RULE_SETUP #line 351 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 143: YY_RULE_SETUP #line 352 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 144: YY_RULE_SETUP #line 353 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 145: YY_RULE_SETUP #line 354 "./util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 146: YY_RULE_SETUP #line 355 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 147: YY_RULE_SETUP #line 356 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 148: YY_RULE_SETUP #line 357 "./util/configlexer.lex" { YDVAR(1, VAR_AGGRESSIVE_NSEC) } YY_BREAK case 149: YY_RULE_SETUP #line 358 "./util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 150: YY_RULE_SETUP #line 359 "./util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED) } YY_BREAK case 151: YY_RULE_SETUP #line 360 "./util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL) } YY_BREAK case 152: YY_RULE_SETUP #line 361 "./util/configlexer.lex" { YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) } YY_BREAK case 153: YY_RULE_SETUP #line 362 "./util/configlexer.lex" { YDVAR(1, VAR_FAKE_DSA) } YY_BREAK case 154: YY_RULE_SETUP #line 363 "./util/configlexer.lex" { YDVAR(1, VAR_FAKE_SHA1) } YY_BREAK case 155: YY_RULE_SETUP #line 364 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 156: YY_RULE_SETUP #line 365 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 157: YY_RULE_SETUP #line 366 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 158: YY_RULE_SETUP #line 367 "./util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 159: YY_RULE_SETUP #line 368 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 160: YY_RULE_SETUP #line 370 "./util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 161: YY_RULE_SETUP #line 371 "./util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 162: YY_RULE_SETUP #line 372 "./util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 163: YY_RULE_SETUP #line 373 "./util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 164: YY_RULE_SETUP #line 374 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 165: YY_RULE_SETUP #line 375 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_IDENTITY) } YY_BREAK case 166: YY_RULE_SETUP #line 376 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 167: YY_RULE_SETUP #line 377 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 168: YY_RULE_SETUP #line 378 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_REPLIES) } YY_BREAK case 169: YY_RULE_SETUP #line 379 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_LOCAL_ACTIONS) } YY_BREAK case 170: YY_RULE_SETUP #line 380 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_SERVFAIL) } YY_BREAK case 171: YY_RULE_SETUP #line 381 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 172: YY_RULE_SETUP #line 382 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 173: YY_RULE_SETUP #line 383 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 174: YY_RULE_SETUP #line 384 "./util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 175: YY_RULE_SETUP #line 385 "./util/configlexer.lex" { YDVAR(1, VAR_INSECURE_LAN_ZONES) } YY_BREAK case 176: YY_RULE_SETUP #line 386 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 177: YY_RULE_SETUP #line 387 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 178: YY_RULE_SETUP #line 388 "./util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 179: YY_RULE_SETUP #line 389 "./util/configlexer.lex" { YDVAR(1, VAR_SHM_ENABLE) } YY_BREAK case 180: YY_RULE_SETUP #line 390 "./util/configlexer.lex" { YDVAR(1, VAR_SHM_KEY) } YY_BREAK case 181: YY_RULE_SETUP #line 391 "./util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 182: YY_RULE_SETUP #line 392 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 183: YY_RULE_SETUP #line 393 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 184: YY_RULE_SETUP #line 394 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 185: YY_RULE_SETUP #line 395 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 186: YY_RULE_SETUP #line 396 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 187: YY_RULE_SETUP #line 397 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 188: YY_RULE_SETUP #line 398 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 189: YY_RULE_SETUP #line 399 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 190: YY_RULE_SETUP #line 400 "./util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 191: YY_RULE_SETUP #line 401 "./util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 192: YY_RULE_SETUP #line 402 "./util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 193: YY_RULE_SETUP #line 403 "./util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 194: YY_RULE_SETUP #line 404 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 195: YY_RULE_SETUP #line 405 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 196: YY_RULE_SETUP #line 406 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 197: YY_RULE_SETUP #line 407 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 198: YY_RULE_SETUP #line 408 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_IGNORE_AAAA) } YY_BREAK case 199: YY_RULE_SETUP #line 409 "./util/configlexer.lex" { YDVAR(1, VAR_DEFINE_TAG) } YY_BREAK case 200: YY_RULE_SETUP #line 410 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE_TAG) } YY_BREAK case 201: YY_RULE_SETUP #line 411 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_TAG) } YY_BREAK case 202: YY_RULE_SETUP #line 412 "./util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) } YY_BREAK case 203: YY_RULE_SETUP #line 413 "./util/configlexer.lex" { YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) } YY_BREAK case 204: YY_RULE_SETUP #line 414 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL_VIEW) } YY_BREAK case 205: YY_RULE_SETUP #line 415 "./util/configlexer.lex" { YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) } YY_BREAK case 206: YY_RULE_SETUP #line 416 "./util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 207: YY_RULE_SETUP #line 417 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 208: YY_RULE_SETUP #line 418 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 209: YY_RULE_SETUP #line 419 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 210: YY_RULE_SETUP #line 420 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 211: YY_RULE_SETUP #line 421 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 212: YY_RULE_SETUP #line 422 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 213: YY_RULE_SETUP #line 423 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 214: YY_RULE_SETUP #line 425 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 215: YY_RULE_SETUP #line 427 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 216: YY_RULE_SETUP #line 429 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 217: YY_RULE_SETUP #line 431 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 218: YY_RULE_SETUP #line 433 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 219: YY_RULE_SETUP #line 435 "./util/configlexer.lex" { YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) } YY_BREAK case 220: YY_RULE_SETUP #line 436 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT) } YY_BREAK case 221: YY_RULE_SETUP #line 437 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 222: YY_RULE_SETUP #line 438 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SLABS) } YY_BREAK case 223: YY_RULE_SETUP #line 439 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 224: YY_RULE_SETUP #line 440 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_SIZE) } YY_BREAK case 225: YY_RULE_SETUP #line 441 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 226: YY_RULE_SETUP #line 442 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 227: YY_RULE_SETUP #line 443 "./util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 228: YY_RULE_SETUP #line 444 "./util/configlexer.lex" { YDVAR(1, VAR_IP_RATELIMIT_FACTOR) } YY_BREAK case 229: YY_RULE_SETUP #line 445 "./util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 230: YY_RULE_SETUP #line 446 "./util/configlexer.lex" { YDVAR(1, VAR_LOW_RTT) } YY_BREAK case 231: YY_RULE_SETUP #line 447 "./util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_NUM) } YY_BREAK case 232: YY_RULE_SETUP #line 448 "./util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 233: YY_RULE_SETUP #line 449 "./util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 234: YY_RULE_SETUP #line 450 "./util/configlexer.lex" { YDVAR(1, VAR_FAST_SERVER_PERMIL) } YY_BREAK case 235: YY_RULE_SETUP #line 451 "./util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_TAG) } YY_BREAK case 236: YY_RULE_SETUP #line 452 "./util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP) } YY_BREAK case 237: YY_RULE_SETUP #line 453 "./util/configlexer.lex" { YDVAR(2, VAR_RESPONSE_IP_DATA) } YY_BREAK case 238: YY_RULE_SETUP #line 454 "./util/configlexer.lex" { YDVAR(0, VAR_DNSCRYPT) } YY_BREAK case 239: YY_RULE_SETUP #line 455 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_ENABLE) } YY_BREAK case 240: YY_RULE_SETUP #line 456 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PORT) } YY_BREAK case 241: YY_RULE_SETUP #line 457 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER) } YY_BREAK case 242: YY_RULE_SETUP #line 458 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) } YY_BREAK case 243: YY_RULE_SETUP #line 459 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) } YY_BREAK case 244: YY_RULE_SETUP #line 460 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) } YY_BREAK case 245: YY_RULE_SETUP #line 461 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) } YY_BREAK case 246: YY_RULE_SETUP #line 463 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) } YY_BREAK case 247: YY_RULE_SETUP #line 465 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) } YY_BREAK case 248: YY_RULE_SETUP #line 466 "./util/configlexer.lex" { YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) } YY_BREAK case 249: YY_RULE_SETUP #line 467 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_ENABLED) } YY_BREAK case 250: YY_RULE_SETUP #line 468 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) } YY_BREAK case 251: YY_RULE_SETUP #line 469 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_HOOK) } YY_BREAK case 252: YY_RULE_SETUP #line 470 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_MAX_TTL) } YY_BREAK case 253: YY_RULE_SETUP #line 471 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_WHITELIST) } YY_BREAK case 254: YY_RULE_SETUP #line 472 "./util/configlexer.lex" { YDVAR(1, VAR_IPSECMOD_STRICT) } YY_BREAK case 255: YY_RULE_SETUP #line 473 "./util/configlexer.lex" { YDVAR(0, VAR_CACHEDB) } YY_BREAK case 256: YY_RULE_SETUP #line 474 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_BACKEND) } YY_BREAK case 257: YY_RULE_SETUP #line 475 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_SECRETSEED) } YY_BREAK case 258: YY_RULE_SETUP #line 476 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISHOST) } YY_BREAK case 259: YY_RULE_SETUP #line 477 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISPORT) } YY_BREAK case 260: YY_RULE_SETUP #line 478 "./util/configlexer.lex" { YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) } YY_BREAK case 261: YY_RULE_SETUP #line 479 "./util/configlexer.lex" { YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) } YY_BREAK case 262: YY_RULE_SETUP #line 480 "./util/configlexer.lex" { YDVAR(2, VAR_TCP_CONNECTION_LIMIT) } YY_BREAK case 263: /* rule 263 can match eol */ YY_RULE_SETUP #line 481 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 264: YY_RULE_SETUP #line 484 "./util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 485 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 265: YY_RULE_SETUP #line 490 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 266: /* rule 266 can match eol */ YY_RULE_SETUP #line 491 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 267: YY_RULE_SETUP #line 493 "./util/configlexer.lex" { LEXOUT(("QE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* Single Quoted strings. Strip leading and ending quotes */ case 268: YY_RULE_SETUP #line 505 "./util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 506 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 269: YY_RULE_SETUP #line 511 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 270: /* rule 270 can match eol */ YY_RULE_SETUP #line 512 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 271: YY_RULE_SETUP #line 514 "./util/configlexer.lex" { LEXOUT(("SQE ")); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } yytext[yyleng - 1] = '\0'; yylval.str = strdup(yytext); if(!yylval.str) yyerror("out of memory"); return STRING_ARG; } YY_BREAK /* include: directive */ case 272: YY_RULE_SETUP #line 526 "./util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 528 "./util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 273: YY_RULE_SETUP #line 532 "./util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 274: /* rule 274 can match eol */ YY_RULE_SETUP #line 533 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 275: YY_RULE_SETUP #line 534 "./util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 276: YY_RULE_SETUP #line 535 "./util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 540 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 277: YY_RULE_SETUP #line 544 "./util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 278: /* rule 278 can match eol */ YY_RULE_SETUP #line 545 "./util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 279: YY_RULE_SETUP #line 547 "./util/configlexer.lex" { LEXOUT(("IQE ")); yytext[yyleng - 1] = '\0'; config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(val): #line 553 "./util/configlexer.lex" { LEXOUT(("LEXEOF ")); yy_set_bol(1); /* Set beginning of line, so "^" rules match. */ if (!config_include_stack) { yyterminate(); } else { fclose(yyin); config_end_include(); } } YY_BREAK case 280: YY_RULE_SETUP #line 564 "./util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 281: YY_RULE_SETUP #line 568 "./util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 282: YY_RULE_SETUP #line 572 "./util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 283: YY_RULE_SETUP #line 576 "./util/configlexer.lex" ECHO; YY_BREAK #line 4583 "" case YY_END_OF_BUFFER: { /* Amount of text matched not including the EOB char. */ int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; /* Undo the effects of YY_DO_BEFORE_ACTION. */ *yy_cp = (yy_hold_char); YY_RESTORE_YY_MORE_OFFSET if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) { /* We're scanning a new file or input source. It's * possible that this happened because the user * just pointed yyin at a new source and called * yylex(). If so, then we have to assure * consistency between YY_CURRENT_BUFFER and our * globals. Here is the right place to do so, because * this is the first action (other than possibly a * back-up) that will match for the new input source. */ (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; } /* Note that here we test for yy_c_buf_p "<=" to the position * of the first EOB in the buffer, since yy_c_buf_p will * already have been incremented past the NUL character * (since all states make transitions on EOB to the * end-of-buffer state). Contrast this with the test * in input(). */ if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) { /* This was really a NUL. */ yy_state_type yy_next_state; (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); /* Okay, we're now positioned to make the NUL * transition. We couldn't have * yy_get_previous_state() go ahead and do it * for us because it doesn't know how to deal * with the possibility of jamming (and we don't * want to build jamming into it because then it * will run more slowly). */ yy_next_state = yy_try_NUL_trans( yy_current_state ); yy_bp = (yytext_ptr) + YY_MORE_ADJ; if ( yy_next_state ) { /* Consume the NUL. */ yy_cp = ++(yy_c_buf_p); yy_current_state = yy_next_state; goto yy_match; } else { yy_cp = (yy_c_buf_p); goto yy_find_action; } } else switch ( yy_get_next_buffer( ) ) { case EOB_ACT_END_OF_FILE: { (yy_did_buffer_switch_on_eof) = 0; if ( yywrap( ) ) { /* Note: because we've taken care in * yy_get_next_buffer() to have set up * yytext, we can now set up * yy_c_buf_p so that if some total * hoser (like flex itself) wants to * call the scanner after we return the * YY_NULL, it'll still work - another * YY_NULL will get returned. */ (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; yy_act = YY_STATE_EOF(YY_START); goto do_action; } else { if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; } break; } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_match; case EOB_ACT_LAST_MATCH: (yy_c_buf_p) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; yy_current_state = yy_get_previous_state( ); yy_cp = (yy_c_buf_p); yy_bp = (yytext_ptr) + YY_MORE_ADJ; goto yy_find_action; } break; } default: YY_FATAL_ERROR( "fatal flex scanner internal error--no action found" ); } /* end of action switch */ } /* end of scanning one token */ } /* end of user's declarations */ } /* end of yylex */ /* yy_get_next_buffer - try to read in a new buffer * * Returns a code representing an action: * EOB_ACT_LAST_MATCH - * EOB_ACT_CONTINUE_SCAN - continue scanning from current position * EOB_ACT_END_OF_FILE - end of file */ static int yy_get_next_buffer (void) { char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; char *source = (yytext_ptr); yy_size_t number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (yy_size_t) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,(yy_size_t) (b->yy_buf_size + 2) ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = NULL; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((int) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,(yy_size_t) new_size ); if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); } (yy_n_chars) += number_to_move; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; return ret_val; } /* yy_get_previous_state - get the state just before the EOB char was reached */ static yy_state_type yy_get_previous_state (void) { yy_state_type yy_current_state; char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2799 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { int yy_is_jam; char *yy_cp = (yy_c_buf_p); YY_CHAR yy_c = 1; if ( yy_accept[yy_current_state] ) { (yy_last_accepting_state) = yy_current_state; (yy_last_accepting_cpos) = yy_cp; } while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) { yy_current_state = (int) yy_def[yy_current_state]; if ( yy_current_state >= 2799 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; yy_is_jam = (yy_current_state == 2798); return yy_is_jam ? 0 : yy_current_state; } #ifndef YY_NO_UNPUT #endif #ifndef YY_NO_INPUT #ifdef __cplusplus static int yyinput (void) #else static int input (void) #endif { int c; *(yy_c_buf_p) = (yy_hold_char); if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) { /* yy_c_buf_p now points to the character we want to return. * If this occurs *before* the EOB characters, then it's a * valid NUL; if not, then we've hit the end of the buffer. */ if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) /* This was really a NUL. */ *(yy_c_buf_p) = '\0'; else { /* need more input */ int offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return 0; if ( ! (yy_did_buffer_switch_on_eof) ) YY_NEW_FILE; #ifdef __cplusplus return yyinput(); #else return input(); #endif } case EOB_ACT_CONTINUE_SCAN: (yy_c_buf_p) = (yytext_ptr) + offset; break; } } } c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ *(yy_c_buf_p) = '\0'; /* preserve yytext */ (yy_hold_char) = *++(yy_c_buf_p); return c; } #endif /* ifndef YY_NO_INPUT */ /** Immediately switch to a different input stream. * @param input_file A readable stream. * * @note This function does not reset the start condition to @c INITIAL . */ void yyrestart (FILE * input_file ) { if ( ! YY_CURRENT_BUFFER ){ yyensure_buffer_stack (); YY_CURRENT_BUFFER_LVALUE = yy_create_buffer(yyin,YY_BUF_SIZE ); } yy_init_buffer(YY_CURRENT_BUFFER,input_file ); yy_load_buffer_state( ); } /** Switch to a different input buffer. * @param new_buffer The new input buffer. * */ void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) { /* TODO. We should be able to replace this entire function body * with * yypop_buffer_state(); * yypush_buffer_state(new_buffer); */ yyensure_buffer_stack (); if ( YY_CURRENT_BUFFER == new_buffer ) return; if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } YY_CURRENT_BUFFER_LVALUE = new_buffer; yy_load_buffer_state( ); /* We don't actually know whether we did this switch during * EOF (yywrap()) processing, but the only time this flag * is looked at is after yywrap() is called, so it's safe * to go ahead and always set it. */ (yy_did_buffer_switch_on_eof) = 1; } static void yy_load_buffer_state (void) { (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; (yy_hold_char) = *(yy_c_buf_p); } /** Allocate and initialize an input buffer state. * @param file A readable stream. * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. * * @return the allocated buffer state. */ YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) { YY_BUFFER_STATE b; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_buf_size = size; /* yy_ch_buf has to be 2 characters longer than the size given because * we need to put in 2 end-of-buffer characters. */ b->yy_ch_buf = (char *) yyalloc((yy_size_t) (b->yy_buf_size + 2) ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { int num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; (yy_buffer_stack_top) = 0; return; } if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ /* Increase the buffer to prepare for a possible push. */ yy_size_t grow_size = 8 /* arbitrary grow size */; num_to_alloc = (yy_buffer_stack_max) + grow_size; (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc ((yy_buffer_stack), num_to_alloc * sizeof(struct yy_buffer_state*) ); if ( ! (yy_buffer_stack) ) YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); /* zero only the new slots.*/ memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); (yy_buffer_stack_max) = num_to_alloc; } } /** Setup the input buffer state to scan directly from a user-specified character buffer. * @param base the character buffer * @param size the size in bytes of the character buffer * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) { YY_BUFFER_STATE b; if ( size < 2 || base[size-2] != YY_END_OF_BUFFER_CHAR || base[size-1] != YY_END_OF_BUFFER_CHAR ) /* They forgot to leave room for the EOB's. */ return NULL; b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); if ( ! b ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = NULL; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; yy_switch_to_buffer(b ); return b; } /** Setup the input buffer state to scan a string. The next call to yylex() will * scan from a @e copy of @a str. * @param yystr a NUL-terminated string to scan * * @return the newly allocated buffer state object. * @note If you want to scan bytes that may contain NUL values, then use * yy_scan_bytes() instead. */ YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) { return yy_scan_bytes(yystr,(int) strlen(yystr) ); } /** Setup the input buffer state to scan the given bytes. The next call to yylex() will * scan from a @e copy of @a bytes. * @param yybytes the byte buffer to scan * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) { 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 = (yy_size_t) _yybytes_len + 2; buf = (char *) yyalloc(n ); if ( ! buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); for ( i = 0; i < _yybytes_len; ++i ) buf[i] = yybytes[i]; buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; b = yy_scan_buffer(buf,n ); if ( ! b ) YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); /* It's okay to grow etc. this buffer, and we should throw it * away when we're done. */ b->yy_is_our_buffer = 1; return b; } #ifndef YY_EXIT_FAILURE #define YY_EXIT_FAILURE 2 #endif static void yynoreturn yy_fatal_error (yyconst char* msg ) { (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. */ \ yy_size_t yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param _line_number line number * */ void yyset_lineno (int _line_number ) { yylineno = _line_number; } /** Set the input stream. This does not discard the current * input buffer. * @param _in_str A readable stream. * * @see yy_switch_to_buffer */ void yyset_in (FILE * _in_str ) { yyin = _in_str ; } void yyset_out (FILE * _out_str ) { yyout = _out_str ; } int yyget_debug (void) { return yy_flex_debug; } void yyset_debug (int _bdebug ) { yy_flex_debug = _bdebug ; } static int yy_init_globals (void) { /* Initialization is the same as for the non-reentrant scanner. * This function is called from yylex_destroy(), so don't allocate here. */ (yy_buffer_stack) = NULL; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = NULL; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = NULL; yyout = NULL; #endif /* For future reference: Set errno on error, since we are called by * yylex_init() */ return 0; } /* yylex_destroy is for both reentrant and non-reentrant scanners. */ int yylex_destroy (void) { /* Pop the buffer stack, destroying each element. */ while(YY_CURRENT_BUFFER){ yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; yypop_buffer_state(); } /* Destroy the stack itself. */ yyfree((yy_buffer_stack) ); (yy_buffer_stack) = NULL; /* Reset the globals. This is important in a non-reentrant scanner so the next time * yylex() is called, initialization will occur. */ yy_init_globals( ); return 0; } /* * Internal utility routines. */ #ifndef yytext_ptr static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) { int i; for ( i = 0; i < n; ++i ) s1[i] = s2[i]; } #endif #ifdef YY_NEED_STRLEN static int yy_flex_strlen (yyconst char * s ) { int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return malloc(size); } void *yyrealloc (void * ptr, yy_size_t size ) { /* The cast to (char *) in the following accommodates both * implementations that use char* generic pointers, and those * that use void* generic pointers. It works with the latter * because both ANSI C and C++ allow castless assignment from * any pointer type to void*, and deal with argument conversions * as though doing an assignment. */ return realloc(ptr, size); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 576 "./util/configlexer.lex"