diff options
Diffstat (limited to 'src/conf_lexer.c')
-rw-r--r-- | src/conf_lexer.c | 4278 |
1 files changed, 4278 insertions, 0 deletions
diff --git a/src/conf_lexer.c b/src/conf_lexer.c new file mode 100644 index 0000000..e9d42bb --- /dev/null +++ b/src/conf_lexer.c @@ -0,0 +1,4278 @@ + +#line 3 "conf_lexer.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 37 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif + +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ +#include <stdio.h> +#include <string.h> +#include <errno.h> +#include <stdlib.h> + +/* end standard C headers. */ + +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have <inttypes.h>. 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 <inttypes.h> +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 */ + +#define yywrap() 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; + +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 238 +#define YY_END_OF_BUFFER 239 +/* 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[1546] = + { 0, + 4, 4, 239, 237, 4, 3, 237, 5, 237, 237, + 6, 237, 237, 237, 237, 237, 237, 237, 237, 237, + 237, 237, 237, 237, 237, 237, 237, 237, 237, 237, + 237, 237, 237, 237, 237, 237, 4, 3, 0, 7, + 5, 236, 0, 2, 5, 6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 68, 0, 230, 0, 0, 0, 0, 0, 0, + 0, 235, 0, 0, 0, 0, 0, 0, 0, 96, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 217, 0, 0, + 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 79, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 203, 0, 0, 0, + 0, 0, 0, 143, 0, 0, 146, 0, 0, 0, + 0, 205, 128, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 164, 0, 0, 0, 0, 0, 13, + 0, 195, 225, 0, 0, 0, 0, 0, 0, 0, + 0, 216, 198, 0, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 41, 0, 0, + 200, 0, 0, 0, 0, 0, 0, 0, 63, 219, + + 0, 0, 0, 69, 70, 0, 0, 73, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 90, 0, 0, 0, 94, 0, 0, + 0, 0, 0, 103, 0, 0, 189, 0, 111, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 124, 0, + 0, 0, 0, 0, 0, 147, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 151, 0, + 0, 0, 0, 0, 0, 0, 160, 0, 0, 0, + 0, 215, 0, 0, 0, 9, 0, 0, 0, 224, + 0, 0, 196, 0, 0, 21, 0, 0, 199, 0, + + 0, 0, 34, 0, 0, 37, 0, 0, 0, 0, + 0, 42, 0, 44, 0, 46, 0, 0, 0, 0, + 0, 0, 218, 0, 0, 0, 0, 229, 0, 0, + 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 234, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 115, 0, 118, 0, 0, 0, 0, 0, 0, + 0, 137, 0, 0, 0, 0, 0, 0, 201, 0, + 148, 134, 0, 0, 0, 0, 0, 0, 135, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 161, 0, 0, 214, 163, 0, 0, 0, 11, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 58, 0, 0, + 0, 0, 0, 228, 0, 0, 0, 0, 0, 0, + 78, 213, 80, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 233, 0, 0, 221, 0, 188, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 106, 0, 0, + + 0, 0, 0, 0, 114, 0, 0, 119, 120, 0, + 0, 0, 0, 0, 223, 0, 138, 0, 0, 144, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 153, 204, 0, 0, 0, 192, + 0, 0, 0, 162, 210, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 18, 0, 22, 23, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 45, 0, 0, 0, 0, 0, 53, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 220, 0, 187, 202, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 122, 0, 0, 0, 0, 222, + 0, 0, 0, 141, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 155, 154, 0, 191, 157, 0, 0, + 0, 0, 0, 0, 0, 14, 211, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 65, 0, 0, 0, 0, 227, 0, + 0, 0, 0, 0, 186, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 232, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 100, 0, 105, 0, 207, 0, + 0, 0, 0, 107, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 209, 0, + 0, 226, 0, 0, 77, 0, 0, 0, 0, 0, + 82, 83, 0, 0, 0, 86, 231, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 182, 0, 109, 0, 0, 0, 116, 117, + 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 156, 0, + 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, + + 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 166, 0, 0, 84, 0, 0, 85, 0, + 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 112, 0, + 0, 0, 0, 0, 0, 139, 140, 0, 208, 145, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 29, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 54, 0, 59, 0, 0, 0, 0, 0, + 0, 0, 184, 175, 0, 81, 0, 0, 190, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 194, 0, 108, 0, 0, 0, 125, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 31, 0, 0, 0, 36, 39, 0, 0, 0, 47, + 48, 0, 0, 0, 61, 0, 0, 0, 0, 0, + + 0, 0, 76, 0, 0, 0, 0, 0, 0, 0, + 92, 93, 95, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 110, 113, 0, 0, 0, 0, 0, 212, + 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 173, 0, 0, 0, 10, 0, + 0, 0, 0, 0, 0, 0, 0, 35, 0, 43, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 170, 0, 0, 91, 0, 0, + 99, 0, 102, 0, 0, 0, 0, 0, 0, 0, + 136, 142, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 159, 0, 0, 174, 176, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 49, 51, 0, + 0, 0, 62, 0, 0, 0, 0, 0, 0, 0, + 0, 87, 0, 0, 0, 0, 0, 0, 104, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 8, 171, 0, 0, 0, + 0, 0, 0, 0, 0, 52, 0, 0, 60, 66, + 0, 0, 72, 0, 0, 0, 0, 0, 88, 0, + 0, 101, 0, 0, 0, 0, 0, 0, 0, 133, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 19, 20, 0, 0, 0, 0, 0, 0, 0, + 57, 0, 71, 0, 0, 0, 0, 167, 0, 0, + 98, 0, 193, 183, 0, 0, 0, 0, 0, 0, + 0, 177, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 123, 0, 0, 0, 130, 132, + 131, 180, 179, 178, 181, 0, 0, 0, 25, 0, + 0, 0, 0, 165, 0, 0, 0, 0, 168, 169, + 0, 97, 0, 0, 0, 0, 0, 152, 0, 0, + 0, 0, 0, 0, 0, 0, 185, 0, 0, 0, + + 127, 0, 0, 0, 0, 0, 0, 0, 0, 67, + 0, 0, 0, 126, 129, 0, 0, 0, 0, 32, + 0, 0, 74, 0, 17, 150, 0, 0, 0, 0, + 50, 89, 0, 0, 0, 33, 0, 0, 27, 0, + 0, 0, 26, 172, 0 + } ; + +static yyconst flex_int32_t yy_ec[256] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, + 1, 1, 1, 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, 1, 1, + 1, 6, 1, 1, 1, 7, 8, 9, 10, 9, + 11, 12, 9, 13, 9, 9, 9, 1, 1, 14, + 1, 15, 1, 1, 16, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, + 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, + 1, 1, 1, 1, 42, 1, 43, 44, 45, 46, + + 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, + 67, 68, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 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[69] = + { 0, + 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, 1, 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[1551] = + { 0, + 0, 0, 2962, 2963, 2959, 0, 66, 0, 64, 66, + 66, 98, 43, 146, 75, 58, 85, 76, 117, 109, + 51, 154, 155, 197, 239, 53, 177, 57, 125, 283, + 323, 190, 127, 168, 128, 143, 2958, 0, 86, 2963, + 0, 2963, 166, 2963, 0, 220, 181, 181, 181, 196, + 190, 200, 202, 203, 220, 209, 237, 237, 242, 231, + 221, 326, 247, 244, 235, 252, 256, 255, 292, 253, + 262, 276, 266, 303, 301, 264, 292, 290, 318, 332, + 327, 328, 342, 327, 341, 347, 342, 359, 351, 378, + 347, 338, 367, 350, 378, 375, 381, 390, 391, 2917, + + 383, 394, 399, 386, 385, 405, 446, 403, 422, 433, + 413, 396, 405, 443, 412, 427, 417, 431, 438, 439, + 2916, 448, 456, 498, 468, 463, 476, 474, 481, 474, + 493, 492, 492, 478, 2963, 495, 499, 489, 506, 500, + 2915, 499, 504, 501, 506, 508, 518, 514, 536, 523, + 546, 523, 547, 2963, 550, 539, 536, 540, 548, 540, + 556, 549, 558, 552, 560, 559, 555, 553, 565, 558, + 571, 571, 582, 561, 578, 2914, 583, 592, 144, 588, + 584, 595, 591, 606, 605, 601, 595, 601, 2963, 606, + 2913, 598, 618, 601, 600, 601, 619, 625, 626, 610, + + 624, 649, 638, 623, 645, 635, 647, 649, 638, 643, + 658, 646, 644, 661, 666, 671, 2963, 658, 654, 2912, + 660, 674, 658, 2963, 666, 669, 2963, 684, 682, 675, + 689, 2963, 686, 686, 694, 701, 690, 710, 704, 713, + 715, 699, 711, 712, 716, 721, 716, 711, 711, 720, + 720, 729, 727, 2963, 731, 732, 735, 742, 2911, 2963, + 757, 2963, 743, 758, 758, 751, 752, 2910, 750, 751, + 767, 2963, 2963, 766, 753, 2963, 759, 776, 774, 2909, + 765, 769, 757, 778, 768, 768, 783, 2963, 775, 775, + 2963, 778, 784, 798, 811, 800, 811, 2908, 2963, 798, + + 805, 801, 801, 2963, 2963, 2907, 818, 2906, 823, 823, + 820, 2905, 813, 828, 818, 830, 862, 835, 846, 850, + 834, 842, 845, 2963, 852, 2904, 853, 2903, 852, 857, + 857, 868, 874, 888, 2902, 863, 2963, 2901, 2963, 886, + 874, 887, 888, 890, 886, 898, 898, 918, 2900, 904, + 908, 906, 934, 919, 905, 2963, 914, 924, 922, 2930, + 937, 911, 911, 928, 2930, 2897, 958, 959, 2963, 956, + 942, 955, 956, 958, 953, 964, 2963, 969, 956, 962, + 2896, 959, 974, 959, 962, 975, 980, 976, 978, 2963, + 976, 984, 2895, 992, 1000, 2963, 1005, 1010, 2963, 1002, + + 1006, 1004, 2963, 1009, 1004, 2963, 1009, 1022, 1007, 1014, + 1026, 2963, 1026, 2963, 1031, 2894, 1021, 1018, 1015, 1027, + 1024, 1020, 2963, 1043, 1042, 1039, 1043, 1031, 1048, 1031, + 2893, 2892, 1051, 2891, 1053, 1049, 1065, 1067, 1071, 1072, + 1061, 1075, 1066, 1077, 1081, 1084, 1068, 1063, 1082, 1085, + 1077, 1088, 1094, 1094, 1084, 1101, 1100, 1109, 1116, 1110, + 1105, 1104, 2890, 1125, 1118, 1104, 1131, 1135, 1122, 2889, + 1126, 2963, 1125, 2963, 1134, 1138, 1129, 1143, 1151, 1154, + 1153, 2963, 1143, 1146, 1173, 1162, 1174, 2888, 2963, 1179, + 2887, 2963, 1183, 1173, 1182, 2886, 1169, 1185, 2963, 1179, + + 1170, 1178, 1178, 1190, 1186, 1187, 1197, 1187, 1196, 1204, + 1197, 2914, 1197, 1204, 2963, 2963, 1222, 2884, 1210, 2963, + 1221, 1215, 1218, 1225, 1220, 1235, 1230, 1234, 1226, 1226, + 1227, 1232, 1244, 1236, 1239, 1234, 2883, 2963, 1254, 2882, + 1246, 1251, 1275, 2881, 1245, 2880, 1261, 2879, 1267, 1248, + 2878, 1282, 1273, 2963, 1278, 1269, 1290, 1292, 1296, 1294, + 2963, 2963, 2963, 1297, 1287, 1301, 1294, 1289, 1300, 1305, + 1306, 1301, 1299, 1298, 2963, 1299, 1316, 1307, 1319, 1315, + 1332, 1334, 1338, 1329, 1334, 1342, 1333, 1331, 1346, 2877, + 1336, 1350, 1342, 1341, 1355, 1344, 1357, 2963, 1341, 1347, + + 1354, 1367, 1351, 1357, 2963, 1358, 1370, 2963, 1378, 1367, + 1385, 1367, 1383, 1391, 1375, 1395, 1395, 1392, 1381, 2963, + 1392, 1394, 1394, 1391, 1394, 1402, 2876, 1394, 1435, 1404, + 2875, 1407, 2874, 1411, 2963, 2963, 1421, 1422, 1409, 2963, + 1429, 1437, 1435, 2963, 2963, 1430, 1442, 1432, 1435, 1454, + 1457, 1445, 1456, 1453, 1448, 1443, 2963, 1445, 2963, 1460, + 2873, 1450, 2872, 2871, 2870, 1471, 1467, 1468, 1466, 2869, + 2963, 1462, 1474, 1485, 1490, 1485, 2963, 1481, 1495, 1487, + 1484, 1489, 1494, 1507, 1499, 1497, 1512, 1509, 1492, 1512, + 1499, 1514, 1515, 1505, 1516, 1528, 1532, 1521, 1536, 1531, + + 1546, 1542, 1547, 1547, 2868, 2963, 1530, 2963, 2963, 1549, + 1536, 2867, 1555, 1538, 2866, 2865, 1554, 1547, 1547, 1541, + 1555, 1556, 1551, 1556, 1563, 1569, 1559, 1565, 1566, 1578, + 1574, 1571, 1573, 1595, 2963, 1582, 1598, 1582, 1594, 2963, + 1588, 1599, 1595, 1591, 1603, 1598, 1605, 1604, 1600, 1613, + 1617, 1608, 1603, 2864, 2863, 2862, 2861, 2860, 1621, 1622, + 2859, 1624, 2858, 2963, 2963, 1627, 2963, 2963, 1631, 2857, + 90, 1640, 1624, 1632, 1632, 2963, 2963, 1646, 1652, 1645, + 1646, 1642, 1655, 1653, 1672, 1655, 1650, 1663, 1662, 2963, + 1659, 1664, 1661, 1679, 1676, 1668, 1669, 1683, 1690, 1682, + + 1696, 1677, 1689, 2963, 1695, 1706, 1697, 1695, 1696, 1711, + 1706, 1709, 1709, 1709, 2963, 1708, 1714, 1728, 1710, 1720, + 2856, 1728, 1729, 1727, 1717, 1728, 1735, 1732, 1730, 1754, + 1736, 1746, 1738, 1758, 2963, 1760, 2963, 1750, 2963, 1744, + 1751, 1768, 1754, 2963, 1764, 1774, 1767, 1768, 2855, 1763, + 1762, 1772, 2854, 1774, 1787, 1780, 1771, 1790, 1792, 2853, + 1797, 1783, 1799, 1785, 1798, 1807, 1804, 1818, 1815, 1818, + 1808, 1809, 1811, 1813, 2852, 1805, 1818, 1830, 1832, 1833, + 1829, 1826, 190, 2889, 2877, 1822, 1841, 2849, 2848, 2847, + 2963, 1831, 1839, 1843, 1840, 1838, 1842, 1837, 1858, 1856, + + 1862, 1871, 2963, 1860, 1869, 1867, 1876, 1876, 1867, 2846, + 1861, 1871, 1886, 1869, 1877, 1886, 1886, 1887, 2845, 1891, + 1891, 2963, 1884, 1897, 2963, 1901, 1886, 2844, 1888, 1899, + 2963, 2963, 1910, 1894, 1895, 2963, 2963, 1905, 1914, 1907, + 1905, 1926, 1931, 1927, 2843, 1922, 1925, 1923, 1942, 2842, + 2841, 1939, 2840, 1936, 2963, 1937, 1943, 1947, 2963, 2963, + 2963, 1947, 1935, 1932, 1953, 1937, 1957, 1950, 1952, 1962, + 1965, 1956, 1971, 1975, 1964, 1964, 1967, 1968, 1979, 1974, + 1975, 1979, 1981, 1978, 1983, 1984, 1990, 1998, 2963, 1990, + 1993, 2877, 2876, 2864, 2863, 1987, 1990, 2008, 2011, 1996, + + 2963, 2006, 2004, 2008, 2016, 2020, 2015, 2025, 2025, 2034, + 2020, 2033, 2026, 2031, 2029, 2039, 2036, 2050, 2049, 2044, + 2053, 2963, 2053, 2041, 2832, 2039, 2049, 2828, 2827, 2052, + 2045, 2048, 2963, 2058, 2056, 2963, 2069, 2073, 2963, 2069, + 2086, 2086, 2963, 2077, 2074, 2081, 2091, 2083, 2825, 2084, + 2823, 2084, 2084, 2088, 2088, 2089, 2105, 2097, 2963, 2111, + 2105, 2094, 2113, 2822, 2107, 2963, 2963, 2123, 2963, 2963, + 2118, 2125, 2120, 2821, 2819, 2130, 2818, 2117, 2137, 2138, + 2139, 2141, 2138, 2139, 2145, 2132, 2141, 2150, 2150, 2137, + 2146, 2150, 2140, 2164, 2817, 2963, 2151, 2158, 2963, 2160, + + 2167, 2161, 2164, 2173, 2162, 2811, 2172, 2176, 2185, 2176, + 2188, 2179, 2963, 2808, 2963, 2187, 2191, 2182, 2188, 2201, + 2187, 2191, 1636, 2963, 2208, 2963, 2214, 2203, 2963, 2217, + 2216, 2202, 2219, 2221, 2211, 2218, 2216, 2221, 2241, 2218, + 2226, 2236, 2963, 2242, 2963, 2245, 2240, 2254, 2963, 1390, + 2245, 2240, 2247, 2257, 2260, 2264, 2257, 2257, 2259, 2260, + 2273, 2257, 2258, 2262, 2266, 2273, 2271, 2272, 2290, 2273, + 2963, 2281, 2283, 2286, 2290, 2297, 2299, 2300, 2306, 2292, + 2963, 1386, 2294, 2295, 2963, 2963, 2305, 2302, 2308, 2963, + 2963, 2320, 2306, 2324, 2963, 2319, 2313, 1239, 861, 2315, + + 2325, 2329, 2963, 2337, 2325, 2330, 2340, 2335, 2348, 2348, + 2963, 2963, 2963, 853, 2342, 2355, 2351, 2346, 822, 2348, + 2345, 2353, 2963, 2963, 2354, 2358, 2368, 2371, 2372, 2963, + 2963, 2377, 2371, 2376, 815, 2377, 2381, 811, 810, 809, + 462, 2379, 2383, 455, 2963, 2391, 2389, 2379, 2963, 2383, + 2379, 2381, 2387, 2403, 445, 2409, 2408, 2963, 2399, 2963, + 2402, 2399, 393, 2403, 2404, 2403, 2403, 2424, 2408, 2418, + 2419, 2426, 380, 2428, 2963, 2431, 2419, 2963, 2419, 2430, + 2963, 2442, 2963, 2445, 2447, 2430, 2437, 2441, 2452, 2435, + 2963, 2963, 2446, 2448, 2448, 2464, 2451, 2460, 2459, 2461, + + 2462, 2466, 2963, 287, 2477, 2963, 2963, 2481, 2482, 273, + 2963, 2466, 2474, 2471, 2483, 249, 2476, 2963, 266, 2496, + 2488, 2486, 2963, 2487, 2492, 2495, 2506, 2509, 2519, 2507, + 2516, 2963, 2520, 2509, 2517, 2512, 2530, 2530, 2963, 2525, + 2534, 2515, 200, 2537, 2523, 2536, 2536, 2538, 2545, 2540, + 2542, 2545, 2546, 2547, 2551, 2963, 2963, 2552, 310, 2547, + 2569, 2556, 2575, 2575, 2570, 2963, 2559, 2576, 2963, 2963, + 2570, 2565, 2963, 145, 2575, 2575, 2574, 2575, 124, 2584, + 2577, 2963, 2586, 2580, 2595, 2592, 109, 2602, 107, 2963, + 2595, 2601, 2599, 2611, 2605, 2607, 2610, 2616, 2614, 2615, + + 2627, 2963, 2963, 2619, 2616, 2631, 2624, 2624, 2640, 2627, + 2963, 2633, 2963, 2636, 2636, 2646, 2647, 2963, 2634, 2645, + 2963, 2646, 2963, 2963, 2643, 2658, 2658, 2662, 2665, 2666, + 2669, 2963, 2651, 2657, 2658, 2659, 2666, 2672, 2669, 2670, + 2670, 2675, 2683, 2686, 2696, 2701, 2699, 2696, 2701, 2689, + 2690, 2703, 2696, 2713, 2963, 2712, 2710, 2714, 2963, 2963, + 2963, 2963, 2963, 2963, 2963, 2716, 2723, 2711, 2963, 2731, + 100, 2732, 2725, 2963, 2720, 2738, 2729, 2732, 2963, 2963, + 2733, 2963, 2729, 2739, 2748, 2743, 2753, 2963, 2757, 2741, + 2757, 2749, 2761, 2757, 2750, 2763, 2963, 2759, 2767, 2772, + + 2963, 2774, 2776, 2777, 95, 2775, 2772, 2778, 2779, 2963, + 2775, 2784, 2794, 2963, 2963, 2781, 2796, 2802, 2786, 2963, + 2805, 2796, 2963, 2807, 2963, 2963, 93, 2798, 2800, 2796, + 2963, 2963, 2796, 2799, 2804, 2963, 2817, 2815, 2963, 2817, + 2811, 2828, 2963, 2963, 2963, 105, 2875, 97, 84, 81 + } ; + +static yyconst flex_int16_t yy_def[1551] = + { 0, + 1545, 1, 1545, 1545, 1545, 1546, 1547, 1548, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1546, 1547, 1545, + 1548, 1545, 1545, 1545, 1548, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1549, 1550, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1549, 1549, 1550, 1550, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 0, 1545, 1545, 1545, 1545, 1545 + } ; + +static yyconst flex_int16_t yy_nxt[3032] = + { 0, + 4, 5, 6, 7, 8, 4, 9, 10, 11, 11, + 11, 11, 11, 4, 4, 12, 13, 14, 15, 16, + 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, + 4, 4, 12, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, + 30, 31, 32, 33, 34, 35, 36, 4, 40, 40, + 42, 44, 53, 45, 46, 46, 46, 46, 46, 66, + 83, 994, 54, 102, 992, 67, 68, 43, 40, 40, + 61, 883, 106, 884, 62, 74, 69, 41, 63, 53, + + 70, 64, 75, 885, 65, 38, 66, 83, 71, 54, + 102, 72, 67, 68, 43, 47, 48, 61, 49, 106, + 73, 62, 74, 69, 50, 63, 51, 70, 64, 75, + 80, 65, 76, 52, 1533, 71, 1518, 81, 72, 82, + 77, 1491, 47, 48, 107, 49, 78, 73, 1428, 126, + 1426, 50, 79, 51, 129, 304, 305, 80, 108, 76, + 52, 55, 130, 56, 81, 1419, 82, 77, 57, 58, + 84, 107, 59, 78, 88, 60, 126, 85, 89, 79, + 86, 129, 87, 127, 90, 108, 1414, 128, 55, 130, + 56, 883, 103, 884, 131, 57, 58, 84, 132, 59, + + 104, 88, 60, 885, 85, 89, 105, 86, 133, 87, + 127, 90, 91, 92, 128, 134, 93, 123, 124, 103, + 94, 131, 135, 125, 136, 132, 95, 104, 46, 46, + 46, 46, 46, 105, 137, 133, 138, 139, 142, 91, + 92, 1388, 134, 93, 123, 124, 140, 94, 141, 135, + 125, 136, 143, 95, 96, 144, 97, 145, 98, 147, + 148, 137, 99, 138, 139, 142, 154, 156, 100, 157, + 158, 159, 160, 140, 101, 141, 164, 146, 1366, 143, + 155, 96, 144, 97, 145, 98, 147, 148, 165, 99, + 1364, 166, 167, 154, 156, 100, 157, 158, 159, 160, + + 172, 101, 109, 164, 146, 110, 111, 155, 112, 161, + 173, 162, 113, 114, 1358, 165, 115, 116, 166, 167, + 168, 1402, 1403, 174, 170, 175, 163, 172, 1354, 109, + 171, 169, 110, 111, 176, 112, 161, 173, 162, 113, + 114, 149, 150, 115, 116, 117, 151, 168, 118, 119, + 174, 170, 175, 163, 152, 120, 121, 171, 169, 153, + 177, 176, 122, 178, 179, 180, 181, 182, 149, 150, + 183, 184, 117, 151, 185, 118, 119, 192, 195, 186, + 190, 152, 120, 121, 187, 191, 153, 177, 193, 122, + 178, 179, 180, 181, 182, 188, 196, 183, 184, 189, + + 194, 185, 197, 198, 192, 195, 186, 190, 201, 199, + 203, 187, 191, 204, 208, 193, 205, 209, 220, 229, + 210, 1330, 188, 196, 200, 230, 189, 194, 211, 197, + 198, 227, 206, 207, 1320, 201, 199, 203, 233, 221, + 204, 208, 234, 205, 209, 220, 229, 210, 225, 235, + 222, 200, 230, 228, 223, 211, 224, 236, 227, 206, + 207, 212, 226, 213, 214, 233, 221, 215, 216, 234, + 217, 237, 231, 218, 238, 225, 235, 222, 240, 219, + 228, 223, 232, 224, 236, 241, 1314, 248, 212, 226, + 213, 214, 249, 252, 215, 216, 1305, 217, 237, 231, + + 218, 238, 250, 1302, 253, 240, 219, 254, 251, 232, + 255, 256, 241, 242, 248, 257, 243, 258, 259, 249, + 252, 260, 262, 244, 245, 263, 264, 266, 261, 250, + 246, 253, 267, 268, 254, 251, 247, 255, 256, 269, + 242, 270, 257, 243, 258, 259, 271, 272, 260, 262, + 244, 245, 263, 264, 266, 261, 273, 246, 274, 267, + 268, 275, 276, 247, 277, 278, 269, 279, 270, 280, + 281, 282, 283, 271, 272, 284, 285, 286, 287, 288, + 289, 291, 292, 273, 293, 274, 294, 295, 275, 276, + 296, 277, 278, 290, 279, 299, 280, 281, 282, 283, + + 297, 298, 284, 285, 286, 287, 288, 289, 291, 292, + 300, 293, 302, 294, 295, 303, 306, 296, 307, 310, + 290, 308, 299, 311, 309, 312, 313, 297, 298, 314, + 315, 316, 318, 319, 320, 321, 323, 300, 324, 302, + 325, 322, 303, 306, 326, 307, 310, 327, 308, 328, + 311, 309, 312, 313, 333, 334, 314, 315, 316, 318, + 319, 320, 321, 323, 335, 324, 329, 325, 336, 337, + 338, 326, 339, 330, 327, 340, 328, 341, 331, 342, + 343, 333, 334, 332, 344, 345, 346, 347, 348, 351, + 349, 335, 352, 329, 353, 336, 337, 338, 354, 339, + + 330, 355, 340, 356, 341, 331, 342, 343, 357, 358, + 332, 344, 345, 346, 347, 348, 351, 349, 359, 352, + 362, 353, 360, 363, 364, 354, 365, 361, 355, 366, + 356, 367, 369, 370, 371, 357, 358, 372, 373, 374, + 375, 368, 376, 377, 379, 359, 380, 362, 381, 360, + 363, 364, 378, 365, 382, 383, 366, 384, 367, 369, + 370, 371, 385, 386, 372, 373, 374, 375, 368, 376, + 377, 379, 387, 380, 389, 381, 390, 391, 392, 393, + 394, 382, 383, 396, 384, 397, 398, 399, 400, 385, + 386, 401, 402, 403, 405, 406, 407, 408, 409, 387, + + 410, 389, 411, 390, 391, 392, 393, 394, 412, 413, + 396, 414, 397, 398, 399, 400, 415, 416, 401, 402, + 403, 405, 406, 407, 408, 409, 417, 410, 419, 411, + 421, 423, 424, 425, 426, 412, 413, 428, 414, 430, + 418, 420, 431, 415, 416, 432, 434, 435, 436, 437, + 1301, 1300, 1299, 417, 447, 419, 1296, 421, 423, 424, + 425, 426, 448, 1284, 428, 449, 430, 418, 450, 431, + 451, 452, 432, 434, 435, 436, 437, 438, 439, 440, + 453, 447, 455, 441, 457, 442, 458, 459, 443, 448, + 444, 460, 449, 461, 1279, 450, 445, 451, 452, 446, + + 467, 469, 1268, 462, 438, 439, 440, 453, 470, 455, + 441, 457, 442, 458, 459, 443, 471, 444, 460, 472, + 461, 463, 473, 445, 474, 464, 446, 467, 469, 465, + 462, 475, 476, 477, 480, 470, 481, 482, 487, 488, + 489, 490, 491, 471, 496, 497, 472, 483, 463, 473, + 478, 474, 464, 484, 493, 494, 498, 485, 475, 476, + 477, 480, 486, 481, 482, 487, 488, 489, 490, 491, + 495, 496, 497, 501, 502, 503, 504, 478, 505, 506, + 484, 493, 494, 498, 485, 507, 508, 509, 510, 486, + 512, 513, 515, 516, 517, 511, 518, 495, 519, 520, + + 501, 502, 503, 504, 521, 505, 506, 523, 524, 522, + 525, 527, 507, 508, 509, 510, 528, 512, 513, 515, + 516, 517, 511, 518, 529, 519, 520, 530, 531, 532, + 533, 521, 534, 535, 523, 524, 522, 525, 527, 536, + 537, 538, 539, 528, 540, 541, 542, 544, 545, 546, + 547, 529, 548, 549, 530, 531, 532, 533, 550, 534, + 535, 551, 552, 553, 554, 555, 536, 537, 538, 539, + 556, 540, 541, 542, 544, 545, 546, 547, 559, 548, + 549, 561, 562, 563, 564, 550, 565, 568, 551, 552, + 553, 554, 555, 569, 566, 570, 573, 556, 567, 574, + + 571, 575, 576, 577, 578, 559, 579, 580, 561, 562, + 563, 564, 572, 565, 568, 581, 584, 582, 585, 586, + 569, 566, 570, 573, 583, 567, 574, 571, 575, 576, + 577, 578, 587, 579, 580, 588, 589, 590, 591, 572, + 593, 597, 581, 584, 582, 585, 586, 594, 595, 598, + 603, 583, 600, 596, 605, 606, 608, 609, 607, 587, + 599, 610, 588, 589, 590, 591, 611, 593, 597, 601, + 612, 615, 602, 616, 594, 595, 598, 603, 617, 600, + 596, 605, 606, 608, 609, 607, 613, 599, 610, 614, + 618, 619, 620, 611, 622, 627, 601, 612, 615, 602, + + 616, 628, 624, 630, 631, 617, 625, 632, 633, 626, + 634, 635, 636, 613, 637, 638, 614, 618, 619, 620, + 639, 622, 627, 640, 641, 642, 643, 645, 628, 624, + 630, 631, 646, 625, 632, 633, 626, 634, 635, 636, + 647, 637, 638, 649, 650, 651, 652, 639, 653, 655, + 640, 641, 642, 643, 645, 656, 657, 658, 659, 646, + 660, 661, 662, 663, 664, 665, 654, 647, 666, 668, + 649, 650, 651, 652, 670, 653, 655, 671, 677, 679, + 1267, 683, 656, 657, 658, 659, 681, 660, 661, 662, + 663, 664, 665, 672, 673, 666, 668, 682, 685, 686, + + 687, 670, 674, 688, 671, 677, 679, 675, 683, 689, + 690, 691, 692, 681, 693, 694, 695, 696, 697, 698, + 672, 673, 699, 700, 682, 685, 686, 687, 701, 674, + 688, 702, 703, 704, 675, 705, 689, 690, 691, 692, + 706, 693, 694, 695, 696, 697, 698, 707, 708, 699, + 700, 709, 710, 711, 712, 701, 713, 714, 702, 703, + 704, 715, 705, 716, 717, 719, 720, 706, 721, 722, + 723, 724, 725, 726, 707, 708, 727, 728, 709, 710, + 711, 712, 729, 713, 714, 730, 731, 732, 715, 733, + 716, 717, 719, 720, 734, 721, 722, 723, 724, 725, + + 726, 735, 736, 727, 728, 737, 738, 739, 740, 729, + 741, 744, 730, 731, 732, 745, 733, 742, 743, 746, + 747, 734, 748, 749, 750, 751, 753, 1256, 735, 736, + 759, 1226, 737, 738, 739, 740, 761, 741, 744, 763, + 764, 765, 745, 766, 742, 743, 746, 747, 767, 748, + 749, 750, 751, 753, 754, 768, 769, 759, 755, 770, + 756, 771, 772, 761, 757, 758, 763, 764, 765, 773, + 766, 774, 775, 776, 777, 767, 778, 779, 780, 781, + 782, 754, 768, 769, 784, 755, 770, 756, 771, 772, + 788, 757, 758, 789, 790, 791, 773, 793, 774, 775, + + 776, 777, 794, 778, 779, 780, 781, 782, 796, 797, + 798, 784, 795, 799, 800, 801, 802, 788, 803, 804, + 789, 790, 791, 805, 793, 806, 807, 808, 809, 794, + 810, 811, 812, 813, 814, 796, 797, 798, 815, 795, + 799, 800, 801, 802, 816, 803, 804, 817, 818, 819, + 805, 820, 806, 807, 808, 809, 821, 810, 811, 812, + 813, 814, 822, 823, 824, 815, 825, 827, 828, 829, + 831, 816, 832, 835, 817, 818, 819, 836, 820, 837, + 838, 839, 840, 821, 841, 842, 843, 844, 845, 822, + 823, 824, 846, 825, 827, 828, 829, 831, 847, 832, + + 835, 848, 849, 850, 836, 851, 837, 838, 839, 840, + 852, 841, 842, 843, 844, 845, 853, 854, 855, 846, + 856, 857, 858, 859, 860, 847, 861, 862, 848, 849, + 850, 863, 851, 864, 865, 866, 867, 852, 868, 869, + 875, 876, 878, 853, 854, 855, 880, 856, 857, 858, + 859, 860, 881, 861, 862, 886, 887, 888, 863, 889, + 864, 865, 866, 867, 890, 868, 869, 875, 876, 878, + 891, 892, 893, 880, 894, 895, 897, 1204, 901, 881, + 902, 903, 886, 887, 888, 904, 889, 898, 896, 905, + 906, 890, 899, 907, 908, 909, 910, 891, 892, 893, + + 911, 894, 895, 897, 900, 901, 912, 902, 903, 913, + 914, 915, 904, 916, 898, 896, 905, 906, 917, 899, + 907, 908, 909, 910, 918, 919, 920, 911, 921, 922, + 923, 900, 924, 912, 925, 926, 913, 914, 915, 927, + 916, 928, 929, 930, 931, 917, 932, 934, 935, 936, + 937, 918, 919, 920, 938, 921, 922, 923, 939, 924, + 940, 925, 926, 941, 944, 945, 927, 946, 928, 929, + 930, 931, 942, 932, 934, 935, 936, 937, 947, 948, + 949, 938, 943, 950, 951, 939, 952, 940, 953, 954, + 941, 944, 945, 955, 946, 956, 957, 959, 960, 942, + + 961, 963, 964, 965, 966, 947, 948, 949, 967, 943, + 950, 951, 968, 952, 970, 953, 954, 971, 972, 973, + 955, 974, 956, 957, 959, 960, 975, 961, 963, 964, + 965, 966, 976, 977, 978, 967, 979, 980, 981, 968, + 982, 970, 983, 985, 971, 972, 973, 986, 974, 987, + 988, 989, 990, 975, 991, 996, 997, 1001, 1002, 976, + 977, 978, 1003, 979, 980, 981, 1004, 982, 1005, 983, + 985, 1006, 1007, 1008, 986, 1009, 987, 988, 989, 990, + 1010, 991, 996, 997, 1001, 1002, 1011, 1012, 1013, 1003, + 1014, 1015, 1016, 1004, 1017, 1005, 1019, 1020, 1006, 1007, + + 1008, 1021, 1009, 1022, 1023, 1024, 1025, 1010, 1026, 1028, + 1029, 1030, 1031, 1011, 1012, 1013, 1032, 1014, 1015, 1016, + 1033, 1017, 1035, 1019, 1020, 1036, 1039, 1037, 1021, 1040, + 1022, 1023, 1024, 1025, 1041, 1026, 1028, 1029, 1030, 1031, + 1042, 1043, 1044, 1032, 1038, 1045, 1046, 1033, 1047, 1035, + 1049, 1050, 1036, 1039, 1037, 1051, 1040, 1052, 1055, 1057, + 1058, 1041, 1059, 1060, 1061, 1062, 1063, 1042, 1043, 1044, + 1064, 1038, 1045, 1046, 1065, 1047, 1066, 1049, 1050, 1067, + 1068, 1069, 1051, 1070, 1052, 1055, 1057, 1058, 1071, 1059, + 1060, 1061, 1062, 1063, 1072, 1073, 1074, 1064, 1075, 1076, + + 1077, 1065, 1078, 1066, 1079, 1080, 1067, 1068, 1069, 1081, + 1070, 1082, 1083, 1084, 1085, 1071, 1086, 1087, 1088, 1089, + 1090, 1072, 1073, 1074, 1091, 1075, 1076, 1077, 1092, 1078, + 1093, 1079, 1080, 1094, 1095, 1096, 1081, 1097, 1082, 1083, + 1084, 1085, 1098, 1086, 1087, 1088, 1089, 1090, 1099, 1100, + 1101, 1091, 1102, 1103, 1104, 1092, 1105, 1093, 1106, 1107, + 1094, 1095, 1096, 1108, 1097, 1109, 1110, 1111, 1112, 1098, + 1113, 1114, 1115, 1116, 1118, 1099, 1100, 1101, 1119, 1102, + 1103, 1104, 1122, 1105, 1123, 1106, 1107, 1124, 1125, 1126, + 1108, 1127, 1109, 1110, 1111, 1112, 1128, 1113, 1114, 1115, + + 1116, 1118, 1129, 1130, 1131, 1119, 1132, 1133, 1134, 1122, + 1135, 1123, 1136, 1138, 1124, 1125, 1126, 1140, 1127, 1141, + 1142, 1143, 1144, 1128, 1145, 1146, 1147, 1148, 1149, 1129, + 1130, 1131, 1150, 1132, 1133, 1134, 1152, 1135, 1153, 1136, + 1138, 1154, 1155, 1156, 1140, 1159, 1141, 1142, 1143, 1144, + 1161, 1145, 1146, 1147, 1148, 1149, 1162, 1163, 1164, 1150, + 1165, 1166, 1167, 1152, 1168, 1153, 1169, 1170, 1154, 1155, + 1156, 1171, 1159, 1172, 1173, 1174, 1175, 1161, 1176, 1177, + 1179, 1180, 1181, 1162, 1163, 1164, 1182, 1165, 1166, 1167, + 1183, 1168, 1184, 1169, 1170, 1185, 1186, 1188, 1171, 1189, + + 1172, 1173, 1174, 1175, 1190, 1176, 1177, 1179, 1180, 1181, + 1191, 1192, 1193, 1182, 1197, 1198, 1199, 1183, 1200, 1184, + 1195, 1202, 1185, 1186, 1188, 1203, 1189, 1205, 1196, 1206, + 1207, 1190, 1208, 1209, 1210, 1201, 1211, 1191, 1192, 1193, + 1212, 1197, 1198, 1199, 1213, 1200, 1214, 1195, 1202, 1215, + 1216, 1219, 1203, 1220, 1205, 1221, 1206, 1207, 1217, 1208, + 1209, 1210, 1201, 1211, 1218, 1222, 1223, 1212, 1224, 1225, + 1227, 1213, 1228, 1214, 1229, 1230, 1215, 1216, 1219, 1231, + 1220, 1232, 1221, 1233, 1234, 1217, 1235, 1236, 1237, 1238, + 1239, 1218, 1222, 1223, 1240, 1224, 1225, 1227, 1241, 1228, + + 1242, 1229, 1230, 1243, 1244, 1245, 1231, 1246, 1232, 1247, + 1233, 1234, 1248, 1235, 1236, 1237, 1238, 1239, 1249, 1250, + 1251, 1240, 1252, 1253, 1254, 1241, 1255, 1242, 1257, 1258, + 1243, 1244, 1245, 1259, 1246, 1260, 1247, 1261, 1262, 1248, + 1263, 1264, 1265, 1266, 1269, 1249, 1250, 1251, 1270, 1252, + 1253, 1254, 1271, 1255, 1272, 1257, 1258, 1273, 1274, 1275, + 1259, 1276, 1260, 1277, 1261, 1262, 1278, 1263, 1264, 1265, + 1266, 1269, 1280, 1281, 1282, 1270, 1283, 1285, 1286, 1271, + 1287, 1272, 1288, 1289, 1273, 1274, 1275, 1290, 1276, 1291, + 1277, 1292, 1293, 1278, 1294, 1295, 1297, 1298, 1303, 1280, + + 1281, 1282, 1304, 1283, 1285, 1286, 1306, 1287, 1307, 1288, + 1289, 1308, 1309, 1310, 1290, 1311, 1291, 1312, 1292, 1293, + 1313, 1294, 1295, 1297, 1298, 1303, 1315, 1316, 1317, 1304, + 1318, 1319, 1321, 1306, 1322, 1307, 1323, 1324, 1308, 1309, + 1310, 1325, 1311, 1326, 1312, 1327, 1328, 1313, 1329, 1331, + 1332, 1333, 1334, 1315, 1316, 1317, 1335, 1318, 1319, 1321, + 1336, 1322, 1337, 1323, 1324, 1338, 1339, 1340, 1325, 1341, + 1326, 1342, 1327, 1328, 1343, 1329, 1331, 1332, 1333, 1334, + 1344, 1345, 1346, 1335, 1347, 1348, 1349, 1336, 1350, 1337, + 1351, 1352, 1338, 1339, 1340, 1353, 1341, 1355, 1342, 1356, + + 1357, 1343, 1359, 1360, 1361, 1363, 1362, 1344, 1345, 1346, + 1365, 1347, 1348, 1349, 1367, 1350, 1368, 1351, 1352, 1369, + 1370, 1371, 1353, 1372, 1355, 1373, 1356, 1357, 1374, 1359, + 1360, 1361, 1363, 1362, 1375, 1378, 1376, 1365, 1379, 1380, + 1381, 1367, 1377, 1368, 1382, 1383, 1369, 1370, 1371, 1384, + 1372, 1385, 1373, 1386, 1387, 1374, 1389, 1390, 1391, 1392, + 1393, 1375, 1378, 1376, 1394, 1379, 1380, 1381, 1395, 1377, + 1396, 1382, 1383, 1397, 1398, 1399, 1384, 1400, 1385, 1401, + 1386, 1387, 1404, 1389, 1390, 1391, 1392, 1393, 1405, 1406, + 1407, 1394, 1408, 1409, 1410, 1395, 1411, 1396, 1412, 1413, + + 1397, 1398, 1399, 1415, 1400, 1416, 1401, 1417, 1418, 1404, + 1420, 1421, 1422, 1423, 1424, 1405, 1406, 1407, 1425, 1408, + 1409, 1410, 1427, 1411, 1429, 1412, 1413, 1430, 1431, 1432, + 1415, 1433, 1416, 1434, 1417, 1418, 1435, 1420, 1421, 1422, + 1423, 1424, 1436, 1437, 1438, 1425, 1439, 1440, 1441, 1427, + 1442, 1429, 1443, 1444, 1430, 1431, 1432, 1445, 1433, 1446, + 1434, 1447, 1448, 1435, 1449, 1450, 1451, 1452, 1453, 1436, + 1437, 1438, 1454, 1439, 1440, 1441, 1455, 1442, 1456, 1443, + 1444, 1457, 1458, 1459, 1445, 1460, 1446, 1461, 1447, 1448, + 1462, 1449, 1450, 1451, 1452, 1453, 1463, 1464, 1465, 1454, + + 1466, 1467, 1468, 1455, 1469, 1456, 1470, 1471, 1457, 1458, + 1459, 1472, 1460, 1473, 1461, 1474, 1475, 1462, 1476, 1477, + 1478, 1479, 1480, 1463, 1464, 1465, 1481, 1466, 1467, 1468, + 1482, 1469, 1483, 1470, 1471, 1484, 1485, 1486, 1472, 1487, + 1473, 1488, 1474, 1475, 1489, 1476, 1477, 1478, 1479, 1480, + 1490, 1492, 1493, 1481, 1494, 1495, 1496, 1482, 1497, 1483, + 1498, 1499, 1484, 1485, 1486, 1500, 1487, 1501, 1488, 1502, + 1503, 1489, 1504, 1505, 1506, 1507, 1508, 1490, 1492, 1493, + 1509, 1494, 1495, 1496, 1510, 1497, 1511, 1498, 1499, 1512, + 1513, 1514, 1500, 1515, 1501, 1516, 1502, 1503, 1517, 1504, + + 1505, 1506, 1507, 1508, 1519, 1520, 1521, 1509, 1522, 1523, + 1524, 1510, 1525, 1511, 1526, 1527, 1512, 1513, 1514, 1528, + 1515, 1529, 1516, 1530, 1531, 1517, 1532, 1534, 1535, 1536, + 1537, 1519, 1520, 1521, 1538, 1522, 1523, 1524, 1539, 1525, + 1540, 1526, 1527, 1541, 1542, 1543, 1528, 1544, 1529, 1194, + 1530, 1531, 1187, 1532, 1534, 1535, 1536, 1537, 1178, 1160, + 1158, 1538, 1157, 1151, 1139, 1539, 1137, 1540, 1121, 1120, + 1541, 1542, 1543, 1117, 1544, 39, 39, 995, 995, 993, + 993, 1056, 1054, 1053, 1048, 1034, 1027, 1018, 1000, 999, + 998, 995, 993, 984, 969, 962, 958, 933, 882, 879, + + 877, 874, 873, 872, 871, 870, 834, 833, 830, 826, + 792, 787, 786, 785, 783, 762, 760, 752, 718, 684, + 680, 678, 676, 669, 667, 648, 644, 629, 623, 621, + 604, 592, 560, 558, 557, 543, 526, 514, 500, 499, + 492, 479, 468, 466, 456, 454, 433, 429, 427, 422, + 404, 395, 388, 350, 317, 301, 265, 239, 202, 37, + 37, 1545, 3, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545 + } ; + +static yyconst flex_int16_t yy_chk[3032] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 7, 7, + 9, 10, 13, 10, 11, 11, 11, 11, 11, 16, + 21, 1550, 13, 26, 1549, 16, 16, 9, 39, 39, + 15, 771, 28, 771, 15, 18, 16, 1548, 15, 13, + + 17, 15, 18, 771, 15, 1546, 16, 21, 17, 13, + 26, 17, 16, 16, 9, 12, 12, 15, 12, 28, + 17, 15, 18, 16, 12, 15, 12, 17, 15, 18, + 20, 15, 19, 12, 1527, 17, 1505, 20, 17, 20, + 19, 1471, 12, 12, 29, 12, 19, 17, 1389, 33, + 1387, 12, 19, 12, 35, 179, 179, 20, 29, 19, + 12, 14, 36, 14, 20, 1379, 20, 19, 14, 14, + 22, 29, 14, 19, 23, 14, 33, 22, 23, 19, + 22, 35, 22, 34, 23, 29, 1374, 34, 14, 36, + 14, 883, 27, 883, 43, 14, 14, 22, 47, 14, + + 27, 23, 14, 883, 22, 23, 27, 22, 48, 22, + 34, 23, 24, 24, 34, 49, 24, 32, 32, 27, + 24, 43, 50, 32, 51, 47, 24, 27, 46, 46, + 46, 46, 46, 27, 52, 48, 53, 54, 56, 24, + 24, 1343, 49, 24, 32, 32, 55, 24, 55, 50, + 32, 51, 57, 24, 25, 58, 25, 59, 25, 60, + 61, 52, 25, 53, 54, 56, 63, 64, 25, 65, + 66, 67, 68, 55, 25, 55, 70, 59, 1319, 57, + 63, 25, 58, 25, 59, 25, 60, 61, 71, 25, + 1316, 72, 73, 63, 64, 25, 65, 66, 67, 68, + + 76, 25, 30, 70, 59, 30, 30, 63, 30, 69, + 77, 69, 30, 30, 1310, 71, 30, 30, 72, 73, + 74, 1359, 1359, 78, 75, 78, 69, 76, 1304, 30, + 75, 74, 30, 30, 79, 30, 69, 77, 69, 30, + 30, 62, 62, 30, 30, 31, 62, 74, 31, 31, + 78, 75, 78, 69, 62, 31, 31, 75, 74, 62, + 80, 79, 31, 81, 82, 83, 84, 85, 62, 62, + 86, 87, 31, 62, 88, 31, 31, 92, 94, 89, + 91, 62, 31, 31, 89, 91, 62, 80, 93, 31, + 81, 82, 83, 84, 85, 90, 95, 86, 87, 90, + + 93, 88, 96, 97, 92, 94, 89, 91, 99, 98, + 101, 89, 91, 102, 104, 93, 103, 105, 108, 112, + 106, 1273, 90, 95, 98, 113, 90, 93, 106, 96, + 97, 111, 103, 103, 1263, 99, 98, 101, 115, 109, + 102, 104, 116, 103, 105, 108, 112, 106, 110, 117, + 109, 98, 113, 111, 109, 106, 109, 118, 111, 103, + 103, 107, 110, 107, 107, 115, 109, 107, 107, 116, + 107, 119, 114, 107, 120, 110, 117, 109, 122, 107, + 111, 109, 114, 109, 118, 123, 1255, 125, 107, 110, + 107, 107, 126, 128, 107, 107, 1244, 107, 119, 114, + + 107, 120, 127, 1241, 129, 122, 107, 130, 127, 114, + 131, 132, 123, 124, 125, 133, 124, 134, 136, 126, + 128, 137, 138, 124, 124, 139, 140, 142, 137, 127, + 124, 129, 143, 144, 130, 127, 124, 131, 132, 145, + 124, 146, 133, 124, 134, 136, 147, 148, 137, 138, + 124, 124, 139, 140, 142, 137, 149, 124, 150, 143, + 144, 151, 152, 124, 153, 155, 145, 156, 146, 157, + 158, 159, 160, 147, 148, 161, 162, 163, 164, 165, + 166, 167, 168, 149, 169, 150, 170, 171, 151, 152, + 172, 153, 155, 166, 156, 174, 157, 158, 159, 160, + + 173, 173, 161, 162, 163, 164, 165, 166, 167, 168, + 175, 169, 177, 170, 171, 178, 180, 172, 181, 183, + 166, 182, 174, 184, 182, 185, 186, 173, 173, 187, + 188, 190, 192, 193, 194, 195, 196, 175, 197, 177, + 198, 195, 178, 180, 199, 181, 183, 200, 182, 201, + 184, 182, 185, 186, 203, 204, 187, 188, 190, 192, + 193, 194, 195, 196, 205, 197, 202, 198, 206, 207, + 208, 199, 209, 202, 200, 210, 201, 211, 202, 212, + 213, 203, 204, 202, 214, 215, 216, 218, 219, 221, + 219, 205, 222, 202, 223, 206, 207, 208, 225, 209, + + 202, 226, 210, 228, 211, 202, 212, 213, 229, 230, + 202, 214, 215, 216, 218, 219, 221, 219, 231, 222, + 234, 223, 233, 235, 236, 225, 237, 233, 226, 238, + 228, 239, 240, 241, 242, 229, 230, 243, 244, 245, + 246, 239, 247, 248, 249, 231, 250, 234, 251, 233, + 235, 236, 248, 237, 252, 253, 238, 255, 239, 240, + 241, 242, 256, 257, 243, 244, 245, 246, 239, 247, + 248, 249, 258, 250, 261, 251, 263, 264, 265, 266, + 267, 252, 253, 269, 255, 270, 271, 274, 275, 256, + 257, 277, 278, 279, 281, 282, 283, 284, 285, 258, + + 286, 261, 287, 263, 264, 265, 266, 267, 289, 290, + 269, 292, 270, 271, 274, 275, 293, 294, 277, 278, + 279, 281, 282, 283, 284, 285, 295, 286, 296, 287, + 297, 300, 301, 302, 303, 289, 290, 307, 292, 309, + 295, 296, 310, 293, 294, 311, 313, 314, 315, 316, + 1240, 1239, 1238, 295, 318, 296, 1235, 297, 300, 301, + 302, 303, 319, 1219, 307, 320, 309, 295, 321, 310, + 322, 323, 311, 313, 314, 315, 316, 317, 317, 317, + 325, 318, 327, 317, 329, 317, 330, 331, 317, 319, + 317, 332, 320, 333, 1214, 321, 317, 322, 323, 317, + + 336, 340, 1199, 334, 317, 317, 317, 325, 341, 327, + 317, 329, 317, 330, 331, 317, 342, 317, 332, 343, + 333, 334, 344, 317, 345, 334, 317, 336, 340, 334, + 334, 346, 347, 348, 350, 341, 351, 352, 354, 355, + 357, 358, 359, 342, 362, 363, 343, 352, 334, 344, + 348, 345, 334, 353, 361, 361, 364, 353, 346, 347, + 348, 350, 353, 351, 352, 354, 355, 357, 358, 359, + 361, 362, 363, 367, 368, 370, 371, 348, 372, 373, + 353, 361, 361, 364, 353, 374, 375, 376, 378, 353, + 379, 380, 382, 383, 384, 378, 385, 361, 386, 387, + + 367, 368, 370, 371, 388, 372, 373, 389, 391, 388, + 392, 394, 374, 375, 376, 378, 395, 379, 380, 382, + 383, 384, 378, 385, 397, 386, 387, 398, 400, 401, + 402, 388, 404, 405, 389, 391, 388, 392, 394, 407, + 408, 409, 410, 395, 411, 413, 415, 417, 418, 419, + 420, 397, 421, 422, 398, 400, 401, 402, 424, 404, + 405, 425, 426, 427, 428, 429, 407, 408, 409, 410, + 430, 411, 413, 415, 417, 418, 419, 420, 433, 421, + 422, 435, 436, 437, 438, 424, 439, 441, 425, 426, + 427, 428, 429, 442, 440, 443, 445, 430, 440, 446, + + 444, 447, 448, 449, 450, 433, 451, 452, 435, 436, + 437, 438, 444, 439, 441, 453, 455, 454, 456, 457, + 442, 440, 443, 445, 454, 440, 446, 444, 447, 448, + 449, 450, 458, 451, 452, 459, 460, 461, 462, 444, + 464, 466, 453, 455, 454, 456, 457, 465, 465, 467, + 469, 454, 468, 465, 471, 473, 475, 476, 473, 458, + 467, 477, 459, 460, 461, 462, 478, 464, 466, 468, + 479, 481, 468, 483, 465, 465, 467, 469, 484, 468, + 465, 471, 473, 475, 476, 473, 480, 467, 477, 480, + 485, 486, 487, 478, 490, 494, 468, 479, 481, 468, + + 483, 495, 493, 497, 498, 484, 493, 500, 501, 493, + 502, 503, 504, 480, 505, 506, 480, 485, 486, 487, + 507, 490, 494, 508, 509, 510, 511, 513, 495, 493, + 497, 498, 514, 493, 500, 501, 493, 502, 503, 504, + 517, 505, 506, 519, 521, 522, 523, 507, 524, 525, + 508, 509, 510, 511, 513, 526, 527, 528, 529, 514, + 530, 531, 532, 533, 534, 535, 524, 517, 536, 539, + 519, 521, 522, 523, 541, 524, 525, 542, 545, 547, + 1198, 550, 526, 527, 528, 529, 549, 530, 531, 532, + 533, 534, 535, 543, 543, 536, 539, 549, 552, 553, + + 555, 541, 543, 556, 542, 545, 547, 543, 550, 557, + 558, 559, 560, 549, 564, 565, 566, 567, 568, 569, + 543, 543, 570, 571, 549, 552, 553, 555, 572, 543, + 556, 573, 574, 576, 543, 577, 557, 558, 559, 560, + 578, 564, 565, 566, 567, 568, 569, 579, 580, 570, + 571, 581, 582, 583, 584, 572, 585, 586, 573, 574, + 576, 587, 577, 588, 589, 591, 592, 578, 593, 594, + 595, 596, 597, 599, 579, 580, 600, 601, 581, 582, + 583, 584, 602, 585, 586, 603, 604, 606, 587, 607, + 588, 589, 591, 592, 609, 593, 594, 595, 596, 597, + + 599, 610, 611, 600, 601, 612, 613, 614, 615, 602, + 616, 618, 603, 604, 606, 619, 607, 617, 617, 621, + 622, 609, 623, 624, 625, 626, 628, 1182, 610, 611, + 630, 1150, 612, 613, 614, 615, 632, 616, 618, 634, + 637, 638, 619, 639, 617, 617, 621, 622, 641, 623, + 624, 625, 626, 628, 629, 642, 643, 630, 629, 646, + 629, 647, 648, 632, 629, 629, 634, 637, 638, 649, + 639, 650, 651, 652, 653, 641, 654, 655, 656, 658, + 660, 629, 642, 643, 662, 629, 646, 629, 647, 648, + 666, 629, 629, 667, 668, 669, 649, 672, 650, 651, + + 652, 653, 673, 654, 655, 656, 658, 660, 674, 675, + 676, 662, 673, 678, 679, 680, 681, 666, 682, 683, + 667, 668, 669, 684, 672, 685, 686, 687, 688, 673, + 689, 690, 691, 692, 693, 674, 675, 676, 694, 673, + 678, 679, 680, 681, 695, 682, 683, 696, 697, 698, + 684, 699, 685, 686, 687, 688, 700, 689, 690, 691, + 692, 693, 701, 702, 703, 694, 704, 707, 710, 711, + 713, 695, 714, 717, 696, 697, 698, 718, 699, 719, + 720, 721, 722, 700, 723, 724, 725, 726, 727, 701, + 702, 703, 728, 704, 707, 710, 711, 713, 729, 714, + + 717, 730, 731, 732, 718, 733, 719, 720, 721, 722, + 734, 723, 724, 725, 726, 727, 736, 737, 738, 728, + 739, 741, 742, 743, 744, 729, 745, 746, 730, 731, + 732, 747, 733, 748, 749, 750, 751, 734, 752, 753, + 759, 760, 762, 736, 737, 738, 766, 739, 741, 742, + 743, 744, 769, 745, 746, 772, 773, 774, 747, 775, + 748, 749, 750, 751, 778, 752, 753, 759, 760, 762, + 779, 780, 781, 766, 782, 783, 784, 1123, 786, 769, + 787, 788, 772, 773, 774, 789, 775, 785, 783, 791, + 792, 778, 785, 793, 794, 795, 796, 779, 780, 781, + + 797, 782, 783, 784, 785, 786, 798, 787, 788, 799, + 800, 801, 789, 802, 785, 783, 791, 792, 803, 785, + 793, 794, 795, 796, 805, 806, 807, 797, 808, 809, + 810, 785, 811, 798, 812, 813, 799, 800, 801, 814, + 802, 816, 817, 818, 819, 803, 820, 822, 823, 824, + 825, 805, 806, 807, 826, 808, 809, 810, 827, 811, + 828, 812, 813, 829, 831, 832, 814, 833, 816, 817, + 818, 819, 830, 820, 822, 823, 824, 825, 834, 836, + 838, 826, 830, 840, 841, 827, 842, 828, 843, 845, + 829, 831, 832, 846, 833, 847, 848, 850, 851, 830, + + 852, 854, 855, 856, 857, 834, 836, 838, 858, 830, + 840, 841, 859, 842, 861, 843, 845, 862, 863, 864, + 846, 865, 847, 848, 850, 851, 866, 852, 854, 855, + 856, 857, 867, 868, 869, 858, 870, 871, 872, 859, + 873, 861, 874, 876, 862, 863, 864, 877, 865, 878, + 879, 880, 881, 866, 882, 886, 887, 892, 893, 867, + 868, 869, 894, 870, 871, 872, 895, 873, 896, 874, + 876, 897, 898, 899, 877, 900, 878, 879, 880, 881, + 901, 882, 886, 887, 892, 893, 902, 904, 905, 894, + 906, 907, 908, 895, 909, 896, 911, 912, 897, 898, + + 899, 913, 900, 914, 915, 916, 917, 901, 918, 920, + 921, 923, 924, 902, 904, 905, 926, 906, 907, 908, + 927, 909, 929, 911, 912, 930, 934, 933, 913, 935, + 914, 915, 916, 917, 938, 918, 920, 921, 923, 924, + 939, 940, 941, 926, 933, 942, 943, 927, 944, 929, + 946, 947, 930, 934, 933, 948, 935, 949, 952, 954, + 956, 938, 957, 958, 962, 963, 964, 939, 940, 941, + 965, 933, 942, 943, 966, 944, 967, 946, 947, 968, + 969, 970, 948, 971, 949, 952, 954, 956, 972, 957, + 958, 962, 963, 964, 973, 974, 975, 965, 976, 977, + + 978, 966, 979, 967, 980, 981, 968, 969, 970, 982, + 971, 983, 984, 985, 986, 972, 987, 988, 990, 991, + 996, 973, 974, 975, 997, 976, 977, 978, 998, 979, + 999, 980, 981, 1000, 1002, 1003, 982, 1004, 983, 984, + 985, 986, 1005, 987, 988, 990, 991, 996, 1006, 1007, + 1008, 997, 1009, 1010, 1011, 998, 1012, 999, 1013, 1014, + 1000, 1002, 1003, 1015, 1004, 1016, 1017, 1018, 1019, 1005, + 1020, 1021, 1023, 1024, 1026, 1006, 1007, 1008, 1027, 1009, + 1010, 1011, 1030, 1012, 1031, 1013, 1014, 1032, 1034, 1035, + 1015, 1037, 1016, 1017, 1018, 1019, 1038, 1020, 1021, 1023, + + 1024, 1026, 1040, 1041, 1042, 1027, 1044, 1045, 1046, 1030, + 1047, 1031, 1048, 1050, 1032, 1034, 1035, 1052, 1037, 1053, + 1054, 1055, 1056, 1038, 1057, 1058, 1060, 1061, 1062, 1040, + 1041, 1042, 1063, 1044, 1045, 1046, 1065, 1047, 1068, 1048, + 1050, 1071, 1072, 1073, 1052, 1076, 1053, 1054, 1055, 1056, + 1078, 1057, 1058, 1060, 1061, 1062, 1079, 1080, 1081, 1063, + 1082, 1083, 1084, 1065, 1085, 1068, 1086, 1087, 1071, 1072, + 1073, 1088, 1076, 1089, 1090, 1091, 1092, 1078, 1093, 1094, + 1097, 1098, 1100, 1079, 1080, 1081, 1101, 1082, 1083, 1084, + 1102, 1085, 1103, 1086, 1087, 1104, 1105, 1107, 1088, 1108, + + 1089, 1090, 1091, 1092, 1109, 1093, 1094, 1097, 1098, 1100, + 1110, 1111, 1112, 1101, 1117, 1118, 1119, 1102, 1120, 1103, + 1116, 1121, 1104, 1105, 1107, 1122, 1108, 1125, 1116, 1127, + 1128, 1109, 1130, 1131, 1132, 1120, 1133, 1110, 1111, 1112, + 1134, 1117, 1118, 1119, 1135, 1120, 1136, 1116, 1121, 1137, + 1138, 1140, 1122, 1141, 1125, 1142, 1127, 1128, 1139, 1130, + 1131, 1132, 1120, 1133, 1139, 1144, 1146, 1134, 1147, 1148, + 1151, 1135, 1152, 1136, 1153, 1154, 1137, 1138, 1140, 1155, + 1141, 1156, 1142, 1157, 1158, 1139, 1159, 1160, 1161, 1162, + 1163, 1139, 1144, 1146, 1164, 1147, 1148, 1151, 1165, 1152, + + 1166, 1153, 1154, 1167, 1168, 1169, 1155, 1170, 1156, 1172, + 1157, 1158, 1173, 1159, 1160, 1161, 1162, 1163, 1174, 1175, + 1176, 1164, 1177, 1178, 1179, 1165, 1180, 1166, 1183, 1184, + 1167, 1168, 1169, 1187, 1170, 1188, 1172, 1189, 1192, 1173, + 1193, 1194, 1196, 1197, 1200, 1174, 1175, 1176, 1201, 1177, + 1178, 1179, 1202, 1180, 1204, 1183, 1184, 1205, 1206, 1207, + 1187, 1208, 1188, 1209, 1189, 1192, 1210, 1193, 1194, 1196, + 1197, 1200, 1215, 1216, 1217, 1201, 1218, 1220, 1221, 1202, + 1222, 1204, 1225, 1226, 1205, 1206, 1207, 1227, 1208, 1228, + 1209, 1229, 1232, 1210, 1233, 1234, 1236, 1237, 1242, 1215, + + 1216, 1217, 1243, 1218, 1220, 1221, 1246, 1222, 1247, 1225, + 1226, 1248, 1250, 1251, 1227, 1252, 1228, 1253, 1229, 1232, + 1254, 1233, 1234, 1236, 1237, 1242, 1256, 1257, 1259, 1243, + 1261, 1262, 1264, 1246, 1265, 1247, 1266, 1267, 1248, 1250, + 1251, 1268, 1252, 1269, 1253, 1270, 1271, 1254, 1272, 1274, + 1276, 1277, 1279, 1256, 1257, 1259, 1280, 1261, 1262, 1264, + 1282, 1265, 1284, 1266, 1267, 1285, 1286, 1287, 1268, 1288, + 1269, 1289, 1270, 1271, 1290, 1272, 1274, 1276, 1277, 1279, + 1293, 1294, 1295, 1280, 1296, 1297, 1298, 1282, 1299, 1284, + 1300, 1301, 1285, 1286, 1287, 1302, 1288, 1305, 1289, 1308, + + 1309, 1290, 1312, 1313, 1314, 1315, 1314, 1293, 1294, 1295, + 1317, 1296, 1297, 1298, 1320, 1299, 1321, 1300, 1301, 1322, + 1324, 1325, 1302, 1326, 1305, 1327, 1308, 1309, 1328, 1312, + 1313, 1314, 1315, 1314, 1329, 1331, 1330, 1317, 1333, 1334, + 1335, 1320, 1330, 1321, 1336, 1337, 1322, 1324, 1325, 1338, + 1326, 1340, 1327, 1341, 1342, 1328, 1344, 1345, 1346, 1347, + 1348, 1329, 1331, 1330, 1349, 1333, 1334, 1335, 1350, 1330, + 1351, 1336, 1337, 1352, 1353, 1354, 1338, 1355, 1340, 1358, + 1341, 1342, 1360, 1344, 1345, 1346, 1347, 1348, 1361, 1362, + 1363, 1349, 1364, 1365, 1367, 1350, 1368, 1351, 1371, 1372, + + 1352, 1353, 1354, 1375, 1355, 1376, 1358, 1377, 1378, 1360, + 1380, 1381, 1383, 1384, 1385, 1361, 1362, 1363, 1386, 1364, + 1365, 1367, 1388, 1368, 1391, 1371, 1372, 1392, 1393, 1394, + 1375, 1395, 1376, 1396, 1377, 1378, 1397, 1380, 1381, 1383, + 1384, 1385, 1398, 1399, 1400, 1386, 1401, 1404, 1405, 1388, + 1406, 1391, 1407, 1408, 1392, 1393, 1394, 1409, 1395, 1410, + 1396, 1412, 1414, 1397, 1415, 1416, 1417, 1419, 1420, 1398, + 1399, 1400, 1422, 1401, 1404, 1405, 1425, 1406, 1426, 1407, + 1408, 1427, 1428, 1429, 1409, 1430, 1410, 1431, 1412, 1414, + 1433, 1415, 1416, 1417, 1419, 1420, 1434, 1435, 1436, 1422, + + 1437, 1438, 1439, 1425, 1440, 1426, 1441, 1442, 1427, 1428, + 1429, 1443, 1430, 1444, 1431, 1445, 1446, 1433, 1447, 1448, + 1449, 1450, 1451, 1434, 1435, 1436, 1452, 1437, 1438, 1439, + 1453, 1440, 1454, 1441, 1442, 1456, 1457, 1458, 1443, 1466, + 1444, 1467, 1445, 1446, 1468, 1447, 1448, 1449, 1450, 1451, + 1470, 1472, 1473, 1452, 1475, 1476, 1477, 1453, 1478, 1454, + 1481, 1483, 1456, 1457, 1458, 1484, 1466, 1485, 1467, 1486, + 1487, 1468, 1489, 1490, 1491, 1492, 1493, 1470, 1472, 1473, + 1494, 1475, 1476, 1477, 1495, 1478, 1496, 1481, 1483, 1498, + 1499, 1500, 1484, 1502, 1485, 1503, 1486, 1487, 1504, 1489, + + 1490, 1491, 1492, 1493, 1506, 1507, 1508, 1494, 1509, 1511, + 1512, 1495, 1513, 1496, 1516, 1517, 1498, 1499, 1500, 1518, + 1502, 1519, 1503, 1521, 1522, 1504, 1524, 1528, 1529, 1530, + 1533, 1506, 1507, 1508, 1534, 1509, 1511, 1512, 1535, 1513, + 1537, 1516, 1517, 1538, 1540, 1541, 1518, 1542, 1519, 1114, + 1521, 1522, 1106, 1524, 1528, 1529, 1530, 1533, 1095, 1077, + 1075, 1534, 1074, 1064, 1051, 1535, 1049, 1537, 1029, 1028, + 1538, 1540, 1541, 1025, 1542, 1547, 1547, 995, 994, 993, + 992, 953, 951, 950, 945, 928, 919, 910, 890, 889, + 888, 885, 884, 875, 860, 853, 849, 821, 770, 763, + + 761, 758, 757, 756, 755, 754, 716, 715, 712, 705, + 670, 665, 664, 663, 661, 633, 631, 627, 590, 551, + 548, 546, 544, 540, 537, 518, 512, 496, 491, 488, + 470, 463, 434, 432, 431, 416, 393, 381, 366, 365, + 360, 349, 338, 335, 328, 326, 312, 308, 306, 298, + 280, 268, 259, 220, 191, 176, 141, 121, 100, 37, + 5, 3, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, + 1545 + } ; + +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 "conf_lexer.l" +/* + * ircd-hybrid: an advanced Internet Relay Chat Daemon(ircd). + * conf_lexer.l: Scans the ircd configuration file for tokens. + * + * Copyright (C) 2002 by the past and present ircd coders, and others. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA + * + * $Id: conf_lexer.l 1547 2012-09-30 17:50:03Z michael $ + */ +#line 31 "conf_lexer.l" +#include "stdinc.h" +#include "irc_string.h" +#include "conf.h" +#include "conf_parser.h" /* autogenerated header file */ +#include "memory.h" +#include "hostmask.h" +#include "log.h" + +#undef YY_INPUT +#define YY_FATAL_ERROR(msg) conf_yy_fatal_error(msg) +#define YY_INPUT(buf,result,max_size) \ + if (!(result = conf_yy_input(buf, max_size))) \ + YY_FATAL_ERROR("input in flex scanner failed"); +#define MAX_INCLUDE_DEPTH 10 + + +unsigned int lineno = 1; +char linebuf[IRCD_BUFSIZE]; +char conffilebuf[IRCD_BUFSIZE]; + +static int include_stack_ptr = 0; +static YY_BUFFER_STATE include_stack[MAX_INCLUDE_DEPTH]; +static unsigned int lineno_stack[MAX_INCLUDE_DEPTH]; +static FILE *inc_fbfile_in[MAX_INCLUDE_DEPTH]; +static char conffile_stack[MAX_INCLUDE_DEPTH][IRCD_BUFSIZE]; +static void ccomment(void); +static void cinclude(void); +static int ieof(void); + +static int +conf_yy_input(char *lbuf, unsigned int max_size) +{ + return !fgets(lbuf, max_size, conf_parser_ctx.conf_file) ? 0 : strlen(lbuf); +} + +static int +conf_yy_fatal_error(const char *msg) +{ + return 0; +} + +#line 1700 "conf_lexer.c" + +#define INITIAL 0 + +#ifndef YY_NO_UNISTD_H +/* Special case for "unistd.h", since it is non-ANSI. We include it way + * down here because we want the user's section 1 to have been scanned first. + * The user has a chance to override it with an option. + */ +#include <unistd.h> +#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 80 "conf_lexer.l" + +#line 1882 "conf_lexer.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_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 >= 1546 ) + yy_c = yy_meta[(unsigned int) yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; + ++yy_cp; + } + while ( yy_current_state != 1545 ); + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); + +yy_find_action: + yy_act = yy_accept[yy_current_state]; + + YY_DO_BEFORE_ACTION; + +do_action: /* This label is used only to access EOF actions. */ + + switch ( yy_act ) + { /* beginning of action switch */ + case 0: /* must back up */ + /* undo the effects of YY_DO_BEFORE_ACTION */ + *yy_cp = (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 81 "conf_lexer.l" +{ cinclude(); } + YY_BREAK +case 2: +YY_RULE_SETUP +#line 82 "conf_lexer.l" +{ ccomment(); } + YY_BREAK +case 3: +/* rule 3 can match eol */ +YY_RULE_SETUP +#line 84 "conf_lexer.l" +{ strlcpy(linebuf, yytext+1, sizeof(linebuf)); ++lineno; yyless(1); } + YY_BREAK +case 4: +YY_RULE_SETUP +#line 86 "conf_lexer.l" +; + YY_BREAK +case 5: +YY_RULE_SETUP +#line 87 "conf_lexer.l" +; + YY_BREAK +case 6: +YY_RULE_SETUP +#line 89 "conf_lexer.l" +{ yylval.number = atoi(yytext); return NUMBER; } + YY_BREAK +case 7: +/* rule 7 can match eol */ +YY_RULE_SETUP +#line 91 "conf_lexer.l" +{ if (yytext[yyleng-2] == '\\') + { + yyless(yyleng-1); /* return last quote */ + yymore(); /* append next string */ + } + else + { + yylval.string = yytext+1; + if(yylval.string[yyleng-2] != '"') + ilog(LOG_TYPE_IRCD, "Unterminated character string"); + else + { + int i,j; + + yylval.string[yyleng-2] = '\0'; /* remove close + * quote + */ + + for (j=i=0 ;yylval.string[i] != '\0'; i++,j++) + { + if (yylval.string[i] != '\\') + { + yylval.string[j] = yylval.string[i]; + } + else + { + i++; + if (yylval.string[i] == '\0') /* XXX + * should not + * happen + */ + { + ilog(LOG_TYPE_IRCD, + "Unterminated character string"); + break; + } + yylval.string[j] = yylval.string[i]; + } + } + yylval.string[j] = '\0'; + return QSTRING; + } + } + } + YY_BREAK +case 8: +YY_RULE_SETUP +#line 136 "conf_lexer.l" +{ return ACCEPT_PASSWORD; } + YY_BREAK +case 9: +YY_RULE_SETUP +#line 137 "conf_lexer.l" +{ return ADMIN; } + YY_BREAK +case 10: +YY_RULE_SETUP +#line 138 "conf_lexer.l" +{ return ADMIN; } + YY_BREAK +case 11: +YY_RULE_SETUP +#line 139 "conf_lexer.l" +{ return AFTYPE; } + YY_BREAK +case 12: +YY_RULE_SETUP +#line 140 "conf_lexer.l" +{ return T_ALL; } + YY_BREAK +case 13: +YY_RULE_SETUP +#line 141 "conf_lexer.l" +{ return IRCD_AUTH; } + YY_BREAK +case 14: +YY_RULE_SETUP +#line 142 "conf_lexer.l" +{ return AUTOCONN; } + YY_BREAK +case 15: +YY_RULE_SETUP +#line 143 "conf_lexer.l" +{ return CAN_FLOOD; } + YY_BREAK +case 16: +YY_RULE_SETUP +#line 144 "conf_lexer.l" +{ return CALLER_ID_WAIT; } + YY_BREAK +case 17: +YY_RULE_SETUP +#line 145 "conf_lexer.l" +{ return OPERS_BYPASS_CALLERID; } + YY_BREAK +case 18: +YY_RULE_SETUP +#line 146 "conf_lexer.l" +{ return CHANNEL; } + YY_BREAK +case 19: +YY_RULE_SETUP +#line 147 "conf_lexer.l" +{ return CIDR_BITLEN_IPV4; } + YY_BREAK +case 20: +YY_RULE_SETUP +#line 148 "conf_lexer.l" +{ return CIDR_BITLEN_IPV6; } + YY_BREAK +case 21: +YY_RULE_SETUP +#line 149 "conf_lexer.l" +{ return CLASS; } + YY_BREAK +case 22: +YY_RULE_SETUP +#line 150 "conf_lexer.l" +{ return T_CLUSTER; } + YY_BREAK +case 23: +YY_RULE_SETUP +#line 151 "conf_lexer.l" +{ return CONNECT; } + YY_BREAK +case 24: +YY_RULE_SETUP +#line 152 "conf_lexer.l" +{ return CONNECTFREQ; } + YY_BREAK +case 25: +YY_RULE_SETUP +#line 153 "conf_lexer.l" +{ return DEFAULT_FLOODCOUNT; } + YY_BREAK +case 26: +YY_RULE_SETUP +#line 154 "conf_lexer.l" +{ return DEFAULT_SPLIT_SERVER_COUNT; } + YY_BREAK +case 27: +YY_RULE_SETUP +#line 155 "conf_lexer.l" +{ return DEFAULT_SPLIT_USER_COUNT; } + YY_BREAK +case 28: +YY_RULE_SETUP +#line 156 "conf_lexer.l" +{ return DENY; } + YY_BREAK +case 29: +YY_RULE_SETUP +#line 157 "conf_lexer.l" +{ return DESCRIPTION; } + YY_BREAK +case 30: +YY_RULE_SETUP +#line 158 "conf_lexer.l" +{ return DIE; } + YY_BREAK +case 31: +YY_RULE_SETUP +#line 159 "conf_lexer.l" +{ return DISABLE_AUTH; } + YY_BREAK +case 32: +YY_RULE_SETUP +#line 160 "conf_lexer.l" +{ return DISABLE_FAKE_CHANNELS; } + YY_BREAK +case 33: +YY_RULE_SETUP +#line 161 "conf_lexer.l" +{ return DISABLE_REMOTE_COMMANDS; } + YY_BREAK +case 34: +YY_RULE_SETUP +#line 162 "conf_lexer.l" +{ return T_DLINE; } + YY_BREAK +case 35: +YY_RULE_SETUP +#line 163 "conf_lexer.l" +{ return DOTS_IN_IDENT; } + YY_BREAK +case 36: +YY_RULE_SETUP +#line 164 "conf_lexer.l" +{ return EGDPOOL_PATH; } + YY_BREAK +case 37: +YY_RULE_SETUP +#line 165 "conf_lexer.l" +{ return EMAIL; } + YY_BREAK +case 38: +YY_RULE_SETUP +#line 166 "conf_lexer.l" +{ return ENCRYPTED; } + YY_BREAK +case 39: +YY_RULE_SETUP +#line 167 "conf_lexer.l" +{ return EXCEED_LIMIT; } + YY_BREAK +case 40: +YY_RULE_SETUP +#line 168 "conf_lexer.l" +{ return EXEMPT; } + YY_BREAK +case 41: +YY_RULE_SETUP +#line 169 "conf_lexer.l" +{ return T_FILE; } + YY_BREAK +case 42: +YY_RULE_SETUP +#line 170 "conf_lexer.l" +{ return IRCD_FLAGS; } + YY_BREAK +case 43: +YY_RULE_SETUP +#line 171 "conf_lexer.l" +{ return FLATTEN_LINKS; } + YY_BREAK +case 44: +YY_RULE_SETUP +#line 172 "conf_lexer.l" +{ return GECOS; } + YY_BREAK +case 45: +YY_RULE_SETUP +#line 173 "conf_lexer.l" +{ return GENERAL; } + YY_BREAK +case 46: +YY_RULE_SETUP +#line 174 "conf_lexer.l" +{ return GLINE; } + YY_BREAK +case 47: +YY_RULE_SETUP +#line 175 "conf_lexer.l" +{ return GLINE_ENABLE; } + YY_BREAK +case 48: +YY_RULE_SETUP +#line 176 "conf_lexer.l" +{ return GLINE_EXEMPT; } + YY_BREAK +case 49: +YY_RULE_SETUP +#line 177 "conf_lexer.l" +{ return GLINE_DURATION; } + YY_BREAK +case 50: +YY_RULE_SETUP +#line 178 "conf_lexer.l" +{ return GLINE_REQUEST_DURATION; } + YY_BREAK +case 51: +YY_RULE_SETUP +#line 179 "conf_lexer.l" +{ return GLINE_MIN_CIDR; } + YY_BREAK +case 52: +YY_RULE_SETUP +#line 180 "conf_lexer.l" +{ return GLINE_MIN_CIDR6; } + YY_BREAK +case 53: +YY_RULE_SETUP +#line 181 "conf_lexer.l" +{ return T_GLOBOPS; } + YY_BREAK +case 54: +YY_RULE_SETUP +#line 182 "conf_lexer.l" +{ return GLOBAL_KILL; } + YY_BREAK +case 55: +YY_RULE_SETUP +#line 183 "conf_lexer.l" +{ return NEED_IDENT; } + YY_BREAK +case 56: +YY_RULE_SETUP +#line 184 "conf_lexer.l" +{ return NEED_IDENT; } + YY_BREAK +case 57: +YY_RULE_SETUP +#line 185 "conf_lexer.l" +{ return HAVENT_READ_CONF; } + YY_BREAK +case 58: +YY_RULE_SETUP +#line 186 "conf_lexer.l" +{ return HIDDEN; } + YY_BREAK +case 59: +YY_RULE_SETUP +#line 187 "conf_lexer.l" +{ return HIDDEN_NAME; } + YY_BREAK +case 60: +YY_RULE_SETUP +#line 188 "conf_lexer.l" +{ return HIDE_SERVER_IPS; } + YY_BREAK +case 61: +YY_RULE_SETUP +#line 189 "conf_lexer.l" +{ return HIDE_SERVERS; } + YY_BREAK +case 62: +YY_RULE_SETUP +#line 190 "conf_lexer.l" +{ return HIDE_SPOOF_IPS; } + YY_BREAK +case 63: +YY_RULE_SETUP +#line 191 "conf_lexer.l" +{ return HOST; } + YY_BREAK +case 64: +YY_RULE_SETUP +#line 192 "conf_lexer.l" +{ return HUB; } + YY_BREAK +case 65: +YY_RULE_SETUP +#line 193 "conf_lexer.l" +{ return HUB_MASK; } + YY_BREAK +case 66: +YY_RULE_SETUP +#line 194 "conf_lexer.l" +{ return IGNORE_BOGUS_TS; } + YY_BREAK +case 67: +YY_RULE_SETUP +#line 195 "conf_lexer.l" +{ return INVISIBLE_ON_CONNECT; } + YY_BREAK +case 68: +YY_RULE_SETUP +#line 196 "conf_lexer.l" +{ return IP; } + YY_BREAK +case 69: +YY_RULE_SETUP +#line 197 "conf_lexer.l" +{ return T_IPV4; } + YY_BREAK +case 70: +YY_RULE_SETUP +#line 198 "conf_lexer.l" +{ return T_IPV6; } + YY_BREAK +case 71: +YY_RULE_SETUP +#line 199 "conf_lexer.l" +{ return JOIN_FLOOD_COUNT; } + YY_BREAK +case 72: +YY_RULE_SETUP +#line 200 "conf_lexer.l" +{ return JOIN_FLOOD_TIME; } + YY_BREAK +case 73: +YY_RULE_SETUP +#line 201 "conf_lexer.l" +{ return KILL; } + YY_BREAK +case 74: +YY_RULE_SETUP +#line 202 "conf_lexer.l" +{ return KILL_CHASE_TIME_LIMIT; } + YY_BREAK +case 75: +YY_RULE_SETUP +#line 203 "conf_lexer.l" +{ return KLINE; } + YY_BREAK +case 76: +YY_RULE_SETUP +#line 204 "conf_lexer.l" +{ return KLINE_EXEMPT; } + YY_BREAK +case 77: +YY_RULE_SETUP +#line 205 "conf_lexer.l" +{ return LEAF_MASK; } + YY_BREAK +case 78: +YY_RULE_SETUP +#line 206 "conf_lexer.l" +{ return LISTEN; } + YY_BREAK +case 79: +YY_RULE_SETUP +#line 207 "conf_lexer.l" +{ return T_LOG; } + YY_BREAK +case 80: +YY_RULE_SETUP +#line 208 "conf_lexer.l" +{ return TMASKED; } + YY_BREAK +case 81: +YY_RULE_SETUP +#line 209 "conf_lexer.l" +{ return T_MAX_CLIENTS; } + YY_BREAK +case 82: +YY_RULE_SETUP +#line 210 "conf_lexer.l" +{ return MAX_IDENT; } + YY_BREAK +case 83: +YY_RULE_SETUP +#line 211 "conf_lexer.l" +{ return MAX_LOCAL; } + YY_BREAK +case 84: +YY_RULE_SETUP +#line 212 "conf_lexer.l" +{ return MAX_GLOBAL; } + YY_BREAK +case 85: +YY_RULE_SETUP +#line 213 "conf_lexer.l" +{ return MAX_NUMBER; } + YY_BREAK +case 86: +YY_RULE_SETUP +#line 214 "conf_lexer.l" +{ return MAX_WATCH; } + YY_BREAK +case 87: +YY_RULE_SETUP +#line 215 "conf_lexer.l" +{ return MESSAGE_LOCALE; } + YY_BREAK +case 88: +YY_RULE_SETUP +#line 216 "conf_lexer.l" +{ return MIN_NONWILDCARD; } + YY_BREAK +case 89: +YY_RULE_SETUP +#line 217 "conf_lexer.l" +{ return MIN_NONWILDCARD_SIMPLE; } + YY_BREAK +case 90: +YY_RULE_SETUP +#line 218 "conf_lexer.l" +{ return NAME; } + YY_BREAK +case 91: +YY_RULE_SETUP +#line 219 "conf_lexer.l" +{ return NEED_PASSWORD; } + YY_BREAK +case 92: +YY_RULE_SETUP +#line 220 "conf_lexer.l" +{ return NETWORK_DESC; } + YY_BREAK +case 93: +YY_RULE_SETUP +#line 221 "conf_lexer.l" +{ return NETWORK_NAME; } + YY_BREAK +case 94: +YY_RULE_SETUP +#line 222 "conf_lexer.l" +{ return NICK; } + YY_BREAK +case 95: +YY_RULE_SETUP +#line 223 "conf_lexer.l" +{ return NICK_CHANGES; } + YY_BREAK +case 96: +YY_RULE_SETUP +#line 224 "conf_lexer.l" +{ yylval.number = 0; return TBOOL; } + YY_BREAK +case 97: +YY_RULE_SETUP +#line 225 "conf_lexer.l" +{ return NO_CREATE_ON_SPLIT; } + YY_BREAK +case 98: +YY_RULE_SETUP +#line 226 "conf_lexer.l" +{ return NO_JOIN_ON_SPLIT; } + YY_BREAK +case 99: +YY_RULE_SETUP +#line 227 "conf_lexer.l" +{ return NO_OPER_FLOOD; } + YY_BREAK +case 100: +YY_RULE_SETUP +#line 228 "conf_lexer.l" +{ return NO_TILDE; } + YY_BREAK +case 101: +YY_RULE_SETUP +#line 229 "conf_lexer.l" +{ return NUMBER_PER_CIDR; } + YY_BREAK +case 102: +YY_RULE_SETUP +#line 230 "conf_lexer.l" +{ return NUMBER_PER_IP; } + YY_BREAK +case 103: +YY_RULE_SETUP +#line 231 "conf_lexer.l" +{ return OPERATOR; } + YY_BREAK +case 104: +YY_RULE_SETUP +#line 232 "conf_lexer.l" +{ return OPER_PASS_RESV; } + YY_BREAK +case 105: +YY_RULE_SETUP +#line 233 "conf_lexer.l" +{ return OPERATOR; } + YY_BREAK +case 106: +YY_RULE_SETUP +#line 234 "conf_lexer.l" +{ return PASSWORD; } + YY_BREAK +case 107: +YY_RULE_SETUP +#line 235 "conf_lexer.l" +{ return PASSWORD; } + YY_BREAK +case 108: +YY_RULE_SETUP +#line 236 "conf_lexer.l" +{ return PING_COOKIE; } + YY_BREAK +case 109: +YY_RULE_SETUP +#line 237 "conf_lexer.l" +{ return PING_TIME; } + YY_BREAK +case 110: +YY_RULE_SETUP +#line 238 "conf_lexer.l" +{ return PING_WARNING; } + YY_BREAK +case 111: +YY_RULE_SETUP +#line 239 "conf_lexer.l" +{ return PORT; } + YY_BREAK +case 112: +YY_RULE_SETUP +#line 240 "conf_lexer.l" +{ return RESV; } + YY_BREAK +case 113: +YY_RULE_SETUP +#line 241 "conf_lexer.l" +{ return QUIET_ON_BAN; } + YY_BREAK +case 114: +YY_RULE_SETUP +#line 242 "conf_lexer.l" +{ return REASON; } + YY_BREAK +case 115: +YY_RULE_SETUP +#line 243 "conf_lexer.l" +{ return T_RECVQ; } + YY_BREAK +case 116: +YY_RULE_SETUP +#line 244 "conf_lexer.l" +{ return REDIRPORT; } + YY_BREAK +case 117: +YY_RULE_SETUP +#line 245 "conf_lexer.l" +{ return REDIRSERV; } + YY_BREAK +case 118: +YY_RULE_SETUP +#line 246 "conf_lexer.l" +{ return REGEX_T; } + YY_BREAK +case 119: +YY_RULE_SETUP +#line 247 "conf_lexer.l" +{ return REHASH; } + YY_BREAK +case 120: +YY_RULE_SETUP +#line 248 "conf_lexer.l" +{ return REMOTE; } + YY_BREAK +case 121: +YY_RULE_SETUP +#line 249 "conf_lexer.l" +{ return REMOTEBAN; } + YY_BREAK +case 122: +YY_RULE_SETUP +#line 250 "conf_lexer.l" +{ return T_RESTART; } + YY_BREAK +case 123: +YY_RULE_SETUP +#line 251 "conf_lexer.l" +{ return RESTRICT_CHANNELS; } + YY_BREAK +case 124: +YY_RULE_SETUP +#line 252 "conf_lexer.l" +{ return RESV; } + YY_BREAK +case 125: +YY_RULE_SETUP +#line 253 "conf_lexer.l" +{ return RESV_EXEMPT; } + YY_BREAK +case 126: +YY_RULE_SETUP +#line 254 "conf_lexer.l" +{ return RSA_PRIVATE_KEY_FILE; } + YY_BREAK +case 127: +YY_RULE_SETUP +#line 255 "conf_lexer.l" +{ return RSA_PUBLIC_KEY_FILE; } + YY_BREAK +case 128: +YY_RULE_SETUP +#line 256 "conf_lexer.l" +{ return T_SSL; } + YY_BREAK +case 129: +YY_RULE_SETUP +#line 257 "conf_lexer.l" +{ return SSL_CERTIFICATE_FILE; } + YY_BREAK +case 130: +YY_RULE_SETUP +#line 258 "conf_lexer.l" +{ return T_SSL_CLIENT_METHOD; } + YY_BREAK +case 131: +YY_RULE_SETUP +#line 259 "conf_lexer.l" +{ return T_SSL_SERVER_METHOD; } + YY_BREAK +case 132: +YY_RULE_SETUP +#line 260 "conf_lexer.l" +{ return SSL_DH_PARAM_FILE; } + YY_BREAK +case 133: +YY_RULE_SETUP +#line 261 "conf_lexer.l" +{ return T_SSL_CIPHER_LIST; } + YY_BREAK +case 134: +YY_RULE_SETUP +#line 262 "conf_lexer.l" +{ return T_SSLV3; } + YY_BREAK +case 135: +YY_RULE_SETUP +#line 263 "conf_lexer.l" +{ return T_TLSV1; } + YY_BREAK +case 136: +YY_RULE_SETUP +#line 264 "conf_lexer.l" +{ return SEND_PASSWORD; } + YY_BREAK +case 137: +YY_RULE_SETUP +#line 265 "conf_lexer.l" +{ return SENDQ; } + YY_BREAK +case 138: +YY_RULE_SETUP +#line 266 "conf_lexer.l" +{ return T_SERVER; } + YY_BREAK +case 139: +YY_RULE_SETUP +#line 267 "conf_lexer.l" +{ return SERVERHIDE; } + YY_BREAK +case 140: +YY_RULE_SETUP +#line 268 "conf_lexer.l" +{ return SERVERINFO; } + YY_BREAK +case 141: +YY_RULE_SETUP +#line 269 "conf_lexer.l" +{ return T_SERVICE; } + YY_BREAK +case 142: +YY_RULE_SETUP +#line 270 "conf_lexer.l" +{ return T_SERVICES_NAME; } + YY_BREAK +case 143: +YY_RULE_SETUP +#line 271 "conf_lexer.l" +{ return T_SET; } + YY_BREAK +case 144: +YY_RULE_SETUP +#line 272 "conf_lexer.l" +{ return T_SHARED; } + YY_BREAK +case 145: +YY_RULE_SETUP +#line 273 "conf_lexer.l" +{ return SHORT_MOTD; } + YY_BREAK +case 146: +YY_RULE_SETUP +#line 274 "conf_lexer.l" +{ return IRCD_SID; } + YY_BREAK +case 147: +YY_RULE_SETUP +#line 275 "conf_lexer.l" +{ return T_SIZE; } + YY_BREAK +case 148: +YY_RULE_SETUP +#line 276 "conf_lexer.l" +{ return SPOOF; } + YY_BREAK +case 149: +YY_RULE_SETUP +#line 277 "conf_lexer.l" +{ return SPOOF_NOTICE; } + YY_BREAK +case 150: +YY_RULE_SETUP +#line 278 "conf_lexer.l" +{ return TKLINE_EXPIRE_NOTICES; } + YY_BREAK +case 151: +YY_RULE_SETUP +#line 279 "conf_lexer.l" +{ return TYPE; } + YY_BREAK +case 152: +YY_RULE_SETUP +#line 280 "conf_lexer.l" +{ return TRUE_NO_OPER_FLOOD; } + YY_BREAK +case 153: +YY_RULE_SETUP +#line 281 "conf_lexer.l" +{ return T_UMODES; } + YY_BREAK +case 154: +YY_RULE_SETUP +#line 282 "conf_lexer.l" +{ return UNKLINE; } + YY_BREAK +case 155: +YY_RULE_SETUP +#line 283 "conf_lexer.l" +{ return T_UNDLINE; } + YY_BREAK +case 156: +YY_RULE_SETUP +#line 284 "conf_lexer.l" +{ return T_UNLIMITED; } + YY_BREAK +case 157: +YY_RULE_SETUP +#line 285 "conf_lexer.l" +{ return USE_EGD; } + YY_BREAK +case 158: +YY_RULE_SETUP +#line 286 "conf_lexer.l" +{ return USE_LOGGING; } + YY_BREAK +case 159: +YY_RULE_SETUP +#line 287 "conf_lexer.l" +{ return THROTTLE_TIME; } + YY_BREAK +case 160: +YY_RULE_SETUP +#line 288 "conf_lexer.l" +{ return USER; } + YY_BREAK +case 161: +YY_RULE_SETUP +#line 289 "conf_lexer.l" +{ return VHOST; } + YY_BREAK +case 162: +YY_RULE_SETUP +#line 290 "conf_lexer.l" +{ return VHOST6; } + YY_BREAK +case 163: +YY_RULE_SETUP +#line 291 "conf_lexer.l" +{ return XLINE; } + YY_BREAK +case 164: +YY_RULE_SETUP +#line 292 "conf_lexer.l" +{ yylval.number = 1; return TBOOL; } + YY_BREAK +case 165: +YY_RULE_SETUP +#line 294 "conf_lexer.l" +{ return FAILED_OPER_NOTICE; } + YY_BREAK +case 166: +YY_RULE_SETUP +#line 295 "conf_lexer.l" +{ return MAX_ACCEPT; } + YY_BREAK +case 167: +YY_RULE_SETUP +#line 296 "conf_lexer.l" +{ return MAX_NICK_CHANGES; } + YY_BREAK +case 168: +YY_RULE_SETUP +#line 297 "conf_lexer.l" +{ return MAX_CHANS_PER_OPER; } + YY_BREAK +case 169: +YY_RULE_SETUP +#line 298 "conf_lexer.l" +{ return MAX_CHANS_PER_USER; } + YY_BREAK +case 170: +YY_RULE_SETUP +#line 299 "conf_lexer.l" +{ return MAX_NICK_TIME; } + YY_BREAK +case 171: +YY_RULE_SETUP +#line 300 "conf_lexer.l" +{ return ANTI_NICK_FLOOD; } + YY_BREAK +case 172: +YY_RULE_SETUP +#line 301 "conf_lexer.l" +{ return ANTI_SPAM_EXIT_MESSAGE_TIME; } + YY_BREAK +case 173: +YY_RULE_SETUP +#line 302 "conf_lexer.l" +{ return TS_MAX_DELTA; } + YY_BREAK +case 174: +YY_RULE_SETUP +#line 303 "conf_lexer.l" +{ return TS_WARN_DELTA; } + YY_BREAK +case 175: +YY_RULE_SETUP +#line 304 "conf_lexer.l" +{ return LINKS_DELAY; } + YY_BREAK +case 176: +YY_RULE_SETUP +#line 305 "conf_lexer.l" +{ return WARN_NO_NLINE; } + YY_BREAK +case 177: +YY_RULE_SETUP +#line 307 "conf_lexer.l" +{ return STATS_E_DISABLED; } + YY_BREAK +case 178: +YY_RULE_SETUP +#line 308 "conf_lexer.l" +{ return STATS_O_OPER_ONLY; } + YY_BREAK +case 179: +YY_RULE_SETUP +#line 309 "conf_lexer.l" +{ return STATS_K_OPER_ONLY; } + YY_BREAK +case 180: +YY_RULE_SETUP +#line 310 "conf_lexer.l" +{ return STATS_I_OPER_ONLY; } + YY_BREAK +case 181: +YY_RULE_SETUP +#line 311 "conf_lexer.l" +{ return STATS_P_OPER_ONLY; } + YY_BREAK +case 182: +YY_RULE_SETUP +#line 312 "conf_lexer.l" +{ return PACE_WAIT; } + YY_BREAK +case 183: +YY_RULE_SETUP +#line 313 "conf_lexer.l" +{ return PACE_WAIT_SIMPLE; } + YY_BREAK +case 184: +YY_RULE_SETUP +#line 314 "conf_lexer.l" +{ return KNOCK_DELAY; } + YY_BREAK +case 185: +YY_RULE_SETUP +#line 315 "conf_lexer.l" +{ return KNOCK_DELAY_CHANNEL; } + YY_BREAK +case 186: +YY_RULE_SETUP +#line 316 "conf_lexer.l" +{ return MAX_BANS; } + YY_BREAK +case 187: +YY_RULE_SETUP +#line 317 "conf_lexer.l" +{ return MODULES; } + YY_BREAK +case 188: +YY_RULE_SETUP +#line 318 "conf_lexer.l" +{ return MODULE; } + YY_BREAK +case 189: +YY_RULE_SETUP +#line 319 "conf_lexer.l" +{ return PATH; } + YY_BREAK +case 190: +YY_RULE_SETUP +#line 320 "conf_lexer.l" +{ return MAX_TARGETS; } + YY_BREAK +case 191: +YY_RULE_SETUP +#line 322 "conf_lexer.l" +{ return T_UNXLINE; } + YY_BREAK +case 192: +YY_RULE_SETUP +#line 323 "conf_lexer.l" +{ return T_UNRESV; } + YY_BREAK +case 193: +YY_RULE_SETUP +#line 325 "conf_lexer.l" +{ return OPER_ONLY_UMODES; } + YY_BREAK +case 194: +YY_RULE_SETUP +#line 326 "conf_lexer.l" +{ return OPER_UMODES; } + YY_BREAK +case 195: +YY_RULE_SETUP +#line 327 "conf_lexer.l" +{ return T_BOTS; } + YY_BREAK +case 196: +YY_RULE_SETUP +#line 328 "conf_lexer.l" +{ return T_CCONN; } + YY_BREAK +case 197: +YY_RULE_SETUP +#line 329 "conf_lexer.l" +{ return T_CCONN_FULL; } + YY_BREAK +case 198: +YY_RULE_SETUP +#line 330 "conf_lexer.l" +{ return T_DEAF; } + YY_BREAK +case 199: +YY_RULE_SETUP +#line 331 "conf_lexer.l" +{ return T_DEBUG; } + YY_BREAK +case 200: +YY_RULE_SETUP +#line 332 "conf_lexer.l" +{ return T_FULL; } + YY_BREAK +case 201: +YY_RULE_SETUP +#line 333 "conf_lexer.l" +{ return T_SKILL; } + YY_BREAK +case 202: +YY_RULE_SETUP +#line 334 "conf_lexer.l" +{ return T_NCHANGE; } + YY_BREAK +case 203: +YY_RULE_SETUP +#line 335 "conf_lexer.l" +{ return T_REJ; } + YY_BREAK +case 204: +YY_RULE_SETUP +#line 336 "conf_lexer.l" +{ return T_UNAUTH; } + YY_BREAK +case 205: +YY_RULE_SETUP +#line 337 "conf_lexer.l" +{ return T_SPY; } + YY_BREAK +case 206: +YY_RULE_SETUP +#line 338 "conf_lexer.l" +{ return T_EXTERNAL; } + YY_BREAK +case 207: +YY_RULE_SETUP +#line 339 "conf_lexer.l" +{ return T_OPERWALL; } + YY_BREAK +case 208: +YY_RULE_SETUP +#line 340 "conf_lexer.l" +{ return T_SERVNOTICE; } + YY_BREAK +case 209: +YY_RULE_SETUP +#line 341 "conf_lexer.l" +{ return T_INVISIBLE; } + YY_BREAK +case 210: +YY_RULE_SETUP +#line 342 "conf_lexer.l" +{ return T_WALLOP; } + YY_BREAK +case 211: +YY_RULE_SETUP +#line 343 "conf_lexer.l" +{ return T_CALLERID; } + YY_BREAK +case 212: +YY_RULE_SETUP +#line 344 "conf_lexer.l" +{ return T_SOFTCALLERID; } + YY_BREAK +case 213: +YY_RULE_SETUP +#line 345 "conf_lexer.l" +{ return T_LOCOPS; } + YY_BREAK +case 214: +YY_RULE_SETUP +#line 347 "conf_lexer.l" +{ return WEEKS; } + YY_BREAK +case 215: +YY_RULE_SETUP +#line 348 "conf_lexer.l" +{ return WEEKS; } + YY_BREAK +case 216: +YY_RULE_SETUP +#line 349 "conf_lexer.l" +{ return DAYS; } + YY_BREAK +case 217: +YY_RULE_SETUP +#line 350 "conf_lexer.l" +{ return DAYS; } + YY_BREAK +case 218: +YY_RULE_SETUP +#line 351 "conf_lexer.l" +{ return HOURS; } + YY_BREAK +case 219: +YY_RULE_SETUP +#line 352 "conf_lexer.l" +{ return HOURS; } + YY_BREAK +case 220: +YY_RULE_SETUP +#line 353 "conf_lexer.l" +{ return MINUTES; } + YY_BREAK +case 221: +YY_RULE_SETUP +#line 354 "conf_lexer.l" +{ return MINUTES; } + YY_BREAK +case 222: +YY_RULE_SETUP +#line 355 "conf_lexer.l" +{ return SECONDS; } + YY_BREAK +case 223: +YY_RULE_SETUP +#line 356 "conf_lexer.l" +{ return SECONDS; } + YY_BREAK +case 224: +YY_RULE_SETUP +#line 358 "conf_lexer.l" +{ return BYTES; } + YY_BREAK +case 225: +YY_RULE_SETUP +#line 359 "conf_lexer.l" +{ return BYTES; } + YY_BREAK +case 226: +YY_RULE_SETUP +#line 360 "conf_lexer.l" +{ return KBYTES; } + YY_BREAK +case 227: +YY_RULE_SETUP +#line 361 "conf_lexer.l" +{ return KBYTES; } + YY_BREAK +case 228: +YY_RULE_SETUP +#line 362 "conf_lexer.l" +{ return KBYTES; } + YY_BREAK +case 229: +YY_RULE_SETUP +#line 363 "conf_lexer.l" +{ return KBYTES; } + YY_BREAK +case 230: +YY_RULE_SETUP +#line 364 "conf_lexer.l" +{ return KBYTES; } + YY_BREAK +case 231: +YY_RULE_SETUP +#line 365 "conf_lexer.l" +{ return MBYTES; } + YY_BREAK +case 232: +YY_RULE_SETUP +#line 366 "conf_lexer.l" +{ return MBYTES; } + YY_BREAK +case 233: +YY_RULE_SETUP +#line 367 "conf_lexer.l" +{ return MBYTES; } + YY_BREAK +case 234: +YY_RULE_SETUP +#line 368 "conf_lexer.l" +{ return MBYTES; } + YY_BREAK +case 235: +YY_RULE_SETUP +#line 369 "conf_lexer.l" +{ return MBYTES; } + YY_BREAK +case 236: +YY_RULE_SETUP +#line 370 "conf_lexer.l" +{ return TWODOTS; } + YY_BREAK +case 237: +YY_RULE_SETUP +#line 372 "conf_lexer.l" +{ return yytext[0]; } + YY_BREAK +case YY_STATE_EOF(INITIAL): +#line 373 "conf_lexer.l" +{ if (ieof()) yyterminate(); } + YY_BREAK +case 238: +YY_RULE_SETUP +#line 375 "conf_lexer.l" +ECHO; + YY_BREAK +#line 3206 "conf_lexer.c" + + 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_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); + 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 >= 1546 ) + 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 >= 1546 ) + 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 == 1545); + + 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 = 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 375 "conf_lexer.l" + + + +/* C-comment ignoring routine -kre*/ +static void +ccomment(void) +{ + int c = 0; + + /* log(L_NOTICE, "got comment"); */ + while (1) + { + while ((c = input()) != '*' && c != EOF) + if (c == '\n') + ++lineno; + + if (c == '*') + { + while ((c = input()) == '*') + /* Nothing */ ; + if (c == '/') + break; + else if (c == '\n') + ++lineno; + } + + if (c == EOF) + { + YY_FATAL_ERROR("EOF in comment"); + /* XXX hack alert this disables + * the stupid unused function warning + * gcc generates + */ + if (1 == 0) + yy_fatal_error("EOF in comment"); + break; + } + } +} + +/* C-style .includes. This function will properly swap input conf buffers, + * and lineno -kre */ +static void +cinclude(void) +{ + char *p = NULL; + + if ((p = strchr(yytext, '<')) == NULL) + *strchr(p = strchr(yytext, '"') + 1, '"') = '\0'; + else + *strchr(++p, '>') = '\0'; + + /* log(L_NOTICE, "got include %s!", c); */ + + /* do stacking and co. */ + if (include_stack_ptr >= MAX_INCLUDE_DEPTH) + ilog(LOG_TYPE_IRCD, "Includes nested too deep in %s", p); + else + { + FILE *tmp_fbfile_in = NULL; + char filenamebuf[IRCD_BUFSIZE]; + + if (*p == '/') /* if it is an absolute path */ + snprintf(filenamebuf, sizeof(filenamebuf), "%s", p); + else + snprintf(filenamebuf, sizeof(filenamebuf), "%s/%s", ETCPATH, p); + + tmp_fbfile_in = fopen(filenamebuf, "r"); + + if (tmp_fbfile_in == NULL) + { + ilog(LOG_TYPE_IRCD, "Unable to read configuration file '%s': %s", + filenamebuf, strerror(errno)); + return; + } + + lineno_stack[include_stack_ptr] = lineno; + lineno = 1; + inc_fbfile_in[include_stack_ptr] = conf_parser_ctx.conf_file; + strlcpy(conffile_stack[include_stack_ptr], conffilebuf, IRCD_BUFSIZE); + include_stack[include_stack_ptr++] = YY_CURRENT_BUFFER; + conf_parser_ctx.conf_file = tmp_fbfile_in; + snprintf(conffilebuf, sizeof(conffilebuf), "%s", filenamebuf); + yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE)); + } +} + +/* This is function that will be called on EOF in conf file. It will + * apropriately close conf if it not main conf and swap input buffers -kre + * */ +static int +ieof(void) +{ + /* log(L_NOTICE, "return from include stack!"); */ + if (include_stack_ptr) + fclose(conf_parser_ctx.conf_file); + if (--include_stack_ptr < 0) + { + /* log(L_NOTICE, "terminating lexer"); */ + /* We will now exit the lexer - restore init values if we get /rehash + * later and reenter lexer -kre */ + include_stack_ptr = 0; + lineno = 1; + return 1; + } + + /* switch buffer */ + /* log(L_NOTICE, "deleting include_stack_ptr=%d", include_stack_ptr); */ + yy_delete_buffer(YY_CURRENT_BUFFER); + lineno = lineno_stack[include_stack_ptr]; + conf_parser_ctx.conf_file = inc_fbfile_in[include_stack_ptr]; + strlcpy(conffilebuf, conffile_stack[include_stack_ptr], sizeof(conffilebuf)); + yy_switch_to_buffer(include_stack[include_stack_ptr]); + + return 0; +} + |