unbound/util/configlexer.c
W.C.A. Wijngaards 318d4e91cc - Fix #165: Add prefer-ip4: yesno config option to prefer ipv4 for
using ipv4 filters, because the hosts ip6 netblock /64 is not owned
  by one operator, and thus reputation is shared.
2020-02-25 09:55:59 +01:00

5782 lines
211 KiB
C

#include "config.h"
#include "util/configyyrename.h"
#line 2 "<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 6
#define YY_FLEX_SUBMINOR_VERSION 4
#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
#ifndef SIZE_MAX
#define SIZE_MAX (~(size_t)0)
#endif
#endif /* ! C99 */
#endif /* ! FLEXINT_H */
/* begin standard C++ headers. */
/* TODO: this is always defined, so inline it */
#define yyconst const
#if defined(__GNUC__) && __GNUC__ >= 3
#define yynoreturn __attribute__((__noreturn__))
#else
#define yynoreturn
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an
* integer in range [0..255] for use as an array index.
*/
#define YY_SC_TO_UI(c) ((YY_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
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k.
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
* Ditto for the __ia64__ case accordingly.
*/
#define YY_BUF_SIZE 32768
#else
#define YY_BUF_SIZE 16384
#endif /* __ia64__ */
#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 int yyleng;
extern FILE *yyin, *yyout;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
#define YY_LINENO_REWIND_TO(ptr)
/* 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.
*/
int yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
int yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
int yy_bs_lineno; /**< The line count. */
int yy_bs_column; /**< The column count. */
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;
static int yy_n_chars; /* number of characters read into yy_ch_buf */
int yyleng;
/* Points to current character in buffer. */
static char *yy_c_buf_p = NULL;
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 ( const char *yy_str );
YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len );
void *yyalloc ( yy_size_t );
void *yyrealloc ( void *, yy_size_t );
void yyfree ( void * );
#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! YY_CURRENT_BUFFER ){ \
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer( yyin, YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! YY_CURRENT_BUFFER ){\
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer( yyin, YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
/* Begin user sect3 */
typedef flex_uint8_t YY_CHAR;
FILE *yyin = NULL, *yyout = NULL;
typedef int yy_state_type;
extern int yylineno;
int yylineno = 1;
extern char *yytext;
#ifdef yytext_ptr
#undef yytext_ptr
#endif
#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 yynoreturn yy_fatal_error ( const 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 = (int) (yy_cp - (yytext_ptr)); \
(yy_hold_char) = *yy_cp; \
*yy_cp = '\0'; \
(yy_c_buf_p) = yy_cp;
#define YY_NUM_RULES 303
#define YY_END_OF_BUFFER 304
/* 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 const flex_int16_t yy_accept[2988] =
{ 0,
1, 1, 285, 285, 289, 289, 293, 293, 297, 297,
1, 1, 304, 301, 1, 283, 283, 302, 2, 302,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 285, 286, 286, 287, 302, 289, 290, 290,
291, 302, 296, 293, 294, 294, 295, 302, 297, 298,
298, 299, 302, 300, 284, 2, 288, 302, 300, 301,
0, 1, 2, 2, 2, 2, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
285, 0, 289, 0, 296, 0, 293, 297, 0, 300,
0, 2, 2, 300, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 300, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 113, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 121, 301, 301, 301, 301,
301, 301, 301, 300, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 97, 301,
301, 301, 301, 301, 301, 8, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 114, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 126, 301, 300, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 278, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 300, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 55, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 223, 301, 14, 15, 301, 19, 18, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 120, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 207, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
3, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 300, 301, 301, 301, 301, 301, 301,
301, 273, 301, 301, 272, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 292,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 58, 301, 247, 301, 301, 301, 301,
301, 301, 301, 301, 279, 280, 301, 301, 301, 301,
301, 59, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 117, 301, 301,
301, 301, 301, 301, 301, 301, 196, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 21, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 145, 301, 301, 292, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 95,
301, 301, 301, 301, 301, 301, 301, 255, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
168, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 144, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 94, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 32, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 33, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 56, 301, 301, 301, 301,
301, 301, 301, 301, 301, 119, 301, 301, 301, 301,
301, 112, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 57, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 169, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 46, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 238, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 50, 301, 51, 301, 301,
301, 301, 301, 98, 301, 99, 301, 301, 301, 301,
96, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 7, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 216, 301, 301,
301, 301, 147, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 47, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 188, 301, 187, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 16, 17, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 60,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 195, 301, 301, 301, 301, 301, 301, 101, 301,
100, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 179, 301, 301, 301, 301, 301, 301, 301, 301,
127, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
79, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
83, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 54, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 182, 183, 301, 301, 301, 249, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
6, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 253, 301, 301, 301, 301, 301, 301, 274, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 42,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 44, 301, 301, 301, 301, 301, 301, 301,
301, 175, 301, 301, 301, 122, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 200, 301, 176, 301,
301, 301, 213, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 45,
301, 301, 301, 301, 301, 301, 301, 301, 301, 124,
106, 301, 107, 301, 301, 301, 105, 301, 301, 301,
301, 301, 301, 301, 301, 142, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 237, 301, 301,
301, 301, 301, 301, 301, 301, 177, 301, 301, 301,
301, 301, 180, 301, 186, 301, 301, 301, 301, 301,
212, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 93, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 118, 301, 301, 301, 301, 301, 301,
52, 301, 301, 301, 26, 301, 301, 301, 301, 301,
301, 301, 301, 301, 20, 301, 301, 301, 301, 301,
301, 27, 36, 301, 152, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 68, 70, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 257,
301, 301, 301, 224, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 108, 301, 301, 301, 301, 301, 301, 301,
301, 301, 141, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 268, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 146, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 206, 301, 301, 301, 301, 301, 301, 301, 301,
277, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 163, 301, 301, 301, 301, 301, 301, 301,
301, 102, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 158, 301, 170, 301, 301, 301, 301, 301, 130,
301, 301, 301, 301, 301, 89, 301, 301, 301, 301,
198, 301, 301, 301, 301, 301, 301, 214, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
229, 301, 301, 301, 301, 301, 301, 301, 301, 301,
123, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 162, 301, 301, 301, 301, 301, 71, 72, 301,
301, 301, 301, 301, 53, 301, 301, 301, 301, 301,
78, 171, 301, 189, 301, 217, 301, 301, 181, 250,
301, 301, 301, 301, 301, 64, 301, 173, 301, 301,
301, 301, 301, 9, 301, 301, 301, 92, 301, 301,
301, 301, 242, 301, 301, 301, 197, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 161, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 148, 301, 256,
301, 301, 301, 301, 228, 301, 301, 301, 301, 301,
301, 301, 301, 208, 301, 301, 301, 301, 248, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 271, 301, 172, 301, 301, 301, 301,
301, 301, 301, 63, 65, 301, 301, 301, 301, 301,
301, 301, 91, 301, 301, 301, 301, 240, 301, 301,
301, 252, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 202, 34, 28, 30, 301, 301, 301,
301, 301, 301, 301, 301, 301, 35, 301, 29, 31,
301, 301, 301, 301, 301, 301, 301, 301, 88, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 204, 201, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 62, 301, 301, 125, 301, 109, 301, 301,
301, 301, 301, 301, 301, 301, 143, 13, 301, 301,
301, 301, 301, 301, 301, 301, 301, 266, 301, 269,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
12, 301, 301, 22, 301, 301, 301, 246, 301, 301,
301, 254, 301, 301, 301, 66, 301, 210, 301, 301,
301, 301, 203, 301, 301, 61, 301, 301, 301, 301,
23, 301, 43, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 157, 156, 301, 301, 301,
301, 301, 301, 301, 301, 301, 205, 199, 301, 215,
301, 301, 258, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 73, 301, 301,
301, 241, 301, 301, 301, 301, 185, 301, 301, 301,
301, 209, 301, 301, 301, 301, 301, 301, 301, 301,
275, 276, 154, 301, 301, 67, 301, 301, 301, 301,
164, 301, 301, 103, 104, 301, 301, 301, 301, 149,
301, 151, 301, 190, 301, 301, 301, 301, 155, 301,
301, 218, 301, 301, 301, 301, 301, 301, 301, 132,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 225, 301, 301, 301, 24, 301, 251, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 191,
301, 301, 239, 301, 270, 301, 184, 301, 301, 301,
301, 48, 301, 301, 301, 301, 4, 301, 301, 301,
116, 131, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
221, 37, 38, 301, 301, 301, 301, 301, 301, 301,
259, 301, 301, 301, 301, 301, 301, 227, 301, 301,
301, 194, 301, 301, 301, 301, 301, 301, 301, 301,
301, 76, 301, 49, 245, 301, 222, 301, 301, 301,
301, 11, 301, 301, 301, 301, 301, 115, 301, 301,
301, 301, 192, 80, 301, 40, 301, 301, 301, 301,
301, 301, 301, 301, 160, 301, 301, 301, 301, 301,
134, 301, 301, 301, 301, 301, 301, 301, 301, 301,
226, 128, 301, 301, 110, 111, 301, 301, 301, 82,
86, 81, 301, 74, 301, 301, 301, 301, 301, 10,
301, 301, 301, 243, 301, 301, 301, 301, 282, 39,
301, 301, 301, 301, 301, 159, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 87, 85, 301, 75, 267, 301,
301, 301, 301, 301, 301, 301, 178, 301, 301, 301,
301, 301, 193, 301, 301, 301, 301, 301, 301, 301,
301, 150, 69, 301, 301, 301, 301, 301, 260, 301,
301, 301, 301, 301, 301, 301, 129, 301, 84, 135,
136, 139, 140, 137, 138, 77, 301, 244, 301, 301,
301, 301, 153, 301, 301, 301, 301, 301, 220, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 166, 165, 41, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 90,
301, 219, 301, 236, 264, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 5, 301, 301, 211, 301,
301, 265, 301, 301, 301, 301, 301, 301, 301, 301,
25, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 301, 133, 301, 301, 301,
301, 301, 301, 301, 301, 167, 301, 174, 301, 301,
301, 301, 301, 301, 301, 301, 301, 261, 301, 301,
301, 301, 301, 301, 301, 301, 301, 301, 301, 301,
301, 301, 301, 301, 301, 281, 301, 301, 232, 301,
301, 301, 301, 301, 262, 301, 301, 301, 301, 301,
301, 263, 301, 301, 301, 230, 301, 233, 234, 301,
301, 301, 301, 301, 231, 235, 0
} ;
static const YY_CHAR 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, 9, 1,
10, 11, 1, 12, 1, 1, 1, 13, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 14, 1, 1, 1, 1, 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, 40, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 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 const YY_CHAR yy_meta[41] =
{ 0,
1, 2, 3, 4, 5, 1, 6, 1, 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 const flex_int16_t yy_base[3002] =
{ 0,
0, 0, 38, 41, 44, 46, 59, 65, 71, 77,
90, 112, 3479, 3230, 81, 5821, 5821, 5821, 96, 52,
106, 63, 107, 111, 70, 128, 130, 133, 57, 88,
76, 135, 141, 117, 148, 145, 160, 164, 185, 177,
189, 152, 3109, 5821, 5821, 5821, 107, 3022, 5821, 5821,
5821, 165, 2626, 2353, 5821, 5821, 5821, 211, 2291, 5821,
5821, 5821, 180, 2178, 5821, 217, 5821, 221, 168, 1832,
225, 231, 0, 237, 0, 0, 226, 231, 85, 180,
114, 238, 239, 156, 234, 206, 240, 232, 200, 132,
253, 244, 245, 248, 256, 257, 264, 271, 249, 277,
279, 262, 282, 285, 270, 272, 291, 293, 290, 299,
301, 284, 302, 305, 310, 312, 311, 315, 313, 319,
322, 318, 324, 327, 326, 193, 221, 334, 329, 340,
342, 325, 348, 349, 350, 353, 354, 357, 363, 359,
1432, 379, 1075, 381, 915, 388, 450, 365, 392, 278,
396, 400, 0, 377, 392, 401, 367, 394, 396, 402,
261, 398, 399, 403, 405, 406, 418, 407, 416, 422,
426, 430, 427, 434, 424, 437, 439, 440, 429, 451,
453, 454, 446, 455, 456, 458, 461, 462, 463, 472,
465, 473, 484, 479, 488, 492, 475, 493, 496, 491,
503, 499, 506, 507, 502, 498, 508, 510, 513, 515,
516, 518, 517, 520, 521, 523, 525, 533, 535, 526,
534, 528, 547, 542, 549, 546, 548, 552, 551, 555,
563, 564, 556, 565, 567, 568, 571, 574, 583, 584,
585, 569, 576, 586, 580, 588, 589, 590, 591, 600,
603, 602, 605, 612, 593, 611, 613, 615, 616, 617,
626, 618, 628, 622, 635, 619, 633, 638, 627, 636,
641, 645, 646, 653, 640, 656, 657, 658, 660, 661,
663, 671, 666, 667, 648, 670, 672, 674, 675, 676,
678, 687, 679, 689, 682, 690, 695, 691, 710, 699,
700, 701, 702, 711, 704, 712, 713, 726, 731, 721,
732, 733, 735, 737, 740, 748, 739, 746, 743, 750,
752, 753, 762, 758, 5821, 757, 760, 773, 766, 774,
775, 776, 781, 782, 763, 789, 787, 788, 792, 814,
796, 798, 794, 803, 806, 5821, 804, 808, 838, 810,
812, 832, 828, 824, 827, 829, 839, 836, 849, 842,
847, 851, 862, 858, 859, 860, 861, 864, 863, 877,
872, 870, 799, 874, 889, 875, 882, 886, 887, 892,
893, 894, 897, 899, 902, 903, 895, 904, 905, 908,
913, 914, 916, 917, 927, 929, 921, 940, 918, 935,
942, 943, 937, 944, 947, 950, 951, 952, 953, 961,
958, 959, 963, 964, 966, 967, 970, 972, 973, 975,
977, 979, 978, 985, 988, 981, 994, 989, 5821, 996,
998, 999, 1000, 1001, 1003, 5821, 1004, 1005, 1006, 1014,
1017, 1016, 1013, 1023, 1027, 1028, 1029, 1030, 1039, 1012,
1041, 1040, 1036, 1042, 1046, 1048, 1049, 1051, 1052, 1054,
1055, 1057, 1060, 1077, 5821, 1061, 1064, 1062, 1063, 1070,
1080, 1089, 1072, 1090, 1088, 1065, 1105, 1092, 1106, 1100,
1101, 1111, 1102, 1113, 1107, 1116, 1115, 1117, 1118, 1119,
1120, 1125, 1126, 1131, 5821, 1133, 1134, 1145, 1135, 1143,
1132, 1146, 1148, 1149, 1150, 1152, 1153, 1156, 1162, 1172,
1157, 1174, 1159, 1170, 1175, 1176, 1177, 1178, 1179, 1180,
1193, 1184, 1186, 1200, 1207, 1203, 1205, 1212, 1190, 1210,
1209, 1208, 1215, 1216, 1217, 1218, 1220, 1221, 1230, 1228,
1226, 1229, 1231, 1242, 1233, 1235, 1240, 1237, 1245, 1247,
1253, 1254, 1250, 1256, 5821, 1263, 1260, 1267, 1262, 1268,
1272, 1274, 1261, 1276, 1278, 1280, 1281, 1282, 1284, 1287,
1289, 1290, 1291, 1292, 1301, 1297, 1307, 1314, 1313, 1315,
1299, 1305, 1324, 1321, 1328, 1327, 1329, 1337, 1325, 1332,
1323, 1339, 1335, 1340, 1341, 1344, 1347, 1350, 1352, 1359,
1351, 1356, 1366, 1367, 1358, 1369, 1362, 1372, 1373, 1375,
1376, 1377, 1378, 1385, 1380, 1386, 1382, 1387, 1388, 1389,
1392, 1390, 1407, 1399, 1400, 1403, 1409, 1410, 1411, 1415,
1416, 1417, 1418, 1419, 1420, 1423, 1424, 1183, 1425, 1440,
1426, 1430, 1438, 1441, 1447, 1446, 1450, 1454, 1444, 1456,
1457, 1458, 1460, 1461, 1465, 1464, 1471, 1468, 1474, 1476,
1478, 1477, 1480, 1484, 1487, 1481, 5821, 1488, 1495, 1494,
1496, 1497, 1499, 1501, 1508, 1503, 1505, 1504, 1506, 1510,
1516, 5821, 1517, 5821, 5821, 1520, 5821, 5821, 1518, 1523,
1526, 1536, 1533, 1543, 1298, 1539, 1541, 1545, 1552, 1566,
1548, 1550, 1551, 1547, 1556, 1561, 1574, 1562, 1549, 1575,
1577, 1580, 1586, 1513, 1587, 1579, 1554, 1588, 1590, 1589,
1592, 1595, 1600, 1601, 1594, 1603, 1596, 1611, 1616, 1607,
1623, 5821, 1619, 1626, 1631, 1627, 1634, 1630, 1629, 1636,
1638, 1640, 1641, 1642, 1643, 1645, 1646, 1651, 1604, 1647,
1659, 1654, 5821, 1657, 1658, 1656, 1662, 1669, 1663, 1664,
1670, 1674, 1675, 1682, 1679, 1677, 1684, 1685, 1686, 1687,
5821, 1689, 1697, 1693, 1699, 1700, 1702, 1705, 1701, 1706,
1707, 1708, 1709, 1711, 1715, 1718, 1719, 1720, 1717, 1724,
1727, 1730, 1735, 1742, 1737, 1739, 1743, 1745, 1746, 1747,
1749, 1750, 1758, 1751, 1760, 1755, 1762, 1767, 1772, 1759,
1771, 1774, 1764, 1780, 1788, 1784, 1777, 1773, 1796, 1789,
1793, 1794, 1797, 1799, 1800, 1801, 1803, 1806, 1807, 1808,
1810, 5821, 1811, 1816, 5821, 1814, 1817, 1839, 1818, 1820,
1821, 1823, 1826, 1833, 1825, 1831, 1841, 1843, 1853, 1849,
1854, 1856, 1859, 1861, 1862, 1865, 1867, 1869, 1878, 1879,
1883, 1885, 1890, 1870, 1868, 1877, 1896, 1888, 1889, 1891,
1899, 1906, 1893, 1901, 1903, 1908, 1912, 1914, 1919, 5821,
1924, 1925, 1920, 1921, 1932, 1930, 1929, 1933, 1936, 1937,
1944, 1940, 1941, 1946, 1943, 1947, 1950, 1952, 1956, 1957,
1962, 1954, 1973, 5821, 1958, 5821, 1955, 1959, 1972, 1975,
1976, 1977, 1978, 1980, 5821, 5821, 1981, 1984, 1987, 1996,
1982, 5821, 1997, 2004, 2001, 2006, 2000, 1999, 2007, 2008,
2011, 2016, 2012, 2023, 2015, 2022, 2020, 5821, 2028, 2018,
2024, 2033, 2035, 2036, 2037, 2040, 5821, 2043, 2044, 2047,
2054, 2046, 2050, 2055, 2058, 2056, 2062, 2063, 2064, 2065,
2066, 2075, 2076, 2067, 2078, 2081, 2077, 5821, 2074, 2085,
2093, 2089, 2091, 2088, 2095, 2096, 2098, 2099, 2100, 2103,
2106, 2107, 2115, 2116, 2108, 2112, 2120, 2113, 2122, 2125,
2128, 2127, 2129, 2130, 2131, 5821, 2133, 2135, 124, 2139,
2140, 2142, 2141, 2148, 2144, 2147, 2164, 2165, 2161, 2160,
2163, 2169, 2170, 2171, 2172, 2173, 2174, 2175, 2177, 5821,
2151, 2179, 2180, 2182, 2185, 2186, 2189, 5821, 2199, 2202,
2188, 2201, 2209, 2204, 2210, 2211, 2213, 2218, 2214, 2217,
5821, 2221, 2224, 2226, 2227, 2228, 2230, 2235, 2237, 2238,
2239, 2242, 2240, 2241, 2245, 2243, 2246, 2250, 2259, 2249,
2251, 2256, 2260, 5821, 2272, 2261, 2270, 2263, 2274, 2273,
2287, 2277, 2280, 2282, 2288, 2297, 2290, 2284, 2298, 2299,
2304, 2308, 2307, 2313, 2314, 2311, 2315, 2321, 2323, 2324,
2325, 2329, 2327, 2330, 2331, 2332, 2339, 2340, 2337, 2348,
2346, 2353, 2359, 2358, 5821, 2361, 2363, 2349, 2368, 2376,
2351, 2374, 2371, 2372, 2380, 2382, 2383, 2390, 2386, 2388,
2389, 2393, 2391, 2395, 2392, 2394, 2402, 2409, 2400, 2412,
2414, 5821, 2417, 2413, 2406, 2421, 2423, 2424, 2427, 2428,
2431, 2432, 2433, 2435, 2437, 2438, 2439, 2440, 2442, 2446,
2443, 5821, 2447, 2449, 2455, 2458, 2462, 2466, 2467, 2468,
2473, 2456, 2475, 2476, 2452, 5821, 2485, 2486, 2477, 2490,
2487, 2488, 2489, 2492, 2493, 5821, 2494, 2495, 2503, 2504,
2499, 5821, 2508, 2501, 2506, 2510, 2509, 2511, 2516, 2512,
2519, 2520, 2525, 2528, 2524, 2531, 5821, 2533, 2540, 2535,
2537, 2541, 2542, 2543, 2545, 2554, 2548, 2551, 2561, 2564,
2566, 2557, 2567, 2569, 2570, 2571, 2573, 2572, 5821, 2574,
2579, 2580, 2581, 2586, 2583, 2584, 2591, 2594, 2595, 2596,
2600, 2602, 2599, 2604, 2605, 2608, 2607, 2611, 2621, 2616,
2623, 2619, 2627, 2630, 2634, 2635, 2637, 5821, 2642, 2639,
2644, 2633, 2645, 2646, 2647, 2648, 2650, 2652, 2657, 2655,
2656, 2664, 2672, 2665, 2667, 2673, 2674, 2677, 2676, 2678,
2679, 2680, 2688, 2684, 2683, 2696, 2687, 2694, 2701, 2691,
2702, 2703, 2704, 2705, 2707, 2711, 2712, 2714, 2708, 2716,
2725, 2727, 2729, 2718, 2730, 2734, 2735, 5821, 2738, 2736,
2740, 2742, 2745, 2748, 2752, 2749, 2750, 2756, 2755, 2762,
2757, 2765, 2767, 2774, 2770, 5821, 2771, 5821, 2772, 2773,
2775, 2785, 2780, 5821, 2782, 5821, 2788, 2795, 2786, 2790,
5821, 2796, 2784, 2792, 2797, 2803, 2805, 2808, 2807, 2809,
2810, 2813, 2814, 2815, 2816, 2819, 2820, 2825, 2821, 2835,
2824, 2822, 2843, 2832, 2837, 2841, 2839, 2846, 5821, 2850,
2847, 2852, 2853, 2855, 2856, 2859, 2857, 2863, 2864, 2861,
2871, 2867, 2875, 2874, 2886, 2868, 2891, 5821, 2878, 2890,
2882, 2893, 5821, 2895, 2894, 2896, 2902, 2898, 2904, 2905,
2906, 2907, 2911, 2910, 2913, 2921, 2924, 2917, 2927, 2914,
2925, 2940, 2933, 2935, 2941, 2943, 2944, 2945, 2946, 2947,
2948, 2950, 2957, 2960, 2956, 2965, 2952, 2962, 2970, 2971,
2955, 2963, 2972, 2974, 2977, 2978, 2980, 2985, 2981, 2982,
2984, 2986, 5821, 2995, 2989, 2999, 2996, 3000, 3003, 2987,
3005, 3010, 3006, 3013, 3016, 3008, 5821, 3012, 5821, 3014,
3026, 3031, 3034, 3035, 3018, 3037, 3042, 3038, 3043, 3044,
3045, 3046, 3048, 3052, 3053, 3054, 3058, 3074, 3056, 3057,
3060, 3069, 3070, 3059, 3071, 5821, 5821, 3076, 3078, 3079,
3081, 3082, 3085, 3088, 3086, 3092, 3093, 3094, 3105, 5821,
3102, 3100, 3106, 3108, 3117, 3107, 3119, 3126, 3122, 3129,
3124, 5821, 3121, 3131, 3138, 3133, 3134, 3142, 5821, 3139,
5821, 3135, 3140, 3144, 3148, 3149, 3150, 3151, 3153, 3156,
3164, 3166, 3161, 3168, 3169, 3170, 3171, 3178, 3173, 3175,
3176, 5821, 3180, 3181, 3182, 3185, 3192, 3193, 3196, 3183,
5821, 3199, 3203, 3200, 3204, 3207, 3209, 3210, 3211, 3213,
3215, 3212, 3217, 3228, 3220, 3221, 3223, 3234, 3235, 3241,
5821, 3242, 3236, 3249, 3251, 3244, 3246, 3252, 3253, 3254,
3257, 3259, 3258, 3260, 3262, 3264, 3261, 3271, 3265, 3267,
3284, 3278, 3268, 3281, 3270, 3287, 3288, 3292, 3294, 3297,
3299, 3291, 3302, 3303, 3305, 3309, 3313, 3310, 3321, 3316,
5821, 3323, 3318, 3328, 3320, 3324, 3332, 3333, 3335, 3325,
3340, 3341, 3348, 3343, 5821, 3352, 3350, 3347, 3354, 3353,
3362, 3357, 3355, 3358, 3370, 3359, 3371, 3367, 3373, 3376,
3381, 3374, 5821, 5821, 3383, 3378, 3384, 5821, 3388, 3386,
3396, 3392, 3389, 3398, 3399, 3400, 3401, 3404, 3402, 3408,
5821, 3411, 3418, 3414, 3415, 3423, 3425, 3421, 3426, 3429,
3430, 3432, 3433, 3436, 3435, 3437, 3440, 3448, 3444, 3443,
3452, 5821, 3446, 3447, 3449, 3460, 3455, 3461, 5821, 3462,
3467, 3473, 3468, 3483, 3480, 3475, 3488, 3457, 3485, 3470,
3490, 3492, 3493, 3500, 3496, 3497, 3504, 3505, 3510, 5821,
3498, 3508, 3501, 3516, 3518, 3526, 3528, 3529, 3509, 3527,
3530, 3537, 5821, 3533, 3534, 3536, 3539, 3546, 3541, 3549,
3544, 5821, 3547, 3550, 3552, 5821, 3551, 3560, 3566, 3568,
3553, 3576, 3571, 3574, 3572, 3575, 5821, 3580, 5821, 3555,
3581, 3582, 5821, 3586, 3587, 3589, 3591, 3588, 3595, 3596,
3603, 3592, 3604, 3605, 3606, 3607, 3609, 3616, 3608, 5821,
3617, 3615, 3619, 3620, 3626, 3624, 3627, 3632, 3630, 5821,
5821, 3639, 5821, 3631, 3640, 3641, 5821, 3644, 3646, 3651,
3647, 3649, 3652, 3662, 3655, 5821, 3658, 3653, 3666, 3668,
3669, 3670, 3671, 3672, 3674, 3676, 3675, 5821, 3678, 3680,
3686, 3679, 3687, 3693, 3699, 3688, 5821, 3701, 3703, 3695,
3709, 3710, 5821, 3702, 5821, 3712, 3715, 3716, 3718, 3719,
5821, 3721, 3722, 3726, 3727, 3729, 3731, 3732, 3735, 3739,
3741, 3748, 3744, 3743, 3746, 5821, 3745, 3751, 3759, 3762,
3752, 3750, 3766, 3768, 3769, 3772, 3775, 3777, 3778, 3781,
3776, 3786, 3783, 5821, 3784, 3790, 3787, 3800, 3795, 3797,
5821, 3798, 3802, 3806, 5821, 3803, 3805, 3812, 3814, 3815,
3817, 3818, 3822, 3823, 5821, 3819, 3820, 3824, 3837, 3840,
3830, 5821, 5821, 3841, 5821, 3843, 3827, 3846, 3848, 3826,
3853, 3829, 3854, 3856, 3852, 3864, 3865, 3859, 3875, 3873,
3882, 3877, 3747, 3858, 5821, 5821, 3884, 3885, 3879, 3890,
3891, 3881, 3887, 3901, 3894, 3896, 3903, 3904, 3912, 5821,
3910, 3898, 3913, 5821, 3907, 3915, 3908, 3919, 3916, 3922,
3923, 3925, 3926, 3927, 3928, 3929, 3935, 3937, 3936, 3938,
3943, 3945, 5821, 3946, 3948, 3949, 3950, 3952, 3953, 3957,
3958, 3959, 5821, 3960, 3963, 3966, 3964, 3965, 3971, 3981,
3986, 3988, 3974, 3983, 3990, 3992, 3994, 3995, 5821, 3997,
3998, 3999, 4003, 4006, 4008, 4009, 4011, 4012, 4014, 4016,
4017, 4021, 4024, 4025, 4026, 4027, 4029, 5821, 4032, 4034,
4036, 4043, 4038, 4040, 4044, 4049, 4052, 4045, 4053, 4054,
4058, 5821, 4059, 4060, 4061, 4062, 4070, 4063, 4071, 4072,
5821, 4075, 4077, 4078, 4067, 4080, 4084, 4088, 4089, 4091,
4092, 4093, 5821, 4095, 4099, 4101, 4103, 4105, 4108, 4110,
4109, 5821, 4112, 4116, 4119, 4126, 4122, 4130, 4127, 4131,
4123, 4125, 4137, 4133, 4141, 4144, 4145, 4146, 4155, 4157,
4152, 5821, 4139, 5821, 4158, 4161, 4169, 4164, 4166, 5821,
4168, 4171, 4175, 4170, 4172, 5821, 4177, 4176, 4178, 4179,
5821, 4180, 4190, 4182, 4194, 4197, 4198, 5821, 4201, 4204,
4203, 4211, 4215, 4213, 4210, 4216, 4214, 4218, 4219, 4220,
5821, 4223, 4222, 4229, 4230, 4231, 4233, 4237, 4243, 4234,
5821, 4239, 4236, 4245, 4246, 4248, 4249, 4250, 4257, 4258,
4254, 5821, 4259, 4261, 4268, 4263, 4274, 5821, 5821, 4267,
4277, 4270, 4279, 4282, 5821, 4280, 4291, 4286, 4288, 4290,
5821, 5821, 4293, 5821, 4289, 5821, 4294, 4295, 5821, 5821,
4296, 4297, 4304, 4310, 4303, 5821, 4313, 5821, 4306, 4316,
4314, 4318, 4319, 5821, 4320, 4321, 4326, 5821, 4322, 4334,
4327, 4329, 5821, 4336, 4332, 4337, 5821, 4341, 4347, 4338,
4348, 4349, 4352, 4354, 4350, 4353, 4359, 4360, 4361, 4363,
4370, 4373, 4375, 4377, 4378, 4362, 4379, 4382, 4385, 4387,
4388, 4389, 4391, 4393, 4394, 4396, 4398, 4401, 4402, 4403,
4404, 4405, 4406, 4408, 4415, 4418, 4420, 4419, 4421, 4423,
4422, 4424, 4426, 4430, 4432, 4433, 5821, 4431, 4434, 4437,
4440, 4444, 4450, 4452, 4454, 4462, 4463, 5821, 4465, 5821,
4467, 4451, 4459, 4471, 5821, 4472, 4473, 4474, 4475, 4476,
4477, 4480, 4478, 5821, 4482, 4483, 4484, 4487, 5821, 4494,
4489, 4499, 4500, 4501, 4504, 4502, 4506, 4507, 4509, 4511,
4513, 4521, 4514, 4516, 4522, 4525, 4526, 4527, 4529, 4533,
4537, 4538, 4543, 5821, 4539, 5821, 4544, 4545, 4548, 4549,
4550, 4551, 4554, 5821, 5821, 4552, 4556, 4562, 4563, 4557,
4566, 4570, 5821, 4567, 4576, 4584, 4568, 5821, 4577, 4579,
4586, 5821, 4588, 4587, 4589, 4591, 4592, 4595, 4598, 4601,
4602, 4604, 4606, 5821, 5821, 5821, 5821, 4607, 4609, 4613,
4614, 4615, 4617, 4620, 4622, 4619, 5821, 4624, 5821, 5821,
4625, 4632, 4633, 4635, 4636, 4638, 4639, 4641, 5821, 4643,
4645, 4646, 4652, 4654, 4656, 4659, 4660, 4661, 4662, 4669,
4668, 4670, 4672, 4676, 4675, 4678, 5821, 5821, 4682, 4684,
4685, 4692, 4689, 4693, 4696, 4697, 4699, 4700, 4702, 4703,
4705, 4706, 5821, 4707, 4713, 5821, 4708, 5821, 4714, 4721,
4715, 4722, 4723, 4725, 4727, 4729, 5821, 5821, 4724, 4730,
4736, 4740, 4737, 4742, 4731, 4745, 4741, 5821, 4747, 5821,
4748, 4749, 4758, 4752, 4765, 4767, 4769, 4771, 4764, 4773,
5821, 4766, 4774, 5821, 4776, 4779, 4781, 5821, 4782, 4785,
4789, 5821, 4791, 4794, 4792, 5821, 4800, 5821, 4786, 4802,
4801, 4809, 5821, 4795, 4804, 5821, 4811, 4817, 4818, 4812,
5821, 4814, 5821, 4819, 4823, 4826, 4829, 4820, 4831, 4824,
4833, 4834, 4842, 4841, 4843, 5821, 5821, 4850, 4838, 4845,
4846, 4852, 4859, 4854, 4856, 4863, 5821, 5821, 4864, 5821,
4867, 4868, 5821, 4855, 4870, 4872, 4876, 4874, 4857, 4882,
4884, 4878, 4885, 4900, 4886, 4888, 4901, 4903, 4906, 4908,
4895, 4910, 4898, 4891, 4912, 4913, 4914, 5821, 4920, 4922,
4923, 5821, 4927, 4924, 4929, 4930, 5821, 4937, 4938, 4939,
4940, 5821, 4932, 4943, 4951, 4944, 4945, 4958, 4946, 4954,
5821, 5821, 5821, 4956, 4965, 5821, 4967, 4962, 4968, 4969,
5821, 4970, 4971, 5821, 5821, 4972, 4973, 4974, 4981, 5821,
4977, 5821, 4978, 5821, 4980, 4986, 4995, 4992, 5821, 4998,
5004, 5821, 5007, 5010, 5012, 5013, 5000, 5002, 5014, 5821,
4990, 5018, 5024, 5016, 5017, 5025, 5026, 5027, 5034, 5030,
5033, 5821, 5037, 5036, 5038, 5821, 5040, 5821, 5041, 5044,
5043, 5050, 5048, 5042, 5052, 5062, 5049, 5066, 5053, 5821,
5069, 5071, 5821, 5063, 5821, 5074, 5821, 5076, 5077, 5078,
5080, 5821, 5082, 5079, 5083, 5086, 5821, 5087, 5089, 5091,
5821, 5821, 5095, 5102, 5104, 4642, 5098, 5101, 5107, 5111,
5108, 5112, 5113, 5120, 5116, 5117, 5118, 5123, 5125, 5131,
5821, 5821, 5821, 5124, 5126, 5140, 5142, 5144, 5143, 5139,
5821, 5145, 5148, 5149, 5158, 5154, 5156, 5821, 5160, 5151,
5164, 5821, 5162, 5166, 5169, 5163, 5175, 5179, 5182, 5184,
5185, 5821, 5187, 5821, 5821, 5176, 5821, 5167, 5188, 5191,
5192, 5821, 5197, 5194, 5198, 5200, 5202, 5821, 5205, 5203,
5206, 5207, 5821, 5821, 5215, 5821, 5217, 5219, 5220, 5227,
5226, 5222, 5229, 5231, 5821, 5232, 5233, 5235, 5237, 5239,
5821, 5242, 5241, 5243, 5244, 5247, 5246, 5251, 5254, 5256,
5821, 5821, 5257, 5258, 5821, 5821, 5267, 5273, 5255, 5821,
5821, 5821, 5279, 5821, 5281, 5285, 5289, 5293, 5270, 5821,
5295, 5284, 5292, 5821, 5276, 5288, 5298, 5300, 5821, 5821,
5297, 5204, 5301, 5304, 5309, 5821, 5307, 5310, 5311, 5315,
5317, 5318, 5321, 5320, 5336, 5334, 5323, 5327, 5331, 5338,
5339, 5337, 5341, 5345, 5821, 5821, 5347, 5821, 5821, 5354,
5358, 5360, 5362, 5364, 5366, 5368, 5821, 5369, 5371, 5372,
5373, 5355, 5821, 5374, 5377, 5379, 5382, 5380, 5383, 5386,
5388, 5821, 5821, 5389, 5396, 5390, 5397, 5391, 5821, 5400,
5408, 5404, 5405, 5406, 5411, 5412, 5821, 5415, 5821, 5821,
5821, 5821, 5821, 5821, 5821, 5821, 5414, 5821, 5413, 5420,
5422, 5424, 5821, 5427, 5431, 5432, 5433, 5434, 5821, 5435,
5438, 5437, 5349, 5439, 5443, 5446, 5441, 5445, 5451, 5447,
5455, 5452, 5456, 5457, 5821, 5821, 5821, 5461, 5464, 5466,
5468, 5479, 5480, 5483, 5486, 5469, 5471, 5487, 5489, 5492,
5474, 5493, 5501, 5496, 5498, 5503, 5500, 5504, 5506, 5821,
5507, 5821, 5509, 5821, 5821, 5512, 5513, 5516, 5517, 5525,
5526, 5521, 5528, 5529, 5531, 5821, 5532, 5534, 5821, 5533,
5538, 5821, 5537, 5539, 5540, 5543, 5545, 5546, 5550, 5561,
5821, 5549, 5552, 5560, 5563, 5567, 5574, 5575, 5573, 5577,
5580, 5564, 5587, 5589, 5586, 5593, 5821, 5590, 5584, 5595,
5596, 5597, 5604, 5599, 5600, 5821, 5605, 5821, 5608, 5610,
5609, 5601, 5611, 5612, 5623, 5621, 5627, 5821, 5617, 5628,
5631, 5632, 5634, 5636, 5637, 5638, 5646, 5642, 5649, 5653,
5648, 5654, 5639, 5659, 5656, 5821, 5663, 5660, 5821, 5665,
5666, 5667, 5668, 5672, 5821, 5677, 5669, 5674, 5680, 5683,
5678, 5821, 5690, 5692, 5694, 5821, 5695, 5821, 5821, 5697,
5684, 5696, 5699, 5705, 5821, 5821, 5821, 5729, 5736, 5743,
5750, 5757, 88, 5764, 5771, 5778, 5785, 5792, 5799, 5806,
5813
} ;
static const flex_int16_t yy_def[3002] =
{ 0,
2987, 1, 2988, 2988, 2989, 2989, 2990, 2990, 2991, 2991,
2992, 2992, 2987, 2993, 2987, 2987, 2987, 2987, 2994, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2995, 2987, 2987, 2987, 2995, 2996, 2987, 2987,
2987, 2996, 2997, 2987, 2987, 2987, 2987, 2997, 2998, 2987,
2987, 2987, 2998, 2999, 2987, 3000, 2987, 2999, 2999, 2993,
2993, 2987, 3001, 2994, 3001, 2994, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2995, 2995, 2996, 2996, 2997, 2997, 2987, 2998, 2998, 2999,
2999, 3000, 3000, 2999, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2999, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2999, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2999, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2999, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2987, 2987, 2993, 2987, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2999, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2987, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2999, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2987, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2987, 2993, 2987, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2987, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2987, 2987, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2987, 2987, 2993, 2987, 2993, 2987, 2993, 2993, 2987, 2987,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2987, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2987, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2987, 2987, 2987, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2987, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2987, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2987, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2987, 2993, 2987,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2987, 2987, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2987, 2987, 2993, 2993, 2993, 2993, 2987,
2993, 2987, 2993, 2987, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2987, 2993, 2987, 2993, 2987, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2987, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2987, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2987, 2987, 2993, 2987, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2987, 2987, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2987, 2993, 2993, 2987, 2987, 2993, 2993, 2993, 2987,
2987, 2987, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2987, 2987,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2987, 2993, 2987, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2987, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2993, 2987, 2993, 2993,
2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2987, 2987, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987,
2993, 2987, 2993, 2987, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2987, 2993,
2993, 2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2987, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993, 2993,
2993, 2993, 2993, 2993, 2993, 2987, 2993, 2993, 2987, 2993,
2993, 2993, 2993, 2993, 2987, 2993, 2993, 2993, 2993, 2993,
2993, 2987, 2993, 2993, 2993, 2987, 2993, 2987, 2987, 2993,
2993, 2993, 2993, 2993, 2987, 2987, 0, 2987, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987
} ;
static const flex_int16_t yy_nxt[5862] =
{ 0,
14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
14, 14, 18, 20, 21, 22, 23, 24, 25, 26,
14, 27, 28, 29, 30, 31, 32, 33, 34, 35,
36, 37, 38, 39, 40, 41, 14, 14, 14, 42,
44, 45, 46, 44, 45, 46, 49, 50, 49, 50,
51, 47, 51, 70, 47, 70, 70, 52, 70, 52,
54, 55, 56, 57, 70, 18, 54, 55, 56, 57,
71, 18, 58, 60, 61, 62, 71, 82, 58, 60,
61, 62, 72, 71, 63, 102, 73, 92, 70, 71,
63, 15, 16, 17, 65, 66, 67, 75, 71, 75,
75, 71, 75, 68, 104, 157, 103, 93, 75, 76,
141, 141, 69, 15, 16, 17, 65, 66, 67, 71,
71, 83, 77, 78, 71, 68, 79, 71, 84, 87,
71, 80, 85, 88, 69, 86, 89, 151, 90, 91,
81, 71, 94, 71, 96, 71, 71, 159, 71, 105,
98, 112, 97, 99, 71, 109, 95, 106, 71, 110,
100, 71, 101, 107, 172, 71, 113, 108, 143, 71,
114, 143, 118, 71, 119, 111, 115, 71, 120, 116,
140, 151, 124, 148, 148, 125, 117, 163, 121, 122,
71, 123, 126, 71, 133, 154, 127, 128, 71, 129,
224, 130, 71, 137, 134, 158, 71, 138, 135, 136,
131, 139, 145, 71, 145, 145, 132, 145, 75, 71,
75, 75, 150, 75, 150, 150, 70, 150, 70, 70,
153, 70, 72, 165, 71, 171, 73, 70, 75, 71,
75, 75, 155, 75, 71, 71, 225, 71, 156, 75,
76, 71, 71, 71, 160, 161, 164, 71, 71, 166,
173, 71, 71, 169, 170, 167, 71, 168, 162, 71,
71, 175, 177, 178, 71, 71, 184, 71, 176, 174,
179, 182, 253, 71, 71, 71, 189, 180, 181, 183,
71, 151, 71, 185, 191, 71, 186, 71, 71, 199,
192, 194, 197, 71, 71, 195, 71, 198, 200, 187,
188, 190, 71, 201, 71, 71, 202, 205, 71, 203,
193, 196, 207, 71, 71, 71, 71, 204, 71, 212,
209, 71, 71, 206, 210, 71, 214, 71, 71, 71,
71, 208, 71, 220, 211, 215, 213, 71, 226, 229,
217, 216, 223, 71, 221, 71, 219, 218, 222, 233,
230, 71, 71, 71, 235, 227, 71, 71, 228, 231,
71, 239, 71, 236, 232, 238, 71, 234, 149, 240,
71, 242, 141, 141, 143, 237, 243, 143, 241, 145,
151, 145, 145, 244, 145, 148, 148, 150, 248, 150,
150, 75, 150, 75, 75, 71, 75, 71, 246, 71,
245, 71, 71, 153, 71, 71, 71, 250, 71, 71,
71, 256, 249, 247, 251, 259, 252, 255, 258, 71,
254, 71, 260, 264, 262, 71, 263, 71, 257, 71,
71, 265, 71, 71, 268, 261, 266, 71, 273, 269,
71, 147, 71, 71, 270, 275, 274, 276, 279, 71,
271, 272, 278, 267, 71, 277, 71, 71, 71, 71,
281, 71, 282, 283, 71, 71, 71, 290, 71, 288,
289, 285, 291, 284, 286, 71, 71, 280, 71, 287,
294, 297, 71, 298, 292, 299, 293, 71, 295, 301,
303, 71, 296, 304, 71, 71, 71, 300, 302, 71,
307, 71, 71, 309, 310, 71, 71, 308, 305, 71,
71, 71, 311, 71, 312, 306, 71, 313, 71, 71,
71, 71, 315, 71, 71, 319, 71, 317, 71, 71,
324, 71, 320, 314, 318, 325, 71, 71, 71, 321,
316, 328, 322, 326, 330, 71, 333, 327, 323, 71,
71, 71, 71, 329, 71, 71, 335, 336, 71, 71,
339, 340, 342, 331, 332, 338, 71, 71, 71, 334,
71, 71, 71, 337, 71, 345, 346, 71, 341, 71,
347, 349, 343, 71, 353, 344, 71, 71, 71, 151,
350, 71, 71, 71, 71, 352, 71, 360, 358, 356,
361, 354, 355, 71, 348, 71, 71, 351, 71, 364,
362, 365, 357, 363, 71, 71, 71, 359, 71, 71,
71, 71, 71, 371, 372, 71, 374, 369, 366, 71,
71, 71, 368, 373, 367, 375, 71, 377, 71, 71,
376, 71, 378, 71, 71, 370, 379, 381, 71, 71,
384, 71, 382, 386, 380, 388, 71, 385, 383, 71,
71, 71, 387, 71, 71, 391, 71, 389, 393, 71,
71, 392, 396, 71, 71, 71, 398, 71, 71, 71,
399, 71, 71, 401, 390, 71, 397, 408, 395, 394,
71, 403, 71, 71, 71, 405, 400, 407, 71, 402,
404, 409, 71, 71, 71, 71, 410, 71, 420, 419,
421, 417, 406, 71, 71, 71, 71, 423, 426, 427,
424, 418, 411, 428, 71, 412, 422, 425, 429, 71,
413, 414, 415, 416, 71, 71, 71, 430, 71, 436,
71, 431, 71, 71, 432, 434, 71, 435, 437, 71,
433, 71, 438, 71, 440, 71, 71, 439, 441, 445,
71, 71, 446, 71, 447, 71, 71, 463, 450, 71,
451, 444, 442, 448, 452, 443, 71, 71, 71, 71,
449, 455, 453, 456, 71, 71, 464, 458, 454, 465,
71, 71, 71, 457, 462, 71, 466, 71, 467, 71,
459, 71, 71, 460, 468, 461, 71, 71, 469, 71,
482, 71, 479, 71, 517, 71, 470, 71, 471, 477,
472, 480, 478, 481, 493, 484, 483, 151, 492, 494,
71, 71, 71, 473, 495, 71, 474, 496, 475, 71,
476, 71, 71, 485, 486, 71, 502, 499, 497, 498,
71, 500, 71, 487, 71, 488, 489, 490, 501, 506,
491, 71, 71, 71, 71, 71, 71, 71, 505, 507,
504, 503, 512, 71, 514, 71, 515, 71, 71, 511,
71, 513, 509, 510, 508, 71, 519, 523, 524, 71,
71, 518, 71, 516, 522, 71, 71, 71, 71, 534,
71, 521, 71, 520, 529, 71, 71, 71, 71, 531,
532, 71, 526, 527, 528, 525, 71, 71, 146, 71,
71, 71, 530, 536, 71, 533, 535, 537, 540, 543,
71, 539, 71, 546, 538, 544, 545, 547, 71, 541,
71, 542, 548, 71, 549, 71, 71, 71, 553, 550,
71, 551, 555, 71, 71, 71, 71, 558, 559, 556,
552, 71, 71, 554, 71, 560, 71, 71, 557, 71,
71, 565, 563, 71, 564, 71, 71, 561, 71, 566,
71, 71, 71, 571, 71, 567, 572, 562, 71, 574,
570, 71, 71, 573, 569, 568, 575, 71, 577, 71,
579, 71, 71, 71, 71, 576, 71, 71, 71, 71,
581, 589, 582, 591, 578, 71, 71, 71, 584, 71,
71, 592, 580, 588, 583, 585, 71, 586, 587, 590,
71, 71, 71, 71, 596, 600, 599, 602, 594, 71,
593, 595, 71, 71, 71, 71, 597, 601, 598, 71,
605, 71, 71, 604, 71, 71, 608, 71, 71, 609,
71, 603, 611, 71, 71, 71, 71, 71, 71, 625,
610, 606, 607, 71, 612, 71, 614, 634, 144, 613,
71, 615, 624, 71, 623, 626, 616, 628, 617, 627,
631, 71, 71, 71, 618, 71, 619, 629, 632, 620,
621, 630, 635, 71, 71, 71, 622, 633, 71, 71,
71, 637, 638, 636, 71, 641, 71, 643, 71, 71,
71, 71, 71, 71, 640, 644, 639, 649, 71, 71,
642, 645, 650, 646, 71, 71, 71, 151, 71, 647,
653, 655, 656, 648, 652, 654, 71, 651, 71, 71,
657, 71, 71, 71, 659, 71, 71, 663, 665, 71,
71, 658, 71, 660, 667, 71, 661, 666, 664, 668,
662, 670, 669, 71, 671, 71, 672, 71, 71, 71,
71, 71, 71, 71, 676, 675, 71, 71, 684, 71,
681, 677, 673, 71, 674, 682, 71, 807, 678, 680,
683, 679, 685, 71, 686, 687, 71, 688, 71, 689,
71, 71, 71, 71, 690, 71, 691, 692, 71, 71,
71, 71, 695, 71, 71, 696, 694, 700, 699, 71,
693, 71, 71, 71, 71, 701, 71, 703, 71, 705,
71, 706, 698, 71, 697, 71, 708, 702, 71, 712,
71, 709, 707, 71, 704, 710, 71, 71, 711, 71,
718, 714, 715, 71, 71, 71, 71, 716, 713, 721,
71, 71, 719, 720, 717, 71, 723, 71, 724, 71,
726, 71, 725, 71, 71, 71, 732, 71, 728, 730,
71, 722, 71, 71, 71, 71, 729, 727, 738, 733,
71, 71, 71, 736, 71, 731, 739, 737, 71, 735,
71, 734, 863, 740, 741, 742, 71, 71, 71, 743,
745, 747, 746, 744, 71, 749, 71, 71, 71, 748,
71, 71, 71, 750, 752, 71, 758, 751, 71, 753,
71, 754, 71, 71, 71, 756, 757, 71, 755, 761,
71, 763, 760, 71, 71, 71, 767, 759, 765, 71,
764, 71, 71, 770, 769, 71, 768, 762, 771, 71,
71, 772, 71, 766, 774, 71, 71, 776, 71, 71,
71, 71, 782, 71, 775, 71, 773, 783, 71, 71,
71, 71, 71, 71, 777, 71, 778, 779, 784, 780,
785, 781, 71, 71, 791, 786, 71, 789, 790, 787,
71, 788, 71, 71, 71, 793, 792, 796, 71, 71,
71, 71, 71, 71, 804, 794, 71, 71, 71, 71,
805, 795, 797, 71, 798, 142, 803, 799, 800, 801,
802, 71, 808, 71, 71, 810, 806, 71, 809, 71,
71, 813, 811, 71, 812, 814, 815, 71, 816, 71,
71, 71, 817, 71, 71, 818, 819, 71, 151, 820,
825, 71, 822, 824, 71, 821, 823, 71, 826, 71,
71, 71, 832, 71, 71, 827, 828, 71, 833, 835,
71, 71, 838, 836, 829, 830, 834, 71, 71, 71,
71, 831, 71, 840, 71, 844, 71, 71, 71, 71,
837, 71, 841, 71, 845, 846, 71, 839, 888, 71,
71, 71, 843, 71, 850, 847, 71, 842, 851, 71,
857, 852, 858, 849, 848, 855, 71, 861, 853, 71,
856, 854, 71, 860, 71, 859, 71, 862, 71, 867,
71, 71, 71, 71, 71, 71, 875, 71, 865, 71,
864, 891, 879, 880, 71, 71, 882, 883, 866, 71,
868, 869, 877, 870, 876, 878, 871, 71, 71, 884,
71, 872, 71, 71, 881, 885, 886, 873, 874, 71,
71, 71, 71, 71, 887, 71, 895, 71, 71, 71,
894, 890, 889, 71, 71, 898, 71, 71, 902, 904,
71, 892, 893, 896, 71, 899, 923, 897, 900, 71,
905, 901, 71, 908, 903, 906, 71, 907, 909, 71,
71, 911, 71, 71, 71, 910, 912, 71, 913, 71,
915, 71, 916, 71, 71, 71, 71, 914, 71, 71,
71, 919, 917, 922, 71, 920, 925, 71, 924, 71,
71, 71, 71, 918, 929, 71, 71, 71, 921, 927,
928, 932, 71, 71, 930, 931, 926, 71, 71, 937,
71, 933, 71, 939, 938, 71, 935, 71, 71, 71,
71, 936, 71, 944, 946, 940, 71, 942, 934, 947,
71, 945, 71, 71, 71, 71, 941, 949, 71, 71,
71, 71, 71, 943, 71, 960, 957, 948, 71, 955,
71, 71, 71, 71, 950, 951, 953, 71, 952, 954,
71, 961, 958, 71, 956, 962, 965, 959, 71, 963,
71, 964, 71, 967, 968, 71, 71, 966, 71, 71,
71, 970, 71, 71, 71, 977, 972, 979, 71, 981,
969, 71, 71, 71, 982, 71, 971, 71, 978, 973,
71, 975, 974, 976, 71, 71, 71, 71, 980, 983,
71, 984, 987, 71, 989, 990, 985, 71, 988, 993,
991, 71, 71, 994, 986, 996, 71, 71, 992, 71,
71, 999, 151, 71, 71, 998, 71, 1002, 1001, 71,
71, 71, 995, 71, 71, 997, 1005, 71, 1000, 71,
71, 71, 1017, 71, 71, 1020, 71, 1018, 71, 71,
1004, 1003, 1006, 1008, 71, 71, 71, 1009, 1007, 1019,
1022, 1010, 71, 1023, 71, 1011, 71, 1012, 1024, 1025,
1027, 1013, 71, 1014, 1021, 1028, 71, 71, 1015, 71,
1026, 1030, 71, 1016, 71, 71, 1029, 1032, 71, 1034,
71, 71, 71, 71, 1031, 1039, 1040, 1033, 1038, 1035,
71, 71, 71, 1042, 1037, 1041, 71, 1043, 71, 1036,
1045, 71, 71, 71, 71, 1044, 71, 1055, 1046, 71,
1047, 1059, 71, 1054, 71, 1048, 71, 1049, 1056, 71,
1058, 71, 1060, 1050, 1057, 71, 1064, 71, 1051, 1052,
1061, 1066, 71, 71, 71, 1053, 1065, 71, 71, 1070,
1062, 1067, 71, 71, 1063, 71, 71, 1069, 1071, 71,
71, 1076, 1068, 71, 71, 1073, 71, 71, 1074, 71,
71, 1072, 1077, 71, 1079, 71, 1075, 71, 71, 71,
71, 71, 71, 1078, 1081, 71, 1080, 1083, 1084, 1085,
1088, 1086, 1090, 1082, 1087, 71, 71, 1089, 71, 71,
71, 71, 1091, 71, 71, 71, 1096, 71, 1097, 1098,
71, 1100, 1093, 1101, 1092, 1095, 1099, 1094, 1102, 71,
71, 1104, 71, 71, 71, 1106, 1105, 71, 1107, 71,
71, 71, 1108, 1114, 71, 71, 1103, 1109, 71, 71,
1116, 71, 1110, 71, 1112, 71, 71, 71, 1111, 1113,
1118, 71, 1122, 1117, 1120, 1115, 71, 1119, 71, 71,
71, 1123, 1121, 71, 1125, 1126, 71, 71, 1132, 71,
71, 1131, 1128, 71, 1124, 1127, 1130, 71, 71, 71,
1136, 71, 1133, 1129, 1135, 71, 71, 71, 71, 71,
71, 1140, 1142, 1143, 1147, 1144, 1134, 71, 71, 71,
71, 71, 1141, 1137, 71, 1138, 1145, 1139, 71, 1146,
1150, 71, 71, 1152, 71, 1148, 71, 1151, 71, 71,
1153, 71, 71, 71, 1156, 1157, 71, 1154, 1149, 71,
71, 71, 1162, 1163, 1158, 71, 71, 1155, 71, 71,
1165, 1160, 1166, 71, 1159, 71, 1164, 1170, 71, 1161,
71, 71, 71, 71, 71, 1167, 71, 1176, 71, 1168,
1169, 1172, 71, 71, 71, 71, 1182, 71, 1171, 1180,
71, 71, 1173, 1197, 71, 1175, 1177, 1179, 1178, 1174,
1181, 1184, 1185, 71, 71, 1187, 71, 71, 71, 1186,
1183, 1188, 71, 71, 71, 71, 71, 71, 71, 1191,
71, 151, 71, 71, 1194, 71, 1189, 1190, 71, 71,
1192, 71, 71, 1195, 1201, 1193, 1198, 1203, 1209, 1196,
1200, 1199, 71, 1207, 71, 71, 1204, 71, 1205, 1202,
1208, 1206, 71, 71, 71, 1211, 71, 71, 1210, 1214,
71, 71, 1213, 1219, 71, 1212, 1216, 71, 1217, 71,
71, 71, 1220, 71, 1221, 1215, 1223, 1224, 71, 1218,
71, 71, 71, 71, 71, 71, 71, 1225, 71, 71,
1222, 1231, 71, 71, 71, 1226, 1227, 1229, 1230, 71,
1232, 1228, 71, 71, 71, 1233, 71, 1237, 1236, 1241,
1234, 1235, 1240, 71, 1238, 71, 71, 71, 1242, 1239,
71, 1243, 1245, 71, 1247, 71, 1244, 71, 1246, 1248,
71, 71, 1252, 71, 149, 1261, 1260, 1250, 1251, 1249,
71, 71, 71, 1262, 1265, 1253, 1259, 71, 1254, 1255,
71, 71, 1263, 1256, 71, 1268, 71, 71, 71, 1257,
1264, 1266, 1267, 1258, 71, 1270, 71, 71, 71, 1271,
71, 1272, 71, 71, 71, 71, 1280, 1281, 1277, 1269,
71, 1275, 71, 71, 147, 1282, 1274, 1273, 1278, 71,
1276, 71, 71, 1279, 71, 1283, 71, 1289, 1284, 1290,
1291, 71, 71, 1285, 71, 1286, 71, 1287, 1293, 1288,
1295, 71, 1292, 1297, 71, 71, 1299, 71, 1298, 71,
1296, 1294, 1300, 71, 1302, 71, 71, 1306, 1301, 71,
1307, 71, 71, 71, 71, 71, 71, 71, 71, 1308,
1305, 1310, 1303, 71, 1304, 71, 1309, 1312, 1311, 71,
1315, 1316, 71, 1313, 1318, 71, 71, 71, 1317, 1319,
71, 1321, 1314, 1320, 71, 1324, 71, 71, 1322, 1326,
71, 71, 1327, 1323, 71, 71, 71, 1331, 71, 1328,
71, 71, 71, 71, 1333, 71, 71, 1325, 1335, 71,
71, 1337, 71, 1339, 1336, 71, 1329, 1330, 71, 71,
1332, 71, 1334, 1341, 1338, 71, 1342, 1340, 1351, 71,
71, 71, 1346, 1343, 1344, 1345, 71, 1348, 71, 71,
71, 1347, 1352, 1353, 1349, 1354, 1350, 1355, 71, 71,
71, 71, 71, 71, 1359, 71, 71, 71, 71, 1356,
1363, 1364, 71, 1358, 71, 1366, 71, 71, 1365, 71,
1357, 71, 71, 71, 71, 71, 1360, 1361, 1367, 71,
1373, 1362, 71, 71, 1368, 1370, 1371, 71, 71, 1369,
1378, 71, 1372, 1377, 71, 1374, 71, 1382, 71, 1380,
71, 1376, 1383, 71, 71, 71, 71, 1375, 71, 1385,
1379, 71, 1386, 1393, 71, 1381, 1384, 71, 1395, 1387,
71, 1388, 1391, 1389, 71, 1392, 1390, 71, 1394, 71,
71, 1396, 71, 71, 71, 71, 71, 71, 1401, 1398,
1397, 1403, 71, 71, 71, 1408, 71, 71, 1412, 71,
1400, 1405, 1402, 1409, 71, 1404, 1399, 71, 71, 71,
1406, 1407, 71, 71, 1410, 71, 1411, 71, 71, 1413,
71, 71, 1419, 1415, 71, 1420, 1421, 1414, 1416, 71,
1417, 1418, 71, 1423, 71, 1424, 71, 1429, 1422, 146,
71, 1430, 1426, 71, 1425, 1428, 71, 71, 71, 1431,
71, 1432, 71, 1427, 1433, 71, 1434, 71, 71, 71,
71, 71, 1440, 71, 1436, 71, 1435, 1439, 71, 71,
71, 1446, 1437, 1442, 1438, 1443, 1447, 71, 71, 1448,
71, 1451, 1444, 1441, 1449, 71, 71, 71, 1445, 71,
71, 71, 71, 71, 1455, 1459, 71, 71, 1450, 1454,
71, 71, 1460, 1462, 71, 1452, 1453, 71, 1465, 71,
1456, 1458, 1457, 1464, 71, 71, 71, 71, 71, 1463,
71, 71, 1461, 1466, 71, 71, 1473, 71, 1476, 71,
1474, 71, 1470, 1475, 1467, 1468, 1469, 1477, 71, 1472,
71, 1471, 71, 71, 1480, 1478, 1479, 71, 71, 71,
1483, 71, 1481, 71, 1484, 71, 1486, 1490, 71, 1492,
1482, 71, 71, 71, 1487, 71, 1491, 1485, 71, 71,
71, 1489, 1496, 1488, 1495, 71, 1494, 1493, 71, 1497,
71, 1501, 1502, 71, 71, 71, 71, 71, 71, 1506,
1498, 1505, 1507, 71, 1509, 71, 1499, 71, 71, 71,
1500, 71, 1503, 71, 1510, 71, 1504, 1511, 71, 71,
71, 1517, 1514, 1508, 1516, 1512, 71, 1515, 71, 1513,
71, 71, 71, 71, 1523, 1521, 71, 71, 71, 71,
1527, 1518, 71, 71, 71, 71, 1522, 71, 71, 1519,
1520, 1533, 1525, 1530, 1524, 71, 1528, 1532, 71, 1531,
71, 1529, 71, 1526, 71, 1534, 71, 1535, 1538, 71,
71, 1537, 1541, 71, 1540, 71, 71, 1536, 71, 71,
71, 1539, 71, 1548, 71, 1549, 71, 71, 1542, 1543,
71, 71, 1546, 1552, 71, 1544, 1545, 71, 71, 1553,
1555, 71, 1556, 1557, 1547, 71, 1550, 1551, 1559, 71,
1554, 1558, 1561, 71, 71, 1560, 71, 71, 71, 71,
1566, 71, 1563, 1564, 1562, 71, 1567, 71, 71, 71,
71, 1572, 1571, 71, 71, 1568, 71, 71, 1578, 1575,
71, 1565, 1576, 1570, 71, 1569, 1573, 71, 71, 1580,
71, 1583, 1579, 1574, 1577, 1581, 71, 1584, 71, 1586,
1588, 1585, 1582, 71, 71, 1587, 71, 71, 71, 71,
71, 71, 1589, 71, 1595, 71, 1594, 1596, 71, 71,
71, 1590, 1598, 71, 1597, 71, 71, 1591, 71, 1592,
1600, 1593, 1601, 71, 71, 71, 1603, 71, 1599, 1602,
71, 71, 1610, 71, 71, 71, 1604, 71, 71, 71,
71, 1606, 71, 1608, 1607, 1605, 1609, 1615, 71, 71,
1618, 1613, 71, 71, 1611, 1612, 71, 1617, 71, 71,
1614, 71, 1616, 71, 1621, 71, 71, 71, 1619, 71,
1620, 71, 1623, 1625, 1624, 144, 1622, 1628, 1626, 71,
1629, 1627, 1632, 1633, 71, 1630, 1634, 71, 71, 1636,
71, 71, 1631, 1637, 1638, 71, 71, 71, 71, 71,
1635, 71, 1641, 1642, 1639, 71, 71, 71, 1651, 71,
71, 71, 71, 71, 1645, 1640, 1647, 1644, 1643, 1648,
1649, 1650, 71, 71, 71, 1646, 1653, 71, 1656, 71,
1652, 71, 71, 1660, 71, 71, 1657, 1655, 71, 71,
1654, 71, 1664, 1663, 1662, 71, 71, 71, 1666, 1659,
1661, 1667, 1671, 71, 1658, 71, 1665, 1672, 71, 71,
71, 71, 142, 1668, 1677, 1670, 1676, 1669, 1674, 1673,
71, 1679, 71, 1680, 71, 71, 1682, 71, 1678, 71,
1681, 1675, 71, 1683, 71, 1686, 71, 71, 71, 1690,
1688, 71, 71, 71, 1684, 71, 1689, 71, 1685, 1687,
1691, 71, 71, 71, 71, 1694, 71, 1692, 1700, 71,
1695, 1702, 1693, 1703, 71, 1696, 1697, 71, 1698, 71,
1699, 71, 71, 71, 71, 1709, 71, 1704, 71, 71,
1701, 71, 1713, 71, 71, 71, 71, 1708, 71, 1715,
1706, 1705, 1707, 1716, 1711, 71, 71, 1712, 1710, 71,
1717, 1718, 71, 71, 1714, 1722, 71, 71, 1719, 1720,
71, 1726, 71, 71, 71, 71, 71, 1721, 71, 1724,
71, 1728, 1723, 71, 71, 1733, 71, 1727, 1729, 1725,
1730, 71, 1736, 71, 1731, 1734, 1737, 71, 71, 71,
1732, 1738, 1735, 1739, 71, 71, 1742, 71, 1741, 71,
1740, 1745, 71, 1743, 71, 71, 71, 71, 1746, 1744,
71, 71, 71, 71, 71, 71, 1751, 71, 71, 1755,
71, 71, 1752, 71, 71, 1761, 1747, 1753, 1749, 1748,
1750, 71, 1754, 1756, 71, 1759, 1760, 71, 1758, 1764,
71, 71, 1762, 1766, 71, 71, 1757, 71, 1769, 1770,
71, 1771, 71, 1763, 1773, 71, 71, 1774, 71, 1767,
1765, 1768, 71, 71, 1772, 1777, 71, 1778, 1779, 71,
1781, 71, 1780, 71, 71, 1783, 71, 71, 71, 1775,
1785, 71, 1788, 1776, 1786, 71, 71, 1787, 71, 1782,
1789, 1790, 1791, 71, 71, 1795, 71, 1792, 1784, 1797,
71, 71, 1800, 71, 1798, 71, 71, 71, 71, 1803,
71, 71, 71, 1793, 1794, 71, 1796, 1799, 1801, 1804,
71, 1802, 1807, 71, 71, 1809, 71, 71, 1805, 71,
1812, 71, 1806, 1813, 71, 1815, 71, 71, 1808, 71,
1810, 71, 71, 1820, 1821, 71, 1817, 1814, 1811, 71,
1818, 71, 71, 71, 71, 71, 1816, 71, 1827, 1824,
1819, 71, 1825, 1822, 71, 1831, 1823, 71, 71, 1830,
1834, 71, 1835, 1836, 71, 1833, 71, 1829, 71, 71,
1826, 1828, 71, 71, 1837, 71, 71, 1832, 71, 71,
71, 1838, 1842, 71, 1845, 1846, 71, 71, 1841, 71,
71, 71, 71, 1839, 1840, 71, 1843, 1853, 71, 1849,
71, 1848, 1854, 71, 71, 71, 1844, 1847, 2987, 1851,
71, 71, 1852, 71, 1858, 1850, 71, 1855, 71, 1856,
1860, 1866, 1859, 71, 1857, 1861, 71, 1862, 71, 1863,
1865, 71, 1868, 71, 1864, 71, 71, 1872, 1869, 71,
71, 71, 1867, 71, 71, 1874, 1875, 71, 71, 1876,
1878, 71, 71, 71, 1873, 1870, 1871, 1877, 1882, 71,
1883, 71, 1879, 1884, 1881, 1886, 1887, 1880, 1885, 71,
71, 71, 71, 71, 1891, 1889, 71, 71, 1888, 71,
71, 1893, 71, 1896, 71, 1890, 1898, 71, 1892, 71,
71, 1894, 71, 71, 71, 71, 71, 1903, 71, 1899,
1902, 1914, 1900, 71, 1904, 2987, 1897, 1895, 1905, 71,
1906, 71, 1901, 1908, 71, 71, 1907, 71, 71, 71,
1909, 1911, 1910, 71, 71, 71, 1916, 1912, 1913, 71,
71, 71, 71, 1920, 71, 71, 1915, 1919, 71, 71,
1921, 1917, 1918, 1922, 1923, 1924, 71, 71, 71, 71,
71, 71, 71, 1931, 1929, 1925, 1926, 1930, 71, 71,
71, 1933, 71, 71, 1937, 1932, 1927, 71, 1928, 71,
71, 1936, 1934, 71, 71, 71, 1935, 1944, 1938, 1939,
1941, 1943, 71, 71, 71, 2987, 1942, 71, 1949, 71,
71, 1940, 71, 1951, 71, 71, 71, 1952, 71, 1945,
1946, 71, 1947, 1948, 1953, 71, 1954, 1950, 1955, 71,
1957, 71, 71, 71, 71, 71, 1956, 71, 71, 71,
1958, 71, 71, 71, 1965, 1960, 1961, 1962, 1969, 71,
71, 71, 2987, 1959, 1964, 1968, 71, 1966, 71, 1972,
1970, 1967, 71, 1963, 71, 71, 71, 1973, 1976, 1975,
1971, 1974, 71, 71, 1980, 71, 1977, 1978, 71, 71,
1979, 71, 71, 1984, 71, 71, 1986, 1982, 1988, 71,
71, 1983, 71, 1981, 71, 71, 1991, 1990, 71, 1987,
1992, 1985, 71, 1993, 71, 1996, 71, 71, 71, 71,
71, 71, 1997, 71, 71, 71, 1989, 1999, 2064, 1998,
1994, 2002, 71, 2006, 1995, 71, 2003, 2000, 2001, 71,
2004, 71, 71, 2005, 2008, 71, 2007, 2011, 71, 71,
71, 71, 2013, 2009, 71, 2014, 71, 71, 2015, 71,
71, 2010, 2012, 71, 2016, 2020, 2018, 2022, 71, 2019,
71, 71, 2023, 71, 2017, 71, 71, 2024, 71, 71,
2027, 2021, 2025, 2026, 2028, 71, 2032, 71, 71, 2029,
71, 71, 71, 71, 2031, 71, 71, 71, 2030, 71,
71, 2052, 71, 71, 2038, 2039, 2033, 2035, 2034, 2036,
71, 2037, 2043, 71, 71, 2041, 71, 2040, 2042, 71,
2044, 71, 2046, 2047, 2050, 71, 71, 71, 2054, 71,
2987, 71, 71, 2045, 2048, 2051, 2053, 71, 71, 2049,
2061, 2056, 2059, 2057, 2055, 2058, 71, 2060, 71, 2062,
71, 2065, 71, 2063, 71, 71, 2066, 71, 71, 2067,
71, 2070, 2071, 71, 71, 2072, 2073, 71, 2075, 71,
2077, 71, 2076, 2068, 71, 2078, 71, 71, 2074, 2080,
71, 71, 2079, 71, 2069, 71, 71, 2081, 71, 71,
2083, 2082, 71, 2085, 2088, 71, 71, 2091, 71, 71,
71, 71, 71, 2092, 2086, 2084, 2094, 2087, 71, 71,
71, 71, 2090, 2089, 2098, 2093, 71, 2101, 71, 71,
2096, 71, 71, 71, 2099, 71, 71, 2102, 2095, 2097,
71, 71, 71, 71, 2100, 2112, 71, 71, 71, 71,
2103, 2104, 2113, 2109, 71, 2107, 2105, 71, 2111, 2106,
2114, 2108, 2115, 2110, 71, 2117, 71, 2116, 2118, 71,
2119, 71, 2120, 71, 2122, 71, 2125, 71, 71, 2121,
71, 71, 71, 2126, 2123, 2127, 71, 2124, 2131, 71,
2132, 71, 71, 2134, 71, 71, 2136, 71, 2130, 71,
71, 2128, 2129, 2139, 71, 2138, 2140, 71, 71, 71,
71, 2133, 71, 2135, 2137, 71, 2146, 71, 2142, 71,
2145, 71, 2141, 71, 2143, 2148, 71, 71, 71, 2150,
2151, 2144, 71, 2152, 2154, 71, 71, 71, 2147, 2149,
2158, 71, 71, 71, 71, 71, 71, 2155, 2153, 2162,
71, 2156, 2163, 71, 71, 71, 2157, 2167, 71, 2161,
71, 71, 2159, 71, 2170, 2164, 2160, 71, 2169, 2165,
2166, 71, 71, 2174, 71, 71, 71, 2176, 71, 2177,
2168, 2171, 71, 2175, 71, 2172, 71, 2181, 71, 2182,
2180, 71, 71, 71, 2178, 71, 2179, 2173, 2186, 71,
2188, 2184, 71, 2191, 2189, 71, 71, 2193, 71, 71,
71, 2183, 2185, 71, 71, 2194, 71, 2190, 2187, 2195,
71, 2197, 71, 2198, 71, 2199, 2192, 71, 71, 71,
2987, 2196, 2204, 2200, 2205, 71, 2201, 2202, 71, 2206,
71, 71, 2207, 2203, 71, 2209, 2210, 71, 2211, 71,
2208, 71, 71, 71, 71, 71, 2212, 2217, 71, 71,
71, 71, 71, 71, 2219, 71, 2224, 2215, 2218, 2213,
2216, 2214, 2220, 71, 2223, 2221, 2222, 71, 2225, 2228,
71, 71, 2229, 2230, 71, 2226, 71, 71, 2233, 2227,
2231, 2232, 2234, 71, 71, 2235, 71, 71, 71, 71,
2237, 71, 71, 71, 2241, 71, 71, 2236, 2243, 2238,
2242, 2244, 71, 71, 71, 2239, 71, 71, 2245, 71,
71, 2240, 71, 2246, 2248, 2249, 71, 2251, 71, 71,
2250, 71, 71, 71, 2258, 2255, 2247, 71, 2257, 2252,
71, 71, 71, 2254, 71, 2263, 71, 2259, 2253, 2262,
71, 71, 2256, 71, 2264, 2260, 2268, 71, 2261, 2265,
71, 2267, 71, 71, 2266, 71, 2270, 2271, 2272, 71,
2274, 71, 71, 71, 71, 2276, 71, 71, 71, 71,
71, 2273, 2275, 2286, 2280, 2284, 71, 71, 2269, 71,
2277, 2278, 2282, 71, 2279, 2285, 71, 71, 2283, 71,
2287, 71, 71, 71, 71, 71, 2281, 2290, 2293, 71,
71, 2295, 71, 2288, 2294, 71, 2292, 71, 2298, 71,
71, 71, 2291, 2289, 71, 2301, 2303, 2297, 2296, 2302,
71, 71, 71, 71, 2299, 71, 71, 71, 2300, 2307,
2306, 2305, 71, 71, 71, 71, 71, 2308, 2311, 2304,
2309, 2313, 2314, 71, 2310, 2315, 71, 2316, 71, 2317,
71, 71, 71, 2319, 2312, 71, 2321, 2320, 71, 2322,
71, 71, 71, 2318, 71, 2327, 71, 71, 2329, 71,
2330, 71, 2323, 2324, 71, 71, 71, 71, 71, 71,
2326, 71, 2325, 2333, 2336, 2331, 2328, 2332, 71, 2334,
2339, 71, 71, 71, 71, 71, 71, 71, 2335, 71,
2346, 2337, 2340, 71, 71, 71, 71, 71, 2338, 2343,
71, 2345, 2347, 71, 2342, 2987, 2353, 71, 2341, 2344,
2348, 2349, 2350, 71, 71, 71, 2357, 71, 2355, 2351,
2356, 2354, 71, 2352, 2358, 71, 71, 2359, 71, 2360,
71, 2361, 2362, 2363, 71, 71, 71, 71, 71, 71,
71, 71, 2372, 71, 2373, 71, 71, 71, 2369, 2376,
71, 2378, 71, 2364, 2366, 2365, 2375, 71, 2368, 2367,
2370, 2371, 71, 71, 71, 71, 2377, 71, 2374, 71,
71, 2381, 71, 2387, 71, 2388, 71, 71, 2389, 71,
2379, 2380, 2382, 2383, 71, 71, 2385, 2384, 71, 71,
71, 2386, 71, 2393, 2391, 2390, 71, 2396, 2397, 2398,
71, 71, 71, 2399, 2392, 2400, 71, 71, 71, 2394,
2395, 71, 71, 71, 71, 71, 2402, 71, 2406, 71,
71, 2401, 2410, 2404, 2411, 71, 71, 2403, 2414, 71,
71, 71, 2405, 71, 2407, 2409, 2408, 2415, 2413, 71,
71, 2412, 71, 2417, 2419, 2416, 2418, 71, 2422, 71,
71, 71, 71, 2426, 71, 71, 2425, 2428, 71, 2424,
2420, 71, 2421, 2423, 71, 71, 2429, 71, 2433, 71,
71, 2434, 71, 2430, 2427, 2436, 71, 71, 71, 2432,
71, 2431, 71, 71, 2441, 71, 2443, 71, 71, 2439,
2437, 2438, 2440, 2444, 2435, 71, 71, 2442, 71, 71,
2445, 71, 71, 2447, 71, 71, 71, 2448, 71, 71,
2446, 2450, 2451, 2453, 2454, 71, 2456, 71, 2457, 71,
2449, 2452, 71, 71, 71, 71, 2462, 2682, 2459, 2458,
2455, 71, 71, 71, 2464, 71, 2463, 2467, 71, 71,
2468, 71, 2460, 2461, 2466, 71, 2470, 71, 71, 2472,
2465, 2471, 71, 2476, 2473, 71, 71, 2474, 2469, 71,
71, 2475, 71, 71, 2477, 71, 71, 2478, 71, 71,
71, 71, 2479, 2482, 2481, 2484, 71, 71, 71, 2485,
2480, 2483, 2487, 2486, 71, 71, 71, 71, 71, 2488,
71, 2493, 71, 71, 71, 2491, 2489, 2492, 2490, 71,
71, 2494, 2498, 71, 71, 71, 2495, 2502, 71, 2501,
71, 71, 71, 2496, 2500, 71, 2506, 2987, 2497, 2499,
2507, 71, 2509, 2503, 2510, 2504, 2511, 71, 71, 71,
71, 2505, 71, 2512, 71, 2513, 71, 71, 2515, 71,
2508, 2514, 71, 2517, 71, 71, 2520, 2521, 71, 71,
2516, 2522, 71, 2523, 71, 71, 2518, 71, 71, 2519,
2525, 2524, 2526, 71, 71, 71, 2530, 71, 2533, 2527,
2528, 2531, 71, 2534, 71, 71, 2529, 71, 2532, 2535,
71, 71, 71, 71, 2536, 2540, 71, 71, 2537, 71,
2541, 2542, 71, 2544, 71, 2538, 71, 71, 2543, 2548,
2545, 71, 2539, 2549, 71, 71, 71, 2551, 71, 71,
2550, 2547, 2552, 71, 2546, 71, 2557, 71, 71, 71,
71, 2556, 71, 2559, 2553, 2560, 71, 71, 2554, 2555,
71, 71, 2561, 71, 2563, 71, 2565, 71, 2562, 71,
2570, 71, 2558, 2564, 2568, 71, 2572, 71, 71, 71,
2578, 71, 2566, 2567, 71, 2569, 2574, 2575, 71, 2571,
2573, 71, 2576, 71, 71, 2579, 71, 2580, 2577, 71,
2581, 71, 2582, 71, 2583, 71, 71, 71, 2584, 2987,
2586, 2585, 2590, 71, 2587, 71, 71, 71, 2591, 2593,
71, 2595, 71, 71, 2594, 71, 2588, 2589, 2596, 2597,
71, 71, 71, 71, 2592, 2602, 71, 71, 71, 71,
2598, 2599, 2600, 2601, 71, 2606, 2604, 71, 2603, 71,
2607, 71, 2608, 2605, 2610, 71, 2609, 2611, 71, 2612,
71, 71, 71, 71, 71, 71, 71, 71, 2621, 2613,
71, 71, 2616, 71, 71, 2619, 2617, 2638, 2624, 71,
2615, 2987, 2622, 71, 2625, 71, 2614, 2620, 71, 2626,
2618, 71, 2623, 71, 2627, 71, 2628, 71, 2629, 2631,
71, 2630, 2632, 71, 2633, 71, 71, 71, 2641, 71,
71, 71, 2637, 2635, 2636, 2634, 2639, 71, 71, 71,
71, 2646, 2640, 71, 2644, 2648, 71, 71, 2642, 71,
71, 71, 2652, 71, 71, 71, 71, 71, 2645, 2643,
2655, 71, 71, 71, 2650, 71, 71, 2653, 2647, 2649,
2654, 2651, 2656, 2659, 2658, 71, 71, 2657, 2662, 71,
2660, 2664, 71, 2665, 71, 2663, 2667, 71, 2661, 71,
71, 71, 71, 71, 2672, 71, 71, 2666, 2671, 71,
71, 2676, 71, 2678, 71, 2668, 2669, 2670, 71, 2680,
2683, 71, 2673, 2684, 71, 71, 2677, 71, 2675, 2674,
71, 71, 2681, 2686, 71, 71, 71, 2691, 2679, 71,
71, 71, 2688, 71, 2689, 2695, 71, 71, 71, 71,
2685, 2696, 2693, 2687, 71, 2697, 2690, 2700, 2692, 2698,
2703, 2694, 71, 71, 2701, 71, 71, 71, 71, 2699,
2702, 71, 71, 2705, 71, 2708, 2706, 71, 2711, 71,
2704, 71, 2712, 71, 2715, 71, 71, 71, 2716, 71,
71, 2707, 71, 2713, 2709, 2710, 2714, 2717, 71, 71,
2718, 2720, 71, 2719, 2721, 71, 2722, 71, 71, 2724,
71, 71, 2726, 2723, 71, 71, 2729, 71, 2725, 2730,
71, 71, 2735, 71, 2734, 71, 71, 71, 71, 71,
71, 2731, 2733, 2727, 2785, 2738, 2728, 2739, 71, 2740,
71, 2732, 71, 71, 2743, 71, 2736, 2741, 2737, 71,
71, 2746, 71, 2745, 71, 71, 71, 2742, 71, 2747,
71, 2744, 71, 2750, 71, 71, 71, 71, 2752, 71,
71, 2987, 2751, 2753, 71, 2748, 2749, 71, 71, 71,
71, 71, 2767, 2754, 2762, 2758, 2755, 2756, 2757, 2765,
71, 2759, 2760, 71, 2764, 2766, 71, 2776, 2761, 71,
2763, 2768, 71, 2769, 71, 2770, 2771, 71, 71, 2772,
2773, 71, 71, 2774, 2775, 71, 71, 2777, 71, 2780,
71, 71, 2783, 71, 71, 2778, 2782, 71, 2786, 2779,
71, 2781, 71, 71, 71, 2791, 2787, 2792, 71, 2793,
71, 71, 2790, 71, 71, 2784, 71, 2788, 2789, 2795,
71, 2800, 2796, 2798, 71, 2797, 2794, 71, 2799, 71,
71, 71, 71, 2807, 71, 2802, 2804, 2805, 71, 2809,
71, 2801, 71, 2808, 2856, 2803, 2810, 71, 71, 2806,
2811, 71, 2812, 71, 2813, 71, 2814, 71, 2815, 71,
2816, 71, 71, 2818, 71, 71, 71, 71, 2821, 2823,
71, 2817, 71, 71, 2819, 71, 71, 2827, 2820, 71,
2829, 71, 71, 71, 71, 2826, 2822, 2824, 2825, 71,
71, 2833, 2831, 71, 2828, 2836, 2835, 71, 71, 71,
2830, 71, 2834, 2838, 71, 71, 71, 71, 71, 2832,
2843, 2837, 2845, 71, 2846, 71, 2847, 71, 2839, 2844,
71, 2841, 2840, 2842, 71, 71, 71, 71, 71, 2850,
71, 71, 71, 2849, 71, 2855, 71, 2858, 71, 71,
71, 2852, 2854, 2848, 71, 71, 2851, 2857, 71, 71,
71, 2853, 2859, 2860, 71, 2867, 2861, 71, 2870, 71,
2862, 71, 71, 2864, 71, 2863, 2865, 71, 2868, 2866,
2871, 2872, 71, 71, 2873, 2874, 71, 2869, 2875, 71,
71, 2876, 71, 2878, 2877, 71, 71, 2879, 2883, 71,
2880, 71, 2881, 71, 71, 2886, 71, 71, 2889, 71,
71, 2882, 71, 2884, 2892, 71, 71, 2893, 2887, 71,
71, 2885, 2896, 2897, 71, 2890, 2888, 2894, 71, 71,
2891, 71, 71, 2901, 71, 71, 71, 71, 2898, 2895,
71, 71, 71, 71, 2899, 2905, 71, 2907, 71, 71,
2904, 2900, 71, 71, 2987, 71, 2902, 2903, 2912, 2909,
2906, 2910, 2908, 71, 71, 2917, 71, 71, 2911, 2913,
71, 2919, 2914, 2915, 2987, 2918, 71, 71, 71, 2920,
71, 2921, 2916, 71, 2925, 2922, 2924, 71, 2923, 71,
71, 2926, 71, 71, 2927, 2928, 71, 2929, 71, 71,
71, 2934, 71, 71, 71, 2931, 2930, 71, 71, 2937,
2938, 71, 71, 71, 71, 71, 2936, 2941, 2932, 2933,
71, 2935, 2939, 2942, 71, 2940, 71, 2945, 2944, 2946,
71, 71, 2949, 2943, 71, 71, 2951, 71, 2952, 71,
71, 71, 71, 2947, 2953, 71, 2948, 2954, 2956, 71,
2957, 71, 71, 2950, 2958, 2959, 71, 71, 2960, 71,
2955, 2962, 71, 71, 2961, 2965, 71, 2963, 71, 71,
71, 71, 71, 2967, 2968, 71, 2971, 71, 2964, 2972,
71, 71, 2966, 71, 2975, 2976, 71, 71, 2977, 2969,
2970, 2973, 2978, 71, 2979, 71, 2974, 71, 71, 71,
71, 2985, 71, 2981, 2980, 2982, 2983, 2986, 71, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2984, 43,
43, 43, 43, 43, 43, 43, 48, 48, 48, 48,
48, 48, 48, 53, 53, 53, 53, 53, 53, 53,
59, 59, 59, 59, 59, 59, 59, 64, 64, 64,
64, 64, 64, 64, 74, 74, 2987, 74, 74, 74,
74, 141, 141, 2987, 2987, 2987, 141, 141, 143, 143,
2987, 2987, 143, 2987, 143, 145, 2987, 2987, 2987, 2987,
2987, 145, 148, 148, 2987, 2987, 2987, 148, 148, 150,
2987, 2987, 2987, 2987, 2987, 150, 152, 152, 2987, 152,
152, 152, 152, 75, 75, 2987, 75, 75, 75, 75,
13, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987
} ;
static const flex_int16_t yy_chk[5862] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
3, 3, 3, 4, 4, 4, 5, 5, 6, 6,
5, 3, 6, 20, 4, 20, 20, 5, 20, 6,
7, 7, 7, 7, 20, 7, 8, 8, 8, 8,
29, 8, 7, 9, 9, 9, 22, 22, 8, 10,
10, 10, 15, 25, 9, 29, 15, 25, 2993, 31,
10, 11, 11, 11, 11, 11, 11, 19, 79, 19,
19, 30, 19, 11, 31, 79, 30, 25, 19, 19,
47, 47, 11, 12, 12, 12, 12, 12, 12, 21,
23, 23, 21, 21, 24, 12, 21, 81, 23, 24,
34, 21, 23, 24, 12, 23, 24, 999, 24, 24,
21, 26, 26, 27, 27, 90, 28, 81, 32, 32,
28, 34, 27, 28, 33, 33, 26, 32, 36, 33,
28, 35, 28, 32, 90, 42, 35, 32, 52, 84,
35, 52, 36, 37, 37, 33, 35, 38, 37, 35,
42, 69, 38, 63, 63, 38, 35, 84, 37, 37,
40, 37, 38, 80, 40, 69, 38, 38, 39, 39,
126, 39, 41, 41, 40, 80, 126, 41, 40, 40,
39, 41, 58, 89, 58, 58, 39, 58, 66, 86,
66, 66, 68, 66, 68, 68, 71, 68, 71, 71,
66, 71, 72, 86, 127, 89, 72, 71, 74, 77,
74, 74, 77, 74, 78, 88, 127, 85, 78, 74,
74, 82, 83, 87, 82, 83, 85, 92, 93, 87,
91, 94, 99, 88, 88, 87, 91, 87, 83, 95,
96, 92, 94, 94, 161, 102, 99, 97, 93, 91,
94, 97, 161, 105, 98, 106, 101, 95, 96, 98,
100, 150, 101, 100, 102, 103, 100, 112, 104, 106,
103, 104, 105, 109, 107, 104, 108, 105, 107, 100,
100, 101, 110, 108, 111, 113, 109, 112, 114, 110,
103, 104, 114, 115, 117, 116, 119, 111, 118, 118,
116, 122, 120, 113, 116, 121, 120, 123, 132, 125,
124, 115, 129, 124, 117, 120, 119, 128, 128, 129,
121, 120, 125, 130, 124, 131, 123, 122, 124, 132,
129, 133, 134, 135, 134, 128, 136, 137, 128, 130,
138, 136, 140, 134, 131, 135, 139, 133, 148, 137,
157, 139, 142, 142, 144, 134, 140, 144, 138, 146,
154, 146, 146, 154, 146, 149, 149, 151, 157, 151,
151, 152, 151, 152, 152, 155, 152, 158, 156, 159,
155, 162, 163, 152, 156, 160, 164, 159, 165, 166,
168, 164, 158, 156, 159, 167, 160, 163, 166, 169,
162, 167, 167, 171, 169, 170, 170, 175, 165, 171,
173, 172, 179, 172, 173, 168, 172, 174, 174, 173,
176, 147, 177, 178, 173, 176, 175, 177, 180, 183,
173, 173, 179, 172, 180, 178, 181, 182, 184, 185,
181, 186, 182, 183, 187, 188, 189, 189, 191, 187,
188, 185, 189, 184, 185, 190, 192, 180, 197, 186,
190, 193, 194, 194, 189, 195, 189, 193, 191, 196,
198, 195, 192, 199, 200, 196, 198, 195, 197, 199,
201, 206, 202, 203, 204, 205, 201, 202, 199, 203,
204, 207, 205, 208, 206, 200, 209, 207, 210, 211,
213, 212, 209, 214, 215, 213, 216, 211, 217, 220,
218, 222, 214, 208, 212, 218, 218, 221, 219, 215,
210, 221, 216, 219, 223, 224, 225, 220, 217, 226,
223, 227, 225, 222, 229, 228, 227, 228, 230, 233,
231, 232, 234, 224, 224, 230, 231, 232, 234, 226,
235, 236, 242, 229, 237, 237, 238, 238, 233, 243,
239, 240, 235, 245, 243, 236, 239, 240, 241, 244,
241, 246, 247, 248, 249, 242, 255, 250, 248, 246,
251, 244, 245, 250, 239, 252, 251, 241, 253, 254,
252, 255, 247, 253, 256, 254, 257, 249, 258, 259,
260, 262, 266, 261, 262, 264, 264, 259, 256, 261,
269, 263, 258, 263, 257, 265, 267, 267, 265, 270,
266, 268, 268, 275, 271, 260, 269, 271, 272, 273,
274, 285, 272, 276, 270, 278, 274, 275, 273, 276,
277, 278, 277, 279, 280, 280, 281, 279, 282, 283,
284, 281, 285, 286, 282, 287, 287, 288, 289, 290,
288, 291, 293, 290, 279, 295, 286, 296, 284, 283,
292, 292, 294, 296, 298, 294, 289, 295, 297, 291,
293, 297, 300, 301, 302, 303, 298, 305, 303, 302,
303, 300, 294, 299, 304, 306, 307, 304, 307, 307,
305, 301, 299, 308, 310, 299, 303, 306, 308, 308,
299, 299, 299, 299, 309, 311, 312, 309, 313, 314,
314, 310, 317, 315, 310, 312, 319, 313, 315, 318,
311, 316, 316, 320, 318, 321, 322, 317, 319, 323,
326, 324, 324, 327, 324, 323, 335, 335, 327, 329,
328, 322, 320, 324, 329, 321, 328, 330, 331, 332,
326, 331, 330, 331, 333, 334, 336, 333, 330, 337,
337, 338, 336, 332, 334, 339, 338, 343, 339, 341,
333, 342, 373, 333, 339, 333, 344, 347, 339, 345,
347, 348, 343, 350, 373, 351, 339, 340, 340, 341,
340, 344, 342, 345, 351, 348, 347, 354, 350, 352,
355, 353, 356, 340, 352, 352, 340, 353, 340, 358,
340, 349, 357, 349, 349, 360, 359, 356, 354, 355,
361, 357, 359, 349, 362, 349, 349, 349, 358, 363,
349, 364, 365, 366, 367, 363, 369, 368, 362, 363,
361, 360, 368, 372, 370, 371, 371, 374, 376, 367,
370, 369, 365, 366, 364, 377, 375, 379, 379, 378,
379, 374, 375, 372, 378, 380, 381, 382, 387, 387,
383, 377, 384, 376, 384, 385, 386, 388, 389, 385,
386, 390, 381, 382, 383, 380, 391, 392, 145, 393,
394, 399, 384, 389, 397, 386, 388, 390, 393, 394,
395, 392, 396, 397, 391, 395, 396, 398, 400, 393,
403, 393, 399, 398, 400, 401, 402, 404, 404, 401,
405, 402, 406, 406, 407, 408, 409, 409, 410, 407,
403, 411, 412, 405, 410, 411, 413, 414, 408, 415,
416, 416, 414, 417, 415, 418, 419, 412, 420, 416,
421, 423, 422, 421, 426, 417, 422, 413, 424, 424,
420, 425, 428, 423, 419, 418, 425, 427, 427, 430,
430, 431, 432, 433, 434, 426, 435, 437, 438, 439,
432, 440, 433, 442, 428, 450, 443, 440, 435, 442,
441, 443, 431, 439, 434, 437, 444, 437, 438, 441,
445, 446, 447, 448, 446, 450, 449, 452, 445, 453,
444, 445, 449, 452, 451, 454, 447, 451, 448, 455,
454, 456, 457, 453, 458, 459, 457, 460, 461, 458,
462, 452, 460, 463, 466, 468, 469, 467, 476, 468,
459, 455, 456, 470, 461, 473, 463, 476, 143, 462,
464, 464, 467, 471, 466, 469, 464, 471, 464, 470,
473, 475, 472, 474, 464, 478, 464, 472, 474, 464,
464, 472, 477, 480, 481, 483, 464, 475, 477, 479,
485, 478, 479, 477, 482, 482, 484, 484, 487, 486,
488, 489, 490, 491, 481, 485, 480, 490, 492, 493,
483, 486, 491, 487, 494, 501, 496, 497, 499, 488,
494, 497, 498, 489, 493, 496, 500, 492, 498, 502,
499, 503, 504, 505, 501, 506, 507, 505, 507, 508,
511, 500, 513, 502, 509, 509, 503, 508, 506, 510,
504, 512, 511, 514, 513, 510, 514, 512, 515, 516,
517, 518, 519, 520, 518, 517, 638, 522, 523, 523,
521, 519, 515, 529, 516, 521, 521, 638, 519, 520,
522, 519, 524, 524, 525, 526, 526, 527, 527, 528,
525, 532, 531, 530, 529, 528, 530, 531, 533, 534,
535, 536, 534, 537, 538, 535, 533, 539, 538, 541,
532, 540, 542, 539, 543, 540, 545, 542, 546, 544,
548, 545, 537, 547, 536, 544, 547, 541, 549, 549,
550, 547, 546, 553, 543, 547, 551, 552, 548, 554,
556, 551, 552, 557, 563, 559, 556, 553, 550, 559,
558, 560, 557, 558, 554, 561, 560, 562, 561, 564,
563, 565, 562, 566, 567, 568, 569, 569, 565, 567,
570, 559, 571, 572, 573, 574, 566, 564, 575, 570,
576, 695, 581, 573, 575, 568, 576, 574, 582, 572,
577, 571, 695, 577, 578, 578, 579, 578, 580, 579,
581, 583, 582, 580, 584, 585, 591, 583, 589, 584,
586, 585, 587, 586, 588, 590, 592, 587, 593, 588,
588, 589, 592, 594, 595, 591, 591, 596, 590, 595,
597, 597, 594, 598, 601, 599, 600, 593, 599, 602,
598, 605, 600, 603, 602, 607, 601, 596, 603, 603,
604, 604, 606, 599, 606, 608, 609, 608, 610, 611,
612, 613, 614, 615, 607, 617, 605, 615, 614, 616,
618, 619, 620, 622, 609, 621, 610, 611, 616, 612,
617, 613, 624, 625, 623, 618, 626, 621, 622, 619,
623, 620, 627, 628, 629, 625, 624, 628, 630, 631,
632, 633, 634, 635, 635, 626, 636, 637, 639, 641,
636, 627, 629, 642, 630, 141, 634, 631, 632, 632,
633, 643, 639, 640, 644, 641, 637, 649, 640, 646,
645, 644, 642, 647, 643, 645, 646, 648, 647, 650,
651, 652, 648, 653, 654, 649, 650, 656, 655, 651,
656, 658, 653, 655, 657, 652, 654, 659, 657, 660,
662, 661, 663, 663, 666, 658, 659, 664, 664, 665,
665, 668, 669, 666, 660, 661, 664, 670, 669, 671,
672, 662, 673, 671, 674, 675, 676, 678, 677, 679,
668, 675, 672, 680, 676, 677, 714, 670, 714, 681,
683, 689, 674, 686, 681, 678, 690, 673, 681, 691,
689, 681, 690, 680, 679, 683, 693, 693, 681, 692,
686, 681, 696, 692, 697, 691, 694, 694, 698, 699,
704, 701, 709, 702, 703, 699, 701, 717, 697, 705,
696, 717, 705, 706, 706, 708, 708, 709, 698, 700,
700, 700, 703, 700, 702, 704, 700, 707, 710, 710,
711, 700, 716, 712, 707, 711, 712, 700, 700, 713,
715, 718, 720, 719, 713, 721, 721, 725, 722, 727,
720, 716, 715, 723, 724, 724, 726, 749, 728, 730,
730, 718, 719, 722, 728, 725, 749, 723, 726, 729,
731, 727, 733, 734, 729, 731, 731, 733, 735, 734,
736, 737, 739, 738, 735, 736, 738, 737, 739, 740,
741, 741, 742, 742, 743, 744, 745, 740, 746, 747,
750, 745, 743, 748, 748, 746, 751, 752, 750, 756,
754, 755, 751, 744, 756, 757, 759, 760, 747, 754,
755, 759, 758, 761, 757, 758, 752, 762, 763, 764,
766, 760, 765, 765, 764, 764, 762, 767, 768, 769,
770, 763, 772, 770, 772, 766, 774, 768, 761, 773,
773, 770, 775, 776, 779, 777, 767, 775, 778, 780,
781, 782, 783, 769, 784, 786, 783, 774, 785, 781,
789, 786, 787, 788, 776, 777, 779, 790, 778, 780,
791, 787, 784, 792, 782, 788, 791, 785, 793, 789,
795, 790, 796, 793, 794, 794, 797, 792, 798, 799,
800, 796, 801, 802, 804, 803, 798, 805, 806, 807,
795, 803, 810, 805, 808, 807, 797, 813, 804, 799,
808, 801, 800, 802, 811, 809, 818, 812, 806, 809,
817, 810, 812, 814, 814, 815, 811, 816, 813, 818,
816, 815, 820, 819, 811, 821, 821, 822, 817, 819,
823, 824, 824, 825, 826, 823, 827, 827, 826, 828,
829, 830, 820, 831, 833, 822, 830, 836, 825, 834,
837, 839, 839, 840, 841, 842, 842, 840, 845, 843,
829, 828, 831, 834, 846, 70, 844, 836, 833, 841,
844, 837, 838, 845, 847, 838, 848, 838, 846, 847,
849, 838, 850, 838, 843, 849, 849, 851, 838, 852,
848, 851, 853, 838, 854, 855, 850, 853, 856, 854,
857, 865, 858, 864, 852, 859, 860, 853, 858, 855,
866, 859, 860, 862, 857, 861, 861, 863, 862, 856,
865, 868, 869, 863, 870, 864, 873, 869, 866, 867,
867, 873, 871, 868, 874, 867, 875, 867, 870, 872,
872, 876, 874, 867, 871, 877, 878, 878, 867, 867,
875, 881, 879, 883, 884, 867, 879, 881, 882, 885,
876, 882, 887, 886, 877, 885, 888, 884, 886, 889,
890, 891, 883, 892, 893, 888, 895, 891, 889, 894,
896, 887, 892, 897, 894, 898, 890, 902, 907, 899,
900, 905, 908, 893, 896, 901, 895, 898, 899, 900,
903, 901, 907, 897, 902, 909, 903, 905, 910, 911,
912, 913, 908, 914, 917, 921, 913, 918, 914, 917,
919, 919, 910, 920, 909, 912, 918, 911, 921, 920,
923, 924, 928, 927, 925, 925, 924, 924, 925, 926,
929, 930, 926, 932, 931, 933, 923, 927, 935, 932,
934, 940, 928, 937, 930, 936, 934, 941, 929, 931,
936, 939, 941, 935, 939, 933, 942, 937, 943, 944,
945, 942, 940, 946, 944, 945, 948, 949, 952, 952,
950, 951, 948, 953, 943, 946, 950, 951, 954, 956,
956, 955, 953, 949, 955, 957, 958, 959, 960, 961,
964, 960, 962, 963, 967, 964, 954, 969, 962, 963,
967, 965, 961, 957, 966, 958, 965, 959, 970, 966,
971, 974, 972, 973, 973, 969, 971, 972, 975, 976,
974, 977, 978, 979, 977, 978, 980, 975, 970, 981,
982, 985, 983, 984, 979, 986, 988, 976, 983, 984,
986, 981, 987, 987, 980, 989, 985, 991, 990, 982,
992, 991, 993, 994, 995, 988, 997, 998, 998, 989,
990, 993, 1000, 1001, 1003, 1002, 1005, 1005, 992, 1003,
1006, 1004, 994, 1021, 1021, 997, 1000, 1002, 1001, 995,
1004, 1007, 1008, 1010, 1009, 1010, 1011, 1007, 1008, 1009,
1006, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1014,
1019, 64, 1022, 1023, 1017, 1024, 1012, 1013, 1025, 1026,
1015, 1031, 1027, 1018, 1025, 1016, 1022, 1027, 1031, 1019,
1024, 1023, 1029, 1029, 1032, 1030, 1027, 1034, 1027, 1026,
1030, 1027, 1033, 1035, 1036, 1033, 1037, 1039, 1032, 1036,
1040, 1038, 1035, 1042, 1042, 1034, 1038, 1043, 1039, 1044,
1045, 1046, 1043, 1047, 1044, 1037, 1046, 1047, 1048, 1040,
1049, 1050, 1051, 1053, 1054, 1052, 1056, 1048, 1055, 1057,
1045, 1054, 1060, 1058, 1061, 1049, 1050, 1052, 1053, 1062,
1055, 1051, 1059, 1063, 1066, 1056, 1068, 1060, 1059, 1065,
1057, 1058, 1063, 1067, 1061, 1065, 1070, 1069, 1066, 1062,
1072, 1067, 1069, 1073, 1071, 1074, 1068, 1078, 1070, 1071,
1071, 1075, 1075, 1077, 59, 1079, 1078, 1073, 1074, 1072,
1076, 1079, 1080, 1080, 1083, 1076, 1077, 1081, 1076, 1076,
1083, 1082, 1081, 1076, 1086, 1086, 1084, 1085, 1087, 1076,
1082, 1084, 1085, 1076, 1088, 1088, 1089, 1090, 1091, 1089,
1093, 1089, 1092, 1094, 1095, 1096, 1097, 1098, 1094, 1087,
1099, 1092, 1097, 1098, 54, 1099, 1091, 1090, 1095, 1101,
1093, 1100, 1108, 1096, 1111, 1100, 1102, 1102, 1101, 1103,
1103, 1104, 1103, 1101, 1106, 1101, 1107, 1101, 1106, 1101,
1108, 1109, 1104, 1110, 1113, 1114, 1111, 1112, 1110, 1110,
1109, 1107, 1112, 1115, 1114, 1116, 1117, 1118, 1113, 1119,
1119, 1120, 1121, 1118, 1123, 1125, 1122, 1126, 1124, 1120,
1117, 1122, 1115, 1129, 1116, 1127, 1121, 1124, 1123, 1135,
1127, 1128, 1128, 1125, 1130, 1130, 1134, 1131, 1129, 1131,
1133, 1134, 1126, 1133, 1136, 1137, 1137, 1138, 1135, 1139,
1139, 1140, 1140, 1136, 1141, 1142, 1143, 1144, 1144, 1141,
1145, 1146, 1147, 1148, 1146, 1149, 1151, 1138, 1148, 1150,
1153, 1150, 1154, 1153, 1149, 1165, 1142, 1143, 1155, 1162,
1145, 1156, 1147, 1155, 1151, 1157, 1156, 1154, 1165, 1158,
1159, 1160, 1160, 1157, 1158, 1159, 1161, 1162, 1163, 1164,
1169, 1161, 1167, 1168, 1163, 1169, 1164, 1170, 1167, 1168,
1171, 1172, 1173, 1170, 1174, 1174, 1175, 1177, 1178, 1171,
1179, 1180, 1181, 1173, 1184, 1183, 1179, 1180, 1181, 1185,
1172, 1183, 1187, 1186, 1188, 1190, 1175, 1177, 1184, 1189,
1189, 1178, 1191, 1192, 1184, 1186, 1187, 1195, 1193, 1185,
1194, 1194, 1188, 1193, 1196, 1190, 1198, 1199, 1200, 1196,
1201, 1192, 1199, 1199, 1202, 1203, 1204, 1191, 1205, 1201,
1195, 1207, 1202, 1207, 1208, 1198, 1200, 1206, 1209, 1203,
1212, 1204, 1206, 1205, 1209, 1206, 1205, 1210, 1208, 1211,
1213, 1210, 1214, 1215, 1216, 1218, 1217, 1220, 1215, 1212,
1211, 1217, 1221, 1222, 1223, 1223, 1225, 1226, 1227, 1224,
1214, 1220, 1216, 1224, 1227, 1218, 1213, 1228, 1229, 1230,
1221, 1222, 1233, 1231, 1225, 1232, 1226, 1234, 1235, 1228,
1237, 1236, 1234, 1230, 1238, 1235, 1236, 1229, 1231, 1240,
1232, 1233, 1242, 1238, 1239, 1239, 1241, 1244, 1237, 53,
1243, 1245, 1241, 1244, 1240, 1243, 1252, 1245, 1246, 1246,
1247, 1247, 1250, 1242, 1249, 1249, 1250, 1251, 1253, 1254,
1255, 1256, 1256, 1257, 1252, 1258, 1251, 1255, 1260, 1261,
1259, 1262, 1253, 1258, 1254, 1259, 1262, 1262, 1264, 1263,
1265, 1265, 1260, 1257, 1263, 1263, 1266, 1267, 1261, 1269,
1268, 1270, 1271, 1272, 1269, 1273, 1275, 1274, 1264, 1268,
1277, 1273, 1274, 1276, 1280, 1266, 1267, 1278, 1279, 1276,
1270, 1272, 1271, 1278, 1279, 1281, 1282, 1283, 1284, 1277,
1285, 1289, 1275, 1280, 1286, 1287, 1287, 1288, 1290, 1290,
1288, 1294, 1284, 1289, 1281, 1282, 1283, 1291, 1291, 1286,
1292, 1285, 1293, 1295, 1294, 1292, 1293, 1296, 1297, 1300,
1297, 1299, 1295, 1301, 1297, 1302, 1299, 1303, 1303, 1305,
1296, 1304, 1306, 1307, 1300, 1305, 1304, 1297, 1309, 1308,
1311, 1302, 1309, 1301, 1308, 1310, 1307, 1306, 1312, 1310,
1313, 1314, 1315, 1315, 1317, 1319, 1320, 1314, 1321, 1321,
1311, 1320, 1322, 1323, 1325, 1325, 1312, 1333, 1322, 1329,
1313, 1327, 1317, 1330, 1327, 1334, 1319, 1328, 1328, 1332,
1335, 1335, 1332, 1323, 1334, 1329, 1336, 1333, 1337, 1330,
1339, 1338, 1340, 1341, 1341, 1339, 1342, 1343, 1344, 1345,
1345, 1336, 1346, 1347, 1349, 1352, 1340, 1351, 1348, 1337,
1338, 1351, 1343, 1348, 1342, 1354, 1346, 1350, 1350, 1349,
1355, 1347, 1357, 1344, 1356, 1352, 1353, 1353, 1356, 1358,
1361, 1355, 1360, 1360, 1358, 1362, 1363, 1354, 1364, 1365,
1367, 1357, 1366, 1366, 1370, 1367, 1368, 1369, 1361, 1362,
1372, 1376, 1364, 1370, 1371, 1363, 1363, 1374, 1373, 1371,
1373, 1379, 1374, 1375, 1365, 1381, 1368, 1369, 1377, 1375,
1372, 1376, 1380, 1380, 1377, 1379, 1382, 1385, 1384, 1386,
1386, 1388, 1382, 1384, 1381, 1387, 1387, 1389, 1390, 1391,
1392, 1392, 1391, 1394, 1393, 1388, 1395, 1400, 1396, 1395,
1398, 1385, 1395, 1390, 1396, 1389, 1393, 1397, 1401, 1398,
1399, 1401, 1397, 1394, 1395, 1399, 1403, 1402, 1404, 1404,
1406, 1403, 1400, 1402, 1405, 1405, 1406, 1407, 1408, 1409,
1410, 1411, 1407, 1412, 1413, 1417, 1412, 1414, 1421, 1415,
1413, 1408, 1416, 1414, 1415, 1418, 1422, 1409, 1416, 1410,
1418, 1411, 1419, 1419, 1420, 1423, 1421, 1424, 1417, 1420,
1425, 1426, 1428, 1427, 1429, 1430, 1422, 1431, 1428, 1432,
1440, 1424, 1435, 1426, 1425, 1423, 1427, 1434, 1434, 1437,
1437, 1431, 1436, 1438, 1429, 1430, 1439, 1436, 1441, 1443,
1432, 1446, 1435, 1442, 1440, 1448, 1444, 1450, 1438, 1445,
1439, 1455, 1442, 1444, 1443, 48, 1441, 1446, 1445, 1451,
1448, 1445, 1451, 1452, 1452, 1448, 1453, 1453, 1454, 1455,
1456, 1458, 1450, 1456, 1457, 1457, 1459, 1460, 1461, 1462,
1454, 1463, 1460, 1461, 1458, 1464, 1465, 1466, 1469, 1469,
1470, 1467, 1474, 1471, 1464, 1459, 1466, 1463, 1462, 1466,
1467, 1468, 1472, 1473, 1475, 1465, 1471, 1468, 1474, 1478,
1470, 1479, 1480, 1480, 1481, 1482, 1475, 1473, 1483, 1485,
1472, 1484, 1484, 1483, 1482, 1486, 1487, 1488, 1485, 1479,
1481, 1485, 1489, 1492, 1478, 1491, 1484, 1489, 1489, 1493,
1496, 1494, 43, 1486, 1495, 1488, 1494, 1487, 1492, 1491,
1495, 1497, 1497, 1498, 1503, 1499, 1500, 1501, 1496, 1498,
1499, 1493, 1500, 1501, 1504, 1505, 1506, 1507, 1512, 1508,
1507, 1505, 1510, 1513, 1503, 1508, 1507, 1514, 1504, 1506,
1510, 1515, 1516, 1517, 1518, 1514, 1519, 1512, 1520, 1520,
1515, 1521, 1513, 1522, 1523, 1516, 1517, 1521, 1518, 1522,
1519, 1524, 1525, 1526, 1527, 1528, 1529, 1523, 1530, 1531,
1520, 1528, 1533, 1533, 1534, 1535, 1540, 1527, 1536, 1535,
1525, 1524, 1526, 1536, 1530, 1537, 1538, 1531, 1529, 1539,
1537, 1538, 1542, 1544, 1534, 1543, 1543, 1545, 1539, 1540,
1546, 1547, 1547, 1548, 1549, 1552, 1550, 1542, 1551, 1545,
1553, 1549, 1544, 1555, 1556, 1554, 1557, 1548, 1550, 1546,
1551, 1554, 1557, 14, 1552, 1555, 1558, 1558, 1559, 1563,
1553, 1559, 1556, 1560, 1560, 1562, 1564, 1566, 1563, 1567,
1562, 1567, 1564, 1565, 1565, 1568, 1569, 1570, 1568, 1566,
1571, 1573, 1572, 1574, 1577, 1575, 1573, 1576, 1579, 1577,
1580, 1583, 1574, 1585, 1578, 1582, 1569, 1575, 1571, 1570,
1572, 1582, 1576, 1578, 1584, 1580, 1581, 1581, 1579, 1585,
1586, 1587, 1583, 1587, 1592, 1588, 1578, 1589, 1589, 1590,
1590, 1591, 1591, 1584, 1593, 1593, 1594, 1594, 1595, 1588,
1586, 1588, 1596, 1598, 1592, 1597, 1597, 1598, 1599, 1600,
1602, 1603, 1600, 1605, 1599, 1604, 1602, 1606, 1610, 1595,
1606, 1604, 1609, 1596, 1607, 1607, 1608, 1608, 1609, 1603,
1610, 1610, 1610, 1611, 1612, 1613, 1614, 1610, 1605, 1616,
1618, 1613, 1618, 1617, 1616, 1616, 1620, 1619, 1623, 1621,
1622, 1624, 1626, 1611, 1612, 1621, 1614, 1617, 1619, 1622,
1628, 1620, 1625, 1625, 1627, 1627, 1629, 1632, 1623, 1630,
1630, 1636, 1624, 1631, 1631, 1635, 1635, 1637, 1626, 1640,
1628, 1639, 1643, 1641, 1642, 1642, 1637, 1632, 1629, 1641,
1639, 1644, 1645, 1646, 1647, 1649, 1636, 1648, 1648, 1645,
1640, 1650, 1646, 1643, 1652, 1653, 1644, 1654, 1655, 1652,
1656, 1653, 1657, 1658, 1658, 1655, 1656, 1650, 1657, 1659,
1647, 1649, 1660, 1661, 1659, 1662, 1663, 1654, 1665, 1664,
1666, 1660, 1664, 1667, 1667, 1668, 1670, 1669, 1663, 1673,
1674, 1668, 1675, 1661, 1662, 1671, 1665, 1675, 1677, 1671,
1688, 1670, 1676, 1676, 1678, 1680, 1666, 1669, 13, 1673,
1681, 1683, 1674, 1690, 1681, 1671, 1682, 1677, 1686, 1678,
1683, 1688, 1682, 1685, 1680, 1684, 1684, 1685, 1689, 1686,
1687, 1687, 1690, 1691, 1686, 1692, 1693, 1694, 1691, 1695,
1696, 1701, 1689, 1694, 1703, 1696, 1697, 1697, 1698, 1698,
1701, 1702, 1709, 1699, 1695, 1692, 1693, 1699, 1704, 1704,
1705, 1705, 1702, 1706, 1703, 1707, 1708, 1702, 1706, 1706,
1710, 1707, 1708, 1711, 1712, 1710, 1714, 1715, 1709, 1716,
1712, 1715, 1717, 1718, 1719, 1711, 1720, 1721, 1714, 1718,
1723, 1716, 1720, 1724, 1727, 1725, 1731, 1727, 1740, 1721,
1725, 1740, 1723, 1728, 1728, 0, 1719, 1717, 1729, 1729,
1730, 1730, 1724, 1732, 1733, 1735, 1731, 1734, 1736, 1732,
1733, 1735, 1734, 1738, 1741, 1742, 1742, 1736, 1738, 1744,
1745, 1748, 1746, 1747, 1747, 1752, 1741, 1746, 1749, 1750,
1748, 1744, 1745, 1749, 1750, 1751, 1751, 1753, 1754, 1755,
1756, 1759, 1757, 1758, 1756, 1752, 1753, 1757, 1762, 1758,
1761, 1761, 1763, 1764, 1764, 1759, 1754, 1766, 1755, 1765,
1767, 1763, 1761, 1769, 1774, 1768, 1762, 1774, 1765, 1766,
1768, 1772, 1772, 1775, 1776, 0, 1769, 1778, 1780, 1779,
1781, 1767, 1782, 1782, 1780, 1783, 1788, 1783, 1785, 1775,
1776, 1787, 1778, 1779, 1784, 1784, 1785, 1781, 1787, 1789,
1789, 1790, 1791, 1792, 1793, 1794, 1788, 1795, 1797, 1796,
1790, 1799, 1802, 1800, 1797, 1792, 1793, 1794, 1801, 1801,
1803, 1806, 0, 1791, 1796, 1800, 1804, 1797, 1810, 1804,
1802, 1799, 1805, 1795, 1808, 1814, 1809, 1805, 1809, 1808,
1803, 1806, 1811, 1812, 1814, 1816, 1810, 1811, 1817, 1818,
1812, 1819, 1820, 1819, 1822, 1823, 1822, 1817, 1824, 1824,
1825, 1818, 1826, 1816, 1827, 1828, 1827, 1826, 1829, 1823,
1828, 1820, 1830, 1829, 1831, 1832, 1834, 1833, 1837, 1835,
1903, 1832, 1833, 1842, 1838, 1841, 1825, 1835, 1903, 1834,
1830, 1839, 1839, 1843, 1831, 1840, 1840, 1837, 1838, 1843,
1841, 1844, 1845, 1842, 1845, 1846, 1844, 1847, 1847, 1851,
1848, 1849, 1849, 1846, 1850, 1850, 1853, 1855, 1851, 1852,
1857, 1846, 1848, 1856, 1852, 1856, 1855, 1858, 1859, 1855,
1860, 1862, 1858, 1858, 1853, 1863, 1866, 1859, 1867, 1864,
1863, 1857, 1860, 1862, 1864, 1868, 1869, 1869, 1870, 1866,
1871, 1872, 1876, 1877, 1868, 1873, 1874, 1878, 1867, 1890,
1887, 1892, 1892, 1881, 1876, 1877, 1870, 1872, 1871, 1873,
1879, 1874, 1881, 1880, 1884, 1879, 1886, 1878, 1880, 1888,
1884, 1889, 1886, 1887, 1890, 1895, 1891, 1893, 1894, 1894,
0, 1904, 1898, 1884, 1888, 1891, 1893, 1896, 1897, 1889,
1900, 1896, 1899, 1897, 1895, 1898, 1900, 1899, 1899, 1901,
1902, 1904, 1909, 1902, 1912, 1901, 1907, 1907, 1908, 1908,
1913, 1909, 1910, 1910, 1911, 1911, 1912, 1915, 1914, 1916,
1916, 1922, 1915, 1908, 1914, 1917, 1917, 1918, 1913, 1919,
1925, 1927, 1918, 1921, 1908, 1919, 1923, 1921, 1926, 1929,
1923, 1922, 1928, 1926, 1929, 1930, 1931, 1932, 1932, 1933,
1934, 1935, 1936, 1933, 1927, 1925, 1935, 1928, 1937, 1939,
1938, 1940, 1931, 1930, 1939, 1934, 1941, 1942, 1942, 1944,
1937, 1945, 1946, 1947, 1940, 1948, 1949, 1944, 1936, 1938,
1950, 1951, 1952, 1954, 1941, 1955, 1955, 1957, 1958, 1956,
1945, 1946, 1956, 1951, 1959, 1949, 1947, 1963, 1954, 1948,
1957, 1950, 1958, 1952, 1960, 1960, 1964, 1959, 1961, 1961,
1962, 1962, 1963, 1965, 1965, 1966, 1967, 1967, 1968, 1964,
1970, 1971, 1972, 1968, 1966, 1970, 1973, 1966, 1974, 1974,
1975, 1975, 1976, 1977, 1977, 1978, 1979, 1979, 1973, 1980,
1981, 1971, 1972, 1982, 1982, 1981, 1983, 1983, 1984, 1985,
1986, 1976, 1987, 1978, 1980, 1989, 1990, 1990, 1985, 1991,
1989, 1993, 1984, 1994, 1986, 1992, 1992, 1995, 1998, 1994,
1995, 1987, 1996, 1996, 1997, 1997, 1999, 2000, 1991, 1993,
2001, 2001, 2003, 2004, 2005, 2006, 2008, 1998, 1996, 2006,
2015, 1999, 2007, 2007, 2009, 2010, 2000, 2012, 2012, 2005,
2013, 2014, 2003, 2016, 2015, 2008, 2004, 2017, 2014, 2009,
2010, 2018, 2019, 2019, 2020, 2021, 2022, 2021, 2024, 2022,
2013, 2016, 2025, 2020, 2026, 2017, 2027, 2025, 2028, 2026,
2024, 2029, 2031, 2030, 2022, 2033, 2022, 2018, 2030, 2034,
2033, 2028, 2035, 2036, 2034, 2037, 2041, 2038, 2042, 2036,
2039, 2027, 2029, 2038, 2040, 2039, 2044, 2035, 2031, 2040,
2043, 2042, 2053, 2043, 2045, 2044, 2037, 2046, 2047, 2048,
0, 2041, 2049, 2045, 2050, 2051, 2046, 2047, 2049, 2051,
2050, 2055, 2053, 2048, 2056, 2056, 2057, 2058, 2058, 2059,
2055, 2061, 2057, 2064, 2062, 2065, 2058, 2063, 2063, 2068,
2067, 2069, 2070, 2072, 2065, 2074, 2072, 2061, 2064, 2059,
2062, 2059, 2067, 2073, 2070, 2068, 2069, 2075, 2073, 2076,
2076, 2077, 2077, 2079, 2079, 2074, 2081, 2080, 2082, 2075,
2080, 2081, 2083, 2085, 2082, 2084, 2084, 2087, 2083, 2086,
2086, 2088, 2089, 2090, 2090, 2093, 2092, 2085, 2093, 2087,
2092, 2094, 2094, 2095, 2096, 2088, 2097, 2100, 2095, 2103,
2098, 2089, 2102, 2096, 2098, 2099, 2099, 2102, 2104, 2105,
2100, 2106, 2107, 2108, 2109, 2106, 2097, 2111, 2108, 2103,
2109, 2110, 2113, 2105, 2114, 2115, 2116, 2110, 2104, 2114,
2120, 2115, 2107, 2122, 2116, 2111, 2122, 2117, 2113, 2117,
2121, 2121, 2123, 2126, 2120, 2124, 2124, 2126, 2127, 2128,
2129, 2129, 2135, 2130, 2127, 2133, 2133, 2137, 2138, 2141,
2142, 2128, 2130, 2149, 2141, 2145, 2145, 2143, 2123, 2149,
2135, 2137, 2143, 2144, 2138, 2147, 2147, 2151, 2144, 2150,
2150, 2152, 2153, 2155, 2156, 2159, 2142, 2153, 2157, 2157,
2161, 2160, 2162, 2151, 2159, 2165, 2156, 2160, 2164, 2164,
2166, 2170, 2155, 2152, 2168, 2168, 2170, 2162, 2161, 2169,
2169, 2171, 2172, 2175, 2165, 2173, 2176, 2174, 2166, 2174,
2173, 2172, 2177, 2178, 2179, 2186, 2180, 2175, 2178, 2171,
2176, 2180, 2181, 2181, 2177, 2182, 2182, 2183, 2183, 2184,
2184, 2185, 2187, 2186, 2179, 2188, 2188, 2187, 2189, 2189,
2190, 2191, 2192, 2185, 2193, 2194, 2194, 2195, 2196, 2196,
2197, 2197, 2190, 2191, 2198, 2199, 2200, 2201, 2202, 2203,
2193, 2204, 2192, 2200, 2203, 2198, 2195, 2199, 2205, 2201,
2206, 2206, 2208, 2207, 2209, 2211, 2210, 2212, 2202, 2213,
2213, 2204, 2207, 2214, 2218, 2215, 2216, 2219, 2205, 2210,
2220, 2212, 2214, 2221, 2209, 0, 2221, 2222, 2208, 2211,
2215, 2216, 2218, 2223, 2232, 2224, 2225, 2225, 2223, 2219,
2224, 2222, 2233, 2220, 2226, 2226, 2227, 2227, 2229, 2229,
2231, 2231, 2232, 2233, 2234, 2236, 2237, 2238, 2239, 2240,
2241, 2243, 2243, 2242, 2245, 2245, 2246, 2247, 2240, 2248,
2248, 2251, 2251, 2234, 2237, 2236, 2247, 2250, 2239, 2238,
2241, 2242, 2252, 2253, 2254, 2256, 2250, 2255, 2246, 2257,
2258, 2254, 2259, 2260, 2260, 2261, 2261, 2263, 2262, 2264,
2252, 2253, 2255, 2256, 2262, 2265, 2258, 2257, 2266, 2267,
2268, 2259, 2269, 2266, 2264, 2263, 2270, 2269, 2270, 2271,
2271, 2272, 2275, 2272, 2265, 2273, 2273, 2277, 2278, 2267,
2268, 2279, 2280, 2281, 2282, 2286, 2277, 2283, 2281, 2287,
2290, 2275, 2287, 2279, 2288, 2288, 2289, 2278, 2291, 2291,
2294, 2297, 2280, 2292, 2282, 2286, 2283, 2292, 2290, 2295,
2299, 2289, 2300, 2295, 2297, 2294, 2296, 2296, 2301, 2301,
2304, 2303, 2305, 2306, 2306, 2307, 2305, 2308, 2308, 2304,
2299, 2309, 2300, 2303, 2310, 2311, 2309, 2312, 2313, 2313,
2318, 2318, 2319, 2310, 2307, 2320, 2320, 2321, 2322, 2312,
2323, 2311, 2326, 2324, 2325, 2325, 2328, 2328, 2331, 2323,
2321, 2322, 2324, 2331, 2319, 2332, 2333, 2326, 2334, 2335,
2332, 2336, 2337, 2334, 2338, 2616, 2340, 2335, 2341, 2342,
2333, 2337, 2338, 2341, 2342, 2343, 2344, 2344, 2345, 2345,
2336, 2340, 2346, 2347, 2348, 2349, 2350, 2616, 2347, 2346,
2343, 2351, 2350, 2352, 2352, 2353, 2351, 2355, 2355, 2354,
2356, 2356, 2348, 2349, 2354, 2359, 2360, 2360, 2361, 2362,
2353, 2361, 2363, 2365, 2362, 2362, 2364, 2363, 2359, 2365,
2366, 2364, 2367, 2368, 2366, 2369, 2370, 2367, 2371, 2372,
2374, 2377, 2368, 2371, 2370, 2374, 2375, 2379, 2381, 2375,
2369, 2372, 2379, 2377, 2380, 2382, 2383, 2389, 2384, 2380,
2385, 2385, 2386, 2390, 2395, 2383, 2381, 2384, 2382, 2391,
2393, 2386, 2392, 2392, 2397, 2394, 2389, 2396, 2396, 2395,
2399, 2401, 2402, 2390, 2394, 2404, 2402, 0, 2391, 2393,
2403, 2403, 2405, 2397, 2406, 2399, 2407, 2409, 2405, 2412,
2406, 2401, 2407, 2408, 2408, 2409, 2410, 2413, 2412, 2415,
2404, 2410, 2416, 2415, 2417, 2419, 2419, 2420, 2420, 2429,
2413, 2421, 2421, 2423, 2423, 2425, 2416, 2424, 2434, 2417,
2425, 2424, 2427, 2427, 2431, 2430, 2432, 2435, 2435, 2429,
2430, 2432, 2432, 2437, 2437, 2440, 2431, 2442, 2434, 2438,
2438, 2439, 2444, 2448, 2439, 2445, 2445, 2450, 2440, 2446,
2446, 2447, 2447, 2449, 2449, 2442, 2451, 2452, 2448, 2453,
2450, 2459, 2444, 2454, 2454, 2453, 2455, 2458, 2460, 2461,
2455, 2452, 2458, 2458, 2451, 2462, 2463, 2464, 2474, 2465,
2479, 2462, 2463, 2465, 2459, 2466, 2466, 2469, 2460, 2461,
2471, 2472, 2469, 2475, 2472, 2476, 2475, 2478, 2471, 2477,
2479, 2482, 2464, 2474, 2477, 2480, 2481, 2481, 2483, 2485,
2486, 2486, 2476, 2476, 2494, 2478, 2483, 2484, 2491, 2480,
2482, 2493, 2484, 2484, 2487, 2487, 2488, 2488, 2485, 2489,
2489, 2490, 2490, 2492, 2491, 2495, 2496, 2497, 2492, 0,
2494, 2493, 2499, 2499, 2495, 2500, 2501, 2504, 2500, 2503,
2503, 2505, 2505, 2506, 2504, 2513, 2496, 2497, 2506, 2508,
2508, 2509, 2510, 2511, 2501, 2514, 2514, 2516, 2517, 2519,
2509, 2510, 2511, 2513, 2515, 2518, 2516, 2520, 2515, 2524,
2518, 2518, 2519, 2517, 2524, 2528, 2520, 2525, 2525, 2527,
2527, 2529, 2530, 2532, 2533, 2536, 2537, 2538, 2539, 2528,
2541, 2543, 2532, 2545, 2539, 2537, 2533, 2561, 2545, 2546,
2530, 0, 2541, 2561, 2546, 2548, 2529, 2538, 2547, 2547,
2536, 2550, 2543, 2557, 2548, 2558, 2550, 2551, 2551, 2553,
2553, 2551, 2554, 2554, 2555, 2555, 2556, 2559, 2564, 2564,
2565, 2562, 2559, 2557, 2558, 2556, 2562, 2563, 2566, 2567,
2568, 2569, 2563, 2570, 2567, 2571, 2571, 2569, 2565, 2574,
2573, 2575, 2577, 2577, 2579, 2584, 2581, 2580, 2568, 2566,
2581, 2583, 2587, 2582, 2574, 2585, 2589, 2579, 2570, 2573,
2580, 2575, 2582, 2585, 2584, 2586, 2594, 2583, 2588, 2588,
2586, 2591, 2591, 2592, 2592, 2589, 2596, 2596, 2587, 2598,
2599, 2600, 2604, 2601, 2603, 2603, 2605, 2594, 2601, 2606,
2608, 2608, 2609, 2610, 2610, 2598, 2599, 2600, 2613, 2614,
2617, 2617, 2604, 2618, 2618, 2614, 2609, 2615, 2606, 2605,
2619, 2621, 2615, 2620, 2620, 2622, 2623, 2624, 2613, 2625,
2626, 2627, 2621, 2624, 2622, 2628, 2628, 2634, 2629, 2635,
2619, 2629, 2626, 2620, 2630, 2630, 2623, 2636, 2625, 2634,
2639, 2627, 2640, 2636, 2637, 2637, 2639, 2638, 2642, 2635,
2638, 2643, 2644, 2642, 2650, 2645, 2643, 2646, 2647, 2647,
2640, 2645, 2649, 2649, 2653, 2653, 2656, 2651, 2654, 2654,
2668, 2644, 2655, 2650, 2646, 2646, 2651, 2655, 2657, 2666,
2656, 2658, 2658, 2657, 2659, 2659, 2660, 2660, 2661, 2663,
2663, 2669, 2668, 2661, 2670, 2671, 2671, 2674, 2666, 2673,
2673, 2675, 2679, 2676, 2677, 2677, 2680, 2742, 2679, 2681,
2682, 2674, 2676, 2669, 2742, 2682, 2670, 2685, 2685, 2687,
2687, 2675, 2688, 2689, 2690, 2692, 2680, 2688, 2681, 2691,
2690, 2693, 2693, 2692, 2694, 2696, 2697, 2689, 2698, 2694,
2699, 2691, 2700, 2698, 2703, 2702, 2704, 2705, 2700, 2707,
2706, 0, 2699, 2702, 2708, 2696, 2697, 2709, 2719, 2710,
2713, 2714, 2719, 2703, 2710, 2707, 2704, 2705, 2706, 2717,
2717, 2708, 2708, 2729, 2714, 2718, 2718, 2729, 2709, 2735,
2713, 2723, 2723, 2725, 2725, 2726, 2726, 2732, 2726, 2727,
2727, 2736, 2727, 2728, 2728, 2733, 2728, 2731, 2731, 2735,
2741, 2737, 2738, 2738, 2743, 2732, 2737, 2744, 2743, 2733,
2747, 2736, 2745, 2748, 2749, 2749, 2744, 2750, 2750, 2751,
2751, 2752, 2748, 2754, 2753, 2741, 2757, 2745, 2747, 2753,
2758, 2756, 2754, 2755, 2759, 2754, 2752, 2756, 2755, 2755,
2762, 2760, 2761, 2763, 2763, 2758, 2760, 2761, 2764, 2767,
2767, 2757, 2833, 2764, 2833, 2759, 2770, 2770, 2782, 2762,
2771, 2771, 2772, 2772, 2773, 2773, 2774, 2774, 2775, 2775,
2776, 2776, 2778, 2779, 2779, 2780, 2781, 2784, 2782, 2785,
2785, 2778, 2786, 2788, 2780, 2787, 2789, 2789, 2781, 2790,
2791, 2791, 2794, 2796, 2798, 2788, 2784, 2786, 2787, 2795,
2797, 2797, 2795, 2800, 2790, 2801, 2800, 2802, 2803, 2804,
2794, 2801, 2798, 2803, 2805, 2806, 2819, 2817, 2808, 2796,
2817, 2802, 2820, 2820, 2821, 2821, 2822, 2822, 2804, 2819,
2824, 2806, 2805, 2808, 2825, 2826, 2827, 2828, 2830, 2826,
2832, 2831, 2834, 2825, 2837, 2832, 2835, 2835, 2838, 2836,
2840, 2828, 2831, 2824, 2839, 2842, 2827, 2834, 2841, 2843,
2844, 2830, 2836, 2837, 2848, 2844, 2838, 2849, 2850, 2850,
2839, 2851, 2856, 2841, 2857, 2840, 2842, 2861, 2848, 2843,
2851, 2852, 2852, 2853, 2853, 2854, 2854, 2849, 2855, 2855,
2858, 2856, 2859, 2858, 2857, 2860, 2862, 2859, 2863, 2864,
2860, 2865, 2861, 2867, 2863, 2866, 2866, 2868, 2869, 2869,
2871, 2862, 2873, 2864, 2876, 2876, 2877, 2877, 2867, 2878,
2879, 2865, 2880, 2881, 2882, 2871, 2868, 2878, 2880, 2881,
2873, 2883, 2884, 2885, 2885, 2887, 2890, 2888, 2882, 2879,
2893, 2891, 2894, 2895, 2883, 2891, 2896, 2894, 2897, 2898,
2890, 2884, 2902, 2899, 0, 2903, 2887, 2888, 2899, 2896,
2893, 2897, 2895, 2904, 2900, 2905, 2905, 2912, 2898, 2900,
2906, 2907, 2902, 2903, 0, 2906, 2909, 2907, 2908, 2908,
2910, 2909, 2904, 2911, 2913, 2910, 2912, 2919, 2911, 2915,
2913, 2914, 2914, 2918, 2915, 2916, 2916, 2918, 2920, 2921,
2922, 2923, 2924, 2925, 2932, 2920, 2919, 2923, 2927, 2927,
2929, 2929, 2931, 2930, 2933, 2934, 2925, 2931, 2921, 2922,
2939, 2924, 2930, 2932, 2936, 2930, 2935, 2935, 2934, 2936,
2937, 2940, 2940, 2933, 2941, 2942, 2942, 2943, 2943, 2944,
2945, 2946, 2953, 2937, 2944, 2948, 2939, 2945, 2947, 2947,
2948, 2951, 2949, 2941, 2949, 2950, 2950, 2952, 2951, 2955,
2946, 2953, 2954, 2958, 2952, 2957, 2957, 2954, 2960, 2961,
2962, 2963, 2967, 2960, 2961, 2964, 2964, 2968, 2955, 2966,
2966, 2971, 2958, 2969, 2969, 2970, 2970, 2981, 2971, 2962,
2963, 2967, 2973, 2973, 2974, 2974, 2968, 2975, 2977, 2982,
2980, 2983, 2983, 2977, 2975, 2980, 2981, 2984, 2984, 0,
0, 0, 0, 0, 0, 0, 0, 0, 2982, 2988,
2988, 2988, 2988, 2988, 2988, 2988, 2989, 2989, 2989, 2989,
2989, 2989, 2989, 2990, 2990, 2990, 2990, 2990, 2990, 2990,
2991, 2991, 2991, 2991, 2991, 2991, 2991, 2992, 2992, 2992,
2992, 2992, 2992, 2992, 2994, 2994, 0, 2994, 2994, 2994,
2994, 2995, 2995, 0, 0, 0, 2995, 2995, 2996, 2996,
0, 0, 2996, 0, 2996, 2997, 0, 0, 0, 0,
0, 2997, 2998, 2998, 0, 0, 0, 2998, 2998, 2999,
0, 0, 0, 0, 0, 2999, 3000, 3000, 0, 3000,
3000, 3000, 3000, 3001, 3001, 0, 3001, 3001, 3001, 3001,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987,
2987
} ;
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.
*
*/
/* because flex keeps having sign-unsigned compare problems that are unfixed*/
#if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2))))
#pragma GCC diagnostic ignored "-Wsign-compare"
#endif
#include <ctype.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(*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;
int i, r, flags;
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
!strchr(filename, '{') && !strchr(filename, '~'))) {
flags = 0
#ifdef GLOB_ERR
| GLOB_ERR
#endif
/* do not set GLOB_NOSORT so the results are sorted
and in a predictable order. */
#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=(int)g.gl_pathc-1; i>=0; 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
#line 2900 "<stdout>"
#define YY_NO_INPUT 1
#line 184 "./util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
#ifndef YY_NO_INPUT
#define YY_NO_INPUT 1
#endif
#line 2909 "<stdout>"
#line 2911 "<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 );
int 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 YY_NO_UNPUT
#endif
#ifndef yytext_ptr
static void yy_flex_strncpy ( char *, const char *, int );
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen ( const 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
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k */
#define YY_READ_BUF_SIZE 16384
#else
#define YY_READ_BUF_SIZE 8192
#endif /* __ia64__ */
#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, (size_t) 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 = '*'; \
int 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 = (int) fread(buf, 1, (yy_size_t) 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 /*LINTED*/break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
yy_state_type yy_current_state;
char *yy_cp, *yy_bp;
int yy_act;
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( );
}
{
#line 204 "./util/configlexer.lex"
#line 3133 "<stdout>"
while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
{
(yy_more_len) = 0;
if ( (yy_more_flag) )
{
(yy_more_len) = (int) ((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
{
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 >= 2988 )
yy_c = yy_meta[yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
++yy_cp;
}
while ( yy_base[yy_current_state] != 5821 );
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 205 "./util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 207 "./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 210 "./util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 211 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 212 "./util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 213 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 7:
YY_RULE_SETUP
#line 214 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 215 "./util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 216 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 217 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 218 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 219 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 220 "./util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 221 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 222 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 16:
YY_RULE_SETUP
#line 223 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP4) }
YY_BREAK
case 17:
YY_RULE_SETUP
#line 224 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP6) }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 225 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 226 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 227 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_UPSTREAM) }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 228 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_MSS) }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 229 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 230 "./util/configlexer.lex"
{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 231 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 232 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
YY_BREAK
case 26:
YY_RULE_SETUP
#line 233 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 234 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 235 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 236 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 237 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 238 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 239 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 240 "./util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 34:
YY_RULE_SETUP
#line 241 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 242 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 243 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_WIN_CERT) }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 244 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 245 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 246 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 247 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 248 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 249 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERS) }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 250 "./util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 251 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSTEMD) }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 252 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 253 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 254 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 255 "./util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 256 "./util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 50:
YY_RULE_SETUP
#line 257 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 258 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_SNDBUF) }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 259 "./util/configlexer.lex"
{ YDVAR(1, VAR_SO_REUSEPORT) }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 260 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_TRANSPARENT) }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 261 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_FREEBIND) }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 262 "./util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 263 "./util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 264 "./util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 265 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 266 "./util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 267 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 268 "./util/configlexer.lex"
{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 269 "./util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 270 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 271 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 65:
YY_RULE_SETUP
#line 272 "./util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 273 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 274 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 275 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 276 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 277 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 278 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 279 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 280 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 281 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 282 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 283 "./util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 284 "./util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 285 "./util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 286 "./util/configlexer.lex"
{ YDVAR(1, VAR_DELAY_CLOSE) }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 287 "./util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 288 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 289 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 290 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 291 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 292 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 293 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 294 "./util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 295 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 296 "./util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 297 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 298 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 299 "./util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 300 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH_KEY) }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 301 "./util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 302 "./util/configlexer.lex"
{ YDVAR(1, VAR_DENY_ANY) }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 303 "./util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 304 "./util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 305 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 306 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 307 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 308 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_FIRST) }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 309 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_NO_CACHE) }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 310 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 311 "./util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 312 "./util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 313 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 314 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 315 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_FIRST) }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 316 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 317 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 318 "./util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 319 "./util/configlexer.lex"
{ YDVAR(0, VAR_AUTH_ZONE) }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 320 "./util/configlexer.lex"
{ YDVAR(0, VAR_RPZ) }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 321 "./util/configlexer.lex"
{ YDVAR(1, VAR_TAGS) }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 322 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 323 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 324 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG) }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 325 "./util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG_NAME) }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 326 "./util/configlexer.lex"
{ YDVAR(1, VAR_ZONEFILE) }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 327 "./util/configlexer.lex"
{ YDVAR(1, VAR_MASTER) }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 328 "./util/configlexer.lex"
{ YDVAR(1, VAR_URL) }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 329 "./util/configlexer.lex"
{ YDVAR(1, VAR_ALLOW_NOTIFY) }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 330 "./util/configlexer.lex"
{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 331 "./util/configlexer.lex"
{ YDVAR(1, VAR_FOR_UPSTREAM) }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 332 "./util/configlexer.lex"
{ YDVAR(1, VAR_FALLBACK_ENABLED) }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 333 "./util/configlexer.lex"
{ YDVAR(0, VAR_VIEW) }
YY_BREAK
case 127:
YY_RULE_SETUP
#line 334 "./util/configlexer.lex"
{ YDVAR(1, VAR_VIEW_FIRST) }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 335 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 336 "./util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 337 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 338 "./util/configlexer.lex"
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
YY_BREAK
case 132:
YY_RULE_SETUP
#line 339 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 340 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 341 "./util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 342 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 343 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 344 "./util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 345 "./util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 346 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 347 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 348 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 349 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 350 "./util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 351 "./util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 352 "./util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 353 "./util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 354 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 148:
YY_RULE_SETUP
#line 355 "./util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 149:
YY_RULE_SETUP
#line 356 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 150:
YY_RULE_SETUP
#line 357 "./util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 151:
YY_RULE_SETUP
#line 358 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 152:
YY_RULE_SETUP
#line 359 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 153:
YY_RULE_SETUP
#line 360 "./util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 361 "./util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 362 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 156:
YY_RULE_SETUP
#line 363 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 157:
YY_RULE_SETUP
#line 364 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 158:
YY_RULE_SETUP
#line 365 "./util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 159:
YY_RULE_SETUP
#line 366 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 367 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 161:
YY_RULE_SETUP
#line 368 "./util/configlexer.lex"
{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
YY_BREAK
case 162:
YY_RULE_SETUP
#line 369 "./util/configlexer.lex"
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
YY_BREAK
case 163:
YY_RULE_SETUP
#line 370 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED) }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 371 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
YY_BREAK
case 165:
YY_RULE_SETUP
#line 372 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
YY_BREAK
case 166:
YY_RULE_SETUP
#line 373 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) }
YY_BREAK
case 167:
YY_RULE_SETUP
#line 374 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) }
YY_BREAK
case 168:
YY_RULE_SETUP
#line 375 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_DSA) }
YY_BREAK
case 169:
YY_RULE_SETUP
#line 376 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_SHA1) }
YY_BREAK
case 170:
YY_RULE_SETUP
#line 377 "./util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 171:
YY_RULE_SETUP
#line 378 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
YY_BREAK
case 172:
YY_RULE_SETUP
#line 379 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
YY_BREAK
case 173:
YY_RULE_SETUP
#line 380 "./util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
YY_BREAK
case 174:
YY_RULE_SETUP
#line 381 "./util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
case 175:
YY_RULE_SETUP
#line 383 "./util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
case 176:
YY_RULE_SETUP
#line 384 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
case 177:
YY_RULE_SETUP
#line 385 "./util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
case 178:
YY_RULE_SETUP
#line 386 "./util/configlexer.lex"
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
YY_BREAK
case 179:
YY_RULE_SETUP
#line 387 "./util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
case 180:
YY_RULE_SETUP
#line 388 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_IDENTITY) }
YY_BREAK
case 181:
YY_RULE_SETUP
#line 389 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
case 182:
YY_RULE_SETUP
#line 390 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
YY_BREAK
case 183:
YY_RULE_SETUP
#line 391 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_REPLIES) }
YY_BREAK
case 184:
YY_RULE_SETUP
#line 392 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) }
YY_BREAK
case 185:
YY_RULE_SETUP
#line 393 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
YY_BREAK
case 186:
YY_RULE_SETUP
#line 394 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOG_SERVFAIL) }
YY_BREAK
case 187:
YY_RULE_SETUP
#line 395 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
case 188:
YY_RULE_SETUP
#line 396 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
case 189:
YY_RULE_SETUP
#line 397 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
case 190:
YY_RULE_SETUP
#line 398 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
YY_BREAK
case 191:
YY_RULE_SETUP
#line 399 "./util/configlexer.lex"
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
YY_BREAK
case 192:
YY_RULE_SETUP
#line 400 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
case 193:
YY_RULE_SETUP
#line 401 "./util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
case 194:
YY_RULE_SETUP
#line 402 "./util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
case 195:
YY_RULE_SETUP
#line 403 "./util/configlexer.lex"
{ YDVAR(1, VAR_SHM_ENABLE) }
YY_BREAK
case 196:
YY_RULE_SETUP
#line 404 "./util/configlexer.lex"
{ YDVAR(1, VAR_SHM_KEY) }
YY_BREAK
case 197:
YY_RULE_SETUP
#line 405 "./util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
case 198:
YY_RULE_SETUP
#line 406 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
case 199:
YY_RULE_SETUP
#line 407 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
case 200:
YY_RULE_SETUP
#line 408 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
case 201:
YY_RULE_SETUP
#line 409 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
YY_BREAK
case 202:
YY_RULE_SETUP
#line 410 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
case 203:
YY_RULE_SETUP
#line 411 "./util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
case 204:
YY_RULE_SETUP
#line 412 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
case 205:
YY_RULE_SETUP
#line 413 "./util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
case 206:
YY_RULE_SETUP
#line 414 "./util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
case 207:
YY_RULE_SETUP
#line 415 "./util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
case 208:
YY_RULE_SETUP
#line 416 "./util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
case 209:
YY_RULE_SETUP
#line 417 "./util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
YY_BREAK
case 210:
YY_RULE_SETUP
#line 418 "./util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
YY_BREAK
case 211:
YY_RULE_SETUP
#line 419 "./util/configlexer.lex"
{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) }
YY_BREAK
case 212:
YY_RULE_SETUP
#line 420 "./util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
YY_BREAK
case 213:
YY_RULE_SETUP
#line 421 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
YY_BREAK
case 214:
YY_RULE_SETUP
#line 422 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
YY_BREAK
case 215:
YY_RULE_SETUP
#line 423 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
YY_BREAK
case 216:
YY_RULE_SETUP
#line 424 "./util/configlexer.lex"
{ YDVAR(1, VAR_DEFINE_TAG) }
YY_BREAK
case 217:
YY_RULE_SETUP
#line 425 "./util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
YY_BREAK
case 218:
YY_RULE_SETUP
#line 426 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
YY_BREAK
case 219:
YY_RULE_SETUP
#line 427 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
YY_BREAK
case 220:
YY_RULE_SETUP
#line 428 "./util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
YY_BREAK
case 221:
YY_RULE_SETUP
#line 429 "./util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
YY_BREAK
case 222:
YY_RULE_SETUP
#line 430 "./util/configlexer.lex"
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
YY_BREAK
case 223:
YY_RULE_SETUP
#line 431 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
YY_BREAK
case 224:
YY_RULE_SETUP
#line 432 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
YY_BREAK
case 225:
YY_RULE_SETUP
#line 433 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
YY_BREAK
case 226:
YY_RULE_SETUP
#line 434 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
YY_BREAK
case 227:
YY_RULE_SETUP
#line 435 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
YY_BREAK
case 228:
YY_RULE_SETUP
#line 436 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
YY_BREAK
case 229:
YY_RULE_SETUP
#line 437 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
YY_BREAK
case 230:
YY_RULE_SETUP
#line 438 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
YY_BREAK
case 231:
YY_RULE_SETUP
#line 440 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
YY_BREAK
case 232:
YY_RULE_SETUP
#line 442 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
YY_BREAK
case 233:
YY_RULE_SETUP
#line 444 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
YY_BREAK
case 234:
YY_RULE_SETUP
#line 446 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
YY_BREAK
case 235:
YY_RULE_SETUP
#line 448 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
YY_BREAK
case 236:
YY_RULE_SETUP
#line 450 "./util/configlexer.lex"
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
YY_BREAK
case 237:
YY_RULE_SETUP
#line 451 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT) }
YY_BREAK
case 238:
YY_RULE_SETUP
#line 452 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT) }
YY_BREAK
case 239:
YY_RULE_SETUP
#line 453 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
YY_BREAK
case 240:
YY_RULE_SETUP
#line 454 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
YY_BREAK
case 241:
YY_RULE_SETUP
#line 455 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
YY_BREAK
case 242:
YY_RULE_SETUP
#line 456 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
YY_BREAK
case 243:
YY_RULE_SETUP
#line 457 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
YY_BREAK
case 244:
YY_RULE_SETUP
#line 458 "./util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
YY_BREAK
case 245:
YY_RULE_SETUP
#line 459 "./util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
YY_BREAK
case 246:
YY_RULE_SETUP
#line 460 "./util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
YY_BREAK
case 247:
YY_RULE_SETUP
#line 461 "./util/configlexer.lex"
{ YDVAR(1, VAR_LOW_RTT) }
YY_BREAK
case 248:
YY_RULE_SETUP
#line 462 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
YY_BREAK
case 249:
YY_RULE_SETUP
#line 463 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 250:
YY_RULE_SETUP
#line 464 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 251:
YY_RULE_SETUP
#line 465 "./util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 252:
YY_RULE_SETUP
#line 466 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
YY_BREAK
case 253:
YY_RULE_SETUP
#line 467 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP) }
YY_BREAK
case 254:
YY_RULE_SETUP
#line 468 "./util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
YY_BREAK
case 255:
YY_RULE_SETUP
#line 469 "./util/configlexer.lex"
{ YDVAR(0, VAR_DNSCRYPT) }
YY_BREAK
case 256:
YY_RULE_SETUP
#line 470 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
YY_BREAK
case 257:
YY_RULE_SETUP
#line 471 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
YY_BREAK
case 258:
YY_RULE_SETUP
#line 472 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
YY_BREAK
case 259:
YY_RULE_SETUP
#line 473 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
YY_BREAK
case 260:
YY_RULE_SETUP
#line 474 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
YY_BREAK
case 261:
YY_RULE_SETUP
#line 475 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
YY_BREAK
case 262:
YY_RULE_SETUP
#line 476 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
YY_BREAK
case 263:
YY_RULE_SETUP
#line 478 "./util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
YY_BREAK
case 264:
YY_RULE_SETUP
#line 480 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
YY_BREAK
case 265:
YY_RULE_SETUP
#line 481 "./util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
YY_BREAK
case 266:
YY_RULE_SETUP
#line 482 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
YY_BREAK
case 267:
YY_RULE_SETUP
#line 483 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
YY_BREAK
case 268:
YY_RULE_SETUP
#line 484 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
YY_BREAK
case 269:
YY_RULE_SETUP
#line 485 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
YY_BREAK
case 270:
YY_RULE_SETUP
#line 486 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
YY_BREAK
case 271:
YY_RULE_SETUP
#line 487 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
YY_BREAK
case 272:
YY_RULE_SETUP
#line 488 "./util/configlexer.lex"
{ YDVAR(0, VAR_CACHEDB) }
YY_BREAK
case 273:
YY_RULE_SETUP
#line 489 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
YY_BREAK
case 274:
YY_RULE_SETUP
#line 490 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
YY_BREAK
case 275:
YY_RULE_SETUP
#line 491 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
YY_BREAK
case 276:
YY_RULE_SETUP
#line 492 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
YY_BREAK
case 277:
YY_RULE_SETUP
#line 493 "./util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
YY_BREAK
case 278:
YY_RULE_SETUP
#line 494 "./util/configlexer.lex"
{ YDVAR(0, VAR_IPSET) }
YY_BREAK
case 279:
YY_RULE_SETUP
#line 495 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V4) }
YY_BREAK
case 280:
YY_RULE_SETUP
#line 496 "./util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V6) }
YY_BREAK
case 281:
YY_RULE_SETUP
#line 497 "./util/configlexer.lex"
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
YY_BREAK
case 282:
YY_RULE_SETUP
#line 498 "./util/configlexer.lex"
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
YY_BREAK
case 283:
/* rule 283 can match eol */
YY_RULE_SETUP
#line 499 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 284:
YY_RULE_SETUP
#line 502 "./util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 503 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 285:
YY_RULE_SETUP
#line 508 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 286:
/* rule 286 can match eol */
YY_RULE_SETUP
#line 509 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 287:
YY_RULE_SETUP
#line 511 "./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 288:
YY_RULE_SETUP
#line 523 "./util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 524 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 289:
YY_RULE_SETUP
#line 529 "./util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 290:
/* rule 290 can match eol */
YY_RULE_SETUP
#line 530 "./util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 291:
YY_RULE_SETUP
#line 532 "./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 292:
YY_RULE_SETUP
#line 544 "./util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 546 "./util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
case 293:
YY_RULE_SETUP
#line 550 "./util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 294:
/* rule 294 can match eol */
YY_RULE_SETUP
#line 551 "./util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 295:
YY_RULE_SETUP
#line 552 "./util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 296:
YY_RULE_SETUP
#line 553 "./util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
config_start_include_glob(yytext);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 558 "./util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 297:
YY_RULE_SETUP
#line 562 "./util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 298:
/* rule 298 can match eol */
YY_RULE_SETUP
#line 563 "./util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
case 299:
YY_RULE_SETUP
#line 565 "./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 571 "./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 300:
YY_RULE_SETUP
#line 582 "./util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
YY_BREAK
case 301:
YY_RULE_SETUP
#line 586 "./util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
case 302:
YY_RULE_SETUP
#line 590 "./util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
case 303:
YY_RULE_SETUP
#line 594 "./util/configlexer.lex"
ECHO;
YY_BREAK
#line 4812 "<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 user's declarations */
} /* 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)
{
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
char *source = (yytext_ptr);
int number_to_move, i;
int ret_val;
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1);
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
else
{
int num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
int yy_c_buf_p_offset =
(int) ((yy_c_buf_p) - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
int new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
yyrealloc( (void *) b->yy_ch_buf,
(yy_size_t) (b->yy_buf_size + 2) );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = NULL;
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_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
int 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, (yy_size_t) new_size );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
/* "- 2" to take care of EOB's */
YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
}
(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)
{
yy_state_type yy_current_state;
char *yy_cp;
yy_current_state = (yy_start);
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
{
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 >= 2988 )
yy_c = yy_meta[yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + 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 )
{
int yy_is_jam;
char *yy_cp = (yy_c_buf_p);
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 >= 2988 )
yy_c = yy_meta[yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
yy_is_jam = (yy_current_state == 2987);
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_UNPUT
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void)
#else
static int input (void)
#endif
{
int c;
*(yy_c_buf_p) = (yy_hold_char);
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
/* This was really a NUL. */
*(yy_c_buf_p) = '\0';
else
{ /* need more input */
int offset = (int) ((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 0;
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( (yy_size_t) (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; /* After all that talk, this was set to 1 anyways... */
(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. */
yy_size_t 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 NULL;
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 = (int) (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 = NULL;
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 (const char * yystr )
{
return yy_scan_bytes( yystr, (int) 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 (const char * yybytes, int _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
int i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = (yy_size_t) (_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 yynoreturn yy_fatal_error (const char* msg )
{
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.
*
*/
int yyget_leng (void)
{
return yyleng;
}
/** Get the current token.
*
*/
char *yyget_text (void)
{
return yytext;
}
/** Set the current line number.
* @param _line_number 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) = NULL;
(yy_buffer_stack_top) = 0;
(yy_buffer_stack_max) = 0;
(yy_c_buf_p) = NULL;
(yy_init) = 0;
(yy_start) = 0;
/* Defined in main.c */
#ifdef YY_STDINIT
yyin = stdin;
yyout = stdout;
#else
yyin = NULL;
yyout = NULL;
#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, const char * s2, int n )
{
int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (const char * s )
{
int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
void *yyalloc (yy_size_t size )
{
return 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 realloc(ptr, size);
}
void yyfree (void * ptr )
{
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"
#line 594 "./util/configlexer.lex"