#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 5 #define YY_FLEX_SUBMINOR_VERSION 37 #if YY_FLEX_SUBMINOR_VERSION > 0 #define FLEX_BETA #endif /* First, we deal with platform-specific or compiler-specific issues. */ /* begin standard C headers. */ #include #include #include #include /* end standard C headers. */ /* flex integer type definitions */ #ifndef FLEXINT_H #define FLEXINT_H /* C99 systems have . Non-C99 systems may or may not. */ #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, * if you want the limit (max/min) macros for int types. */ #ifndef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS 1 #endif #include typedef int8_t flex_int8_t; typedef uint8_t flex_uint8_t; typedef int16_t flex_int16_t; typedef uint16_t flex_uint16_t; typedef int32_t flex_int32_t; typedef uint32_t flex_uint32_t; #else typedef signed char flex_int8_t; typedef short int flex_int16_t; typedef int flex_int32_t; typedef unsigned char flex_uint8_t; typedef unsigned short int flex_uint16_t; typedef unsigned int flex_uint32_t; /* Limits of integral types. */ #ifndef INT8_MIN #define INT8_MIN (-128) #endif #ifndef INT16_MIN #define INT16_MIN (-32767-1) #endif #ifndef INT32_MIN #define INT32_MIN (-2147483647-1) #endif #ifndef INT8_MAX #define INT8_MAX (127) #endif #ifndef INT16_MAX #define INT16_MAX (32767) #endif #ifndef INT32_MAX #define INT32_MAX (2147483647) #endif #ifndef UINT8_MAX #define UINT8_MAX (255U) #endif #ifndef UINT16_MAX #define UINT16_MAX (65535U) #endif #ifndef UINT32_MAX #define UINT32_MAX (4294967295U) #endif #endif /* ! C99 */ #endif /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ /* C99 requires __STDC__ to be defined as 1. */ #if defined (__STDC__) #define YY_USE_CONST #endif /* defined (__STDC__) */ #endif /* ! __cplusplus */ #ifdef YY_USE_CONST #define yyconst const #else #define yyconst #endif /* Returned upon end-of-file. */ #define YY_NULL 0 /* Promotes a possibly negative, possibly signed char to an unsigned * integer for use as an array index. If the signed char is negative, * we want to instead treat it as an 8-bit unsigned char, hence the * double cast. */ #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) /* 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 #define YY_BUF_SIZE 16384 #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 yy_size_t 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) /* Return all but the first "n" matched characters back to the input stream. */ #define yyless(n) \ do \ { \ /* Undo effects of setting up yytext. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ *yy_cp = (yy_hold_char); \ YY_RESTORE_YY_MORE_OFFSET \ (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ YY_DO_BEFORE_ACTION; /* set up yytext again */ \ } \ while ( 0 ) #define unput(c) yyunput( c, (yytext_ptr) ) #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ yy_size_t 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 = 0; /**< 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 yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */ yy_size_t yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (char *) 0; 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,yy_size_t 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 = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; int yylineno = 1; extern char *yytext; #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 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 = (size_t) (yy_cp - (yytext_ptr)); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 176 #define YY_END_OF_BUFFER 177 /* 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[1771] = { 0, 1, 1, 158, 158, 162, 162, 166, 166, 170, 170, 1, 1, 177, 174, 1, 156, 156, 175, 2, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 175, 158, 159, 159, 160, 175, 162, 163, 163, 164, 175, 169, 166, 167, 167, 168, 175, 170, 171, 171, 172, 175, 173, 157, 2, 161, 173, 175, 174, 0, 1, 2, 2, 2, 2, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 158, 0, 162, 0, 169, 0, 166, 170, 0, 173, 0, 2, 2, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 71, 174, 174, 174, 174, 174, 174, 7, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 173, 174, 174, 174, 174, 174, 31, 174, 174, 174, 174, 174, 174, 174, 174, 137, 174, 13, 14, 174, 16, 15, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 130, 174, 174, 174, 174, 174, 174, 174, 3, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 173, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 165, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 34, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 35, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 86, 165, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 85, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 69, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 21, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 32, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 33, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 23, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 150, 174, 174, 174, 174, 174, 174, 27, 174, 28, 174, 174, 174, 72, 174, 73, 174, 70, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 6, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 88, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 24, 174, 174, 174, 174, 174, 114, 113, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 36, 174, 174, 174, 174, 174, 174, 174, 174, 75, 74, 174, 174, 174, 174, 174, 174, 174, 110, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 54, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 58, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 112, 174, 174, 174, 174, 174, 174, 174, 174, 174, 5, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 106, 174, 174, 174, 174, 174, 174, 174, 174, 174, 123, 174, 107, 174, 135, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 22, 174, 174, 174, 174, 77, 174, 78, 76, 174, 174, 174, 174, 174, 174, 174, 84, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 108, 174, 174, 174, 174, 134, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 68, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 29, 174, 174, 18, 174, 174, 174, 17, 174, 93, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 43, 45, 174, 174, 174, 174, 174, 174, 174, 174, 138, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 79, 174, 174, 174, 174, 174, 174, 83, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 87, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 129, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 97, 174, 101, 174, 174, 174, 174, 82, 174, 174, 64, 174, 121, 174, 174, 174, 174, 136, 174, 174, 174, 174, 174, 174, 174, 143, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 100, 174, 174, 174, 174, 174, 46, 47, 174, 30, 53, 102, 174, 115, 111, 174, 174, 39, 174, 104, 174, 174, 174, 174, 174, 8, 174, 174, 67, 174, 174, 174, 174, 152, 174, 120, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 89, 142, 174, 174, 174, 174, 174, 174, 174, 174, 131, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 103, 174, 38, 40, 174, 174, 174, 174, 174, 174, 66, 174, 174, 174, 174, 151, 174, 174, 174, 174, 125, 19, 20, 174, 174, 174, 174, 174, 174, 174, 63, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 127, 124, 174, 174, 174, 174, 174, 174, 174, 174, 37, 174, 174, 174, 174, 174, 174, 174, 12, 174, 174, 174, 174, 174, 174, 174, 174, 11, 174, 174, 174, 174, 174, 155, 174, 41, 174, 133, 126, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 96, 95, 174, 174, 128, 122, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 48, 174, 132, 174, 174, 174, 174, 174, 174, 174, 174, 42, 174, 174, 174, 90, 92, 116, 174, 174, 174, 94, 174, 174, 174, 174, 174, 174, 174, 174, 174, 139, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 25, 174, 174, 174, 4, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 141, 174, 174, 119, 174, 174, 174, 174, 174, 174, 174, 51, 174, 26, 174, 10, 174, 174, 174, 174, 174, 117, 55, 174, 174, 174, 99, 174, 174, 174, 174, 174, 174, 174, 140, 80, 174, 174, 174, 174, 57, 61, 56, 174, 49, 174, 9, 174, 174, 153, 174, 174, 98, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 62, 60, 174, 50, 174, 109, 174, 118, 174, 174, 91, 44, 174, 174, 174, 174, 174, 174, 81, 59, 52, 154, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 65, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 105, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 146, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 144, 174, 147, 148, 174, 174, 174, 174, 174, 145, 149, 0 } ; static yyconst flex_int32_t 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, 1, 1, 9, 10, 1, 11, 1, 1, 1, 12, 1, 1, 1, 1, 1, 1, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 1, 39, 1, 1, 1, 1, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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_int32_t yy_meta[66] = { 0, 1, 2, 3, 4, 5, 1, 6, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 } ; static yyconst flex_int16_t yy_base[1785] = { 0, 0, 0, 63, 66, 69, 71, 77, 83, 88, 91, 129, 135, 344, 303, 95, 5097, 5097, 5097, 107, 110, 142, 180, 108, 50, 145, 172, 118, 148, 121, 181, 197, 166, 241, 137, 225, 260, 233, 228, 257, 116, 263, 5097, 5097, 5097, 94, 244, 5097, 5097, 5097, 96, 221, 251, 5097, 5097, 5097, 304, 212, 5097, 5097, 5097, 102, 208, 5097, 308, 5097, 268, 318, 206, 322, 111, 0, 326, 0, 0, 201, 170, 217, 317, 193, 309, 312, 307, 183, 310, 332, 313, 311, 328, 330, 245, 336, 335, 358, 156, 347, 362, 374, 355, 356, 338, 373, 371, 383, 382, 372, 385, 398, 397, 411, 401, 412, 406, 405, 408, 417, 419, 400, 422, 430, 438, 425, 433, 453, 457, 447, 448, 164, 174, 141, 296, 134, 477, 165, 122, 312, 115, 495, 502, 0, 474, 486, 475, 481, 471, 480, 485, 489, 514, 506, 518, 520, 564, 504, 498, 516, 501, 526, 529, 508, 535, 548, 519, 547, 569, 539, 538, 575, 571, 586, 580, 574, 567, 597, 598, 608, 610, 602, 601, 611, 600, 612, 599, 615, 619, 626, 607, 613, 638, 629, 636, 656, 637, 659, 660, 666, 649, 662, 670, 673, 676, 677, 663, 680, 684, 681, 700, 689, 694, 695, 702, 687, 714, 719, 726, 724, 727, 715, 718, 732, 730, 729, 747, 736, 748, 759, 752, 746, 751, 760, 755, 770, 762, 763, 765, 772, 774, 782, 776, 796, 791, 793, 792, 790, 819, 254, 801, 817, 809, 826, 829, 806, 820, 841, 830, 849, 843, 839, 862, 840, 858, 868, 861, 878, 865, 881, 879, 882, 887, 889, 869, 909, 905, 954, 898, 906, 896, 908, 922, 918, 895, 924, 932, 933, 935, 945, 951, 949, 962, 964, 977, 987, 972, 978, 985, 988, 891, 999, 990, 996, 1009, 997, 1011, 1021, 1013, 1015, 1014, 1023, 960, 1029, 1019, 1038, 1017, 1030, 1044, 1043, 1056, 1061, 1058, 1046, 1068, 5097, 1071, 1054, 1066, 1070, 1057, 1064, 5097, 1080, 1085, 1094, 1090, 1083, 1104, 1103, 1117, 1096, 1093, 1095, 1120, 1110, 1113, 1112, 1107, 1155, 1130, 1132, 1153, 1143, 1140, 1164, 1137, 1167, 1151, 1157, 1159, 1178, 1177, 1195, 1193, 1184, 1191, 1205, 1180, 1198, 1194, 1201, 1207, 1213, 1204, 1211, 1232, 1229, 1242, 1230, 1251, 1239, 1248, 1253, 1258, 1255, 1260, 1262, 1240, 1259, 1266, 1267, 1273, 1263, 1254, 1269, 1278, 1284, 1300, 1291, 1288, 1293, 1313, 1290, 1311, 1317, 1297, 1309, 1318, 1315, 1320, 1341, 1340, 1325, 1348, 1349, 1335, 1342, 1361, 1355, 1362, 1358, 1395, 1359, 1366, 1370, 1375, 1391, 1400, 1396, 1385, 1399, 1387, 1389, 1410, 1383, 1411, 1408, 1418, 1421, 1425, 1381, 1422, 1419, 1446, 1432, 1448, 1435, 1436, 1444, 1447, 1456, 1458, 1459, 1467, 1469, 1482, 1470, 1476, 1488, 1492, 1494, 1480, 1499, 1496, 5097, 1506, 1507, 1512, 1486, 1502, 1518, 1515, 1563, 5097, 1528, 5097, 5097, 1527, 5097, 5097, 1521, 1546, 1549, 1522, 1612, 1542, 1532, 1531, 1557, 1561, 1559, 1564, 1579, 1577, 1593, 1576, 1588, 1590, 1599, 1617, 1600, 1620, 1611, 1627, 1562, 1615, 1626, 1633, 1642, 1641, 1647, 1643, 1645, 1657, 1646, 1666, 1659, 1675, 1660, 5097, 1669, 1671, 1682, 1676, 1688, 1668, 1697, 5097, 1692, 1694, 1693, 1684, 1696, 1702, 1716, 1724, 1712, 1715, 1723, 1719, 1731, 1727, 1739, 1740, 1742, 1744, 1743, 1751, 1760, 1752, 1755, 1772, 1774, 1758, 1768, 1788, 1766, 1791, 1794, 1782, 1792, 1779, 1778, 1793, 1790, 1835, 1808, 1799, 1803, 1816, 1822, 1818, 1833, 1848, 1821, 1861, 1837, 1843, 1859, 1854, 1871, 1826, 1884, 1860, 1886, 1875, 1870, 1893, 1895, 1888, 1887, 1905, 1906, 1904, 5097, 1909, 1922, 1907, 1916, 1933, 1920, 1914, 1931, 1923, 1941, 1928, 1945, 1935, 1949, 5097, 1951, 1936, 1962, 1956, 1969, 1975, 1955, 1978, 1988, 1972, 5097, 1994, 1991, 1984, 1986, 1983, 1993, 1989, 2014, 2002, 2019, 2020, 2022, 2010, 2027, 2031, 2029, 2016, 2036, 2030, 2013, 2042, 2051, 2040, 2063, 2052, 2071, 2065, 2061, 2075, 2081, 2067, 2080, 2066, 2069, 2072, 120, 2086, 2078, 2096, 2091, 5097, 76, 2092, 2102, 2100, 2125, 2126, 2119, 2123, 2118, 2121, 2129, 2122, 2111, 2139, 2141, 2136, 2140, 2159, 2149, 2170, 2167, 2166, 2161, 2174, 2162, 2181, 2178, 2176, 2179, 2193, 2187, 2200, 2198, 2201, 2208, 2207, 2202, 2203, 2205, 2220, 2218, 2211, 2228, 5097, 2143, 2227, 2236, 2229, 2247, 2261, 2240, 2264, 2253, 2260, 2274, 2271, 2257, 2268, 2276, 2281, 2270, 2280, 2287, 2282, 2285, 2301, 2307, 2304, 2309, 2308, 5097, 2312, 2300, 2323, 2317, 2329, 2334, 2332, 2344, 2340, 2337, 2333, 2330, 2347, 2363, 5097, 2366, 2360, 2353, 2370, 2356, 2373, 2379, 2377, 2368, 2381, 2383, 2389, 2397, 2387, 2395, 2400, 5097, 2406, 2413, 2412, 2416, 2410, 2404, 2409, 2426, 2415, 2418, 2433, 2434, 2429, 2439, 2437, 2456, 2432, 2438, 2440, 2464, 2447, 2466, 5097, 2477, 2478, 2472, 2484, 2474, 2476, 2485, 2481, 2475, 2483, 2499, 2495, 2502, 2498, 2519, 2506, 2511, 2514, 2516, 2522, 2513, 2529, 2535, 2543, 2536, 2544, 2545, 2546, 2547, 2561, 2569, 2571, 2575, 5097, 2577, 2564, 2573, 2570, 2567, 2589, 2583, 2580, 2587, 2591, 2593, 2595, 2594, 2596, 2600, 2605, 2610, 2611, 2609, 2616, 2607, 2628, 2636, 2643, 2632, 2639, 2637, 2659, 5097, 2633, 2649, 2657, 2667, 2663, 2658, 5097, 2655, 5097, 2664, 2680, 2691, 5097, 2679, 5097, 2693, 5097, 2692, 2696, 2684, 2676, 2688, 2704, 2698, 2712, 2694, 2715, 2705, 2706, 2726, 2718, 2729, 5097, 2720, 2721, 2745, 2744, 2731, 2732, 2741, 2740, 2753, 2758, 2770, 2754, 2773, 2761, 2783, 2778, 5097, 2762, 2790, 2780, 2776, 2803, 2797, 2793, 2795, 2807, 2789, 2805, 2799, 2826, 2810, 2819, 2820, 2824, 2846, 2822, 2839, 2843, 2847, 2832, 2837, 2841, 2848, 2851, 2856, 2864, 2860, 2865, 2855, 5097, 2881, 2878, 2887, 2888, 2879, 5097, 5097, 2898, 2896, 2904, 2901, 2902, 2891, 2907, 2921, 2905, 2933, 2915, 2926, 2922, 2927, 2938, 2920, 2934, 2954, 2942, 2947, 2946, 2969, 2977, 2953, 5097, 2963, 2973, 2967, 2981, 2968, 2979, 2980, 2996, 5097, 5097, 2994, 2990, 2974, 3006, 3013, 3008, 3004, 5097, 3007, 3032, 3023, 3033, 3034, 3035, 3014, 3030, 3042, 3029, 3040, 3041, 3046, 3056, 3050, 3064, 3060, 3073, 3081, 3083, 3082, 5097, 3080, 3084, 3085, 3087, 3090, 3103, 3105, 3091, 3112, 3102, 3110, 3101, 3108, 3106, 3117, 3111, 3140, 3123, 3141, 3145, 3142, 3155, 3150, 5097, 3159, 3138, 3161, 3135, 3164, 3165, 3163, 3162, 3151, 3177, 3179, 3180, 3184, 3185, 3169, 3208, 3190, 5097, 3191, 3213, 3201, 3207, 3206, 3193, 3222, 3203, 3228, 5097, 3220, 3235, 3218, 3232, 3252, 3251, 3248, 3245, 3237, 3241, 3246, 3264, 3243, 3250, 3262, 3259, 3273, 3268, 3287, 3288, 3269, 3291, 3282, 3277, 3285, 3309, 3306, 3317, 3312, 3295, 3304, 3315, 3311, 3324, 3318, 3310, 3331, 3319, 3336, 3337, 5097, 3344, 3339, 3352, 3353, 3334, 3350, 3355, 3359, 3361, 5097, 3364, 5097, 3363, 5097, 3366, 3372, 3374, 3376, 3371, 3381, 3380, 3390, 3377, 3392, 5097, 3408, 3396, 3401, 3404, 5097, 3415, 5097, 5097, 3403, 3411, 3428, 3412, 3431, 3424, 3434, 5097, 3436, 3430, 3445, 3435, 3427, 3437, 3453, 3454, 3452, 3458, 3462, 5097, 3463, 3472, 3442, 3475, 5097, 3469, 3486, 3471, 3495, 3489, 3498, 3499, 3488, 3487, 3492, 3512, 3513, 5097, 3501, 3509, 3508, 3528, 3522, 3518, 3516, 3527, 3539, 3530, 3549, 3544, 3543, 3548, 5097, 3557, 3567, 5097, 3540, 3554, 3566, 5097, 3571, 5097, 3580, 3536, 3565, 3587, 3583, 3588, 3591, 3576, 3598, 3600, 3593, 3608, 3603, 3592, 5097, 5097, 3616, 3617, 3621, 3627, 3619, 3618, 3629, 3637, 5097, 3615, 3642, 3639, 3644, 3645, 3633, 3625, 3649, 3653, 3655, 3660, 3664, 3654, 5097, 3652, 3661, 3674, 3677, 3682, 3678, 5097, 3683, 3692, 3700, 3689, 3701, 3705, 3696, 3707, 3702, 3708, 3711, 3718, 3712, 3724, 3736, 3725, 5097, 3732, 3743, 3727, 3747, 3730, 3749, 3750, 3765, 3756, 3745, 3742, 3762, 5097, 3758, 3763, 3752, 3764, 3784, 3777, 3797, 3772, 3799, 3792, 3790, 3804, 3785, 3793, 3794, 3811, 3803, 3805, 3813, 3820, 3839, 3840, 5097, 3826, 5097, 3841, 3847, 3843, 3851, 5097, 3842, 3845, 5097, 3853, 5097, 3855, 3859, 3836, 3862, 5097, 3876, 3874, 3889, 3881, 3880, 3877, 3897, 5097, 3891, 3899, 3900, 3901, 3885, 3916, 3907, 3915, 3904, 3914, 3913, 5097, 3921, 3934, 3917, 3941, 3943, 5097, 5097, 3946, 5097, 5097, 5097, 3950, 5097, 5097, 3948, 3951, 5097, 3952, 5097, 3958, 3954, 3940, 3938, 3964, 5097, 3959, 3963, 5097, 3975, 3962, 3970, 3977, 5097, 3993, 5097, 3989, 3997, 3981, 3996, 4000, 4003, 4005, 3998, 3991, 4002, 4019, 4021, 4007, 4015, 4013, 4029, 4017, 4025, 4034, 4026, 4037, 4036, 4044, 4052, 4062, 4049, 4055, 5097, 5097, 4048, 4065, 4058, 4070, 4060, 4071, 4081, 4085, 5097, 4073, 4079, 4094, 4087, 4093, 4098, 4103, 4104, 4105, 4107, 4106, 4112, 4117, 4115, 5097, 4118, 5097, 5097, 4120, 4138, 4122, 4133, 4134, 4149, 5097, 4142, 4151, 4156, 4145, 5097, 4159, 4147, 4170, 4171, 5097, 5097, 5097, 4172, 4165, 4168, 4176, 4183, 4175, 4182, 5097, 4174, 4186, 4200, 4192, 4196, 4206, 4215, 4217, 4212, 4220, 5097, 5097, 4228, 4221, 4224, 4226, 4216, 4230, 4232, 4233, 5097, 4243, 4223, 4227, 4252, 4254, 4265, 4260, 5097, 4255, 4251, 4256, 4276, 4268, 4280, 4278, 4279, 5097, 4282, 4272, 4290, 4283, 4293, 5097, 4288, 5097, 4300, 5097, 5097, 4299, 4313, 4320, 4322, 4325, 4328, 4311, 4316, 4335, 4332, 4333, 5097, 5097, 4336, 4338, 5097, 5097, 4327, 4334, 4340, 4348, 4356, 4351, 4354, 4366, 4357, 4352, 4381, 4361, 4384, 4367, 4364, 4383, 4378, 4379, 5097, 4393, 5097, 4394, 4386, 4403, 4406, 4409, 4402, 4405, 4413, 5097, 4419, 4423, 4416, 5097, 5097, 5097, 4426, 4436, 4429, 5097, 4439, 4443, 4427, 4440, 4454, 4430, 4464, 4451, 4469, 5097, 4453, 4458, 4477, 4478, 4474, 4468, 4470, 4479, 4485, 4466, 4494, 4488, 4498, 4497, 5097, 4508, 4493, 4495, 5097, 4522, 4512, 4505, 4528, 4530, 4514, 4519, 4516, 4537, 4532, 4541, 4542, 4529, 4546, 4549, 4538, 5097, 4551, 4543, 5097, 4572, 4565, 4575, 4581, 4582, 4583, 4585, 5097, 4584, 5097, 4586, 5097, 4591, 4589, 4588, 4595, 4593, 5097, 5097, 4592, 4596, 4616, 5097, 4623, 4614, 4611, 4615, 4617, 4612, 4627, 5097, 5097, 4620, 4636, 4637, 4641, 5097, 5097, 5097, 4646, 5097, 4647, 5097, 4649, 4638, 5097, 4657, 4654, 5097, 4648, 4670, 4671, 4655, 4662, 4664, 4678, 4681, 4668, 4688, 5097, 5097, 4690, 5097, 4692, 5097, 4694, 5097, 4689, 4698, 5097, 5097, 4704, 4695, 4697, 4684, 4700, 4707, 5097, 5097, 5097, 5097, 4716, 4712, 4722, 4714, 4719, 4724, 4717, 4738, 4748, 4743, 4749, 4750, 4731, 4746, 4767, 4757, 5097, 4751, 4768, 4772, 4776, 4775, 4773, 4777, 4778, 4782, 4784, 4793, 4788, 4785, 4803, 4791, 4820, 4817, 4824, 4826, 4813, 4830, 4825, 4834, 4819, 4823, 4840, 4835, 4847, 5097, 4850, 4844, 4845, 4853, 4869, 4868, 4856, 4877, 4883, 4871, 4872, 4867, 4885, 4881, 4882, 4895, 4896, 4898, 5097, 4902, 4913, 4900, 4905, 4920, 4911, 4912, 4925, 4933, 4928, 4936, 4937, 4942, 5097, 4938, 5097, 5097, 4945, 4940, 4947, 4954, 4956, 5097, 5097, 5097, 5005, 5012, 5019, 5026, 5033, 82, 5040, 5047, 5054, 5061, 5068, 5075, 5082, 5089 } ; static yyconst flex_int16_t yy_def[1785] = { 0, 1770, 1, 1771, 1771, 1772, 1772, 1773, 1773, 1774, 1774, 1775, 1775, 1770, 1776, 1770, 1770, 1770, 1770, 1777, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1778, 1770, 1770, 1770, 1778, 1779, 1770, 1770, 1770, 1779, 1780, 1770, 1770, 1770, 1770, 1780, 1781, 1770, 1770, 1770, 1781, 1782, 1770, 1783, 1770, 1782, 1782, 1776, 1776, 1770, 1784, 1777, 1784, 1777, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1778, 1778, 1779, 1779, 1780, 1780, 1770, 1781, 1781, 1782, 1782, 1783, 1783, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1770, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1770, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1770, 1770, 1770, 1776, 1770, 1770, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1770, 1770, 1770, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1770, 1770, 1770, 1776, 1770, 1776, 1770, 1776, 1776, 1770, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1770, 1776, 1770, 1776, 1770, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 0, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770 } ; static yyconst flex_int16_t yy_nxt[5163] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 18, 20, 14, 21, 22, 23, 24, 14, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 14, 14, 14, 14, 40, 20, 14, 21, 22, 23, 24, 14, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 14, 14, 14, 14, 42, 43, 44, 42, 43, 44, 47, 48, 47, 48, 49, 88, 49, 52, 53, 54, 55, 68, 18, 52, 53, 54, 55, 69, 18, 58, 59, 60, 58, 59, 60, 70, 127, 127, 129, 71, 45, 129, 88, 45, 134, 134, 50, 73, 50, 73, 73, 70, 73, 137, 56, 71, 68, 73, 68, 68, 56, 68, 86, 75, 76, 61, 68, 765, 61, 15, 16, 17, 63, 64, 65, 15, 16, 17, 63, 64, 65, 77, 87, 95, 74, 69, 97, 69, 66, 86, 75, 76, 137, 78, 66, 69, 89, 69, 69, 135, 79, 111, 164, 96, 90, 133, 67, 80, 77, 87, 95, 132, 67, 97, 69, 66, 127, 127, 130, 69, 78, 66, 69, 89, 142, 69, 91, 79, 111, 92, 96, 90, 98, 69, 80, 81, 93, 105, 94, 82, 99, 128, 83, 69, 84, 85, 100, 69, 102, 69, 101, 142, 103, 91, 141, 150, 92, 69, 69, 98, 69, 146, 81, 93, 105, 94, 82, 99, 104, 83, 69, 84, 85, 100, 69, 102, 112, 101, 69, 103, 113, 141, 150, 69, 120, 137, 121, 143, 146, 135, 114, 133, 123, 115, 69, 104, 106, 124, 132, 158, 107, 122, 69, 112, 321, 69, 108, 113, 125, 109, 69, 120, 126, 121, 143, 116, 110, 114, 69, 123, 115, 130, 69, 106, 124, 117, 158, 107, 122, 118, 119, 69, 140, 108, 69, 125, 109, 69, 129, 126, 128, 129, 116, 110, 131, 137, 131, 131, 73, 131, 73, 73, 117, 73, 134, 134, 118, 119, 136, 140, 136, 136, 68, 136, 68, 68, 73, 68, 73, 73, 144, 73, 68, 147, 148, 149, 73, 154, 152, 151, 69, 155, 1770, 145, 69, 139, 69, 69, 69, 69, 69, 159, 172, 1770, 69, 153, 156, 144, 157, 160, 147, 148, 149, 74, 154, 69, 151, 69, 155, 69, 145, 161, 69, 69, 162, 69, 165, 166, 159, 172, 171, 1770, 153, 156, 69, 157, 160, 168, 163, 170, 173, 169, 69, 69, 174, 69, 1770, 167, 161, 69, 175, 162, 177, 165, 166, 176, 190, 171, 69, 69, 69, 69, 179, 178, 168, 163, 170, 173, 169, 69, 69, 174, 69, 184, 167, 180, 181, 175, 186, 177, 182, 183, 176, 187, 69, 69, 185, 69, 69, 179, 178, 192, 69, 69, 191, 69, 188, 189, 69, 69, 184, 195, 180, 181, 69, 186, 69, 182, 183, 69, 187, 193, 69, 185, 196, 197, 194, 69, 192, 200, 69, 191, 199, 188, 189, 69, 201, 131, 195, 131, 131, 204, 131, 1770, 69, 69, 198, 202, 193, 206, 69, 196, 197, 194, 69, 136, 200, 136, 136, 199, 136, 203, 73, 201, 73, 73, 205, 73, 69, 207, 208, 137, 69, 198, 202, 221, 206, 69, 69, 209, 210, 212, 69, 69, 213, 211, 69, 222, 203, 214, 1770, 223, 227, 205, 224, 69, 207, 208, 69, 139, 225, 69, 221, 69, 226, 69, 209, 231, 212, 1770, 215, 69, 211, 69, 222, 69, 69, 69, 223, 227, 228, 224, 232, 69, 236, 1770, 69, 225, 1770, 235, 229, 226, 69, 230, 231, 69, 69, 215, 216, 1770, 233, 237, 238, 217, 69, 69, 241, 228, 218, 232, 1770, 236, 239, 242, 219, 220, 235, 229, 243, 234, 230, 69, 240, 244, 69, 216, 69, 233, 69, 238, 217, 69, 69, 245, 246, 218, 247, 69, 1770, 248, 242, 219, 220, 69, 249, 243, 234, 250, 252, 240, 251, 253, 257, 254, 69, 69, 69, 69, 69, 69, 245, 256, 255, 258, 69, 69, 248, 69, 69, 69, 69, 249, 69, 259, 250, 252, 69, 251, 253, 257, 254, 260, 263, 69, 261, 262, 69, 264, 256, 255, 258, 265, 267, 69, 69, 69, 1770, 266, 268, 271, 259, 270, 273, 1770, 269, 276, 69, 279, 260, 274, 1770, 261, 262, 69, 264, 281, 69, 69, 265, 69, 137, 272, 278, 69, 266, 268, 275, 69, 270, 277, 69, 269, 276, 69, 69, 280, 274, 69, 69, 282, 284, 69, 285, 283, 69, 1770, 69, 286, 272, 278, 287, 69, 69, 275, 288, 289, 277, 69, 290, 69, 1770, 291, 280, 292, 294, 293, 282, 284, 295, 285, 283, 69, 69, 296, 286, 69, 69, 287, 300, 298, 297, 69, 289, 69, 69, 290, 69, 69, 291, 69, 292, 294, 293, 69, 299, 295, 301, 307, 304, 302, 310, 305, 1770, 69, 69, 69, 298, 297, 69, 69, 306, 303, 69, 308, 309, 311, 69, 69, 312, 69, 69, 299, 69, 301, 307, 304, 302, 69, 305, 69, 315, 69, 318, 69, 322, 317, 328, 306, 303, 69, 308, 309, 311, 313, 316, 312, 314, 69, 69, 69, 69, 319, 320, 69, 325, 329, 1770, 315, 69, 318, 1770, 322, 317, 69, 323, 326, 69, 324, 327, 1770, 313, 316, 330, 314, 69, 331, 69, 69, 319, 320, 1770, 325, 329, 69, 332, 333, 69, 69, 335, 334, 336, 323, 326, 337, 324, 327, 69, 69, 69, 330, 69, 338, 331, 339, 344, 340, 69, 345, 1770, 1770, 1770, 332, 333, 350, 346, 69, 334, 336, 69, 69, 337, 367, 69, 384, 341, 69, 69, 342, 338, 343, 339, 344, 340, 347, 349, 69, 69, 348, 69, 69, 350, 346, 351, 361, 69, 362, 69, 363, 69, 353, 384, 341, 69, 137, 342, 69, 343, 364, 352, 1770, 347, 349, 69, 69, 348, 69, 69, 365, 366, 351, 361, 372, 362, 1770, 363, 69, 353, 368, 370, 69, 371, 69, 369, 1770, 364, 352, 354, 355, 375, 69, 69, 397, 69, 374, 365, 366, 356, 1770, 357, 358, 359, 373, 69, 360, 368, 370, 69, 371, 69, 369, 376, 69, 377, 354, 355, 378, 379, 69, 397, 69, 374, 69, 380, 356, 381, 357, 358, 359, 373, 69, 360, 382, 383, 385, 69, 69, 390, 376, 386, 377, 387, 394, 69, 401, 69, 69, 391, 69, 388, 380, 395, 381, 393, 69, 69, 392, 69, 396, 382, 383, 385, 389, 399, 390, 398, 386, 69, 387, 69, 400, 69, 69, 69, 391, 69, 388, 69, 395, 69, 393, 69, 402, 392, 403, 396, 404, 69, 69, 389, 399, 405, 398, 406, 407, 1770, 69, 400, 408, 1770, 409, 69, 69, 410, 69, 412, 411, 415, 414, 402, 413, 403, 69, 404, 69, 69, 69, 419, 405, 69, 406, 407, 69, 420, 69, 408, 69, 409, 69, 69, 410, 416, 412, 411, 415, 414, 417, 413, 69, 418, 421, 69, 422, 69, 423, 424, 425, 426, 69, 429, 420, 69, 69, 69, 69, 427, 428, 431, 416, 430, 1770, 69, 69, 417, 1770, 69, 418, 421, 69, 422, 69, 69, 424, 425, 426, 69, 429, 441, 69, 438, 439, 437, 427, 428, 431, 1770, 430, 432, 69, 440, 69, 442, 433, 444, 434, 69, 443, 446, 69, 445, 447, 69, 435, 1770, 441, 448, 438, 456, 437, 69, 1770, 69, 436, 69, 432, 69, 440, 69, 442, 433, 444, 434, 69, 443, 446, 69, 445, 447, 449, 435, 450, 451, 448, 452, 453, 69, 69, 454, 69, 436, 455, 457, 69, 458, 461, 459, 460, 462, 1770, 69, 1770, 69, 69, 69, 463, 449, 69, 450, 451, 69, 452, 453, 69, 137, 454, 69, 464, 455, 457, 69, 458, 69, 459, 460, 462, 465, 466, 467, 469, 472, 468, 463, 470, 471, 473, 474, 475, 69, 69, 477, 69, 476, 478, 464, 481, 479, 485, 69, 69, 483, 69, 480, 465, 466, 467, 484, 69, 468, 482, 69, 471, 69, 69, 69, 486, 1770, 69, 69, 69, 478, 69, 69, 479, 491, 69, 69, 483, 69, 480, 487, 495, 69, 484, 499, 488, 482, 69, 492, 493, 489, 494, 486, 69, 490, 1770, 496, 69, 1770, 69, 69, 491, 69, 497, 500, 501, 69, 487, 495, 69, 506, 499, 488, 502, 503, 492, 493, 489, 69, 504, 69, 490, 69, 496, 69, 498, 69, 69, 505, 69, 497, 500, 501, 507, 69, 509, 508, 506, 510, 511, 502, 503, 512, 1770, 69, 514, 1770, 513, 519, 69, 69, 69, 498, 1770, 517, 505, 1770, 69, 69, 537, 507, 518, 509, 508, 69, 510, 520, 69, 69, 512, 69, 69, 514, 515, 513, 69, 521, 516, 523, 69, 525, 517, 524, 527, 69, 531, 526, 528, 518, 529, 69, 522, 69, 520, 69, 1770, 69, 532, 69, 533, 69, 1770, 539, 521, 69, 69, 1770, 525, 69, 69, 527, 530, 531, 526, 528, 534, 529, 69, 522, 69, 69, 535, 536, 538, 532, 541, 533, 69, 69, 539, 69, 69, 540, 543, 69, 542, 546, 544, 530, 545, 1770, 69, 534, 547, 69, 69, 549, 548, 535, 536, 538, 1770, 541, 69, 550, 69, 69, 69, 1770, 540, 543, 553, 542, 546, 544, 69, 545, 69, 69, 551, 547, 552, 554, 549, 548, 555, 69, 556, 69, 69, 557, 550, 559, 558, 562, 69, 565, 561, 553, 69, 560, 69, 566, 563, 1770, 69, 551, 137, 552, 554, 579, 69, 555, 69, 556, 69, 564, 557, 69, 559, 558, 69, 576, 565, 561, 69, 69, 560, 567, 566, 563, 69, 568, 1770, 69, 574, 575, 69, 1770, 587, 69, 69, 588, 564, 577, 578, 69, 69, 589, 576, 69, 69, 590, 591, 606, 567, 1770, 593, 592, 568, 569, 69, 574, 575, 570, 69, 587, 571, 69, 588, 595, 577, 578, 597, 572, 589, 69, 573, 69, 590, 69, 69, 69, 69, 593, 592, 594, 569, 596, 1770, 1770, 570, 1770, 602, 571, 69, 69, 595, 69, 598, 597, 572, 599, 607, 573, 580, 581, 69, 582, 69, 600, 583, 69, 594, 608, 596, 584, 601, 69, 69, 602, 604, 585, 586, 605, 1770, 598, 603, 609, 599, 69, 69, 580, 581, 69, 582, 69, 600, 583, 69, 610, 611, 614, 584, 601, 69, 69, 612, 604, 585, 586, 605, 69, 613, 603, 609, 615, 616, 617, 618, 69, 69, 69, 619, 69, 69, 69, 610, 611, 614, 621, 620, 622, 1770, 612, 626, 69, 623, 69, 69, 613, 625, 624, 615, 616, 69, 618, 69, 69, 1770, 69, 630, 627, 1770, 69, 69, 632, 621, 620, 622, 628, 69, 626, 69, 623, 629, 631, 69, 625, 624, 633, 69, 69, 69, 634, 69, 69, 635, 630, 627, 636, 69, 637, 632, 639, 640, 638, 628, 644, 641, 645, 69, 629, 631, 69, 69, 1770, 633, 69, 642, 646, 634, 69, 69, 635, 643, 69, 636, 651, 637, 69, 639, 640, 638, 647, 648, 641, 649, 69, 69, 652, 69, 69, 69, 1770, 650, 642, 646, 654, 653, 69, 69, 643, 655, 69, 651, 656, 69, 657, 69, 1770, 647, 648, 658, 649, 69, 659, 69, 661, 660, 662, 69, 650, 69, 663, 654, 653, 69, 69, 664, 655, 69, 665, 1770, 672, 657, 673, 69, 1770, 69, 69, 69, 69, 137, 688, 661, 660, 662, 69, 676, 674, 663, 69, 675, 677, 1770, 664, 69, 680, 665, 666, 672, 667, 673, 683, 69, 668, 69, 669, 678, 69, 69, 1770, 670, 679, 69, 676, 674, 671, 684, 675, 677, 69, 1770, 69, 680, 69, 666, 681, 667, 686, 683, 69, 668, 693, 669, 678, 69, 682, 687, 670, 679, 685, 69, 696, 671, 684, 689, 69, 69, 69, 695, 690, 694, 691, 681, 697, 686, 699, 69, 69, 693, 698, 700, 69, 682, 687, 704, 702, 685, 703, 696, 692, 69, 689, 69, 69, 69, 695, 690, 694, 691, 69, 697, 69, 699, 701, 705, 706, 698, 700, 707, 710, 69, 69, 69, 69, 703, 69, 692, 708, 709, 711, 69, 712, 69, 716, 717, 713, 69, 714, 69, 69, 701, 705, 706, 719, 69, 707, 710, 69, 715, 69, 721, 69, 69, 724, 708, 709, 711, 69, 712, 718, 716, 69, 713, 722, 714, 69, 720, 69, 725, 723, 719, 69, 69, 726, 727, 715, 732, 721, 69, 728, 724, 730, 1770, 729, 731, 69, 718, 1770, 69, 733, 722, 69, 734, 720, 69, 725, 723, 735, 736, 69, 69, 727, 69, 732, 69, 69, 737, 69, 730, 69, 69, 731, 738, 739, 740, 742, 733, 741, 69, 734, 744, 749, 743, 746, 735, 736, 69, 745, 747, 69, 69, 1770, 69, 737, 752, 69, 69, 748, 69, 738, 739, 740, 742, 69, 741, 69, 69, 69, 749, 743, 746, 750, 69, 751, 745, 747, 69, 753, 69, 754, 758, 752, 757, 755, 748, 756, 759, 69, 69, 761, 1770, 760, 763, 764, 762, 1770, 767, 69, 750, 69, 751, 69, 69, 69, 753, 69, 754, 69, 69, 757, 755, 69, 756, 766, 69, 770, 69, 69, 760, 763, 764, 762, 69, 767, 768, 769, 771, 69, 69, 772, 773, 774, 69, 775, 1770, 1770, 69, 776, 69, 781, 766, 777, 770, 779, 778, 784, 780, 69, 812, 1770, 1770, 768, 769, 771, 69, 69, 772, 69, 69, 69, 775, 69, 69, 782, 776, 69, 781, 785, 777, 783, 779, 778, 69, 780, 786, 69, 69, 69, 787, 69, 788, 789, 790, 1770, 791, 69, 792, 1770, 1770, 793, 782, 1770, 795, 797, 785, 69, 783, 69, 69, 794, 799, 786, 69, 69, 796, 787, 69, 788, 789, 790, 69, 791, 69, 792, 69, 69, 793, 69, 800, 795, 797, 798, 801, 69, 803, 802, 794, 799, 804, 69, 805, 796, 807, 806, 69, 808, 69, 69, 69, 69, 810, 69, 809, 69, 69, 800, 811, 69, 798, 801, 813, 803, 802, 814, 69, 804, 69, 805, 815, 807, 806, 816, 808, 69, 69, 69, 817, 810, 819, 809, 818, 825, 69, 811, 820, 821, 69, 813, 822, 823, 814, 824, 826, 69, 829, 815, 827, 832, 816, 69, 833, 1770, 1770, 69, 1770, 819, 69, 69, 825, 828, 69, 820, 821, 830, 69, 822, 69, 69, 824, 826, 69, 829, 69, 827, 831, 834, 69, 69, 69, 840, 835, 69, 836, 69, 843, 842, 828, 837, 841, 838, 830, 839, 1770, 1770, 846, 845, 69, 69, 847, 854, 69, 831, 834, 69, 69, 69, 840, 835, 69, 836, 844, 843, 842, 69, 837, 841, 838, 848, 839, 69, 849, 850, 845, 851, 852, 69, 69, 853, 69, 69, 69, 855, 856, 69, 858, 1770, 69, 844, 857, 860, 69, 859, 862, 69, 848, 861, 864, 849, 850, 69, 851, 852, 69, 863, 853, 866, 69, 865, 855, 69, 867, 858, 69, 868, 69, 857, 69, 869, 859, 69, 871, 873, 861, 69, 870, 69, 872, 69, 874, 69, 863, 876, 866, 69, 865, 69, 875, 867, 877, 879, 868, 69, 878, 69, 869, 880, 69, 871, 883, 1770, 69, 870, 69, 872, 881, 69, 69, 1770, 69, 69, 882, 69, 69, 875, 69, 877, 879, 884, 886, 878, 887, 890, 69, 885, 888, 69, 889, 892, 69, 69, 69, 881, 891, 69, 69, 69, 69, 882, 893, 894, 895, 902, 896, 69, 884, 886, 897, 887, 890, 899, 885, 888, 69, 889, 892, 900, 898, 901, 903, 891, 69, 904, 69, 905, 1770, 893, 894, 895, 69, 908, 69, 69, 69, 69, 69, 1770, 899, 69, 906, 69, 69, 69, 900, 898, 901, 903, 907, 910, 904, 909, 905, 69, 911, 912, 69, 69, 908, 914, 69, 913, 915, 917, 69, 918, 1770, 906, 916, 69, 1770, 69, 69, 919, 69, 907, 910, 69, 909, 920, 69, 911, 912, 924, 922, 921, 914, 69, 913, 915, 917, 923, 918, 69, 69, 916, 927, 926, 928, 925, 919, 69, 69, 69, 69, 69, 920, 929, 930, 932, 924, 922, 921, 931, 937, 933, 935, 934, 923, 69, 936, 943, 69, 1770, 926, 69, 925, 69, 69, 69, 938, 69, 942, 69, 929, 69, 932, 939, 69, 951, 931, 69, 933, 941, 934, 69, 944, 69, 940, 69, 945, 69, 69, 69, 69, 946, 948, 938, 69, 942, 947, 949, 950, 69, 939, 69, 951, 69, 69, 69, 941, 952, 953, 944, 69, 940, 955, 945, 954, 956, 962, 957, 946, 948, 961, 966, 69, 947, 949, 950, 69, 69, 958, 963, 69, 69, 959, 69, 952, 953, 968, 69, 964, 955, 967, 954, 956, 69, 957, 960, 971, 961, 969, 69, 965, 69, 69, 69, 970, 958, 963, 69, 69, 959, 972, 69, 973, 968, 974, 964, 975, 967, 976, 977, 69, 1770, 960, 69, 69, 969, 978, 965, 69, 980, 979, 981, 69, 982, 984, 69, 69, 69, 69, 973, 69, 974, 69, 975, 983, 976, 977, 985, 69, 69, 69, 987, 989, 978, 986, 988, 69, 979, 981, 69, 982, 984, 69, 990, 69, 69, 991, 994, 992, 993, 69, 983, 996, 69, 985, 69, 69, 995, 987, 989, 997, 986, 988, 998, 69, 69, 1000, 1770, 69, 69, 990, 999, 1001, 991, 994, 992, 993, 69, 69, 996, 1002, 1003, 69, 1004, 995, 69, 69, 997, 1005, 1006, 1011, 1770, 1017, 1007, 69, 1012, 1770, 69, 999, 1001, 69, 1013, 69, 1008, 69, 1016, 1009, 69, 1003, 1014, 1004, 1015, 1770, 69, 69, 1005, 1006, 69, 1010, 69, 1007, 69, 1012, 69, 1018, 1019, 1022, 69, 1013, 69, 1008, 69, 1016, 1009, 69, 1020, 1014, 1021, 1015, 1023, 1026, 1025, 1024, 69, 69, 1010, 69, 1028, 69, 1027, 69, 1018, 1019, 1022, 1029, 1770, 69, 1034, 1030, 1031, 1032, 69, 1020, 69, 1021, 69, 1033, 69, 1025, 1024, 69, 69, 69, 1037, 1028, 69, 1027, 1035, 1770, 69, 69, 1029, 1036, 1038, 69, 1030, 1031, 1032, 69, 69, 1039, 1040, 1043, 1033, 1041, 1044, 1045, 1042, 1053, 1770, 1037, 1770, 69, 69, 1035, 69, 1046, 1049, 1048, 1036, 1038, 69, 69, 1050, 1047, 69, 1051, 1039, 1040, 1043, 69, 1041, 69, 1045, 1042, 69, 69, 1052, 69, 69, 1054, 69, 1055, 1046, 1049, 1048, 1056, 1057, 1058, 69, 1050, 1047, 1060, 1051, 69, 69, 69, 1059, 1065, 1061, 69, 69, 1062, 1064, 1052, 1063, 1071, 69, 69, 1055, 1073, 1770, 69, 1056, 1057, 1058, 69, 1066, 1070, 1060, 69, 69, 1076, 1770, 1059, 1065, 1061, 69, 69, 1062, 1064, 1067, 1063, 1068, 1074, 1075, 1069, 69, 1072, 1082, 1077, 69, 69, 69, 1066, 1070, 1078, 69, 69, 1080, 1081, 69, 1079, 69, 69, 69, 1084, 1770, 1067, 1770, 1068, 1074, 1075, 1069, 69, 1072, 1082, 1077, 69, 1086, 69, 1085, 1083, 1078, 1087, 1089, 1080, 1081, 69, 1079, 69, 69, 69, 1088, 1093, 1090, 1091, 69, 69, 1095, 1096, 1092, 1094, 1101, 1097, 1770, 1086, 69, 1085, 1083, 1098, 1087, 1089, 69, 69, 1099, 69, 69, 69, 69, 1088, 1093, 1090, 1091, 69, 69, 69, 1096, 1092, 1094, 69, 1097, 1100, 1102, 69, 1103, 1104, 1098, 1105, 1107, 69, 1109, 1099, 1106, 69, 1770, 1108, 1770, 69, 1111, 1770, 1770, 1770, 1115, 1110, 1770, 1112, 69, 1120, 1100, 1102, 1121, 1103, 1104, 69, 69, 69, 69, 69, 69, 1106, 69, 1113, 1108, 69, 69, 1111, 1114, 1116, 1118, 1115, 1110, 1119, 1112, 1122, 69, 69, 69, 1124, 69, 69, 1117, 69, 1123, 69, 69, 69, 1125, 1127, 1113, 1126, 69, 1128, 1129, 1114, 1116, 1118, 69, 1130, 1119, 1131, 1122, 1132, 1133, 1134, 1124, 1138, 1135, 1117, 69, 1123, 1136, 69, 1137, 69, 69, 69, 1126, 1143, 69, 1129, 1139, 1140, 1141, 69, 69, 1770, 1131, 1142, 69, 1133, 1770, 1148, 69, 1135, 69, 69, 69, 69, 69, 1137, 1146, 1149, 69, 1144, 1143, 1145, 1152, 1139, 1140, 1141, 69, 1147, 69, 69, 1142, 1150, 1151, 69, 69, 1153, 1155, 1156, 1154, 69, 69, 1157, 69, 1146, 1149, 1158, 1144, 1161, 1145, 1152, 69, 1159, 69, 1162, 1147, 69, 69, 69, 1150, 1151, 1163, 1164, 69, 1155, 1156, 1154, 1160, 69, 1157, 69, 1165, 69, 1158, 1166, 1161, 1167, 1168, 69, 1159, 1169, 1171, 69, 1170, 1173, 69, 1175, 69, 1163, 1164, 1172, 69, 1181, 69, 1160, 69, 69, 1176, 69, 1174, 69, 69, 69, 1167, 1168, 1184, 1178, 1169, 1171, 69, 1170, 1173, 69, 1175, 69, 1177, 1179, 1172, 69, 69, 1180, 1185, 1186, 69, 1176, 1182, 1174, 69, 1187, 1188, 1183, 1191, 69, 1178, 1194, 69, 1189, 69, 69, 1193, 1190, 69, 1177, 1179, 1192, 69, 1195, 1180, 1185, 1186, 1199, 1196, 1182, 1197, 69, 1201, 69, 1183, 1198, 69, 69, 69, 69, 1204, 1200, 69, 1193, 69, 69, 69, 1203, 1192, 1202, 1195, 69, 1205, 1206, 1207, 1196, 1208, 1197, 69, 1770, 1209, 69, 1198, 69, 69, 1210, 69, 1204, 1200, 1212, 1211, 69, 1215, 1222, 1203, 1213, 1202, 69, 1214, 69, 69, 1207, 69, 1208, 1220, 1217, 69, 1209, 69, 1218, 69, 69, 1210, 69, 1216, 1221, 1212, 1211, 69, 69, 1219, 69, 1213, 69, 69, 1214, 1223, 69, 69, 1224, 1227, 1220, 1217, 1228, 1226, 1229, 1218, 69, 1230, 69, 1225, 1216, 1221, 69, 1232, 1231, 1235, 1219, 69, 1233, 69, 69, 1234, 1223, 1236, 69, 1224, 1227, 69, 69, 1228, 1226, 69, 1237, 1240, 1230, 1239, 1225, 1241, 1242, 1238, 69, 1231, 1235, 69, 69, 1233, 69, 69, 1234, 1250, 69, 69, 69, 69, 1243, 1244, 1245, 1248, 69, 1237, 1240, 69, 1239, 1249, 1241, 1242, 1238, 1246, 69, 69, 69, 1247, 1252, 1251, 69, 1253, 1250, 1261, 69, 69, 1256, 1243, 1244, 1245, 1248, 69, 1254, 69, 69, 1255, 1249, 69, 1257, 1258, 1246, 1259, 1260, 1266, 1247, 1252, 1251, 1270, 69, 69, 69, 69, 1262, 1256, 69, 1264, 1263, 69, 1265, 1254, 69, 69, 1255, 69, 1267, 1257, 1258, 1271, 1259, 1260, 69, 69, 1268, 1269, 69, 69, 1272, 1273, 69, 1262, 69, 1276, 1264, 1263, 69, 1265, 1286, 1277, 1281, 69, 69, 1267, 69, 1274, 1271, 1278, 1275, 1279, 69, 1268, 1269, 69, 69, 1272, 1273, 69, 69, 1280, 1276, 1282, 69, 69, 1284, 1286, 1277, 1281, 69, 1283, 1289, 69, 1274, 1285, 1278, 1275, 1279, 1287, 1291, 69, 69, 69, 1292, 1288, 1290, 69, 1280, 1770, 1282, 1293, 69, 1284, 1294, 1295, 69, 1296, 1283, 69, 1297, 1298, 1285, 69, 69, 1299, 1287, 69, 69, 69, 1301, 1292, 1288, 1290, 69, 1300, 69, 1302, 1293, 69, 1303, 1294, 1295, 1305, 69, 1304, 1306, 1297, 1298, 1307, 1313, 69, 69, 69, 69, 69, 1308, 69, 1314, 1311, 1312, 69, 1300, 69, 1302, 69, 1315, 1303, 1310, 69, 1305, 1309, 1304, 69, 1317, 69, 1307, 1313, 69, 1316, 69, 69, 1319, 1308, 1320, 69, 1311, 1312, 69, 69, 69, 69, 1326, 1315, 1321, 1310, 69, 69, 1309, 1318, 69, 1317, 1322, 1324, 1327, 1332, 1316, 1323, 1325, 1319, 69, 1320, 1329, 69, 69, 1331, 1333, 1335, 69, 69, 1336, 1321, 1328, 1330, 1334, 69, 1318, 1337, 69, 1322, 1324, 1327, 69, 1339, 1323, 1325, 69, 69, 69, 1329, 1338, 69, 1331, 69, 69, 1340, 1342, 69, 69, 1328, 1330, 1334, 1343, 1341, 69, 1344, 1345, 1346, 1770, 1770, 69, 69, 1348, 69, 1347, 1351, 69, 1338, 69, 1352, 1353, 1354, 69, 1342, 1770, 1349, 1357, 1358, 69, 69, 1341, 69, 1344, 69, 1346, 69, 69, 1355, 69, 1348, 1350, 1347, 69, 1359, 69, 1356, 1352, 1353, 69, 69, 69, 69, 1349, 1357, 1358, 1360, 1361, 1362, 69, 1363, 1364, 1365, 1770, 69, 1355, 1368, 1770, 1350, 1366, 1367, 69, 69, 1356, 1372, 1369, 1370, 69, 1371, 69, 69, 69, 1373, 1360, 69, 1362, 69, 1363, 1364, 1365, 69, 69, 69, 1368, 1374, 1375, 1366, 1367, 69, 1380, 69, 1372, 1369, 1370, 1376, 1371, 1377, 69, 1379, 1373, 1378, 1770, 1381, 69, 1384, 1770, 1388, 1383, 1386, 1770, 1382, 1374, 1389, 69, 1387, 1385, 69, 69, 69, 69, 69, 1376, 69, 1377, 69, 1379, 1390, 1378, 69, 1381, 69, 1384, 69, 1388, 1383, 1386, 69, 1382, 1391, 69, 1392, 1387, 1385, 1393, 1394, 1397, 1395, 1770, 1396, 1770, 1399, 69, 1398, 69, 69, 1401, 1400, 69, 69, 1405, 1406, 1403, 69, 1410, 1770, 1391, 69, 1392, 69, 1407, 1393, 1394, 1397, 1395, 69, 1396, 69, 69, 69, 1398, 1402, 69, 1401, 1400, 69, 1404, 1405, 1408, 1403, 1409, 69, 69, 69, 69, 69, 1412, 1407, 1413, 69, 1411, 1414, 1416, 1417, 1415, 1418, 1419, 1420, 1402, 1426, 1770, 1421, 69, 1404, 1424, 1408, 69, 1409, 69, 69, 1422, 69, 1423, 1412, 69, 1413, 69, 1411, 69, 69, 69, 1415, 69, 1419, 1420, 1425, 69, 69, 1421, 1427, 69, 69, 69, 1428, 1429, 1430, 1432, 1422, 69, 1423, 1431, 1434, 1433, 69, 1435, 69, 1436, 1770, 1770, 69, 1438, 1437, 1425, 1442, 1444, 1439, 1427, 69, 1770, 69, 1428, 69, 1430, 1432, 69, 69, 69, 1431, 69, 1433, 69, 69, 1440, 69, 1441, 69, 1443, 1438, 1437, 1445, 1442, 69, 1439, 69, 1446, 69, 1447, 69, 1448, 69, 1455, 1449, 1450, 69, 69, 1451, 1456, 69, 1453, 1440, 1770, 1441, 69, 1443, 69, 69, 1445, 1452, 1454, 1457, 1461, 1446, 69, 1447, 1465, 1448, 69, 69, 1449, 1450, 69, 1459, 1451, 69, 1458, 1453, 69, 1464, 69, 1466, 69, 1460, 1462, 69, 1452, 1454, 1457, 1461, 69, 69, 1463, 69, 1467, 1468, 1474, 1770, 1473, 69, 1459, 69, 1770, 1458, 1469, 69, 1464, 69, 1466, 1470, 1460, 1462, 1471, 69, 69, 1482, 1472, 1475, 69, 1463, 1476, 1467, 1468, 69, 69, 69, 69, 69, 1478, 1477, 1479, 1469, 69, 1480, 1481, 69, 1470, 69, 69, 1471, 69, 1483, 69, 1472, 1475, 1484, 1485, 1476, 1487, 1488, 1486, 1489, 1490, 69, 69, 1478, 1477, 1479, 69, 1491, 1480, 1481, 69, 1492, 1493, 69, 1494, 69, 1483, 69, 1496, 69, 1484, 1485, 1497, 1487, 69, 1486, 1489, 69, 1495, 1498, 1501, 1500, 1502, 69, 1491, 1499, 69, 1505, 69, 69, 69, 1494, 69, 69, 69, 1496, 1503, 1506, 1504, 1497, 69, 69, 1507, 1509, 69, 1495, 1498, 1501, 1500, 1502, 69, 1510, 1499, 1508, 69, 1511, 1512, 1770, 69, 1770, 1513, 1770, 1515, 1503, 69, 1504, 1514, 1770, 1517, 1516, 69, 1521, 1520, 69, 69, 69, 1518, 1519, 69, 69, 1508, 69, 69, 1512, 69, 69, 69, 1513, 69, 1515, 69, 69, 1522, 1514, 1523, 1517, 1516, 1524, 1521, 1520, 1525, 69, 1527, 1518, 1519, 1526, 1528, 1529, 1530, 69, 69, 1531, 69, 69, 69, 1533, 1535, 1532, 69, 1522, 1539, 1523, 1534, 69, 1524, 1536, 69, 1525, 1537, 1527, 69, 1540, 1526, 1528, 69, 1530, 69, 69, 69, 1538, 69, 69, 1533, 1535, 1532, 1542, 69, 1539, 69, 1534, 1541, 69, 1536, 1544, 1543, 1537, 1545, 69, 69, 1546, 1547, 1548, 1549, 1550, 1770, 1553, 1538, 1770, 1551, 69, 1556, 69, 1542, 1552, 69, 1554, 1555, 1541, 69, 1770, 69, 1543, 1560, 69, 1564, 69, 69, 1547, 1548, 1557, 69, 69, 69, 69, 69, 1551, 69, 1556, 69, 1558, 1552, 1559, 1554, 1555, 1561, 1562, 69, 1563, 1566, 69, 69, 1564, 69, 1565, 69, 69, 1557, 1575, 1568, 69, 1567, 1569, 69, 1570, 69, 69, 1558, 1573, 1559, 1571, 1572, 1561, 1562, 1579, 1563, 1566, 69, 69, 1576, 69, 1565, 69, 69, 1574, 69, 1568, 1577, 1567, 1569, 1580, 1570, 69, 69, 1581, 1573, 1578, 1571, 1572, 1770, 1582, 69, 69, 1585, 69, 69, 1576, 1583, 69, 1586, 1587, 1574, 69, 1584, 1577, 69, 1588, 1580, 69, 1590, 1593, 1581, 69, 1578, 1589, 69, 69, 1582, 69, 69, 1585, 1592, 1594, 1591, 1583, 69, 1586, 1587, 69, 69, 1584, 1596, 69, 1588, 1597, 1598, 1590, 1593, 1595, 1599, 69, 1589, 69, 69, 1600, 1601, 1602, 69, 1592, 1604, 1591, 1603, 1605, 69, 1606, 69, 1607, 69, 69, 69, 1609, 1597, 1598, 69, 1610, 1595, 69, 69, 69, 1608, 1611, 1600, 1601, 1602, 69, 1612, 1604, 69, 1603, 1605, 1613, 1606, 69, 69, 69, 1614, 69, 69, 1615, 1616, 1617, 1610, 1618, 1620, 69, 1619, 1608, 69, 1621, 1622, 1630, 69, 1612, 69, 1627, 69, 1623, 1613, 69, 1625, 1626, 69, 1614, 1631, 1770, 1615, 1616, 69, 69, 69, 1620, 69, 1619, 1624, 1632, 1621, 69, 69, 1628, 1629, 69, 69, 69, 1623, 1770, 69, 1625, 1626, 69, 1633, 69, 1634, 1635, 1636, 1637, 1638, 1640, 1770, 1770, 1641, 1624, 1632, 1639, 1642, 69, 1628, 1629, 1645, 1648, 1644, 1646, 69, 1647, 1770, 69, 1643, 1633, 1770, 1634, 1635, 69, 69, 69, 69, 69, 69, 1641, 69, 69, 1639, 69, 69, 69, 1649, 69, 69, 1644, 1646, 1651, 1647, 1650, 1652, 1643, 1653, 1657, 1656, 1654, 1655, 1659, 1660, 69, 69, 1658, 69, 69, 69, 69, 1661, 1662, 69, 1649, 1664, 69, 1663, 1665, 1651, 69, 1650, 1652, 1666, 1653, 1657, 1656, 1654, 1655, 69, 69, 69, 1668, 1658, 69, 1667, 1669, 1670, 1661, 69, 69, 69, 69, 1672, 1663, 1665, 1671, 69, 69, 1674, 69, 1673, 1675, 1676, 1677, 69, 1678, 69, 1679, 1668, 1680, 69, 1667, 69, 69, 1682, 1683, 1681, 1685, 1686, 1672, 69, 1770, 1671, 69, 1684, 1674, 69, 1673, 1675, 1676, 69, 69, 69, 1687, 69, 1689, 69, 69, 1688, 69, 69, 1682, 69, 1681, 1685, 1686, 69, 1690, 1692, 69, 1691, 1684, 1693, 1770, 69, 1694, 69, 1695, 69, 69, 1687, 69, 1689, 1697, 69, 1688, 69, 1698, 1696, 1699, 1700, 1701, 1770, 69, 1690, 1692, 1702, 1691, 1703, 1693, 69, 1705, 1694, 1707, 1695, 69, 1704, 1708, 69, 1770, 69, 69, 69, 69, 1698, 1696, 1699, 1700, 1701, 69, 1770, 1710, 1706, 1702, 1709, 1717, 1770, 1712, 1705, 69, 69, 1711, 1714, 1704, 69, 69, 1713, 69, 69, 69, 69, 1715, 1716, 1718, 69, 1719, 69, 69, 1710, 1706, 69, 1709, 1717, 69, 1712, 69, 1720, 1721, 1711, 1714, 1726, 1725, 1770, 1713, 1722, 69, 1723, 1724, 1715, 1716, 1718, 1730, 1719, 1728, 1770, 69, 1727, 1729, 1770, 69, 1770, 69, 69, 1720, 1721, 69, 69, 69, 69, 1731, 1733, 1722, 69, 1723, 1724, 1732, 69, 69, 1734, 1735, 1728, 1736, 69, 1727, 1729, 1737, 69, 69, 1738, 69, 1739, 1742, 69, 1740, 1743, 69, 1731, 1733, 69, 1741, 1745, 1744, 1732, 1746, 1747, 1734, 1735, 1770, 1736, 69, 69, 69, 1737, 69, 69, 1738, 1749, 1739, 1742, 69, 1740, 1743, 1751, 69, 69, 69, 1741, 69, 1744, 1748, 1746, 1747, 1750, 1752, 1753, 1770, 1755, 69, 69, 1754, 69, 1758, 69, 1749, 69, 1756, 1757, 69, 1759, 1751, 1760, 1761, 1762, 69, 69, 69, 1748, 1770, 1764, 1750, 1752, 1753, 69, 1755, 1763, 1765, 1754, 69, 1758, 1768, 69, 1769, 1756, 1757, 1766, 69, 1770, 1760, 69, 69, 69, 1767, 69, 1770, 69, 1764, 1770, 69, 1770, 69, 1770, 1763, 1765, 1770, 1770, 1770, 69, 1770, 69, 1770, 1770, 1766, 1770, 1770, 1770, 1770, 1770, 1770, 1767, 41, 41, 41, 41, 41, 41, 41, 46, 46, 46, 46, 46, 46, 46, 51, 51, 51, 51, 51, 51, 51, 57, 57, 57, 57, 57, 57, 57, 62, 62, 62, 62, 62, 62, 62, 72, 72, 1770, 72, 72, 72, 72, 127, 127, 1770, 1770, 1770, 127, 127, 129, 129, 1770, 1770, 129, 1770, 129, 131, 1770, 1770, 1770, 1770, 1770, 131, 134, 134, 1770, 1770, 1770, 134, 134, 136, 1770, 1770, 1770, 1770, 1770, 136, 138, 138, 1770, 138, 138, 138, 138, 73, 73, 1770, 73, 73, 73, 73, 13, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770 } ; static yyconst flex_int16_t yy_chk[5163] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 4, 4, 4, 5, 5, 6, 6, 5, 24, 6, 7, 7, 7, 7, 1776, 7, 8, 8, 8, 8, 24, 8, 9, 9, 9, 10, 10, 10, 15, 45, 45, 50, 15, 3, 50, 24, 4, 61, 61, 5, 19, 6, 19, 19, 70, 19, 659, 7, 70, 40, 19, 40, 40, 8, 40, 23, 20, 20, 9, 40, 653, 10, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 20, 23, 27, 19, 23, 29, 20, 11, 23, 20, 20, 136, 21, 12, 27, 25, 653, 29, 134, 21, 34, 94, 28, 25, 133, 11, 21, 20, 23, 27, 131, 12, 29, 34, 11, 128, 128, 129, 21, 21, 12, 25, 25, 76, 28, 26, 21, 34, 26, 28, 25, 30, 94, 21, 22, 26, 32, 26, 22, 30, 127, 22, 32, 22, 22, 30, 76, 31, 26, 30, 76, 31, 26, 75, 83, 26, 22, 30, 30, 83, 79, 22, 26, 32, 26, 22, 30, 31, 22, 79, 22, 22, 30, 31, 31, 35, 30, 75, 31, 35, 75, 83, 68, 37, 62, 37, 77, 79, 57, 35, 52, 38, 35, 77, 31, 33, 38, 51, 90, 33, 37, 35, 35, 245, 38, 33, 35, 39, 33, 37, 37, 39, 37, 77, 36, 33, 35, 33, 38, 35, 46, 90, 33, 38, 36, 90, 33, 37, 36, 36, 245, 66, 33, 39, 39, 33, 36, 130, 39, 41, 130, 36, 33, 56, 66, 56, 56, 64, 56, 64, 64, 36, 64, 135, 135, 36, 36, 67, 66, 67, 67, 69, 67, 69, 69, 72, 69, 72, 72, 78, 72, 69, 80, 81, 82, 72, 86, 85, 84, 14, 87, 13, 78, 82, 64, 80, 84, 87, 81, 86, 91, 100, 0, 78, 85, 88, 78, 89, 92, 80, 81, 82, 72, 86, 88, 84, 89, 87, 85, 78, 93, 92, 91, 93, 100, 95, 96, 91, 100, 99, 0, 85, 88, 95, 89, 92, 97, 93, 98, 101, 97, 98, 99, 102, 93, 0, 96, 93, 96, 103, 93, 105, 95, 96, 104, 117, 99, 102, 105, 101, 97, 107, 106, 97, 93, 98, 101, 97, 104, 103, 102, 106, 111, 96, 108, 109, 103, 113, 105, 109, 110, 104, 114, 108, 107, 112, 117, 110, 107, 106, 119, 113, 112, 118, 114, 115, 116, 109, 111, 111, 121, 108, 109, 115, 113, 116, 109, 110, 118, 114, 119, 121, 112, 122, 123, 120, 119, 119, 125, 122, 118, 124, 115, 116, 120, 126, 132, 121, 132, 132, 142, 132, 0, 125, 126, 123, 140, 119, 144, 123, 122, 123, 120, 124, 137, 125, 137, 137, 124, 137, 141, 138, 126, 138, 138, 143, 138, 144, 145, 146, 140, 142, 123, 140, 153, 144, 145, 143, 147, 148, 149, 146, 141, 150, 148, 147, 154, 141, 151, 0, 155, 159, 143, 156, 154, 145, 146, 156, 138, 157, 153, 153, 149, 158, 159, 147, 162, 149, 0, 151, 148, 148, 155, 154, 150, 162, 151, 155, 159, 160, 156, 163, 157, 166, 0, 158, 157, 0, 165, 161, 158, 160, 161, 162, 166, 165, 151, 152, 0, 164, 167, 168, 152, 163, 161, 170, 160, 152, 163, 0, 166, 169, 171, 152, 152, 165, 161, 172, 164, 161, 152, 169, 173, 172, 152, 164, 164, 168, 168, 152, 171, 167, 174, 175, 152, 176, 170, 0, 177, 171, 152, 152, 169, 178, 172, 164, 179, 181, 169, 180, 182, 186, 183, 173, 174, 182, 180, 178, 177, 174, 185, 184, 187, 186, 175, 177, 176, 179, 181, 187, 178, 183, 188, 179, 181, 184, 180, 182, 186, 183, 189, 191, 185, 190, 190, 189, 192, 185, 184, 187, 193, 195, 190, 192, 188, 0, 194, 196, 199, 188, 198, 200, 0, 197, 202, 196, 205, 189, 201, 0, 190, 190, 191, 192, 207, 193, 194, 193, 197, 202, 199, 204, 195, 194, 196, 201, 198, 198, 203, 199, 197, 202, 200, 201, 206, 201, 203, 205, 208, 210, 204, 211, 209, 211, 0, 207, 212, 199, 204, 213, 208, 209, 201, 214, 215, 203, 206, 216, 210, 0, 217, 206, 218, 220, 219, 208, 210, 221, 211, 209, 212, 217, 222, 212, 218, 213, 213, 226, 224, 223, 215, 215, 214, 216, 216, 221, 220, 217, 219, 218, 220, 219, 223, 225, 221, 227, 233, 230, 228, 236, 231, 0, 227, 222, 224, 224, 223, 228, 226, 232, 229, 230, 234, 235, 237, 225, 229, 238, 232, 233, 225, 234, 227, 233, 230, 228, 231, 231, 235, 240, 236, 243, 238, 246, 242, 251, 232, 229, 237, 234, 235, 237, 239, 241, 238, 239, 243, 240, 242, 241, 244, 244, 239, 248, 252, 0, 240, 246, 243, 0, 246, 242, 251, 247, 249, 248, 247, 250, 0, 239, 241, 253, 239, 247, 254, 244, 252, 244, 244, 0, 248, 252, 249, 255, 256, 250, 254, 258, 257, 259, 247, 249, 260, 247, 250, 257, 259, 253, 253, 256, 261, 254, 261, 264, 262, 255, 265, 0, 0, 0, 255, 256, 270, 266, 260, 257, 259, 262, 258, 260, 280, 264, 296, 263, 261, 270, 263, 261, 263, 261, 264, 262, 267, 269, 263, 266, 268, 265, 267, 270, 266, 271, 274, 268, 275, 269, 276, 296, 272, 296, 263, 280, 276, 263, 274, 263, 277, 271, 0, 267, 269, 272, 275, 268, 277, 271, 278, 279, 271, 274, 285, 275, 0, 276, 279, 272, 281, 283, 278, 284, 281, 282, 0, 277, 271, 273, 273, 288, 282, 283, 308, 284, 287, 278, 279, 273, 0, 273, 273, 273, 286, 285, 273, 281, 283, 287, 284, 286, 282, 289, 273, 290, 273, 273, 291, 291, 308, 308, 288, 287, 289, 292, 273, 293, 273, 273, 273, 286, 292, 273, 294, 295, 297, 290, 293, 301, 289, 298, 290, 299, 305, 294, 312, 291, 295, 302, 298, 300, 292, 306, 293, 304, 299, 301, 303, 297, 307, 294, 295, 297, 300, 310, 301, 309, 298, 300, 299, 302, 311, 304, 306, 305, 302, 312, 300, 310, 306, 303, 304, 307, 313, 303, 314, 307, 315, 309, 313, 300, 310, 316, 309, 317, 318, 0, 311, 311, 319, 0, 320, 315, 314, 322, 319, 324, 323, 327, 326, 313, 325, 314, 323, 315, 316, 326, 318, 332, 316, 317, 317, 318, 327, 333, 324, 319, 320, 320, 325, 322, 322, 329, 324, 323, 327, 326, 330, 325, 329, 331, 334, 333, 335, 330, 336, 337, 338, 339, 332, 342, 333, 338, 331, 339, 337, 340, 341, 344, 329, 343, 0, 335, 334, 330, 0, 344, 331, 334, 341, 335, 343, 342, 337, 338, 339, 336, 342, 349, 340, 347, 348, 346, 340, 341, 344, 0, 343, 345, 346, 348, 347, 350, 345, 352, 345, 352, 351, 354, 350, 353, 355, 349, 345, 0, 349, 356, 347, 364, 346, 354, 0, 348, 345, 345, 345, 355, 348, 356, 350, 345, 352, 345, 351, 351, 354, 353, 353, 355, 357, 345, 358, 359, 356, 360, 361, 358, 357, 362, 364, 345, 363, 365, 361, 366, 369, 367, 368, 370, 0, 362, 0, 360, 366, 359, 371, 357, 365, 358, 359, 367, 360, 361, 370, 363, 362, 368, 372, 363, 365, 371, 366, 369, 367, 368, 370, 373, 374, 375, 376, 378, 375, 371, 376, 377, 379, 380, 381, 373, 375, 383, 372, 382, 384, 372, 387, 385, 391, 377, 384, 389, 374, 386, 373, 374, 375, 390, 378, 375, 388, 376, 377, 379, 390, 381, 392, 0, 380, 385, 382, 384, 383, 389, 385, 395, 386, 387, 389, 391, 386, 393, 399, 388, 390, 402, 394, 388, 392, 396, 397, 394, 398, 392, 393, 394, 0, 400, 396, 0, 399, 395, 395, 397, 401, 403, 404, 402, 393, 399, 394, 409, 402, 394, 405, 406, 396, 397, 394, 403, 407, 400, 394, 398, 400, 405, 401, 401, 404, 408, 406, 401, 403, 404, 410, 409, 412, 411, 409, 413, 414, 405, 406, 415, 0, 412, 417, 0, 416, 421, 408, 407, 413, 401, 0, 419, 408, 0, 410, 411, 437, 410, 420, 412, 411, 415, 413, 422, 417, 419, 415, 414, 416, 417, 418, 416, 420, 423, 418, 424, 421, 425, 419, 424, 427, 422, 431, 426, 428, 420, 429, 437, 423, 431, 422, 426, 0, 428, 432, 429, 433, 423, 0, 439, 423, 418, 425, 0, 425, 427, 424, 427, 430, 431, 426, 428, 434, 429, 433, 423, 430, 432, 435, 436, 438, 432, 441, 433, 434, 439, 439, 435, 438, 440, 443, 436, 442, 446, 444, 430, 445, 0, 441, 434, 447, 443, 444, 449, 448, 435, 436, 438, 0, 441, 445, 450, 440, 446, 442, 0, 440, 443, 453, 442, 446, 444, 447, 445, 448, 449, 451, 447, 452, 454, 449, 448, 455, 450, 456, 451, 453, 457, 450, 459, 458, 462, 454, 465, 460, 453, 458, 459, 452, 466, 463, 0, 465, 451, 455, 452, 454, 480, 456, 455, 457, 456, 460, 464, 457, 459, 459, 458, 466, 477, 465, 460, 462, 463, 459, 467, 466, 463, 464, 468, 0, 468, 471, 474, 467, 0, 482, 477, 480, 483, 464, 478, 479, 474, 471, 484, 477, 484, 483, 485, 486, 501, 467, 0, 488, 487, 468, 469, 482, 471, 474, 469, 478, 482, 469, 479, 483, 490, 478, 479, 492, 469, 484, 485, 469, 487, 485, 486, 501, 469, 488, 488, 487, 489, 469, 491, 0, 0, 469, 0, 497, 469, 492, 490, 490, 489, 493, 492, 469, 494, 502, 469, 481, 481, 493, 481, 494, 495, 481, 491, 489, 503, 491, 481, 496, 495, 497, 497, 499, 481, 481, 500, 0, 493, 498, 504, 494, 499, 481, 481, 481, 502, 481, 496, 495, 481, 498, 505, 506, 509, 481, 496, 503, 500, 507, 499, 481, 481, 500, 504, 508, 498, 504, 510, 511, 512, 513, 506, 505, 508, 514, 509, 511, 507, 505, 506, 509, 517, 515, 518, 0, 507, 522, 510, 519, 513, 515, 508, 521, 520, 510, 511, 512, 513, 522, 517, 0, 518, 526, 523, 0, 514, 520, 528, 517, 515, 518, 523, 519, 522, 528, 519, 525, 527, 521, 521, 520, 529, 525, 527, 526, 530, 529, 523, 531, 526, 523, 532, 530, 533, 528, 535, 536, 534, 523, 540, 537, 541, 533, 525, 527, 534, 531, 0, 529, 536, 538, 542, 530, 535, 532, 531, 539, 538, 532, 547, 533, 537, 535, 536, 534, 543, 544, 537, 545, 539, 540, 548, 541, 543, 542, 0, 546, 538, 542, 550, 549, 544, 546, 539, 551, 547, 547, 552, 550, 553, 545, 0, 543, 544, 554, 545, 553, 555, 551, 557, 556, 558, 548, 546, 549, 559, 550, 549, 559, 558, 560, 551, 556, 561, 0, 563, 553, 564, 552, 0, 561, 554, 557, 560, 555, 578, 557, 556, 558, 564, 567, 565, 559, 565, 566, 568, 0, 560, 563, 571, 561, 562, 563, 562, 564, 573, 566, 562, 568, 562, 569, 571, 567, 0, 562, 570, 578, 567, 565, 562, 574, 566, 568, 569, 0, 562, 571, 573, 562, 572, 562, 576, 573, 574, 562, 580, 562, 569, 570, 572, 577, 562, 570, 575, 576, 583, 562, 574, 579, 575, 580, 572, 582, 579, 581, 579, 572, 584, 576, 586, 583, 577, 580, 585, 587, 582, 572, 577, 592, 589, 575, 590, 583, 579, 579, 579, 581, 587, 586, 582, 579, 581, 579, 584, 584, 585, 586, 588, 593, 594, 585, 587, 595, 598, 590, 588, 589, 594, 590, 592, 579, 596, 597, 599, 598, 600, 595, 604, 605, 601, 597, 602, 593, 600, 588, 593, 594, 608, 602, 595, 598, 599, 603, 596, 610, 604, 608, 613, 596, 597, 599, 601, 600, 607, 604, 603, 601, 611, 602, 605, 609, 607, 614, 612, 608, 613, 610, 615, 616, 603, 620, 610, 609, 618, 613, 619, 0, 618, 619, 611, 607, 0, 616, 621, 611, 612, 622, 609, 614, 614, 612, 623, 624, 622, 620, 616, 621, 620, 615, 624, 625, 619, 619, 623, 618, 619, 626, 627, 628, 630, 621, 629, 626, 622, 632, 637, 631, 634, 623, 624, 630, 633, 635, 637, 625, 0, 634, 625, 640, 627, 628, 636, 629, 626, 627, 628, 630, 631, 629, 633, 636, 632, 637, 631, 634, 638, 635, 639, 633, 635, 640, 641, 638, 642, 646, 640, 645, 643, 636, 644, 647, 639, 642, 649, 0, 648, 651, 652, 650, 0, 655, 645, 638, 641, 639, 644, 650, 648, 641, 651, 642, 643, 652, 645, 643, 646, 644, 654, 655, 660, 649, 647, 648, 651, 652, 650, 654, 655, 656, 657, 661, 657, 660, 662, 663, 664, 656, 665, 0, 0, 662, 666, 661, 671, 654, 667, 660, 669, 668, 674, 670, 671, 703, 0, 0, 656, 657, 661, 667, 665, 662, 668, 670, 666, 665, 663, 664, 672, 666, 669, 671, 675, 667, 673, 669, 668, 674, 670, 676, 672, 675, 673, 677, 703, 678, 679, 680, 0, 681, 677, 682, 0, 0, 683, 672, 0, 685, 687, 675, 676, 673, 681, 683, 684, 689, 676, 680, 679, 686, 677, 678, 678, 679, 680, 682, 681, 686, 682, 685, 687, 683, 684, 690, 685, 687, 688, 691, 689, 693, 692, 684, 689, 694, 688, 695, 686, 697, 696, 691, 698, 690, 692, 695, 696, 700, 697, 699, 694, 693, 690, 701, 700, 688, 691, 704, 693, 692, 705, 699, 694, 698, 695, 706, 697, 696, 707, 698, 704, 701, 706, 708, 700, 709, 699, 708, 715, 705, 701, 710, 711, 709, 704, 712, 713, 705, 714, 716, 707, 719, 706, 717, 722, 707, 711, 723, 0, 0, 715, 0, 709, 712, 708, 715, 718, 710, 710, 711, 720, 716, 712, 719, 714, 714, 716, 713, 719, 717, 717, 721, 724, 720, 718, 722, 727, 725, 723, 726, 721, 731, 730, 718, 726, 728, 726, 720, 726, 0, 0, 734, 733, 731, 724, 734, 741, 726, 721, 724, 725, 728, 727, 727, 725, 730, 726, 732, 731, 730, 733, 726, 728, 726, 735, 726, 732, 736, 737, 733, 738, 739, 734, 741, 740, 736, 740, 735, 742, 743, 739, 746, 0, 738, 732, 745, 748, 737, 747, 750, 742, 735, 749, 752, 736, 737, 747, 738, 739, 749, 751, 740, 754, 746, 753, 742, 743, 755, 746, 745, 756, 753, 745, 748, 757, 747, 750, 759, 762, 749, 752, 758, 751, 760, 754, 763, 755, 751, 765, 754, 758, 753, 756, 764, 755, 766, 768, 756, 759, 767, 757, 757, 769, 760, 759, 772, 0, 767, 758, 762, 760, 770, 768, 766, 0, 764, 763, 771, 770, 765, 764, 771, 766, 768, 773, 774, 767, 775, 778, 769, 773, 776, 774, 777, 780, 778, 772, 773, 770, 779, 776, 779, 775, 780, 771, 781, 782, 783, 790, 785, 782, 773, 774, 785, 775, 778, 787, 773, 776, 777, 777, 780, 788, 786, 789, 791, 779, 781, 792, 783, 793, 0, 781, 782, 783, 787, 796, 789, 793, 790, 785, 786, 0, 787, 792, 794, 794, 788, 791, 788, 786, 789, 791, 795, 798, 792, 797, 793, 796, 799, 800, 798, 795, 796, 802, 797, 801, 803, 805, 800, 806, 0, 794, 804, 801, 0, 805, 802, 807, 803, 795, 798, 799, 797, 808, 804, 799, 800, 812, 810, 809, 802, 806, 801, 803, 805, 811, 806, 807, 809, 804, 815, 814, 816, 813, 807, 808, 810, 811, 812, 813, 808, 817, 819, 821, 812, 810, 809, 820, 825, 822, 824, 823, 811, 814, 824, 831, 820, 0, 814, 823, 813, 815, 822, 816, 826, 821, 830, 817, 817, 819, 821, 827, 826, 839, 820, 825, 822, 829, 823, 827, 832, 824, 828, 828, 833, 829, 831, 830, 832, 834, 836, 826, 833, 830, 835, 837, 838, 834, 827, 839, 839, 837, 835, 836, 829, 840, 841, 832, 838, 828, 843, 833, 842, 844, 849, 845, 834, 836, 848, 853, 840, 835, 837, 838, 843, 848, 846, 850, 841, 845, 846, 844, 840, 841, 857, 842, 851, 843, 855, 842, 844, 849, 845, 846, 861, 848, 858, 855, 852, 850, 853, 846, 859, 846, 850, 852, 857, 846, 863, 851, 865, 857, 866, 851, 867, 855, 868, 869, 868, 0, 846, 861, 858, 858, 870, 852, 867, 872, 871, 873, 869, 874, 876, 859, 865, 863, 873, 865, 866, 866, 871, 867, 875, 868, 869, 877, 870, 875, 876, 879, 882, 870, 878, 881, 872, 871, 873, 874, 874, 876, 878, 883, 881, 882, 884, 887, 885, 886, 877, 875, 889, 879, 877, 885, 886, 888, 879, 882, 890, 878, 881, 891, 888, 887, 893, 0, 884, 883, 883, 892, 894, 884, 887, 885, 886, 889, 892, 889, 895, 896, 890, 898, 888, 894, 898, 890, 899, 900, 903, 0, 909, 901, 891, 904, 0, 893, 892, 894, 901, 905, 896, 902, 900, 908, 902, 895, 896, 906, 898, 907, 0, 907, 899, 899, 900, 904, 902, 905, 901, 903, 904, 909, 910, 911, 914, 902, 905, 908, 902, 906, 908, 902, 911, 912, 906, 913, 907, 915, 918, 917, 916, 912, 913, 902, 916, 920, 914, 919, 910, 910, 911, 914, 921, 0, 920, 926, 922, 923, 924, 921, 912, 917, 913, 922, 925, 918, 917, 916, 915, 919, 923, 929, 920, 924, 919, 927, 0, 929, 925, 921, 928, 931, 927, 922, 923, 924, 926, 928, 932, 933, 935, 925, 934, 938, 939, 934, 946, 0, 929, 0, 932, 935, 927, 931, 940, 943, 942, 928, 931, 933, 934, 944, 941, 943, 944, 932, 933, 935, 939, 934, 938, 939, 934, 941, 942, 945, 940, 946, 947, 944, 948, 940, 943, 942, 949, 950, 951, 948, 944, 941, 953, 944, 953, 945, 950, 952, 958, 954, 949, 951, 955, 957, 945, 956, 963, 947, 954, 948, 965, 0, 952, 949, 950, 951, 956, 959, 961, 953, 958, 957, 968, 0, 952, 958, 954, 961, 955, 955, 957, 959, 956, 960, 966, 967, 960, 963, 964, 975, 969, 965, 967, 959, 959, 961, 970, 964, 975, 973, 974, 960, 970, 968, 969, 966, 977, 0, 959, 0, 960, 966, 967, 960, 974, 964, 975, 969, 973, 979, 970, 978, 976, 970, 981, 983, 973, 974, 979, 970, 976, 981, 978, 982, 987, 984, 985, 977, 987, 989, 990, 986, 988, 995, 991, 0, 979, 983, 978, 976, 992, 981, 983, 990, 988, 993, 982, 984, 985, 986, 982, 987, 984, 985, 991, 992, 989, 990, 986, 988, 993, 991, 994, 996, 995, 997, 998, 992, 999, 1001, 994, 1004, 993, 1000, 997, 0, 1003, 0, 996, 1006, 0, 0, 0, 1010, 1005, 0, 1007, 998, 1014, 994, 996, 1015, 997, 998, 1003, 999, 1001, 1000, 1004, 1005, 1000, 1006, 1008, 1003, 1007, 1010, 1006, 1009, 1011, 1012, 1010, 1005, 1013, 1007, 1016, 1014, 1012, 1008, 1018, 1009, 1016, 1011, 1015, 1017, 1013, 1018, 1011, 1019, 1021, 1008, 1020, 1017, 1022, 1023, 1009, 1011, 1012, 1020, 1024, 1013, 1025, 1016, 1027, 1028, 1029, 1018, 1033, 1030, 1011, 1030, 1017, 1031, 1028, 1032, 1019, 1021, 1023, 1020, 1035, 1022, 1023, 1034, 1034, 1034, 1025, 1035, 0, 1025, 1034, 1024, 1028, 0, 1040, 1027, 1030, 1029, 1034, 1033, 1031, 1032, 1032, 1038, 1041, 1041, 1036, 1035, 1037, 1045, 1034, 1034, 1034, 1036, 1039, 1037, 1038, 1034, 1042, 1043, 1039, 1040, 1046, 1048, 1049, 1047, 1043, 1045, 1050, 1050, 1038, 1041, 1051, 1036, 1055, 1037, 1045, 1047, 1052, 1052, 1056, 1039, 1049, 1048, 1042, 1042, 1043, 1057, 1058, 1046, 1048, 1049, 1047, 1053, 1057, 1050, 1055, 1059, 1051, 1051, 1060, 1055, 1061, 1062, 1053, 1052, 1063, 1065, 1058, 1064, 1067, 1056, 1069, 1063, 1057, 1058, 1066, 1064, 1075, 1067, 1053, 1062, 1065, 1070, 1061, 1068, 1068, 1060, 1059, 1061, 1062, 1077, 1072, 1063, 1065, 1070, 1064, 1067, 1069, 1069, 1066, 1071, 1073, 1066, 1072, 1075, 1074, 1078, 1079, 1071, 1070, 1076, 1068, 1078, 1080, 1081, 1076, 1083, 1077, 1072, 1086, 1079, 1082, 1073, 1074, 1085, 1082, 1076, 1071, 1073, 1084, 1084, 1087, 1074, 1078, 1079, 1091, 1088, 1076, 1089, 1085, 1093, 1081, 1076, 1090, 1080, 1090, 1087, 1083, 1097, 1092, 1086, 1085, 1082, 1089, 1092, 1096, 1084, 1094, 1087, 1088, 1098, 1099, 1100, 1088, 1101, 1089, 1091, 0, 1102, 1100, 1090, 1093, 1094, 1103, 1097, 1097, 1092, 1106, 1104, 1096, 1111, 1118, 1096, 1108, 1094, 1101, 1110, 1098, 1099, 1100, 1102, 1101, 1116, 1113, 1103, 1102, 1104, 1114, 1108, 1106, 1103, 1110, 1112, 1117, 1106, 1104, 1114, 1111, 1115, 1112, 1108, 1113, 1118, 1110, 1119, 1116, 1115, 1121, 1123, 1116, 1113, 1124, 1122, 1126, 1114, 1117, 1129, 1119, 1121, 1112, 1117, 1122, 1131, 1130, 1134, 1115, 1123, 1132, 1129, 1124, 1133, 1119, 1135, 1121, 1121, 1123, 1130, 1132, 1124, 1122, 1126, 1137, 1140, 1129, 1139, 1121, 1141, 1142, 1138, 1134, 1130, 1134, 1141, 1131, 1132, 1138, 1133, 1133, 1151, 1135, 1140, 1137, 1142, 1143, 1144, 1145, 1149, 1151, 1137, 1140, 1139, 1139, 1150, 1141, 1142, 1138, 1146, 1145, 1143, 1144, 1147, 1154, 1152, 1146, 1155, 1151, 1163, 1147, 1149, 1158, 1143, 1144, 1145, 1149, 1154, 1156, 1156, 1150, 1157, 1150, 1152, 1159, 1160, 1146, 1161, 1162, 1169, 1147, 1154, 1152, 1173, 1155, 1162, 1161, 1158, 1164, 1158, 1163, 1167, 1165, 1157, 1168, 1156, 1159, 1160, 1157, 1167, 1170, 1159, 1160, 1174, 1161, 1162, 1169, 1168, 1171, 1172, 1164, 1165, 1175, 1176, 1173, 1164, 1172, 1178, 1167, 1165, 1171, 1168, 1192, 1179, 1185, 1174, 1170, 1170, 1176, 1177, 1174, 1180, 1177, 1182, 1192, 1171, 1172, 1175, 1185, 1175, 1176, 1179, 1178, 1183, 1178, 1186, 1180, 1177, 1189, 1192, 1179, 1185, 1186, 1187, 1195, 1182, 1177, 1191, 1180, 1177, 1182, 1193, 1197, 1193, 1187, 1183, 1198, 1194, 1196, 1189, 1183, 0, 1186, 1199, 1198, 1189, 1200, 1201, 1191, 1202, 1187, 1195, 1203, 1204, 1191, 1194, 1196, 1207, 1193, 1197, 1204, 1201, 1209, 1198, 1194, 1196, 1199, 1208, 1200, 1210, 1199, 1203, 1211, 1200, 1201, 1213, 1202, 1212, 1214, 1203, 1204, 1216, 1222, 1216, 1207, 1208, 1212, 1211, 1217, 1209, 1223, 1220, 1221, 1222, 1208, 1210, 1210, 1213, 1224, 1211, 1219, 1221, 1213, 1218, 1212, 1214, 1226, 1218, 1216, 1222, 1217, 1225, 1219, 1220, 1228, 1217, 1230, 1223, 1220, 1221, 1230, 1224, 1228, 1225, 1237, 1224, 1231, 1219, 1226, 1231, 1218, 1227, 1227, 1226, 1232, 1234, 1238, 1243, 1225, 1233, 1235, 1228, 1232, 1230, 1240, 1233, 1235, 1242, 1244, 1246, 1234, 1237, 1247, 1231, 1239, 1241, 1245, 1240, 1227, 1248, 1238, 1232, 1234, 1238, 1243, 1250, 1233, 1235, 1239, 1241, 1245, 1240, 1249, 1242, 1242, 1244, 1246, 1251, 1254, 1247, 1249, 1239, 1241, 1245, 1255, 1252, 1248, 1256, 1257, 1258, 0, 0, 1250, 1252, 1260, 1256, 1259, 1262, 1258, 1249, 1254, 1263, 1264, 1265, 1251, 1254, 0, 1261, 1269, 1270, 1264, 1255, 1252, 1263, 1256, 1257, 1258, 1259, 1260, 1267, 1269, 1260, 1261, 1259, 1262, 1271, 1267, 1268, 1263, 1264, 1265, 1268, 1270, 1261, 1261, 1269, 1270, 1272, 1273, 1274, 1274, 1275, 1276, 1277, 0, 1272, 1267, 1280, 0, 1261, 1278, 1279, 1271, 1279, 1268, 1284, 1281, 1282, 1277, 1283, 1276, 1280, 1281, 1285, 1272, 1273, 1274, 1275, 1275, 1276, 1277, 1283, 1278, 1284, 1280, 1286, 1287, 1278, 1279, 1282, 1294, 1285, 1284, 1281, 1282, 1288, 1283, 1290, 1286, 1293, 1285, 1292, 0, 1295, 1290, 1298, 0, 1304, 1297, 1302, 0, 1295, 1286, 1305, 1304, 1303, 1300, 1287, 1288, 1292, 1297, 1294, 1288, 1298, 1290, 1293, 1293, 1307, 1292, 1295, 1295, 1300, 1298, 1302, 1304, 1297, 1302, 1303, 1295, 1308, 1305, 1309, 1303, 1300, 1310, 1311, 1315, 1312, 0, 1313, 0, 1317, 1308, 1316, 1307, 1312, 1319, 1318, 1311, 1310, 1323, 1324, 1321, 1319, 1329, 0, 1308, 1309, 1309, 1315, 1325, 1310, 1311, 1315, 1312, 1313, 1313, 1316, 1317, 1318, 1316, 1320, 1323, 1319, 1318, 1321, 1322, 1323, 1327, 1321, 1328, 1325, 1324, 1322, 1320, 1329, 1331, 1325, 1334, 1327, 1330, 1338, 1342, 1344, 1341, 1346, 1347, 1348, 1320, 1356, 0, 1349, 1328, 1322, 1353, 1327, 1349, 1328, 1348, 1330, 1350, 1331, 1352, 1331, 1334, 1334, 1341, 1330, 1338, 1342, 1344, 1341, 1347, 1347, 1348, 1355, 1346, 1352, 1349, 1357, 1356, 1353, 1350, 1358, 1360, 1362, 1364, 1350, 1357, 1352, 1363, 1366, 1365, 1355, 1367, 1358, 1368, 0, 0, 1364, 1370, 1369, 1355, 1374, 1376, 1371, 1357, 1362, 0, 1370, 1358, 1360, 1362, 1364, 1365, 1363, 1369, 1363, 1366, 1365, 1371, 1367, 1372, 1368, 1373, 1374, 1375, 1370, 1369, 1377, 1374, 1376, 1371, 1375, 1378, 1378, 1379, 1372, 1380, 1373, 1387, 1381, 1382, 1379, 1381, 1383, 1388, 1377, 1385, 1372, 0, 1373, 1380, 1375, 1383, 1382, 1377, 1384, 1386, 1391, 1395, 1378, 1384, 1379, 1400, 1380, 1391, 1387, 1381, 1382, 1385, 1393, 1383, 1388, 1392, 1385, 1393, 1398, 1395, 1401, 1386, 1394, 1396, 1392, 1384, 1386, 1391, 1395, 1394, 1396, 1397, 1400, 1402, 1403, 1409, 0, 1408, 1401, 1393, 1397, 0, 1392, 1404, 1398, 1398, 1403, 1401, 1405, 1394, 1396, 1406, 1404, 1402, 1420, 1407, 1410, 1405, 1397, 1411, 1402, 1403, 1406, 1407, 1408, 1410, 1409, 1413, 1412, 1415, 1404, 1411, 1418, 1419, 1413, 1405, 1412, 1415, 1406, 1418, 1421, 1420, 1407, 1410, 1422, 1423, 1411, 1426, 1427, 1425, 1428, 1430, 1421, 1422, 1413, 1412, 1415, 1419, 1431, 1418, 1419, 1425, 1432, 1433, 1428, 1437, 1431, 1421, 1423, 1439, 1426, 1422, 1423, 1440, 1426, 1427, 1425, 1428, 1430, 1438, 1441, 1445, 1443, 1446, 1438, 1431, 1442, 1439, 1449, 1432, 1433, 1437, 1437, 1445, 1442, 1440, 1439, 1447, 1450, 1448, 1440, 1443, 1441, 1451, 1453, 1446, 1438, 1441, 1445, 1443, 1446, 1448, 1454, 1442, 1452, 1449, 1457, 1458, 0, 1447, 0, 1459, 0, 1461, 1447, 1450, 1448, 1460, 0, 1463, 1462, 1453, 1468, 1467, 1451, 1461, 1452, 1464, 1466, 1454, 1458, 1452, 1467, 1459, 1458, 1460, 1468, 1457, 1459, 1462, 1461, 1463, 1464, 1469, 1460, 1470, 1463, 1462, 1471, 1468, 1467, 1472, 1466, 1475, 1464, 1466, 1474, 1476, 1477, 1478, 1475, 1469, 1479, 1470, 1474, 1476, 1481, 1484, 1480, 1472, 1469, 1489, 1470, 1483, 1471, 1471, 1485, 1478, 1472, 1486, 1475, 1484, 1491, 1474, 1476, 1477, 1478, 1480, 1481, 1479, 1487, 1483, 1486, 1481, 1484, 1480, 1495, 1489, 1489, 1485, 1483, 1494, 1487, 1485, 1497, 1496, 1486, 1498, 1494, 1491, 1499, 1500, 1501, 1502, 1503, 0, 1508, 1487, 0, 1504, 1500, 1512, 1495, 1495, 1507, 1501, 1511, 1511, 1494, 1496, 0, 1497, 1496, 1516, 1498, 1520, 1511, 1499, 1500, 1501, 1513, 1503, 1504, 1512, 1502, 1507, 1504, 1508, 1512, 1513, 1514, 1507, 1515, 1511, 1511, 1517, 1518, 1514, 1519, 1522, 1516, 1520, 1520, 1517, 1521, 1515, 1519, 1513, 1533, 1524, 1522, 1523, 1525, 1525, 1526, 1518, 1524, 1514, 1530, 1515, 1527, 1528, 1517, 1518, 1537, 1519, 1522, 1527, 1528, 1534, 1521, 1521, 1526, 1523, 1532, 1533, 1524, 1535, 1523, 1525, 1538, 1526, 1530, 1532, 1539, 1530, 1536, 1527, 1528, 0, 1541, 1537, 1534, 1547, 1538, 1535, 1534, 1542, 1536, 1548, 1549, 1532, 1539, 1543, 1535, 1543, 1551, 1538, 1541, 1553, 1556, 1539, 1542, 1536, 1552, 1547, 1553, 1541, 1549, 1556, 1547, 1555, 1557, 1554, 1542, 1548, 1548, 1549, 1551, 1554, 1543, 1559, 1552, 1551, 1561, 1562, 1553, 1556, 1558, 1563, 1558, 1552, 1561, 1555, 1564, 1565, 1566, 1562, 1555, 1568, 1554, 1567, 1569, 1557, 1570, 1570, 1571, 1566, 1559, 1567, 1573, 1561, 1562, 1565, 1574, 1558, 1563, 1564, 1568, 1572, 1576, 1564, 1565, 1566, 1569, 1577, 1568, 1572, 1567, 1569, 1578, 1570, 1577, 1571, 1578, 1580, 1574, 1573, 1581, 1582, 1583, 1574, 1584, 1586, 1582, 1585, 1572, 1576, 1587, 1588, 1595, 1581, 1577, 1585, 1593, 1587, 1589, 1578, 1586, 1591, 1592, 1580, 1580, 1597, 0, 1581, 1582, 1583, 1592, 1584, 1586, 1589, 1585, 1590, 1598, 1587, 1588, 1595, 1594, 1594, 1590, 1591, 1598, 1589, 0, 1593, 1591, 1592, 1594, 1600, 1597, 1601, 1602, 1603, 1604, 1605, 1608, 0, 0, 1610, 1590, 1598, 1606, 1612, 1601, 1594, 1594, 1615, 1620, 1614, 1616, 1600, 1619, 0, 1602, 1613, 1600, 0, 1601, 1602, 1603, 1604, 1605, 1608, 1606, 1610, 1610, 1614, 1613, 1606, 1612, 1619, 1616, 1621, 1615, 1620, 1614, 1616, 1624, 1619, 1623, 1625, 1613, 1626, 1629, 1628, 1627, 1627, 1633, 1634, 1625, 1628, 1632, 1624, 1626, 1621, 1627, 1635, 1639, 1632, 1621, 1643, 1623, 1641, 1644, 1624, 1629, 1623, 1625, 1646, 1626, 1629, 1628, 1627, 1627, 1633, 1634, 1644, 1649, 1632, 1635, 1647, 1650, 1651, 1635, 1639, 1641, 1649, 1643, 1653, 1641, 1644, 1652, 1647, 1652, 1655, 1646, 1654, 1656, 1657, 1658, 1653, 1661, 1654, 1663, 1649, 1665, 1657, 1647, 1650, 1651, 1668, 1671, 1667, 1673, 1674, 1653, 1655, 0, 1652, 1656, 1672, 1655, 1674, 1654, 1656, 1657, 1658, 1667, 1661, 1675, 1663, 1681, 1665, 1672, 1676, 1673, 1668, 1668, 1675, 1667, 1673, 1674, 1671, 1682, 1684, 1676, 1683, 1672, 1685, 0, 1682, 1686, 1684, 1687, 1681, 1687, 1675, 1685, 1681, 1689, 1683, 1676, 1686, 1690, 1688, 1691, 1692, 1693, 0, 1693, 1682, 1684, 1694, 1683, 1695, 1685, 1688, 1698, 1686, 1700, 1687, 1690, 1696, 1701, 1694, 0, 1689, 1691, 1692, 1698, 1690, 1688, 1691, 1692, 1693, 1696, 0, 1703, 1699, 1694, 1702, 1710, 0, 1705, 1698, 1695, 1699, 1704, 1707, 1696, 1700, 1703, 1706, 1702, 1701, 1704, 1705, 1708, 1709, 1711, 1706, 1712, 1707, 1710, 1703, 1699, 1709, 1702, 1710, 1712, 1705, 1708, 1713, 1714, 1704, 1707, 1719, 1718, 0, 1706, 1715, 1711, 1716, 1717, 1708, 1709, 1711, 1723, 1712, 1721, 0, 1717, 1720, 1722, 0, 1714, 0, 1721, 1713, 1713, 1714, 1722, 1715, 1719, 1716, 1724, 1727, 1715, 1718, 1716, 1717, 1725, 1720, 1724, 1728, 1729, 1721, 1730, 1723, 1720, 1722, 1731, 1728, 1729, 1732, 1725, 1733, 1736, 1727, 1734, 1737, 1730, 1724, 1727, 1733, 1735, 1739, 1738, 1725, 1740, 1741, 1728, 1729, 0, 1730, 1738, 1732, 1731, 1731, 1736, 1737, 1732, 1743, 1733, 1736, 1734, 1734, 1737, 1746, 1740, 1741, 1735, 1735, 1739, 1738, 1742, 1740, 1741, 1744, 1747, 1748, 0, 1750, 1742, 1743, 1749, 1744, 1753, 1748, 1743, 1746, 1751, 1752, 1749, 1754, 1746, 1755, 1756, 1757, 1751, 1752, 1747, 1742, 0, 1760, 1744, 1747, 1748, 1750, 1750, 1758, 1763, 1749, 1753, 1753, 1766, 1755, 1767, 1751, 1752, 1764, 1754, 0, 1755, 1756, 1757, 1760, 1765, 1764, 0, 1758, 1760, 0, 1763, 0, 1765, 0, 1758, 1763, 0, 0, 0, 1766, 0, 1767, 0, 0, 1764, 0, 0, 0, 0, 0, 0, 1765, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1777, 1777, 0, 1777, 1777, 1777, 1777, 1778, 1778, 0, 0, 0, 1778, 1778, 1779, 1779, 0, 0, 1779, 0, 1779, 1780, 0, 0, 0, 0, 0, 1780, 1781, 1781, 0, 0, 0, 1781, 1781, 1782, 0, 0, 0, 0, 0, 1782, 1783, 1783, 0, 1783, 1783, 1783, 1783, 1784, 1784, 0, 1784, 1784, 1784, 1784, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770 } ; 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. * */ #include #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(strlen(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 181 "util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 2361 "" #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 ); yy_size_t 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 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 #define YY_READ_BUF_SIZE 8192 #endif /* Copy whatever the last rule matched to the standard output. */ #ifndef ECHO /* This used to be an fputs(), but since the string might contain NUL's, * we now use fwrite(). */ #define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0) #endif /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, * is returned in "result". */ #ifndef YY_INPUT #define YY_INPUT(buf,result,max_size) \ if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ { \ int c = '*'; \ size_t n; \ for ( n = 0; n < max_size && \ (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ buf[n] = (char) c; \ if ( c == '\n' ) \ buf[n++] = (char) c; \ if ( c == EOF && ferror( yyin ) ) \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ result = n; \ } \ else \ { \ errno=0; \ while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ { \ if( errno != EINTR) \ { \ YY_FATAL_ERROR( "input in flex scanner failed" ); \ break; \ } \ errno=0; \ clearerr(yyin); \ } \ }\ \ #endif /* No semi-colon after return; correct usage is to write "yyterminate();" - * we don't want an extra ';' after the "return" because that will cause * some compilers to complain about unreachable statements. */ #ifndef yyterminate #define yyterminate() return YY_NULL #endif /* Number of entries by which start-condition stack grows. */ #ifndef YY_START_STACK_INCR #define YY_START_STACK_INCR 25 #endif /* Report a fatal error. */ #ifndef YY_FATAL_ERROR #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) #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 break; #endif #define YY_RULE_SETUP \ YY_USER_ACTION /** The main scanner function which does all the work. */ YY_DECL { register yy_state_type yy_current_state; register char *yy_cp, *yy_bp; register int yy_act; #line 201 "util/configlexer.lex" #line 2548 "" 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( ); } while ( 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 { register 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 >= 1771 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; ++yy_cp; } while ( yy_base[yy_current_state] != 5097 ); 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 202 "util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 204 "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 207 "util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 208 "util/configlexer.lex" { YDVAR(1, VAR_QNAME_MINIMISATION) } YY_BREAK case 5: YY_RULE_SETUP #line 209 "util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 6: YY_RULE_SETUP #line 210 "util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 7: YY_RULE_SETUP #line 211 "util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 8: YY_RULE_SETUP #line 212 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 9: YY_RULE_SETUP #line 213 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 10: YY_RULE_SETUP #line 214 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 11: YY_RULE_SETUP #line 215 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 12: YY_RULE_SETUP #line 216 "util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 13: YY_RULE_SETUP #line 217 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 14: YY_RULE_SETUP #line 218 "util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 15: YY_RULE_SETUP #line 219 "util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 16: YY_RULE_SETUP #line 220 "util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 17: YY_RULE_SETUP #line 221 "util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 18: YY_RULE_SETUP #line 222 "util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 19: YY_RULE_SETUP #line 223 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 20: YY_RULE_SETUP #line 224 "util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 21: YY_RULE_SETUP #line 225 "util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 22: YY_RULE_SETUP #line 226 "util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 23: YY_RULE_SETUP #line 227 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 24: YY_RULE_SETUP #line 228 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 25: YY_RULE_SETUP #line 229 "util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 26: YY_RULE_SETUP #line 230 "util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 27: YY_RULE_SETUP #line 231 "util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 28: YY_RULE_SETUP #line 232 "util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 29: YY_RULE_SETUP #line 233 "util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 30: YY_RULE_SETUP #line 234 "util/configlexer.lex" { YDVAR(1, VAR_IP_TRANSPARENT) } YY_BREAK case 31: YY_RULE_SETUP #line 235 "util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 32: YY_RULE_SETUP #line 236 "util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 33: YY_RULE_SETUP #line 237 "util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 34: YY_RULE_SETUP #line 238 "util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 35: YY_RULE_SETUP #line 239 "util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 36: YY_RULE_SETUP #line 240 "util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 37: YY_RULE_SETUP #line 241 "util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 38: YY_RULE_SETUP #line 242 "util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 39: YY_RULE_SETUP #line 243 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 40: YY_RULE_SETUP #line 244 "util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 41: YY_RULE_SETUP #line 245 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 42: YY_RULE_SETUP #line 246 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 43: YY_RULE_SETUP #line 247 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 44: YY_RULE_SETUP #line 248 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) } YY_BREAK case 45: YY_RULE_SETUP #line 249 "util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 46: YY_RULE_SETUP #line 250 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 47: YY_RULE_SETUP #line 251 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 48: YY_RULE_SETUP #line 252 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 49: YY_RULE_SETUP #line 253 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 50: YY_RULE_SETUP #line 254 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 51: YY_RULE_SETUP #line 255 "util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) } YY_BREAK case 52: YY_RULE_SETUP #line 256 "util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 53: YY_RULE_SETUP #line 257 "util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 54: YY_RULE_SETUP #line 258 "util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 55: YY_RULE_SETUP #line 259 "util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 56: YY_RULE_SETUP #line 260 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 57: YY_RULE_SETUP #line 261 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 58: YY_RULE_SETUP #line 262 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 59: YY_RULE_SETUP #line 263 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 60: YY_RULE_SETUP #line 264 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 61: YY_RULE_SETUP #line 265 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 62: YY_RULE_SETUP #line 266 "util/configlexer.lex" { YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) } YY_BREAK case 63: YY_RULE_SETUP #line 267 "util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 64: YY_RULE_SETUP #line 268 "util/configlexer.lex" { YDVAR(1, VAR_CAPS_WHITELIST) } YY_BREAK case 65: YY_RULE_SETUP #line 269 "util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 66: YY_RULE_SETUP #line 270 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 67: YY_RULE_SETUP #line 271 "util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 68: YY_RULE_SETUP #line 272 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 69: YY_RULE_SETUP #line 273 "util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 70: YY_RULE_SETUP #line 274 "util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 71: YY_RULE_SETUP #line 275 "util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 72: YY_RULE_SETUP #line 276 "util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 73: YY_RULE_SETUP #line 277 "util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 74: YY_RULE_SETUP #line 278 "util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 75: YY_RULE_SETUP #line 279 "util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 76: YY_RULE_SETUP #line 280 "util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 77: YY_RULE_SETUP #line 281 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 78: YY_RULE_SETUP #line 282 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 79: YY_RULE_SETUP #line 283 "util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 80: YY_RULE_SETUP #line 284 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 81: YY_RULE_SETUP #line 285 "util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 82: YY_RULE_SETUP #line 286 "util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 83: YY_RULE_SETUP #line 287 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 84: YY_RULE_SETUP #line 288 "util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 85: YY_RULE_SETUP #line 289 "util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 86: YY_RULE_SETUP #line 290 "util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 87: YY_RULE_SETUP #line 291 "util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 88: YY_RULE_SETUP #line 292 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 89: YY_RULE_SETUP #line 293 "util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 90: YY_RULE_SETUP #line 294 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 91: YY_RULE_SETUP #line 295 "util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 92: YY_RULE_SETUP #line 296 "util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 93: YY_RULE_SETUP #line 297 "util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 94: YY_RULE_SETUP #line 298 "util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 95: YY_RULE_SETUP #line 299 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 96: YY_RULE_SETUP #line 300 "util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 97: YY_RULE_SETUP #line 301 "util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 98: YY_RULE_SETUP #line 302 "util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 99: YY_RULE_SETUP #line 303 "util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 100: YY_RULE_SETUP #line 304 "util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 101: YY_RULE_SETUP #line 305 "util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 102: YY_RULE_SETUP #line 306 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 103: YY_RULE_SETUP #line 307 "util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 104: YY_RULE_SETUP #line 308 "util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 105: YY_RULE_SETUP #line 309 "util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 106: YY_RULE_SETUP #line 311 "util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 107: YY_RULE_SETUP #line 312 "util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 108: YY_RULE_SETUP #line 313 "util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 109: YY_RULE_SETUP #line 314 "util/configlexer.lex" { YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) } YY_BREAK case 110: YY_RULE_SETUP #line 315 "util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 111: YY_RULE_SETUP #line 316 "util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 112: YY_RULE_SETUP #line 317 "util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 113: YY_RULE_SETUP #line 318 "util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 114: YY_RULE_SETUP #line 319 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 115: YY_RULE_SETUP #line 320 "util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 116: YY_RULE_SETUP #line 321 "util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 117: YY_RULE_SETUP #line 322 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 118: YY_RULE_SETUP #line 323 "util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 119: YY_RULE_SETUP #line 324 "util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 120: YY_RULE_SETUP #line 325 "util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 121: YY_RULE_SETUP #line 326 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 122: YY_RULE_SETUP #line 327 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 123: YY_RULE_SETUP #line 328 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 124: YY_RULE_SETUP #line 329 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_USE_CERT) } YY_BREAK case 125: YY_RULE_SETUP #line 330 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 126: YY_RULE_SETUP #line 331 "util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 127: YY_RULE_SETUP #line 332 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 128: YY_RULE_SETUP #line 333 "util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 129: YY_RULE_SETUP #line 334 "util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 130: YY_RULE_SETUP #line 335 "util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 131: YY_RULE_SETUP #line 336 "util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 132: YY_RULE_SETUP #line 337 "util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 133: YY_RULE_SETUP #line 338 "util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 134: YY_RULE_SETUP #line 339 "util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 135: YY_RULE_SETUP #line 340 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 136: YY_RULE_SETUP #line 341 "util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 137: YY_RULE_SETUP #line 342 "util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 138: YY_RULE_SETUP #line 343 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 139: YY_RULE_SETUP #line 344 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 140: YY_RULE_SETUP #line 345 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 141: YY_RULE_SETUP #line 346 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 142: YY_RULE_SETUP #line 347 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 143: YY_RULE_SETUP #line 348 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 144: YY_RULE_SETUP #line 349 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 145: YY_RULE_SETUP #line 351 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 146: YY_RULE_SETUP #line 353 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 147: YY_RULE_SETUP #line 355 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 148: YY_RULE_SETUP #line 357 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 149: YY_RULE_SETUP #line 359 "util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 150: YY_RULE_SETUP #line 361 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT) } YY_BREAK case 151: YY_RULE_SETUP #line 362 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SLABS) } YY_BREAK case 152: YY_RULE_SETUP #line 363 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_SIZE) } YY_BREAK case 153: YY_RULE_SETUP #line 364 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) } YY_BREAK case 154: YY_RULE_SETUP #line 365 "util/configlexer.lex" { YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) } YY_BREAK case 155: YY_RULE_SETUP #line 366 "util/configlexer.lex" { YDVAR(1, VAR_RATELIMIT_FACTOR) } YY_BREAK case 156: /* rule 156 can match eol */ YY_RULE_SETUP #line 367 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 157: YY_RULE_SETUP #line 370 "util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 371 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 158: YY_RULE_SETUP #line 376 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 159: /* rule 159 can match eol */ YY_RULE_SETUP #line 377 "util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 160: YY_RULE_SETUP #line 379 "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 161: YY_RULE_SETUP #line 391 "util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 392 "util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 162: YY_RULE_SETUP #line 397 "util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 163: /* rule 163 can match eol */ YY_RULE_SETUP #line 398 "util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 164: YY_RULE_SETUP #line 400 "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 165: YY_RULE_SETUP #line 412 "util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 414 "util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 166: YY_RULE_SETUP #line 418 "util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 167: /* rule 167 can match eol */ YY_RULE_SETUP #line 419 "util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 168: YY_RULE_SETUP #line 420 "util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 169: YY_RULE_SETUP #line 421 "util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 426 "util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 170: YY_RULE_SETUP #line 430 "util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 171: /* rule 171 can match eol */ YY_RULE_SETUP #line 431 "util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 172: YY_RULE_SETUP #line 433 "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 439 "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 173: YY_RULE_SETUP #line 450 "util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 174: YY_RULE_SETUP #line 454 "util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 175: YY_RULE_SETUP #line 458 "util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 176: YY_RULE_SETUP #line 462 "util/configlexer.lex" ECHO; YY_BREAK #line 3616 "" 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 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) { register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; register char *source = (yytext_ptr); register int number_to_move, i; int ret_val; if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) YY_FATAL_ERROR( "fatal flex scanner internal error--end of buffer missed" ); if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) { /* Don't try to fill the buffer, so this is an EOF. */ if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) { /* We matched a single character, the EOB, so * treat this as a final EOF. */ return EOB_ACT_END_OF_FILE; } else { /* We matched some text prior to the EOB, first * process it. */ return EOB_ACT_LAST_MATCH; } } /* Try to read more data. */ /* First move last chars to start of buffer. */ number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; for ( i = 0; i < number_to_move; ++i ) *(dest++) = *(source++); if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) /* don't do the read, it's not guaranteed to return an EOF, * just force an EOF */ YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; else { yy_size_t num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { yy_size_t new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); } else /* Can't grow it, we don't own it. */ b->yy_ch_buf = 0; if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" ); (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; } if ( num_to_read > YY_READ_BUF_SIZE ) num_to_read = YY_READ_BUF_SIZE; /* Read in more data. */ YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), (yy_n_chars), num_to_read ); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } if ( (yy_n_chars) == 0 ) { if ( number_to_move == YY_MORE_ADJ ) { ret_val = EOB_ACT_END_OF_FILE; yyrestart(yyin ); } else { ret_val = EOB_ACT_LAST_MATCH; YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_EOF_PENDING; } } else ret_val = EOB_ACT_CONTINUE_SCAN; if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { /* Extend the array by 50%, plus the number we really need. */ yy_size_t 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,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) { register yy_state_type yy_current_state; register char *yy_cp; yy_current_state = (yy_start); for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) { register 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 >= 1771 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; } return yy_current_state; } /* yy_try_NUL_trans - try to make a transition on the NUL character * * synopsis * next_state = yy_try_NUL_trans( current_state ); */ static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) { register int yy_is_jam; register char *yy_cp = (yy_c_buf_p); register 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 >= 1771 ) yy_c = yy_meta[(unsigned int) yy_c]; } yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; yy_is_jam = (yy_current_state == 1770); return yy_is_jam ? 0 : yy_current_state; } #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 */ yy_size_t 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 EOF; 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(b->yy_buf_size + 2 ); if ( ! b->yy_ch_buf ) YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); b->yy_is_our_buffer = 1; yy_init_buffer(b,file ); return b; } /** Destroy the buffer. * @param b a buffer created with yy_create_buffer() * */ void yy_delete_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; if ( b->yy_is_our_buffer ) yyfree((void *) b->yy_ch_buf ); yyfree((void *) b ); } /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { yy_size_t num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (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. */ int 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 0; 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 = size - 2; /* "- 2" to take care of EOB's */ b->yy_buf_pos = b->yy_ch_buf = base; b->yy_is_our_buffer = 0; b->yy_input_file = 0; b->yy_n_chars = b->yy_buf_size; b->yy_is_interactive = 0; b->yy_at_bol = 1; b->yy_fill_buffer = 0; b->yy_buffer_status = YY_BUFFER_NEW; 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,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, yy_size_t _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 = _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 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. */ \ int yyless_macro_arg = (n); \ YY_LESS_LINENO(yyless_macro_arg);\ yytext[yyleng] = (yy_hold_char); \ (yy_c_buf_p) = yytext + yyless_macro_arg; \ (yy_hold_char) = *(yy_c_buf_p); \ *(yy_c_buf_p) = '\0'; \ yyleng = yyless_macro_arg; \ } \ while ( 0 ) /* Accessor methods (get/set functions) to struct members. */ /** Get the current line number. * */ int yyget_lineno (void) { return yylineno; } /** Get the input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ yy_size_t yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the current line number. * @param 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) = 0; (yy_buffer_stack_top) = 0; (yy_buffer_stack_max) = 0; (yy_c_buf_p) = (char *) 0; (yy_init) = 0; (yy_start) = 0; /* Defined in main.c */ #ifdef YY_STDINIT yyin = stdin; yyout = stdout; #else yyin = (FILE *) 0; yyout = (FILE *) 0; #endif /* For future reference: Set errno on error, since we are called by * 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 ) { register 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 ) { register int n; for ( n = 0; s[n]; ++n ) ; return n; } #endif void *yyalloc (yy_size_t size ) { return (void *) 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 (void *) realloc( (char *) ptr, size ); } void yyfree (void * ptr ) { free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ } #define YYTABLES_NAME "yytables" #line 462 "util/configlexer.lex"