danicoin/external/unbound/util/configlexer.c
2015-12-30 12:57:50 +02:00

4217 lines
145 KiB
C

#include "config.h"
#include "util/configyyrename.h"
#line 3 "<stdout>"
#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 */
typedef unsigned char YY_CHAR;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
typedef int yy_state_type;
extern int yylineno;
int yylineno = 1;
extern char *yytext;
#define yytext_ptr yytext
static yy_state_type yy_get_previous_state (void );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
static int yy_get_next_buffer (void );
static void yy_fatal_error (yyconst char msg[] );
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION \
(yytext_ptr) = yy_bp; \
(yytext_ptr) -= (yy_more_len); \
yyleng = (size_t) (yy_cp - (yytext_ptr)); \
(yy_hold_char) = *yy_cp; \
*yy_cp = '\0'; \
(yy_c_buf_p) = yy_cp;
#define YY_NUM_RULES 176
#define YY_END_OF_BUFFER 177
/* This struct is not used in this scanner,
but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst flex_int16_t yy_accept[1771] =
{ 0,
1, 1, 158, 158, 162, 162, 166, 166, 170, 170,
1, 1, 177, 174, 1, 156, 156, 175, 2, 175,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
158, 159, 159, 160, 175, 162, 163, 163, 164, 175,
169, 166, 167, 167, 168, 175, 170, 171, 171, 172,
175, 173, 157, 2, 161, 175, 173, 174, 0, 1,
2, 2, 2, 2, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 158, 0, 162, 0,
169, 0, 166, 170, 0, 173, 0, 2, 2, 173,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 173, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 173, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
71, 174, 174, 174, 174, 174, 174, 7, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 173, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 173, 174, 174, 174, 174, 174,
31, 174, 174, 174, 174, 174, 174, 174, 174, 137,
174, 13, 14, 174, 16, 15, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 130, 174, 174, 174, 174,
174, 174, 174, 3, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 173, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
165, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 34, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 35, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 86, 165, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 85, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 69, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 21, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
32, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 33, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 23, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 150, 174, 174, 174,
174, 174, 174, 27, 174, 28, 174, 174, 174, 72,
174, 73, 174, 70, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 6,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 88, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 24,
174, 174, 174, 174, 174, 114, 113, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 36, 174, 174, 174, 174, 174, 174, 174, 174,
75, 74, 174, 174, 174, 174, 174, 174, 174, 110,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 54, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 58, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 112, 174, 174, 174, 174, 174, 174,
174, 174, 174, 5, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 106, 174, 174, 174, 174, 174,
174, 174, 174, 174, 123, 174, 107, 174, 135, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 22,
174, 174, 174, 174, 77, 174, 78, 76, 174, 174,
174, 174, 174, 174, 174, 84, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 108, 174, 174,
174, 174, 134, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 68, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
29, 174, 174, 18, 174, 174, 174, 17, 174, 93,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 43, 45, 174, 174, 174, 174,
174, 174, 174, 174, 138, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 79, 174,
174, 174, 174, 174, 174, 83, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 87, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 129, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 97, 174,
101, 174, 174, 174, 174, 82, 174, 174, 64, 174,
121, 174, 174, 174, 174, 136, 174, 174, 174, 174,
174, 174, 174, 143, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 100, 174, 174, 174, 174,
174, 46, 47, 174, 30, 53, 102, 174, 115, 111,
174, 174, 39, 174, 104, 174, 174, 174, 174, 174,
8, 174, 174, 67, 174, 174, 174, 174, 152, 174,
120, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 89, 142,
174, 174, 174, 174, 174, 174, 174, 174, 131, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 103, 174, 38, 40, 174, 174, 174,
174, 174, 174, 66, 174, 174, 174, 174, 151, 174,
174, 174, 174, 125, 19, 20, 174, 174, 174, 174,
174, 174, 174, 63, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 127, 124, 174, 174, 174, 174,
174, 174, 174, 174, 37, 174, 174, 174, 174, 174,
174, 174, 12, 174, 174, 174, 174, 174, 174, 174,
174, 11, 174, 174, 174, 174, 174, 155, 174, 41,
174, 133, 126, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 96, 95, 174, 174, 128, 122,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 48, 174,
132, 174, 174, 174, 174, 174, 174, 174, 174, 42,
174, 174, 174, 90, 92, 116, 174, 174, 174, 94,
174, 174, 174, 174, 174, 174, 174, 174, 174, 139,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 25, 174, 174, 174, 4, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 141, 174, 174, 119, 174,
174, 174, 174, 174, 174, 174, 51, 174, 26, 174,
10, 174, 174, 174, 174, 174, 117, 55, 174, 174,
174, 99, 174, 174, 174, 174, 174, 174, 174, 140,
80, 174, 174, 174, 174, 57, 61, 56, 174, 49,
174, 9, 174, 174, 153, 174, 174, 98, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 62, 60,
174, 50, 174, 109, 174, 118, 174, 174, 91, 44,
174, 174, 174, 174, 174, 174, 81, 59, 52, 154,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 65, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 105, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 174, 174,
174, 174, 174, 174, 146, 174, 174, 174, 174, 174,
174, 174, 174, 174, 174, 174, 174, 174, 144, 174,
147, 148, 174, 174, 174, 174, 174, 145, 149, 0
} ;
static yyconst flex_int32_t yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 1, 5, 6, 1, 1, 1, 7, 1,
1, 1, 1, 1, 8, 1, 1, 1, 1, 1,
9, 10, 1, 11, 1, 1, 1, 12, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 13, 1, 1, 1, 1, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
38, 39, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1
} ;
static yyconst flex_int32_t yy_meta[40] =
{ 0,
1, 2, 3, 4, 5, 1, 6, 1, 1, 1,
1, 7, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1
} ;
static yyconst flex_int16_t yy_base[1785] =
{ 0,
0, 0, 37, 40, 44, 51, 63, 75, 56, 68,
87, 108, 2403, 1986, 50, 3503, 3503, 3503, 129, 94,
70, 104, 130, 90, 92, 115, 127, 95, 84, 111,
137, 148, 50, 170, 122, 150, 157, 160, 140, 166,
1934, 3503, 3503, 3503, 70, 1883, 3503, 3503, 3503, 42,
1800, 1768, 3503, 3503, 3503, 192, 1510, 3503, 3503, 3503,
141, 849, 3503, 198, 3503, 202, 197, 811, 210, 120,
0, 223, 0, 0, 103, 203, 180, 205, 164, 206,
213, 210, 125, 216, 224, 218, 226, 227, 229, 230,
231, 238, 248, 244, 240, 250, 253, 233, 249, 258,
264, 261, 265, 266, 267, 270, 269, 276, 277, 278,
173, 280, 283, 284, 285, 289, 295, 281, 291, 297,
301, 302, 303, 306, 308, 309, 668, 250, 392, 319,
382, 327, 363, 322, 333, 243, 339, 343, 0, 336,
340, 346, 314, 342, 338, 344, 347, 353, 351, 360,
363, 384, 364, 349, 366, 49, 358, 369, 372, 370,
375, 373, 376, 377, 379, 380, 394, 400, 407, 408,
406, 395, 414, 412, 423, 424, 420, 421, 422, 410,
425, 411, 429, 426, 435, 432, 436, 438, 441, 442,
449, 445, 446, 450, 458, 451, 452, 454, 467, 471,
472, 468, 459, 469, 481, 479, 487, 473, 475, 486,
483, 489, 495, 500, 498, 501, 490, 503, 504, 505,
510, 516, 512, 513, 515, 522, 521, 524, 523, 525,
527, 529, 530, 531, 533, 537, 536, 540, 543, 546,
535, 548, 550, 551, 558, 564, 559, 565, 566, 568,
570, 573, 571, 574, 581, 582, 583, 590, 584, 587,
588, 595, 596, 597, 605, 602, 598, 601, 599, 608,
610, 611, 630, 616, 618, 620, 624, 623, 628, 639,
635, 636, 637, 640, 659, 647, 650, 662, 653, 660,
673, 661, 663, 666, 672, 674, 680, 675, 677, 678,
683, 685, 694, 688, 701, 689, 699, 704, 702, 706,
708, 715, 711, 712, 713, 714, 716, 722, 720, 723,
3503, 728, 726, 730, 731, 733, 734, 3503, 735, 736,
737, 744, 743, 745, 749, 759, 742, 748, 758, 761,
762, 763, 764, 766, 786, 769, 767, 776, 772, 773,
790, 626, 795, 782, 788, 784, 798, 801, 803, 804,
805, 806, 774, 814, 807, 810, 816, 818, 831, 815,
820, 822, 833, 834, 835, 841, 839, 843, 845, 855,
847, 857, 858, 838, 860, 862, 868, 867, 864, 861,
875, 872, 873, 876, 882, 874, 880, 890, 886, 893,
897, 898, 878, 899, 889, 900, 907, 908, 906, 910,
911, 915, 917, 924, 920, 918, 922, 935, 926, 928,
937, 929, 940, 947, 948, 936, 949, 944, 945, 952,
953, 956, 957, 954, 959, 961, 970, 964, 967, 974,
975, 979, 972, 980, 981, 982, 985, 991, 987, 995,
993, 996, 997, 1001, 1002, 1005, 1009, 1004, 1017, 1010,
3503, 1021, 1020, 1022, 1012, 1023, 1014, 1027, 1053, 3503,
1028, 3503, 3503, 1029, 3503, 3503, 1033, 1035, 1036, 1044,
1076, 1045, 1037, 1038, 1048, 1057, 1047, 1059, 1049, 1066,
1068, 1069, 1070, 1061, 1073, 1079, 1084, 1082, 1086, 1091,
1099, 1105, 1106, 1090, 1102, 1103, 1107, 1109, 1112, 1113,
1110, 1119, 1114, 1121, 1123, 3503, 1124, 1125, 1128, 1126,
1135, 1130, 1138, 3503, 1132, 1139, 1137, 1143, 1146, 1147,
1148, 1150, 1151, 1152, 1155, 1156, 1159, 1160, 1161, 1177,
1178, 1162, 1174, 1176, 1179, 1181, 1182, 1190, 1186, 1187,
1191, 1197, 1194, 1196, 1199, 1200, 1203, 1201, 1206, 1208,
1209, 1231, 1212, 1210, 1213, 1211, 1218, 1219, 1221, 1224,
1217, 1239, 1241, 1237, 1227, 1243, 1249, 1250, 1258, 1253,
1256, 1260, 1263, 1267, 1271, 1262, 1269, 1272, 1278, 1281,
3503, 1287, 1286, 1273, 1280, 1290, 1279, 1288, 1294, 1296,
1297, 1299, 1300, 1301, 1311, 3503, 1305, 1307, 1308, 1312,
1313, 1316, 1320, 1326, 1333, 1309, 3503, 1335, 1336, 1338,
1331, 1332, 1339, 1342, 1343, 1344, 1348, 1350, 1351, 1347,
1358, 1360, 1361, 1349, 1366, 1356, 1368, 1371, 1372, 1373,
1375, 1376, 1379, 1377, 1381, 1389, 1395, 1383, 1397, 1386,
1392, 1399, 1404, 1401, 1403, 1402, 1407, 3503, 158, 1408,
1409, 1410, 1418, 1420, 1423, 1426, 1425, 1427, 1429, 1433,
1416, 1436, 1437, 1443, 1440, 1438, 1445, 1446, 1449, 1450,
1452, 1414, 1453, 1455, 1462, 1459, 1463, 1460, 1469, 1461,
1472, 1474, 1475, 1476, 1477, 1480, 1481, 1484, 1483, 1485,
1486, 3503, 1497, 1493, 1494, 1491, 1503, 1514, 1500, 1515,
1504, 1512, 1523, 1524, 1522, 1526, 1528, 1530, 1532, 1506,
1533, 1540, 1541, 1538, 1542, 1544, 1547, 1534, 3503, 1550,
1549, 1552, 1556, 1568, 1555, 1557, 1566, 1559, 1561, 1571,
1578, 1572, 1581, 3503, 1582, 1583, 1575, 1590, 1584, 1592,
1593, 1600, 1586, 1597, 1595, 1605, 1607, 1601, 1609, 1611,
3503, 1617, 1621, 1620, 1627, 1614, 1613, 1624, 1629, 1626,
1630, 1636, 1634, 1637, 1633, 1638, 1639, 1641, 1642, 1644,
1647, 1643, 1650, 3503, 1664, 1649, 1660, 1669, 1651, 1675,
1672, 1673, 1674, 1677, 1678, 1680, 1679, 1681, 1682, 1687,
1683, 1690, 1691, 1692, 1689, 1694, 1688, 1709, 1698, 1710,
1700, 1711, 1712, 1713, 1725, 1726, 1722, 3503, 1728, 1724,
1729, 1730, 1731, 1737, 1739, 1735, 1740, 1741, 1743, 1745,
1752, 1746, 1749, 1753, 1755, 1756, 1748, 1758, 1760, 1763,
1766, 1776, 1764, 1778, 1779, 1782, 3503, 1783, 1786, 1789,
1791, 1790, 1798, 3503, 1781, 3503, 1797, 1804, 1811, 3503,
1808, 3503, 1813, 3503, 1814, 1815, 1809, 1796, 1818, 1820,
1819, 1823, 1826, 1827, 1829, 1830, 1831, 1833, 1837, 3503,
1836, 1839, 1843, 1840, 1838, 1847, 1848, 1849, 1859, 1850,
1865, 1856, 1868, 1864, 1871, 1866, 3503, 1862, 1873, 1875,
1877, 1882, 1884, 1889, 1881, 1891, 1880, 1892, 1898, 1901,
1899, 1903, 1904, 1906, 1912, 1908, 1909, 1916, 1913, 1910,
1919, 1920, 1921, 1925, 1923, 1932, 1926, 1929, 1930, 3503,
1933, 1941, 1943, 1945, 1942, 3503, 3503, 1948, 1952, 1959,
1944, 1953, 1961, 1963, 1965, 1971, 1968, 1969, 1970, 1973,
1976, 1981, 1977, 1978, 1984, 1979, 1988, 1982, 1998, 1992,
1994, 3503, 2005, 2003, 2011, 2008, 2007, 2015, 2009, 2016,
3503, 3503, 2018, 2017, 2020, 2023, 2029, 2028, 2031, 3503,
2032, 2033, 2034, 2035, 2036, 2045, 2043, 2046, 2048, 2050,
2051, 2053, 2055, 2056, 2062, 2059, 2060, 2063, 2073, 2074,
2080, 3503, 2076, 2082, 2083, 2084, 2087, 2086, 2088, 2092,
2090, 2091, 2093, 2101, 2107, 2094, 2104, 2105, 2110, 2106,
2114, 2117, 2118, 2124, 2127, 3503, 2133, 2120, 2134, 2121,
2132, 2135, 2142, 2139, 2140, 2141, 2143, 2145, 2144, 2148,
2149, 2154, 2150, 3503, 2157, 2168, 2156, 2162, 2164, 2172,
2176, 2174, 2178, 3503, 2179, 2185, 2181, 2182, 2188, 2187,
2190, 2193, 2191, 2196, 2192, 2203, 2199, 2197, 2207, 2205,
2209, 2210, 2212, 2213, 2227, 2219, 2232, 2216, 2224, 2234,
2240, 2246, 2247, 2233, 2236, 2249, 2243, 2250, 2251, 2252,
2258, 2256, 2262, 2260, 3503, 2261, 2265, 2268, 2270, 2271,
2273, 2275, 2276, 2274, 3503, 2281, 3503, 2284, 3503, 2285,
2288, 2289, 2290, 2292, 2293, 2294, 2295, 2306, 2302, 3503,
2303, 2305, 2308, 2311, 3503, 2314, 3503, 3503, 2307, 2318,
2324, 2321, 2325, 2068, 2328, 3503, 2214, 2329, 2330, 2333,
2334, 2335, 2336, 2339, 2337, 2340, 2341, 3503, 2345, 2344,
2353, 2354, 3503, 2343, 2359, 2356, 2362, 2364, 2365, 2368,
2369, 2372, 2379, 2375, 2376, 3503, 2377, 2381, 2386, 2388,
2378, 2383, 2399, 2397, 2398, 2401, 2405, 2404, 2407, 2408,
3503, 2410, 2418, 3503, 2409, 2391, 2412, 3503, 2419, 3503,
2421, 2424, 2426, 2429, 2431, 2432, 2434, 2435, 2436, 2437,
2443, 2445, 2447, 2446, 3503, 3503, 2449, 2450, 2453, 2457,
2460, 2461, 2462, 2464, 3503, 2465, 2468, 2469, 2470, 2471,
2475, 2478, 2481, 2482, 2474, 2483, 2477, 2487, 3503, 2484,
2491, 2495, 2496, 2497, 2498, 3503, 2500, 2501, 2505, 2502,
2508, 2510, 2513, 2523, 2520, 2525, 2527, 2529, 2530, 2532,
2535, 2536, 3503, 2537, 2539, 2540, 2544, 2545, 2541, 2548,
2552, 2557, 2546, 2550, 2565, 3503, 2554, 2558, 2560, 2562,
2571, 2567, 2573, 2576, 2577, 2579, 2580, 2582, 2583, 2584,
2585, 2589, 2590, 2591, 2595, 2593, 2601, 2599, 3503, 2598,
3503, 2610, 2611, 2614, 2615, 3503, 2613, 2617, 3503, 2620,
3503, 2622, 2629, 2621, 2631, 3503, 2636, 2623, 2638, 2633,
2640, 2627, 2642, 3503, 2644, 2647, 2652, 2653, 2649, 2656,
2655, 2657, 2660, 2666, 2662, 3503, 2663, 2667, 2676, 2673,
2678, 3503, 3503, 2674, 3503, 3503, 3503, 2683, 3503, 3503,
2684, 2686, 3503, 2688, 3503, 2695, 2691, 2693, 2694, 2696,
3503, 2698, 2700, 3503, 2697, 2707, 2703, 2704, 3503, 2712,
3503, 2708, 2715, 2714, 2718, 2725, 2727, 2730, 2720, 2722,
2731, 2733, 2734, 2736, 2735, 2738, 2739, 2742, 2744, 2747,
2749, 2751, 2752, 2750, 2753, 2754, 2757, 2762, 3503, 3503,
2763, 2766, 2767, 2771, 2769, 2774, 2775, 2776, 3503, 2780,
2781, 2785, 2782, 2786, 2787, 2795, 2788, 2799, 2801, 2800,
2802, 2803, 2806, 3503, 2808, 3503, 3503, 2809, 2810, 2815,
2816, 2812, 2819, 3503, 2820, 2821, 2833, 2824, 3503, 2839,
2828, 2841, 2843, 3503, 3503, 3503, 2844, 2834, 2846, 2848,
2849, 2850, 2851, 3503, 2852, 2857, 2858, 2860, 2865, 2871,
2866, 2868, 2877, 2879, 3503, 3503, 2885, 2882, 2883, 2872,
2874, 2884, 2890, 2887, 3503, 2891, 2893, 2896, 2897, 2898,
2900, 2903, 3503, 2902, 2904, 2908, 2914, 2910, 2916, 2917,
2918, 3503, 2920, 2922, 2926, 2928, 2931, 3503, 2932, 3503,
2937, 3503, 3503, 2934, 2938, 2940, 2945, 2948, 2950, 2941,
2951, 2957, 2956, 2958, 3503, 3503, 2960, 2968, 3503, 3503,
2953, 2964, 2961, 2967, 2972, 2974, 2975, 2976, 2977, 2980,
2982, 2985, 2988, 2978, 2989, 2990, 2991, 2992, 3503, 2997,
3503, 2995, 3003, 3004, 3005, 3006, 3010, 3007, 3016, 3503,
3017, 3018, 3019, 3503, 3503, 3503, 3022, 3023, 3028, 3503,
3029, 3031, 3032, 3033, 3036, 3035, 3043, 3039, 3046, 3503,
3042, 3047, 3049, 3051, 3050, 3056, 3057, 3058, 3060, 3063,
3068, 3069, 3071, 3073, 3503, 3075, 3077, 3079, 3503, 3080,
3082, 3083, 3085, 3087, 3090, 3091, 3092, 3094, 3095, 3098,
3099, 3100, 3106, 3108, 3111, 3503, 3114, 3115, 3503, 3116,
3117, 3122, 3124, 3129, 3133, 3130, 3503, 3137, 3503, 3138,
3503, 3141, 3142, 3143, 3145, 3146, 3503, 3503, 3147, 3149,
3153, 3503, 3154, 3150, 3157, 3160, 3161, 3163, 3164, 3503,
3503, 3165, 3167, 3171, 3168, 3503, 3503, 3503, 3174, 3503,
3177, 3503, 3183, 3180, 3503, 3187, 3188, 3503, 3189, 3191,
3193, 3195, 3196, 3197, 3199, 3200, 3198, 3202, 3503, 3503,
3209, 3503, 3213, 3503, 3215, 3503, 3210, 3223, 3503, 3503,
3221, 3219, 3225, 3226, 3228, 3227, 3503, 3503, 3503, 3503,
3231, 3229, 3234, 3232, 3236, 3237, 3238, 3240, 3242, 3239,
3252, 3256, 3244, 3250, 3264, 3258, 3503, 3260, 3262, 3271,
3273, 3270, 3267, 3274, 3276, 3277, 3278, 3279, 3282, 3283,
3289, 3285, 3286, 3295, 3297, 3298, 3299, 3310, 3307, 3308,
3309, 3311, 3317, 3313, 3314, 3503, 3316, 3319, 3320, 3322,
3323, 3326, 3325, 3333, 3336, 3340, 3341, 3342, 3347, 3343,
3349, 3351, 3352, 3353, 3503, 3354, 3355, 3358, 3362, 3363,
3365, 3366, 3367, 3374, 3369, 3379, 3383, 3380, 3503, 3386,
3503, 3503, 3388, 3371, 3375, 3396, 3398, 3503, 3503, 3503,
3411, 3418, 3425, 3432, 3439, 94, 3446, 3453, 3460, 3467,
3474, 3481, 3488, 3495
} ;
static yyconst flex_int16_t yy_def[1785] =
{ 0,
1770, 1, 1771, 1771, 1772, 1772, 1773, 1773, 1774, 1774,
1775, 1775, 1770, 1776, 1770, 1770, 1770, 1770, 1777, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1778, 1770, 1770, 1770, 1778, 1779, 1770, 1770, 1770, 1779,
1780, 1770, 1770, 1770, 1770, 1780, 1781, 1770, 1770, 1770,
1781, 1782, 1770, 1783, 1770, 1782, 1782, 1776, 1776, 1770,
1784, 1777, 1784, 1777, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1778, 1778, 1779, 1779,
1780, 1780, 1770, 1781, 1781, 1782, 1782, 1783, 1783, 1782,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1770, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776,
1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1776, 1770, 1770, 1776, 1770, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1782, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1782, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1770,
1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776, 1770, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1776, 1776, 1776, 1776, 1770, 1776, 1770, 1770, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776,
1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1770, 1776, 1776, 1770, 1776, 1776, 1776, 1770, 1776, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776,
1770, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1770, 1776,
1770, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1770, 1770, 1776, 1770, 1770, 1770, 1776, 1770, 1770,
1776, 1776, 1770, 1776, 1770, 1776, 1776, 1776, 1776, 1776,
1770, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776,
1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1770, 1770, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1770, 1776,
1776, 1776, 1776, 1770, 1770, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770,
1776, 1770, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776, 1770, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776,
1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1776, 1776, 1776, 1770, 1770, 1770, 1776, 1776, 1776, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1770, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1770, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1770, 1776,
1770, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1776, 1776,
1776, 1770, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770,
1770, 1776, 1776, 1776, 1776, 1770, 1770, 1770, 1776, 1770,
1776, 1770, 1776, 1776, 1770, 1776, 1776, 1770, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770,
1776, 1770, 1776, 1770, 1776, 1770, 1776, 1776, 1770, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 1770, 1770,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1770, 1776, 1776, 1776, 1776, 1776,
1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1770, 1776,
1770, 1770, 1776, 1776, 1776, 1776, 1776, 1770, 1770, 0,
1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770, 1770, 1770
} ;
static yyconst flex_int16_t yy_nxt[3543] =
{ 0,
14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
14, 18, 20, 21, 14, 22, 23, 24, 25, 14,
26, 27, 28, 29, 30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 40, 14, 14, 14, 14, 42,
43, 44, 42, 43, 44, 129, 47, 48, 129, 45,
49, 70, 45, 47, 48, 71, 50, 49, 58, 59,
60, 69, 69, 50, 52, 53, 54, 55, 61, 18,
58, 59, 60, 127, 127, 56, 52, 53, 54, 55,
61, 18, 69, 105, 224, 75, 76, 56, 15, 16,
17, 63, 64, 65, 68, 68, 69, 68, 68, 66,
68, 96, 69, 77, 69, 68, 86, 69, 67, 15,
16, 17, 63, 64, 65, 69, 69, 78, 141, 88,
66, 70, 95, 69, 79, 71, 87, 69, 89, 67,
73, 80, 73, 73, 69, 73, 90, 69, 97, 69,
73, 74, 69, 91, 134, 134, 92, 81, 111, 69,
98, 82, 69, 93, 83, 94, 84, 85, 99, 150,
69, 102, 69, 112, 100, 103, 123, 113, 101, 69,
137, 124, 69, 120, 116, 121, 69, 114, 69, 125,
115, 104, 69, 126, 117, 69, 184, 106, 118, 119,
122, 107, 69, 131, 146, 131, 131, 108, 131, 73,
109, 73, 73, 136, 73, 136, 136, 110, 136, 137,
139, 68, 143, 68, 68, 69, 68, 69, 69, 142,
144, 68, 69, 140, 73, 69, 73, 73, 69, 73,
69, 152, 147, 145, 73, 74, 69, 148, 69, 69,
149, 69, 69, 69, 154, 69, 158, 151, 159, 153,
69, 164, 69, 127, 127, 137, 69, 156, 155, 157,
69, 69, 69, 161, 160, 69, 162, 166, 168, 170,
69, 165, 169, 69, 172, 171, 69, 69, 69, 69,
163, 69, 69, 173, 175, 179, 174, 167, 69, 69,
69, 176, 69, 69, 181, 69, 69, 69, 182, 177,
178, 69, 190, 69, 192, 191, 180, 69, 186, 69,
183, 187, 185, 69, 69, 69, 188, 197, 69, 189,
69, 69, 129, 199, 193, 129, 69, 194, 131, 195,
131, 131, 200, 131, 135, 196, 134, 134, 198, 201,
136, 205, 136, 136, 73, 136, 73, 73, 137, 73,
69, 202, 69, 204, 69, 139, 69, 203, 69, 69,
210, 69, 206, 69, 133, 69, 211, 213, 212, 207,
69, 208, 69, 214, 225, 69, 69, 221, 69, 209,
222, 69, 69, 223, 69, 69, 226, 69, 69, 69,
233, 69, 69, 232, 132, 215, 69, 228, 227, 229,
216, 237, 230, 231, 130, 217, 69, 69, 236, 234,
218, 235, 69, 238, 239, 241, 219, 220, 69, 69,
69, 244, 69, 69, 69, 240, 69, 242, 243, 245,
246, 247, 69, 69, 69, 69, 69, 69, 69, 248,
250, 69, 251, 252, 69, 253, 249, 69, 69, 254,
69, 255, 256, 69, 69, 259, 263, 69, 69, 257,
265, 69, 69, 69, 69, 267, 69, 270, 258, 266,
69, 69, 261, 262, 271, 260, 269, 264, 273, 69,
137, 69, 268, 69, 69, 69, 274, 69, 279, 278,
277, 69, 276, 69, 281, 69, 280, 272, 69, 69,
282, 69, 69, 275, 286, 283, 284, 69, 287, 288,
69, 289, 69, 69, 290, 69, 69, 69, 291, 293,
285, 294, 69, 296, 69, 69, 298, 69, 69, 300,
292, 295, 299, 69, 69, 69, 69, 69, 297, 69,
305, 69, 69, 69, 310, 69, 307, 69, 69, 69,
304, 311, 69, 301, 302, 69, 303, 309, 69, 306,
69, 308, 69, 69, 312, 319, 320, 315, 316, 321,
69, 69, 313, 317, 318, 314, 69, 69, 69, 322,
69, 328, 69, 69, 330, 69, 69, 326, 323, 327,
329, 324, 325, 69, 69, 69, 69, 335, 332, 69,
69, 331, 69, 338, 337, 339, 333, 69, 69, 69,
69, 69, 345, 69, 69, 334, 336, 69, 344, 346,
69, 340, 69, 69, 341, 351, 349, 342, 69, 343,
69, 347, 137, 348, 350, 69, 69, 353, 69, 362,
69, 352, 69, 361, 354, 355, 367, 69, 69, 69,
365, 69, 69, 363, 356, 364, 357, 358, 359, 69,
366, 360, 69, 444, 370, 69, 372, 371, 369, 375,
368, 69, 69, 69, 69, 69, 374, 377, 69, 373,
128, 376, 378, 379, 69, 69, 69, 69, 384, 69,
69, 381, 69, 380, 382, 69, 385, 69, 383, 388,
69, 69, 391, 387, 390, 386, 69, 395, 394, 393,
392, 69, 389, 69, 69, 396, 69, 397, 69, 398,
69, 400, 401, 69, 69, 69, 69, 69, 69, 406,
405, 399, 69, 403, 69, 69, 409, 404, 69, 407,
69, 410, 69, 69, 402, 69, 69, 69, 69, 69,
412, 419, 413, 408, 69, 69, 69, 69, 415, 411,
69, 69, 421, 418, 420, 414, 423, 416, 417, 422,
69, 69, 424, 69, 69, 69, 69, 427, 69, 69,
429, 69, 425, 439, 69, 69, 137, 441, 69, 428,
455, 426, 430, 440, 69, 438, 69, 431, 69, 432,
69, 437, 69, 443, 433, 442, 434, 69, 445, 446,
69, 448, 447, 69, 435, 69, 69, 69, 69, 69,
451, 456, 69, 69, 436, 452, 69, 69, 69, 449,
69, 457, 69, 454, 69, 450, 453, 464, 460, 462,
458, 459, 461, 69, 463, 69, 69, 69, 469, 466,
69, 69, 470, 69, 472, 69, 473, 69, 475, 69,
465, 137, 474, 467, 471, 477, 468, 69, 476, 69,
69, 478, 69, 69, 69, 481, 69, 479, 480, 69,
69, 483, 485, 482, 69, 69, 69, 69, 69, 486,
69, 488, 69, 484, 69, 491, 489, 494, 69, 487,
490, 69, 69, 500, 492, 69, 493, 495, 496, 69,
69, 69, 69, 497, 504, 499, 501, 502, 69, 69,
69, 506, 69, 69, 503, 507, 505, 69, 508, 69,
69, 511, 69, 513, 69, 498, 69, 512, 69, 514,
69, 69, 515, 510, 519, 509, 516, 69, 69, 69,
520, 517, 69, 518, 523, 521, 69, 69, 524, 69,
69, 69, 525, 527, 69, 69, 69, 526, 69, 69,
522, 69, 532, 69, 528, 529, 69, 537, 533, 69,
539, 534, 69, 530, 69, 531, 69, 69, 536, 535,
540, 69, 69, 69, 69, 538, 542, 69, 541, 69,
543, 546, 547, 69, 549, 69, 545, 69, 69, 69,
548, 544, 550, 69, 137, 552, 69, 69, 553, 555,
556, 69, 69, 551, 69, 557, 69, 554, 562, 69,
559, 561, 69, 69, 69, 69, 563, 558, 560, 69,
69, 69, 565, 566, 567, 69, 564, 69, 69, 69,
69, 579, 578, 577, 576, 574, 69, 69, 575, 69,
69, 69, 587, 590, 568, 69, 592, 588, 591, 69,
569, 69, 593, 69, 570, 589, 594, 571, 69, 595,
69, 69, 69, 596, 572, 69, 597, 573, 69, 580,
581, 69, 582, 599, 69, 583, 69, 602, 69, 601,
584, 598, 69, 69, 600, 609, 585, 586, 605, 603,
606, 69, 607, 608, 69, 69, 604, 69, 69, 69,
610, 69, 69, 611, 69, 69, 69, 612, 619, 614,
617, 69, 615, 69, 618, 69, 69, 69, 69, 613,
69, 616, 69, 623, 69, 621, 622, 69, 625, 69,
69, 69, 624, 627, 620, 69, 630, 626, 69, 69,
69, 628, 69, 69, 69, 629, 636, 69, 69, 635,
631, 69, 69, 69, 69, 632, 639, 641, 646, 634,
633, 637, 640, 638, 644, 645, 69, 643, 69, 69,
69, 69, 642, 69, 69, 651, 649, 652, 69, 69,
648, 653, 69, 69, 656, 647, 69, 658, 69, 69,
659, 137, 69, 69, 650, 69, 655, 654, 69, 661,
69, 69, 69, 69, 69, 69, 657, 660, 672, 69,
69, 69, 662, 69, 664, 676, 69, 673, 675, 69,
679, 665, 663, 69, 680, 677, 666, 678, 667, 69,
674, 69, 668, 69, 669, 69, 681, 688, 683, 670,
685, 69, 69, 684, 671, 69, 682, 687, 69, 686,
69, 689, 69, 694, 69, 69, 690, 693, 691, 69,
697, 69, 699, 69, 69, 69, 695, 696, 698, 702,
69, 69, 69, 69, 704, 700, 692, 703, 69, 69,
69, 705, 69, 701, 706, 707, 69, 708, 69, 69,
709, 69, 69, 69, 713, 711, 710, 69, 717, 69,
69, 69, 716, 69, 69, 69, 715, 712, 69, 721,
722, 714, 69, 723, 727, 720, 718, 719, 69, 725,
726, 724, 728, 69, 69, 69, 729, 69, 69, 730,
69, 69, 731, 732, 69, 69, 69, 733, 737, 69,
69, 69, 69, 69, 734, 739, 735, 740, 69, 741,
69, 744, 69, 69, 736, 742, 743, 738, 69, 746,
69, 747, 745, 69, 69, 69, 748, 69, 69, 69,
752, 69, 753, 69, 755, 69, 758, 751, 69, 749,
756, 69, 759, 750, 69, 757, 754, 69, 761, 69,
760, 69, 765, 69, 69, 69, 69, 762, 763, 69,
69, 69, 69, 764, 767, 773, 69, 774, 69, 792,
69, 766, 69, 768, 770, 69, 771, 69, 69, 69,
775, 69, 772, 776, 769, 69, 779, 781, 69, 69,
69, 777, 69, 778, 784, 69, 786, 69, 69, 788,
780, 69, 69, 782, 69, 69, 789, 69, 783, 790,
785, 69, 69, 69, 69, 69, 794, 787, 791, 795,
797, 69, 800, 793, 69, 799, 69, 69, 69, 69,
796, 798, 69, 69, 803, 69, 69, 69, 69, 801,
804, 802, 808, 69, 812, 69, 69, 811, 805, 69,
809, 807, 69, 806, 814, 69, 69, 810, 69, 813,
816, 817, 135, 815, 69, 818, 69, 69, 820, 821,
823, 819, 830, 822, 69, 69, 69, 824, 69, 825,
69, 827, 69, 826, 69, 69, 69, 832, 833, 829,
69, 828, 69, 69, 69, 834, 69, 841, 835, 69,
840, 69, 69, 831, 69, 836, 842, 69, 69, 69,
837, 69, 838, 69, 839, 846, 843, 845, 69, 847,
69, 848, 844, 69, 69, 851, 850, 69, 849, 854,
69, 852, 856, 69, 69, 69, 69, 857, 69, 855,
858, 860, 69, 862, 69, 69, 859, 69, 853, 69,
863, 864, 69, 69, 866, 867, 861, 69, 865, 69,
869, 69, 868, 69, 873, 69, 69, 871, 874, 69,
872, 870, 69, 69, 876, 877, 69, 875, 69, 69,
880, 69, 69, 883, 878, 69, 69, 879, 69, 69,
69, 69, 889, 69, 69, 69, 69, 887, 881, 69,
884, 69, 69, 69, 893, 882, 885, 895, 888, 886,
898, 896, 69, 890, 892, 897, 69, 901, 894, 891,
899, 69, 902, 900, 69, 69, 69, 69, 903, 69,
69, 69, 69, 69, 69, 69, 904, 908, 911, 69,
69, 69, 69, 69, 69, 905, 69, 919, 907, 909,
69, 918, 69, 910, 913, 906, 914, 912, 915, 916,
917, 69, 69, 69, 69, 69, 920, 923, 921, 924,
926, 922, 927, 928, 69, 929, 69, 69, 69, 930,
69, 69, 69, 69, 935, 925, 932, 69, 936, 69,
937, 69, 69, 69, 931, 69, 933, 69, 69, 943,
69, 69, 934, 942, 69, 69, 938, 69, 69, 133,
69, 939, 69, 951, 941, 69, 69, 944, 69, 940,
945, 949, 948, 953, 946, 950, 947, 952, 69, 955,
69, 69, 954, 69, 69, 69, 958, 962, 69, 956,
959, 69, 69, 69, 957, 966, 963, 964, 69, 69,
69, 967, 132, 960, 968, 961, 69, 969, 970, 971,
69, 69, 965, 69, 972, 69, 69, 69, 974, 973,
69, 69, 69, 976, 980, 69, 975, 978, 69, 69,
982, 69, 69, 69, 977, 69, 979, 985, 69, 69,
69, 69, 69, 984, 987, 69, 990, 991, 981, 69,
69, 69, 69, 983, 986, 989, 988, 997, 69, 994,
992, 69, 998, 996, 69, 1000, 69, 69, 69, 993,
69, 995, 1002, 69, 1003, 69, 1005, 69, 999, 69,
1001, 1011, 69, 69, 69, 130, 69, 1008, 1004, 1006,
1009, 69, 1013, 69, 69, 1017, 1012, 1016, 1014, 1007,
69, 69, 1010, 69, 1018, 69, 69, 1015, 69, 1023,
69, 69, 69, 1022, 69, 69, 1025, 1026, 69, 1019,
1027, 69, 69, 69, 1020, 69, 1021, 69, 69, 1034,
1028, 69, 69, 1024, 69, 69, 128, 1031, 1033, 1032,
1038, 1029, 1030, 69, 69, 69, 69, 69, 1035, 1044,
69, 1036, 1040, 1037, 69, 69, 1041, 1045, 1039, 1042,
1043, 69, 1047, 69, 1048, 69, 1046, 69, 1053, 1054,
69, 69, 69, 69, 1050, 69, 1052, 1051, 69, 69,
69, 69, 1049, 69, 69, 1056, 69, 1062, 69, 1065,
69, 1055, 1058, 1057, 69, 1059, 69, 1063, 1061, 1064,
69, 1066, 1071, 1068, 1060, 69, 1069, 69, 1073, 69,
69, 69, 1076, 69, 1070, 1067, 1074, 69, 69, 69,
69, 1078, 69, 1072, 1077, 69, 1084, 1079, 1080, 1075,
69, 69, 1081, 69, 69, 69, 69, 69, 69, 1088,
1082, 1089, 1090, 1091, 1083, 69, 1085, 69, 69, 1095,
69, 1086, 69, 69, 1087, 69, 1092, 69, 69, 1101,
1097, 69, 69, 1094, 69, 69, 1096, 1098, 1093, 1099,
69, 1104, 1235, 1102, 1105, 69, 69, 1100, 69, 1106,
1103, 1107, 69, 1109, 69, 69, 69, 1108, 69, 69,
69, 1111, 69, 69, 69, 69, 69, 1110, 1112, 1115,
1113, 1116, 1120, 69, 1121, 1114, 69, 69, 69, 69,
1119, 1125, 69, 1118, 1117, 1127, 69, 1122, 1128, 69,
69, 1130, 69, 69, 1129, 1123, 69, 1124, 1126, 69,
1132, 1134, 1131, 1136, 69, 69, 69, 69, 1137, 1138,
1133, 69, 69, 69, 69, 69, 69, 69, 1135, 1148,
69, 69, 69, 1139, 1140, 1141, 69, 1150, 69, 69,
1142, 1146, 1143, 1144, 69, 1145, 69, 1147, 1152, 1153,
69, 1155, 1151, 1154, 69, 1156, 69, 1149, 69, 1158,
69, 69, 1162, 69, 69, 1165, 1161, 69, 1166, 69,
69, 1164, 69, 69, 69, 69, 1160, 1167, 69, 69,
1157, 69, 1159, 1163, 1168, 69, 1171, 69, 1172, 69,
1175, 69, 69, 1169, 69, 69, 69, 1170, 69, 1173,
1179, 69, 1176, 1237, 1180, 1174, 69, 1178, 1181, 69,
1177, 1187, 1182, 1184, 69, 69, 69, 1183, 69, 1185,
1186, 1188, 69, 1189, 1191, 69, 1194, 1190, 69, 69,
1193, 69, 69, 69, 69, 1199, 1196, 1195, 69, 1201,
69, 1192, 69, 69, 69, 1197, 1203, 69, 1204, 1205,
69, 1206, 69, 69, 1202, 69, 69, 69, 69, 1198,
1200, 1208, 1209, 69, 1210, 1211, 69, 69, 1212, 1215,
69, 69, 69, 1207, 69, 69, 69, 69, 1213, 1214,
1220, 1217, 1221, 1222, 69, 69, 1224, 69, 69, 69,
69, 1216, 1218, 69, 1219, 1229, 69, 1225, 1223, 1227,
69, 1232, 1228, 69, 1230, 1226, 69, 69, 1234, 1236,
69, 69, 69, 1239, 1231, 69, 69, 69, 69, 69,
1233, 69, 69, 69, 1240, 69, 69, 69, 1249, 1242,
1243, 1238, 1248, 1244, 1245, 69, 69, 1241, 69, 1252,
1253, 69, 1246, 1247, 69, 1251, 69, 69, 1256, 1255,
69, 69, 1257, 1250, 69, 1258, 1261, 69, 69, 69,
69, 69, 1262, 69, 1254, 69, 1263, 1266, 69, 1259,
69, 1267, 1770, 69, 1260, 1268, 1270, 1265, 1264, 69,
69, 69, 1272, 69, 1271, 1269, 69, 69, 1276, 69,
69, 69, 69, 1282, 69, 1273, 1274, 1279, 1277, 1275,
69, 69, 1278, 69, 1281, 1280, 69, 1284, 69, 1285,
1283, 69, 1289, 69, 69, 1291, 69, 69, 69, 69,
1288, 1286, 1293, 1290, 1294, 69, 1296, 69, 69, 69,
1299, 69, 69, 1287, 1301, 69, 1292, 1297, 1295, 69,
1302, 1300, 69, 69, 69, 1306, 69, 69, 1298, 1305,
69, 69, 69, 69, 1303, 1308, 69, 69, 1311, 69,
69, 1304, 1314, 69, 69, 69, 69, 1310, 1315, 69,
1317, 1316, 1307, 69, 1309, 1312, 1313, 69, 69, 69,
69, 1326, 69, 69, 69, 1318, 1327, 69, 1319, 1320,
69, 1324, 69, 1331, 1332, 69, 1322, 1321, 1329, 1323,
1328, 1325, 69, 1330, 1333, 69, 1335, 69, 1336, 69,
1337, 69, 69, 1339, 69, 1334, 1340, 69, 69, 69,
1343, 69, 69, 69, 1342, 1345, 69, 69, 69, 1347,
69, 1338, 69, 1348, 69, 1349, 69, 1341, 1351, 69,
69, 1344, 69, 1352, 69, 1346, 1354, 69, 1358, 69,
1350, 1353, 1359, 69, 1361, 69, 1355, 1357, 69, 69,
1363, 69, 69, 1356, 69, 69, 69, 69, 1360, 1366,
1364, 69, 69, 69, 1365, 69, 1370, 69, 1375, 1368,
69, 69, 1372, 69, 1362, 1376, 1373, 1371, 1369, 1374,
1367, 1380, 69, 69, 1379, 69, 69, 69, 1381, 69,
1377, 1378, 69, 69, 69, 69, 1382, 1386, 1384, 69,
1383, 69, 1389, 69, 1385, 69, 1387, 1390, 69, 1391,
69, 1392, 69, 1388, 69, 1396, 69, 1393, 1395, 69,
1397, 69, 1398, 1399, 69, 69, 1394, 69, 69, 69,
1400, 1403, 69, 1406, 69, 69, 1770, 1405, 69, 69,
1407, 1401, 1402, 1410, 1409, 69, 69, 1413, 69, 1404,
69, 1408, 1412, 1411, 1414, 69, 69, 1416, 69, 1417,
69, 1415, 1418, 69, 1419, 69, 69, 69, 69, 69,
69, 1424, 69, 1422, 1426, 69, 69, 1770, 1425, 69,
69, 1420, 1423, 1429, 69, 1430, 69, 69, 1421, 1431,
69, 1428, 69, 1427, 69, 1433, 1434, 69, 1435, 69,
1432, 1436, 69, 69, 1437, 69, 69, 69, 69, 1444,
69, 69, 1438, 1442, 69, 1439, 69, 1440, 1441, 69,
1445, 69, 69, 69, 69, 69, 69, 1443, 1455, 69,
1453, 1454, 1448, 1456, 69, 69, 1447, 1450, 69, 69,
1446, 69, 1451, 69, 1452, 1449, 69, 69, 69, 1464,
1461, 1465, 69, 69, 69, 1457, 1458, 69, 69, 69,
69, 1459, 1466, 1460, 1467, 1463, 1462, 69, 1474, 1468,
1473, 69, 69, 69, 69, 69, 1469, 1470, 69, 1472,
69, 69, 69, 1471, 69, 1481, 1482, 69, 69, 1476,
1475, 69, 69, 69, 1477, 1485, 69, 1487, 1478, 1479,
69, 1480, 1484, 1483, 1488, 69, 69, 1486, 1770, 1489,
1490, 69, 1492, 69, 1493, 69, 69, 1494, 69, 1491,
69, 69, 69, 69, 69, 1497, 1498, 1496, 1495, 69,
69, 1500, 69, 1507, 1502, 1503, 1505, 69, 69, 1501,
69, 1499, 1506, 69, 69, 1508, 69, 1504, 1509, 69,
1510, 69, 1511, 1514, 69, 69, 69, 69, 1512, 69,
1513, 1515, 69, 69, 1516, 69, 1519, 1517, 69, 69,
69, 1518, 69, 1524, 69, 69, 69, 1770, 1522, 1523,
69, 1521, 69, 1520, 1525, 1529, 69, 1531, 69, 69,
69, 1530, 69, 1526, 69, 1533, 1527, 1532, 69, 1528,
69, 1534, 1536, 69, 69, 1539, 69, 1535, 1540, 69,
69, 1542, 69, 69, 1537, 1543, 1544, 69, 1538, 1545,
69, 1546, 69, 69, 1549, 69, 1541, 1550, 69, 69,
69, 1547, 69, 69, 1551, 1553, 69, 1548, 1552, 69,
69, 1556, 1554, 1555, 69, 1560, 69, 69, 69, 69,
69, 1557, 69, 1564, 69, 1565, 1562, 69, 1559, 1558,
69, 69, 69, 69, 69, 1567, 1561, 69, 1563, 69,
1568, 1570, 1573, 1566, 1575, 69, 69, 69, 69, 69,
1576, 1579, 69, 1571, 1572, 1574, 1577, 1569, 69, 69,
69, 69, 1580, 1578, 69, 69, 1586, 1581, 1582, 1585,
69, 69, 1583, 69, 69, 69, 1588, 69, 69, 1587,
1594, 69, 1589, 1592, 69, 69, 1584, 1596, 69, 69,
1599, 69, 69, 69, 1590, 1593, 1591, 1600, 69, 69,
69, 1601, 69, 1597, 1598, 69, 1595, 1605, 1604, 1607,
69, 69, 1609, 69, 1602, 69, 1611, 69, 1603, 69,
1610, 69, 69, 1614, 69, 69, 1617, 69, 1618, 69,
1608, 1606, 69, 69, 69, 1622, 69, 69, 1615, 1612,
69, 69, 69, 1627, 1613, 1620, 1625, 1616, 69, 1623,
69, 1619, 1630, 69, 1621, 1631, 69, 69, 69, 69,
1624, 1626, 1770, 1633, 69, 1636, 69, 1628, 1629, 1635,
1637, 69, 69, 1634, 1638, 69, 1632, 1639, 1640, 69,
69, 1641, 1642, 69, 69, 69, 1645, 69, 69, 69,
1648, 69, 69, 1646, 1644, 69, 69, 1647, 1643, 69,
1649, 1650, 69, 69, 1651, 69, 69, 69, 1659, 69,
69, 1657, 1660, 69, 1661, 1662, 69, 1652, 1653, 69,
1654, 1655, 69, 1663, 1664, 69, 1656, 1658, 1666, 69,
69, 69, 1669, 69, 1670, 69, 1665, 69, 69, 69,
69, 69, 69, 1677, 69, 1667, 1674, 1675, 1770, 1668,
1678, 69, 69, 1672, 1679, 69, 1680, 69, 1683, 1676,
1673, 69, 1671, 69, 1681, 69, 1682, 69, 69, 69,
69, 69, 1685, 69, 69, 1684, 69, 1689, 69, 69,
69, 69, 69, 1697, 69, 1688, 69, 1686, 1687, 1691,
1698, 1690, 69, 1692, 69, 1694, 1693, 1696, 69, 1699,
69, 1703, 69, 1700, 69, 1695, 69, 1702, 1707, 69,
1708, 1701, 69, 69, 1704, 69, 69, 1705, 69, 69,
69, 69, 1710, 1706, 69, 69, 1709, 69, 69, 1720,
1717, 69, 1712, 1714, 1715, 1711, 1718, 69, 1713, 69,
69, 69, 1721, 1716, 1722, 1723, 1719, 1725, 1726, 69,
69, 69, 69, 69, 1730, 69, 69, 1727, 69, 69,
1724, 69, 69, 1733, 69, 69, 1737, 69, 69, 1732,
1728, 1770, 1729, 1738, 1731, 69, 1740, 1736, 69, 1741,
1734, 1735, 69, 69, 69, 69, 1739, 1742, 1745, 69,
1743, 69, 1746, 69, 69, 69, 69, 69, 1747, 1749,
69, 1751, 1752, 1744, 69, 69, 1755, 69, 69, 69,
1758, 69, 1748, 69, 1750, 1759, 69, 69, 1760, 1753,
1761, 69, 69, 1754, 1762, 69, 1756, 1757, 69, 1763,
69, 1770, 1766, 1764, 1770, 1765, 1767, 1768, 69, 1769,
69, 41, 41, 41, 41, 41, 41, 41, 46, 46,
46, 46, 46, 46, 46, 51, 51, 51, 51, 51,
51, 51, 57, 57, 57, 57, 57, 57, 57, 62,
62, 62, 62, 62, 62, 62, 72, 72, 1770, 72,
72, 72, 72, 127, 127, 1770, 1770, 1770, 127, 127,
129, 129, 1770, 1770, 129, 1770, 129, 131, 1770, 1770,
1770, 1770, 1770, 131, 134, 134, 1770, 1770, 1770, 134,
134, 136, 1770, 1770, 1770, 1770, 1770, 136, 138, 138,
1770, 138, 138, 138, 138, 73, 73, 1770, 73, 73,
73, 73, 13, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770
} ;
static yyconst flex_int16_t yy_chk[3543] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
3, 3, 4, 4, 4, 50, 5, 5, 50, 3,
5, 15, 4, 6, 6, 15, 5, 6, 9, 9,
9, 156, 33, 6, 7, 7, 7, 7, 9, 7,
10, 10, 10, 45, 45, 7, 8, 8, 8, 8,
10, 8, 21, 33, 156, 21, 21, 8, 11, 11,
11, 11, 11, 11, 1776, 20, 29, 20, 20, 11,
20, 29, 24, 21, 25, 20, 24, 28, 11, 12,
12, 12, 12, 12, 12, 75, 22, 22, 75, 25,
12, 70, 28, 30, 22, 70, 24, 26, 26, 12,
19, 22, 19, 19, 35, 19, 26, 83, 30, 27,
19, 19, 23, 27, 61, 61, 27, 23, 35, 31,
31, 23, 39, 27, 23, 27, 23, 23, 31, 83,
32, 32, 36, 36, 31, 32, 39, 36, 31, 37,
659, 39, 38, 38, 37, 38, 79, 36, 40, 40,
36, 32, 34, 40, 37, 111, 111, 34, 37, 37,
38, 34, 77, 56, 79, 56, 56, 34, 56, 64,
34, 64, 64, 66, 64, 66, 66, 34, 66, 67,
64, 69, 77, 69, 69, 76, 69, 78, 80, 76,
78, 69, 82, 67, 72, 81, 72, 72, 84, 72,
86, 85, 80, 78, 72, 72, 85, 81, 87, 88,
82, 89, 90, 91, 86, 98, 90, 84, 91, 85,
92, 94, 95, 128, 128, 136, 94, 88, 87, 89,
93, 99, 96, 93, 92, 97, 93, 96, 97, 98,
100, 95, 97, 102, 100, 99, 101, 103, 104, 105,
93, 107, 106, 101, 103, 107, 102, 96, 108, 109,
110, 104, 112, 118, 109, 113, 114, 115, 109, 105,
106, 116, 117, 119, 119, 118, 108, 117, 113, 120,
110, 114, 112, 121, 122, 123, 115, 123, 124, 116,
125, 126, 130, 124, 119, 130, 143, 120, 132, 121,
132, 132, 125, 132, 134, 122, 135, 135, 123, 126,
137, 143, 137, 137, 138, 137, 138, 138, 140, 138,
145, 140, 141, 142, 144, 138, 146, 141, 142, 147,
148, 154, 144, 149, 133, 148, 148, 150, 149, 145,
157, 146, 150, 151, 157, 151, 153, 153, 155, 147,
154, 158, 160, 155, 159, 162, 158, 161, 163, 164,
164, 165, 166, 163, 131, 151, 152, 160, 159, 161,
152, 167, 161, 162, 129, 152, 167, 172, 166, 164,
152, 165, 168, 168, 169, 170, 152, 152, 171, 169,
170, 173, 180, 182, 174, 169, 173, 171, 172, 174,
175, 176, 177, 178, 179, 175, 176, 181, 184, 177,
179, 183, 180, 181, 186, 182, 178, 185, 187, 183,
188, 184, 185, 189, 190, 188, 191, 192, 193, 186,
193, 191, 194, 196, 197, 195, 198, 198, 187, 194,
195, 203, 190, 190, 199, 189, 197, 192, 200, 199,
202, 204, 196, 200, 201, 208, 201, 209, 205, 204,
203, 206, 202, 205, 207, 211, 206, 199, 210, 207,
208, 212, 217, 201, 212, 209, 210, 213, 213, 214,
215, 215, 214, 216, 216, 218, 219, 220, 217, 219,
211, 220, 221, 222, 223, 224, 224, 225, 222, 226,
218, 221, 225, 227, 226, 229, 228, 230, 223, 231,
231, 232, 233, 234, 236, 235, 233, 241, 237, 236,
230, 237, 238, 227, 228, 239, 229, 235, 240, 232,
242, 234, 243, 244, 238, 244, 244, 240, 241, 245,
245, 247, 239, 242, 243, 239, 246, 248, 249, 246,
250, 251, 251, 253, 253, 252, 254, 249, 247, 250,
252, 247, 248, 255, 256, 257, 259, 258, 255, 260,
261, 254, 258, 261, 260, 261, 256, 262, 263, 264,
267, 269, 265, 268, 266, 257, 259, 265, 264, 266,
270, 262, 271, 272, 263, 271, 269, 263, 274, 263,
275, 267, 276, 268, 270, 278, 277, 272, 352, 275,
279, 271, 273, 274, 273, 273, 280, 281, 282, 283,
278, 280, 284, 276, 273, 277, 273, 273, 273, 286,
279, 273, 287, 352, 283, 289, 285, 284, 282, 288,
281, 285, 290, 292, 288, 293, 287, 290, 294, 286,
127, 289, 291, 291, 295, 291, 296, 298, 296, 299,
300, 293, 297, 292, 294, 301, 297, 302, 295, 300,
304, 306, 302, 299, 301, 298, 303, 306, 305, 304,
303, 307, 300, 305, 309, 307, 308, 308, 310, 309,
311, 311, 312, 313, 314, 315, 316, 312, 317, 317,
316, 310, 319, 314, 318, 320, 320, 315, 323, 318,
322, 322, 324, 325, 313, 326, 327, 329, 330, 331,
324, 332, 325, 319, 337, 333, 332, 334, 327, 323,
338, 335, 334, 331, 333, 326, 336, 329, 330, 335,
339, 336, 337, 340, 341, 342, 343, 340, 344, 347,
342, 346, 338, 348, 349, 350, 363, 349, 348, 341,
363, 339, 343, 348, 354, 347, 356, 344, 345, 345,
355, 346, 351, 351, 345, 350, 345, 353, 353, 354,
357, 356, 355, 358, 345, 359, 360, 361, 362, 365,
359, 364, 366, 68, 345, 360, 364, 370, 367, 357,
368, 365, 371, 362, 372, 358, 361, 372, 368, 370,
366, 367, 369, 369, 371, 373, 374, 375, 376, 374,
384, 377, 376, 376, 378, 378, 379, 379, 381, 381,
373, 62, 380, 375, 377, 383, 375, 380, 382, 382,
383, 384, 385, 390, 386, 387, 389, 385, 386, 388,
387, 389, 391, 388, 392, 393, 396, 391, 394, 392,
403, 394, 397, 390, 395, 395, 394, 398, 399, 393,
394, 405, 398, 403, 396, 400, 397, 399, 400, 401,
402, 404, 406, 401, 407, 402, 404, 405, 409, 407,
408, 409, 410, 411, 406, 410, 408, 412, 411, 413,
416, 414, 415, 416, 417, 401, 414, 415, 419, 417,
420, 422, 418, 413, 421, 412, 418, 418, 426, 421,
422, 419, 423, 420, 424, 423, 428, 429, 424, 424,
425, 427, 425, 427, 430, 431, 434, 426, 432, 433,
423, 435, 432, 436, 428, 429, 438, 437, 433, 439,
439, 434, 437, 430, 443, 431, 440, 441, 436, 435,
440, 442, 444, 445, 446, 438, 442, 447, 441, 449,
443, 446, 447, 448, 449, 451, 445, 450, 452, 453,
448, 444, 450, 454, 455, 452, 458, 456, 453, 455,
456, 457, 460, 451, 465, 457, 467, 454, 462, 459,
459, 460, 463, 462, 464, 466, 463, 458, 459, 468,
471, 474, 465, 466, 467, 477, 464, 478, 479, 483,
484, 480, 479, 478, 477, 471, 480, 482, 474, 487,
485, 489, 482, 485, 468, 469, 487, 483, 486, 486,
469, 488, 488, 494, 469, 484, 489, 469, 490, 490,
491, 492, 493, 491, 469, 495, 492, 469, 481, 481,
481, 496, 481, 494, 498, 481, 497, 497, 499, 496,
481, 493, 504, 500, 495, 504, 481, 481, 500, 498,
501, 501, 502, 503, 505, 506, 499, 502, 503, 507,
505, 508, 511, 506, 509, 510, 513, 507, 514, 509,
512, 512, 510, 514, 513, 515, 517, 518, 520, 508,
519, 511, 522, 519, 525, 517, 518, 521, 521, 527,
523, 526, 520, 523, 515, 528, 526, 522, 529, 530,
531, 523, 532, 533, 534, 525, 532, 535, 536, 531,
527, 537, 538, 539, 542, 528, 535, 537, 542, 530,
529, 533, 536, 534, 540, 541, 543, 539, 544, 540,
541, 545, 538, 546, 547, 547, 545, 548, 549, 550,
544, 549, 548, 551, 552, 543, 553, 554, 554, 552,
555, 555, 556, 558, 546, 557, 551, 550, 559, 557,
560, 561, 564, 566, 563, 565, 553, 556, 563, 571,
567, 568, 558, 569, 560, 567, 570, 564, 566, 575,
570, 561, 559, 562, 571, 568, 562, 569, 562, 574,
565, 572, 562, 573, 562, 576, 572, 578, 573, 562,
575, 577, 578, 574, 562, 580, 572, 577, 581, 576,
579, 579, 582, 581, 586, 583, 579, 580, 579, 584,
584, 587, 586, 585, 588, 594, 582, 583, 585, 589,
589, 597, 595, 590, 592, 587, 579, 590, 593, 592,
598, 593, 596, 588, 594, 595, 599, 596, 600, 601,
597, 602, 603, 604, 601, 599, 598, 607, 605, 608,
609, 616, 604, 605, 610, 611, 603, 600, 612, 610,
611, 602, 613, 612, 616, 609, 607, 608, 614, 614,
615, 613, 618, 621, 622, 615, 618, 618, 619, 619,
620, 623, 619, 620, 624, 625, 626, 621, 625, 630,
627, 634, 628, 629, 622, 627, 623, 628, 636, 629,
631, 632, 632, 633, 624, 630, 631, 626, 635, 634,
637, 635, 633, 638, 639, 640, 636, 641, 642, 644,
640, 643, 641, 645, 643, 648, 646, 639, 650, 637,
644, 646, 647, 638, 651, 645, 642, 647, 649, 649,
648, 652, 653, 654, 656, 655, 653, 650, 651, 657,
660, 661, 662, 652, 655, 663, 682, 664, 671, 682,
663, 654, 664, 656, 660, 665, 661, 667, 666, 668,
665, 669, 662, 666, 657, 670, 669, 671, 672, 673,
676, 667, 675, 668, 674, 674, 676, 677, 678, 678,
670, 679, 680, 672, 681, 683, 679, 684, 673, 680,
675, 686, 688, 690, 685, 687, 684, 677, 681, 685,
687, 689, 690, 683, 691, 689, 692, 693, 694, 695,
686, 688, 696, 697, 693, 699, 698, 700, 701, 691,
694, 692, 698, 706, 703, 704, 705, 701, 695, 703,
699, 697, 709, 696, 705, 707, 711, 700, 720, 704,
707, 708, 57, 706, 712, 708, 708, 710, 710, 711,
713, 709, 720, 712, 715, 713, 714, 714, 716, 715,
717, 717, 718, 716, 719, 721, 728, 722, 723, 719,
724, 718, 722, 723, 725, 724, 726, 728, 725, 727,
727, 731, 730, 721, 732, 726, 730, 735, 733, 736,
726, 738, 726, 739, 726, 734, 731, 733, 737, 734,
734, 735, 732, 740, 742, 738, 737, 747, 736, 741,
741, 739, 743, 743, 745, 746, 749, 745, 753, 742,
746, 748, 748, 750, 750, 751, 747, 755, 740, 754,
751, 752, 752, 758, 754, 755, 749, 756, 753, 757,
757, 759, 756, 760, 762, 767, 766, 759, 763, 762,
760, 758, 764, 763, 765, 766, 768, 764, 770, 765,
769, 769, 771, 772, 767, 775, 773, 768, 772, 774,
776, 777, 777, 778, 779, 782, 780, 775, 770, 781,
773, 786, 783, 789, 781, 771, 773, 783, 776, 774,
786, 785, 787, 778, 780, 785, 785, 789, 782, 779,
787, 788, 790, 788, 791, 792, 793, 790, 791, 794,
795, 797, 796, 798, 799, 801, 792, 796, 799, 800,
807, 805, 802, 803, 804, 793, 806, 807, 795, 797,
809, 806, 811, 798, 801, 794, 802, 800, 803, 804,
805, 808, 810, 812, 813, 814, 808, 811, 809, 812,
814, 810, 815, 816, 817, 817, 820, 815, 816, 819,
819, 821, 822, 823, 824, 813, 821, 826, 824, 824,
825, 825, 827, 828, 820, 829, 822, 830, 832, 831,
837, 833, 823, 830, 831, 834, 826, 835, 836, 52,
838, 827, 839, 839, 829, 840, 843, 832, 841, 828,
833, 837, 836, 841, 834, 838, 835, 840, 842, 843,
844, 845, 842, 855, 846, 848, 846, 849, 849, 844,
846, 850, 852, 851, 845, 853, 850, 851, 868, 857,
853, 855, 51, 846, 857, 848, 858, 858, 859, 861,
861, 867, 852, 859, 863, 863, 865, 866, 866, 865,
869, 871, 870, 868, 872, 872, 867, 870, 873, 874,
874, 875, 876, 877, 869, 878, 871, 877, 881, 879,
885, 882, 884, 876, 879, 883, 883, 884, 873, 886,
887, 888, 890, 875, 878, 882, 881, 890, 892, 887,
885, 889, 891, 889, 898, 893, 894, 891, 896, 886,
893, 888, 895, 895, 896, 899, 899, 900, 892, 901,
894, 903, 907, 905, 902, 46, 903, 902, 898, 900,
902, 904, 905, 906, 908, 909, 904, 908, 906, 901,
909, 911, 902, 910, 910, 912, 913, 907, 914, 915,
916, 917, 920, 914, 915, 919, 917, 918, 918, 911,
919, 921, 922, 923, 912, 925, 913, 924, 927, 926,
920, 928, 929, 916, 926, 931, 41, 923, 925, 924,
931, 921, 922, 932, 935, 933, 941, 934, 927, 938,
938, 928, 933, 929, 939, 942, 934, 939, 932, 934,
935, 940, 941, 943, 942, 944, 940, 945, 946, 947,
947, 948, 949, 946, 944, 950, 945, 944, 951, 953,
954, 956, 943, 952, 958, 949, 955, 955, 14, 958,
957, 948, 951, 950, 960, 952, 961, 956, 954, 957,
959, 959, 963, 960, 953, 964, 960, 963, 965, 967,
966, 969, 968, 965, 961, 959, 966, 968, 970, 974,
973, 970, 975, 964, 969, 976, 977, 970, 973, 967,
978, 977, 974, 979, 981, 982, 983, 984, 985, 982,
975, 983, 984, 985, 976, 987, 978, 986, 988, 989,
989, 979, 990, 991, 981, 992, 986, 993, 994, 995,
991, 996, 997, 988, 995, 998, 990, 992, 987, 993,
1134, 998, 1134, 996, 999, 999, 1000, 994, 1003, 1000,
997, 1001, 1001, 1004, 1004, 1005, 1006, 1003, 1008, 1007,
1009, 1006, 1011, 1012, 1010, 1013, 1016, 1005, 1007, 1010,
1008, 1011, 1014, 1014, 1015, 1009, 1017, 1018, 1020, 1015,
1013, 1019, 1019, 1012, 1011, 1021, 1021, 1016, 1022, 1022,
1023, 1024, 1028, 1030, 1023, 1017, 1024, 1018, 1020, 1025,
1027, 1029, 1025, 1031, 1031, 1027, 1029, 1032, 1032, 1033,
1028, 1034, 1035, 1036, 1033, 1037, 1039, 1038, 1030, 1040,
1040, 1041, 1043, 1034, 1034, 1034, 1042, 1042, 1047, 1045,
1034, 1038, 1035, 1036, 1048, 1037, 1049, 1039, 1045, 1046,
1046, 1048, 1043, 1047, 1050, 1049, 1052, 1041, 1051, 1051,
1053, 1055, 1056, 1057, 1058, 1059, 1055, 1056, 1060, 1060,
1059, 1058, 1061, 1063, 1065, 1062, 1053, 1061, 1064, 1068,
1050, 1067, 1052, 1057, 1062, 1066, 1065, 1070, 1066, 1069,
1069, 1071, 1072, 1063, 1073, 1074, 1137, 1064, 1078, 1067,
1073, 1076, 1070, 1137, 1074, 1068, 1079, 1072, 1075, 1075,
1071, 1080, 1076, 1077, 1077, 1084, 1080, 1076, 1085, 1078,
1079, 1081, 1081, 1082, 1083, 1087, 1086, 1082, 1082, 1083,
1085, 1086, 1088, 1089, 1090, 1091, 1088, 1087, 1092, 1093,
1091, 1084, 1094, 1096, 1093, 1089, 1096, 1097, 1097, 1098,
1098, 1099, 1099, 1100, 1094, 1101, 1104, 1102, 1103, 1090,
1092, 1101, 1102, 1106, 1103, 1104, 1108, 1110, 1106, 1111,
1111, 1112, 1113, 1100, 1114, 1115, 1116, 1117, 1108, 1110,
1116, 1113, 1117, 1118, 1119, 1121, 1121, 1122, 1118, 1129,
1123, 1112, 1114, 1124, 1115, 1126, 1126, 1121, 1119, 1123,
1130, 1131, 1124, 1132, 1129, 1122, 1131, 1133, 1133, 1135,
1135, 1138, 1139, 1139, 1130, 1140, 1141, 1142, 1143, 1145,
1132, 1144, 1146, 1147, 1140, 1154, 1150, 1149, 1150, 1142,
1143, 1138, 1149, 1144, 1145, 1151, 1152, 1141, 1156, 1154,
1155, 1155, 1146, 1147, 1157, 1152, 1158, 1159, 1158, 1157,
1160, 1161, 1159, 1151, 1162, 1160, 1163, 1164, 1165, 1167,
1171, 1163, 1164, 1168, 1156, 1172, 1165, 1169, 1169, 1161,
1170, 1170, 13, 1186, 1162, 1171, 1173, 1168, 1167, 1174,
1175, 1173, 1175, 1176, 1174, 1172, 1178, 1177, 1178, 1179,
1180, 1185, 1182, 1186, 1187, 1176, 1177, 1182, 1179, 1177,
1183, 1189, 1180, 1191, 1185, 1183, 1192, 1189, 1193, 1191,
1187, 1194, 1195, 1195, 1196, 1197, 1197, 1198, 1199, 1200,
1194, 1192, 1199, 1196, 1200, 1201, 1202, 1202, 1204, 1203,
1207, 1207, 1208, 1193, 1209, 1209, 1198, 1203, 1201, 1210,
1210, 1208, 1211, 1212, 1213, 1214, 1214, 1216, 1204, 1213,
1217, 1218, 1219, 1220, 1211, 1217, 1225, 1221, 1220, 1227,
1222, 1212, 1223, 1223, 1224, 1226, 1230, 1219, 1224, 1228,
1226, 1225, 1216, 1231, 1218, 1221, 1222, 1232, 1233, 1234,
1235, 1237, 1237, 1238, 1240, 1227, 1238, 1239, 1228, 1230,
1241, 1234, 1242, 1242, 1243, 1243, 1232, 1231, 1240, 1233,
1239, 1235, 1245, 1241, 1244, 1244, 1246, 1246, 1247, 1247,
1248, 1248, 1249, 1250, 1250, 1245, 1251, 1251, 1252, 1254,
1255, 1255, 1256, 1259, 1254, 1257, 1257, 1258, 1263, 1259,
1260, 1249, 1264, 1260, 1261, 1261, 1267, 1252, 1262, 1262,
1268, 1256, 1269, 1263, 1270, 1258, 1265, 1265, 1270, 1272,
1261, 1264, 1271, 1271, 1273, 1273, 1267, 1269, 1274, 1275,
1275, 1276, 1277, 1268, 1278, 1279, 1280, 1281, 1272, 1278,
1276, 1282, 1283, 1284, 1277, 1286, 1282, 1285, 1287, 1280,
1290, 1288, 1284, 1287, 1274, 1288, 1285, 1283, 1281, 1286,
1279, 1294, 1292, 1293, 1293, 1297, 1294, 1295, 1295, 1298,
1290, 1292, 1300, 1304, 1302, 1308, 1295, 1302, 1298, 1312,
1297, 1303, 1305, 1305, 1300, 1310, 1303, 1307, 1307, 1308,
1309, 1309, 1311, 1304, 1313, 1313, 1315, 1310, 1312, 1316,
1315, 1319, 1316, 1317, 1317, 1318, 1311, 1321, 1320, 1322,
1318, 1321, 1323, 1324, 1325, 1327, 0, 1323, 1324, 1328,
1325, 1319, 1320, 1329, 1328, 1330, 1334, 1334, 1329, 1322,
1331, 1327, 1331, 1330, 1338, 1338, 1341, 1342, 1342, 1344,
1344, 1341, 1346, 1347, 1347, 1348, 1349, 1346, 1350, 1355,
1352, 1353, 1353, 1350, 1356, 1357, 1358, 0, 1355, 1356,
1362, 1348, 1352, 1360, 1360, 1362, 1364, 1363, 1349, 1363,
1365, 1358, 1369, 1357, 1370, 1365, 1366, 1366, 1367, 1367,
1364, 1368, 1368, 1371, 1369, 1372, 1373, 1375, 1374, 1376,
1376, 1377, 1370, 1374, 1378, 1371, 1379, 1372, 1373, 1380,
1377, 1381, 1384, 1382, 1383, 1385, 1386, 1375, 1387, 1387,
1385, 1386, 1380, 1388, 1388, 1391, 1379, 1382, 1392, 1393,
1378, 1395, 1383, 1394, 1384, 1381, 1396, 1397, 1398, 1398,
1395, 1400, 1400, 1401, 1403, 1391, 1392, 1402, 1404, 1405,
1407, 1393, 1401, 1394, 1402, 1397, 1396, 1406, 1409, 1403,
1408, 1408, 1410, 1409, 1411, 1412, 1404, 1405, 1413, 1407,
1415, 1418, 1419, 1406, 1422, 1419, 1420, 1420, 1421, 1411,
1410, 1423, 1425, 1426, 1412, 1423, 1428, 1426, 1413, 1415,
1431, 1418, 1422, 1421, 1427, 1427, 1438, 1425, 0, 1428,
1430, 1430, 1432, 1432, 1433, 1433, 1437, 1437, 1439, 1431,
1440, 1441, 1442, 1443, 1445, 1440, 1441, 1439, 1438, 1446,
1447, 1443, 1448, 1451, 1446, 1447, 1449, 1449, 1451, 1445,
1452, 1442, 1450, 1450, 1460, 1452, 1461, 1448, 1453, 1453,
1454, 1454, 1457, 1460, 1458, 1459, 1462, 1457, 1458, 1464,
1459, 1461, 1463, 1466, 1462, 1467, 1466, 1463, 1468, 1469,
1470, 1464, 1471, 1471, 1474, 1472, 1475, 0, 1469, 1470,
1476, 1468, 1478, 1467, 1472, 1477, 1477, 1479, 1479, 1480,
1481, 1478, 1483, 1474, 1484, 1481, 1475, 1480, 1485, 1476,
1486, 1483, 1485, 1487, 1489, 1489, 1494, 1484, 1491, 1491,
1495, 1495, 1496, 1500, 1486, 1496, 1497, 1497, 1487, 1498,
1498, 1499, 1499, 1501, 1502, 1511, 1494, 1503, 1503, 1502,
1504, 1500, 1507, 1513, 1504, 1508, 1512, 1501, 1507, 1514,
1508, 1512, 1511, 1511, 1515, 1516, 1516, 1517, 1518, 1519,
1524, 1513, 1520, 1520, 1521, 1521, 1518, 1522, 1515, 1514,
1523, 1525, 1526, 1527, 1528, 1523, 1517, 1532, 1519, 1530,
1524, 1526, 1530, 1522, 1533, 1533, 1534, 1535, 1536, 1538,
1534, 1537, 1537, 1527, 1528, 1532, 1535, 1525, 1539, 1541,
1542, 1543, 1538, 1536, 1547, 1548, 1548, 1539, 1541, 1547,
1549, 1551, 1542, 1552, 1553, 1554, 1551, 1556, 1555, 1549,
1557, 1558, 1552, 1555, 1561, 1557, 1543, 1559, 1559, 1562,
1563, 1563, 1565, 1564, 1553, 1556, 1554, 1564, 1566, 1567,
1568, 1565, 1569, 1561, 1562, 1570, 1558, 1569, 1568, 1571,
1571, 1572, 1573, 1573, 1566, 1574, 1576, 1576, 1567, 1577,
1574, 1578, 1580, 1580, 1581, 1582, 1583, 1583, 1584, 1584,
1572, 1570, 1585, 1586, 1587, 1588, 1588, 1589, 1581, 1577,
1590, 1591, 1592, 1593, 1578, 1586, 1591, 1582, 1593, 1589,
1594, 1585, 1595, 1595, 1587, 1597, 1597, 1598, 1600, 1601,
1590, 1592, 0, 1600, 1602, 1603, 1603, 1594, 1594, 1602,
1604, 1604, 1606, 1601, 1605, 1605, 1598, 1606, 1608, 1608,
1610, 1610, 1612, 1612, 1613, 1614, 1615, 1615, 1616, 1619,
1620, 1620, 1624, 1616, 1614, 1621, 1623, 1619, 1613, 1625,
1621, 1623, 1626, 1627, 1624, 1628, 1629, 1632, 1633, 1633,
1635, 1629, 1634, 1634, 1635, 1639, 1639, 1625, 1626, 1641,
1627, 1627, 1644, 1641, 1643, 1643, 1628, 1632, 1646, 1646,
1647, 1649, 1650, 1650, 1651, 1651, 1644, 1652, 1653, 1654,
1657, 1655, 1656, 1658, 1658, 1647, 1655, 1656, 0, 1649,
1661, 1661, 1667, 1653, 1663, 1663, 1665, 1665, 1671, 1657,
1654, 1672, 1652, 1671, 1667, 1668, 1668, 1673, 1674, 1676,
1675, 1682, 1673, 1681, 1684, 1672, 1683, 1681, 1685, 1686,
1687, 1690, 1688, 1689, 1689, 1676, 1693, 1674, 1675, 1683,
1690, 1682, 1694, 1684, 1691, 1686, 1685, 1688, 1692, 1691,
1696, 1695, 1698, 1692, 1699, 1687, 1695, 1694, 1700, 1703,
1701, 1693, 1702, 1700, 1696, 1701, 1704, 1698, 1705, 1706,
1707, 1708, 1703, 1699, 1709, 1710, 1702, 1712, 1713, 1713,
1710, 1711, 1705, 1707, 1708, 1704, 1711, 1714, 1706, 1715,
1716, 1717, 1714, 1709, 1715, 1716, 1712, 1718, 1719, 1719,
1720, 1721, 1718, 1722, 1723, 1724, 1725, 1720, 1727, 1723,
1717, 1728, 1729, 1727, 1730, 1731, 1731, 1733, 1732, 1725,
1721, 0, 1722, 1732, 1724, 1734, 1734, 1730, 1735, 1735,
1728, 1729, 1736, 1737, 1738, 1740, 1733, 1736, 1739, 1739,
1737, 1741, 1740, 1742, 1743, 1744, 1746, 1747, 1741, 1743,
1748, 1746, 1747, 1738, 1749, 1750, 1750, 1751, 1752, 1753,
1753, 1755, 1742, 1764, 1744, 1754, 1754, 1765, 1755, 1748,
1756, 1756, 1758, 1749, 1757, 1757, 1751, 1752, 1760, 1758,
1763, 0, 1764, 1760, 0, 1763, 1765, 1766, 1766, 1767,
1767, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1772, 1772,
1772, 1772, 1772, 1772, 1772, 1773, 1773, 1773, 1773, 1773,
1773, 1773, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1775,
1775, 1775, 1775, 1775, 1775, 1775, 1777, 1777, 0, 1777,
1777, 1777, 1777, 1778, 1778, 0, 0, 0, 1778, 1778,
1779, 1779, 0, 0, 1779, 0, 1779, 1780, 0, 0,
0, 0, 0, 1780, 1781, 1781, 0, 0, 0, 1781,
1781, 1782, 0, 0, 0, 0, 0, 1782, 1783, 1783,
0, 1783, 1783, 1783, 1783, 1784, 1784, 0, 1784, 1784,
1784, 1784, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770,
1770, 1770
} ;
static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;
extern int yy_flex_debug;
int yy_flex_debug = 0;
/* The intent behind this definition is that it'll catch
* any uses of REJECT which flex missed.
*/
#define REJECT reject_used_but_not_detected
static int yy_more_flag = 0;
static int yy_more_len = 0;
#define yymore() ((yy_more_flag) = 1)
#define YY_MORE_ADJ (yy_more_len)
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "./util/configlexer.lex"
#line 2 "./util/configlexer.lex"
/*
* configlexer.lex - lexical analyzer for unbound config file
*
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved
*
* See LICENSE for the license.
*
*/
#include <ctype.h>
#include <string.h>
#include <strings.h>
#ifdef HAVE_GLOB_H
# include <glob.h>
#endif
#include "util/config_file.h"
#include "util/configparser.h"
void ub_c_error(const char *message);
#if 0
#define LEXOUT(s) printf s /* used ONLY when debugging */
#else
#define LEXOUT(s)
#endif
/** avoid warning in about fwrite return value */
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)
/** A parser variable, this is a statement in the config file which is
* of the form variable: value1 value2 ... nargs is the number of values. */
#define YDVAR(nargs, var) \
num_args=(nargs); \
LEXOUT(("v(%s%d) ", yytext, num_args)); \
if(num_args > 0) { BEGIN(val); } \
return (var);
struct inc_state {
char* filename;
int line;
YY_BUFFER_STATE buffer;
struct inc_state* next;
};
static struct inc_state* config_include_stack = NULL;
static int inc_depth = 0;
static int inc_prev = 0;
static int num_args = 0;
void init_cfg_parse(void)
{
config_include_stack = NULL;
inc_depth = 0;
inc_prev = 0;
num_args = 0;
}
static void config_start_include(const char* filename)
{
FILE *input;
struct inc_state* s;
char* nm;
if(inc_depth++ > 100000) {
ub_c_error_msg("too many include files");
return;
}
if(strlen(filename) == 0) {
ub_c_error_msg("empty include file name");
return;
}
s = (struct inc_state*)malloc(sizeof(*s));
if(!s) {
ub_c_error_msg("include %s: malloc failure", filename);
return;
}
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
strlen(cfg_parser->chroot)) == 0) {
filename += strlen(cfg_parser->chroot);
}
nm = strdup(filename);
if(!nm) {
ub_c_error_msg("include %s: strdup failure", filename);
free(s);
return;
}
input = fopen(filename, "r");
if(!input) {
ub_c_error_msg("cannot open include file '%s': %s",
filename, strerror(errno));
free(s);
free(nm);
return;
}
LEXOUT(("switch_to_include_file(%s)\n", filename));
s->filename = cfg_parser->filename;
s->line = cfg_parser->line;
s->buffer = YY_CURRENT_BUFFER;
s->next = config_include_stack;
config_include_stack = s;
cfg_parser->filename = nm;
cfg_parser->line = 1;
yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
}
static void config_start_include_glob(const char* filename)
{
/* check for wildcards */
#ifdef HAVE_GLOB
glob_t g;
size_t i;
int r, flags;
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
!strchr(filename, '{') && !strchr(filename, '~'))) {
flags = 0
#ifdef GLOB_ERR
| GLOB_ERR
#endif
#ifdef GLOB_NOSORT
| GLOB_NOSORT
#endif
#ifdef GLOB_BRACE
| GLOB_BRACE
#endif
#ifdef GLOB_TILDE
| GLOB_TILDE
#endif
;
memset(&g, 0, sizeof(g));
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
strlen(cfg_parser->chroot)) == 0) {
filename += strlen(cfg_parser->chroot);
}
r = glob(filename, flags, NULL, &g);
if(r) {
/* some error */
globfree(&g);
if(r == GLOB_NOMATCH)
return; /* no matches for pattern */
config_start_include(filename); /* let original deal with it */
return;
}
/* process files found, if any */
for(i=0; i<(size_t)g.gl_pathc; i++) {
config_start_include(g.gl_pathv[i]);
}
globfree(&g);
return;
}
#endif /* HAVE_GLOB */
config_start_include(filename);
}
static void config_end_include(void)
{
struct inc_state* s = config_include_stack;
--inc_depth;
if(!s) return;
free(cfg_parser->filename);
cfg_parser->filename = s->filename;
cfg_parser->line = s->line;
yy_delete_buffer(YY_CURRENT_BUFFER);
yy_switch_to_buffer(s->buffer);
config_include_stack = s->next;
free(s);
}
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
#define yy_set_bol(at_bol) \
{ \
if ( ! yy_current_buffer ) \
yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
}
#endif
#define YY_NO_INPUT 1
#line 181 "./util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
#ifndef YY_NO_INPUT
#define YY_NO_INPUT 1
#endif
#line 2002 "<stdout>"
#define INITIAL 0
#define quotedstring 1
#define singlequotedstr 2
#define include 3
#define include_quoted 4
#define val 5
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <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 201 "./util/configlexer.lex"
#line 2189 "<stdout>"
if ( !(yy_init) )
{
(yy_init) = 1;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
if ( ! (yy_start) )
(yy_start) = 1; /* first start state */
if ( ! yyin )
yyin = stdin;
if ( ! yyout )
yyout = stdout;
if ( ! YY_CURRENT_BUFFER ) {
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE );
}
yy_load_buffer_state( );
}
while ( 1 ) /* loops until end-of-file is reached */
{
(yy_more_len) = 0;
if ( (yy_more_flag) )
{
(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
(yy_more_flag) = 0;
}
yy_cp = (yy_c_buf_p);
/* Support of yytext. */
*yy_cp = (yy_hold_char);
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = (yy_start);
yy_match:
do
{
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1771 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
++yy_cp;
}
while ( yy_base[yy_current_state] != 3503 );
yy_find_action:
yy_act = yy_accept[yy_current_state];
if ( yy_act == 0 )
{ /* have to back up */
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
yy_act = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 0: /* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
*yy_cp = (yy_hold_char);
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
goto yy_find_action;
case 1:
YY_RULE_SETUP
#line 202 "./util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 204 "./util/configlexer.lex"
{
/* note that flex makes the longest match and '.' is any but not nl */
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
YY_BREAK
case 3:
YY_RULE_SETUP
#line 207 "./util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 208 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 209 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 210 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 7:
YY_RULE_SETUP
#line 211 "./util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 212 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 213 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 214 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 215 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 216 "./util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 217 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 218 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 219 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 16:
YY_RULE_SETUP
#line 220 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 17:
YY_RULE_SETUP
#line 221 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_UPSTREAM) }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 222 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 223 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 224 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 225 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 226 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 227 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 228 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 229 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 26:
YY_RULE_SETUP
#line 230 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 231 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 232 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_SNDBUF) }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 233 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_REUSEPORT) }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 234 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_TRANSPARENT) }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 235 "./util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 236 "./util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 237 "./util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 34:
YY_RULE_SETUP
#line 238 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 239 "./util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 240 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 241 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 242 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 243 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 244 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 245 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 246 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 247 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 248 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 249 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 250 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 251 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 252 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 253 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 50:
YY_RULE_SETUP
#line 254 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 255 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 256 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 257 "./util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 258 "./util/configlexer.lex"
{ YDVAR(1, VAR_DELAY_CLOSE) }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 259 "./util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 260 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 261 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 262 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 263 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 264 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 265 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 266 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 267 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 268 "./util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 65:
YY_RULE_SETUP
#line 269 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 270 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 271 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 272 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH_KEY) }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 273 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 274 "./util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 275 "./util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 276 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 277 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 278 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 279 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_FIRST) }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 280 "./util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 281 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 282 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 283 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_FIRST) }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 284 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 285 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 286 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 287 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 288 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 289 "./util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 290 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 291 "./util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 292 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 293 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 294 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 295 "./util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 296 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 297 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 298 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 299 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 300 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 301 "./util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 302 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 303 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 304 "./util/configlexer.lex"
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 305 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 306 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 307 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 308 "./util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 309 "./util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 311 "./util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 312 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 313 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 314 "./util/configlexer.lex"
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 315 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 316 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 317 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 318 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 319 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 320 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 321 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 322 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 323 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 324 "./util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 325 "./util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 326 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 327 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 328 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 329 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 330 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 331 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
case 127:
YY_RULE_SETUP
#line 332 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 333 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 334 "./util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 335 "./util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 336 "./util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
case 132:
YY_RULE_SETUP
#line 337 "./util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 338 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 339 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 340 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 341 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 342 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 343 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 344 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 345 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 346 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 347 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 348 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 349 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 351 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 353 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 355 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
YY_BREAK
case 148:
YY_RULE_SETUP
#line 357 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
YY_BREAK
case 149:
YY_RULE_SETUP
#line 359 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
YY_BREAK
case 150:
YY_RULE_SETUP
#line 361 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT) }
YY_BREAK
case 151:
YY_RULE_SETUP
#line 362 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
YY_BREAK
case 152:
YY_RULE_SETUP
#line 363 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
YY_BREAK
case 153:
YY_RULE_SETUP
#line 364 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 365 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 366 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
YY_BREAK
case 156:
/* rule 156 can match eol */
YY_RULE_SETUP
#line 367 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 157:
YY_RULE_SETUP
#line 370 "./util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 371 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 158:
YY_RULE_SETUP
#line 376 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 159:
/* rule 159 can match eol */
YY_RULE_SETUP
#line 377 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 379 "./util/configlexer.lex"
{
LEXOUT(("QE "));
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
yytext[yyleng - 1] = '\0';
yylval.str = strdup(yytext);
if(!yylval.str)
yyerror("out of memory");
return STRING_ARG;
}
YY_BREAK
/* Single Quoted strings. Strip leading and ending quotes */
case 161:
YY_RULE_SETUP
#line 391 "./util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 392 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 162:
YY_RULE_SETUP
#line 397 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 163:
/* rule 163 can match eol */
YY_RULE_SETUP
#line 398 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 400 "./util/configlexer.lex"
{
LEXOUT(("SQE "));
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
yytext[yyleng - 1] = '\0';
yylval.str = strdup(yytext);
if(!yylval.str)
yyerror("out of memory");
return STRING_ARG;
}
YY_BREAK
/* include: directive */
case 165:
YY_RULE_SETUP
#line 412 "./util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 414 "./util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
case 166:
YY_RULE_SETUP
#line 418 "./util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 167:
/* rule 167 can match eol */
YY_RULE_SETUP
#line 419 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 168:
YY_RULE_SETUP
#line 420 "./util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 169:
YY_RULE_SETUP
#line 421 "./util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
config_start_include_glob(yytext);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 426 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 170:
YY_RULE_SETUP
#line 430 "./util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 171:
/* rule 171 can match eol */
YY_RULE_SETUP
#line 431 "./util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
case 172:
YY_RULE_SETUP
#line 433 "./util/configlexer.lex"
{
LEXOUT(("IQE "));
yytext[yyleng - 1] = '\0';
config_start_include_glob(yytext);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(val):
#line 439 "./util/configlexer.lex"
{
LEXOUT(("LEXEOF "));
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
if (!config_include_stack) {
yyterminate();
} else {
fclose(yyin);
config_end_include();
}
}
YY_BREAK
case 173:
YY_RULE_SETUP
#line 450 "./util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
YY_BREAK
case 174:
YY_RULE_SETUP
#line 454 "./util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
case 175:
YY_RULE_SETUP
#line 458 "./util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
case 176:
YY_RULE_SETUP
#line 462 "./util/configlexer.lex"
ECHO;
YY_BREAK
#line 3257 "<stdout>"
case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* yylex(). If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}
/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state). Contrast this with the test
* in input().
*/
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/
yy_next_state = yy_try_NUL_trans( yy_current_state );
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++(yy_c_buf_p);
yy_current_state = yy_next_state;
goto yy_match;
}
else
{
yy_cp = (yy_c_buf_p);
goto yy_find_action;
}
}
else switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_END_OF_FILE:
{
(yy_did_buffer_switch_on_eof) = 0;
if ( yywrap( ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}
else
{
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
}
break;
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) =
(yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_match;
case EOB_ACT_LAST_MATCH:
(yy_c_buf_p) =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}
default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of yylex */
/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (void)
{
register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
register char *source = (yytext_ptr);
register int number_to_move, i;
int ret_val;
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
else
{
yy_size_t num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
int yy_c_buf_p_offset =
(int) ((yy_c_buf_p) - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
yy_size_t new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = 0;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
"fatal error - scanner input buffer overflow" );
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
number_to_move - 1;
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
(yy_n_chars), num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
if ( (yy_n_chars) == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
yyrestart(yyin );
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
}
(yy_n_chars) += number_to_move;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
return ret_val;
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
static yy_state_type yy_get_previous_state (void)
{
register yy_state_type yy_current_state;
register char *yy_cp;
yy_current_state = (yy_start);
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
{
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1771 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
{
register int yy_is_jam;
register char *yy_cp = (yy_c_buf_p);
register YY_CHAR yy_c = 1;
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1771 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 1770);
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void)
#else
static int input (void)
#endif
{
int c;
*(yy_c_buf_p) = (yy_hold_char);
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
/* This was really a NUL. */
*(yy_c_buf_p) = '\0';
else
{ /* need more input */
yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
++(yy_c_buf_p);
switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart(yyin );
/*FALLTHROUGH*/
case EOB_ACT_END_OF_FILE:
{
if ( yywrap( ) )
return EOF;
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput();
#else
return input();
#endif
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) = (yytext_ptr) + offset;
break;
}
}
}
c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
*(yy_c_buf_p) = '\0'; /* preserve yytext */
(yy_hold_char) = *++(yy_c_buf_p);
return c;
}
#endif /* ifndef YY_NO_INPUT */
/** Immediately switch to a different input stream.
* @param input_file A readable stream.
*
* @note This function does not reset the start condition to @c INITIAL .
*/
void yyrestart (FILE * input_file )
{
if ( ! YY_CURRENT_BUFFER ){
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE );
}
yy_init_buffer(YY_CURRENT_BUFFER,input_file );
yy_load_buffer_state( );
}
/** Switch to a different input buffer.
* @param new_buffer The new input buffer.
*
*/
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
{
/* TODO. We should be able to replace this entire function body
* with
* yypop_buffer_state();
* yypush_buffer_state(new_buffer);
*/
yyensure_buffer_stack ();
if ( YY_CURRENT_BUFFER == new_buffer )
return;
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
YY_CURRENT_BUFFER_LVALUE = new_buffer;
yy_load_buffer_state( );
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
*/
(yy_did_buffer_switch_on_eof) = 1;
}
static void yy_load_buffer_state (void)
{
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
(yy_hold_char) = *(yy_c_buf_p);
}
/** Allocate and initialize an input buffer state.
* @param file A readable stream.
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
*
* @return the allocated buffer state.
*/
YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_is_our_buffer = 1;
yy_init_buffer(b,file );
return b;
}
/** Destroy the buffer.
* @param b a buffer created with yy_create_buffer()
*
*/
void yy_delete_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
yyfree((void *) b->yy_ch_buf );
yyfree((void *) b );
}
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a yyrestart() or at EOF.
*/
static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
{
int oerrno = errno;
yy_flush_buffer(b );
b->yy_input_file = file;
b->yy_fill_buffer = 1;
/* If b is the current buffer, then yy_init_buffer was _probably_
* called from yyrestart() or through yy_get_next_buffer.
* In that case, we don't want to reset the lineno or column.
*/
if (b != YY_CURRENT_BUFFER){
b->yy_bs_lineno = 1;
b->yy_bs_column = 0;
}
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
errno = oerrno;
}
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
*
*/
void yy_flush_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == YY_CURRENT_BUFFER )
yy_load_buffer_state( );
}
/** Pushes the new state onto the stack. The new state becomes
* the current state. This function will allocate the stack
* if necessary.
* @param new_buffer The new state.
*
*/
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
{
if (new_buffer == NULL)
return;
yyensure_buffer_stack();
/* This block is copied from yy_switch_to_buffer. */
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
/* Only push if top exists. Otherwise, replace top. */
if (YY_CURRENT_BUFFER)
(yy_buffer_stack_top)++;
YY_CURRENT_BUFFER_LVALUE = new_buffer;
/* copied from yy_switch_to_buffer. */
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
*
*/
void yypop_buffer_state (void)
{
if (!YY_CURRENT_BUFFER)
return;
yy_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
if ((yy_buffer_stack_top) > 0)
--(yy_buffer_stack_top);
if (YY_CURRENT_BUFFER) {
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
}
/* Allocates the stack if it does not exist.
* Guarantees space for at least one push.
*/
static void yyensure_buffer_stack (void)
{
yy_size_t num_to_alloc;
if (!(yy_buffer_stack)) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1;
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
(yy_buffer_stack_top) = 0;
return;
}
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
/* Increase the buffer to prepare for a possible push. */
int grow_size = 8 /* arbitrary grow size */;
num_to_alloc = (yy_buffer_stack_max) + grow_size;
(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
((yy_buffer_stack),
num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
/* zero only the new slots.*/
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
}
}
/** Setup the input buffer state to scan directly from a user-specified character buffer.
* @param base the character buffer
* @param size the size in bytes of the character buffer
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = 0;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
yy_switch_to_buffer(b );
return b;
}
/** Setup the input buffer state to scan a string. The next call to yylex() will
* scan from a @e copy of @a str.
* @param yystr a NUL-terminated string to scan
*
* @return the newly allocated buffer state object.
* @note If you want to scan bytes that may contain NUL values, then use
* yy_scan_bytes() instead.
*/
YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
{
return yy_scan_bytes(yystr,strlen(yystr) );
}
/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
* scan from a @e copy of @a bytes.
* @param yybytes the byte buffer to scan
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
yy_size_t i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = _yybytes_len + 2;
buf = (char *) yyalloc(n );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
for ( i = 0; i < _yybytes_len; ++i )
buf[i] = yybytes[i];
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
b = yy_scan_buffer(buf,n );
if ( ! b )
YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
/* It's okay to grow etc. this buffer, and we should throw it
* away when we're done.
*/
b->yy_is_our_buffer = 1;
return b;
}
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
static void yy_fatal_error (yyconst char* msg )
{
(void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
yytext[yyleng] = (yy_hold_char); \
(yy_c_buf_p) = yytext + yyless_macro_arg; \
(yy_hold_char) = *(yy_c_buf_p); \
*(yy_c_buf_p) = '\0'; \
yyleng = yyless_macro_arg; \
} \
while ( 0 )
/* Accessor methods (get/set functions) to struct members. */
/** Get the current line number.
*
*/
int yyget_lineno (void)
{
return yylineno;
}
/** Get the input stream.
*
*/
FILE *yyget_in (void)
{
return yyin;
}
/** Get the output stream.
*
*/
FILE *yyget_out (void)
{
return yyout;
}
/** Get the length of the current token.
*
*/
yy_size_t yyget_leng (void)
{
return yyleng;
}
/** Get the current token.
*
*/
char *yyget_text (void)
{
return yytext;
}
/** Set the current line number.
* @param line_number
*
*/
void yyset_lineno (int line_number )
{
yylineno = line_number;
}
/** Set the input stream. This does not discard the current
* input buffer.
* @param in_str A readable stream.
*
* @see yy_switch_to_buffer
*/
void yyset_in (FILE * in_str )
{
yyin = in_str ;
}
void yyset_out (FILE * out_str )
{
yyout = out_str ;
}
int yyget_debug (void)
{
return yy_flex_debug;
}
void yyset_debug (int bdebug )
{
yy_flex_debug = bdebug ;
}
static int yy_init_globals (void)
{
/* Initialization is the same as for the non-reentrant scanner.
* This function is called from yylex_destroy(), so don't allocate here.
*/
(yy_buffer_stack) = 0;
(yy_buffer_stack_top) = 0;
(yy_buffer_stack_max) = 0;
(yy_c_buf_p) = (char *) 0;
(yy_init) = 0;
(yy_start) = 0;
/* Defined in main.c */
#ifdef YY_STDINIT
yyin = stdin;
yyout = stdout;
#else
yyin = (FILE *) 0;
yyout = (FILE *) 0;
#endif
/* For future reference: Set errno on error, since we are called by
* yylex_init()
*/
return 0;
}
/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int yylex_destroy (void)
{
/* Pop the buffer stack, destroying each element. */
while(YY_CURRENT_BUFFER){
yy_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
yypop_buffer_state();
}
/* Destroy the stack itself. */
yyfree((yy_buffer_stack) );
(yy_buffer_stack) = NULL;
/* Reset the globals. This is important in a non-reentrant scanner so the next time
* yylex() is called, initialization will occur. */
yy_init_globals( );
return 0;
}
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * s )
{
register int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
void *yyalloc (yy_size_t size )
{
return (void *) malloc( size );
}
void *yyrealloc (void * ptr, yy_size_t size )
{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return (void *) realloc( (char *) ptr, size );
}
void yyfree (void * ptr )
{
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"
#line 462 "./util/configlexer.lex"