#line 3 "rcfile_l.c" #define YY_INT_ALIGNED short int /* A lexical scanner generated by flex */ #define FLEX_SCANNER #define YY_FLEX_MAJOR_VERSION 2 #define YY_FLEX_MINOR_VERSION 5 #define YY_FLEX_SUBMINOR_VERSION 33 #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 __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; #endif /* ! C99 */ /* 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 /* ! FLEXINT_H */ #ifdef __cplusplus /* The "const" storage-class-modifier is valid. */ #define YY_USE_CONST #else /* ! __cplusplus */ #if __STDC__ #define YY_USE_CONST #endif /* __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 extern int yyleng; extern FILE *yyin, *yyout; #define EOB_ACT_CONTINUE_SCAN 0 #define EOB_ACT_END_OF_FILE 1 #define EOB_ACT_LAST_MATCH 2 #define YY_LESS_LINENO(n) /* 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) ) /* The following is because we cannot portably get our hands on size_t * (without autoconf's help, which isn't available because we want * flex-generated scanners to compile on their own). */ #ifndef YY_TYPEDEF_YY_SIZE_T #define YY_TYPEDEF_YY_SIZE_T typedef unsigned int yy_size_t; #endif #ifndef YY_STRUCT_YY_BUFFER_STATE #define YY_STRUCT_YY_BUFFER_STATE struct yy_buffer_state { FILE *yy_input_file; char *yy_ch_buf; /* input buffer */ char *yy_buf_pos; /* current position in input buffer */ /* Size of input buffer in bytes, not including room for EOB * characters. */ yy_size_t yy_buf_size; /* Number of characters read into yy_ch_buf, not including EOB * characters. */ int yy_n_chars; /* Whether we "own" the buffer - i.e., we know we created it, * and can realloc() it to grow it, and should free() it to * delete it. */ int yy_is_our_buffer; /* Whether this is an "interactive" input source; if so, and * if we're using stdio for input, then we want to use getc() * instead of fread(), to make sure we stop fetching input after * each newline. */ int yy_is_interactive; /* Whether we're considered to be at the beginning of a line. * If so, '^' rules will be active on the next match, otherwise * not. */ int yy_at_bol; int yy_bs_lineno; /**< The line count. */ int yy_bs_column; /**< The column count. */ /* Whether to try to fill the input buffer when we reach the * end of it. */ int yy_fill_buffer; int yy_buffer_status; #define YY_BUFFER_NEW 0 #define YY_BUFFER_NORMAL 1 /* When an EOF's been seen but there's still some text to process * then we mark the buffer as YY_EOF_PENDING, to indicate that we * shouldn't try reading from the input source any more. We might * still have a bunch of tokens to match, though, because of * possible backing-up. * * When we actually see the EOF, we change the status to "new" * (via 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 int yy_n_chars; /* number of characters read into yy_ch_buf */ int yyleng; /* Points to current character in buffer. */ static char *yy_c_buf_p = (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,int len ); void *yyalloc (yy_size_t ); void *yyrealloc (void *,yy_size_t ); void yyfree (void * ); #define yy_new_buffer yy_create_buffer #define yy_set_interactive(is_interactive) \ { \ if ( ! YY_CURRENT_BUFFER ){ \ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ } #define yy_set_bol(at_bol) \ { \ if ( ! YY_CURRENT_BUFFER ){\ yyensure_buffer_stack (); \ YY_CURRENT_BUFFER_LVALUE = \ yy_create_buffer(yyin,YY_BUF_SIZE ); \ } \ YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ } #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) /* Begin user sect3 */ #define yywrap(n) 1 #define YY_SKIP_YYWRAP typedef unsigned char YY_CHAR; FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; typedef int yy_state_type; extern int yylineno; 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; \ yyleng = (size_t) (yy_cp - yy_bp); \ (yy_hold_char) = *yy_cp; \ *yy_cp = '\0'; \ (yy_c_buf_p) = yy_cp; #define YY_NUM_RULES 139 #define YY_END_OF_BUFFER 140 /* 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[1509] = { 0, 0, 0, 0, 0, 0, 0, 140, 137, 138, 135, 137, 137, 137, 3, 124, 137, 136, 76, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 4, 4, 4, 4, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 137, 138, 137, 0, 1, 137, 0, 135, 137, 137, 0, 2, 136, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 72, 137, 137, 137, 137, 137, 137, 137, 137, 137, 95, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 75, 137, 137, 137, 137, 137, 137, 4, 4, 1, 4, 4, 4, 2, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 1, 0, 2, 137, 137, 137, 137, 137, 137, 137, 137, 137, 23, 120, 137, 31, 137, 137, 137, 137, 137, 137, 137, 137, 137, 108, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 121, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 57, 137, 137, 40, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 38, 137, 137, 137, 137, 137, 137, 137, 60, 137, 137, 137, 137, 137, 137, 137, 5, 137, 137, 137, 137, 36, 110, 137, 137, 137, 137, 137, 137, 137, 22, 137, 137, 137, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 130, 125, 132, 129, 134, 133, 126, 128, 131, 127, 137, 30, 137, 137, 137, 137, 39, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 73, 137, 107, 137, 137, 96, 137, 137, 59, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 41, 137, 50, 137, 137, 20, 27, 61, 137, 137, 137, 137, 137, 137, 137, 137, 137, 21, 52, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 109, 49, 137, 137, 119, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 137, 137, 137, 137, 58, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 97, 137, 137, 137, 137, 137, 137, 137, 118, 137, 137, 137, 137, 137, 137, 80, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 103, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 25, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 74, 137, 137, 137, 122, 137, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 137, 137, 137, 137, 137, 137, 9, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 51, 137, 32, 7, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 94, 82, 137, 137, 137, 137, 137, 137, 78, 137, 137, 137, 137, 64, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 19, 137, 137, 137, 137, 137, 137, 137, 137, 111, 137, 137, 10, 137, 137, 137, 137, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 70, 137, 137, 137, 137, 137, 137, 51, 101, 137, 137, 137, 137, 137, 137, 6, 106, 63, 137, 137, 137, 137, 137, 137, 83, 137, 137, 137, 89, 137, 137, 137, 123, 137, 137, 8, 65, 137, 137, 29, 137, 137, 137, 137, 137, 100, 26, 137, 137, 137, 137, 137, 112, 137, 137, 102, 43, 137, 137, 137, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 56, 137, 137, 137, 137, 39, 18, 137, 137, 44, 137, 137, 37, 69, 99, 137, 137, 137, 137, 28, 137, 35, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 50, 137, 137, 137, 137, 137, 137, 25, 45, 12, 137, 52, 55, 137, 137, 137, 137, 113, 137, 49, 16, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 42, 137, 137, 137, 137, 137, 137, 47, 137, 137, 137, 137, 62, 11, 33, 34, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 87, 137, 92, 137, 86, 137, 88, 103, 137, 137, 137, 137, 46, 137, 137, 137, 114, 137, 137, 137, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 66, 14, 117, 137, 104, 137, 137, 67, 137, 137, 98, 137, 106, 137, 137, 137, 137, 81, 85, 137, 137, 137, 137, 137, 13, 137, 60, 71, 137, 15, 137, 137, 17, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 137, 89, 137, 61, 137, 54, 115, 137, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 30, 137, 137, 53, 137, 24, 77, 79, 137, 90, 84, 92, 93, 137, 137, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 105, 48, 137, 137, 137, 137, 4, 4, 4, 4, 4, 4, 68, 137, 137, 116, 4, 4, 4, 4, 91, 29, 4, 4, 0 } ; static yyconst flex_int32_t yy_ec[256] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 5, 1, 1, 1, 6, 1, 1, 7, 1, 8, 9, 1, 1, 10, 10, 11, 12, 13, 14, 10, 10, 15, 10, 8, 8, 1, 16, 1, 1, 1, 17, 1, 1, 18, 19, 1, 1, 1, 20, 1, 21, 1, 22, 23, 24, 25, 1, 26, 27, 28, 29, 1, 1, 1, 1, 1, 1, 30, 1, 1, 31, 1, 32, 33, 34, 35, 36, 37, 38, 39, 40, 1, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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[57] = { 0, 1, 2, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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[1520] = { 0, 0, 0, 56, 0, 1631, 1630, 1675, 0, 1672, 1678, 111, 114, 118, 0, 1678, 125, 135, 1678, 100, 1645, 1650, 1646, 1652, 1645, 1643, 1649, 1663, 110, 110, 84, 121, 114, 130, 1616, 135, 135, 82, 137, 141, 138, 139, 155, 1612, 95, 169, 153, 103, 1623, 159, 0, 218, 225, 229, 0, 236, 246, 177, 1634, 1639, 1635, 1641, 1634, 1632, 1638, 1652, 221, 162, 175, 181, 219, 234, 1605, 204, 195, 206, 235, 242, 236, 239, 252, 1601, 207, 266, 274, 250, 1612, 256, 278, 0, 1649, 325, 1646, 0, 322, 130, 1678, 329, 340, 1643, 0, 350, 1624, 1619, 1620, 1628, 1620, 1621, 1617, 1617, 1615, 1607, 248, 1593, 1587, 1586, 1584, 1591, 1597, 1600, 1595, 1593, 1580, 1583, 1575, 1583, 1577, 258, 1575, 1573, 1571, 269, 1572, 1571, 1571, 297, 1586, 243, 0, 299, 1572, 1573, 1565, 302, 1582, 1570, 1568, 1567, 333, 1568, 1566, 214, 1562, 1558, 1571, 1554, 309, 347, 1564, 1550, 1557, 1555, 330, 1555, 1559, 1548, 1565, 311, 1548, 1546, 1558, 1550, 0, 1560, 1556, 1554, 1557, 341, 1538, 0, 391, 0, 388, 395, 406, 0, 416, 1563, 1558, 1559, 1567, 1559, 1560, 1556, 1556, 1554, 1546, 351, 1532, 1526, 1525, 1523, 1530, 1536, 1539, 1534, 1532, 1519, 1522, 1514, 1522, 1516, 367, 1514, 1512, 1510, 329, 1511, 1510, 1510, 307, 1525, 350, 0, 384, 1511, 1512, 1504, 381, 1521, 1509, 1507, 1506, 400, 1507, 1505, 404, 1501, 1497, 1510, 1493, 410, 417, 1503, 1489, 1496, 1494, 373, 1494, 1498, 1487, 1504, 408, 1487, 1485, 1497, 1489, 0, 1499, 1495, 1493, 1496, 416, 1477, 1477, 1678, 435, 1678, 1500, 1500, 1500, 1497, 1496, 1494, 455, 1494, 1491, 0, 0, 1477, 0, 1470, 371, 1481, 1470, 1463, 1478, 1468, 1467, 1477, 0, 1462, 1471, 1456, 1461, 1453, 1467, 1452, 1467, 1451, 1464, 1464, 1465, 0, 1460, 1455, 1458, 1447, 1456, 1451, 1444, 1456, 1442, 1447, 1440, 1453, 1447, 0, 1447, 1442, 0, 1436, 1441, 424, 1435, 433, 1443, 1441, 1436, 1435, 1442, 1437, 424, 1432, 1428, 1422, 1433, 1428, 0, 1418, 1429, 1427, 1422, 465, 1413, 1412, 429, 1417, 433, 1412, 1411, 1412, 1408, 1404, 0, 1402, 1408, 1407, 1409, 0, 447, 1411, 1408, 1401, 1412, 1413, 1404, 1397, 0, 1394, 1399, 1403, 1416, 1416, 1416, 1413, 1412, 1410, 474, 1410, 1407, 0, 0, 1393, 0, 1386, 400, 1397, 1386, 1379, 1394, 1384, 1383, 1393, 0, 1378, 1387, 1372, 1377, 1369, 1383, 1368, 1383, 1367, 1380, 1380, 1381, 0, 1376, 1371, 1374, 1363, 1372, 1367, 1360, 1372, 1358, 1363, 1356, 1369, 1363, 0, 1363, 1358, 0, 1352, 1357, 443, 1351, 453, 1359, 1357, 1352, 1351, 1358, 1353, 444, 1348, 1344, 1338, 1349, 1344, 0, 1334, 1345, 1343, 1338, 485, 1329, 1328, 439, 1333, 453, 1328, 1327, 1328, 1324, 1320, 0, 1318, 1324, 1323, 1325, 0, 467, 1327, 1324, 1317, 1328, 1329, 1320, 1313, 0, 1310, 1315, 1319, 1308, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1307, 1319, 1315, 1319, 1306, 1310, 1341, 1304, 1297, 457, 1305, 1300, 1301, 1296, 1292, 1303, 1302, 1304, 1303, 1292, 0, 1295, 0, 1288, 1286, 0, 1298, 1283, 0, 1290, 1291, 1295, 1279, 1277, 1291, 1277, 1280, 1272, 1273, 1271, 1273, 1278, 1283, 1275, 1274, 1267, 1262, 1282, 1265, 1277, 0, 1266, 465, 1270, 460, 0, 0, 468, 1258, 1263, 1273, 1270, 1260, 1254, 1263, 474, 1267, 0, 477, 1268, 1264, 1259, 1262, 1249, 1250, 1250, 1258, 1248, 1256, 0, 1247, 1241, 1249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1239, 1251, 1247, 1251, 1238, 1242, 1273, 1236, 1229, 477, 1237, 1232, 1233, 1228, 1224, 1235, 1234, 1236, 1235, 1224, 0, 1227, 0, 1220, 1218, 0, 1230, 1215, 0, 1222, 1223, 1227, 1211, 1209, 1223, 1209, 1212, 1204, 1205, 1203, 1205, 1210, 1215, 1207, 1206, 1199, 1194, 1214, 1197, 1209, 0, 1198, 467, 1202, 477, 0, 0, 481, 1190, 1195, 1205, 1202, 1192, 1186, 1195, 483, 1199, 0, 493, 1200, 1196, 1191, 1194, 1181, 1182, 1182, 1190, 1180, 1188, 0, 1179, 1173, 1181, 0, 492, 1174, 1175, 1176, 1181, 0, 1184, 1172, 1170, 1171, 1176, 1161, 1165, 483, 1171, 1164, 1167, 498, 0, 1158, 1171, 1164, 1167, 491, 1162, 1153, 1163, 1164, 1156, 1161, 1151, 1151, 1160, 0, 1147, 1156, 1157, 1141, 1155, 1152, 1141, 1146, 1149, 1135, 1135, 1139, 1141, 1138, 1135, 140, 151, 167, 172, 220, 261, 322, 322, 344, 365, 376, 421, 480, 484, 487, 502, 493, 504, 496, 510, 499, 498, 504, 494, 505, 517, 514, 0, 502, 508, 523, 0, 512, 511, 514, 517, 524, 0, 529, 519, 519, 522, 529, 516, 522, 524, 531, 527, 532, 541, 0, 526, 541, 537, 542, 542, 540, 533, 545, 549, 543, 550, 542, 544, 555, 0, 545, 556, 559, 546, 562, 561, 552, 559, 564, 552, 554, 560, 564, 563, 562, 574, 563, 567, 566, 560, 567, 581, 564, 571, 576, 569, 584, 568, 570, 573, 588, 578, 589, 580, 594, 582, 580, 585, 575, 586, 598, 595, 0, 583, 589, 604, 0, 593, 593, 607, 590, 601, 599, 601, 609, 0, 595, 604, 615, 602, 617, 618, 615, 620, 618, 612, 610, 616, 617, 609, 611, 0, 0, 628, 629, 629, 618, 622, 620, 630, 633, 620, 635, 629, 636, 630, 634, 635, 639, 0, 0, 626, 642, 663, 639, 647, 635, 0, 633, 643, 636, 650, 0, 637, 644, 640, 651, 647, 646, 643, 649, 663, 660, 0, 661, 648, 664, 651, 658, 651, 653, 666, 0, 655, 658, 0, 657, 663, 666, 672, 679, 662, 673, 671, 673, 681, 0, 667, 676, 687, 674, 689, 690, 687, 692, 690, 684, 682, 688, 689, 681, 683, 0, 0, 700, 701, 701, 690, 694, 692, 702, 705, 692, 707, 701, 708, 702, 706, 707, 711, 0, 0, 698, 714, 735, 711, 719, 707, 0, 705, 715, 708, 722, 0, 709, 716, 712, 723, 719, 718, 715, 721, 735, 732, 0, 733, 720, 736, 723, 730, 723, 725, 738, 0, 727, 730, 0, 729, 735, 738, 744, 735, 741, 745, 743, 755, 748, 775, 741, 751, 742, 757, 751, 746, 0, 754, 755, 756, 756, 757, 745, 0, 0, 768, 761, 762, 756, 755, 764, 0, 763, 0, 773, 778, 775, 762, 768, 782, 0, 781, 779, 781, 785, 769, 775, 787, 0, 772, 788, 0, 0, 780, 775, 790, 791, 796, 789, 788, 789, 0, 0, 783, 785, 784, 799, 792, 803, 802, 794, 0, 0, 798, 805, 793, 800, 804, 802, 814, 807, 834, 801, 811, 802, 817, 811, 806, 0, 814, 815, 816, 816, 817, 805, 0, 0, 828, 821, 822, 816, 815, 824, 0, 823, 0, 833, 838, 835, 822, 828, 842, 0, 841, 839, 841, 845, 829, 835, 847, 0, 832, 848, 0, 0, 840, 835, 850, 851, 856, 849, 848, 849, 0, 0, 843, 845, 844, 859, 852, 863, 862, 854, 0, 0, 858, 865, 853, 868, 0, 870, 865, 866, 875, 0, 0, 856, 859, 0, 875, 863, 0, 0, 0, 881, 874, 879, 880, 0, 881, 905, 871, 889, 887, 880, 882, 883, 894, 881, 886, 881, 888, 897, 892, 897, 883, 887, 888, 0, 902, 903, 896, 907, 900, 907, 0, 0, 0, 908, 0, 0, 911, 905, 915, 900, 0, 907, 0, 0, 0, 916, 911, 912, 921, 0, 0, 902, 904, 0, 920, 908, 0, 0, 0, 926, 919, 924, 925, 0, 926, 950, 916, 934, 932, 925, 927, 928, 939, 926, 931, 926, 933, 942, 937, 942, 928, 932, 933, 0, 947, 948, 941, 952, 945, 952, 0, 0, 0, 953, 0, 0, 956, 950, 960, 945, 0, 952, 0, 0, 0, 963, 946, 955, 949, 963, 951, 0, 948, 962, 953, 962, 0, 0, 0, 0, 953, 967, 967, 972, 977, 970, 971, 962, 977, 972, 0, 964, 971, 967, 0, 974, 0, 0, 985, 972, 971, 972, 0, 974, 975, 989, 0, 976, 981, 979, 997, 980, 989, 983, 997, 985, 0, 982, 996, 987, 996, 0, 0, 0, 0, 987, 1001, 1001, 1006, 1011, 1004, 1005, 996, 1011, 1006, 0, 998, 1005, 1001, 0, 1008, 0, 0, 1019, 1006, 1005, 1006, 0, 1008, 1009, 1023, 0, 1010, 1015, 1013, 1013, 0, 0, 0, 1016, 0, 1020, 1022, 0, 1027, 1055, 0, 1026, 0, 1031, 1040, 1021, 1023, 0, 0, 1026, 1041, 1028, 1044, 1029, 0, 1040, 0, 0, 1032, 0, 1043, 1035, 0, 1034, 0, 0, 0, 1037, 0, 1041, 1043, 0, 1048, 1076, 0, 1047, 0, 1052, 1061, 1042, 1044, 0, 0, 1047, 1062, 1049, 1065, 1050, 0, 1061, 0, 0, 1053, 0, 1064, 1056, 0, 1069, 1070, 1059, 1059, 1066, 1061, 1069, 1063, 1077, 1065, 1076, 1080, 0, 1081, 0, 1084, 0, 0, 1079, 1084, 1085, 1074, 1074, 1081, 1076, 1084, 1078, 1092, 1080, 1091, 1095, 0, 1096, 0, 1099, 0, 0, 1094, 0, 1100, 1101, 0, 1097, 0, 0, 0, 1090, 0, 0, 0, 0, 1107, 1096, 0, 1106, 1107, 0, 1103, 0, 0, 0, 1096, 0, 0, 0, 0, 1113, 1102, 0, 0, 1097, 1112, 1099, 1100, 0, 0, 1101, 1116, 1103, 1104, 0, 1120, 1120, 0, 0, 1122, 1122, 0, 0, 0, 0, 0, 1678, 1158, 1159, 1161, 1163, 1165, 1166, 1168, 1170, 1172, 1174, 1176 } ; static yyconst flex_int16_t yy_def[1520] = { 0, 1508, 1, 1508, 3, 1, 1, 1508, 1509, 1508, 1508, 1510, 1511, 1512, 1509, 1508, 1509, 1509, 1508, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1514, 1515, 1516, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1508, 1510, 1517, 1509, 1511, 1518, 1508, 1511, 1512, 1519, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1514, 1513, 1515, 1515, 1516, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1508, 1518, 1508, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1513, 1513, 1509, 1509, 1509, 1509, 1513, 1513, 1513, 1513, 1509, 1509, 1513, 1513, 0, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508 } ; static yyconst flex_int16_t yy_nxt[1735] = { 0, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 17, 17, 17, 17, 17, 18, 19, 8, 20, 21, 22, 8, 8, 23, 24, 25, 26, 8, 8, 27, 8, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 8, 8, 8, 50, 9, 10, 51, 52, 53, 54, 15, 55, 56, 56, 56, 56, 56, 56, 18, 57, 50, 58, 59, 60, 50, 50, 61, 62, 63, 64, 50, 50, 65, 50, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 50, 50, 50, 92, 92, 93, 95, 96, 139, 92, 99, 99, 95, 118, 100, 102, 99, 92, 140, 103, 95, 159, 119, 96, 99, 101, 101, 101, 101, 101, 101, 160, 115, 174, 97, 101, 101, 101, 101, 101, 101, 111, 175, 120, 112, 116, 113, 121, 124, 117, 266, 114, 128, 125, 126, 122, 129, 133, 127, 123, 135, 134, 130, 879, 150, 131, 144, 141, 136, 137, 142, 145, 143, 148, 138, 151, 146, 153, 149, 152, 147, 177, 170, 171, 200, 154, 880, 155, 172, 178, 156, 173, 187, 157, 161, 162, 188, 201, 163, 881, 164, 202, 165, 205, 203, 166, 882, 206, 167, 168, 92, 92, 181, 204, 169, 207, 92, 95, 96, 208, 220, 99, 99, 95, 92, 185, 218, 99, 221, 222, 219, 95, 224, 244, 223, 99, 186, 186, 186, 186, 186, 186, 225, 245, 336, 183, 186, 186, 186, 186, 186, 186, 196, 209, 337, 197, 213, 198, 210, 211, 214, 883, 199, 212, 235, 226, 215, 229, 227, 216, 228, 233, 230, 278, 238, 236, 234, 231, 262, 237, 259, 232, 239, 308, 240, 309, 263, 241, 279, 260, 242, 246, 247, 280, 295, 248, 884, 249, 296, 250, 264, 300, 251, 255, 256, 252, 253, 301, 154, 257, 155, 254, 258, 156, 95, 96, 157, 92, 92, 93, 95, 95, 96, 92, 305, 310, 315, 95, 95, 306, 316, 92, 99, 99, 409, 95, 100, 311, 99, 410, 359, 342, 97, 360, 885, 343, 99, 344, 345, 97, 101, 101, 101, 101, 101, 101, 321, 322, 323, 324, 325, 404, 886, 326, 327, 328, 329, 405, 353, 330, 354, 331, 332, 346, 333, 369, 382, 347, 887, 370, 95, 96, 348, 92, 92, 181, 95, 95, 96, 92, 412, 383, 413, 95, 95, 888, 384, 92, 99, 99, 488, 95, 185, 399, 99, 419, 478, 400, 183, 420, 414, 457, 99, 458, 889, 183, 186, 186, 186, 186, 186, 186, 415, 425, 426, 427, 428, 429, 96, 582, 430, 431, 432, 433, 440, 572, 434, 463, 435, 436, 464, 437, 446, 450, 441, 890, 447, 451, 448, 449, 473, 545, 452, 546, 474, 266, 483, 484, 522, 525, 534, 639, 523, 640, 535, 526, 483, 484, 527, 548, 714, 557, 795, 549, 558, 577, 578, 616, 559, 619, 628, 617, 675, 560, 629, 620, 577, 578, 621, 642, 717, 651, 719, 643, 652, 718, 676, 714, 653, 731, 728, 720, 756, 654, 729, 800, 732, 798, 715, 809, 796, 733, 799, 810, 801, 812, 757, 840, 853, 841, 845, 891, 813, 846, 892, 893, 894, 814, 895, 896, 847, 897, 898, 854, 899, 828, 900, 848, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 923, 922, 924, 925, 926, 930, 931, 927, 932, 933, 934, 936, 937, 938, 928, 939, 940, 941, 942, 943, 944, 929, 945, 946, 947, 935, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1026, 1027, 1028, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1025, 1039, 1040, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1098, 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1097, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181, 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1191, 1203, 1204, 1205, 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1251, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1273, 1290, 1291, 1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332, 1333, 1334, 1318, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377, 1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401, 1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1271, 1272, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436, 1437, 1438, 1439, 1316, 1317, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466, 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 89, 91, 91, 94, 94, 98, 98, 179, 180, 180, 182, 182, 184, 184, 92, 92, 95, 95, 99, 99, 878, 877, 876, 875, 874, 873, 872, 871, 870, 869, 868, 867, 866, 865, 864, 863, 862, 861, 860, 859, 858, 857, 856, 855, 852, 851, 850, 849, 844, 843, 842, 839, 838, 837, 836, 835, 834, 833, 832, 831, 830, 829, 827, 826, 825, 824, 823, 822, 821, 820, 819, 818, 817, 816, 815, 811, 808, 807, 806, 805, 804, 803, 802, 797, 794, 793, 792, 791, 790, 789, 788, 787, 786, 785, 784, 783, 782, 781, 780, 779, 778, 777, 776, 775, 774, 773, 772, 771, 770, 769, 768, 767, 766, 765, 764, 763, 762, 761, 760, 759, 758, 755, 754, 753, 752, 751, 750, 749, 748, 747, 746, 745, 744, 743, 742, 741, 740, 739, 738, 737, 736, 735, 734, 730, 727, 726, 725, 724, 723, 722, 721, 716, 713, 712, 711, 710, 709, 708, 707, 706, 705, 704, 703, 702, 701, 700, 699, 698, 697, 696, 695, 694, 693, 692, 691, 690, 689, 688, 687, 686, 685, 684, 683, 682, 681, 680, 679, 678, 677, 674, 673, 672, 671, 670, 669, 668, 667, 666, 665, 664, 663, 662, 661, 660, 659, 658, 657, 656, 655, 650, 649, 648, 647, 646, 580, 579, 645, 644, 641, 638, 637, 636, 635, 634, 633, 632, 442, 576, 631, 630, 627, 626, 625, 624, 623, 622, 618, 615, 614, 613, 612, 611, 610, 609, 608, 575, 607, 606, 605, 604, 574, 603, 602, 601, 600, 599, 598, 597, 596, 595, 594, 593, 573, 592, 591, 590, 589, 588, 587, 586, 585, 584, 583, 571, 581, 580, 579, 576, 575, 574, 573, 572, 571, 570, 569, 568, 567, 566, 565, 564, 563, 562, 561, 556, 555, 554, 553, 552, 486, 485, 551, 550, 547, 544, 543, 542, 541, 540, 539, 538, 338, 482, 537, 536, 533, 532, 531, 530, 529, 528, 524, 521, 520, 519, 518, 517, 516, 515, 514, 481, 513, 512, 511, 510, 480, 509, 508, 507, 506, 505, 504, 503, 502, 501, 500, 499, 479, 498, 497, 496, 495, 494, 493, 492, 491, 490, 489, 477, 487, 486, 485, 482, 481, 480, 479, 478, 477, 476, 475, 472, 471, 470, 469, 468, 467, 466, 465, 462, 461, 460, 459, 456, 455, 454, 453, 445, 444, 443, 442, 439, 438, 424, 423, 422, 421, 418, 417, 416, 411, 408, 407, 406, 403, 402, 401, 398, 397, 396, 395, 394, 393, 392, 391, 390, 389, 388, 387, 386, 385, 381, 380, 379, 378, 377, 376, 375, 374, 373, 372, 371, 368, 367, 366, 365, 364, 363, 362, 361, 358, 357, 356, 355, 352, 351, 350, 349, 341, 340, 339, 338, 335, 334, 320, 319, 318, 317, 314, 313, 312, 307, 304, 303, 302, 299, 298, 297, 294, 293, 292, 291, 290, 289, 288, 287, 286, 285, 284, 283, 282, 281, 277, 276, 275, 274, 273, 272, 271, 270, 269, 268, 267, 265, 90, 261, 243, 217, 96, 195, 194, 193, 192, 191, 190, 189, 176, 158, 132, 96, 110, 109, 108, 107, 106, 105, 104, 90, 1508, 88, 88, 7, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508 } ; static yyconst flex_int16_t yy_chk[1735] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 11, 11, 11, 12, 12, 37, 11, 13, 13, 12, 30, 13, 19, 13, 11, 37, 19, 12, 44, 30, 95, 13, 16, 16, 16, 16, 16, 16, 44, 29, 47, 12, 17, 17, 17, 17, 17, 17, 28, 47, 31, 28, 29, 28, 31, 32, 29, 95, 28, 33, 32, 32, 31, 33, 35, 32, 31, 36, 35, 33, 714, 41, 33, 39, 38, 36, 36, 38, 39, 38, 40, 36, 41, 39, 42, 40, 41, 39, 49, 46, 46, 67, 42, 715, 42, 46, 49, 42, 46, 57, 42, 45, 45, 57, 67, 45, 716, 45, 67, 45, 69, 68, 45, 717, 69, 45, 45, 51, 51, 51, 68, 45, 69, 51, 52, 52, 69, 74, 53, 53, 52, 51, 53, 73, 53, 74, 74, 73, 52, 75, 82, 74, 53, 55, 55, 55, 55, 55, 55, 75, 82, 151, 52, 56, 56, 56, 56, 56, 56, 66, 70, 151, 66, 71, 66, 70, 70, 71, 718, 66, 70, 79, 76, 71, 77, 76, 71, 76, 78, 77, 112, 80, 79, 78, 77, 87, 79, 85, 77, 80, 137, 80, 137, 87, 80, 112, 85, 80, 83, 83, 112, 127, 83, 719, 83, 127, 83, 88, 131, 83, 84, 84, 83, 83, 131, 88, 84, 88, 83, 84, 88, 94, 94, 88, 91, 91, 91, 94, 97, 97, 91, 135, 139, 143, 97, 94, 135, 143, 91, 98, 98, 220, 97, 98, 139, 98, 220, 167, 156, 94, 167, 720, 156, 98, 156, 156, 97, 101, 101, 101, 101, 101, 101, 148, 148, 148, 148, 148, 216, 721, 148, 148, 148, 148, 216, 162, 148, 162, 148, 148, 157, 148, 177, 197, 157, 722, 177, 182, 182, 157, 180, 180, 180, 182, 183, 183, 180, 222, 197, 222, 183, 182, 723, 197, 180, 184, 184, 282, 183, 184, 212, 184, 228, 282, 212, 182, 228, 224, 247, 184, 247, 724, 183, 186, 186, 186, 186, 186, 186, 224, 233, 233, 233, 233, 233, 266, 386, 233, 233, 233, 233, 236, 386, 233, 252, 233, 233, 252, 233, 241, 242, 236, 725, 241, 242, 241, 241, 262, 346, 242, 346, 262, 266, 274, 274, 323, 325, 332, 450, 323, 450, 332, 325, 343, 343, 325, 348, 539, 360, 633, 348, 360, 378, 378, 427, 360, 429, 436, 427, 496, 360, 436, 429, 447, 447, 429, 452, 541, 464, 544, 452, 464, 541, 496, 665, 464, 555, 552, 544, 590, 464, 552, 638, 555, 635, 539, 646, 633, 555, 635, 646, 638, 649, 590, 678, 688, 678, 682, 726, 649, 682, 727, 728, 729, 649, 730, 731, 682, 732, 733, 688, 734, 665, 735, 682, 736, 737, 738, 739, 740, 742, 743, 744, 746, 747, 748, 749, 750, 752, 753, 754, 755, 756, 757, 758, 759, 760, 759, 761, 762, 763, 765, 766, 763, 767, 768, 769, 770, 771, 772, 763, 773, 774, 775, 776, 777, 778, 763, 780, 781, 782, 769, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 823, 824, 825, 827, 828, 829, 830, 831, 832, 833, 834, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 871, 872, 873, 874, 875, 876, 878, 879, 880, 864, 881, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 894, 895, 896, 897, 898, 899, 900, 901, 903, 904, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 952, 953, 954, 955, 956, 957, 959, 960, 961, 945, 962, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 975, 976, 977, 978, 979, 980, 981, 982, 984, 985, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1005, 1006, 1007, 1008, 1009, 1010, 1013, 1014, 1015, 1016, 1017, 1018, 1020, 1022, 1023, 1024, 1025, 1026, 1027, 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1037, 1038, 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1061, 1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1056, 1070, 1071, 1072, 1073, 1074, 1075, 1077, 1078, 1079, 1080, 1081, 1082, 1085, 1086, 1087, 1088, 1089, 1090, 1092, 1094, 1095, 1096, 1097, 1098, 1099, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1109, 1110, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1133, 1134, 1135, 1136, 1138, 1139, 1140, 1141, 1144, 1128, 1145, 1147, 1148, 1152, 1153, 1154, 1155, 1157, 1158, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171, 1172, 1173, 1174, 1158, 1175, 1177, 1178, 1179, 1180, 1181, 1182, 1186, 1189, 1190, 1191, 1192, 1194, 1198, 1199, 1200, 1201, 1204, 1205, 1207, 1208, 1212, 1213, 1214, 1215, 1217, 1218, 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231, 1232, 1233, 1234, 1218, 1235, 1237, 1238, 1239, 1240, 1241, 1242, 1246, 1249, 1250, 1251, 1252, 1254, 1258, 1259, 1260, 1261, 1262, 1263, 1265, 1266, 1267, 1268, 1273, 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1284, 1285, 1286, 1288, 1291, 1292, 1293, 1294, 1296, 1297, 1298, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308, 1310, 1311, 1312, 1313, 1318, 1319, 1320, 1321, 1322, 1323, 1324, 1325, 1326, 1327, 1329, 1330, 1331, 1333, 1336, 1337, 1338, 1339, 1341, 1342, 1343, 1345, 1346, 1347, 1348, 1352, 1354, 1355, 1357, 1358, 1358, 1360, 1362, 1363, 1364, 1365, 1368, 1369, 1370, 1371, 1372, 1374, 1377, 1379, 1380, 1382, 1386, 1388, 1389, 1391, 1392, 1392, 1394, 1396, 1397, 1398, 1399, 1402, 1403, 1404, 1405, 1406, 1408, 1411, 1413, 1414, 1416, 1417, 1418, 1419, 1420, 1421, 1422, 1423, 1424, 1425, 1426, 1427, 1429, 1431, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446, 1448, 1450, 1453, 1455, 1456, 1458, 1462, 1467, 1468, 1470, 1471, 1473, 1477, 1482, 1483, 1486, 1487, 1488, 1489, 1492, 1493, 1494, 1495, 1497, 1498, 1501, 1502, 1509, 1510, 1510, 1511, 1511, 1512, 1512, 1513, 1514, 1514, 1515, 1515, 1516, 1516, 1517, 1517, 1518, 1518, 1519, 1519, 713, 712, 711, 710, 709, 708, 707, 706, 705, 704, 703, 702, 701, 700, 699, 697, 696, 695, 694, 693, 692, 691, 690, 689, 687, 686, 685, 684, 681, 680, 679, 677, 676, 675, 674, 673, 672, 671, 669, 668, 667, 666, 663, 662, 661, 659, 658, 657, 656, 655, 654, 653, 652, 651, 650, 647, 645, 644, 643, 642, 641, 640, 639, 634, 632, 630, 629, 628, 627, 626, 625, 624, 623, 622, 621, 620, 619, 618, 617, 616, 615, 614, 613, 612, 611, 610, 608, 607, 605, 604, 602, 600, 599, 598, 597, 596, 595, 594, 593, 592, 591, 589, 588, 587, 586, 585, 584, 583, 582, 581, 569, 568, 567, 565, 564, 563, 562, 561, 560, 559, 558, 557, 556, 553, 551, 550, 549, 548, 547, 546, 545, 540, 538, 536, 535, 534, 533, 532, 531, 530, 529, 528, 527, 526, 525, 524, 523, 522, 521, 520, 519, 518, 517, 516, 514, 513, 511, 510, 508, 506, 505, 504, 503, 502, 501, 500, 499, 498, 497, 495, 494, 493, 492, 491, 490, 489, 488, 487, 476, 475, 474, 473, 471, 470, 469, 468, 467, 466, 465, 462, 461, 460, 459, 457, 456, 455, 454, 453, 451, 449, 448, 446, 445, 444, 443, 441, 440, 439, 438, 437, 435, 434, 433, 432, 431, 430, 428, 426, 425, 423, 422, 420, 419, 418, 417, 416, 415, 414, 413, 412, 411, 410, 409, 408, 406, 405, 404, 403, 402, 401, 400, 399, 398, 397, 396, 395, 393, 392, 391, 390, 389, 388, 387, 385, 383, 380, 379, 377, 376, 375, 374, 373, 372, 371, 370, 369, 367, 366, 365, 364, 363, 362, 361, 358, 357, 356, 355, 353, 352, 351, 350, 349, 347, 345, 344, 342, 341, 340, 339, 337, 336, 335, 334, 333, 331, 330, 329, 328, 327, 326, 324, 322, 321, 319, 318, 316, 315, 314, 313, 312, 311, 310, 309, 308, 307, 306, 305, 304, 302, 301, 300, 299, 298, 297, 296, 295, 294, 293, 292, 291, 289, 288, 287, 286, 285, 284, 283, 281, 279, 276, 275, 273, 272, 271, 270, 269, 268, 264, 263, 261, 260, 259, 258, 256, 255, 254, 253, 251, 250, 249, 248, 246, 245, 244, 243, 240, 239, 238, 237, 235, 234, 232, 231, 230, 229, 227, 226, 225, 221, 219, 218, 217, 215, 214, 213, 211, 210, 209, 208, 207, 206, 205, 204, 203, 202, 201, 200, 199, 198, 196, 195, 194, 193, 192, 191, 190, 189, 188, 187, 178, 176, 175, 174, 173, 171, 170, 169, 168, 166, 165, 164, 163, 161, 160, 159, 158, 155, 154, 153, 152, 150, 149, 147, 146, 145, 144, 142, 141, 140, 136, 134, 133, 132, 130, 129, 128, 126, 125, 124, 123, 122, 121, 120, 119, 118, 117, 116, 115, 114, 113, 111, 110, 109, 108, 107, 106, 105, 104, 103, 102, 99, 92, 90, 86, 81, 72, 65, 64, 63, 62, 61, 60, 59, 58, 48, 43, 34, 27, 26, 25, 24, 23, 22, 21, 20, 9, 7, 6, 5, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508 } ; 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 #define yymore() yymore_used_but_not_detected #define YY_MORE_ADJ 0 #define YY_RESTORE_YY_MORE_OFFSET char *yytext; #line 1 "../rcfile_l.l" #line 2 "../rcfile_l.l" /* * rcfile_l.l -- lexer for the run control file * * For license terms, see the file COPYING in this directory. */ #include #include "config.h" #include "fetchmail.h" #include "rcfile_y.h" int prc_lineno = 1; #ifdef LEXDEBUG #define SETSTATE(n) do {BEGIN(n); if (yydebug) fprintf(stderr, "Entering lexer state %d\n", n);} while (0) #else #define SETSTATE(n) BEGIN(n) #endif /* LEXDEBUG */ /* this doesn't work with Linux lex, see the INSTALL file */ #line 1357 "rcfile_l.c" #define INITIAL 0 #define NAME 1 #define AUTH 2 #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 ); /* 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 (void) fwrite( yytext, yyleng, 1, yyout ) #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 31 "../rcfile_l.l" #line 1513 "rcfile_l.c" 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_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 >= 1509 ) 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] != 1678 ); 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: /* rule 1 can match eol */ YY_RULE_SETUP #line 33 "../rcfile_l.l" { yytext[yyleng-1] = '\0'; escapes(yytext+1, yytext); yyleng = strlen(yytext); yylval.sval = yytext; SETSTATE(0); return STRING; } YY_BREAK case 2: /* rule 2 can match eol */ YY_RULE_SETUP #line 41 "../rcfile_l.l" { yytext[yyleng-1] = '\0'; escapes(yytext+1, yytext); yyleng = strlen(yytext); yylval.sval = yytext; SETSTATE(0); return STRING; } YY_BREAK case 3: YY_RULE_SETUP #line 50 "../rcfile_l.l" { BEGIN(0); return WILDCARD; } YY_BREAK case 4: YY_RULE_SETUP #line 52 "../rcfile_l.l" { static char *in; static size_t ins; if ((size_t)yyleng + 1 > ins) { ins = yyleng + 1; in = xrealloc(in, ins); } memcpy(in, yytext, yyleng); in[yyleng] = '\0'; escapes(in, in); yyleng = strlen(in); yylval.sval = in; SETSTATE(0); return STRING; } YY_BREAK case 5: YY_RULE_SETUP #line 69 "../rcfile_l.l" { return SET; } YY_BREAK case 6: YY_RULE_SETUP #line 70 "../rcfile_l.l" { return LOGFILE; } YY_BREAK case 7: YY_RULE_SETUP #line 71 "../rcfile_l.l" { return IDFILE; } YY_BREAK case 8: YY_RULE_SETUP #line 72 "../rcfile_l.l" { return PIDFILE; } YY_BREAK case 9: YY_RULE_SETUP #line 73 "../rcfile_l.l" { return DAEMON; } YY_BREAK case 10: YY_RULE_SETUP #line 74 "../rcfile_l.l" { return SYSLOG; } YY_BREAK case 11: YY_RULE_SETUP #line 75 "../rcfile_l.l" { return INVISIBLE; } YY_BREAK case 12: YY_RULE_SETUP #line 76 "../rcfile_l.l" { return SHOWDOTS; } YY_BREAK case 13: YY_RULE_SETUP #line 77 "../rcfile_l.l" { return POSTMASTER; } YY_BREAK case 14: YY_RULE_SETUP #line 78 "../rcfile_l.l" { return BOUNCEMAIL; } YY_BREAK case 15: YY_RULE_SETUP #line 79 "../rcfile_l.l" { return SPAMBOUNCE; } YY_BREAK case 16: YY_RULE_SETUP #line 80 "../rcfile_l.l" { return WARNINGS; } YY_BREAK case 17: YY_RULE_SETUP #line 81 "../rcfile_l.l" { return TRACEPOLLS; } YY_BREAK case 18: YY_RULE_SETUP #line 83 "../rcfile_l.l" { return DEFAULTS; } YY_BREAK case 19: YY_RULE_SETUP #line 84 "../rcfile_l.l" { return POLL; } YY_BREAK case 20: YY_RULE_SETUP #line 85 "../rcfile_l.l" { return POLL; } YY_BREAK case 21: YY_RULE_SETUP #line 86 "../rcfile_l.l" { return SKIP; } YY_BREAK case 22: YY_RULE_SETUP #line 87 "../rcfile_l.l" { return VIA; } YY_BREAK case 23: YY_RULE_SETUP #line 88 "../rcfile_l.l" { return AKA; } YY_BREAK case 24: YY_RULE_SETUP #line 89 "../rcfile_l.l" { return LOCALDOMAINS; } YY_BREAK case 25: YY_RULE_SETUP #line 90 "../rcfile_l.l" { return PROTOCOL; } YY_BREAK case 26: YY_RULE_SETUP #line 91 "../rcfile_l.l" { return SERVICE; } YY_BREAK case 27: YY_RULE_SETUP #line 92 "../rcfile_l.l" { return PORT; } YY_BREAK case 28: YY_RULE_SETUP #line 93 "../rcfile_l.l" { return INTERVAL; } YY_BREAK case 29: YY_RULE_SETUP #line 94 "../rcfile_l.l" { SETSTATE(AUTH); return AUTHENTICATE; } YY_BREAK case 30: YY_RULE_SETUP #line 95 "../rcfile_l.l" { SETSTATE(AUTH); return AUTHENTICATE; } YY_BREAK case 31: YY_RULE_SETUP #line 96 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_ANY; return AUTHTYPE;} YY_BREAK case 32: YY_RULE_SETUP #line 97 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_GSSAPI; return AUTHTYPE;} YY_BREAK case 33: YY_RULE_SETUP #line 98 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;} YY_BREAK case 34: YY_RULE_SETUP #line 99 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_KERBEROS_V5; return AUTHTYPE;} YY_BREAK case 35: YY_RULE_SETUP #line 100 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;} YY_BREAK case 36: YY_RULE_SETUP #line 101 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_SSH; return AUTHTYPE;} YY_BREAK case 37: YY_RULE_SETUP #line 102 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_EXTERNAL; return AUTHTYPE;} YY_BREAK case 38: YY_RULE_SETUP #line 103 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_OTP; return AUTHTYPE;} YY_BREAK case 39: YY_RULE_SETUP #line 104 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_CRAM_MD5; return AUTHTYPE;} YY_BREAK case 40: YY_RULE_SETUP #line 105 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_MSN; return AUTHTYPE;} YY_BREAK case 41: YY_RULE_SETUP #line 106 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_NTLM; return AUTHTYPE;} YY_BREAK case 42: YY_RULE_SETUP #line 107 "../rcfile_l.l" { SETSTATE(0); yylval.proto = A_PASSWORD; return AUTHTYPE;} YY_BREAK case 43: YY_RULE_SETUP #line 108 "../rcfile_l.l" { return TIMEOUT;} YY_BREAK case 44: YY_RULE_SETUP #line 109 "../rcfile_l.l" { return ENVELOPE; } YY_BREAK case 45: YY_RULE_SETUP #line 110 "../rcfile_l.l" { return QVIRTUAL; } YY_BREAK case 46: YY_RULE_SETUP #line 111 "../rcfile_l.l" { return PRINCIPAL; } YY_BREAK case 47: YY_RULE_SETUP #line 112 "../rcfile_l.l" { return ESMTPNAME; } YY_BREAK case 48: YY_RULE_SETUP #line 113 "../rcfile_l.l" { return ESMTPPASSWORD; } YY_BREAK case 49: YY_RULE_SETUP #line 116 "../rcfile_l.l" {SETSTATE(NAME); return USERNAME; } YY_BREAK case 50: YY_RULE_SETUP #line 117 "../rcfile_l.l" {SETSTATE(NAME); return PASSWORD; } YY_BREAK case 51: YY_RULE_SETUP #line 118 "../rcfile_l.l" { return FOLDER; } YY_BREAK case 52: YY_RULE_SETUP #line 119 "../rcfile_l.l" { return SMTPHOST; } YY_BREAK case 53: YY_RULE_SETUP #line 120 "../rcfile_l.l" { return FETCHDOMAINS; } YY_BREAK case 54: YY_RULE_SETUP #line 121 "../rcfile_l.l" { return SMTPADDRESS; } YY_BREAK case 55: YY_RULE_SETUP #line 122 "../rcfile_l.l" { return SMTPNAME; } YY_BREAK case 56: YY_RULE_SETUP #line 123 "../rcfile_l.l" { return SPAMRESPONSE; } YY_BREAK case 57: YY_RULE_SETUP #line 124 "../rcfile_l.l" { return MDA; } YY_BREAK case 58: YY_RULE_SETUP #line 125 "../rcfile_l.l" { return BSMTP; } YY_BREAK case 59: YY_RULE_SETUP #line 126 "../rcfile_l.l" { return LMTP; } YY_BREAK case 60: YY_RULE_SETUP #line 127 "../rcfile_l.l" { return PRECONNECT; } YY_BREAK case 61: YY_RULE_SETUP #line 128 "../rcfile_l.l" { return POSTCONNECT; } YY_BREAK case 62: YY_RULE_SETUP #line 129 "../rcfile_l.l" { return INTERFACE; } YY_BREAK case 63: YY_RULE_SETUP #line 130 "../rcfile_l.l" { return MONITOR; } YY_BREAK case 64: YY_RULE_SETUP #line 131 "../rcfile_l.l" { return PLUGIN; } YY_BREAK case 65: YY_RULE_SETUP #line 132 "../rcfile_l.l" { return PLUGOUT; } YY_BREAK case 66: YY_RULE_SETUP #line 133 "../rcfile_l.l" { return BATCHLIMIT; } YY_BREAK case 67: YY_RULE_SETUP #line 134 "../rcfile_l.l" { return FETCHLIMIT; } YY_BREAK case 68: YY_RULE_SETUP #line 135 "../rcfile_l.l" { return FETCHSIZELIMIT; } YY_BREAK case 69: YY_RULE_SETUP #line 136 "../rcfile_l.l" { return FASTUIDL; } YY_BREAK case 70: YY_RULE_SETUP #line 137 "../rcfile_l.l" { return EXPUNGE; } YY_BREAK case 71: YY_RULE_SETUP #line 138 "../rcfile_l.l" { return PROPERTIES; } YY_BREAK case 72: YY_RULE_SETUP #line 140 "../rcfile_l.l" { SETSTATE(NAME); return IS; } YY_BREAK case 73: YY_RULE_SETUP #line 141 "../rcfile_l.l" { return HERE; } YY_BREAK case 74: YY_RULE_SETUP #line 142 "../rcfile_l.l" { return THERE; } YY_BREAK case 75: YY_RULE_SETUP #line 143 "../rcfile_l.l" { SETSTATE(NAME); return TO; } YY_BREAK case 76: YY_RULE_SETUP #line 144 "../rcfile_l.l" { SETSTATE(NAME); return MAP; } YY_BREAK case 77: #line 147 "../rcfile_l.l" case 78: #line 148 "../rcfile_l.l" case 79: #line 149 "../rcfile_l.l" case 80: #line 150 "../rcfile_l.l" case 81: #line 151 "../rcfile_l.l" case 82: #line 152 "../rcfile_l.l" case 83: #line 153 "../rcfile_l.l" case 84: #line 154 "../rcfile_l.l" case 85: #line 155 "../rcfile_l.l" case 86: #line 156 "../rcfile_l.l" case 87: #line 157 "../rcfile_l.l" case 88: #line 158 "../rcfile_l.l" case 89: #line 159 "../rcfile_l.l" case 90: #line 160 "../rcfile_l.l" case 91: #line 161 "../rcfile_l.l" case 92: #line 162 "../rcfile_l.l" case 93: #line 163 "../rcfile_l.l" case 94: YY_RULE_SETUP #line 163 "../rcfile_l.l" { yyless(2); return NO; } YY_BREAK case 95: YY_RULE_SETUP #line 168 "../rcfile_l.l" {return NO;} YY_BREAK case 96: YY_RULE_SETUP #line 170 "../rcfile_l.l" { return KEEP; } YY_BREAK case 97: YY_RULE_SETUP #line 171 "../rcfile_l.l" { return FLUSH; } YY_BREAK case 98: YY_RULE_SETUP #line 172 "../rcfile_l.l" { return LIMITFLUSH; } YY_BREAK case 99: YY_RULE_SETUP #line 173 "../rcfile_l.l" { return FETCHALL; } YY_BREAK case 100: YY_RULE_SETUP #line 174 "../rcfile_l.l" { return REWRITE; } YY_BREAK case 101: YY_RULE_SETUP #line 175 "../rcfile_l.l" { return FORCECR; } YY_BREAK case 102: YY_RULE_SETUP #line 176 "../rcfile_l.l" { return STRIPCR; } YY_BREAK case 103: YY_RULE_SETUP #line 177 "../rcfile_l.l" { return PASS8BITS; } YY_BREAK case 104: YY_RULE_SETUP #line 178 "../rcfile_l.l" { return DROPSTATUS; } YY_BREAK case 105: YY_RULE_SETUP #line 179 "../rcfile_l.l" { return DROPDELIVERED; } YY_BREAK case 106: YY_RULE_SETUP #line 180 "../rcfile_l.l" { return MIMEDECODE; } YY_BREAK case 107: YY_RULE_SETUP #line 181 "../rcfile_l.l" { return IDLE; } YY_BREAK case 108: YY_RULE_SETUP #line 182 "../rcfile_l.l" { return DNS; } YY_BREAK case 109: YY_RULE_SETUP #line 183 "../rcfile_l.l" { return UIDL; } YY_BREAK case 110: YY_RULE_SETUP #line 184 "../rcfile_l.l" { return SSL; } YY_BREAK case 111: YY_RULE_SETUP #line 185 "../rcfile_l.l" { return SSLKEY; } YY_BREAK case 112: YY_RULE_SETUP #line 186 "../rcfile_l.l" { return SSLCERT; } YY_BREAK case 113: YY_RULE_SETUP #line 187 "../rcfile_l.l" { return SSLPROTO; } YY_BREAK case 114: YY_RULE_SETUP #line 188 "../rcfile_l.l" { return SSLCERTCK; } YY_BREAK case 115: YY_RULE_SETUP #line 189 "../rcfile_l.l" { return SSLCERTPATH; } YY_BREAK case 116: YY_RULE_SETUP #line 190 "../rcfile_l.l" { return SSLFINGERPRINT; } YY_BREAK case 117: YY_RULE_SETUP #line 191 "../rcfile_l.l" { return CHECKALIAS; } YY_BREAK case 118: YY_RULE_SETUP #line 193 "../rcfile_l.l" { return LIMIT; } YY_BREAK case 119: YY_RULE_SETUP #line 195 "../rcfile_l.l" {/* EMPTY */} YY_BREAK case 120: YY_RULE_SETUP #line 196 "../rcfile_l.l" {/* EMPTY */} YY_BREAK case 121: YY_RULE_SETUP #line 197 "../rcfile_l.l" {/* EMPTY */} YY_BREAK case 122: YY_RULE_SETUP #line 198 "../rcfile_l.l" {/* EMPTY */} YY_BREAK case 123: YY_RULE_SETUP #line 199 "../rcfile_l.l" {/* EMPTY */} YY_BREAK case 124: YY_RULE_SETUP #line 200 "../rcfile_l.l" {/* EMPTY */} YY_BREAK case 125: YY_RULE_SETUP #line 202 "../rcfile_l.l" { yylval.proto = P_AUTO; return PROTO; } YY_BREAK case 126: YY_RULE_SETUP #line 203 "../rcfile_l.l" { yylval.proto = P_POP2; return PROTO; } YY_BREAK case 127: YY_RULE_SETUP #line 204 "../rcfile_l.l" { return SDPS; } YY_BREAK case 128: YY_RULE_SETUP #line 205 "../rcfile_l.l" { yylval.proto = P_POP3; return PROTO; } YY_BREAK case 129: YY_RULE_SETUP #line 206 "../rcfile_l.l" { yylval.proto = P_IMAP; return PROTO; } YY_BREAK case 130: YY_RULE_SETUP #line 207 "../rcfile_l.l" { yylval.proto = P_APOP; return PROTO; } YY_BREAK case 131: YY_RULE_SETUP #line 208 "../rcfile_l.l" { yylval.proto = P_RPOP; return PROTO; } YY_BREAK case 132: YY_RULE_SETUP #line 209 "../rcfile_l.l" { yylval.proto = P_ETRN; return PROTO; } YY_BREAK case 133: YY_RULE_SETUP #line 210 "../rcfile_l.l" { yylval.proto = P_ODMR; return PROTO; } YY_BREAK case 134: YY_RULE_SETUP #line 211 "../rcfile_l.l" { return KPOP; } YY_BREAK case 135: /* rule 135 can match eol */ YY_RULE_SETUP #line 213 "../rcfile_l.l" { prc_lineno++; } /* newline is ignored */ YY_BREAK case 136: YY_RULE_SETUP #line 215 "../rcfile_l.l" { yylval.number = atoi(yytext); return NUMBER; } YY_BREAK case 137: YY_RULE_SETUP #line 217 "../rcfile_l.l" { escapes(yytext, yytext); yyleng = strlen(yytext); yylval.sval = yytext; return STRING; } YY_BREAK case 138: YY_RULE_SETUP #line 224 "../rcfile_l.l" ; /* whitespace */ YY_BREAK case 139: YY_RULE_SETUP #line 226 "../rcfile_l.l" ECHO; YY_BREAK #line 2280 "rcfile_l.c" case YY_STATE_EOF(INITIAL): case YY_STATE_EOF(NAME): case YY_STATE_EOF(AUTH): yyterminate(); 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 { int num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; while ( num_to_read <= 0 ) { /* Not enough room in the buffer - grow it. */ /* just a shorter name for the current buffer */ YY_BUFFER_STATE b = YY_CURRENT_BUFFER; int yy_c_buf_p_offset = (int) ((yy_c_buf_p) - b->yy_ch_buf); if ( b->yy_is_our_buffer ) { int new_size = b->yy_buf_size * 2; if ( new_size <= 0 ) b->yy_buf_size += b->yy_buf_size / 8; else b->yy_buf_size *= 2; b->yy_ch_buf = (char *) /* Include room in for 2 EOB chars. */ yyrealloc((void *) b->yy_ch_buf,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; (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 >= 1509 ) 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 >= 1509 ) 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 == 1508); 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 */ int offset = (yy_c_buf_p) - (yytext_ptr); ++(yy_c_buf_p); switch ( yy_get_next_buffer( ) ) { case EOB_ACT_LAST_MATCH: /* This happens because yy_g_n_b() * sees that we've accumulated a * token and flags that we need to * try matching the token before * proceeding. But for input(), * there's no matching to consider. * So convert the EOB_ACT_LAST_MATCH * to EOB_ACT_END_OF_FILE. */ /* Reset buffer status. */ yyrestart(yyin ); /*FALLTHROUGH*/ case EOB_ACT_END_OF_FILE: { if ( yywrap( ) ) return 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 ); } #ifndef __cplusplus extern int isatty (int ); #endif /* __cplusplus */ /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. */ static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) { int oerrno = errno; yy_flush_buffer(b ); b->yy_input_file = file; b->yy_fill_buffer = 1; /* If b is the current buffer, then yy_init_buffer was _probably_ * called from yyrestart() or through yy_get_next_buffer. * In that case, we don't want to reset the lineno or column. */ if (b != YY_CURRENT_BUFFER){ b->yy_bs_lineno = 1; b->yy_bs_column = 0; } b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; errno = oerrno; } /** Discard all buffered characters. On the next scan, YY_INPUT will be called. * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. * */ void yy_flush_buffer (YY_BUFFER_STATE b ) { if ( ! b ) return; b->yy_n_chars = 0; /* We always need two end-of-buffer characters. The first causes * a transition to the end-of-buffer state. The second causes * a jam in that state. */ b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; b->yy_buf_pos = &b->yy_ch_buf[0]; b->yy_at_bol = 1; b->yy_buffer_status = YY_BUFFER_NEW; if ( b == YY_CURRENT_BUFFER ) yy_load_buffer_state( ); } /** Pushes the new state onto the stack. The new state becomes * the current state. This function will allocate the stack * if necessary. * @param new_buffer The new state. * */ void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) { if (new_buffer == NULL) return; yyensure_buffer_stack(); /* This block is copied from yy_switch_to_buffer. */ if ( YY_CURRENT_BUFFER ) { /* Flush out information for old buffer. */ *(yy_c_buf_p) = (yy_hold_char); YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); } /* Only push if top exists. Otherwise, replace top. */ if (YY_CURRENT_BUFFER) (yy_buffer_stack_top)++; YY_CURRENT_BUFFER_LVALUE = new_buffer; /* copied from yy_switch_to_buffer. */ yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } /** Removes and deletes the top of the stack, if present. * The next element becomes the new top. * */ void yypop_buffer_state (void) { if (!YY_CURRENT_BUFFER) return; yy_delete_buffer(YY_CURRENT_BUFFER ); YY_CURRENT_BUFFER_LVALUE = NULL; if ((yy_buffer_stack_top) > 0) --(yy_buffer_stack_top); if (YY_CURRENT_BUFFER) { yy_load_buffer_state( ); (yy_did_buffer_switch_on_eof) = 1; } } /* Allocates the stack if it does not exist. * Guarantees space for at least one push. */ static void yyensure_buffer_stack (void) { int num_to_alloc; if (!(yy_buffer_stack)) { /* First allocation is just for 2 elements, since we don't know if this * scanner will even need a stack. We use 2 instead of 1 to avoid an * immediate realloc on the next call. */ num_to_alloc = 1; (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc (num_to_alloc * sizeof(struct yy_buffer_state*) ); 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*) ); /* 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 str 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 bytes the byte buffer to scan * @param len the number of bytes in the buffer pointed to by @a bytes. * * @return the newly allocated buffer state object. */ YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) { YY_BUFFER_STATE b; char *buf; yy_size_t n; 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 input stream. * */ FILE *yyget_in (void) { return yyin; } /** Get the output stream. * */ FILE *yyget_out (void) { return yyout; } /** Get the length of the current token. * */ int yyget_leng (void) { return yyleng; } /** Get the current token. * */ char *yyget_text (void) { return yytext; } /** Set the 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 226 "../rcfile_l.l" /** process standard C-style escape sequences in a string, * this can never lengthen the output, so cp and tp may overlap as long * as cp >= tp. */ void escapes(const char *cp /** source string with escapes */, char *tp /** target buffer for digested string */) { while (*cp) { int cval = 0; /* we MUST check for NUL explicitly, as strchr(string, 0) will * always succeed! */ if (*cp == '\\' && cp[1] && strchr("0123456789xX", cp[1])) { char *dp; const char *hex = "00112233445566778899aAbBcCdDeEfF"; int dcount = 0; if (*++cp == 'x' || *cp == 'X') for (++cp; *cp && (dp = strchr(hex, *cp)) && (dcount++ < 2); cp++) cval = (cval * 16) + (dp - hex) / 2; else if (*cp == '0') while (*cp && strchr("01234567",*cp) != (char*)NULL && (dcount++ < 3)) cval = (cval * 8) + (*cp++ - '0'); else while (*cp && (strchr("0123456789",*cp)!=(char*)NULL)&&(dcount++ < 3)) cval = (cval * 10) + (*cp++ - '0'); } else if (*cp == '\\') /* C-style character escapes */ { switch (*++cp) { case '\n': cp++; continue; /* backslash before LF to join lines */ case '\0': goto done; /* ignore backslash at file end */ case '\\': cval = '\\'; break; case 'n': cval = '\n'; break; case 't': cval = '\t'; break; case 'b': cval = '\b'; break; case 'r': cval = '\r'; break; default: cval = *cp; } cp++; } else cval = *cp++; *tp++ = cval; } done: *tp = '\0'; }