#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 36 #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 162 #define YY_END_OF_BUFFER 163 /* 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[1611] = { 0, 1, 1, 144, 144, 148, 148, 152, 152, 156, 156, 1, 1, 163, 160, 1, 142, 142, 161, 2, 161, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 144, 145, 145, 146, 161, 148, 149, 149, 150, 161, 155, 152, 153, 153, 154, 161, 156, 157, 157, 158, 161, 159, 143, 2, 147, 161, 159, 160, 0, 1, 2, 2, 2, 2, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 144, 0, 148, 0, 155, 0, 152, 156, 0, 159, 0, 2, 2, 159, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 159, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 159, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 65, 160, 160, 160, 160, 160, 6, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 159, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 159, 160, 160, 160, 160, 29, 160, 160, 160, 160, 160, 160, 160, 160, 129, 160, 12, 13, 160, 15, 14, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 122, 160, 160, 160, 160, 160, 3, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 159, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 151, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 32, 160, 160, 160, 160, 160, 160, 160, 160, 160, 33, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 80, 151, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 79, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 63, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 20, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 30, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 31, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 22, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 26, 160, 27, 160, 160, 160, 66, 160, 67, 160, 64, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 5, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 82, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 23, 160, 160, 160, 160, 107, 106, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 34, 160, 160, 160, 160, 160, 160, 160, 160, 69, 68, 160, 160, 160, 160, 160, 160, 160, 103, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 50, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 54, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 105, 160, 160, 160, 160, 160, 160, 160, 160, 160, 4, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 100, 160, 160, 160, 160, 160, 160, 160, 116, 101, 160, 127, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 21, 160, 160, 160, 160, 71, 160, 72, 70, 160, 160, 160, 160, 160, 160, 78, 160, 160, 160, 160, 160, 160, 160, 160, 160, 102, 160, 160, 160, 160, 126, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 62, 160, 160, 160, 160, 160, 160, 160, 160, 28, 160, 160, 17, 160, 160, 160, 16, 160, 87, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 41, 42, 160, 160, 160, 160, 160, 160, 130, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 73, 160, 160, 160, 160, 160, 77, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 81, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 121, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 91, 160, 95, 160, 160, 160, 160, 76, 160, 160, 114, 160, 160, 160, 128, 160, 160, 160, 160, 160, 160, 160, 135, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 94, 160, 160, 160, 160, 43, 44, 160, 49, 96, 160, 108, 104, 160, 160, 37, 160, 98, 160, 160, 160, 160, 160, 7, 160, 61, 113, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 83, 134, 160, 160, 160, 160, 160, 160, 160, 160, 123, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 97, 160, 36, 38, 160, 160, 160, 160, 160, 60, 160, 160, 160, 160, 117, 18, 19, 160, 160, 160, 160, 160, 160, 160, 58, 160, 160, 160, 160, 160, 160, 160, 160, 160, 119, 160, 160, 160, 160, 160, 160, 160, 160, 35, 160, 160, 160, 160, 160, 160, 11, 160, 160, 160, 160, 160, 160, 160, 10, 160, 160, 39, 160, 125, 118, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 90, 89, 160, 120, 115, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 45, 160, 124, 160, 160, 160, 160, 40, 160, 160, 160, 84, 86, 109, 160, 160, 160, 88, 160, 160, 160, 160, 160, 160, 160, 160, 131, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 24, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 133, 160, 160, 112, 160, 160, 160, 160, 160, 160, 160, 25, 160, 9, 160, 160, 110, 51, 160, 160, 160, 93, 160, 160, 160, 160, 160, 160, 132, 74, 160, 160, 160, 53, 57, 52, 160, 46, 160, 8, 160, 160, 92, 160, 160, 160, 160, 160, 160, 160, 160, 160, 56, 160, 47, 160, 111, 160, 160, 85, 160, 160, 160, 160, 160, 160, 75, 55, 48, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 59, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 99, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 138, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 136, 160, 139, 140, 160, 160, 160, 160, 160, 137, 141, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 13, 1, 1, 1, 1, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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[40] = { 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 } ; static yyconst flex_int16_t yy_base[1625] = { 0, 0, 0, 37, 40, 44, 51, 63, 75, 56, 68, 87, 108, 2844, 2315, 50, 3201, 3201, 3201, 129, 94, 70, 104, 130, 90, 92, 115, 127, 95, 84, 111, 137, 148, 50, 150, 155, 157, 163, 171, 178, 2213, 3201, 3201, 3201, 70, 2102, 3201, 3201, 3201, 42, 1930, 1613, 3201, 3201, 3201, 195, 1340, 3201, 3201, 3201, 141, 1156, 3201, 202, 3201, 206, 122, 1017, 212, 120, 0, 223, 0, 0, 103, 147, 154, 158, 192, 199, 207, 208, 205, 209, 221, 218, 220, 224, 225, 229, 230, 231, 238, 251, 236, 247, 250, 237, 248, 256, 259, 167, 263, 254, 249, 264, 265, 271, 273, 274, 125, 275, 277, 284, 278, 281, 285, 288, 286, 289, 292, 296, 298, 987, 308, 860, 315, 829, 326, 692, 342, 319, 301, 330, 334, 0, 327, 331, 337, 314, 305, 333, 335, 343, 340, 346, 349, 370, 350, 339, 352, 49, 356, 354, 353, 361, 363, 362, 366, 364, 368, 373, 377, 381, 392, 399, 386, 383, 401, 397, 405, 408, 406, 182, 407, 409, 410, 385, 411, 414, 412, 416, 418, 424, 420, 421, 422, 430, 428, 431, 441, 444, 450, 433, 446, 448, 449, 456, 454, 453, 455, 461, 460, 463, 464, 474, 475, 477, 470, 472, 479, 480, 481, 488, 489, 491, 493, 499, 495, 496, 497, 500, 501, 504, 505, 507, 511, 517, 512, 508, 521, 510, 516, 523, 534, 527, 538, 532, 533, 542, 540, 545, 543, 546, 547, 558, 554, 555, 559, 556, 557, 563, 571, 575, 565, 568, 569, 577, 579, 581, 599, 585, 583, 587, 590, 589, 596, 610, 597, 606, 607, 624, 603, 612, 625, 627, 628, 632, 631, 634, 636, 635, 637, 638, 640, 641, 644, 645, 656, 659, 648, 665, 662, 667, 664, 670, 593, 677, 673, 675, 674, 676, 646, 682, 678, 688, 3201, 690, 679, 685, 692, 695, 3201, 696, 697, 698, 703, 702, 709, 705, 706, 711, 714, 715, 719, 713, 720, 740, 722, 721, 731, 735, 725, 733, 727, 743, 747, 749, 750, 751, 753, 754, 755, 757, 758, 763, 774, 760, 768, 771, 778, 779, 780, 782, 781, 787, 783, 794, 788, 798, 804, 800, 806, 808, 814, 810, 811, 813, 820, 818, 819, 812, 826, 823, 825, 830, 834, 827, 841, 837, 840, 844, 847, 849, 850, 851, 853, 859, 857, 858, 866, 868, 856, 864, 871, 872, 877, 884, 885, 881, 886, 892, 893, 888, 894, 897, 898, 899, 900, 901, 902, 906, 908, 909, 917, 903, 913, 919, 925, 927, 928, 910, 930, 931, 934, 933, 937, 941, 935, 945, 947, 948, 949, 955, 957, 950, 959, 3201, 969, 963, 965, 966, 970, 972, 951, 991, 3201, 973, 3201, 3201, 975, 3201, 3201, 974, 979, 982, 994, 1014, 993, 981, 980, 1001, 1007, 995, 1008, 997, 1019, 1022, 1023, 1011, 1015, 1027, 1029, 1024, 1036, 1037, 1041, 1043, 1049, 1045, 1046, 1047, 1050, 1051, 1056, 1053, 1063, 1057, 1064, 1066, 3201, 1067, 1068, 1071, 1073, 1075, 3201, 1074, 1076, 1077, 1079, 1080, 1083, 1084, 1087, 1089, 1090, 1092, 1094, 1100, 1096, 1097, 1110, 1117, 1114, 1104, 1113, 1115, 1119, 1121, 1129, 1127, 1126, 1128, 1136, 1132, 1134, 1138, 1135, 1139, 1142, 1145, 1146, 1170, 1147, 1148, 1149, 1153, 1154, 1157, 1158, 1162, 1165, 1177, 1178, 1176, 1164, 1184, 1187, 1194, 1195, 1197, 1191, 1155, 1199, 1204, 1206, 1208, 1188, 1211, 1212, 3201, 1218, 1217, 1215, 1219, 1223, 1224, 1226, 1225, 1231, 1227, 1237, 1229, 1245, 3201, 1230, 1239, 1233, 1241, 1250, 1253, 1252, 1259, 1267, 3201, 1269, 1270, 1263, 1265, 1256, 1272, 1273, 1277, 1278, 1279, 1281, 1284, 1287, 1289, 1288, 1292, 1291, 1293, 1296, 1300, 1299, 1302, 1301, 1305, 1303, 1242, 1315, 1322, 1311, 1321, 1318, 1324, 1323, 1329, 1327, 1330, 1328, 1331, 3201, 239, 1332, 1333, 1334, 1341, 1349, 1350, 1343, 1351, 1353, 1352, 1359, 1342, 1363, 1360, 1364, 1366, 1368, 1371, 1372, 1373, 1377, 1375, 1381, 1383, 1382, 1384, 1385, 1391, 1394, 1392, 1396, 1397, 1398, 1399, 1400, 1402, 1406, 1405, 1410, 3201, 1427, 1412, 1415, 1413, 1424, 1435, 1428, 1431, 1432, 1442, 1438, 1440, 1443, 1449, 1446, 1451, 1452, 1436, 1458, 1462, 1459, 1461, 1460, 1468, 3201, 1463, 1470, 1471, 1472, 1473, 1475, 1477, 1480, 1481, 1488, 1482, 1494, 3201, 1496, 1490, 1484, 1501, 1502, 1505, 1507, 1509, 1510, 1511, 1513, 1514, 1517, 1515, 1520, 1524, 3201, 1528, 1532, 1529, 1540, 1536, 1525, 1537, 1539, 1541, 1542, 1551, 1543, 1547, 1550, 1552, 1549, 1554, 1555, 1557, 1559, 3201, 1571, 1572, 1574, 1414, 1562, 1583, 1556, 1575, 1558, 1584, 1585, 1587, 1588, 1589, 1590, 1593, 1595, 1591, 1597, 1596, 1599, 1600, 1608, 1598, 1617, 1618, 1619, 1601, 1623, 1629, 1632, 1620, 3201, 1631, 1634, 1635, 1636, 1642, 1644, 1638, 1640, 1645, 1646, 1647, 1656, 1648, 1650, 1654, 1658, 1652, 1660, 1661, 1662, 1670, 1664, 1672, 1674, 1678, 1680, 1682, 1684, 1686, 1694, 3201, 1690, 3201, 1691, 1692, 1700, 3201, 1702, 3201, 1704, 3201, 1707, 1711, 1699, 1697, 1705, 1713, 1709, 1716, 1717, 1720, 1723, 1725, 1726, 1727, 1728, 3201, 1729, 1734, 1731, 1735, 1738, 1739, 1740, 1744, 1756, 1741, 1743, 1753, 1754, 3201, 1750, 1762, 1764, 1765, 1766, 1773, 1770, 1771, 1777, 1767, 1778, 1788, 1786, 1779, 1789, 1790, 1791, 1793, 1794, 1801, 1798, 1795, 1802, 1804, 1805, 1806, 1807, 1814, 1811, 1812, 1815, 3201, 1823, 1821, 1817, 1825, 3201, 3201, 1834, 1827, 1835, 1837, 1839, 1842, 1843, 1845, 1849, 1847, 1850, 1851, 1856, 1857, 1858, 1859, 1862, 1860, 1866, 3201, 1872, 1868, 1878, 1869, 1865, 1887, 1879, 1888, 3201, 3201, 1881, 1880, 1890, 1894, 1900, 1896, 1898, 3201, 1899, 1901, 1902, 1904, 1906, 1914, 1903, 1910, 1918, 1915, 1920, 1921, 1927, 1924, 1928, 1931, 1935, 1939, 3201, 1940, 1942, 1943, 1945, 1944, 1947, 1948, 1951, 1952, 1957, 1954, 1965, 1967, 1958, 1966, 1960, 1971, 1968, 1973, 1976, 1983, 1981, 3201, 1987, 1986, 1994, 1990, 1992, 1995, 1998, 1997, 1999, 2000, 2001, 2002, 2006, 2003, 2007, 2010, 3201, 2013, 2018, 2012, 2024, 2025, 2014, 2032, 2026, 2028, 3201, 2036, 2042, 2035, 2038, 2047, 2043, 2049, 2039, 2050, 2051, 2053, 2054, 2057, 2062, 2056, 2064, 2069, 2071, 2078, 2075, 2081, 2082, 2079, 2083, 2089, 2086, 2087, 2088, 2092, 2099, 2093, 2101, 2097, 3201, 2103, 2108, 2111, 2112, 2114, 2116, 2104, 3201, 3201, 2120, 3201, 2121, 2124, 2125, 2126, 2128, 2129, 2127, 2134, 2141, 2130, 3201, 2137, 2140, 2142, 2143, 3201, 2154, 3201, 3201, 2147, 2155, 2156, 2159, 2162, 2166, 3201, 2163, 2157, 2167, 2169, 2171, 2172, 2174, 2176, 2175, 3201, 2180, 2179, 2178, 2188, 3201, 2187, 2193, 2182, 2189, 2198, 2199, 2202, 2203, 2205, 2211, 2209, 3201, 2210, 2212, 2216, 2218, 2219, 2220, 2223, 2224, 3201, 2233, 2234, 3201, 2227, 2217, 2235, 3201, 2241, 3201, 2242, 2243, 2244, 2245, 2250, 2246, 2253, 2256, 2257, 2259, 2260, 2263, 2266, 3201, 3201, 2267, 2271, 2277, 2268, 2279, 2282, 3201, 2265, 2283, 2272, 2285, 2286, 2287, 2292, 2294, 2297, 2289, 2298, 2296, 2299, 3201, 2302, 2306, 2307, 2309, 2310, 3201, 2312, 2313, 2314, 2317, 2319, 2324, 2333, 2329, 2335, 2337, 2338, 2340, 2344, 2341, 3201, 2345, 2347, 2348, 2352, 2353, 2349, 2356, 2361, 2364, 2354, 2366, 3201, 2369, 2358, 2374, 2370, 2376, 2378, 2372, 2380, 2381, 2382, 2385, 2386, 2389, 2390, 2396, 2399, 3201, 2392, 3201, 2401, 2405, 2413, 2414, 3201, 2394, 2407, 3201, 2417, 2411, 2422, 3201, 2425, 2418, 2426, 2428, 2429, 2430, 2433, 3201, 2431, 2436, 2438, 2441, 2442, 2444, 2445, 2447, 2455, 2451, 3201, 2453, 2454, 2456, 2458, 3201, 3201, 2466, 3201, 3201, 2471, 3201, 3201, 2463, 2473, 3201, 2475, 3201, 2481, 2477, 2479, 2461, 2480, 3201, 2487, 3201, 3201, 2484, 2488, 2482, 2492, 2494, 2499, 2501, 2491, 2502, 2504, 2505, 2506, 2507, 2508, 2510, 2513, 2511, 2514, 2519, 2515, 2521, 2523, 2524, 2525, 2527, 3201, 3201, 2531, 2536, 2533, 2538, 2540, 2542, 2543, 2544, 3201, 2547, 2548, 2550, 2552, 2553, 2556, 2559, 2564, 2573, 2560, 2566, 2567, 3201, 2569, 3201, 3201, 2574, 2576, 2581, 2577, 2582, 3201, 2584, 2586, 2590, 2596, 3201, 3201, 3201, 2597, 2591, 2593, 2599, 2601, 2603, 2607, 3201, 2608, 2609, 2611, 2610, 2618, 2620, 2626, 2628, 2630, 3201, 2636, 2633, 2634, 2632, 2635, 2638, 2640, 2612, 3201, 2644, 2642, 2643, 2648, 2653, 2649, 3201, 2651, 2656, 2660, 2662, 2664, 2661, 2667, 3201, 2665, 2666, 3201, 2677, 3201, 3201, 2668, 2680, 2682, 2684, 2687, 2690, 2673, 2678, 2698, 2695, 2696, 3201, 3201, 2697, 3201, 3201, 2699, 2701, 2702, 2704, 2705, 2708, 2709, 2710, 2711, 2712, 2715, 2721, 2714, 2722, 2723, 2725, 3201, 2733, 3201, 2729, 2738, 2735, 2740, 3201, 2741, 2742, 2727, 3201, 3201, 3201, 2746, 2743, 2753, 3201, 2755, 2756, 2757, 2758, 2759, 2766, 2764, 2768, 3201, 2769, 2770, 2772, 2773, 2774, 2775, 2776, 2781, 2779, 2780, 2792, 2793, 3201, 2796, 2783, 2787, 2801, 2807, 2797, 2802, 2804, 2811, 2808, 2812, 2813, 2823, 2819, 2822, 3201, 2826, 2815, 3201, 2827, 2828, 2830, 2839, 2843, 2835, 2845, 3201, 2846, 3201, 2849, 2850, 3201, 3201, 2851, 2853, 2856, 3201, 2857, 2854, 2858, 2860, 2863, 2864, 3201, 3201, 2865, 2867, 2871, 3201, 3201, 3201, 2880, 3201, 2882, 3201, 2888, 2868, 3201, 2873, 2890, 2870, 2881, 2876, 2893, 2894, 2892, 2901, 3201, 2903, 3201, 2905, 3201, 2906, 2907, 3201, 2914, 2910, 2912, 2913, 2915, 2919, 3201, 3201, 3201, 2916, 2921, 2923, 2925, 2922, 2926, 2927, 2928, 2930, 2937, 2934, 2945, 2931, 2938, 2954, 2947, 3201, 2948, 2951, 2960, 2962, 2958, 2964, 2959, 2965, 2966, 2967, 2968, 2969, 2971, 2982, 2973, 2974, 2984, 2986, 2990, 2983, 2998, 2997, 2994, 2999, 3000, 3008, 3004, 3007, 3201, 3005, 3006, 3009, 3011, 3012, 3016, 3014, 3026, 3029, 3017, 3031, 3015, 3036, 3032, 3037, 3040, 3041, 3042, 3201, 3043, 3045, 3047, 3049, 3051, 3053, 3054, 3055, 3058, 3060, 3063, 3065, 3069, 3201, 3070, 3201, 3201, 3074, 3071, 3077, 3081, 3083, 3201, 3201, 3201, 3109, 3116, 3123, 3130, 3137, 94, 3144, 3151, 3158, 3165, 3172, 3179, 3186, 3193 } ; static yyconst flex_int16_t yy_def[1625] = { 0, 1610, 1, 1611, 1611, 1612, 1612, 1613, 1613, 1614, 1614, 1615, 1615, 1610, 1616, 1610, 1610, 1610, 1610, 1617, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1618, 1610, 1610, 1610, 1618, 1619, 1610, 1610, 1610, 1619, 1620, 1610, 1610, 1610, 1610, 1620, 1621, 1610, 1610, 1610, 1621, 1622, 1610, 1623, 1610, 1622, 1622, 1616, 1616, 1610, 1624, 1617, 1624, 1617, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1618, 1618, 1619, 1619, 1620, 1620, 1610, 1621, 1621, 1622, 1622, 1623, 1623, 1622, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1622, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1622, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1622, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1622, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1622, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1622, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1610, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1610, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1610, 1610, 1616, 1610, 1610, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1610, 1610, 1610, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1616, 1610, 1610, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1616, 1616, 1616, 1610, 1610, 1610, 1616, 1610, 1616, 1610, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1616, 1610, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1610, 1616, 1610, 1610, 1616, 1616, 1616, 1616, 1616, 1610, 1610, 0, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610 } ; static yyconst flex_int16_t yy_nxt[3241] = { 0, 14, 15, 16, 17, 18, 19, 18, 14, 14, 14, 14, 18, 20, 21, 14, 22, 23, 24, 25, 14, 26, 27, 28, 29, 30, 31, 32, 33, 34, 14, 35, 36, 37, 38, 39, 14, 14, 14, 14, 41, 42, 43, 41, 42, 43, 125, 46, 47, 125, 44, 48, 69, 44, 46, 47, 70, 49, 48, 57, 58, 59, 68, 68, 49, 51, 52, 53, 54, 60, 18, 57, 58, 59, 123, 123, 55, 51, 52, 53, 54, 60, 18, 68, 104, 215, 74, 75, 55, 15, 16, 17, 62, 63, 64, 67, 67, 68, 67, 67, 65, 67, 95, 68, 76, 68, 67, 85, 68, 66, 15, 16, 17, 62, 63, 64, 68, 68, 77, 137, 87, 65, 69, 94, 68, 78, 70, 86, 68, 88, 66, 72, 79, 72, 72, 133, 72, 89, 68, 96, 68, 72, 73, 68, 90, 130, 130, 91, 80, 136, 68, 97, 81, 179, 92, 82, 93, 83, 84, 98, 68, 68, 101, 68, 138, 99, 102, 68, 68, 100, 68, 68, 105, 109, 140, 112, 68, 116, 106, 117, 68, 107, 103, 110, 68, 113, 111, 139, 108, 114, 115, 68, 121, 169, 118, 68, 122, 127, 119, 127, 127, 239, 127, 120, 72, 68, 72, 72, 132, 72, 132, 132, 68, 132, 67, 135, 67, 67, 68, 67, 68, 68, 68, 141, 67, 72, 142, 72, 72, 147, 72, 68, 143, 68, 68, 72, 73, 68, 68, 144, 145, 146, 68, 68, 68, 149, 153, 148, 154, 68, 68, 68, 133, 150, 156, 151, 152, 157, 155, 159, 68, 68, 68, 68, 68, 161, 163, 68, 160, 68, 164, 158, 68, 167, 165, 166, 68, 68, 68, 168, 171, 173, 172, 170, 68, 162, 68, 68, 68, 175, 68, 68, 182, 176, 68, 184, 174, 68, 68, 68, 178, 68, 68, 183, 189, 68, 177, 180, 181, 68, 191, 68, 123, 123, 133, 185, 186, 187, 68, 125, 188, 192, 125, 130, 130, 190, 198, 68, 127, 193, 127, 127, 132, 127, 132, 132, 72, 132, 72, 72, 133, 72, 197, 194, 68, 196, 68, 135, 68, 195, 68, 201, 68, 68, 204, 131, 68, 202, 203, 68, 205, 199, 68, 68, 212, 68, 68, 68, 200, 68, 214, 213, 217, 216, 68, 68, 68, 68, 224, 68, 218, 68, 206, 68, 223, 227, 68, 207, 220, 219, 68, 221, 208, 222, 68, 228, 68, 209, 68, 68, 229, 225, 226, 210, 211, 68, 243, 231, 232, 234, 68, 230, 68, 236, 68, 235, 237, 233, 68, 68, 68, 68, 68, 68, 68, 68, 238, 68, 241, 68, 246, 68, 250, 68, 68, 68, 252, 68, 254, 244, 240, 68, 253, 68, 68, 242, 68, 245, 261, 248, 249, 247, 258, 251, 68, 257, 256, 68, 260, 133, 255, 68, 68, 68, 266, 262, 68, 68, 68, 68, 265, 263, 267, 68, 68, 259, 68, 68, 273, 272, 264, 268, 270, 68, 274, 68, 269, 68, 68, 275, 68, 276, 68, 68, 68, 279, 282, 280, 271, 277, 278, 68, 68, 281, 68, 284, 68, 286, 68, 68, 68, 285, 68, 68, 68, 291, 283, 68, 68, 295, 68, 68, 293, 68, 68, 68, 290, 288, 287, 68, 68, 289, 294, 296, 68, 292, 68, 297, 298, 306, 68, 299, 302, 300, 301, 68, 68, 68, 303, 304, 305, 68, 312, 68, 307, 68, 68, 314, 68, 68, 68, 310, 308, 313, 311, 309, 317, 68, 68, 68, 68, 68, 68, 319, 315, 320, 68, 321, 68, 327, 316, 68, 68, 322, 68, 326, 323, 318, 68, 324, 68, 325, 68, 328, 68, 333, 68, 331, 68, 329, 133, 330, 68, 68, 332, 344, 68, 380, 335, 68, 68, 334, 68, 343, 336, 337, 68, 347, 349, 68, 68, 345, 346, 68, 338, 68, 339, 340, 341, 348, 350, 342, 353, 356, 351, 352, 354, 68, 68, 355, 68, 68, 359, 360, 68, 68, 358, 68, 68, 68, 68, 68, 365, 68, 68, 366, 357, 68, 68, 68, 386, 68, 364, 362, 361, 363, 369, 371, 368, 68, 374, 367, 68, 375, 372, 68, 373, 68, 68, 370, 68, 376, 378, 68, 377, 381, 68, 68, 68, 68, 68, 68, 68, 385, 129, 68, 379, 383, 68, 384, 387, 68, 389, 68, 390, 68, 392, 382, 68, 68, 68, 68, 388, 391, 393, 68, 68, 400, 68, 68, 394, 398, 68, 399, 68, 397, 68, 68, 68, 395, 396, 404, 68, 68, 68, 68, 401, 406, 68, 416, 68, 402, 407, 405, 68, 403, 68, 420, 68, 417, 415, 418, 408, 68, 409, 414, 68, 422, 419, 410, 68, 411, 68, 68, 68, 421, 68, 68, 68, 412, 68, 68, 428, 68, 424, 423, 133, 429, 425, 413, 432, 68, 433, 426, 68, 434, 431, 68, 427, 430, 437, 68, 68, 68, 68, 68, 68, 436, 440, 435, 68, 68, 445, 442, 438, 439, 446, 68, 450, 441, 448, 68, 443, 68, 447, 444, 449, 68, 451, 68, 452, 68, 453, 68, 68, 68, 68, 68, 457, 455, 456, 68, 68, 68, 461, 458, 68, 459, 68, 68, 68, 462, 128, 68, 454, 460, 464, 68, 467, 469, 68, 465, 463, 68, 68, 466, 471, 68, 468, 470, 68, 472, 68, 68, 68, 474, 68, 479, 476, 68, 68, 68, 68, 126, 481, 475, 480, 68, 478, 68, 477, 68, 482, 473, 68, 68, 483, 484, 487, 486, 68, 485, 489, 491, 68, 488, 490, 68, 68, 68, 495, 68, 493, 492, 496, 68, 68, 68, 497, 499, 68, 68, 68, 68, 68, 68, 68, 494, 504, 68, 498, 68, 68, 68, 505, 509, 68, 511, 500, 501, 68, 502, 68, 503, 506, 510, 512, 508, 68, 507, 68, 68, 516, 68, 68, 514, 68, 68, 68, 513, 68, 518, 519, 520, 68, 521, 517, 515, 68, 522, 68, 68, 133, 68, 68, 524, 523, 527, 68, 525, 68, 528, 68, 531, 529, 526, 68, 533, 68, 68, 534, 532, 68, 68, 530, 68, 68, 68, 68, 539, 535, 537, 68, 68, 68, 68, 547, 536, 548, 549, 124, 545, 550, 538, 68, 546, 68, 68, 68, 540, 68, 557, 558, 541, 68, 562, 542, 560, 559, 561, 68, 68, 563, 543, 68, 564, 544, 68, 68, 551, 68, 552, 68, 565, 553, 68, 68, 68, 566, 554, 68, 567, 68, 571, 568, 555, 556, 569, 570, 68, 68, 576, 572, 575, 68, 574, 68, 577, 68, 68, 68, 578, 68, 68, 68, 579, 68, 573, 580, 68, 68, 581, 587, 584, 583, 585, 68, 68, 586, 68, 68, 68, 582, 589, 68, 591, 68, 68, 68, 68, 68, 593, 68, 68, 596, 590, 68, 68, 588, 594, 68, 592, 68, 68, 602, 68, 601, 68, 595, 68, 68, 597, 598, 68, 605, 599, 600, 68, 610, 607, 603, 606, 604, 68, 609, 611, 68, 68, 68, 608, 68, 612, 68, 615, 68, 617, 613, 618, 614, 68, 68, 68, 68, 619, 622, 68, 624, 68, 68, 68, 625, 133, 68, 616, 621, 68, 627, 620, 68, 68, 68, 68, 68, 626, 636, 623, 68, 68, 68, 133, 68, 68, 640, 630, 628, 68, 637, 68, 68, 643, 659, 639, 629, 68, 641, 642, 631, 638, 632, 68, 68, 68, 633, 644, 634, 645, 647, 68, 649, 635, 68, 68, 652, 648, 68, 646, 651, 68, 68, 653, 68, 650, 68, 660, 654, 657, 655, 68, 658, 68, 664, 68, 661, 665, 68, 68, 667, 662, 68, 666, 68, 68, 68, 668, 656, 663, 68, 68, 68, 68, 68, 671, 68, 68, 68, 670, 68, 669, 673, 675, 68, 678, 68, 679, 68, 68, 672, 674, 68, 683, 676, 682, 680, 68, 677, 68, 68, 716, 684, 68, 681, 685, 68, 687, 686, 688, 68, 689, 68, 693, 68, 690, 68, 68, 691, 68, 68, 692, 696, 695, 68, 68, 68, 694, 68, 698, 699, 68, 700, 703, 68, 68, 68, 702, 68, 68, 68, 697, 706, 68, 701, 704, 68, 68, 68, 68, 68, 711, 68, 705, 712, 714, 707, 717, 68, 708, 710, 715, 68, 709, 718, 68, 713, 720, 68, 68, 68, 68, 724, 719, 68, 68, 68, 68, 68, 68, 68, 68, 723, 732, 721, 722, 726, 131, 68, 68, 68, 733, 725, 729, 727, 730, 68, 68, 68, 68, 68, 731, 734, 728, 735, 737, 68, 68, 740, 741, 68, 68, 736, 68, 738, 68, 745, 743, 68, 68, 68, 739, 68, 746, 68, 742, 747, 749, 68, 68, 68, 68, 68, 744, 748, 752, 754, 751, 68, 68, 750, 68, 756, 68, 68, 68, 68, 68, 753, 68, 757, 755, 68, 68, 758, 764, 760, 68, 759, 68, 68, 68, 68, 848, 761, 763, 767, 762, 765, 768, 770, 68, 766, 769, 68, 68, 772, 773, 68, 68, 771, 774, 68, 68, 778, 68, 779, 68, 777, 68, 68, 776, 780, 68, 775, 781, 68, 782, 68, 68, 787, 786, 783, 784, 788, 68, 68, 68, 68, 68, 68, 789, 790, 785, 796, 68, 791, 68, 68, 68, 68, 792, 68, 793, 68, 794, 795, 68, 68, 68, 801, 68, 797, 799, 805, 68, 798, 68, 802, 800, 807, 68, 809, 68, 806, 803, 808, 811, 68, 68, 810, 813, 68, 804, 68, 815, 68, 68, 68, 814, 68, 68, 68, 817, 68, 820, 819, 68, 818, 812, 824, 68, 68, 822, 825, 68, 68, 816, 823, 68, 821, 826, 827, 68, 68, 831, 68, 68, 68, 68, 68, 829, 828, 834, 68, 830, 68, 68, 68, 68, 838, 68, 68, 68, 68, 68, 68, 851, 832, 68, 835, 843, 833, 844, 836, 837, 839, 845, 68, 68, 841, 68, 68, 849, 853, 850, 840, 842, 846, 847, 68, 68, 68, 852, 68, 68, 68, 68, 68, 856, 68, 859, 68, 68, 68, 68, 68, 68, 68, 129, 855, 865, 862, 857, 866, 68, 858, 854, 860, 863, 867, 861, 864, 868, 68, 68, 68, 68, 876, 872, 68, 874, 871, 869, 875, 873, 68, 877, 68, 68, 870, 68, 68, 68, 881, 68, 878, 68, 882, 68, 883, 68, 68, 68, 68, 68, 879, 68, 889, 68, 888, 68, 880, 68, 884, 68, 885, 68, 68, 68, 897, 68, 887, 894, 890, 899, 891, 68, 886, 68, 892, 68, 898, 896, 893, 68, 903, 68, 895, 68, 901, 68, 900, 68, 904, 905, 907, 68, 68, 68, 910, 68, 911, 909, 68, 902, 68, 68, 912, 68, 913, 68, 68, 906, 68, 908, 68, 914, 68, 915, 68, 916, 921, 68, 68, 919, 918, 68, 923, 917, 68, 920, 68, 68, 68, 68, 68, 926, 68, 931, 928, 68, 68, 925, 922, 68, 68, 68, 68, 935, 68, 68, 924, 927, 929, 930, 936, 68, 937, 940, 68, 68, 932, 68, 939, 933, 934, 941, 938, 68, 943, 68, 68, 68, 68, 949, 946, 68, 68, 947, 68, 942, 950, 944, 68, 68, 68, 951, 954, 952, 955, 948, 945, 68, 956, 68, 68, 68, 68, 953, 68, 68, 68, 960, 957, 68, 962, 963, 68, 68, 964, 68, 68, 68, 68, 958, 971, 959, 68, 68, 965, 68, 68, 961, 68, 969, 968, 970, 68, 966, 68, 967, 68, 977, 68, 976, 978, 981, 972, 973, 980, 68, 68, 974, 68, 975, 68, 982, 979, 68, 68, 989, 68, 990, 68, 984, 68, 68, 68, 986, 983, 988, 987, 68, 68, 68, 68, 68, 985, 68, 997, 992, 68, 68, 1000, 68, 68, 991, 994, 68, 1002, 993, 1003, 998, 996, 68, 68, 68, 68, 1005, 995, 999, 1004, 1001, 68, 68, 1009, 68, 1007, 1006, 1010, 68, 1013, 68, 1008, 68, 68, 68, 68, 68, 68, 68, 1017, 68, 1018, 1011, 1019, 68, 1020, 1014, 1012, 68, 68, 1015, 1024, 68, 1016, 68, 68, 1028, 1021, 68, 1023, 1022, 68, 68, 1025, 128, 68, 1026, 1027, 1032, 68, 1029, 1031, 1033, 68, 68, 1035, 68, 68, 68, 68, 1030, 68, 68, 1034, 1037, 68, 68, 1038, 68, 1036, 1041, 68, 68, 1039, 68, 1042, 1047, 1040, 1046, 68, 68, 68, 68, 1045, 1051, 68, 1053, 68, 1043, 1054, 68, 1044, 1055, 1048, 1050, 68, 1057, 68, 1056, 1049, 68, 68, 1052, 1059, 68, 1061, 68, 1063, 68, 68, 1062, 68, 68, 68, 68, 68, 68, 68, 1058, 1071, 68, 68, 1073, 1064, 68, 1065, 68, 68, 68, 1060, 1066, 1076, 68, 1067, 1068, 1069, 1075, 1070, 68, 68, 68, 1077, 68, 1072, 1074, 1078, 68, 1081, 1079, 68, 68, 1085, 68, 68, 1080, 1084, 68, 68, 1083, 1087, 1088, 68, 1089, 68, 68, 68, 1082, 68, 68, 1086, 68, 68, 1090, 1091, 1095, 1097, 68, 1100, 68, 1092, 1096, 1098, 1094, 68, 1093, 68, 1099, 1103, 1104, 68, 1105, 1107, 68, 68, 1106, 68, 68, 68, 1110, 1102, 68, 68, 68, 68, 1101, 1112, 68, 68, 1115, 1109, 1117, 68, 1111, 68, 1113, 68, 126, 68, 68, 1108, 1119, 1120, 68, 1118, 1121, 68, 68, 1125, 68, 1116, 68, 1114, 1122, 1123, 68, 68, 1124, 1128, 68, 68, 68, 68, 68, 68, 68, 1133, 1126, 1127, 68, 1130, 1135, 68, 1137, 1134, 68, 68, 68, 68, 1136, 1129, 1131, 68, 1132, 1138, 1144, 1140, 1141, 1142, 68, 68, 68, 68, 1139, 68, 1146, 1143, 68, 68, 1147, 1148, 68, 68, 1151, 68, 1149, 68, 68, 1145, 68, 68, 68, 1150, 68, 68, 68, 1159, 68, 1153, 1154, 1158, 1155, 68, 68, 68, 1152, 1156, 1163, 68, 1165, 1157, 1160, 1161, 68, 68, 1166, 1162, 68, 68, 1167, 68, 1171, 1168, 1164, 68, 68, 68, 68, 124, 1172, 1175, 68, 68, 68, 68, 68, 1169, 1179, 68, 68, 1170, 1174, 68, 1177, 1173, 1176, 1178, 1180, 68, 68, 68, 1181, 1185, 1182, 1183, 1184, 68, 68, 68, 68, 68, 68, 1187, 1188, 1192, 68, 1186, 1194, 68, 1191, 1193, 68, 68, 1189, 68, 68, 1196, 1199, 68, 1197, 68, 68, 68, 68, 1190, 1202, 68, 68, 1198, 1200, 1195, 1201, 68, 1203, 68, 1204, 1206, 68, 68, 1205, 68, 68, 68, 1208, 68, 1207, 1211, 68, 1214, 68, 1209, 68, 68, 68, 68, 1210, 1215, 68, 1217, 1216, 1212, 68, 68, 1213, 68, 68, 1225, 68, 68, 68, 68, 1226, 68, 1219, 68, 1229, 1223, 1218, 1230, 68, 1221, 1220, 1227, 1222, 68, 1228, 1224, 1231, 68, 1233, 68, 1234, 68, 68, 1236, 68, 68, 1232, 1237, 68, 68, 1240, 68, 68, 68, 1239, 1242, 68, 68, 68, 1244, 68, 1235, 68, 1245, 1238, 68, 1246, 1248, 68, 1250, 68, 1241, 1251, 68, 68, 1243, 68, 1249, 68, 1253, 68, 1247, 68, 1254, 68, 68, 68, 1256, 1252, 68, 68, 1260, 1255, 68, 68, 1265, 68, 1258, 68, 1262, 68, 1257, 1263, 68, 1261, 68, 1259, 1266, 1264, 68, 1269, 68, 1270, 1273, 1268, 68, 1267, 68, 68, 1271, 1276, 68, 68, 1274, 1275, 1277, 68, 1272, 1278, 68, 68, 1280, 68, 68, 68, 68, 1279, 68, 1284, 1285, 68, 1287, 68, 1286, 1281, 68, 68, 1282, 68, 68, 1288, 68, 1290, 1283, 1293, 68, 1292, 68, 68, 68, 68, 1294, 68, 1296, 1298, 68, 1289, 68, 1297, 1291, 68, 1299, 1301, 1295, 1300, 68, 1302, 68, 1303, 68, 1304, 68, 1305, 68, 68, 68, 68, 1307, 68, 1308, 1309, 68, 68, 1310, 1311, 68, 68, 1314, 68, 1306, 1312, 1313, 1315, 68, 1316, 68, 68, 1317, 68, 68, 68, 68, 68, 1324, 68, 68, 1322, 68, 68, 68, 1319, 1320, 1321, 68, 1318, 68, 1325, 68, 68, 68, 1334, 68, 1323, 1332, 1333, 68, 1328, 68, 1327, 1330, 68, 1326, 68, 1329, 68, 1331, 68, 68, 68, 1342, 1343, 68, 68, 1339, 68, 1335, 68, 68, 1336, 1337, 68, 1344, 1338, 68, 68, 1341, 1340, 1350, 68, 1345, 68, 68, 1351, 68, 1346, 1347, 1348, 68, 68, 1352, 68, 68, 1349, 1357, 1358, 68, 68, 1361, 68, 1353, 68, 1354, 1355, 1363, 68, 68, 1359, 68, 1356, 1364, 68, 68, 1365, 68, 1360, 68, 1367, 68, 1368, 1362, 1369, 68, 68, 68, 68, 68, 68, 1366, 1373, 1371, 1374, 1376, 68, 1377, 68, 1378, 1370, 1372, 1388, 1375, 68, 1379, 68, 1380, 68, 1381, 68, 68, 68, 68, 68, 1382, 68, 1383, 68, 1384, 68, 68, 68, 1387, 1386, 1389, 68, 68, 1385, 68, 1391, 68, 1393, 1390, 68, 1392, 1394, 1397, 68, 68, 68, 1399, 68, 68, 68, 68, 68, 1400, 1395, 1398, 1401, 68, 1402, 1396, 1404, 68, 68, 1403, 68, 1406, 68, 1408, 68, 1407, 1409, 68, 1405, 1410, 68, 1411, 1412, 1413, 1414, 68, 68, 68, 68, 68, 1415, 68, 68, 1416, 68, 68, 1419, 1423, 68, 68, 68, 68, 68, 1427, 68, 68, 1417, 1418, 1425, 1422, 1420, 68, 68, 68, 1421, 68, 1429, 68, 1424, 68, 1426, 1428, 1432, 68, 1430, 68, 1434, 1436, 68, 1437, 68, 68, 68, 68, 1443, 1433, 68, 1435, 1431, 1438, 1439, 1442, 1441, 68, 1440, 68, 68, 68, 68, 68, 1445, 1450, 1444, 1448, 68, 1446, 68, 1452, 68, 68, 68, 1455, 68, 68, 68, 68, 68, 1449, 1447, 68, 68, 68, 1456, 68, 1459, 1454, 1460, 68, 1453, 1451, 1457, 1463, 68, 68, 1458, 1465, 68, 68, 1464, 1462, 1468, 68, 68, 1466, 68, 1461, 1469, 68, 68, 1467, 1473, 68, 68, 68, 1471, 68, 1470, 1475, 1477, 68, 1474, 1480, 68, 68, 1472, 1481, 68, 68, 68, 1485, 68, 1610, 1476, 1484, 1482, 68, 1478, 1479, 1486, 68, 1488, 1483, 1487, 68, 1489, 68, 68, 1490, 1491, 68, 68, 68, 1494, 68, 68, 1492, 68, 68, 68, 1493, 68, 1495, 1496, 68, 68, 68, 1504, 68, 68, 1502, 68, 68, 1497, 68, 1498, 1505, 68, 1499, 1500, 1506, 68, 68, 68, 1509, 1501, 1503, 1507, 1508, 68, 1511, 68, 1510, 68, 68, 68, 1512, 1513, 1514, 1515, 1516, 1518, 68, 1519, 68, 1520, 68, 68, 68, 1522, 1523, 68, 1517, 68, 68, 68, 68, 68, 1525, 1521, 68, 1529, 68, 68, 68, 1524, 68, 68, 68, 68, 1537, 68, 68, 1526, 1527, 68, 1528, 1531, 68, 68, 1539, 1533, 1530, 1534, 1536, 1532, 68, 1538, 68, 68, 1543, 1540, 68, 1535, 1542, 68, 1547, 1541, 1548, 68, 68, 68, 1544, 68, 1545, 68, 68, 68, 68, 68, 68, 1546, 68, 1549, 68, 68, 1560, 1557, 1550, 1551, 1552, 1554, 1555, 68, 68, 68, 1553, 68, 1558, 1556, 1561, 68, 1562, 1559, 1565, 68, 1563, 1566, 68, 68, 68, 68, 1567, 1564, 1570, 68, 68, 68, 68, 68, 68, 1573, 68, 68, 1577, 68, 68, 68, 68, 1568, 1569, 1572, 1578, 1582, 1571, 1576, 1574, 68, 1580, 1575, 68, 1581, 68, 68, 1579, 1584, 1585, 68, 68, 1583, 1586, 68, 68, 68, 68, 1587, 68, 1589, 68, 1591, 68, 1592, 68, 1595, 68, 68, 68, 1598, 1599, 68, 1588, 68, 1590, 1601, 68, 1602, 68, 1593, 1600, 1594, 68, 68, 68, 1596, 1597, 68, 1604, 1603, 68, 1610, 1605, 1608, 68, 1609, 68, 1610, 1610, 1610, 1610, 1610, 1610, 1606, 1610, 1610, 1610, 1610, 1610, 1607, 40, 40, 40, 40, 40, 40, 40, 45, 45, 45, 45, 45, 45, 45, 50, 50, 50, 50, 50, 50, 50, 56, 56, 56, 56, 56, 56, 56, 61, 61, 61, 61, 61, 61, 61, 71, 71, 1610, 71, 71, 71, 71, 123, 123, 1610, 1610, 1610, 123, 123, 125, 125, 1610, 1610, 125, 1610, 125, 127, 1610, 1610, 1610, 1610, 1610, 127, 130, 130, 1610, 1610, 1610, 130, 130, 132, 1610, 1610, 1610, 1610, 1610, 132, 134, 134, 1610, 134, 134, 134, 134, 72, 72, 1610, 72, 72, 72, 72, 13, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610 } ; static yyconst flex_int16_t yy_chk[3241] = { 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, 3, 3, 3, 4, 4, 4, 49, 5, 5, 49, 3, 5, 15, 4, 6, 6, 15, 5, 6, 9, 9, 9, 151, 33, 6, 7, 7, 7, 7, 9, 7, 10, 10, 10, 44, 44, 7, 8, 8, 8, 8, 10, 8, 21, 33, 151, 21, 21, 8, 11, 11, 11, 11, 11, 11, 1616, 20, 29, 20, 20, 11, 20, 29, 24, 21, 25, 20, 24, 28, 11, 12, 12, 12, 12, 12, 12, 74, 22, 22, 74, 25, 12, 69, 28, 30, 22, 69, 24, 26, 26, 12, 19, 22, 19, 19, 66, 19, 26, 110, 30, 27, 19, 19, 23, 27, 60, 60, 27, 23, 66, 31, 31, 23, 110, 27, 23, 27, 23, 23, 31, 75, 32, 32, 34, 75, 31, 32, 76, 35, 31, 36, 77, 34, 35, 77, 36, 37, 37, 34, 37, 101, 34, 32, 35, 38, 36, 35, 76, 34, 36, 36, 39, 39, 101, 37, 173, 39, 55, 38, 55, 55, 173, 55, 38, 63, 78, 63, 63, 65, 63, 65, 65, 79, 65, 68, 63, 68, 68, 82, 68, 80, 81, 83, 78, 68, 71, 79, 71, 71, 84, 71, 85, 80, 86, 84, 71, 71, 87, 88, 81, 82, 83, 89, 90, 91, 85, 89, 84, 90, 94, 97, 92, 625, 86, 92, 87, 88, 92, 91, 93, 95, 98, 104, 96, 93, 95, 96, 103, 94, 99, 96, 92, 100, 99, 97, 98, 102, 105, 106, 100, 103, 105, 104, 102, 107, 95, 108, 109, 111, 107, 112, 114, 113, 107, 115, 115, 106, 113, 116, 118, 109, 117, 119, 114, 119, 120, 108, 111, 112, 121, 120, 122, 124, 124, 132, 115, 116, 117, 140, 126, 118, 121, 126, 131, 131, 119, 140, 139, 128, 122, 128, 128, 133, 128, 133, 133, 134, 133, 134, 134, 136, 134, 139, 136, 137, 138, 141, 134, 142, 137, 138, 143, 149, 144, 145, 130, 143, 143, 144, 145, 146, 141, 146, 148, 148, 150, 154, 153, 142, 152, 150, 149, 153, 152, 155, 157, 156, 159, 159, 158, 154, 160, 146, 147, 158, 162, 161, 147, 156, 155, 162, 156, 147, 157, 163, 163, 167, 147, 177, 166, 164, 160, 161, 147, 147, 164, 177, 165, 166, 168, 169, 164, 165, 170, 168, 169, 171, 167, 170, 172, 174, 171, 175, 176, 178, 180, 172, 179, 175, 181, 180, 182, 183, 184, 185, 186, 185, 183, 187, 178, 174, 188, 186, 187, 189, 176, 193, 179, 193, 182, 182, 181, 191, 184, 190, 190, 189, 191, 192, 194, 188, 195, 196, 192, 197, 193, 199, 198, 200, 197, 196, 194, 198, 202, 201, 191, 203, 204, 204, 203, 195, 199, 201, 208, 205, 209, 200, 205, 206, 206, 207, 207, 210, 211, 212, 210, 213, 211, 202, 208, 209, 213, 214, 212, 215, 215, 216, 217, 218, 219, 220, 216, 217, 221, 222, 222, 214, 223, 224, 226, 225, 229, 224, 231, 226, 228, 221, 219, 218, 232, 227, 220, 225, 227, 230, 223, 233, 228, 229, 235, 235, 229, 232, 230, 231, 237, 238, 234, 233, 234, 234, 236, 240, 240, 236, 239, 242, 242, 241, 243, 244, 238, 237, 241, 239, 237, 245, 246, 247, 249, 250, 245, 248, 247, 243, 248, 251, 248, 254, 252, 244, 255, 256, 249, 252, 251, 250, 246, 253, 250, 257, 250, 258, 253, 259, 258, 262, 256, 261, 254, 263, 255, 265, 264, 257, 262, 296, 296, 259, 266, 268, 258, 260, 261, 260, 260, 272, 265, 267, 269, 270, 263, 264, 267, 260, 273, 260, 260, 260, 266, 268, 260, 271, 274, 269, 270, 272, 271, 274, 273, 275, 276, 277, 277, 278, 277, 276, 279, 281, 280, 282, 283, 282, 284, 285, 283, 275, 286, 287, 302, 302, 290, 281, 279, 278, 280, 286, 287, 285, 288, 290, 284, 289, 291, 288, 292, 289, 294, 291, 286, 293, 292, 294, 295, 293, 297, 298, 300, 299, 301, 297, 304, 308, 301, 129, 303, 295, 299, 309, 300, 303, 305, 305, 307, 307, 310, 309, 298, 311, 313, 314, 315, 304, 308, 310, 317, 316, 318, 319, 320, 311, 316, 318, 317, 321, 315, 325, 322, 323, 313, 314, 322, 324, 326, 329, 328, 319, 324, 332, 330, 334, 320, 325, 323, 330, 321, 333, 333, 331, 330, 329, 331, 326, 327, 327, 328, 335, 335, 332, 327, 336, 327, 337, 338, 339, 334, 340, 341, 342, 327, 343, 344, 341, 347, 337, 336, 345, 342, 338, 327, 345, 348, 346, 339, 349, 347, 344, 346, 340, 343, 350, 350, 351, 352, 354, 353, 356, 349, 353, 348, 355, 358, 357, 355, 351, 352, 357, 357, 361, 354, 359, 359, 356, 361, 358, 356, 360, 360, 362, 362, 363, 363, 364, 365, 366, 371, 367, 364, 368, 366, 367, 369, 370, 368, 372, 369, 373, 370, 374, 372, 377, 373, 127, 375, 365, 371, 375, 376, 376, 378, 379, 375, 374, 380, 378, 375, 380, 381, 377, 379, 382, 381, 383, 384, 385, 382, 386, 387, 384, 392, 388, 389, 387, 125, 389, 383, 388, 393, 386, 390, 385, 391, 390, 381, 394, 395, 391, 392, 395, 394, 396, 393, 397, 398, 399, 396, 397, 397, 398, 400, 401, 403, 400, 399, 401, 401, 402, 404, 402, 404, 405, 406, 407, 408, 409, 410, 415, 400, 409, 411, 403, 412, 413, 421, 410, 414, 416, 416, 405, 406, 414, 407, 417, 408, 411, 415, 417, 413, 418, 412, 419, 420, 421, 422, 423, 419, 425, 424, 428, 418, 426, 423, 424, 425, 427, 426, 422, 420, 429, 427, 430, 431, 432, 435, 444, 429, 428, 432, 433, 430, 434, 433, 436, 436, 434, 431, 439, 438, 440, 441, 439, 436, 438, 442, 435, 443, 447, 453, 450, 444, 440, 442, 454, 460, 459, 455, 453, 441, 454, 455, 123, 447, 456, 443, 445, 450, 458, 456, 463, 445, 465, 458, 459, 445, 461, 463, 445, 461, 460, 462, 462, 464, 464, 445, 469, 465, 445, 457, 470, 457, 67, 457, 466, 466, 457, 467, 468, 473, 467, 457, 471, 468, 472, 472, 469, 457, 457, 470, 471, 474, 475, 477, 473, 476, 476, 475, 477, 478, 479, 480, 481, 479, 478, 482, 483, 480, 485, 474, 481, 484, 487, 482, 488, 485, 484, 486, 486, 488, 487, 489, 491, 492, 483, 491, 493, 493, 494, 497, 495, 498, 499, 495, 500, 501, 498, 492, 502, 503, 489, 495, 504, 494, 505, 506, 504, 507, 503, 508, 497, 510, 511, 499, 500, 509, 507, 501, 502, 515, 512, 509, 505, 508, 506, 512, 511, 513, 516, 514, 517, 510, 513, 514, 518, 517, 519, 519, 515, 520, 516, 522, 521, 523, 520, 521, 524, 525, 526, 526, 528, 524, 527, 527, 529, 518, 523, 530, 529, 522, 531, 532, 534, 535, 536, 528, 534, 525, 537, 538, 553, 61, 539, 540, 538, 532, 530, 541, 535, 546, 542, 541, 553, 537, 531, 533, 539, 540, 533, 536, 533, 545, 543, 544, 533, 542, 533, 543, 544, 547, 546, 533, 548, 558, 549, 545, 552, 543, 548, 549, 550, 550, 551, 547, 554, 554, 550, 551, 550, 555, 552, 556, 558, 557, 555, 559, 559, 560, 562, 556, 564, 560, 563, 562, 565, 563, 550, 557, 566, 567, 569, 568, 571, 566, 573, 576, 570, 565, 578, 564, 568, 570, 572, 573, 577, 574, 579, 611, 567, 569, 574, 579, 571, 578, 576, 580, 572, 582, 581, 611, 580, 590, 577, 581, 583, 583, 582, 584, 588, 586, 589, 588, 584, 586, 586, 587, 587, 591, 592, 587, 591, 590, 593, 594, 595, 589, 596, 593, 594, 597, 595, 598, 598, 600, 599, 597, 602, 601, 603, 592, 601, 604, 596, 599, 606, 605, 608, 607, 610, 606, 609, 600, 607, 609, 602, 612, 614, 603, 605, 610, 612, 604, 613, 616, 608, 615, 615, 613, 618, 617, 619, 614, 620, 622, 619, 621, 623, 626, 627, 628, 618, 629, 616, 617, 621, 56, 629, 637, 632, 630, 620, 626, 622, 627, 630, 631, 633, 635, 634, 628, 631, 623, 632, 634, 636, 639, 637, 638, 638, 640, 633, 641, 635, 642, 642, 640, 643, 644, 645, 636, 647, 643, 646, 639, 644, 646, 648, 650, 649, 651, 652, 641, 645, 649, 651, 648, 653, 655, 647, 654, 653, 656, 657, 658, 659, 660, 650, 661, 654, 652, 663, 662, 655, 661, 657, 664, 656, 667, 669, 745, 668, 745, 658, 660, 664, 659, 662, 666, 668, 670, 663, 667, 666, 672, 670, 671, 673, 674, 669, 671, 671, 683, 675, 676, 676, 677, 674, 675, 678, 673, 677, 680, 672, 678, 679, 679, 681, 682, 684, 683, 680, 681, 685, 684, 686, 688, 687, 685, 691, 686, 687, 682, 691, 689, 688, 692, 693, 694, 695, 688, 696, 688, 697, 688, 689, 698, 699, 701, 696, 706, 692, 694, 700, 700, 693, 705, 697, 695, 702, 702, 705, 704, 701, 698, 704, 707, 707, 708, 706, 709, 709, 699, 710, 711, 711, 712, 713, 710, 714, 715, 717, 713, 716, 716, 715, 718, 714, 708, 721, 719, 726, 718, 722, 721, 723, 712, 719, 722, 717, 723, 724, 725, 727, 728, 728, 724, 729, 730, 732, 726, 725, 731, 733, 727, 736, 734, 731, 735, 735, 737, 738, 748, 739, 750, 740, 748, 729, 746, 732, 740, 730, 742, 733, 734, 736, 742, 742, 743, 738, 744, 749, 746, 750, 747, 737, 739, 743, 744, 747, 751, 752, 749, 753, 754, 755, 756, 759, 753, 757, 756, 758, 761, 760, 765, 762, 763, 769, 51, 752, 762, 759, 754, 763, 764, 755, 751, 757, 760, 764, 758, 761, 765, 766, 767, 768, 773, 773, 769, 770, 771, 768, 766, 772, 770, 771, 775, 775, 772, 767, 776, 777, 778, 779, 781, 776, 782, 779, 779, 780, 780, 783, 784, 785, 787, 777, 788, 786, 791, 785, 789, 778, 786, 781, 790, 782, 792, 793, 794, 794, 796, 784, 791, 787, 796, 788, 795, 783, 797, 789, 798, 795, 793, 790, 799, 800, 800, 792, 801, 798, 802, 797, 803, 801, 802, 804, 806, 808, 809, 809, 804, 810, 808, 819, 799, 818, 810, 812, 812, 814, 814, 820, 803, 816, 806, 822, 816, 817, 817, 821, 818, 823, 823, 824, 821, 820, 825, 825, 819, 826, 822, 827, 828, 829, 830, 832, 828, 834, 834, 830, 833, 835, 827, 824, 836, 837, 838, 841, 838, 842, 839, 826, 829, 832, 833, 839, 846, 840, 843, 843, 844, 835, 840, 842, 836, 837, 844, 841, 847, 847, 848, 849, 850, 855, 851, 850, 852, 853, 850, 851, 846, 852, 848, 854, 856, 859, 853, 856, 854, 857, 850, 849, 858, 858, 857, 860, 861, 862, 855, 863, 864, 867, 862, 859, 866, 864, 865, 865, 868, 866, 869, 870, 871, 872, 860, 873, 861, 874, 875, 867, 873, 876, 863, 880, 871, 870, 872, 879, 868, 878, 869, 881, 880, 885, 879, 880, 885, 874, 875, 884, 884, 886, 876, 887, 878, 888, 886, 881, 889, 890, 892, 891, 893, 893, 888, 892, 894, 895, 890, 887, 891, 890, 896, 897, 898, 899, 901, 889, 900, 900, 895, 908, 902, 904, 905, 907, 894, 897, 904, 906, 896, 907, 901, 899, 906, 910, 915, 914, 909, 898, 902, 908, 905, 909, 911, 914, 916, 911, 910, 915, 917, 918, 919, 911, 920, 922, 918, 923, 924, 928, 925, 923, 926, 924, 916, 925, 929, 926, 919, 917, 927, 931, 920, 930, 930, 922, 932, 933, 934, 927, 935, 929, 928, 934, 936, 931, 50, 937, 932, 933, 938, 938, 935, 937, 939, 939, 941, 942, 942, 943, 945, 944, 936, 946, 947, 941, 944, 948, 949, 945, 951, 943, 948, 950, 954, 946, 956, 949, 953, 947, 952, 952, 955, 953, 958, 951, 957, 957, 959, 959, 949, 960, 960, 950, 961, 954, 956, 962, 964, 961, 962, 955, 965, 964, 958, 966, 967, 968, 968, 970, 966, 969, 969, 971, 970, 972, 973, 974, 975, 977, 965, 976, 976, 978, 978, 971, 979, 971, 983, 981, 986, 967, 971, 982, 982, 972, 973, 974, 981, 975, 984, 985, 988, 983, 989, 977, 979, 984, 987, 987, 985, 993, 991, 992, 994, 998, 986, 991, 992, 996, 989, 994, 995, 995, 996, 997, 999, 1000, 988, 1001, 1002, 993, 1005, 1003, 997, 998, 1002, 1004, 1004, 1006, 1006, 999, 1003, 1005, 1001, 1007, 1000, 1008, 1005, 1009, 1010, 1010, 1011, 1012, 1009, 1013, 1011, 1011, 1012, 1014, 1015, 1008, 1016, 1017, 1018, 1015, 1007, 1017, 1019, 1021, 1020, 1014, 1022, 1023, 1016, 1020, 1018, 1022, 45, 1025, 1031, 1013, 1025, 1026, 1026, 1023, 1027, 1027, 1028, 1031, 1029, 1021, 1030, 1019, 1028, 1029, 1034, 1036, 1030, 1037, 1037, 1038, 1039, 1042, 1040, 1041, 1045, 1042, 1034, 1036, 1043, 1039, 1044, 1047, 1047, 1043, 1048, 1044, 1049, 1050, 1045, 1038, 1040, 1055, 1041, 1047, 1056, 1049, 1050, 1052, 1052, 1056, 1057, 1063, 1048, 1058, 1058, 1055, 1059, 1062, 1059, 1060, 1060, 1064, 1064, 1065, 1062, 1066, 1067, 1057, 1068, 1070, 1069, 1063, 1074, 1073, 1072, 1073, 1079, 1066, 1067, 1072, 1068, 1077, 1075, 1080, 1065, 1069, 1078, 1078, 1080, 1070, 1074, 1075, 1081, 1082, 1081, 1077, 1083, 1084, 1082, 1085, 1086, 1083, 1079, 1087, 1089, 1086, 1090, 40, 1087, 1091, 1091, 1102, 1092, 1093, 1094, 1084, 1094, 1095, 1096, 1085, 1090, 1101, 1093, 1089, 1092, 1093, 1095, 1098, 1099, 1103, 1096, 1102, 1098, 1099, 1101, 1105, 1107, 1108, 1109, 1110, 1112, 1105, 1107, 1111, 1111, 1103, 1113, 1113, 1110, 1112, 1114, 1115, 1108, 1116, 1117, 1115, 1118, 1118, 1116, 1129, 1119, 1122, 1125, 1109, 1123, 1123, 1131, 1117, 1119, 1114, 1122, 1124, 1124, 1126, 1125, 1127, 1127, 1130, 1126, 1132, 1133, 1134, 1130, 1138, 1129, 1133, 1135, 1136, 1136, 1131, 1140, 1137, 1139, 1141, 1132, 1137, 1143, 1139, 1138, 1134, 1144, 1145, 1135, 1146, 1147, 1149, 1149, 1150, 1151, 14, 1150, 1152, 1141, 1153, 1153, 1146, 1140, 1154, 1154, 1144, 1143, 1151, 1145, 1156, 1152, 1147, 1155, 1155, 1157, 1157, 1158, 1158, 1159, 1160, 1160, 1162, 1156, 1161, 1161, 1164, 1165, 1165, 1166, 1169, 1164, 1167, 1167, 1168, 1173, 1169, 1170, 1159, 1177, 1170, 1162, 1171, 1171, 1172, 1172, 1174, 1174, 1166, 1176, 1176, 1179, 1168, 1182, 1173, 1178, 1178, 1180, 1171, 1181, 1179, 1183, 1184, 1185, 1181, 1177, 1186, 1187, 1185, 1180, 1188, 1189, 1190, 1193, 1183, 1200, 1187, 1190, 1182, 1188, 1191, 1186, 1195, 1184, 1191, 1189, 1196, 1196, 1201, 1197, 1200, 1195, 1204, 1193, 1197, 1198, 1198, 1204, 1203, 1208, 1201, 1203, 1205, 1205, 1198, 1207, 1207, 1209, 1209, 1210, 1211, 1212, 1215, 1208, 1213, 1213, 1215, 1216, 1217, 1217, 1216, 1210, 1218, 1219, 1211, 1220, 1221, 1218, 1222, 1220, 1212, 1223, 1224, 1222, 1226, 1227, 1223, 1228, 1224, 1229, 1227, 1229, 1246, 1219, 1238, 1228, 1221, 1232, 1232, 1238, 1226, 1235, 1235, 1239, 1239, 1241, 1241, 1243, 1244, 1244, 1245, 1247, 1243, 1254, 1246, 1252, 1247, 1249, 1249, 1253, 1252, 1253, 1259, 1255, 1256, 1256, 1245, 1254, 1255, 1257, 1257, 1258, 1258, 1260, 1259, 1261, 1262, 1263, 1264, 1265, 1266, 1266, 1268, 1264, 1267, 1269, 1271, 1261, 1262, 1263, 1270, 1260, 1272, 1267, 1273, 1274, 1275, 1276, 1276, 1265, 1274, 1275, 1279, 1270, 1281, 1269, 1272, 1280, 1268, 1282, 1271, 1283, 1273, 1284, 1285, 1286, 1286, 1288, 1288, 1289, 1283, 1290, 1279, 1291, 1292, 1280, 1281, 1293, 1289, 1282, 1294, 1297, 1285, 1284, 1295, 1295, 1290, 1298, 1299, 1296, 1301, 1291, 1292, 1293, 1296, 1304, 1297, 1305, 1307, 1294, 1305, 1306, 1306, 1308, 1310, 1310, 1298, 1311, 1299, 1301, 1312, 1312, 1318, 1307, 1319, 1304, 1313, 1313, 1317, 1317, 1320, 1308, 1321, 1319, 1322, 1320, 1311, 1321, 1323, 1325, 1326, 1328, 1327, 1342, 1318, 1326, 1323, 1327, 1329, 1329, 1330, 1330, 1331, 1322, 1325, 1342, 1328, 1331, 1332, 1332, 1333, 1333, 1335, 1338, 1336, 1337, 1339, 1335, 1336, 1340, 1337, 1341, 1338, 1345, 1346, 1344, 1341, 1340, 1344, 1347, 1349, 1339, 1351, 1346, 1348, 1348, 1345, 1352, 1347, 1349, 1353, 1353, 1356, 1354, 1355, 1355, 1359, 1360, 1357, 1365, 1356, 1351, 1354, 1357, 1371, 1359, 1352, 1362, 1362, 1372, 1360, 1366, 1366, 1367, 1368, 1368, 1367, 1369, 1369, 1365, 1370, 1370, 1371, 1372, 1373, 1374, 1374, 1375, 1378, 1373, 1381, 1375, 1382, 1383, 1378, 1384, 1385, 1382, 1386, 1386, 1387, 1388, 1389, 1390, 1390, 1393, 1391, 1381, 1381, 1388, 1385, 1383, 1392, 1394, 1395, 1384, 1396, 1392, 1407, 1387, 1400, 1389, 1391, 1395, 1398, 1393, 1402, 1398, 1401, 1401, 1402, 1403, 1405, 1406, 1412, 1412, 1396, 1411, 1400, 1394, 1403, 1405, 1411, 1407, 1413, 1406, 1415, 1416, 1417, 1418, 1419, 1415, 1420, 1413, 1418, 1421, 1416, 1420, 1422, 1422, 1424, 1425, 1426, 1426, 1427, 1428, 1429, 1430, 1419, 1417, 1432, 1433, 1431, 1427, 1438, 1430, 1425, 1431, 1439, 1424, 1421, 1428, 1434, 1434, 1435, 1429, 1437, 1437, 1442, 1435, 1433, 1440, 1440, 1443, 1438, 1444, 1432, 1441, 1441, 1446, 1439, 1445, 1445, 1447, 1448, 1443, 1454, 1442, 1447, 1449, 1450, 1446, 1451, 1451, 1449, 1444, 1453, 1453, 1456, 1457, 1458, 1458, 13, 1448, 1457, 1454, 1461, 1450, 1450, 1459, 1459, 1461, 1456, 1460, 1460, 1462, 1462, 1464, 1464, 1466, 1466, 1467, 1470, 1471, 1471, 1475, 1467, 1472, 1474, 1476, 1470, 1477, 1472, 1474, 1478, 1479, 1482, 1483, 1483, 1493, 1479, 1497, 1484, 1475, 1495, 1476, 1484, 1499, 1477, 1477, 1488, 1488, 1498, 1490, 1493, 1478, 1482, 1490, 1492, 1492, 1496, 1496, 1495, 1502, 1500, 1501, 1497, 1498, 1499, 1500, 1501, 1503, 1503, 1505, 1505, 1507, 1507, 1509, 1510, 1510, 1512, 1513, 1502, 1514, 1515, 1512, 1516, 1521, 1514, 1509, 1517, 1521, 1522, 1525, 1523, 1513, 1524, 1526, 1527, 1528, 1529, 1529, 1533, 1515, 1516, 1531, 1517, 1523, 1530, 1534, 1531, 1525, 1522, 1526, 1528, 1524, 1532, 1530, 1536, 1538, 1535, 1532, 1539, 1527, 1534, 1535, 1540, 1533, 1541, 1542, 1544, 1540, 1536, 1541, 1538, 1543, 1545, 1546, 1547, 1548, 1549, 1539, 1550, 1542, 1552, 1553, 1553, 1550, 1543, 1544, 1545, 1547, 1548, 1551, 1557, 1554, 1546, 1555, 1551, 1549, 1554, 1556, 1555, 1552, 1558, 1560, 1556, 1559, 1559, 1558, 1561, 1562, 1560, 1557, 1563, 1564, 1567, 1568, 1565, 1563, 1569, 1567, 1570, 1571, 1571, 1573, 1578, 1572, 1576, 1561, 1562, 1565, 1572, 1576, 1564, 1570, 1568, 1574, 1574, 1569, 1575, 1575, 1577, 1580, 1573, 1578, 1579, 1579, 1581, 1577, 1580, 1582, 1583, 1584, 1586, 1581, 1587, 1583, 1588, 1586, 1589, 1587, 1590, 1590, 1591, 1592, 1593, 1593, 1594, 1594, 1582, 1595, 1584, 1596, 1596, 1597, 1597, 1588, 1595, 1589, 1598, 1600, 1604, 1591, 1592, 1603, 1600, 1598, 1605, 0, 1603, 1606, 1606, 1607, 1607, 0, 0, 0, 0, 0, 0, 1604, 0, 0, 0, 0, 0, 1605, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1617, 1617, 0, 1617, 1617, 1617, 1617, 1618, 1618, 0, 0, 0, 1618, 1618, 1619, 1619, 0, 0, 1619, 0, 1619, 1620, 0, 0, 0, 0, 0, 1620, 1621, 1621, 0, 0, 0, 1621, 1621, 1622, 0, 0, 0, 0, 0, 1622, 1623, 1623, 0, 1623, 1623, 1623, 1623, 1624, 1624, 0, 1624, 1624, 1624, 1624, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610 } ; 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)); 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 177 "./util/configlexer.lex" #ifndef YY_NO_UNPUT #define YY_NO_UNPUT 1 #endif #ifndef YY_NO_INPUT #define YY_NO_INPUT 1 #endif #line 1879 "" #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 197 "./util/configlexer.lex" #line 2066 "" 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 >= 1611 ) 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] != 3201 ); 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 198 "./util/configlexer.lex" { LEXOUT(("SP ")); /* ignore */ } YY_BREAK case 2: YY_RULE_SETUP #line 200 "./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 203 "./util/configlexer.lex" { YDVAR(0, VAR_SERVER) } YY_BREAK case 4: YY_RULE_SETUP #line 204 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_THREADS) } YY_BREAK case 5: YY_RULE_SETUP #line 205 "./util/configlexer.lex" { YDVAR(1, VAR_VERBOSITY) } YY_BREAK case 6: YY_RULE_SETUP #line 206 "./util/configlexer.lex" { YDVAR(1, VAR_PORT) } YY_BREAK case 7: YY_RULE_SETUP #line 207 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_RANGE) } YY_BREAK case 8: YY_RULE_SETUP #line 208 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_PERMIT) } YY_BREAK case 9: YY_RULE_SETUP #line 209 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_PORT_AVOID) } YY_BREAK case 10: YY_RULE_SETUP #line 210 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_NUM_TCP) } YY_BREAK case 11: YY_RULE_SETUP #line 211 "./util/configlexer.lex" { YDVAR(1, VAR_INCOMING_NUM_TCP) } YY_BREAK case 12: YY_RULE_SETUP #line 212 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP4) } YY_BREAK case 13: YY_RULE_SETUP #line 213 "./util/configlexer.lex" { YDVAR(1, VAR_DO_IP6) } YY_BREAK case 14: YY_RULE_SETUP #line 214 "./util/configlexer.lex" { YDVAR(1, VAR_DO_UDP) } YY_BREAK case 15: YY_RULE_SETUP #line 215 "./util/configlexer.lex" { YDVAR(1, VAR_DO_TCP) } YY_BREAK case 16: YY_RULE_SETUP #line 216 "./util/configlexer.lex" { YDVAR(1, VAR_TCP_UPSTREAM) } YY_BREAK case 17: YY_RULE_SETUP #line 217 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_UPSTREAM) } YY_BREAK case 18: YY_RULE_SETUP #line 218 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_KEY) } YY_BREAK case 19: YY_RULE_SETUP #line 219 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_SERVICE_PEM) } YY_BREAK case 20: YY_RULE_SETUP #line 220 "./util/configlexer.lex" { YDVAR(1, VAR_SSL_PORT) } YY_BREAK case 21: YY_RULE_SETUP #line 221 "./util/configlexer.lex" { YDVAR(1, VAR_DO_DAEMONIZE) } YY_BREAK case 22: YY_RULE_SETUP #line 222 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 23: YY_RULE_SETUP #line 223 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE) } YY_BREAK case 24: YY_RULE_SETUP #line 224 "./util/configlexer.lex" { YDVAR(1, VAR_OUTGOING_INTERFACE) } YY_BREAK case 25: YY_RULE_SETUP #line 225 "./util/configlexer.lex" { YDVAR(1, VAR_INTERFACE_AUTOMATIC) } YY_BREAK case 26: YY_RULE_SETUP #line 226 "./util/configlexer.lex" { YDVAR(1, VAR_SO_RCVBUF) } YY_BREAK case 27: YY_RULE_SETUP #line 227 "./util/configlexer.lex" { YDVAR(1, VAR_SO_SNDBUF) } YY_BREAK case 28: YY_RULE_SETUP #line 228 "./util/configlexer.lex" { YDVAR(1, VAR_SO_REUSEPORT) } YY_BREAK case 29: YY_RULE_SETUP #line 229 "./util/configlexer.lex" { YDVAR(1, VAR_CHROOT) } YY_BREAK case 30: YY_RULE_SETUP #line 230 "./util/configlexer.lex" { YDVAR(1, VAR_USERNAME) } YY_BREAK case 31: YY_RULE_SETUP #line 231 "./util/configlexer.lex" { YDVAR(1, VAR_DIRECTORY) } YY_BREAK case 32: YY_RULE_SETUP #line 232 "./util/configlexer.lex" { YDVAR(1, VAR_LOGFILE) } YY_BREAK case 33: YY_RULE_SETUP #line 233 "./util/configlexer.lex" { YDVAR(1, VAR_PIDFILE) } YY_BREAK case 34: YY_RULE_SETUP #line 234 "./util/configlexer.lex" { YDVAR(1, VAR_ROOT_HINTS) } YY_BREAK case 35: YY_RULE_SETUP #line 235 "./util/configlexer.lex" { YDVAR(1, VAR_EDNS_BUFFER_SIZE) } YY_BREAK case 36: YY_RULE_SETUP #line 236 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_BUFFER_SIZE) } YY_BREAK case 37: YY_RULE_SETUP #line 237 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SIZE) } YY_BREAK case 38: YY_RULE_SETUP #line 238 "./util/configlexer.lex" { YDVAR(1, VAR_MSG_CACHE_SLABS) } YY_BREAK case 39: YY_RULE_SETUP #line 239 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SIZE) } YY_BREAK case 40: YY_RULE_SETUP #line 240 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_CACHE_SLABS) } YY_BREAK case 41: YY_RULE_SETUP #line 241 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MAX_TTL) } YY_BREAK case 42: YY_RULE_SETUP #line 242 "./util/configlexer.lex" { YDVAR(1, VAR_CACHE_MIN_TTL) } YY_BREAK case 43: YY_RULE_SETUP #line 243 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_HOST_TTL) } YY_BREAK case 44: YY_RULE_SETUP #line 244 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_LAME_TTL) } YY_BREAK case 45: YY_RULE_SETUP #line 245 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_SLABS) } YY_BREAK case 46: YY_RULE_SETUP #line 246 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) } YY_BREAK case 47: YY_RULE_SETUP #line 247 "./util/configlexer.lex" { YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) } YY_BREAK case 48: YY_RULE_SETUP #line 248 "./util/configlexer.lex" { YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) } YY_BREAK case 49: YY_RULE_SETUP #line 249 "./util/configlexer.lex" { YDVAR(1, VAR_JOSTLE_TIMEOUT) } YY_BREAK case 50: YY_RULE_SETUP #line 250 "./util/configlexer.lex" { YDVAR(1, VAR_DELAY_CLOSE) } YY_BREAK case 51: YY_RULE_SETUP #line 251 "./util/configlexer.lex" { YDVAR(1, VAR_TARGET_FETCH_POLICY) } YY_BREAK case 52: YY_RULE_SETUP #line 252 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) } YY_BREAK case 53: YY_RULE_SETUP #line 253 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_LARGE_QUERIES) } YY_BREAK case 54: YY_RULE_SETUP #line 254 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_GLUE) } YY_BREAK case 55: YY_RULE_SETUP #line 255 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) } YY_BREAK case 56: YY_RULE_SETUP #line 256 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) } YY_BREAK case 57: YY_RULE_SETUP #line 257 "./util/configlexer.lex" { YDVAR(1, VAR_HARDEN_REFERRAL_PATH) } YY_BREAK case 58: YY_RULE_SETUP #line 258 "./util/configlexer.lex" { YDVAR(1, VAR_USE_CAPS_FOR_ID) } YY_BREAK case 59: YY_RULE_SETUP #line 259 "./util/configlexer.lex" { YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) } YY_BREAK case 60: YY_RULE_SETUP #line 260 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_ADDRESS) } YY_BREAK case 61: YY_RULE_SETUP #line 261 "./util/configlexer.lex" { YDVAR(1, VAR_PRIVATE_DOMAIN) } YY_BREAK case 62: YY_RULE_SETUP #line 262 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH_KEY) } YY_BREAK case 63: YY_RULE_SETUP #line 263 "./util/configlexer.lex" { YDVAR(1, VAR_PREFETCH) } YY_BREAK case 64: YY_RULE_SETUP #line 264 "./util/configlexer.lex" { YDVAR(0, VAR_STUB_ZONE) } YY_BREAK case 65: YY_RULE_SETUP #line 265 "./util/configlexer.lex" { YDVAR(1, VAR_NAME) } YY_BREAK case 66: YY_RULE_SETUP #line 266 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_ADDR) } YY_BREAK case 67: YY_RULE_SETUP #line 267 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_HOST) } YY_BREAK case 68: YY_RULE_SETUP #line 268 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_PRIME) } YY_BREAK case 69: YY_RULE_SETUP #line 269 "./util/configlexer.lex" { YDVAR(1, VAR_STUB_FIRST) } YY_BREAK case 70: YY_RULE_SETUP #line 270 "./util/configlexer.lex" { YDVAR(0, VAR_FORWARD_ZONE) } YY_BREAK case 71: YY_RULE_SETUP #line 271 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_ADDR) } YY_BREAK case 72: YY_RULE_SETUP #line 272 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_HOST) } YY_BREAK case 73: YY_RULE_SETUP #line 273 "./util/configlexer.lex" { YDVAR(1, VAR_FORWARD_FIRST) } YY_BREAK case 74: YY_RULE_SETUP #line 274 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) } YY_BREAK case 75: YY_RULE_SETUP #line 275 "./util/configlexer.lex" { YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) } YY_BREAK case 76: YY_RULE_SETUP #line 276 "./util/configlexer.lex" { YDVAR(2, VAR_ACCESS_CONTROL) } YY_BREAK case 77: YY_RULE_SETUP #line 277 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_IDENTITY) } YY_BREAK case 78: YY_RULE_SETUP #line 278 "./util/configlexer.lex" { YDVAR(1, VAR_HIDE_VERSION) } YY_BREAK case 79: YY_RULE_SETUP #line 279 "./util/configlexer.lex" { YDVAR(1, VAR_IDENTITY) } YY_BREAK case 80: YY_RULE_SETUP #line 280 "./util/configlexer.lex" { YDVAR(1, VAR_VERSION) } YY_BREAK case 81: YY_RULE_SETUP #line 281 "./util/configlexer.lex" { YDVAR(1, VAR_MODULE_CONF) } YY_BREAK case 82: YY_RULE_SETUP #line 282 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR) } YY_BREAK case 83: YY_RULE_SETUP #line 283 "./util/configlexer.lex" { YDVAR(1, VAR_DLV_ANCHOR_FILE) } YY_BREAK case 84: YY_RULE_SETUP #line 284 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR_FILE) } YY_BREAK case 85: YY_RULE_SETUP #line 285 "./util/configlexer.lex" { YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) } YY_BREAK case 86: YY_RULE_SETUP #line 286 "./util/configlexer.lex" { YDVAR(1, VAR_TRUSTED_KEYS_FILE) } YY_BREAK case 87: YY_RULE_SETUP #line 287 "./util/configlexer.lex" { YDVAR(1, VAR_TRUST_ANCHOR) } YY_BREAK case 88: YY_RULE_SETUP #line 288 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_OVERRIDE_DATE) } YY_BREAK case 89: YY_RULE_SETUP #line 289 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MIN) } YY_BREAK case 90: YY_RULE_SETUP #line 290 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_SIG_SKEW_MAX) } YY_BREAK case 91: YY_RULE_SETUP #line 291 "./util/configlexer.lex" { YDVAR(1, VAR_BOGUS_TTL) } YY_BREAK case 92: YY_RULE_SETUP #line 292 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) } YY_BREAK case 93: YY_RULE_SETUP #line 293 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_PERMISSIVE_MODE) } YY_BREAK case 94: YY_RULE_SETUP #line 294 "./util/configlexer.lex" { YDVAR(1, VAR_IGNORE_CD_FLAG) } YY_BREAK case 95: YY_RULE_SETUP #line 295 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_LOG_LEVEL) } YY_BREAK case 96: YY_RULE_SETUP #line 296 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SIZE) } YY_BREAK case 97: YY_RULE_SETUP #line 297 "./util/configlexer.lex" { YDVAR(1, VAR_KEY_CACHE_SLABS) } YY_BREAK case 98: YY_RULE_SETUP #line 298 "./util/configlexer.lex" { YDVAR(1, VAR_NEG_CACHE_SIZE) } YY_BREAK case 99: YY_RULE_SETUP #line 299 "./util/configlexer.lex" { YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) } YY_BREAK case 100: YY_RULE_SETUP #line 301 "./util/configlexer.lex" { YDVAR(1, VAR_ADD_HOLDDOWN) } YY_BREAK case 101: YY_RULE_SETUP #line 302 "./util/configlexer.lex" { YDVAR(1, VAR_DEL_HOLDDOWN) } YY_BREAK case 102: YY_RULE_SETUP #line 303 "./util/configlexer.lex" { YDVAR(1, VAR_KEEP_MISSING) } YY_BREAK case 103: YY_RULE_SETUP #line 304 "./util/configlexer.lex" { YDVAR(1, VAR_USE_SYSLOG) } YY_BREAK case 104: YY_RULE_SETUP #line 305 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_TIME_ASCII) } YY_BREAK case 105: YY_RULE_SETUP #line 306 "./util/configlexer.lex" { YDVAR(1, VAR_LOG_QUERIES) } YY_BREAK case 106: YY_RULE_SETUP #line 307 "./util/configlexer.lex" { YDVAR(2, VAR_LOCAL_ZONE) } YY_BREAK case 107: YY_RULE_SETUP #line 308 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA) } YY_BREAK case 108: YY_RULE_SETUP #line 309 "./util/configlexer.lex" { YDVAR(1, VAR_LOCAL_DATA_PTR) } YY_BREAK case 109: YY_RULE_SETUP #line 310 "./util/configlexer.lex" { YDVAR(1, VAR_UNBLOCK_LAN_ZONES) } YY_BREAK case 110: YY_RULE_SETUP #line 311 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_INTERVAL) } YY_BREAK case 111: YY_RULE_SETUP #line 312 "./util/configlexer.lex" { YDVAR(1, VAR_STATISTICS_CUMULATIVE) } YY_BREAK case 112: YY_RULE_SETUP #line 313 "./util/configlexer.lex" { YDVAR(1, VAR_EXTENDED_STATISTICS) } YY_BREAK case 113: YY_RULE_SETUP #line 314 "./util/configlexer.lex" { YDVAR(0, VAR_REMOTE_CONTROL) } YY_BREAK case 114: YY_RULE_SETUP #line 315 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_ENABLE) } YY_BREAK case 115: YY_RULE_SETUP #line 316 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_INTERFACE) } YY_BREAK case 116: YY_RULE_SETUP #line 317 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_PORT) } YY_BREAK case 117: YY_RULE_SETUP #line 318 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_KEY_FILE) } YY_BREAK case 118: YY_RULE_SETUP #line 319 "./util/configlexer.lex" { YDVAR(1, VAR_SERVER_CERT_FILE) } YY_BREAK case 119: YY_RULE_SETUP #line 320 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_KEY_FILE) } YY_BREAK case 120: YY_RULE_SETUP #line 321 "./util/configlexer.lex" { YDVAR(1, VAR_CONTROL_CERT_FILE) } YY_BREAK case 121: YY_RULE_SETUP #line 322 "./util/configlexer.lex" { YDVAR(1, VAR_PYTHON_SCRIPT) } YY_BREAK case 122: YY_RULE_SETUP #line 323 "./util/configlexer.lex" { YDVAR(0, VAR_PYTHON) } YY_BREAK case 123: YY_RULE_SETUP #line 324 "./util/configlexer.lex" { YDVAR(1, VAR_DOMAIN_INSECURE) } YY_BREAK case 124: YY_RULE_SETUP #line 325 "./util/configlexer.lex" { YDVAR(1, VAR_MINIMAL_RESPONSES) } YY_BREAK case 125: YY_RULE_SETUP #line 326 "./util/configlexer.lex" { YDVAR(1, VAR_RRSET_ROUNDROBIN) } YY_BREAK case 126: YY_RULE_SETUP #line 327 "./util/configlexer.lex" { YDVAR(1, VAR_MAX_UDP_SIZE) } YY_BREAK case 127: YY_RULE_SETUP #line 328 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_PREFIX) } YY_BREAK case 128: YY_RULE_SETUP #line 329 "./util/configlexer.lex" { YDVAR(1, VAR_DNS64_SYNTHALL) } YY_BREAK case 129: YY_RULE_SETUP #line 330 "./util/configlexer.lex" { YDVAR(0, VAR_DNSTAP) } YY_BREAK case 130: YY_RULE_SETUP #line 331 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_ENABLE) } YY_BREAK case 131: YY_RULE_SETUP #line 332 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SOCKET_PATH) } YY_BREAK case 132: YY_RULE_SETUP #line 333 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) } YY_BREAK case 133: YY_RULE_SETUP #line 334 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_SEND_VERSION) } YY_BREAK case 134: YY_RULE_SETUP #line 335 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_IDENTITY) } YY_BREAK case 135: YY_RULE_SETUP #line 336 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_VERSION) } YY_BREAK case 136: YY_RULE_SETUP #line 337 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) } YY_BREAK case 137: YY_RULE_SETUP #line 339 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) } YY_BREAK case 138: YY_RULE_SETUP #line 341 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) } YY_BREAK case 139: YY_RULE_SETUP #line 343 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) } YY_BREAK case 140: YY_RULE_SETUP #line 345 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) } YY_BREAK case 141: YY_RULE_SETUP #line 347 "./util/configlexer.lex" { YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) } YY_BREAK case 142: /* rule 142 can match eol */ YY_RULE_SETUP #line 349 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++; } YY_BREAK /* Quoted strings. Strip leading and ending quotes */ case 143: YY_RULE_SETUP #line 352 "./util/configlexer.lex" { BEGIN(quotedstring); LEXOUT(("QS ")); } YY_BREAK case YY_STATE_EOF(quotedstring): #line 353 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 144: YY_RULE_SETUP #line 358 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 145: /* rule 145 can match eol */ YY_RULE_SETUP #line 359 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end \""); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 146: YY_RULE_SETUP #line 361 "./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 147: YY_RULE_SETUP #line 373 "./util/configlexer.lex" { BEGIN(singlequotedstr); LEXOUT(("SQS ")); } YY_BREAK case YY_STATE_EOF(singlequotedstr): #line 374 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); if(--num_args == 0) { BEGIN(INITIAL); } else { BEGIN(val); } } YY_BREAK case 148: YY_RULE_SETUP #line 379 "./util/configlexer.lex" { LEXOUT(("STR(%s) ", yytext)); yymore(); } YY_BREAK case 149: /* rule 149 can match eol */ YY_RULE_SETUP #line 380 "./util/configlexer.lex" { yyerror("newline inside quoted string, no end '"); cfg_parser->line++; BEGIN(INITIAL); } YY_BREAK case 150: YY_RULE_SETUP #line 382 "./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 151: YY_RULE_SETUP #line 394 "./util/configlexer.lex" { LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); } YY_BREAK case YY_STATE_EOF(include): #line 396 "./util/configlexer.lex" { yyerror("EOF inside include directive"); BEGIN(inc_prev); } YY_BREAK case 152: YY_RULE_SETUP #line 400 "./util/configlexer.lex" { LEXOUT(("ISP ")); /* ignore */ } YY_BREAK case 153: /* rule 153 can match eol */ YY_RULE_SETUP #line 401 "./util/configlexer.lex" { LEXOUT(("NL\n")); cfg_parser->line++;} YY_BREAK case 154: YY_RULE_SETUP #line 402 "./util/configlexer.lex" { LEXOUT(("IQS ")); BEGIN(include_quoted); } YY_BREAK case 155: YY_RULE_SETUP #line 403 "./util/configlexer.lex" { LEXOUT(("Iunquotedstr(%s) ", yytext)); config_start_include_glob(yytext); BEGIN(inc_prev); } YY_BREAK case YY_STATE_EOF(include_quoted): #line 408 "./util/configlexer.lex" { yyerror("EOF inside quoted string"); BEGIN(inc_prev); } YY_BREAK case 156: YY_RULE_SETUP #line 412 "./util/configlexer.lex" { LEXOUT(("ISTR(%s) ", yytext)); yymore(); } YY_BREAK case 157: /* rule 157 can match eol */ YY_RULE_SETUP #line 413 "./util/configlexer.lex" { yyerror("newline before \" in include name"); cfg_parser->line++; BEGIN(inc_prev); } YY_BREAK case 158: YY_RULE_SETUP #line 415 "./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 421 "./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 159: YY_RULE_SETUP #line 432 "./util/configlexer.lex" { LEXOUT(("unquotedstr(%s) ", yytext)); if(--num_args == 0) { BEGIN(INITIAL); } yylval.str = strdup(yytext); return STRING_ARG; } YY_BREAK case 160: YY_RULE_SETUP #line 436 "./util/configlexer.lex" { ub_c_error_msg("unknown keyword '%s'", yytext); } YY_BREAK case 161: YY_RULE_SETUP #line 440 "./util/configlexer.lex" { ub_c_error_msg("stray '%s'", yytext); } YY_BREAK case 162: YY_RULE_SETUP #line 444 "./util/configlexer.lex" ECHO; YY_BREAK #line 3064 "" 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 >= 1611 ) 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 >= 1611 ) 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 == 1610); 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; int 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 444 "./util/configlexer.lex"