src/sbin/unwind/libunbound/util/configlexer.c

6866 lines
266 KiB
C

#include "config.h"
#include "util/configyyrename.h"
#line 3 "<stdout>"
#define YY_INT_ALIGNED short int
/* $OpenBSD: configlexer.c,v 1.18 2024/04/13 13:58:35 florian Exp $ */
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 39
#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. */
/* $OpenBSD: configlexer.c,v 1.18 2024/04/13 13:58:35 florian Exp $ */
/* flex integer type definitions */
#ifndef FLEXINT_H
#define FLEXINT_H
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif
#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#endif /* ! C99 */
#endif /* ! FLEXINT_H */
#ifdef __cplusplus
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#else /* ! __cplusplus */
/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)
#define YY_USE_CONST
#endif /* defined (__STDC__) */
#endif /* ! __cplusplus */
#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index. If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
/* Enter a start condition. This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN (yy_start) = 1 + 2 *
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart(yyin )
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#endif
/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif
extern yy_size_t yyleng;
extern FILE *yyin, *yyout;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
#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.
*/
yy_size_t yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
yy_size_t yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
int yy_bs_lineno; /**< The line count. */
int yy_bs_column; /**< The column count. */
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;
static yy_size_t yy_n_chars; /* number of characters read into yy_ch_buf */
yy_size_t yyleng;
/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 0; /* whether we need to initialize */
static int yy_start = 0; /* start state number */
/* Flag which is used to allow yywrap()'s to do buffer switches
* instead of setting up a fresh yyin. A bit of a hack ...
*/
static int yy_did_buffer_switch_on_eof;
void yyrestart (FILE *input_file );
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
void yy_delete_buffer (YY_BUFFER_STATE b );
void yy_flush_buffer (YY_BUFFER_STATE b );
void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
void yypop_buffer_state (void );
static void yyensure_buffer_stack (void );
static void yy_load_buffer_state (void );
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len );
void *yyalloc (yy_size_t );
void *yyrealloc (void *,yy_size_t );
void yyfree (void * );
#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! YY_CURRENT_BUFFER ){ \
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! YY_CURRENT_BUFFER ){\
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
/* Begin user sect3 */
typedef unsigned char YY_CHAR;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
typedef int yy_state_type;
extern int yylineno;
int yylineno = 1;
extern char *yytext;
#define yytext_ptr yytext
static yy_state_type yy_get_previous_state (void );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
static int yy_get_next_buffer (void );
static void yy_fatal_error (yyconst char msg[] );
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION \
(yytext_ptr) = yy_bp; \
(yytext_ptr) -= (yy_more_len); \
yyleng = (size_t) (yy_cp - (yytext_ptr)); \
(yy_hold_char) = *yy_cp; \
*yy_cp = '\0'; \
(yy_c_buf_p) = yy_cp;
#define YY_NUM_RULES 385
#define YY_END_OF_BUFFER 386
/* This struct is not used in this scanner,
but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst flex_int16_t yy_accept[3816] =
{ 0,
1, 1, 359, 359, 363, 363, 367, 367, 371, 371,
1, 1, 375, 375, 379, 379, 386, 383, 1, 357,
357, 384, 2, 384, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 359, 360, 360, 361,
384, 363, 364, 364, 365, 384, 370, 367, 368, 368,
369, 384, 371, 372, 372, 373, 384, 382, 358, 2,
362, 384, 382, 378, 375, 376, 376, 377, 384, 379,
380, 380, 381, 384, 383, 0, 1, 2, 2, 2,
2, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
359, 0, 363, 0, 370, 0, 367, 371, 0, 382,
0, 2, 2, 382, 378, 0, 375, 379, 0, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 382, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 355, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 136, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 146, 383, 383, 383, 383, 383,
383, 383, 382, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 118,
383, 383, 354, 383, 383, 383, 383, 383, 383, 383,
383, 8, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 137, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 151, 383,
383, 382, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 345, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 382, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 71, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 267, 383, 14, 15, 383, 383,
20, 19, 383, 383, 246, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
144, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
244, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 3, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 382, 383, 383, 383, 383, 383,
383, 383, 383, 335, 383, 383, 383, 334, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 366, 383, 383, 383, 383, 383, 383, 383, 383,
70, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 74, 383,
304, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 346, 347, 383, 383, 383, 383, 383, 383,
383, 383, 383, 75, 383, 383, 145, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 140, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 233, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 22, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 172, 383, 383, 383, 383, 383, 382, 366, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 116, 383, 383, 383, 383, 383, 383,
383, 383, 312, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 16, 383, 383, 383, 383, 383, 383,
383, 383, 200, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 171, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 115, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 37,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 38, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 72,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
143, 383, 383, 383, 382, 383, 383, 383, 383, 383,
383, 135, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 73,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 271, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 201, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
60, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
290, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 65, 383, 66, 383, 383, 383, 383, 383,
383, 119, 383, 120, 383, 383, 383, 383, 383, 117,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 7, 383, 383, 383, 383, 382, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
256, 383, 383, 383, 383, 383, 175, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 272, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 51, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 61, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 224, 383, 223, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 17,
18, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 76, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
232, 383, 383, 383, 383, 383, 383, 383, 122, 383,
121, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 214, 383, 383,
383, 383, 383, 383, 383, 383, 383, 152, 383, 383,
383, 382, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 110, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 97, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 245, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 102, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 69, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 217, 218, 383, 383, 383, 306, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 6, 383, 383, 383, 383, 383, 383,
383, 325, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 310, 383, 383, 383, 383, 383, 383, 383,
336, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 48, 383, 383, 383,
383, 383, 50, 383, 383, 383, 98, 383, 383, 383,
383, 383, 58, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 382, 383, 210, 383, 383, 383,
147, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 237, 383, 383, 211, 383, 383, 383,
383, 252, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 59, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 149, 128, 383, 129, 383, 383,
383, 383, 127, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 168, 383, 383, 56, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 288, 383, 383,
383, 383, 383, 383, 383, 383, 383, 212, 383, 383,
383, 383, 383, 222, 215, 383, 221, 383, 383, 383,
383, 383, 383, 383, 383, 251, 383, 383, 383, 383,
383, 383, 255, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 114, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 141, 383, 383, 383,
383, 383, 383, 383, 383, 67, 383, 383, 383, 383,
31, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 21, 383, 383, 383, 383, 383, 383,
383, 32, 41, 383, 180, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 208,
383, 383, 382, 383, 383, 383, 383, 350, 383, 383,
84, 86, 383, 383, 383, 383, 383, 383, 383, 383,
351, 383, 383, 383, 383, 383, 383, 383, 314, 383,
383, 383, 383, 268, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 130, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
167, 383, 52, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 262, 383, 383, 383, 383, 383, 383,
383, 383, 329, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 174, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 323, 383,
383, 383, 383, 243, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 342, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 193, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
123, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 187, 383, 202, 383, 383, 383,
383, 383, 383, 383, 382, 383, 155, 383, 383, 383,
383, 383, 383, 109, 383, 383, 383, 383, 235, 383,
383, 383, 383, 383, 383, 383, 253, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 280, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 148, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 191, 383, 383, 383, 383, 383,
383, 383, 87, 383, 88, 383, 383, 383, 383, 383,
265, 383, 383, 383, 383, 383, 68, 332, 383, 383,
383, 383, 383, 96, 203, 383, 225, 383, 257, 383,
383, 216, 307, 383, 383, 383, 383, 302, 383, 383,
383, 80, 383, 205, 383, 383, 383, 383, 383, 383,
9, 383, 383, 383, 383, 383, 113, 383, 383, 383,
383, 383, 383, 294, 383, 383, 383, 383, 383, 383,
234, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 382, 383, 383,
383, 383, 190, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 192, 176, 383, 313, 383, 383,
383, 383, 383, 279, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 247, 383, 383, 383, 383,
383, 383, 305, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 173, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 333, 383, 204, 383, 383, 383, 383,
383, 383, 383, 383, 383, 79, 81, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 112, 383, 383,
383, 383, 383, 383, 292, 383, 383, 383, 383, 383,
383, 383, 309, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 239, 383, 39, 33,
35, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 40, 383, 34, 36, 383, 42,
383, 383, 383, 383, 383, 383, 383, 108, 383, 186,
383, 383, 383, 383, 383, 383, 383, 382, 383, 383,
383, 383, 383, 383, 337, 383, 383, 383, 383, 383,
241, 238, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 78, 383, 383, 383, 150, 383, 131, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 169,
53, 383, 383, 383, 374, 13, 383, 383, 383, 383,
383, 383, 383, 156, 383, 383, 383, 383, 383, 383,
383, 383, 327, 383, 330, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 12, 383,
383, 23, 383, 383, 383, 383, 383, 383, 383, 298,
383, 383, 344, 383, 383, 383, 383, 311, 383, 383,
383, 383, 82, 383, 249, 383, 383, 383, 383, 383,
240, 383, 383, 383, 383, 77, 383, 383, 383, 383,
383, 383, 24, 383, 383, 49, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 185, 184,
383, 383, 374, 383, 383, 383, 383, 383, 383, 383,
383, 383, 242, 236, 383, 254, 383, 383, 315, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 198, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 89, 383, 383, 383,
383, 383, 383, 383, 383, 293, 383, 383, 383, 383,
220, 383, 383, 383, 383, 383, 383, 248, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 300, 383,
383, 383, 338, 383, 340, 339, 182, 383, 383, 383,
83, 383, 383, 383, 383, 194, 383, 383, 383, 383,
383, 124, 126, 125, 383, 383, 383, 26, 383, 383,
177, 383, 179, 383, 226, 383, 383, 383, 383, 183,
383, 383, 383, 383, 258, 383, 383, 383, 383, 383,
383, 383, 158, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 270, 383, 383, 383, 383,
383, 383, 383, 352, 383, 28, 383, 308, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 94, 227, 383, 383,
264, 383, 383, 383, 291, 383, 331, 383, 219, 383,
383, 303, 383, 383, 383, 301, 62, 383, 383, 383,
383, 383, 383, 383, 4, 383, 383, 383, 383, 383,
139, 383, 157, 383, 383, 383, 199, 30, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 261, 43, 44,
383, 383, 383, 383, 383, 383, 383, 316, 383, 383,
383, 383, 383, 383, 383, 278, 383, 383, 383, 383,
383, 383, 383, 383, 230, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
93, 92, 383, 383, 63, 383, 383, 289, 297, 383,
266, 383, 383, 383, 383, 383, 11, 383, 383, 383,
383, 356, 383, 383, 383, 383, 383, 138, 383, 383,
383, 383, 383, 383, 228, 99, 383, 383, 46, 383,
383, 383, 383, 383, 383, 383, 383, 189, 383, 383,
383, 383, 383, 383, 383, 160, 383, 383, 383, 383,
269, 383, 383, 383, 383, 383, 277, 383, 383, 383,
383, 153, 383, 383, 383, 132, 134, 133, 383, 383,
383, 101, 105, 100, 383, 170, 383, 383, 383, 383,
90, 383, 263, 299, 383, 383, 383, 383, 383, 383,
10, 383, 383, 383, 383, 383, 295, 343, 383, 383,
383, 383, 383, 383, 383, 383, 349, 45, 383, 383,
383, 383, 383, 188, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 106,
104, 383, 383, 57, 383, 383, 91, 383, 328, 383,
383, 383, 383, 25, 383, 383, 383, 383, 383, 213,
383, 383, 341, 383, 383, 383, 383, 229, 383, 383,
383, 383, 383, 383, 383, 383, 383, 209, 383, 383,
178, 85, 383, 383, 383, 383, 383, 317, 383, 383,
383, 383, 383, 383, 383, 274, 383, 383, 273, 154,
383, 383, 103, 383, 54, 383, 383, 161, 162, 165,
166, 163, 164, 95, 326, 383, 383, 296, 142, 383,
383, 383, 383, 27, 383, 181, 383, 383, 383, 383,
207, 383, 260, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 196, 195, 231, 47, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 324, 383, 383, 383, 383, 111, 383,
259, 383, 287, 321, 383, 383, 383, 383, 383, 383,
383, 383, 383, 383, 383, 353, 383, 107, 55, 64,
5, 383, 383, 250, 383, 383, 322, 383, 383, 383,
383, 383, 383, 383, 383, 383, 275, 29, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
276, 383, 383, 383, 159, 383, 383, 383, 383, 383,
383, 383, 383, 197, 383, 206, 383, 383, 383, 383,
383, 383, 383, 383, 383, 318, 383, 383, 383, 383,
383, 383, 383, 383, 383, 383, 383, 383, 383, 383,
383, 383, 383, 348, 383, 383, 283, 383, 383, 383,
383, 383, 319, 383, 383, 383, 383, 383, 383, 320,
383, 383, 383, 281, 383, 284, 285, 383, 383, 383,
383, 383, 282, 286, 0
} ;
static yyconst flex_int32_t yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 4, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 1, 5, 6, 1, 1, 1, 7, 1,
1, 1, 1, 1, 8, 1, 1, 1, 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 yyconst flex_int32_t 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 yyconst flex_int16_t yy_base[3834] =
{ 0,
0, 0, 38, 41, 44, 46, 59, 65, 71, 77,
90, 112, 96, 118, 124, 136, 3191, 3104, 81, 7436,
7436, 7436, 129, 52, 137, 63, 130, 159, 70, 132,
134, 146, 57, 88, 76, 166, 177, 95, 199, 155,
187, 201, 210, 172, 156, 148, 2859, 7436, 7436, 7436,
107, 2648, 7436, 7436, 7436, 190, 2503, 2468, 7436, 7436,
7436, 239, 2382, 7436, 7436, 7436, 203, 2265, 7436, 243,
7436, 247, 212, 2082, 2052, 7436, 7436, 7436, 251, 1980,
7436, 7436, 7436, 228, 1711, 257, 261, 0, 264, 0,
0, 258, 262, 260, 195, 170, 251, 265, 269, 92,
270, 259, 275, 276, 277, 278, 288, 284, 286, 283,
293, 179, 290, 292, 302, 306, 307, 310, 315, 314,
318, 317, 325, 327, 328, 319, 335, 331, 336, 139,
337, 342, 347, 350, 351, 353, 339, 360, 352, 363,
356, 364, 366, 370, 374, 383, 379, 380, 389, 378,
392, 225, 393, 395, 400, 399, 402, 403, 405, 408,
1561, 425, 1340, 427, 1244, 435, 1182, 1079, 439, 967,
443, 447, 0, 424, 937, 451, 920, 375, 455, 443,
455, 432, 451, 452, 453, 454, 215, 457, 456, 458,
459, 462, 460, 480, 467, 472, 482, 419, 486, 487,
493, 478, 503, 485, 495, 505, 499, 498, 515, 512,
514, 513, 517, 520, 521, 470, 522, 523, 539, 525,
524, 526, 547, 548, 552, 556, 534, 561, 566, 532,
568, 564, 565, 573, 570, 577, 576, 585, 580, 581,
572, 582, 584, 586, 590, 589, 591, 594, 599, 595,
600, 613, 604, 601, 617, 605, 622, 615, 618, 630,
608, 626, 623, 632, 635, 643, 644, 636, 645, 640,
537, 646, 649, 656, 659, 658, 641, 657, 654, 661,
663, 665, 667, 668, 670, 679, 682, 678, 681, 690,
687, 689, 688, 692, 693, 696, 669, 705, 695, 708,
711, 700, 709, 713, 715, 717, 719, 718, 722, 723,
728, 724, 7436, 731, 730, 735, 736, 745, 742, 740,
747, 754, 755, 750, 751, 756, 753, 757, 759, 760,
761, 764, 767, 771, 768, 773, 775, 788, 781, 779,
794, 780, 790, 792, 815, 796, 804, 795, 819, 829,
805, 824, 801, 825, 816, 826, 830, 835, 837, 810,
838, 839, 849, 851, 852, 853, 854, 855, 857, 856,
865, 860, 7436, 862, 864, 881, 868, 878, 885, 870,
886, 891, 887, 892, 901, 898, 899, 913, 935, 900,
902, 903, 906, 911, 7436, 924, 915, 959, 917, 919,
945, 940, 909, 933, 942, 941, 947, 955, 963, 960,
948, 965, 976, 964, 977, 982, 983, 984, 985, 988,
999, 991, 994, 995, 996, 1006, 1001, 1004, 1008, 1018,
1005, 1009, 1011, 1012, 1017, 1019, 1030, 1034, 1038, 1039,
1022, 1032, 1033, 1024, 1041, 1046, 1044, 1067, 1055, 1047,
1045, 1057, 1062, 1069, 1065, 1068, 1073, 1075, 1082, 1070,
1091, 1076, 1094, 1095, 1083, 1097, 1105, 1101, 1103, 1102,
1104, 1108, 1109, 1110, 1112, 1115, 1116, 1118, 1120, 1121,
1122, 1126, 1128, 1129, 1136, 1133, 1139, 1143, 1140, 7436,
1151, 1146, 7436, 1148, 1149, 1150, 1152, 1153, 1154, 1155,
1156, 7436, 1158, 1163, 1164, 1172, 1165, 1173, 1177, 1188,
1180, 1183, 1187, 1189, 1190, 1191, 1193, 1200, 1196, 1205,
1207, 1199, 1209, 1210, 1203, 1211, 1212, 1217, 1218, 1221,
1219, 1220, 1223, 1240, 7436, 1227, 1228, 1230, 1234, 1231,
1237, 1251, 1253, 1263, 1243, 1264, 1255, 1252, 1276, 1262,
1275, 1279, 1265, 1273, 1283, 1278, 1285, 1280, 1287, 1290,
1296, 1292, 1294, 1301, 1298, 1300, 1302, 1304, 7436, 1309,
1308, 1320, 1321, 1313, 1314, 1322, 1323, 1332, 1327, 1328,
1330, 1331, 1333, 1336, 1339, 1349, 1351, 1338, 1358, 1359,
1343, 1354, 1356, 1361, 1362, 1363, 1364, 1365, 1375, 1371,
1378, 1386, 1389, 1388, 1391, 1393, 1400, 1402, 1379, 1395,
1398, 1403, 1399, 1405, 1407, 1408, 1409, 1412, 1413, 1368,
1423, 1418, 1421, 1419, 1422, 1420, 1428, 1426, 1430, 1431,
1433, 1439, 1440, 1448, 1444, 1443, 1450, 1445, 1446, 1454,
1459, 1464, 1465, 1466, 1456, 7436, 1473, 1468, 1476, 1474,
1482, 1481, 1484, 1483, 1489, 1485, 1490, 1491, 1493, 1492,
1495, 1499, 1496, 1502, 1506, 1509, 1510, 1511, 1513, 1522,
1518, 1514, 1531, 1519, 1530, 1532, 1521, 1534, 1536, 1538,
1540, 1547, 1544, 1551, 1552, 1542, 1553, 1546, 1566, 1556,
1557, 1563, 1577, 1554, 1572, 1574, 1564, 1585, 1580, 1588,
1589, 1596, 1591, 1593, 1600, 1601, 1597, 1576, 1604, 1609,
1605, 1606, 1610, 1612, 1613, 1614, 1621, 1616, 1618, 1625,
1629, 1617, 1619, 1633, 1631, 1643, 1639, 1641, 1642, 1647,
1648, 1649, 1652, 1653, 1651, 1657, 1658, 1660, 1661, 1665,
1650, 1662, 1674, 1672, 1673, 1682, 1681, 1683, 1684, 1685,
1689, 1687, 1691, 1690, 1698, 1701, 1703, 1699, 1705, 1707,
1709, 1710, 1713, 1720, 1721, 1715, 1724, 1727, 1729, 1730,
1731, 1732, 1733, 1736, 1739, 1743, 1744, 1747, 7436, 1750,
1757, 1752, 1753, 1755, 1758, 1760, 1761, 1768, 1764, 1767,
1763, 1765, 1766, 1791, 7436, 1777, 7436, 7436, 1778, 1780,
7436, 7436, 1789, 1776, 7436, 1783, 1788, 1795, 1799, 1802,
1807, 1816, 1801, 1809, 1814, 1818, 1825, 1839, 1822, 1821,
1823, 1829, 1820, 1830, 1832, 1845, 1834, 1856, 1833, 1837,
1784, 1865, 1863, 1866, 1868, 1869, 1871, 1873, 1876, 1875,
1882, 1884, 1877, 1885, 1831, 1887, 1890, 1888, 1891, 1893,
1894, 1897, 1898, 1895, 1900, 1901, 1855, 1905, 1903, 1921,
7436, 1917, 1924, 1916, 1906, 1919, 1932, 1928, 1935, 1927,
1931, 1936, 1941, 1943, 1938, 1945, 1946, 1947, 1950, 1948,
1949, 1957, 1951, 1959, 1960, 1963, 1962, 1972, 1965, 1968,
7436, 1975, 1976, 1974, 1977, 1981, 1979, 1990, 1989, 1982,
1978, 1991, 1995, 2005, 1997, 2001, 2006, 2007, 2009, 2010,
2012, 2013, 7436, 2015, 2020, 2014, 2022, 2023, 2028, 2025,
2029, 2031, 2032, 2037, 2036, 2038, 2039, 2041, 2054, 2047,
2043, 2050, 2051, 2058, 2061, 2063, 2062, 2064, 2074, 2065,
2068, 2077, 2075, 2079, 2078, 2080, 2081, 2083, 2085, 2096,
2097, 2092, 2099, 2094, 2089, 2107, 2110, 2111, 2112, 2113,
2114, 2116, 2117, 2126, 2127, 2129, 2122, 2123, 2130, 2128,
2135, 2138, 2139, 2142, 2147, 2149, 2150, 2151, 2143, 2153,
2155, 2157, 2159, 7436, 2161, 2163, 2166, 7436, 2168, 2167,
2169, 2191, 2171, 2174, 2179, 2182, 2189, 2184, 2199, 2186,
2192, 2193, 2205, 2214, 2211, 2210, 2217, 2215, 2222, 2216,
2218, 2225, 2232, 2226, 2229, 2235, 2236, 2234, 2245, 2248,
2252, 2254, 2256, 2255, 2238, 2257, 2259, 2278, 2258, 2261,
2267, 2262, 2263, 2268, 2272, 2269, 2271, 2275, 2282, 2288,
2290, 2291, 2294, 2293, 2295, 2296, 2300, 2302, 2309, 2310,
2303, 7436, 2317, 2316, 2315, 2321, 2322, 2330, 2327, 2325,
7436, 2328, 2329, 2331, 2339, 2336, 2340, 2341, 2342, 2343,
2348, 2350, 2351, 2352, 2355, 2354, 2356, 2371, 7436, 2353,
7436, 2358, 2366, 2367, 2374, 2381, 2368, 2376, 2377, 2378,
2380, 2383, 7436, 7436, 2384, 2391, 2394, 2397, 2405, 2406,
2401, 2402, 2407, 7436, 2408, 2415, 7436, 2412, 2404, 2418,
2411, 2422, 2423, 2426, 2427, 2428, 2429, 2436, 2431, 2438,
2434, 2435, 2443, 7436, 2446, 2450, 2437, 2454, 2455, 2448,
2452, 2462, 2463, 2465, 7436, 2466, 2469, 2470, 2471, 2479,
2475, 2478, 2480, 2481, 2482, 2486, 2488, 2489, 2490, 2495,
2497, 2500, 2502, 2501, 2505, 2517, 2513, 2520, 7436, 2516,
2512, 2499, 2528, 2524, 2526, 2523, 2527, 2533, 2531, 2515,
2537, 2539, 2535, 2543, 2541, 2544, 2545, 2553, 2557, 2550,
2555, 2562, 2552, 2554, 2558, 2563, 2573, 2566, 2567, 2572,
2574, 7436, 2575, 2578, 2579, 2580, 2583, 2582, 280, 2586,
2589, 2593, 2590, 2592, 2596, 2598, 2603, 2612, 2613, 2609,
2610, 2614, 2615, 2616, 2608, 2618, 2620, 2627, 2628, 2630,
2629, 2631, 2634, 7436, 2638, 2635, 2639, 2640, 2641, 2644,
2645, 2652, 7436, 2651, 2659, 2662, 2664, 2654, 2669, 2670,
2672, 2674, 2675, 7436, 2676, 2677, 2678, 2685, 2682, 2680,
2686, 2688, 7436, 2699, 2695, 2701, 2689, 2703, 2710, 2693,
2704, 2705, 2711, 2712, 2713, 2716, 2717, 2718, 2721, 2722,
2725, 2726, 2727, 2739, 2732, 2734, 2735, 2736, 2743, 2745,
2746, 2747, 2748, 2755, 2750, 7436, 2759, 2756, 2760, 2758,
2761, 2764, 2768, 2767, 2783, 2769, 2775, 2778, 2784, 2792,
2786, 2787, 2804, 2794, 2802, 2806, 2803, 2814, 2813, 2816,
2819, 2809, 2822, 2824, 2817, 2825, 2832, 2834, 2833, 2831,
2835, 2839, 2776, 2838, 2847, 2842, 2851, 2849, 2846, 2852,
2853, 2858, 2860, 2875, 2880, 2857, 7436, 2866, 2864, 2861,
2872, 2882, 2889, 2884, 2885, 2886, 2887, 2895, 2896, 2897,
2898, 2899, 2906, 2901, 2903, 2904, 2907, 2914, 2910, 2911,
2918, 2922, 2923, 2926, 2928, 2929, 2933, 2930, 2934, 7436,
2938, 2937, 2939, 2943, 2946, 2947, 2950, 2953, 2951, 2955,
2957, 2959, 2961, 2962, 2964, 2963, 2965, 2974, 2970, 2977,
2969, 2972, 7436, 2984, 2973, 2979, 2989, 2983, 2991, 2993,
2995, 2999, 2998, 3004, 3006, 3007, 3008, 3009, 3010, 7436,
3018, 3019, 3015, 3017, 3027, 3024, 3026, 3028, 3030, 3031,
7436, 3032, 3034, 3036, 3035, 3038, 2172, 3047, 3048, 3043,
3044, 7436, 3059, 3040, 3056, 3063, 3061, 3062, 3064, 3065,
3066, 3068, 3069, 3071, 3070, 3072, 3080, 3073, 3077, 7436,
3084, 3085, 3092, 3087, 3093, 3098, 3095, 3097, 3100, 3108,
3101, 3117, 3107, 7436, 3120, 3122, 3123, 3130, 3125, 3111,
3127, 3128, 3131, 3135, 3132, 3138, 3141, 3139, 7436, 3142,
3143, 3147, 3148, 3151, 3152, 3153, 3160, 3157, 3162, 3163,
3166, 3164, 3168, 3167, 3171, 3174, 3184, 3173, 3185, 3175,
3188, 3192, 3187, 3194, 3190, 3200, 3204, 3211, 3195, 3206,
3213, 3208, 3215, 3216, 3217, 3224, 3225, 3226, 3227, 3229,
7436, 3233, 3234, 3235, 3221, 3236, 3240, 3241, 3243, 3245,
3242, 3247, 3252, 3253, 3258, 3265, 3269, 3266, 3260, 3271,
3273, 3274, 3275, 3276, 3278, 3279, 3282, 3289, 3285, 3286,
3287, 3288, 3291, 3301, 3294, 3296, 3311, 3306, 3309, 3308,
3310, 3312, 3314, 3316, 3298, 3320, 3321, 3323, 3315, 3324,
3328, 3337, 3339, 3341, 3344, 3332, 3342, 3347, 3349, 3352,
7436, 3350, 3360, 3359, 3351, 3353, 3361, 3370, 3367, 3380,
3375, 3365, 3382, 3379, 3381, 3383, 3386, 3389, 3388, 3391,
3398, 3394, 7436, 3395, 7436, 3402, 3399, 3400, 3403, 3414,
3401, 7436, 3410, 7436, 3412, 3417, 3418, 3419, 3422, 7436,
3423, 3424, 3427, 3428, 3429, 3430, 3425, 3432, 3433, 3436,
3442, 3450, 3454, 3439, 3443, 3451, 3446, 3457, 3458, 3460,
3462, 3463, 3464, 3470, 3472, 3465, 3481, 3467, 3473, 3475,
3483, 3478, 3488, 7436, 3491, 3495, 3494, 3496, 3484, 3499,
3502, 3503, 3504, 3505, 3506, 3508, 3514, 3511, 3512, 3510,
3521, 3524, 3534, 3525, 3526, 3535, 3542, 3527, 3543, 3541,
7436, 3538, 3549, 3544, 3550, 3551, 7436, 3553, 3554, 3555,
3559, 3561, 3562, 3564, 3565, 3566, 3570, 3571, 3572, 3581,
3582, 3585, 3574, 7436, 3586, 3589, 3573, 3597, 3602, 3591,
3609, 3610, 3606, 3607, 3612, 3620, 3616, 3605, 3617, 3619,
3622, 3623, 3630, 3631, 3633, 3629, 3643, 3628, 3636, 3640,
3644, 3632, 3645, 3646, 3647, 3648, 3653, 3655, 3656, 3654,
3652, 3658, 3657, 3660, 3664, 7436, 3663, 3673, 3674, 3682,
3678, 3680, 3681, 3683, 3686, 3690, 3684, 7436, 3695, 3688,
3699, 3700, 3702, 3705, 3692, 3709, 3710, 3713, 3711, 3714,
3715, 3716, 7436, 3719, 7436, 3717, 3718, 3737, 3730, 3742,
3736, 3731, 3744, 3746, 3725, 3750, 3751, 3752, 3755, 3753,
3754, 3760, 3761, 3762, 3763, 3764, 3765, 3766, 3778, 3768,
3780, 3770, 3781, 3783, 3784, 3786, 3797, 3788, 3792, 7436,
7436, 3785, 3795, 3799, 3803, 3805, 3807, 3814, 3808, 3817,
3820, 3811, 3818, 3822, 3824, 3833, 7436, 3830, 3831, 3828,
3834, 3835, 3847, 3837, 3852, 3854, 3840, 3853, 3862, 3857,
7436, 3838, 3859, 3860, 3870, 3865, 3866, 3877, 7436, 3868,
7436, 3861, 3872, 3873, 3881, 3882, 3884, 3883, 3885, 3886,
3888, 3890, 3898, 3901, 3906, 3905, 3903, 3910, 3907, 3911,
3912, 3914, 3915, 3923, 3918, 3920, 3921, 7436, 3925, 3922,
3926, 3932, 3933, 3938, 3941, 3935, 3934, 7436, 3945, 3949,
3947, 3948, 3951, 3955, 3952, 3961, 3959, 3963, 3964, 3965,
3967, 3968, 3970, 3972, 7436, 3975, 3976, 3983, 3981, 3984,
3985, 3987, 3995, 3988, 3990, 7436, 3999, 4003, 4000, 4007,
4006, 4010, 4011, 4012, 4014, 4016, 4017, 4018, 4019, 4020,
4021, 4027, 4026, 4023, 4031, 4029, 4032, 4042, 4033, 4046,
4056, 4043, 7436, 4051, 4052, 4054, 4058, 4055, 4057, 4062,
4060, 4066, 4069, 4063, 4080, 4081, 4070, 4072, 4077, 4085,
4086, 4094, 4089, 7436, 4101, 4087, 4102, 4097, 4099, 4100,
4103, 4108, 4109, 4110, 4112, 4113, 4114, 4116, 4117, 4118,
4126, 4130, 4127, 4123, 4132, 4133, 4142, 4134, 4137, 4138,
4144, 7436, 4161, 4148, 4151, 4156, 4152, 4159, 4170, 4167,
4165, 4147, 4172, 4169, 4177, 4173, 4175, 4179, 4182, 4184,
4186, 7436, 7436, 4188, 4189, 4190, 7436, 4191, 4192, 4202,
4198, 4194, 4201, 4204, 4205, 4207, 4209, 4211, 4208, 4218,
4224, 4212, 4221, 7436, 4231, 4227, 4235, 4228, 4233, 4236,
4239, 7436, 4242, 4249, 4245, 4246, 4247, 4250, 4252, 4254,
4255, 4257, 4259, 4253, 4260, 4263, 4274, 4266, 4276, 4267,
4275, 4277, 7436, 4279, 4280, 4283, 4285, 4282, 4289, 4292,
7436, 4291, 4294, 4295, 4303, 4304, 4301, 4305, 4311, 4312,
4317, 4318, 4319, 4321, 4320, 4322, 4324, 4326, 4335, 4327,
4332, 4331, 4330, 4338, 4348, 4350, 7436, 4351, 4341, 4353,
4356, 4359, 7436, 4363, 4370, 4371, 7436, 4372, 4355, 4374,
4368, 4382, 7436, 4375, 4384, 4377, 4385, 4367, 4396, 4378,
4397, 4394, 4383, 4395, 4398, 4399, 7436, 4401, 4404, 4405,
7436, 4407, 4409, 4416, 4419, 4421, 4414, 4408, 4430, 4425,
4422, 4426, 4433, 7436, 4434, 4436, 7436, 4437, 4441, 4438,
4443, 7436, 4446, 4447, 4448, 4452, 4454, 4455, 4456, 4462,
4467, 4449, 4464, 4457, 4468, 4470, 4471, 4478, 4477, 4479,
4480, 4482, 7436, 4485, 4481, 4483, 4484, 4489, 4490, 4494,
4500, 4501, 4502, 4504, 7436, 7436, 4506, 7436, 4508, 4510,
4513, 4514, 7436, 4516, 4518, 4521, 4519, 4523, 4525, 4520,
4528, 4538, 4533, 7436, 4540, 4542, 7436, 4535, 4544, 4551,
4547, 4548, 4549, 4552, 4553, 4556, 4559, 4562, 4563, 4564,
4566, 4560, 4567, 4568, 4588, 4569, 4591, 7436, 4570, 4573,
4577, 4585, 4581, 4595, 4598, 4600, 4602, 7436, 4603, 4604,
4607, 4609, 4611, 7436, 7436, 4612, 7436, 4613, 4617, 4616,
4627, 4619, 4620, 4630, 4623, 7436, 4632, 4633, 4636, 4637,
4639, 4646, 7436, 4645, 4649, 4641, 4642, 4651, 4658, 4656,
4653, 4655, 4670, 4657, 7436, 4662, 4668, 4672, 4674, 4675,
4677, 4678, 4679, 4686, 4685, 4687, 4683, 4697, 4692, 4695,
4698, 4702, 4704, 4706, 4707, 4696, 7436, 4709, 4711, 4716,
4717, 4725, 4721, 4722, 4727, 7436, 4728, 4730, 4729, 4732,
7436, 4735, 4736, 4740, 4746, 4743, 4747, 4750, 4751, 4752,
4755, 4757, 4753, 7436, 4754, 4759, 4760, 4770, 4773, 4774,
4763, 7436, 7436, 4776, 7436, 4779, 4764, 4784, 4786, 4788,
4789, 4791, 4792, 4794, 4796, 4797, 4802, 4800, 4807, 7436,
4803, 4815, 4808, 4818, 4825, 4827, 4823, 7436, 4824, 4811,
7436, 7436, 4810, 4834, 4835, 4829, 4840, 4841, 4837, 4844,
7436, 4851, 4843, 4847, 4853, 4856, 4859, 4863, 7436, 4865,
4846, 4867, 4848, 7436, 4860, 4870, 4872, 4873, 4874, 4876,
4877, 4878, 4881, 4880, 4883, 4887, 4884, 4892, 4889, 4890,
4896, 4900, 4901, 4903, 4904, 4905, 4910, 7436, 4911, 4906,
4913, 4915, 4918, 4921, 4924, 4926, 4927, 4928, 4935, 4936,
7436, 4922, 7436, 4931, 4938, 4940, 4948, 4933, 4955, 4951,
4957, 4958, 4942, 4959, 4961, 4962, 4965, 4967, 4976, 4968,
4970, 4977, 4978, 7436, 4981, 4986, 4984, 4988, 4991, 4993,
4995, 4996, 7436, 4997, 4998, 5004, 5005, 5007, 5009, 5010,
5012, 5013, 5015, 5019, 5016, 5023, 5026, 5027, 5028, 5032,
5030, 5036, 5038, 5020, 7436, 5040, 5043, 5044, 5049, 5046,
5050, 5051, 5053, 5058, 5061, 5054, 5062, 5065, 7436, 5066,
5068, 5070, 5078, 7436, 5071, 5075, 5076, 5079, 5080, 5083,
5085, 5088, 5092, 5086, 5097, 7436, 5103, 5089, 5100, 5105,
5095, 5106, 5108, 5110, 5114, 5111, 5116, 5122, 7436, 5127,
5117, 5126, 5128, 5130, 5132, 5134, 5137, 5139, 5138, 5141,
7436, 5144, 5145, 5146, 5153, 5160, 5161, 5152, 5156, 5165,
5164, 5170, 5162, 5163, 5174, 5166, 5172, 5179, 5180, 5182,
5178, 5190, 5199, 5194, 7436, 5183, 7436, 5185, 5195, 5196,
5206, 5201, 5207, 5208, 5212, 5211, 7436, 5213, 5214, 5219,
5220, 5215, 5221, 7436, 5222, 5223, 5225, 5232, 7436, 5238,
5237, 5227, 5236, 5246, 5250, 5251, 7436, 5254, 5255, 5256,
5263, 5265, 5260, 5267, 5262, 5270, 5268, 5264, 5272, 5273,
5281, 5279, 5277, 7436, 5283, 5285, 5290, 5292, 5294, 5286,
5296, 5284, 5298, 5301, 5303, 7436, 5306, 5307, 5308, 5309,
5310, 5313, 5312, 5314, 5321, 5320, 5322, 5330, 5318, 5325,
5333, 5334, 5335, 5338, 7436, 5341, 5342, 5340, 5349, 5354,
5347, 5357, 7436, 5351, 7436, 5350, 5361, 5362, 5365, 5366,
7436, 5369, 5228, 5370, 5371, 5376, 7436, 7436, 5374, 5385,
5380, 5382, 5384, 7436, 7436, 5387, 7436, 5383, 7436, 5388,
5389, 7436, 7436, 5390, 5391, 5394, 5398, 7436, 5399, 5403,
5407, 7436, 5410, 7436, 5420, 5396, 5421, 5411, 5413, 5418,
7436, 5415, 5425, 5424, 5426, 5430, 7436, 5431, 5432, 5433,
5443, 5440, 5442, 7436, 5445, 5446, 5448, 5451, 5452, 5455,
7436, 5453, 5460, 5456, 5462, 5465, 5463, 5464, 5466, 5467,
5475, 5478, 5477, 5479, 5483, 5486, 5485, 5487, 5493, 5495,
5497, 5488, 5504, 5498, 5505, 5507, 5511, 5513, 5509, 5515,
5517, 5518, 5501, 5520, 5524, 5525, 5527, 5531, 5528, 5533,
5534, 5540, 5537, 5541, 5543, 5542, 5545, 5551, 5554, 5553,
5555, 5556, 5557, 5558, 5559, 5564, 5566, 5560, 5574, 5569,
5577, 5579, 7436, 5567, 5571, 5584, 5580, 5587, 5588, 5591,
5595, 5598, 5605, 5606, 7436, 7436, 5608, 7436, 5610, 5599,
5601, 5613, 5614, 7436, 5615, 5616, 5618, 5619, 5621, 5622,
5623, 5624, 5620, 5627, 5636, 7436, 5643, 5649, 5641, 5628,
5651, 5653, 7436, 5654, 5657, 5646, 5658, 5659, 5626, 5665,
5661, 5666, 5662, 5667, 5668, 5674, 5670, 5683, 5671, 5675,
5688, 7436, 5690, 5696, 5698, 5685, 5687, 5697, 5699, 5700,
5701, 5708, 5702, 5704, 5709, 5710, 5715, 5711, 5720, 5717,
5728, 5730, 5734, 7436, 5716, 7436, 5736, 5723, 5737, 5738,
5739, 5740, 5741, 5743, 5747, 7436, 7436, 5748, 5751, 5750,
5755, 5752, 5756, 5762, 5759, 5757, 5771, 7436, 5764, 5765,
5776, 5773, 5784, 5778, 7436, 5781, 5786, 5787, 5789, 5790,
5792, 5794, 7436, 5788, 5795, 5797, 5802, 5806, 5799, 5810,
5811, 5813, 5814, 5815, 5817, 5820, 7436, 5821, 7436, 7436,
7436, 5823, 5825, 5826, 5829, 5831, 5832, 5833, 5838, 5840,
5841, 5836, 5839, 5843, 7436, 5852, 7436, 7436, 5855, 7436,
5856, 5853, 5857, 5863, 5854, 5865, 5864, 7436, 5866, 7436,
5870, 5877, 5868, 5879, 5885, 5886, 5869, 5890, 5880, 5892,
5876, 5893, 5901, 5898, 7436, 5899, 5902, 5904, 5906, 5908,
7436, 7436, 5910, 5913, 5915, 5920, 5916, 5922, 5924, 5931,
5926, 5928, 5932, 5929, 5934, 5935, 5943, 5945, 5946, 5936,
5950, 7436, 5940, 5952, 5955, 7436, 5953, 7436, 5954, 5961,
5962, 5960, 5963, 5964, 5968, 5969, 5971, 5975, 5981, 7436,
7436, 5972, 5988, 5983, 7436, 7436, 5974, 5984, 5985, 5987,
5992, 5994, 5995, 7436, 5998, 5999, 5996, 6000, 6002, 6003,
6010, 6012, 7436, 6013, 7436, 6016, 6017, 6020, 6022, 6029,
6030, 6025, 6027, 6032, 6034, 6035, 6037, 6041, 7436, 6039,
6038, 7436, 6055, 6050, 6052, 6040, 6054, 6060, 6042, 7436,
6063, 6061, 7436, 6066, 6067, 6070, 6072, 7436, 6074, 6076,
6077, 6075, 7436, 6086, 7436, 6078, 6083, 6081, 6095, 6087,
7436, 6091, 6092, 6096, 6100, 7436, 6103, 6105, 6107, 6110,
6108, 6109, 7436, 6115, 6117, 7436, 6118, 6120, 6123, 6126,
6127, 6129, 6130, 6131, 6132, 6139, 6137, 6140, 7436, 7436,
6147, 6145, 123, 6154, 6134, 6151, 6152, 6155, 6162, 6158,
6159, 6165, 7436, 7436, 6168, 7436, 6166, 6167, 7436, 6160,
6175, 6176, 6169, 6179, 6180, 6181, 6182, 6189, 6190, 6191,
6192, 6193, 6195, 7436, 6211, 6214, 6197, 6200, 6217, 6219,
6221, 6223, 6225, 6215, 6227, 6209, 6207, 6228, 6230, 6234,
6235, 6236, 6238, 6240, 6242, 6243, 7436, 6246, 6249, 6250,
6251, 6256, 6252, 6259, 6257, 7436, 6268, 6265, 6270, 6271,
7436, 6274, 6277, 6278, 6280, 6281, 6282, 7436, 6283, 6285,
6289, 6292, 6293, 6294, 6295, 6297, 6298, 6305, 7436, 6303,
6300, 6307, 7436, 6308, 7436, 7436, 7436, 6310, 6320, 6314,
7436, 6322, 6317, 6324, 6325, 7436, 6327, 6330, 6332, 6339,
6334, 7436, 7436, 7436, 6335, 6337, 6336, 7436, 6338, 6350,
7436, 6340, 7436, 6347, 7436, 6348, 6351, 6354, 6357, 7436,
6359, 6361, 6362, 6369, 7436, 6372, 6378, 6380, 6375, 6363,
6367, 6382, 7436, 6391, 6388, 6389, 6396, 6381, 6390, 6392,
6398, 6397, 6406, 6401, 6405, 7436, 6407, 6409, 6412, 6418,
6408, 6410, 6416, 7436, 6420, 7436, 6422, 7436, 6423, 6424,
6428, 6429, 6430, 6432, 6434, 6435, 6442, 6438, 6444, 6445,
6450, 6449, 6451, 6455, 6457, 6452, 7436, 7436, 6466, 6461,
7436, 6462, 6470, 6473, 7436, 6463, 7436, 6479, 7436, 6474,
6476, 7436, 6480, 6481, 6482, 7436, 7436, 6489, 6483, 6486,
6499, 6491, 6501, 6494, 7436, 6504, 6496, 6498, 6502, 6507,
7436, 6515, 7436, 6508, 6518, 6511, 7436, 7436, 6519, 6521,
6523, 6525, 6527, 6526, 6530, 6532, 6531, 6533, 6544, 6535,
6536, 6537, 6551, 6545, 6552, 6556, 6561, 7436, 7436, 7436,
6558, 6563, 6571, 6567, 6569, 6574, 6564, 7436, 6534, 6576,
6573, 6577, 6585, 6580, 6587, 7436, 6581, 6584, 6588, 6590,
6592, 6589, 6594, 6595, 7436, 6600, 6606, 6612, 6609, 6601,
6616, 6618, 6620, 6623, 6624, 6626, 6627, 6628, 6635, 6631,
7436, 7436, 6638, 6630, 7436, 6642, 6644, 7436, 7436, 6632,
7436, 6634, 6639, 6645, 6647, 6648, 7436, 6653, 6650, 6655,
6657, 7436, 6658, 6659, 6663, 6666, 6673, 7436, 6667, 6681,
6660, 6670, 6679, 6682, 7436, 7436, 6672, 6691, 7436, 6695,
6683, 6686, 6698, 6696, 6697, 6702, 6699, 7436, 6703, 6706,
6709, 6710, 6712, 6713, 6714, 7436, 6715, 6716, 6718, 6719,
7436, 6722, 6721, 6724, 6726, 6727, 7436, 6728, 6731, 6749,
6745, 7436, 6734, 6752, 6744, 7436, 7436, 7436, 6759, 6761,
6762, 7436, 7436, 7436, 6748, 7436, 6765, 6767, 6756, 6769,
7436, 6770, 7436, 7436, 6774, 6779, 6783, 6787, 6791, 6778,
7436, 6790, 6784, 6797, 6753, 6792, 7436, 7436, 6799, 6800,
6794, 6802, 6803, 6805, 6807, 6809, 7436, 7436, 6810, 6811,
6812, 6815, 6813, 7436, 6819, 6821, 6831, 6823, 6833, 6839,
6841, 6827, 6843, 6844, 6851, 6852, 6836, 6847, 6849, 6854,
6855, 6857, 6864, 6871, 6866, 6868, 6874, 6869, 6875, 7436,
7436, 6878, 6879, 7436, 6882, 6883, 7436, 6885, 7436, 6887,
6889, 6891, 6895, 7436, 6897, 6899, 6901, 6905, 6902, 7436,
6906, 6908, 7436, 6910, 6911, 6912, 6913, 7436, 6914, 6917,
6918, 6922, 6919, 6923, 6926, 6930, 6940, 7436, 6927, 6944,
7436, 7436, 6932, 6817, 6925, 6945, 6935, 7436, 6949, 6947,
6948, 6954, 6955, 6957, 6956, 7436, 6958, 6960, 7436, 7436,
6961, 6963, 7436, 6966, 7436, 6968, 6970, 7436, 7436, 7436,
7436, 7436, 7436, 7436, 7436, 6971, 6977, 7436, 7436, 6973,
6982, 6984, 6988, 7436, 6992, 7436, 6979, 6989, 6993, 6985,
7436, 6995, 7436, 6996, 6999, 7001, 7011, 7000, 7003, 7007,
7008, 7012, 7016, 7014, 7018, 7017, 7022, 7023, 7021, 7024,
7035, 7025, 7038, 7029, 7041, 7436, 7436, 7436, 7436, 7031,
7043, 7048, 7050, 7052, 7053, 7056, 7058, 7060, 7061, 7062,
7064, 7066, 7067, 7068, 7076, 7072, 7073, 7075, 7078, 7074,
7088, 7090, 7096, 7436, 7098, 7084, 7082, 7103, 7436, 7091,
7436, 7093, 7436, 7436, 7105, 7107, 7109, 7100, 7116, 7118,
7113, 7115, 7114, 7120, 7122, 7436, 7124, 7436, 7436, 7436,
7436, 7126, 7129, 7436, 7130, 7131, 7436, 7132, 7134, 7136,
7137, 7138, 7140, 7141, 7143, 7154, 7436, 7436, 7142, 7145,
7156, 7158, 7160, 7167, 7168, 7166, 7172, 7173, 7164, 7176,
7436, 7180, 7181, 7185, 7436, 7187, 7174, 7182, 7188, 7190,
7198, 7194, 7195, 7436, 7196, 7436, 7200, 7202, 7201, 7203,
7204, 7205, 7215, 7212, 7219, 7436, 7210, 7220, 7224, 7225,
7227, 7229, 7230, 7231, 7239, 7235, 7242, 7246, 7241, 7247,
7233, 7251, 7249, 7436, 7258, 7253, 7436, 7255, 7259, 7261,
7262, 7265, 7436, 7270, 7263, 7267, 7273, 7276, 7271, 7436,
7284, 7288, 7285, 7436, 7289, 7436, 7436, 7290, 7277, 7279,
7300, 7302, 7436, 7436, 7436, 7316, 7323, 7330, 7337, 7344,
7351, 7358, 88, 7365, 7372, 7379, 7386, 7393, 7400, 7407,
7414, 7421, 7428
} ;
static yyconst flex_int16_t yy_def[3834] =
{ 0,
3815, 1, 3816, 3816, 3817, 3817, 3818, 3818, 3819, 3819,
3820, 3820, 3821, 3821, 3822, 3822, 3815, 3823, 3815, 3815,
3815, 3815, 3824, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3825, 3815, 3815, 3815,
3825, 3826, 3815, 3815, 3815, 3826, 3827, 3815, 3815, 3815,
3815, 3827, 3828, 3815, 3815, 3815, 3828, 3829, 3815, 3830,
3815, 3829, 3829, 3831, 3815, 3815, 3815, 3815, 3831, 3832,
3815, 3815, 3815, 3832, 3823, 3823, 3815, 3833, 3824, 3833,
3824, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3825, 3825, 3826, 3826, 3827, 3827, 3815, 3828, 3828, 3829,
3829, 3830, 3830, 3829, 3831, 3831, 3815, 3832, 3832, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3829, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3829, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3829, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3829, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3815, 3815, 3823, 3823,
3815, 3815, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3829, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3829, 3829, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3829, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3829, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3829, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3815, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3829, 3823, 3815, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3815, 3823, 3815, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3815, 3815, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3829, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3815, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3829, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3815, 3815, 3823, 3823,
3823, 3823, 3823, 3815, 3815, 3823, 3815, 3823, 3815, 3823,
3823, 3815, 3815, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3829, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3815, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3815, 3815,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3815, 3815, 3823, 3815,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3815,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3829, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3815, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3815, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3815, 3823, 3823, 3823, 3815, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3815,
3823, 3823, 3829, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3815, 3823, 3815, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823,
3823, 3823, 3815, 3823, 3815, 3815, 3815, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3815, 3815, 3815, 3823, 3823, 3823, 3815, 3823, 3823,
3815, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3815, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3815, 3823, 3823,
3815, 3823, 3823, 3823, 3815, 3823, 3815, 3823, 3815, 3823,
3823, 3815, 3823, 3823, 3823, 3815, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3815, 3823, 3823, 3823, 3815, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3815, 3815,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3815, 3823, 3823, 3815, 3823, 3823, 3815, 3815, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3815, 3815, 3823, 3823, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3815, 3823, 3823, 3823, 3815, 3815, 3815, 3823, 3823,
3823, 3815, 3815, 3815, 3823, 3815, 3823, 3823, 3823, 3823,
3815, 3823, 3815, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3823, 3823, 3815, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3815, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3815, 3823, 3823, 3815, 3823, 3823, 3815, 3823, 3815, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3815, 3815, 3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3815, 3815,
3823, 3823, 3815, 3823, 3815, 3823, 3823, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3823, 3823, 3815, 3815, 3823,
3823, 3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823,
3815, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3815, 3815, 3815, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3815, 3823,
3815, 3823, 3815, 3815, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3815, 3815, 3815,
3815, 3823, 3823, 3815, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3815, 3815, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3815, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3815, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823, 3823,
3823, 3823, 3823, 3815, 3823, 3823, 3815, 3823, 3823, 3823,
3823, 3823, 3815, 3823, 3823, 3823, 3823, 3823, 3823, 3815,
3823, 3823, 3823, 3815, 3823, 3815, 3815, 3823, 3823, 3823,
3823, 3823, 3815, 3815, 0, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815
} ;
static yyconst flex_int16_t yy_nxt[7477] =
{ 0,
18, 19, 20, 21, 22, 23, 22, 18, 18, 18,
18, 18, 22, 24, 25, 26, 27, 28, 29, 30,
18, 31, 32, 33, 34, 35, 36, 37, 38, 39,
40, 41, 42, 43, 44, 45, 18, 18, 18, 46,
48, 49, 50, 48, 49, 50, 53, 54, 53, 54,
55, 51, 55, 85, 51, 85, 85, 56, 85, 56,
58, 59, 60, 61, 85, 22, 58, 59, 60, 61,
86, 22, 62, 64, 65, 66, 86, 98, 62, 64,
65, 66, 87, 86, 67, 120, 88, 109, 85, 86,
67, 19, 20, 21, 69, 70, 71, 75, 76, 77,
78, 86, 22, 72, 122, 86, 121, 110, 86, 79,
161, 161, 73, 19, 20, 21, 69, 70, 71, 75,
76, 77, 78, 189, 22, 72, 81, 82, 83, 131,
90, 79, 90, 90, 73, 90, 171, 84, 81, 82,
83, 90, 91, 86, 99, 86, 111, 86, 113, 84,
86, 100, 86, 92, 93, 101, 114, 94, 102, 86,
112, 86, 95, 116, 96, 236, 117, 115, 86, 86,
157, 97, 86, 118, 158, 119, 160, 103, 159, 86,
123, 104, 138, 86, 105, 86, 106, 107, 124, 153,
86, 127, 86, 163, 125, 128, 163, 108, 126, 154,
86, 139, 184, 155, 156, 140, 168, 168, 86, 129,
209, 130, 86, 132, 86, 141, 142, 133, 143, 144,
183, 134, 145, 86, 149, 171, 150, 135, 86, 146,
136, 178, 178, 147, 148, 151, 289, 137, 86, 174,
165, 152, 165, 165, 90, 165, 90, 90, 170, 90,
170, 170, 175, 170, 175, 175, 173, 175, 85, 268,
85, 85, 87, 85, 86, 90, 88, 90, 90, 85,
90, 86, 86, 86, 180, 86, 90, 91, 86, 181,
182, 186, 86, 86, 185, 187, 191, 192, 86, 86,
86, 86, 190, 171, 193, 200, 86, 86, 188, 86,
194, 86, 195, 86, 203, 86, 86, 196, 197, 211,
199, 202, 198, 204, 201, 86, 205, 206, 207, 86,
86, 210, 219, 86, 213, 208, 215, 86, 86, 216,
86, 86, 86, 224, 214, 212, 222, 225, 86, 231,
86, 86, 217, 218, 86, 230, 221, 220, 86, 86,
86, 234, 86, 226, 229, 86, 223, 227, 235, 238,
86, 232, 228, 86, 86, 86, 86, 240, 233, 86,
237, 242, 245, 86, 246, 243, 86, 86, 239, 86,
248, 244, 241, 86, 251, 247, 254, 86, 179, 249,
258, 86, 86, 86, 261, 250, 86, 255, 253, 259,
257, 256, 86, 252, 260, 86, 86, 266, 86, 264,
270, 262, 86, 86, 263, 86, 86, 274, 86, 271,
265, 86, 269, 277, 267, 273, 301, 275, 161, 161,
163, 272, 86, 163, 276, 278, 165, 171, 165, 165,
279, 165, 168, 168, 170, 86, 170, 170, 90, 170,
90, 90, 175, 90, 175, 175, 86, 175, 178, 178,
173, 280, 281, 283, 86, 86, 86, 86, 86, 86,
86, 86, 86, 86, 286, 86, 292, 282, 288, 284,
86, 287, 295, 86, 291, 86, 294, 296, 285, 290,
299, 86, 293, 86, 297, 86, 300, 302, 86, 86,
86, 328, 303, 311, 305, 298, 86, 310, 86, 306,
312, 86, 86, 315, 307, 313, 86, 314, 86, 304,
308, 309, 319, 316, 317, 86, 86, 86, 86, 321,
86, 318, 322, 86, 86, 86, 86, 86, 86, 86,
329, 330, 323, 336, 324, 86, 326, 86, 325, 327,
86, 320, 86, 331, 339, 338, 332, 337, 333, 341,
86, 86, 340, 343, 393, 86, 348, 344, 345, 86,
334, 342, 335, 346, 86, 349, 351, 86, 86, 86,
352, 86, 350, 86, 354, 86, 86, 353, 347, 86,
86, 355, 357, 86, 86, 86, 356, 86, 86, 86,
359, 361, 86, 86, 86, 360, 358, 86, 86, 367,
362, 365, 86, 86, 86, 366, 368, 86, 86, 363,
372, 86, 374, 364, 370, 373, 86, 369, 86, 378,
86, 86, 375, 371, 376, 86, 86, 382, 385, 86,
377, 383, 381, 86, 384, 86, 379, 380, 86, 86,
388, 389, 391, 86, 86, 387, 86, 86, 86, 86,
394, 395, 86, 396, 386, 392, 398, 171, 390, 86,
86, 86, 86, 399, 86, 402, 86, 401, 86, 403,
86, 86, 86, 86, 405, 407, 410, 397, 409, 411,
400, 86, 86, 404, 86, 86, 412, 414, 406, 413,
86, 86, 86, 86, 408, 86, 86, 421, 86, 86,
426, 423, 422, 86, 418, 415, 416, 420, 86, 417,
419, 86, 86, 424, 86, 425, 86, 428, 86, 429,
86, 86, 86, 431, 433, 86, 86, 86, 438, 434,
427, 86, 440, 86, 86, 435, 430, 432, 86, 86,
436, 441, 442, 86, 445, 86, 437, 439, 86, 443,
86, 447, 448, 86, 86, 446, 86, 86, 86, 86,
86, 454, 86, 86, 86, 455, 444, 86, 457, 453,
86, 86, 451, 450, 86, 460, 86, 449, 86, 462,
452, 456, 86, 86, 86, 465, 458, 466, 459, 461,
464, 86, 475, 86, 467, 86, 463, 86, 86, 86,
477, 468, 484, 493, 86, 491, 469, 86, 86, 470,
486, 476, 502, 86, 471, 472, 473, 474, 86, 86,
485, 478, 86, 479, 487, 488, 489, 86, 86, 86,
492, 490, 86, 86, 496, 480, 481, 482, 86, 483,
86, 86, 86, 504, 497, 494, 503, 500, 495, 501,
498, 499, 86, 505, 86, 86, 86, 86, 86, 86,
86, 508, 513, 86, 514, 86, 515, 86, 86, 509,
507, 86, 519, 86, 512, 516, 521, 510, 520, 506,
511, 86, 517, 527, 86, 518, 522, 526, 86, 86,
86, 524, 523, 525, 86, 86, 533, 528, 534, 532,
535, 86, 86, 86, 86, 86, 86, 536, 550, 86,
529, 177, 171, 530, 86, 531, 86, 537, 86, 538,
86, 552, 86, 549, 553, 539, 551, 86, 554, 540,
555, 567, 557, 572, 541, 566, 86, 542, 86, 543,
176, 544, 568, 86, 86, 86, 556, 569, 86, 570,
86, 86, 577, 575, 545, 573, 571, 546, 86, 547,
574, 548, 86, 86, 558, 559, 86, 86, 86, 576,
171, 580, 584, 582, 560, 561, 562, 563, 564, 86,
86, 565, 581, 583, 578, 86, 86, 86, 86, 579,
585, 86, 589, 590, 86, 593, 592, 86, 86, 86,
586, 588, 86, 597, 86, 587, 591, 86, 86, 86,
595, 86, 86, 596, 86, 86, 600, 594, 601, 602,
86, 86, 86, 599, 608, 86, 616, 86, 603, 598,
605, 606, 604, 86, 607, 86, 86, 86, 609, 610,
611, 86, 86, 619, 86, 613, 614, 86, 86, 86,
86, 618, 632, 634, 617, 622, 623, 612, 86, 633,
86, 615, 620, 621, 635, 86, 637, 624, 86, 625,
86, 86, 86, 86, 636, 626, 86, 639, 86, 86,
640, 641, 169, 627, 628, 86, 86, 629, 630, 638,
642, 631, 645, 643, 86, 644, 646, 86, 86, 648,
86, 649, 650, 647, 86, 86, 86, 86, 86, 651,
652, 86, 86, 86, 657, 86, 655, 656, 86, 86,
653, 86, 658, 86, 86, 86, 663, 659, 654, 86,
665, 86, 86, 662, 666, 667, 86, 661, 660, 86,
669, 670, 86, 86, 668, 664, 86, 672, 674, 86,
675, 86, 86, 86, 86, 86, 86, 86, 86, 86,
677, 86, 681, 671, 679, 673, 86, 86, 86, 688,
690, 683, 676, 167, 678, 86, 86, 680, 682, 684,
86, 685, 689, 86, 686, 692, 86, 687, 693, 691,
86, 86, 86, 86, 86, 697, 86, 701, 695, 86,
694, 696, 86, 86, 704, 700, 86, 698, 86, 699,
86, 703, 86, 86, 86, 86, 706, 707, 710, 702,
86, 86, 86, 86, 86, 712, 86, 709, 705, 714,
86, 86, 711, 86, 86, 708, 713, 86, 715, 717,
86, 729, 716, 86, 718, 731, 86, 166, 728, 719,
726, 720, 727, 730, 86, 86, 86, 721, 86, 722,
733, 736, 723, 724, 741, 86, 86, 86, 86, 725,
732, 734, 737, 742, 739, 735, 86, 740, 86, 86,
744, 86, 86, 86, 743, 746, 86, 749, 86, 751,
86, 747, 738, 86, 745, 86, 748, 86, 752, 86,
755, 86, 753, 86, 86, 86, 750, 86, 754, 758,
759, 86, 86, 762, 756, 764, 86, 86, 766, 757,
761, 763, 760, 171, 86, 86, 86, 765, 767, 771,
86, 86, 768, 86, 86, 86, 86, 774, 776, 86,
770, 86, 86, 164, 769, 772, 86, 775, 780, 773,
778, 779, 86, 781, 86, 782, 783, 86, 784, 86,
785, 86, 86, 777, 86, 86, 86, 86, 86, 789,
788, 86, 794, 786, 86, 817, 790, 795, 86, 787,
797, 86, 86, 791, 793, 800, 792, 796, 798, 86,
799, 86, 86, 801, 86, 802, 86, 803, 86, 804,
806, 86, 86, 86, 805, 86, 86, 810, 86, 809,
86, 86, 86, 808, 813, 86, 86, 814, 812, 807,
818, 86, 86, 86, 86, 86, 86, 811, 820, 86,
822, 86, 824, 86, 86, 816, 86, 823, 815, 827,
821, 819, 86, 86, 825, 831, 86, 86, 86, 86,
839, 86, 832, 86, 826, 828, 834, 86, 829, 86,
833, 835, 86, 830, 836, 837, 838, 86, 86, 86,
846, 86, 842, 843, 845, 840, 86, 86, 841, 86,
847, 849, 848, 844, 86, 86, 86, 86, 86, 852,
853, 854, 86, 86, 86, 86, 86, 861, 86, 86,
857, 859, 86, 850, 851, 86, 856, 858, 855, 86,
864, 862, 86, 86, 86, 860, 86, 86, 863, 870,
872, 86, 86, 868, 86, 86, 866, 871, 869, 867,
865, 873, 874, 86, 86, 86, 876, 86, 875, 86,
877, 86, 878, 86, 883, 86, 881, 86, 885, 86,
86, 879, 884, 880, 86, 86, 86, 86, 886, 86,
86, 888, 882, 890, 162, 889, 86, 86, 891, 86,
887, 894, 892, 893, 898, 86, 899, 86, 895, 86,
86, 916, 901, 86, 900, 896, 897, 902, 86, 903,
904, 86, 86, 908, 86, 906, 86, 912, 905, 86,
86, 910, 913, 86, 86, 914, 909, 86, 86, 86,
907, 911, 86, 86, 918, 86, 86, 86, 925, 86,
86, 86, 86, 926, 86, 915, 917, 920, 86, 919,
927, 921, 86, 922, 86, 923, 86, 924, 930, 932,
935, 931, 86, 928, 86, 86, 86, 929, 933, 934,
86, 86, 86, 86, 86, 86, 86, 938, 937, 942,
86, 86, 936, 86, 86, 86, 952, 951, 86, 939,
944, 941, 940, 950, 943, 86, 86, 86, 945, 946,
947, 953, 948, 949, 86, 86, 86, 86, 86, 954,
86, 958, 86, 86, 86, 955, 956, 962, 957, 963,
964, 86, 86, 959, 86, 961, 86, 960, 86, 966,
86, 967, 86, 86, 86, 969, 86, 974, 86, 970,
968, 976, 972, 86, 171, 965, 971, 86, 973, 975,
86, 977, 86, 86, 86, 86, 86, 981, 984, 86,
987, 979, 86, 985, 978, 988, 86, 86, 980, 982,
86, 986, 989, 86, 992, 86, 86, 983, 86, 990,
86, 86, 995, 86, 86, 999, 86, 86, 86, 86,
86, 86, 991, 996, 993, 1000, 994, 1001, 1013, 86,
86, 86, 998, 86, 1002, 1016, 86, 86, 997, 1004,
1050, 86, 86, 1003, 86, 1012, 1005, 1018, 86, 1006,
1014, 1015, 86, 1007, 86, 86, 1008, 1019, 1017, 1021,
86, 1022, 86, 1009, 1010, 1024, 1011, 86, 1020, 86,
1023, 86, 1028, 86, 86, 86, 86, 1041, 86, 1038,
1025, 1026, 86, 86, 86, 86, 86, 86, 1065, 1043,
86, 1027, 86, 1029, 1030, 1037, 1031, 1039, 86, 1032,
1040, 1048, 1077, 1045, 1033, 1044, 1046, 1042, 86, 86,
1034, 1035, 1051, 1036, 1047, 1049, 86, 1052, 86, 86,
1054, 86, 86, 1053, 86, 1057, 86, 1056, 86, 86,
86, 1058, 1059, 1060, 1061, 86, 1055, 86, 86, 1062,
86, 86, 1063, 86, 86, 1069, 86, 86, 86, 1068,
86, 86, 1073, 86, 86, 1079, 86, 1064, 86, 86,
1066, 1070, 1067, 1078, 1072, 1075, 1074, 1071, 1080, 86,
86, 1083, 86, 1081, 86, 1082, 1076, 86, 1085, 1087,
86, 86, 1089, 1090, 86, 86, 1088, 1084, 86, 86,
1091, 86, 1086, 1093, 86, 1094, 86, 1092, 86, 86,
86, 86, 86, 86, 86, 1098, 1096, 1099, 1100, 1095,
86, 1104, 86, 86, 1107, 86, 86, 1097, 86, 1108,
1101, 86, 1105, 1103, 1106, 86, 1102, 86, 86, 86,
86, 86, 86, 179, 86, 86, 1109, 1111, 1112, 1115,
1110, 1116, 86, 86, 86, 1114, 1117, 1118, 86, 1119,
86, 1113, 1123, 1121, 86, 1126, 1120, 1124, 86, 86,
86, 1122, 86, 86, 1125, 86, 86, 86, 86, 1132,
1134, 1129, 1135, 86, 1127, 86, 86, 1133, 86, 1128,
1137, 86, 86, 1131, 86, 86, 1139, 1130, 1136, 86,
86, 86, 86, 177, 86, 1146, 86, 1138, 1140, 1144,
86, 1149, 1141, 86, 86, 1143, 1142, 86, 1151, 1150,
1147, 86, 1145, 1148, 86, 86, 86, 86, 86, 1152,
1155, 86, 1158, 1153, 1156, 1154, 1159, 86, 86, 1157,
86, 86, 86, 86, 86, 176, 86, 1160, 86, 1162,
1164, 1161, 86, 1170, 1171, 86, 1173, 86, 1163, 86,
86, 1165, 86, 1167, 1176, 1166, 1168, 1177, 1169, 1172,
86, 1174, 1175, 86, 86, 86, 86, 86, 1178, 86,
86, 1184, 1182, 1185, 1186, 86, 86, 1190, 1180, 86,
86, 86, 86, 86, 1179, 1187, 1181, 1192, 86, 1189,
1183, 86, 86, 1188, 1198, 86, 86, 1194, 1195, 1199,
171, 1191, 86, 86, 86, 1202, 86, 1201, 86, 1193,
86, 1196, 86, 1197, 86, 1206, 86, 1200, 1203, 86,
86, 86, 86, 1205, 86, 86, 1204, 86, 1221, 1220,
1209, 1207, 86, 1210, 1211, 86, 1222, 86, 1208, 86,
1212, 1224, 86, 1213, 86, 86, 86, 1214, 1661, 1215,
1223, 1230, 86, 1216, 1228, 1217, 1226, 1227, 86, 1229,
1218, 1232, 1225, 86, 86, 1219, 1233, 86, 86, 86,
86, 86, 1231, 1234, 1236, 86, 1242, 1235, 86, 86,
1239, 1241, 86, 1238, 1244, 86, 1237, 86, 86, 86,
1240, 86, 1243, 1249, 1248, 1251, 1246, 1247, 86, 1252,
1245, 86, 1255, 1250, 1254, 86, 1253, 86, 86, 86,
86, 86, 86, 1256, 86, 86, 86, 1270, 171, 1267,
86, 86, 86, 1266, 86, 86, 1271, 1269, 86, 1257,
1258, 86, 1259, 1272, 1268, 86, 1273, 1260, 1279, 1261,
1274, 86, 1275, 86, 86, 1262, 86, 86, 86, 86,
1263, 1264, 1280, 86, 1276, 86, 86, 1265, 1281, 1278,
1277, 1286, 86, 86, 1289, 1283, 1282, 1287, 86, 86,
86, 1284, 1290, 1285, 86, 86, 1288, 1294, 86, 1292,
86, 86, 86, 86, 86, 1295, 1300, 1291, 1293, 86,
1297, 1298, 86, 86, 86, 86, 86, 1296, 1301, 1303,
1299, 86, 1306, 86, 86, 86, 86, 86, 86, 86,
1305, 86, 1302, 1311, 1309, 1304, 1308, 1310, 1313, 86,
86, 86, 1314, 1307, 86, 1315, 1312, 86, 1319, 86,
86, 86, 1318, 86, 86, 169, 86, 86, 1324, 1316,
1320, 1325, 1326, 1321, 86, 1317, 1323, 86, 1322, 1327,
86, 1329, 1330, 1331, 86, 86, 1328, 86, 86, 86,
86, 86, 1336, 1332, 86, 86, 1338, 1337, 86, 1339,
1333, 86, 1340, 1334, 1341, 86, 86, 1335, 1342, 86,
86, 86, 86, 1349, 86, 1351, 1345, 86, 86, 86,
86, 86, 1344, 1353, 1347, 1343, 86, 1348, 1346, 86,
1355, 86, 1352, 86, 1350, 86, 1356, 86, 86, 167,
1354, 1357, 1358, 1359, 1361, 86, 86, 1360, 86, 86,
1362, 1363, 86, 86, 86, 1365, 1369, 1370, 86, 1367,
1364, 86, 86, 86, 86, 86, 1374, 1373, 1366, 86,
1371, 86, 86, 86, 1380, 1368, 1378, 1381, 86, 1382,
86, 1372, 86, 86, 86, 86, 166, 1375, 86, 1383,
1376, 1379, 1377, 1384, 1385, 86, 86, 1387, 86, 86,
86, 1386, 1390, 86, 1388, 1391, 86, 86, 1393, 86,
86, 86, 1392, 1389, 86, 1394, 86, 1398, 86, 1395,
86, 1396, 86, 1399, 86, 1400, 86, 86, 86, 1401,
1406, 1402, 1397, 86, 1407, 86, 86, 86, 86, 1404,
86, 86, 1403, 1409, 1410, 86, 86, 1405, 1408, 86,
86, 1412, 1415, 1413, 1411, 86, 86, 86, 86, 1417,
1421, 86, 86, 86, 1414, 171, 86, 1416, 1423, 86,
1422, 1424, 86, 86, 1418, 86, 86, 1420, 1429, 86,
1432, 86, 1419, 1426, 1430, 1425, 86, 1427, 1428, 1434,
1435, 86, 86, 86, 1431, 86, 86, 86, 86, 86,
1439, 86, 1438, 86, 1440, 1441, 1433, 1436, 1443, 1437,
86, 86, 86, 86, 86, 1442, 1446, 86, 86, 1447,
1450, 86, 86, 86, 86, 1444, 1452, 86, 86, 1448,
1445, 164, 1451, 1455, 86, 86, 1449, 86, 1461, 1454,
1457, 1453, 86, 1462, 1465, 86, 1464, 86, 1456, 1458,
1463, 1459, 86, 86, 1460, 86, 1467, 86, 86, 86,
86, 86, 1474, 86, 1471, 86, 1466, 1470, 86, 86,
1475, 86, 86, 1473, 1468, 1469, 86, 1476, 86, 1472,
1477, 1479, 86, 1480, 86, 1485, 86, 86, 86, 1481,
1478, 1483, 1482, 86, 86, 86, 86, 1484, 1489, 86,
86, 86, 1486, 1487, 86, 86, 1492, 1490, 86, 86,
86, 1491, 1493, 1488, 1497, 86, 1500, 86, 86, 86,
1494, 1499, 86, 1496, 1498, 1495, 86, 1503, 86, 86,
86, 86, 1510, 86, 1504, 1501, 1512, 1502, 86, 86,
1506, 86, 86, 86, 86, 1505, 1509, 86, 1507, 1515,
86, 86, 86, 1511, 1513, 1508, 1518, 1514, 86, 86,
1520, 86, 1519, 1517, 1516, 1521, 86, 86, 1525, 86,
86, 1522, 1523, 1556, 1524, 86, 1526, 86, 1536, 1534,
1527, 1535, 1533, 1528, 1529, 86, 86, 86, 1530, 86,
1537, 1540, 86, 1538, 1531, 1539, 86, 86, 1532, 86,
86, 1541, 86, 1543, 1542, 86, 1545, 86, 86, 1550,
1546, 1551, 1547, 1544, 86, 86, 86, 86, 86, 1552,
1548, 86, 86, 1553, 1558, 86, 1549, 1555, 1560, 86,
86, 1559, 86, 1562, 86, 86, 86, 1561, 1554, 1557,
86, 86, 162, 86, 86, 1564, 1569, 86, 1563, 86,
1565, 1574, 1566, 1575, 1567, 86, 1568, 1570, 86, 1571,
1572, 1573, 1576, 86, 1577, 86, 1580, 86, 86, 86,
86, 1581, 86, 1578, 1579, 1585, 1582, 1583, 86, 86,
86, 86, 86, 1591, 86, 1592, 86, 86, 1587, 86,
86, 1584, 1586, 86, 86, 1594, 1590, 86, 1593, 1588,
1589, 86, 1596, 1598, 1595, 86, 86, 1597, 1599, 86,
1603, 86, 86, 86, 1602, 1605, 86, 86, 1606, 1607,
86, 86, 86, 1600, 1608, 1609, 86, 1604, 1612, 86,
86, 1601, 1614, 86, 86, 1611, 86, 1615, 86, 1616,
86, 1610, 86, 1620, 86, 86, 86, 86, 86, 1623,
1613, 1625, 86, 86, 1628, 86, 86, 86, 1626, 1617,
86, 1618, 86, 1619, 1622, 1621, 86, 86, 1624, 1627,
1630, 1631, 86, 1629, 86, 1632, 86, 1633, 86, 1635,
1634, 86, 86, 1637, 1636, 1638, 1639, 86, 1640, 86,
86, 86, 86, 86, 1641, 1646, 1647, 1643, 86, 1644,
86, 86, 86, 1648, 1650, 1649, 1645, 86, 1642, 86,
86, 86, 1654, 86, 86, 86, 1651, 86, 171, 86,
1656, 86, 1653, 86, 1662, 1663, 86, 86, 1652, 1658,
86, 86, 1664, 1659, 1655, 1657, 1666, 1667, 1665, 86,
1670, 1660, 86, 1668, 86, 86, 86, 86, 86, 86,
1675, 86, 86, 86, 86, 86, 86, 1672, 1679, 1669,
86, 1673, 1681, 86, 1671, 1683, 1674, 86, 86, 1686,
86, 1676, 1678, 1680, 1687, 86, 86, 1677, 86, 1682,
86, 86, 1685, 86, 86, 1689, 1684, 86, 1688, 1690,
86, 86, 1691, 1697, 86, 1692, 1695, 1700, 1693, 1696,
86, 1694, 1698, 86, 1699, 86, 86, 1703, 86, 1701,
86, 86, 1704, 86, 86, 86, 1708, 1702, 86, 1709,
1706, 86, 86, 1710, 86, 86, 86, 1705, 1707, 1713,
86, 86, 1718, 1711, 86, 86, 86, 1722, 1719, 1715,
86, 1712, 1714, 86, 1716, 86, 86, 86, 1717, 86,
86, 86, 1723, 1720, 86, 1721, 86, 86, 86, 1730,
3815, 1724, 1727, 1726, 1731, 1725, 1728, 86, 86, 1729,
86, 86, 1732, 86, 1733, 86, 1737, 86, 86, 1735,
1736, 1742, 1734, 86, 1741, 1738, 1739, 86, 1743, 86,
1745, 86, 1744, 1740, 86, 1746, 86, 1747, 86, 86,
86, 1751, 1752, 1753, 86, 1750, 3815, 86, 86, 86,
86, 1754, 86, 1755, 1748, 1758, 86, 86, 86, 86,
1749, 1759, 1761, 86, 86, 86, 86, 1760, 86, 1766,
86, 1762, 1756, 1765, 1757, 86, 86, 1763, 1768, 1764,
1769, 86, 1772, 86, 3815, 1767, 1774, 1773, 86, 86,
1770, 1775, 86, 1776, 86, 1778, 86, 86, 86, 86,
1771, 86, 86, 1777, 1782, 86, 1786, 1781, 86, 86,
86, 86, 86, 1787, 86, 1779, 1780, 86, 1792, 86,
1783, 86, 1784, 1785, 86, 1794, 1790, 1788, 1795, 86,
1789, 86, 86, 86, 86, 86, 1793, 86, 86, 86,
1791, 1797, 1803, 86, 86, 1805, 86, 86, 1796, 1806,
1798, 86, 1799, 1802, 1800, 86, 1801, 1807, 1804, 1810,
86, 1811, 86, 1809, 86, 86, 1808, 86, 1814, 1812,
86, 1813, 86, 86, 86, 86, 86, 1818, 3815, 1816,
1815, 1819, 86, 86, 86, 1817, 1822, 1823, 86, 1824,
86, 1821, 1827, 86, 1820, 1828, 1825, 1829, 86, 1832,
1826, 1831, 86, 86, 86, 86, 86, 1833, 1834, 86,
1835, 86, 86, 1830, 86, 1840, 1841, 86, 86, 1843,
1838, 86, 86, 86, 86, 86, 86, 1846, 1845, 1836,
1837, 1847, 1849, 86, 1839, 86, 1842, 86, 1850, 1851,
86, 86, 86, 1844, 1848, 86, 86, 86, 86, 1855,
86, 86, 86, 86, 1860, 86, 86, 1852, 1853, 86,
1858, 1854, 86, 1861, 1864, 86, 86, 1866, 1856, 86,
1857, 1868, 1859, 86, 86, 1863, 1862, 86, 1867, 1865,
86, 86, 1873, 86, 1869, 86, 86, 86, 86, 1870,
86, 1876, 1878, 86, 1871, 86, 86, 1874, 86, 1879,
1872, 86, 1877, 1875, 86, 1881, 86, 171, 1880, 1884,
1885, 86, 1882, 1888, 86, 1883, 1887, 86, 86, 86,
1886, 1889, 86, 1892, 1891, 86, 86, 86, 86, 86,
1890, 86, 1900, 86, 86, 86, 3815, 86, 1899, 1894,
1893, 1897, 1901, 1905, 86, 1895, 1896, 86, 86, 86,
86, 1909, 1904, 1898, 1902, 1903, 1906, 86, 86, 1911,
1913, 86, 1907, 1910, 86, 86, 86, 86, 1908, 1914,
1912, 1916, 86, 86, 86, 1915, 86, 86, 86, 1922,
1919, 1920, 86, 1923, 86, 86, 1917, 86, 86, 86,
1928, 1927, 1918, 86, 86, 86, 86, 86, 1924, 1935,
1937, 1921, 1926, 1925, 86, 86, 1930, 1932, 86, 86,
1933, 1929, 86, 1936, 86, 1931, 1938, 1940, 1939, 3815,
86, 1941, 1934, 1942, 1943, 86, 1945, 1946, 86, 86,
86, 1948, 86, 86, 1947, 86, 1949, 1950, 1944, 86,
86, 1952, 86, 86, 1951, 86, 86, 1957, 1958, 1956,
1959, 86, 86, 86, 86, 86, 86, 1960, 1953, 86,
1961, 1954, 1964, 86, 1963, 1955, 86, 86, 86, 86,
86, 86, 1965, 1966, 1962, 86, 86, 86, 86, 86,
86, 86, 1977, 86, 1968, 1976, 86, 86, 1967, 1969,
1971, 1970, 1972, 1973, 1979, 1974, 86, 86, 1980, 1983,
1975, 86, 1978, 86, 86, 86, 86, 86, 1981, 86,
1982, 86, 1988, 86, 1990, 86, 1991, 1992, 86, 1985,
1987, 1984, 86, 86, 1986, 86, 1996, 1994, 86, 1998,
1989, 1993, 86, 86, 86, 1995, 86, 86, 86, 86,
86, 86, 86, 1997, 2003, 2001, 3815, 2004, 86, 2002,
2005, 2000, 2012, 86, 86, 2006, 1999, 2007, 2009, 86,
86, 2018, 2008, 2011, 2013, 86, 2010, 86, 2017, 86,
2016, 2014, 2015, 86, 86, 86, 86, 86, 86, 2020,
2021, 2022, 2024, 86, 86, 86, 86, 86, 86, 86,
2034, 86, 2019, 86, 2027, 2033, 2029, 2023, 2032, 2030,
2026, 86, 2025, 86, 86, 2028, 86, 86, 86, 86,
2035, 86, 2031, 2036, 2041, 86, 2043, 2037, 86, 2042,
86, 2039, 86, 2047, 2038, 2040, 86, 2044, 86, 2048,
86, 86, 2053, 2045, 86, 2058, 2046, 86, 2051, 2050,
86, 86, 2052, 86, 2049, 86, 2054, 86, 2057, 2055,
2062, 86, 2056, 86, 86, 2063, 86, 86, 86, 2059,
86, 86, 2067, 86, 2069, 2061, 2060, 2064, 2073, 2065,
86, 2072, 2068, 2066, 2071, 86, 86, 86, 2070, 2075,
86, 2077, 86, 86, 86, 86, 2076, 2080, 86, 86,
2074, 86, 2082, 86, 2084, 86, 86, 2079, 2083, 2085,
86, 2081, 2078, 2086, 86, 86, 86, 86, 86, 86,
2090, 86, 2089, 86, 2087, 2088, 2091, 2093, 2099, 2092,
2097, 86, 2094, 2100, 86, 2095, 86, 2096, 86, 86,
86, 2101, 2103, 86, 86, 86, 2107, 86, 86, 2102,
2109, 86, 2098, 86, 86, 86, 86, 2113, 86, 86,
2104, 2108, 2105, 2115, 2106, 86, 86, 86, 86, 2111,
2116, 86, 2112, 2110, 86, 2114, 2118, 2120, 86, 2119,
86, 171, 86, 2124, 86, 86, 2117, 2127, 86, 2122,
2121, 2123, 86, 2125, 86, 2131, 86, 86, 86, 2126,
86, 86, 2132, 86, 2128, 86, 2129, 2134, 86, 86,
2140, 2130, 2133, 2135, 86, 2136, 86, 86, 86, 2144,
86, 86, 2147, 86, 2143, 2137, 2141, 2138, 86, 2139,
2149, 2145, 86, 86, 2151, 2142, 86, 2148, 2152, 86,
86, 2146, 2150, 86, 86, 86, 2154, 86, 2155, 86,
86, 86, 86, 86, 86, 2153, 86, 2160, 2161, 86,
86, 2165, 86, 2162, 86, 86, 86, 2156, 2158, 2159,
2169, 2157, 2163, 2166, 2164, 86, 86, 2170, 2173, 86,
2171, 2172, 2168, 2174, 86, 86, 2167, 86, 86, 86,
86, 86, 2181, 86, 2184, 86, 86, 2175, 2185, 86,
2176, 2186, 86, 86, 2177, 86, 2178, 2179, 2180, 2182,
86, 2183, 2188, 86, 86, 2189, 2187, 2193, 86, 86,
86, 2195, 86, 2194, 2190, 2196, 2191, 86, 2197, 2199,
86, 2192, 86, 86, 86, 86, 86, 2201, 2198, 2203,
2204, 86, 86, 86, 2207, 86, 86, 86, 2206, 86,
86, 86, 2212, 2200, 2210, 2211, 86, 2214, 2202, 86,
86, 2208, 2205, 86, 2213, 86, 86, 86, 2209, 2222,
86, 86, 2215, 2216, 2217, 86, 2219, 86, 2225, 2218,
86, 86, 2226, 2220, 86, 86, 2221, 2223, 2227, 86,
2224, 2231, 86, 2228, 86, 2229, 2232, 2234, 86, 2230,
86, 2237, 86, 86, 2238, 86, 86, 2233, 86, 2235,
86, 2240, 86, 2243, 2244, 86, 2245, 86, 2236, 86,
2247, 86, 86, 86, 86, 86, 2241, 86, 2239, 2252,
2242, 86, 2249, 2250, 86, 86, 2256, 86, 86, 2246,
86, 86, 86, 2254, 86, 86, 2251, 2248, 2255, 2259,
2253, 86, 2262, 2260, 86, 2258, 2263, 86, 2266, 2257,
86, 86, 2268, 2271, 86, 2267, 86, 2261, 86, 86,
2265, 2264, 86, 2270, 2272, 86, 2274, 2275, 86, 86,
86, 2269, 86, 86, 2276, 86, 86, 86, 86, 2277,
86, 2281, 86, 86, 2273, 2283, 86, 2286, 2278, 86,
86, 2287, 2282, 2289, 2284, 2279, 2280, 86, 86, 86,
86, 2288, 86, 86, 2292, 86, 86, 2297, 86, 2285,
2290, 2296, 86, 2291, 86, 86, 3815, 86, 86, 2303,
2293, 2302, 2294, 2306, 86, 2295, 86, 86, 86, 2298,
2300, 2299, 2304, 2301, 86, 86, 2305, 2307, 2308, 2311,
86, 86, 86, 86, 86, 86, 2309, 86, 2315, 86,
86, 2310, 2319, 86, 86, 86, 2313, 3815, 86, 2322,
2324, 86, 2312, 2314, 86, 2316, 2323, 2317, 2320, 2318,
2321, 86, 2325, 86, 86, 2328, 86, 2326, 86, 86,
2329, 2332, 86, 2327, 2331, 2333, 86, 2334, 2336, 2337,
86, 86, 2335, 86, 86, 86, 2330, 86, 86, 2341,
86, 86, 2339, 2340, 2338, 86, 86, 86, 86, 2345,
2342, 2343, 2344, 2347, 2349, 2346, 2350, 86, 86, 86,
86, 171, 86, 2348, 86, 2351, 2353, 86, 86, 2358,
86, 86, 86, 2357, 2354, 2359, 2355, 86, 2352, 86,
2360, 2361, 86, 2362, 86, 86, 2356, 2365, 86, 86,
2367, 2364, 2363, 86, 2366, 2368, 86, 86, 2371, 86,
86, 86, 2370, 2372, 86, 2369, 86, 2375, 2373, 86,
86, 86, 86, 2374, 2379, 86, 2378, 86, 86, 86,
86, 2376, 2377, 2381, 2382, 86, 2380, 86, 2383, 2384,
86, 86, 2385, 86, 86, 2391, 2386, 2389, 2387, 2390,
86, 86, 86, 86, 86, 86, 86, 86, 86, 2396,
2388, 2393, 86, 86, 2402, 2399, 2400, 86, 2392, 2395,
2397, 2394, 2398, 86, 86, 86, 2403, 86, 2408, 86,
2406, 86, 2401, 86, 2409, 2404, 86, 86, 2415, 86,
2407, 86, 86, 86, 86, 2405, 86, 2417, 86, 2410,
2418, 86, 2411, 2412, 2413, 2414, 86, 2419, 86, 2416,
2421, 86, 2423, 86, 2422, 86, 2424, 86, 2427, 2420,
86, 86, 86, 2426, 86, 86, 86, 2432, 2429, 86,
2433, 2425, 86, 86, 2428, 86, 86, 86, 2434, 86,
86, 86, 86, 86, 2430, 2431, 86, 2436, 2437, 2441,
86, 2439, 2438, 2435, 86, 2443, 2442, 2453, 86, 2440,
2444, 86, 2452, 2450, 86, 2445, 2446, 2447, 86, 2451,
2448, 86, 2454, 86, 2456, 86, 86, 86, 2457, 2460,
86, 2459, 86, 2449, 86, 86, 86, 2462, 2455, 86,
86, 2463, 86, 86, 2464, 2458, 86, 2471, 2461, 2466,
86, 2467, 2468, 86, 2465, 86, 86, 2473, 2475, 86,
86, 2469, 86, 2470, 86, 86, 2472, 2477, 86, 86,
2474, 2478, 86, 2479, 86, 2484, 86, 2480, 86, 86,
86, 86, 2481, 2482, 2485, 86, 2476, 2488, 2490, 2486,
2487, 86, 2489, 86, 2483, 86, 2494, 86, 86, 2495,
86, 86, 86, 2499, 2491, 2492, 86, 2493, 86, 86,
86, 2496, 2501, 2500, 2503, 86, 2497, 2506, 86, 86,
86, 86, 2498, 2504, 2502, 86, 2508, 86, 2509, 86,
86, 2505, 86, 2507, 86, 2511, 2513, 2512, 2510, 86,
86, 2516, 2518, 2514, 86, 86, 2515, 2519, 86, 3815,
86, 86, 86, 86, 2521, 86, 2520, 2525, 86, 86,
2526, 2517, 2522, 86, 2523, 2524, 86, 2528, 2531, 86,
86, 2527, 2530, 86, 86, 86, 86, 86, 86, 2529,
86, 2539, 86, 86, 2532, 3815, 86, 86, 2533, 2540,
2535, 2534, 2537, 86, 2541, 2538, 86, 86, 2543, 86,
2536, 2544, 86, 2542, 2546, 2547, 2545, 86, 2549, 86,
2550, 86, 86, 2555, 86, 86, 2557, 86, 2548, 86,
86, 2554, 2551, 86, 2556, 86, 86, 2552, 2561, 2560,
86, 171, 2564, 86, 86, 2566, 2553, 2558, 86, 2559,
2567, 86, 2568, 2562, 2569, 2563, 86, 86, 86, 2570,
86, 2573, 86, 2565, 2572, 2571, 2574, 86, 86, 2575,
86, 2578, 2579, 86, 86, 2580, 86, 86, 2583, 86,
86, 86, 2581, 2576, 86, 2585, 86, 2586, 2587, 86,
2589, 2584, 86, 86, 2577, 2582, 86, 2588, 86, 2591,
86, 2593, 2590, 86, 2592, 86, 86, 86, 2595, 86,
86, 86, 2598, 86, 86, 2604, 86, 86, 2594, 2602,
86, 2597, 86, 86, 2605, 86, 2600, 2599, 2596, 86,
2607, 2601, 2606, 86, 86, 2603, 86, 86, 86, 86,
2608, 2613, 2616, 86, 86, 2611, 86, 2610, 86, 2609,
2614, 86, 2617, 2612, 86, 86, 2615, 86, 2618, 86,
86, 86, 2627, 2628, 86, 2619, 86, 2620, 86, 86,
2629, 86, 2625, 86, 2621, 86, 2623, 2630, 2622, 2632,
2624, 86, 2626, 2633, 86, 2631, 2634, 2635, 86, 2636,
86, 86, 86, 2637, 86, 86, 2642, 2643, 86, 2639,
86, 86, 2644, 86, 2638, 3815, 2640, 2641, 2645, 86,
86, 86, 2649, 2651, 86, 2650, 2646, 86, 2647, 86,
2652, 86, 2654, 2648, 86, 2657, 86, 2658, 86, 86,
86, 86, 2653, 2655, 2659, 2660, 2656, 86, 86, 2664,
86, 2665, 86, 86, 2667, 86, 86, 2669, 86, 86,
2663, 2661, 86, 86, 2671, 2672, 86, 2662, 2673, 86,
86, 86, 2666, 86, 2668, 86, 2676, 2670, 2678, 86,
2675, 86, 2680, 86, 2674, 2682, 86, 86, 2681, 86,
2677, 2684, 86, 86, 86, 2679, 86, 86, 2686, 2688,
2687, 86, 2689, 2691, 86, 86, 2683, 2685, 86, 86,
2694, 86, 2697, 86, 86, 2698, 2692, 2690, 86, 86,
2693, 86, 86, 86, 2695, 2704, 86, 2703, 86, 86,
2696, 86, 86, 2700, 2699, 86, 2706, 2702, 86, 2707,
86, 2709, 2701, 86, 2708, 2711, 86, 2705, 86, 86,
2713, 86, 2712, 86, 86, 2710, 2715, 86, 2719, 86,
86, 2721, 2714, 2720, 2725, 86, 2717, 2716, 2722, 86,
86, 86, 2726, 86, 2727, 86, 2728, 86, 2729, 2718,
86, 86, 86, 2723, 86, 2724, 2734, 86, 86, 86,
2731, 2733, 2736, 2737, 2738, 86, 86, 2740, 2741, 86,
2730, 2732, 2744, 86, 86, 86, 86, 86, 86, 86,
2735, 2739, 2745, 86, 2743, 86, 2742, 86, 2746, 2748,
2749, 86, 86, 86, 2751, 86, 86, 2756, 86, 2750,
2747, 2752, 2753, 86, 2754, 2755, 2757, 86, 86, 86,
2762, 2758, 86, 2763, 86, 2764, 2759, 2761, 2760, 86,
86, 86, 2767, 2765, 86, 171, 86, 86, 86, 2766,
2768, 2773, 86, 86, 86, 86, 86, 2775, 86, 2776,
86, 86, 2771, 2772, 2769, 86, 2770, 2777, 2774, 86,
86, 86, 2778, 2779, 2781, 2782, 2847, 2780, 2785, 86,
2783, 2784, 2786, 86, 86, 2787, 2788, 86, 86, 86,
2791, 2789, 2792, 86, 2790, 86, 86, 86, 86, 2794,
86, 86, 2793, 86, 2796, 86, 86, 2800, 2801, 2795,
86, 2798, 86, 2797, 86, 2803, 86, 86, 86, 86,
2804, 2805, 2806, 86, 2799, 86, 2802, 86, 2809, 86,
2807, 86, 2808, 2813, 86, 2812, 86, 2811, 2810, 86,
86, 86, 86, 86, 2815, 86, 86, 86, 2823, 2814,
2820, 86, 2822, 86, 86, 86, 2825, 2819, 86, 2824,
2816, 2817, 2818, 86, 2826, 2821, 86, 86, 86, 2827,
2832, 86, 2830, 86, 86, 86, 2836, 2828, 2835, 3815,
86, 2837, 86, 86, 86, 2829, 2833, 86, 2838, 2831,
86, 2834, 2839, 2840, 86, 86, 2843, 2841, 86, 86,
2845, 2844, 86, 86, 86, 2846, 2848, 86, 2842, 86,
2850, 2851, 2852, 86, 2854, 86, 86, 86, 86, 2856,
86, 86, 86, 86, 86, 2853, 2855, 86, 2860, 86,
2849, 86, 86, 3815, 2857, 2858, 86, 2864, 2859, 2866,
86, 2865, 2867, 86, 86, 2862, 86, 2868, 86, 2869,
2861, 86, 2863, 86, 86, 2870, 2873, 86, 86, 86,
2871, 2875, 2878, 86, 86, 86, 86, 2874, 2872, 2876,
2882, 2877, 2881, 86, 2880, 86, 86, 2885, 86, 86,
2879, 86, 2886, 2887, 86, 86, 86, 2892, 86, 86,
2884, 2883, 2893, 86, 2894, 86, 86, 86, 86, 86,
86, 2899, 2898, 2888, 2889, 2890, 2891, 2896, 86, 2897,
86, 86, 86, 2895, 2900, 2903, 86, 2907, 86, 86,
86, 86, 2901, 2902, 2906, 2909, 86, 2910, 86, 2911,
86, 86, 2904, 2912, 86, 2908, 2905, 86, 86, 2913,
86, 2916, 86, 2915, 86, 2917, 86, 2918, 86, 2914,
86, 86, 3815, 86, 2919, 2923, 2925, 86, 86, 2927,
86, 86, 2921, 2928, 86, 2930, 86, 86, 2920, 2924,
86, 2922, 2929, 86, 86, 86, 86, 2926, 86, 2931,
2932, 2935, 2933, 2938, 86, 2940, 86, 86, 86, 86,
86, 86, 86, 171, 2934, 2936, 2939, 86, 2937, 86,
86, 2947, 86, 2943, 86, 2948, 2945, 86, 2949, 2942,
86, 2950, 86, 86, 2941, 2944, 2955, 86, 2953, 2946,
86, 86, 3815, 2957, 86, 2951, 2954, 2952, 86, 2959,
2961, 86, 86, 2960, 86, 2958, 2956, 2962, 86, 86,
2963, 86, 2964, 86, 2965, 2967, 86, 86, 86, 86,
2966, 86, 86, 86, 86, 86, 86, 86, 2976, 86,
86, 86, 2969, 2974, 3815, 2968, 2992, 2971, 2970, 86,
2980, 2978, 2973, 2972, 86, 2975, 86, 2977, 2979, 86,
2981, 2982, 86, 2984, 86, 2986, 86, 86, 2983, 2988,
86, 86, 86, 2985, 86, 86, 2987, 2989, 86, 86,
86, 86, 3000, 86, 86, 2998, 3815, 86, 86, 2990,
2991, 2996, 2994, 2993, 2999, 3001, 86, 2995, 86, 2997,
86, 86, 3005, 86, 3002, 3007, 3003, 3004, 3006, 86,
86, 86, 86, 86, 86, 86, 3008, 86, 3009, 3013,
3014, 86, 86, 86, 86, 3010, 3815, 3012, 86, 86,
86, 3011, 3022, 86, 3018, 3015, 86, 3016, 3021, 3019,
3023, 86, 3017, 86, 3020, 3024, 3025, 86, 3026, 86,
86, 86, 86, 86, 86, 3028, 86, 3031, 3027, 3033,
86, 86, 3029, 86, 86, 86, 3038, 3039, 86, 86,
86, 3030, 86, 3032, 3042, 86, 3034, 86, 86, 3035,
3040, 3036, 3037, 3043, 86, 3044, 86, 3041, 3045, 86,
3049, 86, 3046, 3047, 86, 3048, 3050, 86, 3053, 86,
86, 86, 86, 86, 3051, 86, 3058, 86, 86, 3052,
86, 3056, 86, 3059, 3061, 86, 3062, 3060, 3063, 86,
3054, 3055, 3065, 86, 86, 3057, 86, 86, 86, 3066,
86, 3064, 3071, 86, 86, 3067, 86, 3073, 86, 86,
3069, 3076, 86, 3068, 86, 86, 86, 3074, 3083, 86,
3070, 86, 86, 86, 86, 3072, 86, 3077, 3078, 3079,
3080, 3075, 3081, 3082, 3086, 86, 86, 86, 86, 86,
86, 3085, 3084, 3087, 3088, 3090, 86, 86, 86, 86,
3089, 86, 86, 86, 3091, 3094, 3092, 3093, 3096, 86,
86, 3099, 86, 86, 3095, 3097, 3098, 3100, 86, 86,
3104, 3102, 3103, 171, 3101, 86, 86, 3106, 3108, 3815,
3105, 86, 86, 3110, 86, 86, 3109, 86, 3113, 86,
3114, 86, 3112, 86, 3107, 3116, 86, 3118, 86, 86,
3111, 3117, 3119, 86, 3120, 86, 3115, 86, 3123, 86,
3121, 86, 86, 3124, 86, 86, 3125, 86, 86, 86,
3130, 3122, 3131, 86, 3126, 3128, 86, 3127, 86, 86,
3135, 3133, 3134, 86, 3132, 86, 86, 86, 86, 3129,
3136, 3137, 3139, 86, 86, 86, 86, 86, 3138, 3140,
3141, 86, 86, 3146, 86, 86, 3144, 86, 86, 3143,
3145, 3142, 3148, 3147, 86, 3151, 86, 86, 86, 3149,
86, 86, 3152, 3150, 3157, 86, 3153, 86, 86, 86,
3162, 86, 86, 86, 3158, 86, 86, 3154, 3155, 3156,
3160, 3161, 3166, 86, 3164, 86, 86, 3159, 3163, 86,
86, 3165, 3171, 86, 3170, 86, 3173, 3174, 86, 3177,
86, 3168, 86, 86, 3167, 86, 3178, 86, 86, 3169,
86, 86, 86, 86, 86, 86, 3179, 3175, 3176, 3181,
3172, 3182, 3184, 86, 3183, 86, 3185, 86, 86, 3186,
3190, 3187, 3189, 86, 86, 3180, 86, 3191, 3193, 86,
86, 3188, 3195, 86, 3196, 86, 3197, 86, 86, 86,
86, 86, 3192, 3198, 86, 3199, 86, 3200, 3201, 86,
86, 3203, 3205, 3194, 86, 86, 3204, 3206, 86, 86,
3815, 3202, 3207, 86, 3211, 3212, 86, 3213, 86, 3214,
86, 86, 86, 86, 3208, 3209, 3215, 3218, 86, 3210,
86, 86, 3221, 86, 3216, 3217, 86, 3222, 3223, 86,
86, 3225, 86, 86, 86, 86, 3229, 86, 3219, 3230,
86, 3220, 86, 86, 3232, 3224, 3226, 3231, 86, 3228,
86, 3234, 3227, 3233, 86, 86, 3235, 86, 86, 3240,
3236, 86, 86, 86, 3239, 86, 3242, 3243, 86, 86,
86, 86, 86, 3246, 3237, 3238, 3244, 3245, 86, 86,
3249, 3248, 86, 86, 86, 86, 3241, 3252, 3247, 3250,
3251, 3256, 86, 86, 86, 86, 86, 3258, 86, 3255,
86, 3253, 3268, 86, 3254, 3259, 3262, 3257, 3263, 3260,
86, 3265, 86, 3264, 86, 3261, 3266, 86, 86, 3267,
86, 3269, 86, 3270, 86, 3271, 86, 3272, 86, 3273,
86, 86, 3276, 86, 3274, 3275, 3277, 86, 86, 86,
3278, 86, 3280, 86, 3282, 86, 86, 3279, 3287, 86,
3283, 3288, 86, 86, 86, 86, 3289, 3281, 3291, 86,
86, 3292, 86, 3284, 3815, 3285, 3286, 3293, 86, 3290,
3295, 86, 3297, 86, 86, 3296, 3299, 86, 3294, 3298,
86, 86, 3302, 86, 86, 86, 86, 3306, 86, 3300,
3301, 3307, 86, 3303, 3304, 86, 86, 86, 86, 3308,
86, 86, 3314, 86, 3305, 3309, 86, 3315, 86, 3311,
86, 86, 3317, 86, 3318, 3312, 3310, 86, 3320, 3316,
86, 3313, 3321, 86, 3323, 86, 3319, 86, 86, 3327,
86, 3322, 3328, 86, 3324, 86, 3330, 86, 86, 86,
86, 86, 86, 86, 3329, 3333, 3326, 3336, 3334, 3331,
86, 86, 3325, 86, 86, 3337, 3339, 86, 3341, 3340,
86, 3335, 86, 3332, 86, 86, 86, 3343, 3815, 3342,
86, 3338, 86, 3346, 3348, 86, 3347, 3344, 86, 3345,
3349, 86, 3350, 86, 86, 86, 3352, 3351, 3355, 3353,
3354, 86, 86, 86, 86, 86, 3356, 3357, 3358, 86,
86, 86, 3359, 3364, 86, 3360, 3362, 3366, 86, 86,
86, 86, 86, 86, 3367, 86, 3361, 3368, 3363, 86,
3369, 86, 3370, 86, 3375, 86, 86, 86, 3372, 3365,
3371, 86, 86, 86, 3373, 86, 3379, 86, 86, 3376,
3377, 86, 3380, 3374, 3378, 86, 3383, 86, 86, 3387,
3384, 3381, 86, 86, 86, 86, 3382, 3391, 86, 3392,
86, 3385, 3388, 3394, 86, 86, 86, 3386, 3395, 86,
3389, 3397, 3398, 86, 3393, 3399, 86, 86, 3396, 86,
3390, 3401, 86, 86, 86, 86, 86, 3400, 3404, 86,
3406, 3407, 86, 3402, 86, 3403, 3410, 86, 3409, 86,
3405, 86, 86, 3412, 86, 86, 3408, 86, 3414, 3418,
86, 86, 3419, 3415, 86, 3421, 3413, 3411, 86, 3422,
3416, 86, 86, 3417, 86, 3425, 86, 3426, 86, 86,
86, 3420, 3429, 86, 86, 86, 86, 86, 86, 86,
86, 3434, 3450, 3432, 3423, 3427, 3431, 86, 86, 3428,
3424, 3436, 3430, 3438, 86, 86, 3433, 3435, 3440, 86,
3437, 86, 3441, 3439, 86, 3442, 86, 86, 3445, 3446,
86, 3448, 86, 3443, 86, 3447, 86, 86, 3451, 86,
86, 3452, 3454, 86, 86, 3449, 3444, 86, 86, 3457,
86, 86, 86, 86, 3462, 86, 3458, 86, 86, 3453,
3455, 3456, 3466, 86, 86, 3459, 3461, 3465, 3467, 86,
3815, 3463, 86, 3464, 3468, 86, 3460, 3469, 3470, 86,
3472, 86, 3473, 86, 3471, 3474, 86, 86, 3476, 86,
86, 86, 3479, 86, 86, 86, 3475, 86, 86, 3480,
3481, 86, 86, 3477, 3483, 86, 3484, 86, 86, 3482,
86, 86, 3490, 86, 3485, 3491, 86, 3478, 86, 3486,
86, 86, 86, 86, 3487, 3497, 86, 3488, 3498, 86,
86, 3496, 3489, 86, 3494, 86, 86, 3493, 3501, 3492,
3499, 3495, 86, 3502, 86, 86, 86, 3504, 3500, 86,
3505, 3509, 3503, 3507, 86, 3511, 3506, 3508, 86, 86,
86, 86, 86, 3510, 3514, 86, 86, 3515, 3513, 86,
3516, 3512, 86, 86, 3517, 86, 86, 86, 86, 86,
3520, 86, 86, 3522, 86, 86, 3523, 86, 3521, 86,
86, 86, 3518, 3519, 86, 3532, 3533, 86, 3524, 3815,
3528, 3525, 3526, 3527, 3529, 3530, 3535, 86, 86, 3815,
3531, 86, 86, 3536, 3534, 86, 86, 3537, 3538, 86,
3539, 3540, 86, 3541, 86, 86, 3543, 3544, 86, 3542,
86, 3547, 86, 86, 3561, 3545, 3549, 86, 3546, 3550,
3551, 86, 86, 3552, 3553, 3557, 86, 86, 3548, 3554,
86, 3555, 3556, 86, 86, 86, 3559, 86, 3558, 3560,
86, 3563, 86, 86, 3564, 86, 86, 3568, 86, 3562,
86, 3567, 86, 86, 86, 86, 86, 3565, 86, 3573,
86, 3572, 86, 3635, 86, 3566, 86, 3574, 3569, 3577,
86, 3575, 3570, 3578, 86, 3579, 86, 3580, 3571, 86,
3576, 3581, 86, 3582, 86, 3583, 86, 86, 3587, 3589,
86, 3584, 86, 3588, 86, 86, 3585, 86, 86, 3586,
86, 3815, 3593, 3594, 3590, 3591, 3596, 86, 3597, 86,
3599, 86, 86, 3592, 86, 3598, 3600, 86, 86, 3595,
3603, 86, 86, 3602, 3605, 86, 86, 3601, 86, 3608,
86, 3609, 86, 3610, 86, 3606, 3604, 3611, 86, 3612,
86, 3613, 86, 3614, 86, 86, 3607, 3615, 86, 86,
3618, 86, 3619, 86, 86, 86, 86, 86, 3617, 3624,
86, 86, 86, 3620, 3626, 86, 86, 3621, 86, 86,
86, 3616, 3623, 86, 3630, 86, 3622, 3627, 86, 3628,
3625, 3629, 3631, 86, 3640, 3632, 3633, 86, 86, 3637,
86, 86, 86, 3634, 3636, 3639, 3638, 86, 86, 86,
86, 86, 3642, 86, 86, 3641, 86, 3646, 3648, 86,
3650, 86, 3647, 86, 86, 3645, 86, 3643, 3644, 3653,
86, 3649, 86, 3654, 3656, 86, 3657, 86, 86, 3655,
3658, 86, 86, 3652, 3659, 86, 86, 3651, 86, 86,
3662, 3661, 86, 86, 86, 3660, 86, 3670, 3663, 3667,
86, 86, 3664, 3666, 86, 86, 3668, 86, 3669, 86,
86, 86, 3665, 3671, 86, 86, 86, 86, 86, 3677,
3672, 3679, 86, 3673, 86, 3674, 3676, 3678, 86, 3681,
3684, 86, 3675, 3682, 86, 3680, 86, 3683, 3687, 3686,
3689, 86, 3685, 86, 3691, 86, 86, 3692, 3693, 86,
3694, 86, 3690, 86, 86, 86, 3688, 86, 3697, 86,
86, 86, 3698, 3702, 3699, 86, 86, 86, 86, 86,
3706, 86, 3695, 3705, 3696, 86, 3701, 86, 3704, 3703,
3708, 86, 3709, 86, 86, 3700, 86, 3707, 3710, 86,
3711, 86, 3712, 86, 3713, 3714, 86, 3717, 86, 3715,
86, 3718, 86, 3721, 3716, 3722, 86, 86, 86, 86,
3719, 86, 3720, 86, 3727, 86, 3728, 86, 3726, 86,
3723, 3724, 86, 86, 86, 86, 3725, 86, 3732, 86,
86, 86, 3734, 86, 86, 86, 86, 3731, 86, 3739,
3729, 3740, 3730, 3736, 3737, 3733, 3741, 86, 3735, 86,
3745, 86, 3738, 86, 3747, 3742, 3743, 86, 3746, 86,
86, 86, 3748, 3753, 3749, 86, 86, 86, 3744, 86,
3750, 3751, 3754, 86, 86, 86, 3752, 3756, 86, 3755,
86, 86, 3759, 86, 3757, 3762, 3758, 86, 86, 86,
3765, 86, 3766, 86, 86, 86, 86, 86, 86, 3769,
3760, 3764, 3761, 86, 3767, 86, 3763, 3768, 86, 3773,
3774, 3772, 86, 86, 3777, 3770, 3771, 86, 86, 3779,
86, 3780, 86, 86, 86, 3775, 86, 3781, 86, 3776,
3782, 3784, 86, 3785, 86, 86, 3778, 3786, 3787, 86,
86, 3788, 86, 3783, 86, 3790, 86, 3789, 86, 3791,
3793, 86, 86, 3795, 86, 86, 86, 3796, 86, 3799,
86, 3792, 3800, 86, 86, 3794, 86, 3803, 3804, 86,
86, 3805, 86, 3797, 3798, 3801, 3806, 86, 86, 3802,
3807, 86, 86, 86, 3815, 3808, 3815, 3809, 3810, 3811,
3815, 3812, 3813, 86, 3814, 86, 47, 47, 47, 47,
47, 47, 47, 52, 52, 52, 52, 52, 52, 52,
57, 57, 57, 57, 57, 57, 57, 63, 63, 63,
63, 63, 63, 63, 68, 68, 68, 68, 68, 68,
68, 74, 74, 74, 74, 74, 74, 74, 80, 80,
80, 80, 80, 80, 80, 89, 89, 3815, 89, 89,
89, 89, 161, 161, 3815, 3815, 3815, 161, 161, 163,
163, 3815, 3815, 163, 3815, 163, 165, 3815, 3815, 3815,
3815, 3815, 165, 168, 168, 3815, 3815, 3815, 168, 168,
170, 3815, 3815, 3815, 3815, 3815, 170, 172, 172, 3815,
172, 172, 172, 172, 175, 3815, 3815, 3815, 3815, 3815,
175, 178, 178, 3815, 3815, 3815, 178, 178, 90, 90,
3815, 90, 90, 90, 90, 17, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815
} ;
static yyconst flex_int16_t yy_chk[7477] =
{ 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, 24, 4, 24, 24, 5, 24, 6,
7, 7, 7, 7, 24, 7, 8, 8, 8, 8,
33, 8, 7, 9, 9, 9, 26, 26, 8, 10,
10, 10, 19, 29, 9, 33, 19, 29, 3823, 35,
10, 11, 11, 11, 11, 11, 11, 13, 13, 13,
13, 34, 13, 11, 35, 100, 34, 29, 38, 13,
51, 51, 11, 12, 12, 12, 12, 12, 12, 14,
14, 14, 14, 100, 14, 12, 15, 15, 15, 38,
23, 14, 23, 23, 12, 23, 3103, 15, 16, 16,
16, 23, 23, 27, 27, 30, 30, 31, 31, 16,
25, 27, 130, 25, 25, 27, 31, 25, 27, 32,
30, 46, 25, 32, 25, 130, 32, 31, 40, 45,
45, 25, 28, 32, 45, 32, 46, 28, 45, 36,
36, 28, 40, 96, 28, 44, 28, 28, 36, 44,
37, 37, 112, 56, 36, 37, 56, 28, 36, 44,
41, 41, 96, 44, 44, 41, 67, 67, 95, 37,
112, 37, 39, 39, 42, 41, 41, 39, 41, 42,
95, 39, 42, 43, 43, 73, 43, 39, 187, 42,
39, 84, 84, 42, 42, 43, 187, 39, 152, 73,
62, 43, 62, 62, 70, 62, 70, 70, 72, 70,
72, 72, 79, 72, 79, 79, 70, 79, 86, 152,
86, 86, 87, 86, 97, 89, 87, 89, 89, 86,
89, 92, 102, 94, 92, 93, 89, 89, 98, 93,
94, 98, 99, 101, 97, 99, 102, 102, 103, 104,
105, 106, 101, 1199, 103, 107, 110, 108, 99, 109,
103, 107, 103, 113, 109, 114, 111, 104, 104, 114,
106, 108, 105, 109, 107, 115, 110, 111, 111, 116,
117, 113, 119, 118, 116, 111, 118, 120, 119, 118,
122, 121, 126, 122, 117, 115, 121, 122, 123, 126,
124, 125, 118, 118, 128, 125, 120, 119, 127, 129,
131, 128, 137, 122, 124, 132, 121, 123, 129, 132,
133, 127, 123, 134, 135, 139, 136, 134, 127, 141,
131, 136, 137, 138, 138, 136, 140, 142, 133, 143,
140, 136, 135, 144, 141, 139, 144, 145, 178, 140,
146, 150, 147, 148, 148, 140, 146, 144, 143, 146,
145, 144, 149, 142, 147, 151, 153, 150, 154, 149,
154, 148, 156, 155, 148, 157, 158, 156, 159, 154,
149, 160, 153, 159, 151, 155, 198, 157, 162, 162,
164, 154, 198, 164, 158, 160, 166, 174, 166, 166,
174, 166, 169, 169, 171, 182, 171, 171, 172, 171,
172, 172, 176, 172, 176, 176, 180, 176, 179, 179,
172, 180, 181, 182, 183, 184, 185, 186, 181, 189,
188, 190, 191, 193, 185, 192, 190, 181, 186, 183,
195, 185, 193, 216, 189, 196, 192, 194, 184, 188,
196, 202, 191, 194, 194, 197, 197, 199, 204, 199,
200, 216, 199, 202, 200, 195, 201, 201, 205, 200,
203, 208, 207, 205, 200, 203, 203, 204, 206, 199,
200, 200, 209, 206, 207, 210, 212, 211, 209, 210,
213, 208, 211, 214, 215, 217, 218, 221, 220, 222,
217, 218, 212, 220, 213, 230, 215, 227, 214, 215,
271, 209, 219, 219, 223, 222, 219, 221, 219, 225,
223, 224, 224, 226, 271, 225, 230, 227, 228, 226,
219, 225, 219, 229, 228, 231, 233, 232, 233, 229,
234, 231, 232, 235, 236, 241, 234, 235, 229, 237,
236, 237, 238, 239, 240, 242, 237, 243, 238, 244,
240, 242, 246, 245, 247, 241, 239, 248, 250, 247,
243, 245, 249, 251, 254, 246, 248, 253, 256, 243,
252, 261, 253, 244, 250, 252, 252, 249, 258, 257,
255, 259, 254, 251, 255, 257, 263, 260, 263, 262,
256, 261, 259, 260, 262, 264, 258, 258, 265, 268,
266, 267, 269, 270, 277, 265, 266, 267, 269, 272,
272, 273, 273, 274, 264, 270, 275, 279, 268, 274,
278, 276, 275, 276, 280, 278, 281, 277, 282, 279,
283, 284, 297, 285, 281, 283, 286, 274, 285, 287,
276, 288, 286, 280, 289, 287, 288, 290, 282, 289,
291, 293, 292, 290, 284, 294, 295, 297, 299, 296,
302, 299, 298, 302, 294, 291, 292, 296, 298, 293,
295, 300, 303, 300, 301, 301, 304, 304, 305, 305,
306, 308, 307, 307, 308, 309, 310, 312, 314, 309,
303, 311, 316, 315, 314, 310, 306, 307, 316, 317,
311, 317, 318, 320, 320, 319, 312, 315, 318, 319,
321, 322, 323, 324, 325, 321, 327, 322, 323, 326,
328, 328, 329, 330, 331, 329, 319, 332, 331, 327,
333, 335, 325, 324, 334, 334, 336, 323, 337, 336,
326, 330, 340, 342, 339, 338, 332, 339, 333, 335,
337, 338, 342, 343, 340, 344, 336, 341, 348, 346,
344, 341, 346, 353, 353, 351, 341, 347, 351, 341,
348, 343, 360, 360, 341, 341, 341, 341, 345, 355,
347, 345, 349, 345, 349, 349, 350, 352, 354, 356,
352, 350, 350, 357, 355, 345, 345, 345, 358, 345,
359, 361, 362, 362, 356, 354, 361, 358, 354, 359,
357, 357, 363, 363, 364, 365, 366, 367, 368, 370,
369, 366, 371, 372, 372, 374, 372, 375, 371, 367,
365, 377, 375, 380, 370, 372, 377, 368, 376, 364,
369, 378, 372, 381, 376, 374, 378, 380, 379, 381,
383, 379, 378, 379, 382, 384, 384, 382, 385, 383,
386, 386, 387, 390, 385, 391, 392, 387, 391, 393,
382, 177, 403, 382, 394, 382, 388, 388, 397, 388,
399, 392, 400, 390, 393, 388, 391, 396, 394, 388,
396, 400, 397, 403, 388, 399, 404, 388, 389, 389,
175, 389, 401, 402, 406, 405, 396, 401, 401, 402,
407, 411, 408, 406, 389, 404, 402, 389, 408, 389,
405, 389, 398, 410, 398, 398, 409, 414, 412, 407,
170, 411, 414, 413, 398, 398, 398, 398, 398, 413,
415, 398, 412, 413, 409, 416, 417, 418, 419, 410,
414, 420, 418, 419, 422, 422, 421, 423, 424, 425,
415, 417, 421, 426, 427, 416, 420, 428, 431, 426,
424, 429, 432, 425, 433, 434, 429, 423, 430, 430,
435, 430, 436, 428, 436, 441, 441, 444, 431, 427,
433, 434, 432, 437, 435, 442, 443, 438, 437, 438,
438, 439, 440, 444, 445, 439, 440, 447, 451, 446,
450, 443, 449, 451, 442, 447, 447, 438, 449, 450,
452, 440, 445, 446, 452, 453, 454, 447, 455, 447,
448, 456, 454, 460, 453, 448, 457, 456, 458, 462,
457, 458, 168, 448, 448, 459, 465, 448, 448, 455,
459, 448, 462, 460, 461, 461, 463, 463, 464, 465,
466, 466, 467, 464, 468, 470, 469, 471, 467, 468,
469, 472, 473, 474, 474, 475, 472, 473, 476, 477,
470, 478, 474, 479, 480, 481, 479, 475, 471, 482,
481, 483, 484, 478, 482, 483, 486, 477, 476, 485,
485, 486, 487, 489, 484, 480, 488, 488, 491, 492,
492, 494, 495, 496, 491, 497, 498, 499, 500, 501,
495, 503, 499, 487, 497, 489, 504, 505, 507, 506,
508, 501, 494, 167, 496, 506, 508, 498, 500, 503,
509, 503, 507, 511, 504, 510, 512, 505, 511, 509,
513, 510, 514, 515, 516, 514, 517, 518, 513, 519,
512, 513, 522, 518, 521, 517, 525, 515, 520, 516,
521, 520, 523, 524, 526, 527, 522, 523, 526, 519,
528, 529, 531, 532, 530, 528, 533, 525, 521, 530,
536, 537, 527, 538, 540, 524, 529, 539, 531, 533,
541, 539, 532, 534, 534, 541, 545, 165, 538, 534,
536, 534, 537, 540, 542, 548, 543, 534, 547, 534,
543, 545, 534, 534, 548, 550, 544, 546, 553, 534,
542, 544, 546, 549, 547, 544, 554, 547, 551, 549,
550, 556, 552, 558, 549, 552, 555, 555, 557, 557,
559, 553, 546, 560, 551, 562, 554, 563, 558, 561,
561, 565, 559, 566, 564, 567, 556, 568, 560, 564,
565, 571, 570, 568, 562, 571, 574, 575, 573, 563,
567, 570, 566, 572, 573, 576, 577, 572, 574, 578,
579, 580, 575, 581, 582, 578, 583, 581, 583, 584,
577, 588, 585, 163, 576, 579, 591, 582, 587, 580,
585, 586, 586, 588, 587, 589, 590, 592, 591, 593,
592, 589, 590, 584, 594, 595, 596, 597, 598, 596,
595, 620, 599, 593, 600, 620, 597, 599, 599, 594,
601, 601, 609, 597, 598, 604, 597, 600, 602, 602,
603, 604, 603, 605, 605, 606, 606, 607, 610, 608,
609, 611, 613, 607, 608, 608, 612, 613, 614, 612,
615, 616, 617, 611, 616, 618, 619, 617, 615, 610,
621, 622, 624, 626, 623, 625, 621, 614, 623, 628,
625, 627, 627, 629, 630, 619, 631, 626, 618, 630,
624, 622, 632, 633, 628, 634, 636, 635, 638, 639,
639, 634, 635, 637, 629, 631, 637, 640, 632, 645,
636, 637, 641, 633, 637, 637, 638, 642, 643, 644,
647, 648, 642, 643, 645, 640, 647, 650, 641, 649,
648, 650, 649, 644, 652, 651, 654, 653, 656, 652,
653, 654, 655, 657, 658, 660, 659, 661, 661, 663,
657, 659, 662, 650, 651, 664, 656, 658, 655, 665,
664, 662, 666, 667, 668, 660, 669, 672, 663, 670,
672, 671, 674, 668, 677, 670, 666, 671, 669, 667,
665, 673, 673, 675, 673, 676, 675, 678, 674, 679,
676, 680, 677, 681, 682, 686, 680, 683, 684, 688,
682, 678, 683, 679, 684, 685, 687, 694, 685, 690,
691, 687, 681, 689, 161, 688, 692, 697, 689, 689,
686, 692, 690, 691, 693, 695, 694, 696, 692, 708,
693, 708, 696, 699, 695, 692, 692, 697, 698, 698,
699, 700, 701, 702, 703, 701, 704, 705, 700, 702,
707, 704, 705, 705, 706, 706, 703, 709, 711, 712,
701, 704, 710, 713, 710, 714, 715, 716, 717, 718,
722, 719, 723, 718, 717, 707, 709, 712, 720, 711,
719, 713, 721, 714, 725, 715, 724, 716, 722, 724,
726, 723, 727, 720, 728, 729, 726, 721, 724, 725,
730, 731, 732, 741, 735, 733, 734, 729, 728, 733,
736, 737, 727, 738, 739, 742, 742, 741, 740, 730,
735, 732, 731, 740, 734, 744, 745, 743, 736, 737,
737, 743, 738, 739, 747, 746, 748, 749, 750, 744,
752, 748, 751, 754, 753, 745, 746, 752, 747, 753,
754, 755, 758, 749, 756, 751, 757, 750, 759, 756,
760, 757, 761, 762, 85, 759, 763, 764, 766, 760,
758, 766, 762, 764, 765, 755, 761, 767, 763, 765,
768, 767, 769, 770, 771, 772, 773, 771, 774, 774,
776, 769, 775, 775, 768, 776, 776, 777, 770, 772,
778, 775, 777, 780, 781, 782, 783, 773, 784, 778,
781, 785, 784, 786, 787, 788, 791, 789, 792, 793,
790, 788, 780, 785, 782, 789, 783, 790, 799, 804,
796, 799, 787, 800, 791, 804, 806, 831, 786, 793,
831, 807, 803, 792, 794, 796, 794, 807, 808, 794,
800, 803, 809, 794, 813, 810, 794, 808, 806, 810,
811, 811, 814, 794, 794, 813, 794, 815, 809, 812,
812, 816, 817, 823, 820, 819, 821, 823, 817, 820,
814, 815, 822, 824, 845, 825, 829, 827, 845, 825,
830, 816, 818, 818, 818, 819, 818, 821, 826, 818,
822, 829, 857, 826, 818, 825, 827, 824, 857, 828,
818, 818, 832, 818, 828, 830, 833, 832, 832, 834,
834, 835, 836, 833, 837, 837, 838, 836, 840, 839,
843, 838, 839, 840, 841, 841, 835, 842, 844, 842,
846, 848, 843, 847, 849, 849, 850, 851, 854, 848,
852, 853, 853, 855, 856, 859, 859, 844, 858, 865,
846, 850, 847, 858, 852, 855, 854, 851, 860, 864,
862, 863, 866, 860, 860, 862, 856, 863, 865, 867,
870, 868, 869, 870, 871, 867, 868, 864, 869, 872,
871, 875, 866, 873, 873, 874, 874, 872, 876, 877,
878, 880, 881, 879, 883, 878, 876, 879, 880, 875,
882, 884, 884, 885, 887, 887, 886, 877, 889, 888,
881, 890, 885, 883, 886, 888, 882, 894, 892, 893,
895, 901, 897, 80, 896, 900, 889, 892, 893, 896,
890, 897, 899, 898, 902, 895, 898, 899, 903, 900,
905, 894, 904, 902, 906, 906, 901, 904, 904, 907,
908, 903, 909, 910, 905, 911, 912, 916, 914, 912,
914, 909, 915, 915, 907, 917, 918, 912, 920, 908,
917, 919, 921, 911, 922, 923, 919, 910, 916, 925,
924, 926, 927, 75, 928, 926, 931, 918, 920, 924,
930, 929, 921, 932, 933, 923, 922, 929, 931, 930,
927, 934, 925, 928, 935, 937, 936, 938, 940, 932,
935, 941, 938, 933, 936, 934, 939, 939, 943, 937,
942, 945, 944, 946, 947, 74, 948, 940, 949, 942,
944, 941, 955, 950, 951, 952, 953, 954, 943, 950,
951, 945, 953, 947, 956, 946, 948, 957, 949, 952,
956, 954, 955, 957, 958, 959, 960, 961, 958, 962,
963, 963, 961, 964, 965, 967, 968, 969, 960, 964,
965, 970, 966, 969, 959, 966, 960, 971, 971, 968,
962, 972, 973, 967, 975, 974, 979, 973, 974, 975,
975, 970, 976, 977, 978, 978, 980, 977, 981, 972,
982, 974, 983, 974, 985, 982, 986, 976, 979, 987,
990, 989, 991, 981, 993, 1427, 980, 994, 994, 993,
986, 983, 995, 987, 989, 996, 995, 998, 985, 1000,
990, 997, 997, 991, 992, 1001, 1002, 992, 1427, 992,
996, 1002, 999, 992, 1000, 992, 999, 999, 1003, 1001,
992, 1004, 998, 1006, 1005, 992, 1004, 1004, 1008, 1010,
1007, 1011, 1003, 1005, 1007, 1009, 1011, 1006, 1012, 1014,
1009, 1010, 1015, 1008, 1013, 1013, 1007, 1018, 1016, 1017,
1009, 1025, 1012, 1018, 1017, 1020, 1015, 1016, 1019, 1021,
1014, 1020, 1024, 1019, 1023, 1021, 1022, 1022, 1024, 1023,
1026, 1029, 1027, 1025, 1030, 1032, 1033, 1033, 68, 1030,
1031, 1034, 1036, 1029, 1037, 1035, 1034, 1032, 1038, 1026,
1027, 1028, 1028, 1035, 1031, 1039, 1036, 1028, 1042, 1028,
1037, 1040, 1038, 1041, 1042, 1028, 1044, 1043, 1045, 1046,
1028, 1028, 1043, 1047, 1039, 1048, 1051, 1028, 1044, 1041,
1040, 1049, 1049, 1050, 1053, 1046, 1045, 1050, 1055, 1054,
1053, 1047, 1054, 1048, 1056, 1057, 1051, 1058, 1060, 1056,
1059, 1062, 1063, 1058, 1064, 1059, 1065, 1055, 1057, 1066,
1062, 1063, 1065, 1067, 1068, 1069, 1070, 1060, 1066, 1068,
1064, 1071, 1071, 1072, 1073, 1074, 1080, 1076, 1075, 1077,
1070, 1082, 1067, 1076, 1074, 1069, 1073, 1075, 1078, 1083,
1084, 1087, 1080, 1072, 1078, 1082, 1077, 1085, 1086, 1088,
1089, 1090, 1085, 1091, 1086, 63, 1092, 1095, 1091, 1083,
1087, 1092, 1095, 1088, 1096, 1084, 1090, 1097, 1089, 1096,
1098, 1098, 1099, 1100, 1101, 1102, 1097, 1109, 1099, 1100,
1103, 1105, 1106, 1101, 1111, 1108, 1108, 1106, 1106, 1108,
1102, 1110, 1109, 1103, 1110, 1112, 1113, 1105, 1111, 1114,
1115, 1116, 1117, 1118, 1119, 1120, 1114, 1121, 1122, 1118,
1127, 1120, 1113, 1122, 1116, 1112, 1123, 1117, 1115, 1125,
1125, 1130, 1121, 1126, 1119, 1131, 1126, 1128, 1129, 58,
1123, 1127, 1128, 1129, 1131, 1132, 1133, 1130, 1134, 1136,
1132, 1133, 1137, 1138, 1139, 1136, 1140, 1141, 1141, 1138,
1134, 1142, 1140, 1143, 1144, 1145, 1145, 1144, 1137, 1146,
1142, 1147, 1148, 1149, 1151, 1139, 1149, 1152, 1150, 1153,
1151, 1143, 1162, 1152, 1154, 1153, 57, 1146, 1155, 1154,
1147, 1150, 1148, 1155, 1156, 1161, 1157, 1158, 1170, 1160,
1156, 1157, 1162, 1158, 1160, 1163, 1166, 1164, 1165, 1165,
1167, 1163, 1164, 1161, 1169, 1166, 1168, 1170, 1173, 1167,
1171, 1168, 1172, 1171, 1175, 1172, 1174, 1176, 1177, 1173,
1178, 1174, 1169, 1180, 1179, 1183, 1178, 1184, 1181, 1176,
1179, 1185, 1175, 1181, 1182, 1182, 1186, 1177, 1180, 1188,
1189, 1184, 1187, 1185, 1183, 1190, 1187, 1191, 1193, 1189,
1194, 1194, 1195, 1196, 1186, 1198, 1197, 1188, 1196, 1200,
1195, 1197, 1201, 1203, 1190, 1204, 1202, 1193, 1203, 1205,
1206, 1206, 1191, 1200, 1204, 1198, 1207, 1201, 1202, 1208,
1209, 1215, 1210, 1211, 1205, 1208, 1209, 1212, 1213, 1214,
1213, 1216, 1212, 1217, 1214, 1215, 1207, 1210, 1217, 1211,
1218, 1219, 1221, 1220, 1222, 1216, 1220, 1223, 1226, 1221,
1225, 1225, 1227, 1228, 1229, 1218, 1227, 1230, 1231, 1222,
1219, 52, 1226, 1230, 1234, 1232, 1223, 1238, 1234, 1229,
1232, 1228, 1235, 1235, 1238, 1236, 1237, 1237, 1231, 1232,
1236, 1232, 1239, 1240, 1232, 1241, 1240, 1242, 1243, 1245,
1246, 1247, 1248, 1250, 1245, 1249, 1239, 1243, 1248, 1251,
1249, 1252, 1257, 1247, 1241, 1242, 1260, 1250, 1255, 1246,
1251, 1254, 1254, 1255, 1256, 1260, 1258, 1261, 1262, 1256,
1252, 1258, 1257, 1259, 1263, 1264, 1265, 1259, 1264, 1266,
1267, 1268, 1261, 1262, 1269, 1270, 1266, 1264, 1271, 1272,
1273, 1265, 1267, 1263, 1271, 1275, 1274, 1276, 1277, 1278,
1268, 1273, 1274, 1270, 1272, 1269, 1279, 1277, 1280, 1281,
1282, 1283, 1284, 1285, 1278, 1275, 1287, 1276, 1284, 1288,
1280, 1290, 1287, 1289, 1291, 1279, 1283, 1292, 1281, 1290,
1294, 1293, 1296, 1285, 1288, 1282, 1293, 1289, 1297, 1323,
1295, 1298, 1294, 1292, 1291, 1295, 1295, 1299, 1299, 1301,
1302, 1296, 1297, 1323, 1298, 1300, 1300, 1304, 1304, 1302,
1300, 1303, 1301, 1300, 1300, 1305, 1307, 1303, 1300, 1306,
1305, 1308, 1312, 1306, 1300, 1307, 1309, 1308, 1300, 1310,
1315, 1309, 1311, 1311, 1310, 1313, 1313, 1314, 1316, 1317,
1314, 1318, 1314, 1312, 1320, 1317, 1319, 1318, 1321, 1319,
1315, 1324, 1322, 1320, 1325, 1326, 1316, 1322, 1327, 1329,
1325, 1326, 1328, 1329, 1327, 1330, 1331, 1328, 1321, 1324,
1336, 1332, 47, 1333, 1340, 1331, 1332, 1339, 1330, 1338,
1331, 1336, 1331, 1338, 1331, 1341, 1331, 1333, 1334, 1334,
1335, 1335, 1339, 1335, 1340, 1342, 1343, 1344, 1345, 1346,
1347, 1343, 1343, 1341, 1342, 1347, 1344, 1345, 1348, 1349,
1350, 1351, 1352, 1353, 1354, 1354, 1355, 1356, 1349, 1353,
1357, 1346, 1348, 1359, 1360, 1356, 1352, 1358, 1355, 1350,
1351, 1361, 1358, 1360, 1357, 1362, 1363, 1359, 1361, 1364,
1365, 1365, 1366, 1368, 1364, 1367, 1367, 1369, 1368, 1369,
1372, 1371, 1373, 1362, 1371, 1372, 1374, 1366, 1375, 1375,
1376, 1363, 1377, 1377, 1379, 1374, 1378, 1378, 1380, 1379,
1381, 1373, 1382, 1383, 1383, 1384, 1386, 1385, 1387, 1386,
1376, 1388, 1391, 1389, 1391, 1392, 1395, 1388, 1389, 1380,
1390, 1381, 1396, 1382, 1385, 1384, 1398, 1394, 1387, 1390,
1394, 1395, 1397, 1392, 1399, 1396, 1400, 1397, 1401, 1399,
1398, 1403, 1402, 1401, 1400, 1402, 1403, 1404, 1404, 1405,
1406, 1407, 1408, 1409, 1405, 1411, 1412, 1407, 1413, 1408,
1414, 1411, 1412, 1413, 1415, 1414, 1409, 1416, 1406, 1417,
1415, 1418, 1419, 1419, 1420, 1422, 1416, 1423, 1425, 1424,
1422, 1426, 1418, 1434, 1428, 1429, 1430, 1431, 1417, 1424,
1428, 1429, 1430, 1425, 1420, 1423, 1433, 1434, 1431, 1435,
1436, 1426, 1433, 1434, 1437, 1438, 1436, 1439, 1440, 1441,
1441, 1442, 1443, 1445, 1444, 1446, 1448, 1438, 1445, 1435,
1449, 1439, 1447, 1447, 1437, 1449, 1440, 1451, 1452, 1453,
1454, 1442, 1444, 1446, 1453, 1453, 1455, 1443, 1457, 1448,
1458, 1456, 1452, 1459, 1461, 1455, 1451, 18, 1454, 1456,
1463, 1460, 1457, 1461, 1470, 1458, 1460, 1465, 1459, 1460,
1462, 1459, 1462, 1465, 1463, 1466, 1467, 1468, 1469, 1466,
1471, 1472, 1468, 1468, 1473, 1475, 1472, 1467, 1474, 1473,
1470, 1476, 1478, 1474, 1477, 1480, 1481, 1469, 1471, 1477,
1482, 1483, 1483, 1475, 1484, 1485, 1486, 1487, 1484, 1480,
1488, 1476, 1478, 1487, 1481, 1489, 1490, 1492, 1482, 1491,
1494, 1493, 1488, 1485, 1495, 1486, 1498, 1496, 1500, 1495,
17, 1489, 1492, 1491, 1496, 1490, 1493, 1497, 1499, 1494,
1503, 1501, 1497, 1505, 1498, 1502, 1502, 1504, 1509, 1500,
1501, 1507, 1499, 1506, 1506, 1503, 1504, 1507, 1508, 1510,
1510, 1512, 1509, 1505, 1508, 1511, 1511, 1512, 1513, 1514,
1515, 1516, 1517, 1518, 1525, 1515, 0, 1516, 1517, 1518,
1519, 1519, 1520, 1520, 1513, 1522, 1522, 1523, 1524, 1526,
1514, 1523, 1525, 1527, 1528, 1531, 1529, 1524, 1530, 1530,
1532, 1526, 1520, 1529, 1520, 1533, 1534, 1527, 1532, 1528,
1533, 1535, 1536, 1539, 0, 1531, 1537, 1536, 1536, 1538,
1534, 1537, 1537, 1538, 1540, 1540, 1541, 1542, 1543, 1544,
1535, 1545, 1546, 1539, 1544, 1547, 1548, 1543, 1549, 1550,
1551, 1552, 1548, 1549, 1553, 1541, 1542, 1555, 1554, 1556,
1545, 1565, 1546, 1547, 1554, 1556, 1552, 1550, 1557, 1558,
1551, 1560, 1559, 1561, 1557, 1562, 1555, 1563, 1569, 1564,
1553, 1559, 1565, 1566, 1567, 1567, 1568, 1570, 1558, 1568,
1560, 1571, 1561, 1564, 1562, 1576, 1563, 1569, 1566, 1572,
1572, 1573, 1573, 1571, 1574, 1577, 1570, 1575, 1576, 1574,
1578, 1575, 1579, 1582, 1585, 1580, 1586, 1580, 0, 1578,
1577, 1580, 1584, 1583, 1587, 1579, 1583, 1584, 1592, 1585,
1589, 1582, 1588, 1588, 1580, 1589, 1586, 1590, 1591, 1593,
1587, 1592, 1594, 1590, 1595, 1593, 1596, 1594, 1595, 1597,
1596, 1599, 1598, 1591, 1600, 1601, 1602, 1602, 1604, 1606,
1599, 1601, 1607, 1608, 1611, 1606, 1609, 1609, 1608, 1597,
1598, 1610, 1613, 1613, 1600, 1615, 1604, 1610, 1615, 1616,
1616, 1617, 1618, 1607, 1611, 1619, 1621, 1622, 1627, 1621,
1623, 1624, 1625, 1626, 1626, 1628, 1629, 1617, 1618, 1630,
1624, 1619, 1634, 1627, 1630, 1631, 1635, 1632, 1622, 1637,
1623, 1634, 1625, 1632, 1636, 1629, 1628, 1633, 1633, 1631,
1638, 1639, 1639, 1640, 1635, 1641, 1642, 1643, 1646, 1636,
1648, 1642, 1644, 1644, 1637, 1645, 1649, 1640, 1650, 1645,
1638, 1652, 1643, 1641, 1647, 1647, 1651, 1659, 1646, 1650,
1651, 1653, 1648, 1655, 1655, 1649, 1653, 1657, 1656, 1658,
1652, 1656, 1660, 1659, 1658, 1661, 1662, 1663, 1664, 1665,
1657, 1666, 1666, 1670, 1668, 1669, 0, 1667, 1665, 1661,
1660, 1663, 1667, 1671, 1671, 1662, 1662, 1672, 1674, 1675,
1678, 1675, 1670, 1664, 1668, 1669, 1672, 1673, 1676, 1677,
1679, 1682, 1673, 1676, 1680, 1677, 1679, 1684, 1674, 1680,
1678, 1683, 1683, 1685, 1686, 1682, 1688, 1689, 1690, 1690,
1686, 1688, 1691, 1691, 1692, 1693, 1684, 1694, 1695, 1696,
1696, 1695, 1685, 1697, 1698, 1699, 1707, 1703, 1692, 1701,
1703, 1689, 1694, 1693, 1700, 1701, 1698, 1700, 1702, 1705,
1700, 1697, 1706, 1702, 1710, 1699, 1703, 1706, 1705, 0,
1708, 1707, 1700, 1708, 1709, 1709, 1711, 1712, 1718, 1713,
1714, 1714, 1711, 1712, 1713, 1715, 1715, 1716, 1710, 1717,
1719, 1718, 1720, 1716, 1717, 1721, 1722, 1723, 1724, 1722,
1725, 1728, 1726, 1723, 1724, 1732, 1725, 1726, 1719, 1729,
1727, 1720, 1730, 1730, 1729, 1721, 1727, 1731, 1733, 1734,
1735, 1736, 1731, 1732, 1728, 1741, 1737, 1740, 1738, 1739,
1743, 1742, 1743, 1744, 1734, 1742, 1747, 1745, 1733, 1735,
1737, 1736, 1738, 1739, 1745, 1740, 1748, 1749, 1747, 1750,
1741, 1751, 1744, 1752, 1753, 1750, 1754, 1757, 1748, 1755,
1749, 1760, 1755, 1756, 1756, 1765, 1757, 1759, 1759, 1752,
1754, 1751, 1761, 1762, 1753, 1763, 1763, 1761, 1764, 1765,
1755, 1760, 1766, 1767, 1769, 1762, 1768, 1770, 1771, 1772,
1776, 1777, 1774, 1764, 1770, 1768, 0, 1771, 1785, 1769,
1771, 1767, 1779, 1779, 1782, 1772, 1766, 1774, 1776, 1781,
1778, 1785, 1774, 1778, 1780, 1780, 1777, 1783, 1784, 1784,
1783, 1781, 1782, 1786, 1787, 1788, 1790, 1791, 1789, 1787,
1788, 1789, 1791, 1792, 1793, 1794, 1795, 1796, 1797, 1798,
1800, 1800, 1786, 1802, 1794, 1799, 1796, 1790, 1798, 1796,
1793, 1799, 1792, 1801, 1803, 1795, 1804, 1805, 1812, 1806,
1801, 1808, 1797, 1802, 1807, 1809, 1808, 1803, 1813, 1807,
1807, 1805, 1814, 1814, 1804, 1806, 1815, 1809, 1816, 1815,
1817, 1819, 1819, 1812, 1822, 1822, 1813, 1818, 1818, 1817,
1820, 1823, 1818, 1821, 1816, 1824, 1819, 1825, 1821, 1820,
1826, 1830, 1820, 1828, 1829, 1826, 1826, 1831, 1832, 1823,
1834, 1842, 1831, 1837, 1833, 1825, 1824, 1828, 1837, 1829,
1833, 1836, 1832, 1830, 1835, 1835, 1838, 1836, 1834, 1839,
1840, 1842, 1843, 1844, 1852, 1839, 1840, 1845, 1846, 1847,
1838, 1850, 1847, 1845, 1848, 1853, 1854, 1844, 1847, 1850,
1848, 1846, 1843, 1852, 1855, 1856, 1858, 1857, 1859, 1860,
1856, 1861, 1855, 1862, 1853, 1854, 1857, 1859, 1864, 1858,
1863, 1863, 1860, 1865, 1864, 1861, 1867, 1862, 1866, 1865,
1869, 1866, 1868, 1868, 1870, 1871, 1872, 1872, 1873, 1867,
1874, 1875, 1863, 1876, 1877, 1880, 1874, 1879, 1879, 1881,
1869, 1873, 1870, 1881, 1871, 1882, 1883, 1887, 1886, 1876,
1882, 1884, 1877, 1875, 1885, 1880, 1884, 1886, 1889, 1885,
1891, 1892, 1890, 1891, 1893, 1895, 1883, 1894, 1894, 1889,
1887, 1890, 1897, 1892, 1896, 1898, 1898, 1899, 1900, 1893,
1901, 1902, 1899, 1903, 1895, 1904, 1896, 1901, 1906, 1907,
1908, 1897, 1900, 1902, 1909, 1903, 1908, 1910, 1911, 1912,
1912, 1914, 1915, 1915, 1911, 1904, 1909, 1906, 1913, 1907,
1918, 1913, 1917, 1919, 1920, 1910, 1918, 1917, 1921, 1921,
1920, 1914, 1919, 1922, 1923, 1924, 1923, 1925, 1924, 1926,
1927, 1928, 1929, 1930, 1931, 1922, 1934, 1929, 1930, 1933,
1932, 1934, 1936, 1931, 1935, 1937, 1939, 1925, 1927, 1928,
1937, 1926, 1932, 1935, 1933, 1938, 1942, 1937, 1940, 1940,
1938, 1939, 1936, 1941, 1944, 1945, 1935, 1946, 1948, 1941,
1949, 1947, 1949, 1951, 1951, 1950, 1954, 1942, 1952, 1952,
1944, 1953, 1953, 1957, 1945, 1958, 1946, 1947, 1948, 1950,
1959, 1950, 1955, 1955, 1956, 1956, 1954, 1960, 1960, 1961,
1966, 1962, 1963, 1961, 1957, 1963, 1958, 1962, 1965, 1967,
1968, 1959, 1969, 1970, 1965, 1967, 1971, 1969, 1966, 1971,
1972, 1972, 1973, 1974, 1975, 1975, 1976, 1977, 1974, 1978,
1979, 1980, 1980, 1968, 1978, 1979, 1984, 1982, 1970, 1981,
1983, 1976, 1973, 1982, 1981, 1985, 1986, 1988, 1977, 1987,
1989, 1990, 1983, 1983, 1983, 1987, 1984, 1991, 1990, 1983,
2002, 1994, 1991, 1985, 1995, 1997, 1986, 1988, 1993, 1996,
1989, 1996, 1998, 1993, 1993, 1994, 1997, 1999, 2001, 1995,
2000, 2002, 2004, 1999, 2003, 2003, 2006, 1998, 2007, 2000,
2005, 2005, 2008, 2008, 2009, 2009, 2010, 2010, 2001, 2011,
2014, 2014, 2015, 2016, 2018, 2019, 2006, 2022, 2004, 2020,
2007, 2021, 2016, 2018, 2023, 2020, 2024, 2024, 2025, 2011,
2026, 2029, 2027, 2022, 2028, 2032, 2019, 2015, 2023, 2027,
2021, 2030, 2030, 2028, 2033, 2026, 2031, 2031, 2035, 2025,
2036, 2038, 2037, 2040, 2035, 2036, 2039, 2029, 2037, 2040,
2033, 2032, 2041, 2039, 2041, 2043, 2044, 2045, 2045, 2046,
2047, 2038, 2044, 2048, 2046, 2049, 2054, 2050, 2051, 2047,
2052, 2051, 2053, 2055, 2043, 2053, 2056, 2056, 2048, 2058,
2060, 2057, 2052, 2059, 2054, 2049, 2050, 2057, 2061, 2059,
2062, 2058, 2064, 2065, 2062, 2068, 2066, 2067, 2067, 2055,
2060, 2066, 2069, 2061, 2072, 2070, 0, 2073, 2074, 2074,
2062, 2073, 2064, 2077, 2077, 2065, 2075, 2076, 2078, 2068,
2070, 2069, 2075, 2072, 2079, 2080, 2076, 2078, 2079, 2081,
2081, 2082, 2083, 2085, 2084, 2086, 2080, 2087, 2085, 2088,
2090, 2080, 2089, 2093, 2092, 2091, 2083, 0, 2089, 2092,
2094, 2094, 2082, 2084, 2099, 2086, 2093, 2087, 2090, 2088,
2091, 2095, 2095, 2096, 2098, 2099, 2100, 2096, 2109, 2101,
2099, 2102, 2102, 2098, 2101, 2104, 2104, 2105, 2106, 2108,
2118, 2111, 2105, 2105, 2106, 2108, 2100, 2110, 2114, 2112,
2116, 2120, 2110, 2111, 2109, 2112, 2123, 2115, 2117, 2117,
2114, 2115, 2116, 2119, 2121, 2118, 2122, 2122, 2124, 2119,
2121, 2125, 2126, 2120, 2128, 2123, 2125, 2129, 2130, 2132,
2132, 2138, 2133, 2130, 2126, 2133, 2128, 2137, 2124, 2134,
2134, 2135, 2135, 2136, 2136, 2141, 2129, 2139, 2140, 2142,
2141, 2138, 2137, 2139, 2140, 2142, 2143, 2145, 2146, 2146,
2148, 2150, 2145, 2148, 2149, 2143, 2151, 2151, 2149, 2153,
2154, 2155, 2162, 2150, 2156, 2156, 2155, 2157, 2158, 2159,
2164, 2153, 2154, 2158, 2159, 2160, 2157, 2163, 2160, 2161,
2161, 2165, 2162, 2166, 2167, 2168, 2163, 2166, 2164, 2167,
2169, 2168, 2170, 2171, 2175, 2172, 2176, 2177, 2174, 2174,
2165, 2170, 2178, 2179, 2179, 2176, 2177, 2180, 2169, 2172,
2174, 2171, 2175, 2181, 2182, 2183, 2180, 2184, 2187, 2187,
2183, 2189, 2178, 2190, 2189, 2181, 2191, 2192, 2196, 2194,
2184, 2195, 2197, 2200, 2196, 2182, 2198, 2198, 2199, 2190,
2199, 2201, 2191, 2192, 2194, 2195, 2203, 2200, 2208, 2197,
2202, 2202, 2205, 2205, 2203, 2206, 2206, 2209, 2210, 2201,
2211, 2212, 2213, 2209, 2210, 2214, 2215, 2215, 2212, 2216,
2216, 2208, 2217, 2222, 2211, 2218, 2219, 2220, 2216, 2221,
2223, 2224, 2226, 2229, 2213, 2214, 2230, 2218, 2219, 2223,
2231, 2221, 2220, 2217, 2233, 2225, 2224, 2232, 2232, 2222,
2225, 2225, 2231, 2229, 2227, 2226, 2227, 2227, 2234, 2230,
2227, 2235, 2233, 2236, 2235, 2237, 2239, 2240, 2236, 2240,
2241, 2239, 2242, 2227, 2243, 2246, 2248, 2242, 2234, 2250,
2249, 2243, 2252, 2253, 2246, 2237, 2255, 2254, 2241, 2249,
2251, 2250, 2251, 2254, 2248, 2257, 2258, 2257, 2259, 2259,
2260, 2252, 2261, 2253, 2266, 2267, 2255, 2261, 2264, 2262,
2258, 2262, 2265, 2264, 2268, 2269, 2271, 2265, 2272, 2270,
2274, 2269, 2266, 2267, 2270, 2276, 2260, 2273, 2274, 2271,
2272, 2277, 2273, 2273, 2268, 2278, 2279, 2279, 2280, 2280,
2281, 2282, 2283, 2284, 2276, 2277, 2287, 2278, 2285, 2284,
2286, 2281, 2286, 2285, 2288, 2289, 2282, 2290, 2290, 2296,
2288, 2291, 2283, 2289, 2287, 2292, 2292, 2293, 2293, 2294,
2295, 2289, 2298, 2291, 2299, 2295, 2298, 2296, 2294, 2300,
2301, 2300, 2302, 2299, 2303, 2304, 2299, 2302, 2302, 0,
2305, 2307, 2309, 2308, 2304, 2310, 2303, 2309, 2312, 2313,
2310, 2301, 2305, 2314, 2307, 2308, 2316, 2313, 2315, 2315,
2317, 2312, 2314, 2318, 2319, 2320, 2323, 2325, 2321, 2313,
2322, 2323, 2326, 2327, 2316, 0, 2331, 2337, 2317, 2325,
2319, 2318, 2321, 2328, 2326, 2322, 2329, 2330, 2328, 2334,
2320, 2329, 2336, 2327, 2331, 2334, 2330, 2338, 2336, 2339,
2337, 2340, 2341, 2342, 2342, 2343, 2344, 2344, 2334, 2345,
2346, 2341, 2338, 2348, 2343, 2347, 2351, 2339, 2348, 2347,
2349, 2353, 2352, 2363, 2360, 2354, 2340, 2345, 2352, 2346,
2354, 2354, 2355, 2349, 2356, 2351, 2357, 2359, 2355, 2357,
2356, 2363, 2366, 2353, 2360, 2359, 2364, 2364, 2365, 2365,
2369, 2366, 2367, 2367, 2368, 2368, 2373, 2370, 2372, 2381,
2374, 2383, 2369, 2365, 2372, 2374, 2375, 2375, 2376, 2376,
2378, 2373, 2377, 2385, 2365, 2370, 2378, 2377, 2380, 2381,
2382, 2383, 2380, 2386, 2382, 2387, 2388, 2389, 2386, 2390,
2391, 2392, 2389, 2394, 2393, 2395, 2395, 2397, 2385, 2393,
2396, 2388, 2399, 2400, 2396, 2398, 2391, 2390, 2387, 2401,
2398, 2392, 2397, 2402, 2403, 2394, 2404, 2405, 2406, 2410,
2399, 2404, 2407, 2407, 2409, 2402, 2411, 2401, 2412, 2400,
2405, 2413, 2409, 2403, 2414, 2422, 2406, 2415, 2410, 2416,
2417, 2418, 2419, 2420, 2424, 2411, 2428, 2412, 2419, 2420,
2422, 2425, 2417, 2426, 2413, 2433, 2415, 2424, 2414, 2426,
2416, 2427, 2418, 2427, 2430, 2425, 2428, 2429, 2429, 2430,
2431, 2432, 2434, 2431, 2435, 2436, 2436, 2437, 2437, 2433,
2438, 2440, 2438, 2441, 2432, 0, 2434, 2435, 2439, 2439,
2442, 2443, 2443, 2445, 2445, 2443, 2440, 2447, 2441, 2446,
2446, 2448, 2448, 2442, 2449, 2450, 2450, 2451, 2451, 2452,
2454, 2455, 2447, 2449, 2452, 2454, 2449, 2456, 2457, 2458,
2458, 2459, 2459, 2460, 2461, 2461, 2462, 2463, 2463, 2465,
2457, 2455, 2464, 2474, 2465, 2466, 2466, 2456, 2467, 2467,
2468, 2469, 2460, 2471, 2462, 2470, 2470, 2464, 2472, 2472,
2469, 2473, 2474, 2476, 2468, 2477, 2477, 2478, 2476, 2480,
2471, 2479, 2479, 2481, 2482, 2473, 2483, 2486, 2481, 2483,
2482, 2484, 2484, 2485, 2485, 2487, 2478, 2480, 2488, 2490,
2488, 2491, 2492, 2492, 2495, 2493, 2486, 2484, 2496, 2497,
2487, 2493, 2498, 2499, 2490, 2500, 2500, 2499, 2501, 2504,
2491, 2502, 2508, 2496, 2495, 2503, 2502, 2498, 2511, 2503,
2505, 2505, 2497, 2509, 2504, 2507, 2507, 2501, 2510, 2512,
2509, 2513, 2508, 2514, 2516, 2505, 2511, 2515, 2515, 2517,
2521, 2517, 2510, 2516, 2520, 2518, 2513, 2512, 2518, 2522,
2520, 2523, 2521, 2524, 2522, 2525, 2523, 2526, 2524, 2514,
2527, 2529, 2528, 2518, 2530, 2518, 2529, 2532, 2533, 2534,
2526, 2528, 2532, 2533, 2534, 2538, 2535, 2536, 2537, 2539,
2525, 2527, 2540, 2536, 2537, 2543, 2544, 2541, 2540, 2546,
2530, 2535, 2541, 2542, 2539, 2547, 2538, 2545, 2542, 2544,
2545, 2551, 2548, 2549, 2547, 2550, 2556, 2552, 2558, 2546,
2543, 2548, 2549, 2552, 2550, 2551, 2553, 2554, 2559, 2560,
2560, 2554, 2553, 2561, 2562, 2562, 2556, 2559, 2558, 2561,
2563, 2564, 2564, 2562, 2566, 2565, 2568, 2569, 2572, 2563,
2565, 2570, 2570, 2571, 2573, 2575, 2576, 2572, 2577, 2573,
2582, 2653, 2568, 2569, 2566, 2578, 2566, 2575, 2571, 2583,
2581, 2580, 2576, 2577, 2580, 2581, 2653, 2578, 2584, 2584,
2582, 2583, 2585, 2585, 2586, 2586, 2588, 2588, 2589, 2590,
2591, 2589, 2592, 2593, 2590, 2595, 2591, 2598, 2592, 2594,
2594, 2597, 2593, 2596, 2596, 2599, 2600, 2600, 2601, 2595,
2603, 2598, 2602, 2597, 2601, 2603, 2605, 2612, 2606, 2610,
2605, 2606, 2607, 2607, 2599, 2608, 2602, 2609, 2610, 2611,
2608, 2613, 2609, 2614, 2614, 2613, 2615, 2612, 2611, 2617,
2618, 2619, 2620, 2621, 2617, 2623, 2622, 2624, 2625, 2615,
2622, 2629, 2624, 2626, 2625, 2627, 2627, 2621, 2630, 2626,
2618, 2619, 2620, 2628, 2628, 2623, 2631, 2632, 2633, 2629,
2634, 2634, 2632, 2638, 2636, 2637, 2639, 2630, 2638, 0,
2641, 2640, 2639, 2646, 2644, 2631, 2636, 2640, 2641, 2633,
2642, 2637, 2642, 2644, 2647, 2648, 2648, 2646, 2649, 2650,
2650, 2649, 2652, 2654, 2655, 2652, 2654, 2659, 2647, 2656,
2656, 2659, 2660, 2661, 2662, 2662, 2668, 2663, 2660, 2666,
2666, 2670, 2671, 2674, 2675, 2661, 2663, 2676, 2674, 2686,
2655, 2677, 2679, 0, 2668, 2670, 2680, 2679, 2671, 2681,
2681, 2680, 2683, 2683, 2688, 2676, 2689, 2685, 2692, 2686,
2675, 2690, 2677, 2685, 2687, 2687, 2690, 2694, 2693, 2695,
2688, 2693, 2696, 2696, 2698, 2699, 2700, 2692, 2689, 2694,
2701, 2695, 2700, 2702, 2699, 2703, 2701, 2705, 2705, 2706,
2698, 2707, 2706, 2707, 2708, 2709, 2712, 2712, 2710, 2714,
2703, 2702, 2713, 2713, 2714, 2715, 2717, 2718, 2716, 2719,
2720, 2719, 2718, 2708, 2709, 2709, 2710, 2716, 2721, 2717,
2723, 2722, 2724, 2715, 2720, 2723, 2725, 2727, 2727, 2726,
2728, 2732, 2721, 2722, 2726, 2729, 2729, 2730, 2730, 2731,
2731, 2734, 2724, 2732, 2743, 2728, 2725, 2733, 2735, 2733,
2736, 2736, 2739, 2735, 2737, 2737, 2738, 2738, 2740, 2734,
2741, 2742, 0, 2744, 2739, 2743, 2745, 2745, 2746, 2747,
2747, 2749, 2741, 2748, 2748, 2750, 2750, 2751, 2740, 2744,
2753, 2742, 2749, 2752, 2754, 2756, 2755, 2746, 2757, 2751,
2752, 2755, 2753, 2758, 2758, 2760, 2760, 2759, 2761, 2762,
2763, 2764, 2765, 2768, 2754, 2756, 2759, 2766, 2757, 2767,
2774, 2767, 2770, 2763, 2775, 2768, 2765, 2769, 2769, 2762,
2771, 2770, 2772, 2777, 2761, 2764, 2776, 2776, 2774, 2766,
2778, 2779, 0, 2778, 2780, 2771, 2775, 2772, 2781, 2780,
2782, 2782, 2790, 2781, 2791, 2779, 2777, 2783, 2783, 2784,
2784, 2787, 2787, 2789, 2789, 2791, 2792, 2793, 2795, 2796,
2790, 2797, 2798, 2803, 2799, 2800, 2801, 2802, 2801, 2819,
2804, 2810, 2793, 2799, 0, 2792, 2819, 2796, 2795, 2805,
2805, 2803, 2798, 2797, 2809, 2800, 2807, 2802, 2804, 2816,
2807, 2808, 2808, 2810, 2811, 2812, 2812, 2814, 2809, 2815,
2815, 2817, 2818, 2811, 2821, 2823, 2814, 2816, 2820, 2822,
2824, 2825, 2827, 2827, 2829, 2825, 0, 2826, 2830, 2817,
2818, 2823, 2821, 2820, 2826, 2828, 2828, 2822, 2836, 2824,
2837, 2831, 2833, 2833, 2829, 2835, 2830, 2831, 2834, 2834,
2838, 2835, 2839, 2840, 2841, 2843, 2836, 2844, 2837, 2841,
2842, 2842, 2845, 2846, 2848, 2838, 0, 2840, 2847, 2855,
2850, 2839, 2850, 2849, 2846, 2843, 2858, 2844, 2849, 2847,
2851, 2851, 2845, 2852, 2848, 2852, 2853, 2853, 2855, 2857,
2859, 2860, 2861, 2862, 2863, 2858, 2864, 2861, 2857, 2863,
2865, 2868, 2859, 2870, 2869, 2872, 2870, 2871, 2871, 2873,
2876, 2860, 2875, 2862, 2874, 2874, 2864, 2879, 2880, 2865,
2872, 2868, 2869, 2875, 2877, 2876, 2882, 2873, 2877, 2881,
2882, 2884, 2879, 2880, 2886, 2881, 2883, 2883, 2887, 2887,
2888, 2894, 2889, 2890, 2884, 2891, 2892, 2892, 2895, 2886,
2896, 2890, 2899, 2894, 2896, 2897, 2897, 2895, 2898, 2898,
2888, 2889, 2900, 2900, 2901, 2891, 2902, 2903, 2904, 2901,
2905, 2899, 2906, 2906, 2908, 2902, 2912, 2912, 2913, 2914,
2904, 2915, 2915, 2903, 2916, 2917, 2918, 2913, 2922, 2922,
2905, 2919, 2923, 2920, 2921, 2908, 2924, 2916, 2917, 2918,
2919, 2914, 2920, 2921, 2926, 2926, 2932, 2935, 2929, 2931,
2933, 2924, 2923, 2929, 2931, 2933, 2934, 2937, 2936, 2939,
2932, 2943, 2947, 2941, 2934, 2937, 2935, 2936, 2941, 2951,
2942, 2944, 2944, 2949, 2939, 2942, 2943, 2945, 2945, 2946,
2949, 2947, 2948, 2948, 2946, 2950, 2952, 2951, 2953, 0,
2950, 2954, 2956, 2956, 2953, 2957, 2954, 2958, 2959, 2959,
2960, 2960, 2958, 2963, 2952, 2964, 2964, 2966, 2965, 2967,
2957, 2965, 2966, 2966, 2967, 2968, 2963, 2969, 2970, 2971,
2968, 2972, 2974, 2971, 2970, 2973, 2972, 2975, 2976, 2980,
2977, 2969, 2978, 2983, 2973, 2975, 2977, 2974, 2978, 2979,
2983, 2980, 2981, 2981, 2979, 2984, 2987, 2989, 2985, 2976,
2984, 2985, 2989, 2992, 2990, 2991, 2993, 2994, 2987, 2990,
2991, 2995, 2996, 2996, 2997, 3002, 2994, 3007, 2998, 2993,
2995, 2992, 2998, 2997, 2999, 3003, 3004, 3008, 3009, 2999,
3010, 3003, 3004, 3002, 3011, 3011, 3007, 3012, 3013, 3017,
3017, 3015, 3016, 3018, 3012, 3019, 3020, 3008, 3009, 3010,
3015, 3016, 3021, 3021, 3019, 3022, 3024, 3013, 3018, 3026,
3027, 3020, 3028, 3028, 3027, 3029, 3030, 3031, 3032, 3034,
3033, 3024, 3030, 3031, 3022, 3034, 3035, 3035, 3036, 3026,
3037, 3041, 3040, 3046, 3038, 3049, 3036, 3032, 3033, 3038,
3029, 3040, 3043, 3044, 3041, 3045, 3044, 3047, 3043, 3045,
3049, 3046, 3048, 3048, 3052, 3037, 3051, 3051, 3054, 3054,
3055, 3047, 3056, 3056, 3057, 3057, 3059, 3059, 3062, 3060,
3061, 3066, 3052, 3060, 3068, 3061, 3067, 3062, 3064, 3064,
3070, 3067, 3069, 3055, 3072, 3073, 3068, 3069, 3069, 3074,
0, 3066, 3070, 3075, 3075, 3077, 3077, 3078, 3078, 3079,
3079, 3081, 3082, 3080, 3072, 3073, 3080, 3084, 3084, 3074,
3085, 3087, 3088, 3088, 3081, 3082, 3089, 3089, 3090, 3090,
3091, 3092, 3092, 3093, 3094, 3095, 3096, 3105, 3085, 3097,
3097, 3087, 3096, 3098, 3101, 3091, 3093, 3098, 3102, 3095,
3101, 3104, 3094, 3102, 3106, 3107, 3104, 3104, 3108, 3109,
3105, 3110, 3111, 3120, 3108, 3109, 3111, 3112, 3112, 3117,
3118, 3115, 3123, 3118, 3106, 3107, 3115, 3117, 3121, 3122,
3122, 3121, 3124, 3125, 3126, 3127, 3110, 3124, 3120, 3123,
3123, 3128, 3128, 3129, 3130, 3131, 3132, 3130, 3133, 3127,
3137, 3125, 3138, 3138, 3126, 3130, 3133, 3129, 3135, 3131,
3147, 3136, 3146, 3135, 3135, 3132, 3136, 3136, 3144, 3137,
3139, 3139, 3140, 3140, 3141, 3141, 3142, 3142, 3143, 3143,
3145, 3148, 3146, 3149, 3144, 3145, 3147, 3150, 3151, 3152,
3148, 3153, 3150, 3154, 3152, 3155, 3156, 3149, 3158, 3158,
3153, 3159, 3159, 3160, 3161, 3163, 3160, 3151, 3162, 3162,
3165, 3163, 3164, 3154, 0, 3155, 3156, 3164, 3168, 3161,
3167, 3167, 3169, 3169, 3170, 3168, 3172, 3172, 3165, 3170,
3173, 3174, 3175, 3175, 3176, 3177, 3179, 3180, 3180, 3173,
3174, 3181, 3181, 3176, 3177, 3182, 3183, 3184, 3185, 3182,
3186, 3187, 3188, 3191, 3179, 3183, 3190, 3188, 3188, 3185,
3192, 3194, 3191, 3198, 3192, 3186, 3184, 3200, 3198, 3190,
3203, 3187, 3199, 3199, 3202, 3202, 3194, 3204, 3205, 3207,
3207, 3200, 3208, 3208, 3203, 3209, 3210, 3211, 3215, 3217,
3216, 3219, 3210, 3222, 3209, 3216, 3205, 3220, 3217, 3211,
3224, 3226, 3204, 3220, 3227, 3222, 3226, 3228, 3228, 3227,
3229, 3219, 3231, 3215, 3232, 3233, 3240, 3231, 0, 3229,
3241, 3224, 3234, 3234, 3236, 3236, 3234, 3232, 3239, 3233,
3237, 3237, 3238, 3238, 3248, 3242, 3240, 3239, 3244, 3241,
3242, 3245, 3246, 3249, 3244, 3250, 3245, 3246, 3247, 3247,
3252, 3251, 3248, 3253, 3254, 3249, 3251, 3255, 3255, 3253,
3257, 3261, 3258, 3262, 3257, 3259, 3250, 3258, 3252, 3263,
3259, 3260, 3260, 3265, 3267, 3267, 3269, 3270, 3262, 3254,
3261, 3271, 3272, 3273, 3263, 3274, 3272, 3275, 3276, 3269,
3270, 3278, 3273, 3265, 3271, 3277, 3276, 3279, 3280, 3280,
3277, 3274, 3282, 3281, 3283, 3286, 3275, 3284, 3284, 3285,
3285, 3278, 3281, 3289, 3290, 3292, 3296, 3279, 3289, 3289,
3282, 3292, 3293, 3293, 3286, 3294, 3294, 3300, 3290, 3301,
3283, 3298, 3298, 3303, 3304, 3305, 3309, 3296, 3303, 3310,
3305, 3308, 3308, 3300, 3312, 3301, 3311, 3314, 3310, 3317,
3304, 3318, 3311, 3313, 3313, 3319, 3309, 3316, 3316, 3320,
3320, 3324, 3322, 3317, 3326, 3325, 3314, 3312, 3322, 3326,
3318, 3325, 3329, 3319, 3330, 3331, 3331, 3332, 3332, 3334,
3333, 3324, 3335, 3335, 3337, 3336, 3338, 3359, 3340, 3341,
3342, 3339, 3359, 3337, 3329, 3333, 3336, 3339, 3344, 3334,
3330, 3341, 3335, 3343, 3343, 3345, 3338, 3340, 3345, 3346,
3342, 3351, 3346, 3344, 3347, 3347, 3352, 3357, 3353, 3354,
3354, 3356, 3355, 3351, 3353, 3355, 3361, 3356, 3360, 3360,
3362, 3361, 3363, 3364, 3367, 3357, 3352, 3368, 3363, 3365,
3365, 3369, 3372, 3370, 3371, 3371, 3367, 3373, 3374, 3362,
3364, 3364, 3376, 3376, 3380, 3368, 3370, 3374, 3377, 3377,
0, 3372, 3379, 3373, 3378, 3378, 3369, 3379, 3380, 3381,
3382, 3382, 3383, 3383, 3381, 3384, 3384, 3385, 3386, 3386,
3387, 3388, 3389, 3394, 3390, 3400, 3385, 3402, 3389, 3390,
3393, 3393, 3403, 3387, 3396, 3396, 3397, 3397, 3404, 3394,
3405, 3406, 3406, 3409, 3400, 3408, 3408, 3388, 3410, 3402,
3411, 3413, 3414, 3421, 3403, 3415, 3415, 3404, 3416, 3416,
3419, 3414, 3405, 3422, 3411, 3427, 3417, 3410, 3420, 3409,
3417, 3413, 3423, 3421, 3420, 3424, 3431, 3423, 3419, 3432,
3424, 3431, 3422, 3428, 3428, 3433, 3427, 3430, 3430, 3434,
3435, 3433, 3437, 3432, 3436, 3436, 3439, 3437, 3435, 3440,
3439, 3434, 3441, 3442, 3440, 3443, 3444, 3445, 3447, 3448,
3443, 3449, 3450, 3445, 3453, 3452, 3447, 3454, 3444, 3455,
3456, 3458, 3441, 3442, 3459, 3456, 3458, 3463, 3448, 0,
3453, 3449, 3450, 3452, 3454, 3454, 3460, 3465, 3461, 0,
3455, 3475, 3460, 3461, 3459, 3464, 3495, 3463, 3464, 3479,
3465, 3469, 3469, 3470, 3470, 3471, 3475, 3477, 3477, 3471,
3478, 3480, 3480, 3482, 3495, 3478, 3485, 3485, 3479, 3486,
3486, 3490, 3486, 3487, 3487, 3490, 3487, 3493, 3482, 3488,
3488, 3489, 3489, 3492, 3489, 3496, 3493, 3501, 3492, 3494,
3494, 3499, 3499, 3500, 3500, 3502, 3503, 3504, 3504, 3496,
3505, 3503, 3506, 3509, 3510, 3511, 3513, 3501, 3512, 3511,
3584, 3510, 3515, 3584, 3516, 3502, 3518, 3512, 3505, 3516,
3522, 3513, 3506, 3517, 3517, 3518, 3519, 3519, 3509, 3527,
3515, 3520, 3520, 3521, 3521, 3522, 3523, 3524, 3525, 3526,
3528, 3523, 3529, 3525, 3525, 3526, 3524, 3530, 3531, 3524,
3532, 0, 3530, 3531, 3527, 3528, 3533, 3533, 3534, 3535,
3536, 3536, 3538, 3529, 3534, 3535, 3537, 3537, 3539, 3532,
3542, 3542, 3543, 3539, 3545, 3545, 3546, 3538, 3548, 3550,
3550, 3551, 3551, 3552, 3552, 3546, 3543, 3553, 3553, 3555,
3555, 3556, 3556, 3557, 3557, 3559, 3548, 3558, 3558, 3561,
3562, 3562, 3564, 3564, 3565, 3566, 3567, 3569, 3561, 3570,
3570, 3571, 3573, 3565, 3572, 3572, 3574, 3566, 3585, 3575,
3579, 3559, 3569, 3576, 3576, 3583, 3567, 3573, 3587, 3574,
3571, 3575, 3577, 3577, 3590, 3579, 3580, 3580, 3586, 3586,
3590, 3591, 3589, 3583, 3585, 3589, 3587, 3592, 3593, 3595,
3594, 3597, 3592, 3598, 3601, 3591, 3602, 3597, 3601, 3604,
3604, 3606, 3598, 3607, 3616, 3595, 3620, 3593, 3594, 3616,
3617, 3602, 3627, 3617, 3621, 3621, 3622, 3622, 3630, 3620,
3623, 3623, 3628, 3607, 3625, 3625, 3629, 3606, 3632, 3634,
3629, 3628, 3635, 3638, 3636, 3627, 3639, 3639, 3630, 3636,
3640, 3641, 3632, 3635, 3637, 3642, 3637, 3644, 3638, 3643,
3646, 3645, 3634, 3640, 3649, 3647, 3648, 3650, 3652, 3646,
3641, 3648, 3654, 3642, 3660, 3643, 3645, 3647, 3651, 3650,
3653, 3653, 3644, 3651, 3655, 3649, 3661, 3652, 3660, 3655,
3662, 3662, 3654, 3663, 3664, 3664, 3665, 3665, 3666, 3666,
3667, 3667, 3663, 3668, 3669, 3670, 3661, 3671, 3670, 3672,
3673, 3674, 3671, 3675, 3672, 3676, 3677, 3680, 3678, 3675,
3679, 3679, 3668, 3678, 3669, 3687, 3674, 3686, 3677, 3676,
3681, 3681, 3682, 3682, 3690, 3673, 3692, 3680, 3683, 3683,
3685, 3685, 3686, 3698, 3687, 3688, 3688, 3695, 3695, 3690,
3696, 3696, 3697, 3699, 3692, 3700, 3701, 3703, 3702, 3699,
3697, 3700, 3698, 3704, 3705, 3705, 3707, 3707, 3704, 3712,
3701, 3702, 3713, 3715, 3716, 3718, 3703, 3719, 3716, 3720,
3721, 3722, 3719, 3723, 3724, 3729, 3725, 3715, 3730, 3724,
3712, 3725, 3713, 3721, 3722, 3718, 3726, 3726, 3720, 3731,
3732, 3732, 3723, 3733, 3734, 3729, 3730, 3739, 3733, 3736,
3734, 3735, 3735, 3740, 3736, 3737, 3738, 3747, 3731, 3740,
3737, 3738, 3742, 3742, 3743, 3748, 3739, 3744, 3744, 3743,
3746, 3749, 3748, 3750, 3746, 3751, 3747, 3752, 3753, 3755,
3755, 3751, 3757, 3757, 3759, 3758, 3760, 3761, 3762, 3759,
3749, 3753, 3750, 3767, 3758, 3764, 3752, 3758, 3763, 3763,
3764, 3762, 3765, 3768, 3768, 3760, 3761, 3769, 3770, 3770,
3771, 3771, 3772, 3773, 3774, 3765, 3781, 3772, 3776, 3767,
3773, 3775, 3775, 3776, 3779, 3777, 3769, 3777, 3778, 3778,
3780, 3779, 3783, 3774, 3782, 3781, 3786, 3780, 3788, 3782,
3785, 3785, 3789, 3788, 3790, 3791, 3795, 3789, 3792, 3792,
3796, 3783, 3794, 3794, 3799, 3786, 3797, 3797, 3798, 3798,
3809, 3799, 3810, 3790, 3791, 3795, 3801, 3801, 3803, 3796,
3802, 3802, 3805, 3808, 0, 3803, 0, 3805, 3808, 3809,
0, 3810, 3811, 3811, 3812, 3812, 3816, 3816, 3816, 3816,
3816, 3816, 3816, 3817, 3817, 3817, 3817, 3817, 3817, 3817,
3818, 3818, 3818, 3818, 3818, 3818, 3818, 3819, 3819, 3819,
3819, 3819, 3819, 3819, 3820, 3820, 3820, 3820, 3820, 3820,
3820, 3821, 3821, 3821, 3821, 3821, 3821, 3821, 3822, 3822,
3822, 3822, 3822, 3822, 3822, 3824, 3824, 0, 3824, 3824,
3824, 3824, 3825, 3825, 0, 0, 0, 3825, 3825, 3826,
3826, 0, 0, 3826, 0, 3826, 3827, 0, 0, 0,
0, 0, 3827, 3828, 3828, 0, 0, 0, 3828, 3828,
3829, 0, 0, 0, 0, 0, 3829, 3830, 3830, 0,
3830, 3830, 3830, 3830, 3831, 0, 0, 0, 0, 0,
3831, 3832, 3832, 0, 0, 0, 3832, 3832, 3833, 3833,
0, 3833, 3833, 3833, 3833, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815, 3815,
3815, 3815, 3815, 3815, 3815, 3815
} ;
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 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
#line 2 "/usr/src/usr.sbin/unbound/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;
int inc_toplevel;
};
static struct inc_state* config_include_stack = NULL;
static int inc_depth = 0;
static int inc_prev = 0;
static int num_args = 0;
static int inc_toplevel = 0;
void init_cfg_parse(void)
{
config_include_stack = NULL;
inc_depth = 0;
inc_prev = 0;
num_args = 0;
inc_toplevel = 0;
}
static void config_start_include(const char* filename, int toplevel)
{
FILE *input;
struct inc_state* s;
char* nm;
if(inc_depth+1 > 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));
inc_depth++;
s->filename = cfg_parser->filename;
s->line = cfg_parser->line;
s->buffer = YY_CURRENT_BUFFER;
s->inc_toplevel = inc_toplevel;
s->next = config_include_stack;
config_include_stack = s;
cfg_parser->filename = nm;
cfg_parser->line = 1;
inc_toplevel = toplevel;
yy_switch_to_buffer(yy_create_buffer(input,YY_BUF_SIZE));
}
static void config_start_include_glob(const char* filename, int toplevel)
{
/* 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, toplevel); /* 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], toplevel);
}
globfree(&g);
return;
}
#endif /* HAVE_GLOB */
config_start_include(filename, toplevel);
}
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;
inc_toplevel = s->inc_toplevel;
free(s);
}
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
#define yy_set_bol(at_bol) \
{ \
if ( ! yy_current_buffer ) \
yy_current_buffer = yy_create_buffer(yyin,YY_BUF_SIZE ); \
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
}
#endif
#define YY_NO_INPUT 1
#line 191 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
#ifndef YY_NO_UNPUT
#define YY_NO_UNPUT 1
#endif
#ifndef YY_NO_INPUT
#define YY_NO_INPUT 1
#endif
#line 3559 "<stdout>"
#define INITIAL 0
#define quotedstring 1
#define singlequotedstr 2
#define include 3
#define include_quoted 4
#define val 5
#define include_toplevel 6
#define include_toplevel_quoted 7
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
static int yy_init_globals (void );
/* Accessor methods to globals.
These are made visible to non-reentrant scanners for convenience. */
int yylex_destroy (void );
int yyget_debug (void );
void yyset_debug (int debug_flag );
YY_EXTRA_TYPE yyget_extra (void );
void yyset_extra (YY_EXTRA_TYPE user_defined );
FILE *yyget_in (void );
void yyset_in (FILE * in_str );
FILE *yyget_out (void );
void yyset_out (FILE * out_str );
yy_size_t yyget_leng (void );
char *yyget_text (void );
int yyget_lineno (void );
void yyset_lineno (int line_number );
/* Macros after this point can all be overridden by user definitions in
* section 1.
*/
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap (void );
#else
extern int yywrap (void );
#endif
#endif
#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int );
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * );
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void );
#else
static int input (void );
#endif
#endif
/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
{ \
int c = '*'; \
size_t n; \
for ( n = 0; n < max_size && \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
if ( c == '\n' ) \
buf[n++] = (char) c; \
if ( c == EOF && ferror( yyin ) ) \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
result = n; \
} \
else \
{ \
errno=0; \
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(yyin); \
} \
}\
\
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif
/* end tables serialization structures and prototypes */
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1
extern int yylex (void);
#define YY_DECL int yylex (void)
#endif /* !YY_DECL */
/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif
/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
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 211 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
#line 3777 "<stdout>"
while ( 1 ) /* loops until end-of-file is reached */
{
(yy_more_len) = 0;
if ( (yy_more_flag) )
{
(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
(yy_more_flag) = 0;
}
yy_cp = (yy_c_buf_p);
/* Support of yytext. */
*yy_cp = (yy_hold_char);
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = (yy_start);
yy_match:
do
{
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 >= 3816 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
++yy_cp;
}
while ( yy_base[yy_current_state] != 7436 );
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 212 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("SP ")); /* ignore */ }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 214 "/usr/src/usr.sbin/unbound/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 217 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_SERVER) }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 218 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 219 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 220 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_NUM_THREADS) }
YY_BREAK
case 7:
YY_RULE_SETUP
#line 221 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VERBOSITY) }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 222 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PORT) }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 223 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_RANGE) }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 224 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 225 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 226 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 227 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 228 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP4) }
YY_BREAK
case 15:
YY_RULE_SETUP
#line 229 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_IP6) }
YY_BREAK
case 16:
YY_RULE_SETUP
#line 230 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_NAT64) }
YY_BREAK
case 17:
YY_RULE_SETUP
#line 231 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP4) }
YY_BREAK
case 18:
YY_RULE_SETUP
#line 232 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PREFER_IP6) }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 233 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_UDP) }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 234 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_TCP) }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 235 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TCP_UPSTREAM) }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 236 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TCP_MSS) }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 237 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 238 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 239 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_REUSE_TCP_QUERIES) }
YY_BREAK
case 26:
YY_RULE_SETUP
#line 240 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TCP_REUSE_TIMEOUT) }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 241 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TCP_AUTH_QUERY_TIMEOUT) }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 242 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 243 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 244 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SOCK_QUEUE_TIMEOUT) }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 245 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 246 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_UPSTREAM) }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 247 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 34:
YY_RULE_SETUP
#line 248 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 249 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 250 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 251 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 252 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SSL_PORT) }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 253 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 254 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 255 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_WIN_CERT) }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 256 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_WIN_CERT) }
YY_BREAK
case 43:
YY_RULE_SETUP
#line 257 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 258 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 259 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 260 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 261 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 262 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERS) }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 263 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
YY_BREAK
case 50:
YY_RULE_SETUP
#line 264 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TLS_USE_SNI) }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 265 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTPS_PORT) }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 266 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_ENDPOINT) }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 267 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_MAX_STREAMS) }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 268 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_QUERY_BUFFER_SIZE) }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 269 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_RESPONSE_BUFFER_SIZE) }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 270 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_NODELAY) }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 271 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_NOTLS_DOWNSTREAM) }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 272 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSTEMD) }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 273 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_DAEMONIZE) }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 274 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 275 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE) }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 276 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 277 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 278 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC_PORTS) }
YY_BREAK
case 65:
YY_RULE_SETUP
#line 279 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SO_RCVBUF) }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 280 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SO_SNDBUF) }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 281 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SO_REUSEPORT) }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 282 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_TRANSPARENT) }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 283 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_FREEBIND) }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 284 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_DSCP) }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 285 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CHROOT) }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 286 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_USERNAME) }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 287 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DIRECTORY) }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 288 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOGFILE) }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 289 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PIDFILE) }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 290 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_HINTS) }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 291 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 292 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 293 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 294 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 295 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 296 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 297 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 298 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 299 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 300 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 301 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 302 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 303 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 304 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 305 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 306 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 307 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_CACHE_MAX_RTT) }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 308 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INFRA_KEEP_PROBING) }
YY_BREAK
case 95:
YY_RULE_SETUP
#line 309 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 310 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 311 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DELAY_CLOSE) }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 312 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UDP_CONNECT) }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 313 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 314 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 315 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 316 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_GLUE) }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 317 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
YY_BREAK
case 104:
YY_RULE_SETUP
#line 318 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 319 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 320 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 321 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HARDEN_UNKNOWN_ADDITIONAL) }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 322 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 323 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 324 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CAPS_WHITELIST) }
YY_BREAK
case 111:
YY_RULE_SETUP
#line 325 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 326 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 327 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 328 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH_KEY) }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 329 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PREFETCH) }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 330 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DENY_ANY) }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 331 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_STUB_ZONE) }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 332 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_NAME) }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 333 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_ADDR) }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 334 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_HOST) }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 335 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_PRIME) }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 336 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_FIRST) }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 337 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_NO_CACHE) }
YY_BREAK
case 124:
YY_RULE_SETUP
#line 338 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 339 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 340 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STUB_TCP_UPSTREAM) }
YY_BREAK
case 127:
YY_RULE_SETUP
#line 341 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_FORWARD_ZONE) }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 342 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_ADDR) }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 343 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_HOST) }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 344 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_FIRST) }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 345 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
YY_BREAK
case 132:
YY_RULE_SETUP
#line 346 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 347 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 348 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FORWARD_TCP_UPSTREAM) }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 349 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_AUTH_ZONE) }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 350 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_RPZ) }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 351 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TAGS) }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 352 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_ACTION_OVERRIDE) }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 353 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_CNAME_OVERRIDE) }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 354 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG) }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 355 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_LOG_NAME) }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 356 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RPZ_SIGNAL_NXDOMAIN_RA) }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 357 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ZONEFILE) }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 358 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MASTER) }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 359 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MASTER) }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 360 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_URL) }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 361 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ALLOW_NOTIFY) }
YY_BREAK
case 148:
YY_RULE_SETUP
#line 362 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
YY_BREAK
case 149:
YY_RULE_SETUP
#line 363 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FOR_UPSTREAM) }
YY_BREAK
case 150:
YY_RULE_SETUP
#line 364 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FALLBACK_ENABLED) }
YY_BREAK
case 151:
YY_RULE_SETUP
#line 365 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_VIEW) }
YY_BREAK
case 152:
YY_RULE_SETUP
#line 366 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VIEW_FIRST) }
YY_BREAK
case 153:
YY_RULE_SETUP
#line 367 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 368 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 369 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL) }
YY_BREAK
case 156:
YY_RULE_SETUP
#line 370 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_INTERFACE_ACTION) }
YY_BREAK
case 157:
YY_RULE_SETUP
#line 371 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
YY_BREAK
case 158:
YY_RULE_SETUP
#line 372 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
YY_BREAK
case 159:
YY_RULE_SETUP
#line 373 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 374 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
YY_BREAK
case 161:
YY_RULE_SETUP
#line 375 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 162:
YY_RULE_SETUP
#line 376 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 163:
YY_RULE_SETUP
#line 377 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 378 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
YY_BREAK
case 165:
YY_RULE_SETUP
#line 379 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
YY_BREAK
case 166:
YY_RULE_SETUP
#line 380 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
YY_BREAK
case 167:
YY_RULE_SETUP
#line 381 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_IDENTITY) }
YY_BREAK
case 168:
YY_RULE_SETUP
#line 382 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_VERSION) }
YY_BREAK
case 169:
YY_RULE_SETUP
#line 383 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
YY_BREAK
case 170:
YY_RULE_SETUP
#line 384 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HIDE_HTTP_USER_AGENT) }
YY_BREAK
case 171:
YY_RULE_SETUP
#line 385 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IDENTITY) }
YY_BREAK
case 172:
YY_RULE_SETUP
#line 386 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VERSION) }
YY_BREAK
case 173:
YY_RULE_SETUP
#line 387 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_HTTP_USER_AGENT) }
YY_BREAK
case 174:
YY_RULE_SETUP
#line 388 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MODULE_CONF) }
YY_BREAK
case 175:
YY_RULE_SETUP
#line 389 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR) }
YY_BREAK
case 176:
YY_RULE_SETUP
#line 390 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
YY_BREAK
case 177:
YY_RULE_SETUP
#line 391 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
YY_BREAK
case 178:
YY_RULE_SETUP
#line 392 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
YY_BREAK
case 179:
YY_RULE_SETUP
#line 393 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
YY_BREAK
case 180:
YY_RULE_SETUP
#line 394 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR) }
YY_BREAK
case 181:
YY_RULE_SETUP
#line 395 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
YY_BREAK
case 182:
YY_RULE_SETUP
#line 396 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
YY_BREAK
case 183:
YY_RULE_SETUP
#line 397 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
YY_BREAK
case 184:
YY_RULE_SETUP
#line 398 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
YY_BREAK
case 185:
YY_RULE_SETUP
#line 399 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
YY_BREAK
case 186:
YY_RULE_SETUP
#line 400 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VAL_MAX_RESTART) }
YY_BREAK
case 187:
YY_RULE_SETUP
#line 401 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_BOGUS_TTL) }
YY_BREAK
case 188:
YY_RULE_SETUP
#line 402 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
YY_BREAK
case 189:
YY_RULE_SETUP
#line 403 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
YY_BREAK
case 190:
YY_RULE_SETUP
#line 404 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
YY_BREAK
case 191:
YY_RULE_SETUP
#line 405 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
YY_BREAK
case 192:
YY_RULE_SETUP
#line 406 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DISABLE_EDNS_DO) }
YY_BREAK
case 193:
YY_RULE_SETUP
#line 407 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED) }
YY_BREAK
case 194:
YY_RULE_SETUP
#line 408 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
YY_BREAK
case 195:
YY_RULE_SETUP
#line 409 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
YY_BREAK
case 196:
YY_RULE_SETUP
#line 410 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_REPLY_TTL) }
YY_BREAK
case 197:
YY_RULE_SETUP
#line 411 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_EXPIRED_CLIENT_TIMEOUT) }
YY_BREAK
case 198:
YY_RULE_SETUP
#line 412 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EDE_SERVE_EXPIRED) }
YY_BREAK
case 199:
YY_RULE_SETUP
#line 413 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVE_ORIGINAL_TTL) }
YY_BREAK
case 200:
YY_RULE_SETUP
#line 414 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_DSA) }
YY_BREAK
case 201:
YY_RULE_SETUP
#line 415 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAKE_SHA1) }
YY_BREAK
case 202:
YY_RULE_SETUP
#line 416 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
YY_BREAK
case 203:
YY_RULE_SETUP
#line 417 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
YY_BREAK
case 204:
YY_RULE_SETUP
#line 418 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
YY_BREAK
case 205:
YY_RULE_SETUP
#line 419 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
YY_BREAK
case 206:
YY_RULE_SETUP
#line 420 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
YY_BREAK
case 207:
YY_RULE_SETUP
#line 422 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ZONEMD_PERMISSIVE_MODE) }
YY_BREAK
case 208:
YY_RULE_SETUP
#line 423 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ZONEMD_CHECK) }
YY_BREAK
case 209:
YY_RULE_SETUP
#line 424 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ZONEMD_REJECT_ABSENCE) }
YY_BREAK
case 210:
YY_RULE_SETUP
#line 425 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
YY_BREAK
case 211:
YY_RULE_SETUP
#line 426 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
YY_BREAK
case 212:
YY_RULE_SETUP
#line 427 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_KEEP_MISSING) }
YY_BREAK
case 213:
YY_RULE_SETUP
#line 428 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
YY_BREAK
case 214:
YY_RULE_SETUP
#line 429 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_USE_SYSLOG) }
YY_BREAK
case 215:
YY_RULE_SETUP
#line 430 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_IDENTITY) }
YY_BREAK
case 216:
YY_RULE_SETUP
#line 431 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
YY_BREAK
case 217:
YY_RULE_SETUP
#line 432 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_QUERIES) }
YY_BREAK
case 218:
YY_RULE_SETUP
#line 433 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_REPLIES) }
YY_BREAK
case 219:
YY_RULE_SETUP
#line 434 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) }
YY_BREAK
case 220:
YY_RULE_SETUP
#line 435 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
YY_BREAK
case 221:
YY_RULE_SETUP
#line 436 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_SERVFAIL) }
YY_BREAK
case 222:
YY_RULE_SETUP
#line 437 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOG_DESTADDR) }
YY_BREAK
case 223:
YY_RULE_SETUP
#line 438 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE) }
YY_BREAK
case 224:
YY_RULE_SETUP
#line 439 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA) }
YY_BREAK
case 225:
YY_RULE_SETUP
#line 440 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
YY_BREAK
case 226:
YY_RULE_SETUP
#line 441 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
YY_BREAK
case 227:
YY_RULE_SETUP
#line 442 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
YY_BREAK
case 228:
YY_RULE_SETUP
#line 443 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
YY_BREAK
case 229:
YY_RULE_SETUP
#line 444 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
YY_BREAK
case 230:
YY_RULE_SETUP
#line 445 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
YY_BREAK
case 231:
YY_RULE_SETUP
#line 446 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_STATISTICS_INHIBIT_ZERO) }
YY_BREAK
case 232:
YY_RULE_SETUP
#line 447 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SHM_ENABLE) }
YY_BREAK
case 233:
YY_RULE_SETUP
#line 448 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SHM_KEY) }
YY_BREAK
case 234:
YY_RULE_SETUP
#line 449 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_REMOTE_CONTROL) }
YY_BREAK
case 235:
YY_RULE_SETUP
#line 450 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_ENABLE) }
YY_BREAK
case 236:
YY_RULE_SETUP
#line 451 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
YY_BREAK
case 237:
YY_RULE_SETUP
#line 452 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_PORT) }
YY_BREAK
case 238:
YY_RULE_SETUP
#line 453 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
YY_BREAK
case 239:
YY_RULE_SETUP
#line 454 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
YY_BREAK
case 240:
YY_RULE_SETUP
#line 455 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
YY_BREAK
case 241:
YY_RULE_SETUP
#line 456 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
YY_BREAK
case 242:
YY_RULE_SETUP
#line 457 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
YY_BREAK
case 243:
YY_RULE_SETUP
#line 458 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
YY_BREAK
case 244:
YY_RULE_SETUP
#line 459 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_PYTHON) }
YY_BREAK
case 245:
YY_RULE_SETUP
#line 460 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DYNLIB_FILE) }
YY_BREAK
case 246:
YY_RULE_SETUP
#line 461 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_DYNLIB) }
YY_BREAK
case 247:
YY_RULE_SETUP
#line 462 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
YY_BREAK
case 248:
YY_RULE_SETUP
#line 463 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
YY_BREAK
case 249:
YY_RULE_SETUP
#line 464 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
YY_BREAK
case 250:
YY_RULE_SETUP
#line 465 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) }
YY_BREAK
case 251:
YY_RULE_SETUP
#line 466 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
YY_BREAK
case 252:
YY_RULE_SETUP
#line 467 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_PREFIX) }
YY_BREAK
case 253:
YY_RULE_SETUP
#line 468 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
YY_BREAK
case 254:
YY_RULE_SETUP
#line 469 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
YY_BREAK
case 255:
YY_RULE_SETUP
#line 470 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_NAT64_PREFIX) }
YY_BREAK
case 256:
YY_RULE_SETUP
#line 471 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DEFINE_TAG) }
YY_BREAK
case 257:
YY_RULE_SETUP
#line 472 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
YY_BREAK
case 258:
YY_RULE_SETUP
#line 473 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
YY_BREAK
case 259:
YY_RULE_SETUP
#line 474 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
YY_BREAK
case 260:
YY_RULE_SETUP
#line 475 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
YY_BREAK
case 261:
YY_RULE_SETUP
#line 476 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
YY_BREAK
case 262:
YY_RULE_SETUP
#line 477 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_INTERFACE_TAG) }
YY_BREAK
case 263:
YY_RULE_SETUP
#line 478 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_INTERFACE_TAG_ACTION) }
YY_BREAK
case 264:
YY_RULE_SETUP
#line 479 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_INTERFACE_TAG_DATA) }
YY_BREAK
case 265:
YY_RULE_SETUP
#line 480 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_INTERFACE_VIEW) }
YY_BREAK
case 266:
YY_RULE_SETUP
#line 481 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
YY_BREAK
case 267:
YY_RULE_SETUP
#line 482 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_DNSTAP) }
YY_BREAK
case 268:
YY_RULE_SETUP
#line 483 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
YY_BREAK
case 269:
YY_RULE_SETUP
#line 484 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_BIDIRECTIONAL) }
YY_BREAK
case 270:
YY_RULE_SETUP
#line 485 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
YY_BREAK
case 271:
YY_RULE_SETUP
#line 486 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IP) }
YY_BREAK
case 272:
YY_RULE_SETUP
#line 487 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS) }
YY_BREAK
case 273:
YY_RULE_SETUP
#line 488 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS_SERVER_NAME) }
YY_BREAK
case 274:
YY_RULE_SETUP
#line 489 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_TLS_CERT_BUNDLE) }
YY_BREAK
case 275:
YY_RULE_SETUP
#line 490 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_TLS_CLIENT_KEY_FILE) }
YY_BREAK
case 276:
YY_RULE_SETUP
#line 492 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_TLS_CLIENT_CERT_FILE) }
YY_BREAK
case 277:
YY_RULE_SETUP
#line 494 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
YY_BREAK
case 278:
YY_RULE_SETUP
#line 495 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
YY_BREAK
case 279:
YY_RULE_SETUP
#line 496 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
YY_BREAK
case 280:
YY_RULE_SETUP
#line 497 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSTAP_VERSION) }
YY_BREAK
case 281:
YY_RULE_SETUP
#line 498 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
YY_BREAK
case 282:
YY_RULE_SETUP
#line 500 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
YY_BREAK
case 283:
YY_RULE_SETUP
#line 502 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
YY_BREAK
case 284:
YY_RULE_SETUP
#line 504 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
YY_BREAK
case 285:
YY_RULE_SETUP
#line 506 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
YY_BREAK
case 286:
YY_RULE_SETUP
#line 508 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
YY_BREAK
case 287:
YY_RULE_SETUP
#line 510 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
YY_BREAK
case 288:
YY_RULE_SETUP
#line 511 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT) }
YY_BREAK
case 289:
YY_RULE_SETUP
#line 512 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_COOKIE) }
YY_BREAK
case 290:
YY_RULE_SETUP
#line 513 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT) }
YY_BREAK
case 291:
YY_RULE_SETUP
#line 514 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
YY_BREAK
case 292:
YY_RULE_SETUP
#line 515 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
YY_BREAK
case 293:
YY_RULE_SETUP
#line 516 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
YY_BREAK
case 294:
YY_RULE_SETUP
#line 517 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
YY_BREAK
case 295:
YY_RULE_SETUP
#line 518 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
YY_BREAK
case 296:
YY_RULE_SETUP
#line 519 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
YY_BREAK
case 297:
YY_RULE_SETUP
#line 520 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
YY_BREAK
case 298:
YY_RULE_SETUP
#line 521 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
YY_BREAK
case 299:
YY_RULE_SETUP
#line 522 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IP_RATELIMIT_BACKOFF) }
YY_BREAK
case 300:
YY_RULE_SETUP
#line 523 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_RATELIMIT_BACKOFF) }
YY_BREAK
case 301:
YY_RULE_SETUP
#line 524 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_OUTBOUND_MSG_RETRY) }
YY_BREAK
case 302:
YY_RULE_SETUP
#line 525 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_SENT_COUNT) }
YY_BREAK
case 303:
YY_RULE_SETUP
#line 526 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_MAX_QUERY_RESTARTS) }
YY_BREAK
case 304:
YY_RULE_SETUP
#line 527 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_LOW_RTT) }
YY_BREAK
case 305:
YY_RULE_SETUP
#line 528 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
YY_BREAK
case 306:
YY_RULE_SETUP
#line 529 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 307:
YY_RULE_SETUP
#line 530 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 308:
YY_RULE_SETUP
#line 531 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
YY_BREAK
case 309:
YY_RULE_SETUP
#line 532 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
YY_BREAK
case 310:
YY_RULE_SETUP
#line 533 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP) }
YY_BREAK
case 311:
YY_RULE_SETUP
#line 534 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
YY_BREAK
case 312:
YY_RULE_SETUP
#line 535 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_DNSCRYPT) }
YY_BREAK
case 313:
YY_RULE_SETUP
#line 536 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
YY_BREAK
case 314:
YY_RULE_SETUP
#line 537 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
YY_BREAK
case 315:
YY_RULE_SETUP
#line 538 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
YY_BREAK
case 316:
YY_RULE_SETUP
#line 539 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
YY_BREAK
case 317:
YY_RULE_SETUP
#line 540 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
YY_BREAK
case 318:
YY_RULE_SETUP
#line 541 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
YY_BREAK
case 319:
YY_RULE_SETUP
#line 542 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
YY_BREAK
case 320:
YY_RULE_SETUP
#line 544 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
YY_BREAK
case 321:
YY_RULE_SETUP
#line 546 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
YY_BREAK
case 322:
YY_RULE_SETUP
#line 547 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
YY_BREAK
case 323:
YY_RULE_SETUP
#line 548 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PAD_RESPONSES) }
YY_BREAK
case 324:
YY_RULE_SETUP
#line 549 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PAD_RESPONSES_BLOCK_SIZE) }
YY_BREAK
case 325:
YY_RULE_SETUP
#line 550 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PAD_QUERIES) }
YY_BREAK
case 326:
YY_RULE_SETUP
#line 551 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PAD_QUERIES_BLOCK_SIZE) }
YY_BREAK
case 327:
YY_RULE_SETUP
#line 552 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
YY_BREAK
case 328:
YY_RULE_SETUP
#line 553 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
YY_BREAK
case 329:
YY_RULE_SETUP
#line 554 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
YY_BREAK
case 330:
YY_RULE_SETUP
#line 555 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
YY_BREAK
case 331:
YY_RULE_SETUP
#line 556 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
YY_BREAK
case 332:
YY_RULE_SETUP
#line 557 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
YY_BREAK
case 333:
YY_RULE_SETUP
#line 558 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
YY_BREAK
case 334:
YY_RULE_SETUP
#line 559 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_CACHEDB) }
YY_BREAK
case 335:
YY_RULE_SETUP
#line 560 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
YY_BREAK
case 336:
YY_RULE_SETUP
#line 561 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
YY_BREAK
case 337:
YY_RULE_SETUP
#line 562 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_NO_STORE) }
YY_BREAK
case 338:
YY_RULE_SETUP
#line 563 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
YY_BREAK
case 339:
YY_RULE_SETUP
#line 564 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
YY_BREAK
case 340:
YY_RULE_SETUP
#line 565 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPATH) }
YY_BREAK
case 341:
YY_RULE_SETUP
#line 566 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISPASSWORD) }
YY_BREAK
case 342:
YY_RULE_SETUP
#line 567 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
YY_BREAK
case 343:
YY_RULE_SETUP
#line 568 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISEXPIRERECORDS) }
YY_BREAK
case 344:
YY_RULE_SETUP
#line 569 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_CACHEDB_REDISLOGICALDB) }
YY_BREAK
case 345:
YY_RULE_SETUP
#line 570 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(0, VAR_IPSET) }
YY_BREAK
case 346:
YY_RULE_SETUP
#line 571 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V4) }
YY_BREAK
case 347:
YY_RULE_SETUP
#line 572 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_IPSET_NAME_V6) }
YY_BREAK
case 348:
YY_RULE_SETUP
#line 573 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
YY_BREAK
case 349:
YY_RULE_SETUP
#line 574 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
YY_BREAK
case 350:
YY_RULE_SETUP
#line 575 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_ANSWER_COOKIE ) }
YY_BREAK
case 351:
YY_RULE_SETUP
#line 576 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_COOKIE_SECRET) }
YY_BREAK
case 352:
YY_RULE_SETUP
#line 577 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(2, VAR_EDNS_CLIENT_STRING) }
YY_BREAK
case 353:
YY_RULE_SETUP
#line 578 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EDNS_CLIENT_STRING_OPCODE) }
YY_BREAK
case 354:
YY_RULE_SETUP
#line 579 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_NSID ) }
YY_BREAK
case 355:
YY_RULE_SETUP
#line 580 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_EDE ) }
YY_BREAK
case 356:
YY_RULE_SETUP
#line 581 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ YDVAR(1, VAR_PROXY_PROTOCOL_PORT) }
YY_BREAK
case 357:
/* rule 357 can match eol */
YY_RULE_SETUP
#line 582 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
/* Quoted strings. Strip leading and ending quotes */
case 358:
YY_RULE_SETUP
#line 585 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
YY_BREAK
case YY_STATE_EOF(quotedstring):
#line 586 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 359:
YY_RULE_SETUP
#line 591 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 360:
/* rule 360 can match eol */
YY_RULE_SETUP
#line 592 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ yyerror("newline inside quoted string, no end \"");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 361:
YY_RULE_SETUP
#line 594 "/usr/src/usr.sbin/unbound/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 362:
YY_RULE_SETUP
#line 606 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
YY_BREAK
case YY_STATE_EOF(singlequotedstr):
#line 607 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside quoted string");
if(--num_args == 0) { BEGIN(INITIAL); }
else { BEGIN(val); }
}
YY_BREAK
case 363:
YY_RULE_SETUP
#line 612 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
YY_BREAK
case 364:
/* rule 364 can match eol */
YY_RULE_SETUP
#line 613 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ yyerror("newline inside quoted string, no end '");
cfg_parser->line++; BEGIN(INITIAL); }
YY_BREAK
case 365:
YY_RULE_SETUP
#line 615 "/usr/src/usr.sbin/unbound/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 366:
YY_RULE_SETUP
#line 627 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
YY_BREAK
case YY_STATE_EOF(include):
#line 629 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside include directive");
BEGIN(inc_prev);
}
YY_BREAK
case 367:
YY_RULE_SETUP
#line 633 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("ISP ")); /* ignore */ }
YY_BREAK
case 368:
/* rule 368 can match eol */
YY_RULE_SETUP
#line 634 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++;}
YY_BREAK
case 369:
YY_RULE_SETUP
#line 635 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
YY_BREAK
case 370:
YY_RULE_SETUP
#line 636 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("Iunquotedstr(%s) ", yytext));
config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(include_quoted):
#line 641 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 371:
YY_RULE_SETUP
#line 645 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 372:
/* rule 372 can match eol */
YY_RULE_SETUP
#line 646 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev); }
YY_BREAK
case 373:
YY_RULE_SETUP
#line 648 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("IQE "));
yytext[yyleng - 1] = '\0';
config_start_include_glob(yytext, 0);
BEGIN(inc_prev);
}
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(val):
#line 654 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("LEXEOF "));
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
if (!config_include_stack) {
yyterminate();
} else {
int prev_toplevel = inc_toplevel;
fclose(yyin);
config_end_include();
if(prev_toplevel) return (VAR_FORCE_TOPLEVEL);
}
}
YY_BREAK
/* include-toplevel: directive */
case 374:
YY_RULE_SETUP
#line 668 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include_toplevel);
}
YY_BREAK
case YY_STATE_EOF(include_toplevel):
#line 671 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside include_toplevel directive");
BEGIN(inc_prev);
}
YY_BREAK
case 375:
YY_RULE_SETUP
#line 675 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("ITSP ")); /* ignore */ }
YY_BREAK
case 376:
/* rule 376 can match eol */
YY_RULE_SETUP
#line 676 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("NL\n")); cfg_parser->line++; }
YY_BREAK
case 377:
YY_RULE_SETUP
#line 677 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("ITQS ")); BEGIN(include_toplevel_quoted); }
YY_BREAK
case 378:
YY_RULE_SETUP
#line 678 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("ITunquotedstr(%s) ", yytext));
config_start_include_glob(yytext, 1);
BEGIN(inc_prev);
return (VAR_FORCE_TOPLEVEL);
}
YY_BREAK
case YY_STATE_EOF(include_toplevel_quoted):
#line 684 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("EOF inside quoted string");
BEGIN(inc_prev);
}
YY_BREAK
case 379:
YY_RULE_SETUP
#line 688 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("ITSTR(%s) ", yytext)); yymore(); }
YY_BREAK
case 380:
/* rule 380 can match eol */
YY_RULE_SETUP
#line 689 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
yyerror("newline before \" in include name");
cfg_parser->line++; BEGIN(inc_prev);
}
YY_BREAK
case 381:
YY_RULE_SETUP
#line 693 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
LEXOUT(("ITQE "));
yytext[yyleng - 1] = '\0';
config_start_include_glob(yytext, 1);
BEGIN(inc_prev);
return (VAR_FORCE_TOPLEVEL);
}
YY_BREAK
case 382:
YY_RULE_SETUP
#line 701 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{ LEXOUT(("unquotedstr(%s) ", yytext));
if(--num_args == 0) { BEGIN(INITIAL); }
yylval.str = strdup(yytext); return STRING_ARG; }
YY_BREAK
case 383:
YY_RULE_SETUP
#line 705 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
ub_c_error_msg("unknown keyword '%s'", yytext);
}
YY_BREAK
case 384:
YY_RULE_SETUP
#line 709 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
{
ub_c_error_msg("stray '%s'", yytext);
}
YY_BREAK
case 385:
YY_RULE_SETUP
#line 713 "/usr/src/usr.sbin/unbound/util/configlexer.lex"
ECHO;
YY_BREAK
#line 5903 "<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
{
yy_size_t num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
int yy_c_buf_p_offset =
(int) ((yy_c_buf_p) - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
yy_size_t new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = 0;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
"fatal error - scanner input buffer overflow" );
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
number_to_move - 1;
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
(yy_n_chars), num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
if ( (yy_n_chars) == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
yyrestart(yyin );
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
/* "- 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 >= 3816 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
{
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 >= 3816 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 3815);
return yy_is_jam ? 0 : yy_current_state;
}
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void)
#else
static int input (void)
#endif
{
int c;
*(yy_c_buf_p) = (yy_hold_char);
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
/* This was really a NUL. */
*(yy_c_buf_p) = '\0';
else
{ /* need more input */
yy_size_t offset = (yy_c_buf_p) - (yytext_ptr);
++(yy_c_buf_p);
switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart(yyin );
/*FALLTHROUGH*/
case EOB_ACT_END_OF_FILE:
{
if ( yywrap( ) )
return EOF;
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput();
#else
return input();
#endif
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) = (yytext_ptr) + offset;
break;
}
}
}
c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
*(yy_c_buf_p) = '\0'; /* preserve yytext */
(yy_hold_char) = *++(yy_c_buf_p);
return c;
}
#endif /* ifndef YY_NO_INPUT */
/** Immediately switch to a different input stream.
* @param input_file A readable stream.
*
* @note This function does not reset the start condition to @c INITIAL .
*/
void yyrestart (FILE * input_file )
{
if ( ! YY_CURRENT_BUFFER ){
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE );
}
yy_init_buffer(YY_CURRENT_BUFFER,input_file );
yy_load_buffer_state( );
}
/** Switch to a different input buffer.
* @param new_buffer The new input buffer.
*
*/
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
{
/* TODO. We should be able to replace this entire function body
* with
* yypop_buffer_state();
* yypush_buffer_state(new_buffer);
*/
yyensure_buffer_stack ();
if ( YY_CURRENT_BUFFER == new_buffer )
return;
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
YY_CURRENT_BUFFER_LVALUE = new_buffer;
yy_load_buffer_state( );
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
*/
(yy_did_buffer_switch_on_eof) = 1;
}
static void yy_load_buffer_state (void)
{
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
(yy_hold_char) = *(yy_c_buf_p);
}
/** Allocate and initialize an input buffer state.
* @param file A readable stream.
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
*
* @return the allocated buffer state.
*/
YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_is_our_buffer = 1;
yy_init_buffer(b,file );
return b;
}
/** Destroy the buffer.
* @param b a buffer created with yy_create_buffer()
*
*/
void yy_delete_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
yyfree((void *) b->yy_ch_buf );
yyfree((void *) b );
}
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a yyrestart() or at EOF.
*/
static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
{
int oerrno = errno;
yy_flush_buffer(b );
b->yy_input_file = file;
b->yy_fill_buffer = 1;
/* If b is the current buffer, then yy_init_buffer was _probably_
* called from yyrestart() or through yy_get_next_buffer.
* In that case, we don't want to reset the lineno or column.
*/
if (b != YY_CURRENT_BUFFER){
b->yy_bs_lineno = 1;
b->yy_bs_column = 0;
}
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
errno = oerrno;
}
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
*
*/
void yy_flush_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == YY_CURRENT_BUFFER )
yy_load_buffer_state( );
}
/** Pushes the new state onto the stack. The new state becomes
* the current state. This function will allocate the stack
* if necessary.
* @param new_buffer The new state.
*
*/
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
{
if (new_buffer == NULL)
return;
yyensure_buffer_stack();
/* This block is copied from yy_switch_to_buffer. */
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
/* Only push if top exists. Otherwise, replace top. */
if (YY_CURRENT_BUFFER)
(yy_buffer_stack_top)++;
YY_CURRENT_BUFFER_LVALUE = new_buffer;
/* copied from yy_switch_to_buffer. */
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
*
*/
void yypop_buffer_state (void)
{
if (!YY_CURRENT_BUFFER)
return;
yy_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
if ((yy_buffer_stack_top) > 0)
--(yy_buffer_stack_top);
if (YY_CURRENT_BUFFER) {
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
}
/* Allocates the stack if it does not exist.
* Guarantees space for at least one push.
*/
static void yyensure_buffer_stack (void)
{
yy_size_t num_to_alloc;
if (!(yy_buffer_stack)) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1;
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
(yy_buffer_stack_top) = 0;
return;
}
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
/* Increase the buffer to prepare for a possible push. */
int grow_size = 8 /* arbitrary grow size */;
num_to_alloc = (yy_buffer_stack_max) + grow_size;
(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
((yy_buffer_stack),
num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
/* zero only the new slots.*/
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
}
}
/** Setup the input buffer state to scan directly from a user-specified character buffer.
* @param base the character buffer
* @param size the size in bytes of the character buffer
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = 0;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
yy_switch_to_buffer(b );
return b;
}
/** Setup the input buffer state to scan a string. The next call to yylex() will
* scan from a @e copy of @a str.
* @param yystr a NUL-terminated string to scan
*
* @return the newly allocated buffer state object.
* @note If you want to scan bytes that may contain NUL values, then use
* yy_scan_bytes() instead.
*/
YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
{
return yy_scan_bytes(yystr,strlen(yystr) );
}
/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
* scan from a @e copy of @a bytes.
* @param yybytes the byte buffer to scan
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, yy_size_t _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
yy_size_t i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = _yybytes_len + 2;
buf = (char *) yyalloc(n );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
for ( i = 0; i < _yybytes_len; ++i )
buf[i] = yybytes[i];
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
b = yy_scan_buffer(buf,n );
if ( ! b )
YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
/* It's okay to grow etc. this buffer, and we should throw it
* away when we're done.
*/
b->yy_is_our_buffer = 1;
return b;
}
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
static void yy_fatal_error (yyconst char* msg )
{
(void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
yytext[yyleng] = (yy_hold_char); \
(yy_c_buf_p) = yytext + yyless_macro_arg; \
(yy_hold_char) = *(yy_c_buf_p); \
*(yy_c_buf_p) = '\0'; \
yyleng = yyless_macro_arg; \
} \
while ( 0 )
/* Accessor methods (get/set functions) to struct members. */
/** Get the current line number.
*
*/
int yyget_lineno (void)
{
return yylineno;
}
/** Get the input stream.
*
*/
FILE *yyget_in (void)
{
return yyin;
}
/** Get the output stream.
*
*/
FILE *yyget_out (void)
{
return yyout;
}
/** Get the length of the current token.
*
*/
yy_size_t yyget_leng (void)
{
return yyleng;
}
/** Get the current token.
*
*/
char *yyget_text (void)
{
return yytext;
}
/** Set the current line number.
* @param line_number
*
*/
void yyset_lineno (int line_number )
{
yylineno = line_number;
}
/** Set the input stream. This does not discard the current
* input buffer.
* @param in_str A readable stream.
*
* @see yy_switch_to_buffer
*/
void yyset_in (FILE * in_str )
{
yyin = in_str ;
}
void yyset_out (FILE * out_str )
{
yyout = out_str ;
}
int yyget_debug (void)
{
return yy_flex_debug;
}
void yyset_debug (int bdebug )
{
yy_flex_debug = bdebug ;
}
static int yy_init_globals (void)
{
/* Initialization is the same as for the non-reentrant scanner.
* This function is called from yylex_destroy(), so don't allocate here.
*/
(yy_buffer_stack) = 0;
(yy_buffer_stack_top) = 0;
(yy_buffer_stack_max) = 0;
(yy_c_buf_p) = (char *) 0;
(yy_init) = 0;
(yy_start) = 0;
/* Defined in main.c */
#ifdef YY_STDINIT
yyin = stdin;
yyout = stdout;
#else
yyin = (FILE *) 0;
yyout = (FILE *) 0;
#endif
/* For future reference: Set errno on error, since we are called by
* yylex_init()
*/
return 0;
}
/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int yylex_destroy (void)
{
/* Pop the buffer stack, destroying each element. */
while(YY_CURRENT_BUFFER){
yy_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
yypop_buffer_state();
}
/* Destroy the stack itself. */
yyfree((yy_buffer_stack) );
(yy_buffer_stack) = NULL;
/* Reset the globals. This is important in a non-reentrant scanner so the next time
* yylex() is called, initialization will occur. */
yy_init_globals( );
return 0;
}
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
{
int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * s )
{
int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
void *yyalloc (yy_size_t size )
{
return (void *) malloc( size );
}
void *yyrealloc (void * ptr, yy_size_t size )
{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return (void *) realloc( (char *) ptr, size );
}
void yyfree (void * ptr )
{
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"
#line 713 "/usr/src/usr.sbin/unbound/util/configlexer.lex"