From f9552ede2b5a67541f0946073714198a7fbd8c7b Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Fri, 3 Feb 2017 16:48:02 -0300 Subject: [PATCH] Adds missing file --- .gitignore | 3 - src/parser/seclang-scanner.cc | 7641 +++++++++++++++++++++++++++++++++ 2 files changed, 7641 insertions(+), 3 deletions(-) create mode 100644 src/parser/seclang-scanner.cc diff --git a/.gitignore b/.gitignore index 8fffd0be..bbe4af8a 100644 --- a/.gitignore +++ b/.gitignore @@ -24,9 +24,6 @@ depcomp src/config.h src/config.h.in src/location.hh -src/parser/seclang-parser.cc -src/parser/seclang-parser.hh -src/parser/seclang-scanner.cc src/position.hh src/stack.hh src/stamp-h1 diff --git a/src/parser/seclang-scanner.cc b/src/parser/seclang-scanner.cc new file mode 100644 index 00000000..f5e96100 --- /dev/null +++ b/src/parser/seclang-scanner.cc @@ -0,0 +1,7641 @@ + +#line 2 "seclang-scanner.cc" + +#define YY_INT_ALIGNED short int + +/* A lexical scanner generated by flex */ + +/* %not-for-header */ +/* %if-c-only */ +/* %if-not-reentrant */ + +/* %endif */ +/* %endif */ +/* %ok-for-header */ + +#define FLEX_SCANNER +#define YY_FLEX_MAJOR_VERSION 2 +#define YY_FLEX_MINOR_VERSION 6 +#define YY_FLEX_SUBMINOR_VERSION 3 +#if YY_FLEX_SUBMINOR_VERSION > 0 +#define FLEX_BETA +#endif + +/* %if-c++-only */ +/* %endif */ + +/* %if-c-only */ + #define yy_create_buffer yy_create_buffer + + #define yy_delete_buffer yy_delete_buffer + + #define yy_scan_buffer yy_scan_buffer + + #define yy_scan_string yy_scan_string + + #define yy_scan_bytes yy_scan_bytes + + #define yy_init_buffer yy_init_buffer + + #define yy_flush_buffer yy_flush_buffer + + #define yy_load_buffer_state yy_load_buffer_state + + #define yy_switch_to_buffer yy_switch_to_buffer + + #define yypush_buffer_state yypush_buffer_state + + #define yypop_buffer_state yypop_buffer_state + + #define yyensure_buffer_stack yyensure_buffer_stack + + #define yylex yylex + + #define yyrestart yyrestart + + #define yylex_init yylex_init + + #define yylex_init_extra yylex_init_extra + + #define yylex_destroy yylex_destroy + + #define yyget_debug yyget_debug + + #define yyset_debug yyset_debug + + #define yyget_extra yyget_extra + + #define yyset_extra yyset_extra + + #define yyget_in yyget_in + + #define yyset_in yyset_in + + #define yyget_out yyget_out + + #define yyset_out yyset_out + + #define yyget_leng yyget_leng + + #define yyget_text yyget_text + + #define yyget_lineno yyget_lineno + + #define yyset_lineno yyset_lineno + + #define yywrap yywrap + +/* %endif */ + + #define yyalloc yyalloc + + #define yyrealloc yyrealloc + + #define yyfree yyfree + +/* %if-c-only */ + + #define yytext yytext + + #define yyleng yyleng + + #define yyin yyin + + #define yyout yyout + + #define yy_flex_debug yy_flex_debug + + #define yylineno yylineno + +/* %endif */ + +/* First, we deal with platform-specific or compiler-specific issues. */ + +/* begin standard C headers. */ +/* %if-c-only */ +#include +#include +#include +#include +/* %endif */ + +/* %if-tables-serialization */ +/* %endif */ +/* end standard C headers. */ + +/* %if-c-or-c++ */ +/* flex integer type definitions */ + +#ifndef FLEXINT_H +#define FLEXINT_H + +/* C99 systems have . 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 +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 */ + +/* %endif */ + +/* %if-c++-only */ +/* %endif */ + +/* TODO: this is always defined, so inline it */ +#define yyconst const + +#if defined(__GNUC__) && __GNUC__ >= 3 +#define yynoreturn __attribute__((__noreturn__)) +#else +#define yynoreturn +#endif + +/* %not-for-header */ +/* Returned upon end-of-file. */ +#define YY_NULL 0 +/* %ok-for-header */ + +/* %not-for-header */ +/* Promotes a possibly negative, possibly signed char to an + * integer in range [0..255] for use as an array index. + */ +#define YY_SC_TO_UI(c) ((YY_CHAR) (c)) +/* %ok-for-header */ + +/* %if-reentrant */ +/* %endif */ + +/* %if-not-reentrant */ + +/* %endif */ + +/* Enter a start condition. This macro really ought to take a parameter, + * but we do it the disgusting crufty way forced on us by the ()-less + * definition of BEGIN. + */ +#define BEGIN (yy_start) = 1 + 2 * +/* Translate the current start state into a value that can be later handed + * to BEGIN to return to the state. The YYSTATE alias is for lex + * compatibility. + */ +#define YY_START (((yy_start) - 1) / 2) +#define YYSTATE YY_START +/* Action number for EOF rule of a given start state. */ +#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) +/* Special action meaning "start processing a new file". */ +#define YY_NEW_FILE yyrestart(yyin ) +#define YY_END_OF_BUFFER_CHAR 0 + +/* Size of default input buffer. */ +#ifndef YY_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k. + * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. + * Ditto for the __ia64__ case accordingly. + */ +#define YY_BUF_SIZE 32768 +#else +#define YY_BUF_SIZE 16384 +#endif /* __ia64__ */ +#endif + +/* The state buf must be large enough to hold one state per character in the main buffer. + */ +#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) + +#ifndef YY_TYPEDEF_YY_BUFFER_STATE +#define YY_TYPEDEF_YY_BUFFER_STATE +typedef struct yy_buffer_state *YY_BUFFER_STATE; +#endif + +#ifndef YY_TYPEDEF_YY_SIZE_T +#define YY_TYPEDEF_YY_SIZE_T +typedef size_t yy_size_t; +#endif + +/* %if-not-reentrant */ +extern int yyleng; +/* %endif */ + +/* %if-c-only */ +/* %if-not-reentrant */ +extern FILE *yyin, *yyout; +/* %endif */ +/* %endif */ + +#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 + { +/* %if-c-only */ + FILE *yy_input_file; +/* %endif */ + +/* %if-c++-only */ +/* %endif */ + + char *yy_ch_buf; /* input buffer */ + char *yy_buf_pos; /* current position in input buffer */ + + /* Size of input buffer in bytes, not including room for EOB + * characters. + */ + int yy_buf_size; + + /* Number of characters read into yy_ch_buf, not including EOB + * characters. + */ + int yy_n_chars; + + /* Whether we "own" the buffer - i.e., we know we created it, + * and can realloc() it to grow it, and should free() it to + * delete it. + */ + int yy_is_our_buffer; + + /* Whether this is an "interactive" input source; if so, and + * if we're using stdio for input, then we want to use getc() + * instead of fread(), to make sure we stop fetching input after + * each newline. + */ + int yy_is_interactive; + + /* Whether we're considered to be at the beginning of a line. + * If so, '^' rules will be active on the next match, otherwise + * not. + */ + int yy_at_bol; + + int yy_bs_lineno; /**< The line count. */ + int yy_bs_column; /**< The column count. */ + + /* Whether to try to fill the input buffer when we reach the + * end of it. + */ + int yy_fill_buffer; + + int yy_buffer_status; + +#define YY_BUFFER_NEW 0 +#define YY_BUFFER_NORMAL 1 + /* When an EOF's been seen but there's still some text to process + * then we mark the buffer as YY_EOF_PENDING, to indicate that we + * shouldn't try reading from the input source any more. We might + * still have a bunch of tokens to match, though, because of + * possible backing-up. + * + * When we actually see the EOF, we change the status to "new" + * (via yyrestart()), so that the user can continue scanning by + * just pointing yyin at a new input file. + */ +#define YY_BUFFER_EOF_PENDING 2 + + }; +#endif /* !YY_STRUCT_YY_BUFFER_STATE */ + +/* %if-c-only Standard (non-C++) definition */ +/* %not-for-header */ +/* %if-not-reentrant */ + +/* Stack of input buffers. */ +static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ +static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ +static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ +/* %endif */ +/* %ok-for-header */ + +/* %endif */ + +/* 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)] + +/* %if-c-only Standard (non-C++) definition */ + +/* %if-not-reentrant */ +/* %not-for-header */ +/* yy_hold_char holds the character lost when yytext is formed. */ +static char yy_hold_char; +static int yy_n_chars; /* number of characters read into yy_ch_buf */ +int yyleng; + +/* Points to current character in buffer. */ +static char *yy_c_buf_p = NULL; +static int yy_init = 0; /* whether we need to initialize */ +static int yy_start = 0; /* start state number */ + +/* Flag which is used to allow yywrap()'s to do buffer switches + * instead of setting up a fresh yyin. A bit of a hack ... + */ +static int yy_did_buffer_switch_on_eof; +/* %ok-for-header */ + +/* %endif */ + +void yyrestart ( FILE *input_file ); +void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer ); +YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size ); +void yy_delete_buffer ( YY_BUFFER_STATE b ); +void yy_flush_buffer ( YY_BUFFER_STATE b ); +void yypush_buffer_state ( YY_BUFFER_STATE new_buffer ); +void yypop_buffer_state ( void ); + +static void yyensure_buffer_stack ( void ); +static void yy_load_buffer_state ( void ); +static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file ); +#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) + +YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size ); +YY_BUFFER_STATE yy_scan_string ( const char *yy_str ); +YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len ); + +/* %endif */ + +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) + +/* %% [1.0] yytext/yyin/yyout/yy_state_type/yylineno etc. def's & init go here */ +/* Begin user sect3 */ + +#define yywrap() (/*CONSTCOND*/1) +#define YY_SKIP_YYWRAP + +#define FLEX_DEBUG +typedef flex_uint8_t YY_CHAR; + +FILE *yyin = NULL, *yyout = NULL; + +typedef int yy_state_type; + +extern int yylineno; +int yylineno = 1; + +extern char *yytext; +#ifdef yytext_ptr +#undef yytext_ptr +#endif +#define yytext_ptr yytext + +/* %% [1.5] DFA */ + +/* %if-c-only Standard (non-C++) definition */ + +static yy_state_type yy_get_previous_state ( void ); +static yy_state_type yy_try_NUL_trans ( yy_state_type current_state ); +static int yy_get_next_buffer ( void ); +static void yynoreturn yy_fatal_error ( const char* msg ); + +/* %endif */ + +/* 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; \ +/* %% [2.0] code to fiddle yytext and yyleng for yymore() goes here \ */\ + yyleng = (int) (yy_cp - yy_bp); \ + (yy_hold_char) = *yy_cp; \ + *yy_cp = '\0'; \ +/* %% [3.0] code to copy yytext_ptr to yytext[] goes here, if %array \ */\ + (yy_c_buf_p) = yy_cp; +/* %% [4.0] data tables for the DFA and the user's section 1 definitions go here */ +#define YY_NUM_RULES 401 +#define YY_END_OF_BUFFER 402 +/* This struct is not used in this scanner, + but its presence is necessary. */ +struct yy_trans_info + { + flex_int32_t yy_verify; + flex_int32_t yy_nxt; + }; +static const flex_int16_t yy_accept[2970] = + { 0, + 0, 0, 212, 212, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 213, 213, 0, 0, 0, 0, 0, 0, 0, 0, + 108, 108, 0, 0, 0, 0, 402, 395, 389, 205, + 209, 210, 208, 211, 395, 395, 395, 395, 395, 395, + 395, 395, 395, 395, 395, 401, 212, 389, 336, 342, + 337, 401, 401, 401, 401, 401, 401, 401, 401, 401, + 401, 401, 401, 401, 401, 401, 401, 401, 401, 388, + 401, 401, 381, 381, 380, 381, 381, 394, 394, 394, + 401, 339, 341, 339, 339, 340, 401, 107, 107, 103, + + 107, 102, 99, 107, 107, 107, 107, 107, 107, 107, + 107, 107, 107, 107, 107, 107, 107, 107, 107, 107, + 401, 383, 213, 214, 401, 382, 401, 382, 147, 396, + 397, 131, 131, 110, 109, 108, 131, 131, 131, 131, + 131, 131, 145, 145, 134, 145, 138, 139, 144, 146, + 389, 205, 0, 208, 208, 208, 0, 0, 0, 0, + 0, 0, 185, 0, 0, 0, 0, 0, 390, 0, + 212, 389, 342, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 311, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 319, 0, 0, 0, + + 0, 0, 390, 0, 0, 0, 0, 0, 389, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 394, 394, 394, 0, 392, 394, 339, + 339, 0, 387, 0, 387, 0, 103, 0, 99, 0, + 104, 102, 105, 0, 99, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 98, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, + 383, 383, 384, 0, 213, 214, 0, 214, 0, 0, + 382, 0, 382, 0, 382, 396, 397, 0, 0, 109, + + 108, 0, 119, 0, 111, 0, 132, 0, 0, 134, + 0, 138, 139, 135, 138, 140, 0, 139, 142, 143, + 146, 208, 0, 0, 0, 0, 0, 184, 0, 0, + 0, 0, 0, 0, 0, 390, 391, 0, 0, 0, + 309, 0, 0, 299, 0, 0, 0, 312, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 320, 0, 0, 0, 0, 307, 390, 343, + 391, 0, 0, 0, 0, 0, 0, 350, 0, 351, + 0, 352, 0, 0, 355, 356, 358, 0, 0, 360, + 0, 0, 0, 0, 0, 392, 393, 338, 338, 387, + + 0, 106, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, + 0, 0, 0, 0, 97, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 100, 101, 384, 0, 0, 0, 215, 0, 0, + 0, 0, 0, 0, 0, 0, 132, 133, 138, 141, + 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 191, 391, 271, 0, 0, 310, 0, 0, + + 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 303, 0, 0, 0, 332, + 0, 0, 317, 0, 308, 391, 344, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 357, 359, 0, + 0, 0, 0, 0, 0, 393, 0, 0, 0, 0, + 0, 0, 0, 0, 5, 0, 0, 7, 0, 0, + 0, 8, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 101, 0, 385, 0, 215, + 0, 216, 0, 122, 122, 120, 120, 0, 114, 114, + 112, 112, 123, 133, 208, 208, 181, 0, 0, 183, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 272, 0, 0, 0, 291, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 304, 0, 0, 0, 0, 0, 0, 318, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 374, 0, 0, 0, 0, 0, 0, 0, + + 26, 0, 0, 2, 0, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 14, 0, 0, 16, 0, 51, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 74, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 385, 0, 386, 216, 0, 122, 120, 0, 114, 112, + 0, 0, 208, 208, 0, 0, 0, 0, 0, 188, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 190, 0, 0, 0, 0, 0, 0, 292, + 0, 0, 313, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 270, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 361, 0, 0, 0, 0, 0, 0, 0, 1, 0, + 0, 0, 0, 0, 0, 0, 0, 39, 39, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, + 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 79, 0, 0, 0, 0, 73, 0, 87, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 386, 127, + 121, 119, 0, 113, 111, 126, 126, 124, 124, 208, + 208, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 200, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 315, 335, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 346, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 39, 0, 39, 39, 0, 0, + 0, 0, 47, 0, 0, 0, 0, 0, 48, 0, + 0, 15, 0, 50, 0, 0, 0, 0, 60, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 65, 0, 0, + 66, 0, 0, 67, 0, 0, 115, 126, 124, 208, + 208, 0, 0, 0, 186, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 273, 0, 0, 0, 322, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 257, 0, 0, 0, + 0, 316, 0, 325, 0, 0, 328, 329, 330, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 354, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, + 38, 39, 38, 0, 39, 0, 0, 0, 0, 47, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 54, 54, 0, 57, 57, 59, 59, 0, 0, 23, + 0, 0, 0, 0, 0, 0, 90, 0, 0, 0, + 0, 0, 0, 0, 0, 65, 66, 130, 130, 128, + 128, 0, 0, 125, 123, 208, 208, 0, 0, 0, + 0, 398, 0, 0, 202, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 274, 0, 0, 275, 221, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 237, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 267, 0, 327, 333, + 331, 268, 0, 0, 0, 348, 0, 0, 349, 0, + 0, 0, 0, 353, 0, 362, 0, 0, 370, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 38, 0, 38, 0, 0, 0, 0, 0, 0, + 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 54, 54, 0, 54, 0, 54, 54, 0, + 57, 0, 57, 57, 59, 0, 59, 59, 0, 0, + 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 130, 128, + + 118, 118, 116, 116, 208, 208, 206, 0, 206, 186, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 219, 276, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 326, 0, 0, 0, 0, 0, 377, 365, 345, + 373, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 371, 372, 25, 0, 25, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 46, 0, 46, 10, 11, 0, 0, 0, 0, 0, + 0, 0, 49, 0, 49, 0, 0, 0, 54, 53, + 54, 54, 53, 0, 0, 54, 53, 0, 0, 54, + 53, 54, 54, 55, 56, 57, 56, 0, 57, 58, + 59, 58, 0, 59, 0, 62, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 85, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 129, 127, 118, 116, 208, 0, 206, + + 206, 206, 206, 206, 0, 399, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 173, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 198, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, + 277, 0, 0, 0, 0, 0, 227, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 239, 240, + 241, 324, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 256, 0, 0, 0, 0, 0, 264, 265, + 266, 0, 0, 363, 0, 376, 0, 0, 357, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 42, 42, 0, 44, 95, 0, 0, 0, 46, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 49, 0, 17, 0, 0, 0, 54, 0, 53, 0, + 54, 54, 53, 0, 53, 0, 0, 53, 0, 0, + 55, 53, 55, 55, 53, 0, 54, 53, 54, 56, + 0, 56, 0, 58, 0, 58, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 63, 0, 86, 75, 0, 76, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 78, 0, 117, 115, 208, 208, 0, 0, 0, 0, + 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 196, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 280, 278, + 0, 0, 224, 0, 0, 289, 0, 321, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 238, 0, 0, + 0, 249, 0, 0, 0, 252, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 364, 0, 0, + 0, 367, 0, 0, 0, 0, 0, 24, 0, 0, + + 24, 0, 0, 0, 0, 0, 0, 0, 0, 6, + 0, 42, 42, 0, 42, 0, 42, 42, 0, 95, + 0, 45, 0, 0, 45, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 52, 54, 52, 0, + 54, 52, 0, 0, 52, 54, 0, 52, 0, 52, + 55, 55, 52, 55, 61, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 207, 207, 207, 207, + 207, 182, 0, 0, 0, 155, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 158, 0, 0, 0, + 172, 0, 0, 0, 0, 171, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 290, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 243, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 258, 0, 0, 0, + 0, 0, 0, 347, 0, 0, 0, 368, 0, 0, + 0, 24, 25, 26, 0, 0, 0, 0, 0, 0, + 96, 42, 41, 42, 42, 41, 0, 0, 42, 41, + 0, 0, 42, 41, 42, 42, 43, 45, 46, 0, + + 0, 0, 48, 0, 0, 0, 0, 52, 52, 0, + 52, 0, 54, 0, 52, 55, 53, 55, 55, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 62, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 83, 0, 0, 0, 0, 0, 0, + 187, 0, 151, 153, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 178, 0, 0, 0, 0, + 0, 218, 0, 0, 305, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 285, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 253, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, + 0, 41, 0, 42, 42, 41, 0, 41, 0, 0, + 41, 0, 0, 43, 41, 43, 43, 41, 0, 42, + 41, 42, 0, 0, 0, 0, 48, 0, 0, 0, + 53, 53, 55, 55, 53, 55, 0, 0, 0, 0, + 0, 0, 0, 0, 62, 0, 62, 0, 62, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 82, 71, 77, 0, 0, 0, 0, 0, 0, + + 0, 157, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 199, 0, 0, + 0, 0, 0, 0, 0, 0, 220, 0, 306, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 286, 0, 0, 0, 0, 0, 0, 0, 293, + 0, 295, 0, 255, 0, 0, 0, 263, 0, 0, + 0, 0, 0, 369, 0, 0, 0, 0, 0, 0, + 34, 0, 0, 40, 42, 40, 0, 42, 40, 0, + 0, 40, 42, 0, 40, 0, 40, 43, 43, 40, + 43, 26, 0, 18, 0, 0, 53, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 62, 0, 0, 0, + 89, 89, 0, 69, 0, 0, 0, 0, 91, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 201, + 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 323, 0, 0, 226, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 247, 0, + 294, 0, 250, 296, 0, 254, 0, 297, 0, 269, + 0, 353, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 40, 40, 0, 40, 0, 42, 0, + + 40, 43, 41, 43, 43, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 62, 0, 0, 0, 0, 70, + 68, 93, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 195, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 197, 0, 0, 0, 0, + 0, 0, 0, 0, 281, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 242, 246, 0, + 0, 0, 0, 298, 0, 262, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 41, 41, 43, + 43, 41, 43, 0, 0, 0, 0, 0, 0, 62, + + 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, + 0, 154, 0, 0, 0, 0, 159, 0, 0, 400, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 176, 0, 217, 0, 282, 0, 225, + 287, 0, 0, 283, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, + 0, 0, 0, 0, 0, 0, 0, 0, 41, 0, + 0, 0, 0, 0, 62, 0, 84, 88, 88, 0, + 81, 0, 0, 0, 0, 0, 0, 0, 162, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 175, 0, + + 174, 0, 180, 0, 222, 223, 288, 0, 0, 284, + 0, 0, 0, 0, 0, 0, 236, 0, 248, 0, + 0, 0, 0, 0, 334, 375, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 149, 0, 0, 0, 0, 0, 0, 0, 167, + 0, 0, 0, 0, 0, 0, 0, 0, 179, 192, + 0, 229, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 378, 0, 29, 0, 0, 0, + 35, 0, 19, 0, 0, 80, 92, 0, 152, 0, + 0, 0, 0, 0, 0, 0, 165, 0, 0, 170, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 301, 251, 0, 260, 0, 379, 0, 0, + 0, 0, 20, 0, 194, 0, 0, 204, 0, 0, + 0, 0, 0, 0, 169, 0, 0, 0, 0, 0, + 0, 0, 0, 234, 0, 0, 302, 0, 261, 0, + 33, 0, 0, 21, 0, 150, 0, 0, 0, 0, + 0, 0, 0, 0, 177, 228, 0, 0, 0, 0, + 0, 245, 259, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 203, 0, 0, 0, 0, 0, 0, 231, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, + + 0, 0, 0, 0, 164, 0, 0, 193, 0, 0, + 233, 0, 0, 0, 0, 0, 0, 0, 148, 0, + 0, 0, 168, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 0, 0, 0, 0, 0, 0, 0, 244, + 0, 0, 0, 37, 0, 0, 0, 161, 0, 166, + 0, 0, 235, 0, 0, 31, 156, 0, 0, 163, + 230, 0, 32, 30, 156, 0, 0, 232, 0 + } ; + +static const YY_CHAR yy_ec[256] = + { 0, + 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, + 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 5, 6, 7, 8, 1, 1, 9, 10, 1, + 1, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 17, 17, 20, 17, 21, 22, 17, 23, 24, 1, + 25, 1, 1, 26, 27, 28, 29, 30, 31, 32, + 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, + 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 24, 53, 24, 1, 54, 1, 55, 56, 57, 58, + + 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, + 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, + 79, 80, 1, 81, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1 + } ; + +static const YY_CHAR yy_meta[82] = + { 0, + 1, 2, 3, 4, 5, 1, 6, 1, 1, 7, + 8, 1, 9, 8, 8, 8, 8, 8, 8, 8, + 8, 8, 10, 11, 12, 1, 13, 13, 13, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, + 13, 13, 1, 8, 13, 13, 13, 13, 13, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, + 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, + 14 + } ; + +static const flex_int16_t yy_base[3227] = + { 0, + 0, 76, 4, 9, 153, 0, 13, 14, 34, 45, + 21, 83, 233, 237, 7283, 7277, 318, 0, 26, 54, + 88, 89, 15, 39, 7271, 7265, 7257, 7251, 7243, 7237, + 398, 472, 97, 241, 106, 137, 7232, 9857, 252, 9857, + 9857, 9857, 245, 9857, 26, 74, 92, 78, 197, 220, + 214, 225, 228, 234, 61, 9857, 125, 404, 9857, 9857, + 9857, 220, 216, 228, 235, 240, 237, 233, 380, 227, + 249, 232, 371, 379, 378, 392, 250, 244, 72, 9857, + 410, 290, 9857, 414, 9857, 520, 309, 437, 445, 9857, + 481, 0, 9857, 0, 7145, 9857, 255, 9857, 489, 9857, + + 7181, 506, 130, 528, 386, 442, 456, 376, 473, 393, + 516, 427, 542, 572, 464, 574, 499, 468, 462, 312, + 602, 610, 616, 418, 477, 459, 7130, 507, 9857, 0, + 0, 9857, 519, 9857, 7173, 7153, 518, 517, 569, 558, + 568, 533, 9857, 647, 9857, 7159, 656, 617, 100, 0, + 635, 9857, 535, 0, 630, 7101, 573, 585, 597, 599, + 617, 623, 9857, 612, 621, 628, 636, 623, 674, 7155, + 676, 680, 9857, 627, 635, 624, 628, 629, 648, 651, + 650, 656, 666, 673, 7117, 656, 673, 666, 660, 661, + 678, 673, 672, 676, 684, 674, 7111, 680, 684, 692, + + 696, 688, 740, 7123, 751, 756, 759, 7117, 760, 724, + 716, 732, 727, 721, 741, 729, 742, 735, 761, 729, + 737, 753, 744, 816, 820, 9857, 824, 776, 828, 0, + 16, 7093, 729, 7053, 783, 838, 9857, 7102, 830, 789, + 9857, 842, 9857, 7099, 847, 780, 772, 778, 820, 813, + 813, 829, 819, 818, 818, 830, 7072, 827, 832, 820, + 834, 830, 870, 838, 9857, 829, 844, 870, 873, 839, + 864, 870, 879, 921, 876, 869, 876, 913, 7089, 915, + 921, 946, 914, 940, 968, 922, 942, 930, 974, 7088, + 945, 7035, 7025, 7070, 947, 0, 0, 967, 998, 7067, + + 7046, 889, 2, 911, 93, 931, 975, 7047, 1001, 9857, + 7039, 1005, 1007, 9857, 1011, 9857, 7033, 1017, 9857, 9857, + 0, 6968, 920, 968, 986, 976, 985, 9857, 997, 997, + 996, 997, 1030, 995, 993, 1027, 1029, 991, 1003, 1011, + 6999, 1008, 1002, 6998, 1014, 1009, 1009, 9857, 1024, 1017, + 1027, 1051, 1048, 1039, 1043, 1066, 1051, 1055, 1041, 1050, + 1050, 1067, 9857, 1056, 1075, 1065, 1070, 6997, 1042, 9857, + 1123, 1131, 1137, 1085, 1079, 1083, 1101, 9857, 1080, 1094, + 1112, 9857, 1100, 1109, 9857, 9857, 1117, 1112, 1104, 9857, + 1108, 1124, 1116, 1111, 1110, 1156, 1160, 1148, 7003, 6965, + + 6991, 9857, 1119, 1126, 1138, 1135, 1142, 1126, 1139, 6963, + 1124, 1141, 1155, 1145, 1159, 1154, 1201, 1150, 1174, 1158, + 6957, 1160, 1160, 1167, 9857, 1164, 1165, 1167, 1183, 1176, + 1192, 6949, 1193, 1199, 1200, 1197, 1195, 1221, 1211, 1200, + 1220, 1218, 1208, 1223, 1221, 1248, 1220, 1237, 6943, 6904, + 1225, 1188, 1282, 1293, 1294, 6922, 1295, 1301, 1310, 1258, + 6889, 6886, 1259, 6885, 6882, 1261, 1311, 1316, 1318, 9857, + 462, 1261, 1261, 1293, 1279, 1278, 1288, 1296, 1299, 1281, + 1301, 1290, 1307, 1306, 1312, 1311, 1313, 1295, 1303, 1307, + 1304, 1319, 9857, 1359, 1328, 6834, 1317, 9857, 1333, 6828, + + 9857, 1352, 1349, 1334, 1349, 1353, 1350, 1345, 6820, 1336, + 1343, 1349, 1361, 1346, 1353, 6845, 1364, 1361, 1350, 6806, + 1351, 1359, 1381, 1369, 9857, 1427, 9857, 1428, 1368, 1364, + 1388, 1391, 1385, 1401, 1402, 1399, 1415, 1399, 9857, 1417, + 1415, 1407, 1414, 1415, 1417, 1400, 1408, 1404, 1415, 1410, + 1420, 1411, 1419, 1461, 9857, 1430, 1433, 9857, 6831, 1419, + 1477, 1489, 1443, 1448, 1448, 6836, 1466, 1472, 1471, 9857, + 1481, 1482, 1483, 1464, 1473, 6830, 1472, 1479, 1477, 1488, + 1489, 1498, 1482, 1504, 1481, 1504, 1496, 1491, 1487, 1499, + 1509, 1504, 1499, 6809, 1517, 1505, 1516, 1533, 1530, 1534, + + 1532, 1539, 6808, 6802, 1528, 1573, 1577, 1585, 1598, 1589, + 1602, 1590, 1547, 0, 0, 0, 0, 1545, 0, 0, + 0, 0, 262, 1608, 6747, 6723, 9857, 1549, 1560, 9857, + 1581, 1574, 1569, 1569, 1589, 1571, 1585, 1589, 1584, 1574, + 1596, 1585, 1583, 1585, 1592, 1592, 1605, 1591, 1601, 1600, + 1603, 1611, 9857, 1638, 1616, 1633, 1647, 1628, 1636, 1630, + 1636, 1648, 1652, 1640, 1636, 1649, 6736, 1654, 1656, 1642, + 1644, 1649, 9857, 1647, 1651, 1648, 1692, 1666, 1676, 9857, + 1688, 1680, 1687, 1701, 1700, 1681, 1681, 1693, 1694, 1705, + 1692, 1698, 9857, 1697, 1715, 1704, 1715, 1715, 1713, 1722, + + 6761, 1723, 1723, 9857, 1730, 9857, 1731, 1738, 1749, 1753, + 1737, 6766, 1753, 1799, 1744, 1740, 1752, 520, 1755, 1760, + 9857, 9857, 6747, 1757, 9857, 1767, 6745, 0, 1764, 1752, + 1772, 1773, 1774, 1761, 1795, 1817, 1808, 1796, 1804, 1801, + 1814, 1814, 1808, 1816, 1815, 1818, 9857, 1819, 1812, 1817, + 1812, 1816, 6734, 1821, 1817, 1827, 6723, 1849, 1850, 6719, + 1786, 1859, 1788, 1860, 1825, 6729, 6715, 1826, 6701, 6661, + 6658, 6648, 6581, 6562, 1842, 1852, 1857, 1858, 1845, 9857, + 1852, 1858, 1847, 1861, 1859, 1856, 1862, 1873, 1854, 1877, + 1867, 1869, 1876, 1867, 1862, 1868, 1880, 1866, 1900, 1884, + + 1878, 1892, 9857, 1890, 1911, 1916, 1903, 1895, 1907, 9857, + 1920, 1919, 6433, 1906, 1923, 1924, 6401, 1928, 1916, 1917, + 1916, 6400, 1911, 1917, 1935, 1922, 6399, 1928, 0, 1942, + 1933, 1938, 1963, 1955, 1957, 1968, 6398, 1959, 9857, 1953, + 1957, 1970, 1960, 1973, 1975, 1969, 1970, 1983, 1984, 1977, + 9857, 1971, 1988, 1992, 1969, 1981, 1993, 1981, 9857, 1983, + 2000, 2005, 1998, 2000, 2016, 2028, 2021, 0, 2055, 2010, + 9857, 2023, 2037, 2020, 2057, 6398, 2059, 2045, 2027, 2085, + 2051, 2056, 6440, 2042, 6426, 9857, 6425, 6424, 6423, 2042, + 2057, 2044, 6422, 2056, 2049, 2065, 2057, 2067, 2070, 2065, + + 2070, 9857, 2090, 2074, 2074, 2101, 9857, 2099, 9857, 2100, + 2086, 2123, 6391, 2124, 2125, 6390, 2126, 0, 2135, 399, + 6432, 6429, 2098, 6427, 6426, 0, 0, 0, 0, 6372, + 6374, 2110, 2102, 6427, 2106, 2104, 2101, 2111, 2114, 2108, + 2124, 2120, 2127, 2133, 2131, 2118, 2126, 2137, 2131, 2127, + 2153, 2144, 2155, 2140, 2153, 2167, 2156, 2175, 2153, 2165, + 2159, 2167, 2162, 2166, 2169, 2169, 2184, 2182, 2179, 2176, + 9857, 6377, 6376, 6375, 2192, 2177, 2193, 2192, 2180, 2216, + 6374, 6373, 2198, 2209, 2232, 2218, 9857, 2191, 2214, 2209, + 2220, 2221, 2233, 2237, 2238, 2231, 2237, 2238, 2224, 2235, + + 2232, 2230, 2252, 2243, 2248, 2250, 2264, 2267, 2277, 2274, + 2265, 2283, 9857, 2263, 2281, 2285, 2284, 9857, 2283, 2290, + 2273, 2290, 2276, 2282, 2328, 2315, 6373, 2350, 2304, 6402, + 6401, 2285, 6370, 2319, 6412, 2308, 2320, 2356, 2370, 2324, + 2336, 9857, 2323, 9857, 2340, 2370, 6411, 6410, 9857, 2328, + 2353, 2396, 2356, 2370, 2373, 2375, 2365, 2365, 2374, 2380, + 2372, 2360, 2388, 2391, 2371, 2394, 2384, 6362, 2417, 6404, + 6084, 2421, 6126, 0, 6125, 6001, 517, 5986, 5985, 5925, + 467, 2395, 2400, 5986, 9857, 2414, 2402, 2404, 2414, 2419, + 2423, 2414, 2424, 2421, 2420, 2421, 2419, 2417, 2435, 2433, + + 2420, 2426, 2427, 2444, 2447, 2432, 2435, 2433, 2461, 2466, + 2451, 2470, 2476, 2469, 2455, 2475, 9857, 2469, 2471, 2459, + 2470, 2466, 2469, 2485, 2468, 2470, 2472, 5937, 2479, 2477, + 2492, 2482, 2486, 2486, 2516, 2559, 9857, 5936, 2502, 2506, + 2494, 9857, 2507, 9857, 2523, 2509, 9857, 9857, 9857, 2503, + 2512, 2527, 2531, 2520, 2531, 2522, 2525, 2526, 2538, 2529, + 2529, 2530, 2547, 2551, 2554, 2569, 2562, 2578, 2581, 2567, + 5965, 2586, 2571, 9857, 2572, 2589, 2591, 2599, 2593, 2587, + 5888, 2652, 5886, 2622, 5928, 2584, 0, 5878, 5845, 2623, + 2606, 2598, 2660, 2603, 2611, 2629, 2628, 2621, 5747, 2647, + + 850, 2688, 5743, 0, 2702, 0, 2715, 5686, 2624, 2712, + 2638, 2638, 2658, 2667, 2664, 2686, 9857, 2691, 2686, 2704, + 2708, 2692, 2694, 2685, 2692, 2690, 2730, 0, 0, 0, + 0, 5698, 5694, 5693, 5690, 5631, 5645, 5644, 2696, 2706, + 0, 0, 2706, 2713, 9857, 2718, 2719, 2719, 2715, 2731, + 2732, 2722, 2728, 2725, 2735, 2568, 2728, 2733, 2733, 2735, + 2749, 2752, 2749, 2764, 5593, 2765, 2767, 2774, 2770, 2768, + 9857, 2769, 2767, 2630, 9857, 2785, 2783, 2784, 2776, 2786, + 2787, 2793, 2795, 2790, 5537, 2797, 9857, 2793, 2803, 2790, + 2792, 2807, 2803, 2805, 2824, 2811, 2819, 2826, 2823, 2828, + + 2816, 2818, 2839, 2839, 2831, 2827, 9857, 2838, 9857, 9857, + 9857, 9857, 2844, 5531, 2830, 2829, 2845, 2844, 9857, 2857, + 2850, 2852, 2868, 2861, 2869, 9857, 2873, 2893, 9857, 2881, + 2874, 2900, 2870, 2869, 2899, 2874, 2879, 2886, 2897, 2881, + 2891, 2957, 5573, 2924, 2929, 5557, 5552, 2935, 2937, 2914, + 2917, 9857, 2928, 2936, 2926, 2939, 2926, 2932, 2968, 2935, + 2953, 2950, 5563, 3009, 2973, 2971, 3010, 3023, 3036, 5534, + 3037, 2976, 5479, 3062, 3072, 2984, 5476, 3081, 3125, 5498, + 9857, 2940, 2965, 2973, 2969, 2996, 2995, 3000, 3005, 3026, + 3028, 3024, 3023, 3037, 3063, 3047, 3065, 3056, 5498, 5475, + + 0, 0, 0, 0, 3048, 5420, 3105, 5413, 3109, 9857, + 3060, 5457, 3056, 3066, 3059, 3088, 3089, 3094, 3096, 3097, + 5353, 3106, 3113, 3094, 3146, 3130, 3114, 3135, 3139, 3136, + 3131, 3138, 3135, 0, 3129, 3138, 3143, 3144, 3150, 3141, + 3146, 3163, 9857, 9857, 3152, 3159, 3150, 3151, 3170, 3179, + 3165, 3163, 3166, 3171, 3178, 3216, 3192, 3181, 3182, 3181, + 3183, 3186, 3187, 3191, 3189, 3207, 3200, 3204, 3225, 3213, + 3218, 3225, 3232, 3227, 3230, 3241, 3231, 3231, 3238, 3252, + 3239, 9857, 5303, 3255, 3253, 3247, 3255, 9857, 9857, 9857, + 9857, 3255, 3256, 3267, 3260, 3251, 3258, 3279, 3278, 3273, + + 9857, 9857, 3044, 3298, 3299, 3281, 3289, 3282, 3286, 3297, + 3285, 3300, 3297, 3310, 3298, 2693, 0, 3314, 5303, 3329, + 3331, 3332, 3333, 9857, 9857, 3311, 3301, 3302, 3311, 3325, + 3331, 3322, 3316, 5301, 3347, 3335, 3324, 3328, 5291, 3362, + 3400, 3401, 5250, 3368, 3369, 3370, 3351, 3422, 3426, 3432, + 2634, 3436, 3453, 5287, 5243, 3457, 5238, 3387, 5278, 5169, + 3467, 5166, 3399, 5033, 3504, 3473, 3351, 3348, 3385, 3429, + 3408, 3415, 3444, 0, 3432, 3452, 3455, 3441, 9857, 3457, + 3469, 3471, 3473, 3478, 3468, 3474, 3479, 3483, 3478, 3480, + 3500, 3506, 3503, 5031, 5026, 5025, 5012, 4922, 4921, 3546, + + 1188, 3539, 3566, 3570, 3514, 9857, 3519, 3505, 3513, 3525, + 3619, 3534, 3530, 3533, 0, 3559, 3549, 3537, 0, 0, + 3549, 3547, 3546, 3561, 3550, 3545, 3552, 3565, 0, 3558, + 3574, 3558, 3570, 3578, 3572, 3583, 3577, 3593, 3587, 4949, + 4948, 3592, 3591, 3588, 3608, 3614, 3598, 3615, 3602, 3620, + 3615, 3622, 3614, 3629, 3611, 3618, 3620, 3635, 9857, 9857, + 9857, 9857, 3629, 3643, 3645, 3629, 3646, 3656, 3658, 3659, + 3661, 3651, 4914, 3669, 3661, 3675, 3662, 3678, 9857, 9857, + 9857, 3675, 3663, 9857, 3665, 9857, 3679, 3673, 9857, 3673, + 3668, 3687, 3674, 3686, 3683, 3690, 4913, 4904, 3714, 4901, + + 3716, 9857, 3683, 3699, 3703, 3700, 3716, 3711, 3710, 3708, + 3715, 2980, 3752, 4870, 0, 4725, 3729, 4672, 4626, 4624, + 3745, 4619, 3748, 3726, 3732, 3735, 3727, 3735, 3731, 3738, + 4617, 4659, 9857, 3754, 3737, 3743, 3812, 3763, 3005, 3785, + 3816, 3826, 3842, 4651, 4558, 3790, 3810, 3817, 3820, 961, + 3851, 3452, 3873, 3880, 3887, 3904, 3047, 3911, 3918, 3925, + 4600, 3787, 3797, 3932, 4599, 3824, 3838, 3931, 3794, 3802, + 3837, 3915, 3831, 3831, 3892, 3913, 3911, 3927, 3925, 3914, + 3928, 3915, 3918, 0, 3929, 9857, 9857, 3914, 9857, 3924, + 3925, 3928, 4578, 3928, 3931, 3935, 3929, 3937, 3939, 3938, + + 3933, 3952, 4578, 4548, 4487, 3997, 4486, 4008, 3941, 3979, + 9857, 3981, 3974, 0, 4526, 3980, 3981, 3990, 3987, 3973, + 3970, 3983, 3979, 3986, 0, 0, 3995, 3981, 3998, 4519, + 3991, 3999, 4001, 3991, 4004, 4005, 3992, 4004, 4003, 4020, + 4398, 4037, 4028, 4044, 4042, 4042, 4035, 4044, 9857, 9857, + 4046, 4038, 4256, 4035, 4251, 3396, 4040, 9857, 4043, 4036, + 4045, 4057, 4037, 4047, 4043, 4049, 4062, 9857, 4047, 4061, + 4053, 4245, 4059, 4055, 4066, 9857, 4063, 4077, 4080, 4075, + 4081, 4098, 4083, 4084, 4087, 4089, 4104, 9857, 4103, 4109, + 4106, 9857, 4104, 4108, 4109, 4276, 4235, 4188, 3849, 4216, + + 4131, 4132, 4097, 4109, 4103, 4100, 4107, 4109, 4102, 9857, + 4100, 4140, 4181, 4164, 4156, 4185, 4191, 4195, 4035, 4150, + 4027, 3980, 4160, 4012, 4170, 4172, 4159, 3907, 4162, 4171, + 4179, 4168, 4170, 4184, 4188, 4180, 3582, 4248, 3862, 4212, + 3106, 4199, 4249, 4261, 4262, 4275, 3891, 4266, 4268, 4217, + 4320, 3789, 4324, 4333, 9857, 4198, 4197, 4251, 4250, 4239, + 4252, 4243, 4246, 4248, 4249, 4249, 4260, 4267, 4272, 4281, + 4299, 4307, 4317, 4321, 4323, 3845, 4323, 3788, 4321, 4308, + 4323, 4316, 4318, 4327, 4319, 4319, 3755, 4359, 9857, 3733, + 4363, 9857, 4325, 4327, 4340, 0, 0, 4328, 4336, 4345, + + 4352, 4351, 4351, 4348, 4360, 4369, 0, 4350, 4366, 4376, + 9857, 4370, 4361, 4356, 4378, 9857, 4381, 3765, 4370, 4370, + 4381, 0, 4376, 4387, 4387, 3579, 4383, 4399, 4410, 4399, + 4399, 4408, 4413, 4418, 9857, 4410, 4424, 4420, 4427, 4424, + 4427, 4432, 4429, 4426, 4435, 3556, 3542, 4418, 4437, 4427, + 4435, 4440, 4425, 4440, 4442, 4448, 9857, 4450, 4453, 4445, + 4449, 4456, 4460, 9857, 4467, 4466, 4461, 9857, 4467, 4467, + 4477, 4500, 4501, 9857, 4473, 4488, 4485, 4487, 4487, 4488, + 9857, 3578, 4512, 4550, 4554, 3454, 4513, 4517, 3897, 4495, + 4567, 4566, 4576, 4509, 4580, 4611, 3490, 4541, 4574, 4488, + + 4549, 4552, 9857, 4567, 4569, 4557, 4564, 4632, 4621, 2360, + 4633, 4642, 4646, 4640, 4671, 4687, 4601, 4696, 4700, 4597, + 4609, 4613, 4618, 4622, 4639, 4652, 4664, 4665, 4679, 4683, + 4684, 4674, 9857, 4690, 4685, 4676, 4692, 4680, 4681, 4700, + 4694, 4702, 4691, 9857, 4688, 4703, 4690, 4705, 4702, 4708, + 9857, 4714, 9857, 0, 4704, 4721, 4714, 4736, 4724, 4739, + 4737, 4740, 4728, 4744, 4735, 3493, 4738, 4774, 4754, 4731, + 4732, 0, 4753, 4758, 4751, 0, 4752, 4749, 4756, 4762, + 4752, 9857, 4754, 3376, 3400, 4776, 4777, 4770, 4779, 4797, + 4787, 3364, 3358, 4788, 4798, 4792, 3335, 4802, 4786, 4802, + + 4798, 4793, 4800, 4809, 4796, 4804, 4800, 9857, 4805, 4798, + 4808, 4805, 4821, 4808, 4814, 4818, 4825, 4825, 4843, 4845, + 4850, 4840, 4872, 4853, 4841, 4841, 4836, 3332, 4860, 4892, + 4879, 4880, 4916, 4917, 4933, 4942, 3225, 3180, 4886, 4926, + 4938, 4940, 3472, 4971, 4907, 4975, 4992, 4996, 5002, 3844, + 5006, 5013, 4900, 3218, 3207, 4870, 9857, 4873, 4863, 4883, + 5027, 5000, 5037, 3871, 5058, 5062, 4913, 4926, 4929, 4931, + 4986, 3127, 5004, 5011, 9857, 5019, 9857, 5020, 9857, 5023, + 5016, 5026, 5041, 5039, 5043, 5043, 5035, 5051, 5042, 5047, + 5051, 9857, 9857, 9857, 5061, 5049, 5053, 5056, 5051, 5049, + + 5072, 9857, 5061, 5062, 3122, 5065, 5064, 0, 5072, 0, + 5081, 5081, 5072, 5078, 5077, 5106, 5091, 0, 3121, 5099, + 5096, 5098, 5109, 5104, 5103, 5112, 9857, 5103, 9857, 5109, + 5110, 5100, 5108, 5114, 5124, 5118, 5131, 5132, 5122, 5119, + 5129, 9857, 5120, 5139, 5125, 5129, 5141, 5154, 5149, 3770, + 5159, 4960, 5155, 9857, 5149, 5153, 5158, 9857, 5156, 3064, + 5170, 5176, 5164, 9857, 5164, 5177, 3092, 5161, 5162, 5182, + 9857, 5160, 5185, 5201, 5236, 3013, 5205, 4218, 5191, 5240, + 5257, 5261, 5270, 2996, 5245, 5259, 5207, 5292, 4223, 5306, + 5319, 9857, 2982, 5220, 5217, 5226, 5323, 2977, 5244, 2915, + + 5247, 2675, 5250, 5247, 5263, 5252, 9857, 5274, 5277, 5286, + 5285, 5288, 5292, 9857, 5293, 5295, 5314, 5296, 9857, 5316, + 5316, 5306, 2644, 5322, 5318, 5321, 5326, 5365, 2573, 9857, + 0, 5314, 2564, 5326, 5334, 5325, 5334, 5346, 5361, 5358, + 5359, 5365, 0, 5365, 5366, 5363, 5368, 5369, 5356, 5351, + 5369, 5359, 5374, 9857, 5367, 5378, 9857, 5378, 5379, 5373, + 5378, 2448, 5384, 2392, 5381, 5372, 5384, 5375, 9857, 5387, + 9857, 5389, 9857, 9857, 5394, 9857, 2388, 5202, 5408, 9857, + 5411, 9857, 5404, 5418, 5422, 5412, 9857, 5409, 5427, 5427, + 5414, 5424, 5416, 5487, 5451, 3878, 5465, 5491, 5500, 5481, + + 5517, 5526, 5450, 5536, 5550, 5420, 5464, 5475, 5490, 5480, + 2356, 5493, 5512, 5527, 9857, 5516, 5529, 5527, 5529, 9857, + 9857, 5536, 5537, 5522, 5522, 5538, 5541, 5577, 5532, 5542, + 5533, 5536, 5598, 5604, 5583, 0, 5590, 5599, 5600, 5597, + 5598, 5605, 5596, 5597, 2348, 0, 5607, 2327, 5592, 2239, + 5594, 5605, 5610, 5590, 2126, 5597, 5600, 5600, 2026, 5600, + 5616, 5609, 5617, 1738, 5619, 5620, 5611, 9857, 1644, 5607, + 5627, 5630, 5645, 9857, 5644, 9857, 5645, 5658, 5657, 5654, + 5660, 1669, 5651, 5664, 5653, 5665, 5663, 5700, 5716, 5725, + 4284, 5726, 5735, 5655, 5679, 5712, 5706, 5717, 1663, 9857, + + 5696, 5722, 5721, 5714, 5715, 5722, 5726, 9857, 5717, 1576, + 5728, 5762, 5721, 5743, 5729, 5734, 5744, 5798, 5769, 0, + 5775, 5758, 5766, 5760, 5769, 5777, 5775, 5780, 0, 5780, + 0, 1461, 5804, 9857, 5767, 9857, 5796, 9857, 5795, 9857, + 1437, 5794, 5806, 1378, 5807, 5802, 5810, 5801, 5816, 5803, + 5817, 5815, 5811, 5812, 5821, 5803, 5829, 5825, 5825, 9857, + 5821, 5827, 4594, 5833, 5833, 5837, 1243, 5836, 5891, 5838, + 5853, 5858, 1253, 5848, 9857, 5871, 9857, 9857, 9857, 5875, + 9857, 5859, 5888, 1196, 5867, 5879, 5869, 5873, 5901, 5895, + 5896, 5881, 5888, 5928, 5901, 5889, 5889, 5890, 0, 5902, + + 0, 5929, 5949, 5905, 9857, 9857, 9857, 5923, 5915, 9857, + 5915, 5934, 5942, 5927, 5931, 1062, 9857, 5932, 9857, 5946, + 5947, 5939, 5938, 5942, 9857, 9857, 5949, 5945, 5987, 5941, + 5952, 5967, 0, 5953, 5967, 5997, 5999, 1038, 5999, 5987, + 1036, 6015, 6024, 5992, 6003, 1030, 6017, 6002, 6004, 9857, + 6007, 6043, 6023, 6008, 6009, 6062, 6004, 6030, 6052, 9857, + 6044, 9857, 928, 6055, 6059, 6046, 6047, 6062, 6047, 6047, + 6048, 6061, 6064, 6066, 9857, 6065, 6072, 6057, 6065, 6066, + 0, 6099, 9857, 6084, 6098, 9857, 9857, 0, 6123, 6103, + 942, 6129, 4301, 6087, 6097, 6083, 6146, 6106, 6115, 9857, + + 6152, 6125, 6119, 6144, 6145, 6146, 6143, 6149, 6137, 6140, + 6144, 6145, 857, 9857, 6141, 9857, 6143, 9857, 6163, 828, + 6146, 6141, 9857, 6149, 0, 6148, 0, 6178, 4610, 6156, + 6161, 6170, 6174, 6175, 6206, 6171, 6200, 6187, 6188, 6184, + 6195, 6208, 6205, 9857, 6194, 6198, 9857, 6209, 9857, 6200, + 9857, 6205, 6212, 9857, 6201, 0, 3855, 6214, 6210, 6216, + 6211, 6214, 6219, 819, 9857, 9857, 6226, 6223, 6213, 6224, + 6225, 740, 9857, 6231, 6229, 6257, 6261, 6244, 4543, 723, + 4615, 6249, 9857, 6252, 6255, 6261, 6256, 0, 6267, 9857, + 674, 6266, 6270, 6263, 6276, 622, 601, 6271, 619, 535, + + 5458, 537, 6265, 6271, 9857, 6261, 6268, 0, 6278, 6278, + 9857, 6284, 6267, 6285, 6293, 0, 433, 422, 5461, 312, + 6268, 292, 9857, 6290, 6280, 6278, 6311, 6307, 6301, 6308, + 0, 0, 5462, 6334, 142, 6341, 6333, 6327, 6315, 9857, + 6336, 6327, 6331, 0, 5528, 84, 6363, 6359, 6365, 6381, + 6359, 6360, 9857, 103, 6351, 9857, 73, 6381, 36, 6387, + 9857, 6375, 9857, 9857, 6404, 6372, 6380, 9857, 9857, 6457, + 6471, 6485, 6499, 6513, 6527, 6541, 6555, 6569, 6583, 6597, + 6611, 6625, 6639, 6653, 6666, 6680, 6694, 6708, 6722, 6736, + 6750, 6764, 6778, 6792, 6806, 6820, 6834, 6848, 6862, 6876, + + 6890, 6904, 6918, 6932, 6946, 6960, 6974, 6988, 7002, 7016, + 7030, 7044, 7058, 7072, 7086, 7100, 7114, 7128, 7142, 7151, + 25, 7164, 7178, 7192, 7206, 7220, 7234, 7248, 7262, 7276, + 7290, 7304, 7318, 7332, 7339, 7345, 7358, 7372, 7386, 2349, + 7400, 7414, 7428, 7442, 7456, 7470, 7484, 7498, 7512, 7526, + 7540, 7554, 7568, 7582, 7596, 7610, 7624, 7638, 7652, 7666, + 7680, 7694, 7708, 7722, 7736, 7745, 7758, 7765, 7778, 7792, + 7806, 7820, 7834, 7848, 7862, 7876, 7890, 7904, 7918, 7932, + 7946, 7960, 7974, 7988, 8002, 8016, 8030, 8044, 8058, 8072, + 8086, 8100, 8114, 8128, 8142, 8156, 8170, 8184, 8198, 8212, + + 8226, 8240, 8247, 8260, 8274, 8281, 8294, 8308, 8322, 8336, + 8350, 8364, 8378, 8392, 8406, 8420, 8434, 8448, 8462, 8476, + 8490, 8504, 8518, 8532, 8546, 8560, 8574, 8588, 8602, 8616, + 8630, 8644, 8658, 8672, 8686, 8700, 8714, 8728, 8735, 8741, + 8747, 8760, 8774, 8788, 8802, 8816, 8830, 8844, 8858, 8872, + 8886, 8900, 8914, 8928, 8942, 8956, 8970, 8984, 8998, 9012, + 9026, 9040, 9054, 9068, 9082, 9096, 9110, 9124, 9131, 9137, + 9143, 9149, 9162, 9176, 9190, 9204, 9218, 9232, 9246, 9260, + 9274, 9288, 9302, 9316, 9330, 9344, 9358, 9372, 9386, 9400, + 9414, 9428, 9442, 9456, 9470, 9484, 9491, 9497, 9503, 9516, + + 9530, 9544, 9558, 9572, 9586, 9600, 9614, 9628, 9642, 9656, + 9670, 9684, 9697, 9711, 9725, 9738, 9752, 9765, 9771, 9784, + 9790, 9803, 9817, 9823, 9829, 9842 + } ; + +static const flex_int16_t yy_def[3227] = + { 0, + 2970, 2970, 2971, 2971, 2969, 5, 2971, 2971, 2972, 2972, + 2973, 2973, 2974, 2974, 2971, 2971, 2969, 17, 2971, 2971, + 2971, 2971, 2975, 2975, 2976, 2976, 2977, 2977, 2978, 2978, + 2979, 2979, 2980, 2980, 2981, 2981, 2969, 2969, 2969, 2969, + 2969, 2969, 2982, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2983, 2983, 2969, + 2983, 2984, 2969, 2984, 2985, 2969, 2986, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2987, 2969, 2987, 2969, 2988, + 2989, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2990, + 2969, 2969, 2969, 2982, 2982, 2982, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2983, 2983, 2969, 2983, 2969, 2983, 2984, + 2985, 2991, 2986, 2969, 2986, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2987, 2969, 2987, 2969, 2987, 2988, 2989, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2990, 2982, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2985, 2991, 2986, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2992, 2993, 2969, 2994, 2995, 2969, 2969, 2969, 2969, 2969, + 2982, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2996, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2992, 2997, 2993, 2998, 2969, 2994, 2999, + 2995, 3000, 2969, 2969, 2982, 2982, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3001, 2969, 2969, 2969, 2969, 2969, 3002, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2996, 3003, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3004, 3005, 2969, + 2969, 2969, 2969, 2969, 2969, 2997, 2998, 2969, 2999, 3000, + 3006, 3007, 2982, 2982, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3008, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3001, 3009, 2969, + 2969, 2969, 2969, 2969, 3002, 2969, 3002, 2969, 2969, 2969, + 2969, 2969, 3003, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3004, 2969, 3004, 3005, 2969, 3005, 3010, 2969, 2969, + 2997, 2998, 2969, 2999, 3000, 3006, 3011, 3007, 3012, 2982, + 2982, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 3009, 3013, 3001, 3009, 2969, 2969, + 2969, 2969, 2969, 3002, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 3014, 3015, 3016, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3004, 2969, + 2969, 3005, 2969, 3010, 3017, 3018, 2969, 3011, 3012, 2982, + 3019, 2969, 2969, 3020, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 3001, 3009, 2969, 3013, 3001, 2969, 3021, 2969, 2969, 3002, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 3014, 3022, 3023, 3015, 3024, 3016, 3025, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 3004, 3005, 3017, 3026, 3018, + 3027, 3028, 3029, 3030, 3031, 3032, 3033, 3034, 2969, 2969, + 3035, 3036, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3037, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3038, 2969, 3039, 3039, 2969, 3040, 3041, 3042, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3043, 2969, + 2969, 2969, 3044, 3045, 3046, 3047, 3048, 3049, 3045, 3050, + 3051, 3052, 3053, 3051, 3054, 3055, 3056, 3054, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3057, 3058, + + 3059, 3060, 3061, 3062, 3063, 3064, 3064, 3065, 3065, 2969, + 2969, 3066, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 3067, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3068, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 3069, 3070, 3069, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 3071, 3072, 3073, 2969, 3073, + 3074, 3075, 3074, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 3076, 2969, 3076, 2969, 2969, 2969, 3077, 3078, + 3079, 3080, 2969, 3081, 3082, 3078, 3083, 3084, 3085, 3086, + 3077, 3079, 3086, 3087, 3088, 3089, 2969, 3090, 3088, 3091, + 3092, 2969, 3093, 3091, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3094, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3095, 3096, 3097, 3098, 3099, 3100, 3101, + + 2969, 3101, 3102, 3102, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 3103, 2969, 2969, 2969, 3104, 3105, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3106, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3107, 3108, 2969, + + 3108, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3109, 3110, 3111, 3112, 2969, 3113, 2969, 2969, 3114, + 3115, 2969, 3115, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 3116, 2969, 2969, 2969, 2969, 2969, 3117, 3118, 3119, 3120, + 3117, 3117, 3121, 2969, 2969, 3118, 3118, 3122, 3122, 3123, + 3124, 3125, 3124, 3124, 3126, 3126, 3119, 3127, 3127, 3128, + 2969, 3129, 3129, 3130, 2969, 3131, 3131, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3132, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 3133, 3134, 3135, 3136, 3137, 3138, 2969, 2969, + 2969, 2969, 2969, 3139, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 3140, 3141, 2969, 2969, 2969, 3142, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3143, 2969, + + 3144, 3143, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3145, 3146, 3147, 3148, 3149, 3150, 3146, 3151, 3152, + 2969, 2969, 3153, 2969, 3154, 3153, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 3155, 3156, 2969, 3157, + 3155, 3158, 3159, 3160, 3161, 3156, 2969, 3162, 3157, 3163, + 3159, 3163, 3164, 3159, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 3165, 3166, 2969, 3167, + 3168, 2969, 2969, 2969, 2969, 3169, 3170, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 3171, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3172, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3173, 3174, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3175, 3176, 3177, 3178, 2969, 3179, 3180, 3176, 3181, + 3182, 3183, 3184, 3175, 3177, 3184, 3185, 3186, 3187, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3188, 3189, 3190, + 3191, 3191, 3192, 3193, 3194, 3195, 3196, 3194, 3195, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3197, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 3198, 2969, 2969, 2969, 3199, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 3200, 2969, 2969, 2969, 2969, 2969, 2969, 3177, + 3201, 3175, 3202, 3177, 3177, 3203, 2969, 2969, 3201, 3201, + 3204, 3204, 3205, 3206, 3185, 3206, 3206, 3207, 3207, 3175, + 3208, 3208, 3209, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 3210, 3211, 3195, 3196, 3194, 3195, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3212, 2969, 3213, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3198, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3175, 3177, 2969, 3201, 3175, 3205, 3206, + 3202, 3208, 3177, 2969, 3204, 3201, 3185, 3206, 3185, 3214, + 3206, 2969, 2969, 2969, 2969, 2969, 3195, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 3212, 2969, 3213, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 3215, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3177, 3201, 3205, 3202, 3202, 3208, 3204, + + 3206, 3214, 3185, 3206, 3214, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 3216, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 3215, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3177, 3201, 3214, + 3185, 3206, 3214, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3216, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3217, 2969, + 3218, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3214, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3217, 2969, + + 3218, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 3219, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 3219, 2969, 2969, 2969, 2969, 2969, 2969, 3220, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 3220, 2969, 3221, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 3221, 3222, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3222, 2969, + 3222, 2969, 2969, 2969, 2969, 2969, 2969, 3223, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 3222, 2969, 2969, 2969, 2969, 2969, 2969, 3223, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 3224, 2969, 2969, 3222, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 3224, 3225, 3226, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 3225, 3226, 2969, 3226, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 3226, 2969, 2969, + 2969, 2969, 2969, 2969, 3226, 2969, 2969, 2969, 0, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969 + } ; + +static const flex_int16_t yy_nxt[9939] = + { 0, + 2969, 39, 40, 41, 39, 57, 42, 43, 57, 2969, + 57, 2969, 44, 57, 81, 81, 461, 81, 81, 60, + 60, 127, 89, 90, 462, 89, 45, 121, 46, 47, + 121, 398, 122, 48, 49, 84, 56, 1347, 84, 85, + 50, 51, 2947, 52, 53, 127, 84, 56, 54, 84, + 85, 2969, 55, 157, 45, 121, 46, 47, 121, 86, + 122, 48, 49, 169, 170, 82, 82, 128, 50, 51, + 86, 52, 53, 91, 203, 204, 54, 39, 40, 41, + 39, 157, 42, 43, 89, 90, 87, 89, 44, 123, + 123, 128, 123, 123, 124, 124, 232, 87, 144, 145, + + 146, 144, 45, 147, 46, 47, 148, 464, 56, 48, + 49, 319, 56, 320, 158, 465, 50, 51, 56, 52, + 53, 149, 159, 160, 54, 2959, 171, 2963, 55, 171, + 45, 245, 46, 47, 245, 91, 2959, 48, 49, 56, + 125, 125, 158, 56, 50, 51, 2949, 52, 53, 56, + 159, 160, 54, 56, 58, 56, 56, 58, 59, 60, + 56, 61, 56, 56, 56, 56, 56, 56, 56, 56, + 56, 56, 56, 56, 56, 56, 56, 56, 56, 62, + 56, 56, 63, 64, 65, 66, 67, 68, 56, 56, + 56, 69, 56, 70, 71, 72, 73, 74, 75, 76, + + 56, 77, 78, 56, 56, 79, 56, 62, 56, 56, + 63, 64, 65, 66, 67, 68, 56, 56, 56, 69, + 56, 70, 71, 72, 73, 74, 75, 76, 56, 77, + 78, 56, 56, 80, 93, 94, 161, 93, 93, 94, + 164, 93, 144, 145, 146, 144, 155, 147, 95, 155, + 148, 162, 95, 151, 152, 166, 151, 165, 167, 163, + 168, 234, 177, 175, 161, 149, 176, 178, 164, 179, + 181, 183, 184, 189, 185, 190, 771, 182, 191, 162, + 201, 180, 202, 166, 772, 165, 167, 163, 168, 156, + 177, 175, 207, 208, 176, 178, 2936, 179, 181, 183, + + 184, 189, 185, 190, 153, 182, 191, 235, 201, 180, + 202, 169, 170, 96, 278, 279, 2934, 96, 98, 99, + 100, 101, 99, 98, 102, 98, 98, 98, 98, 98, + 103, 98, 98, 98, 98, 98, 98, 98, 98, 98, + 98, 98, 98, 98, 104, 105, 106, 107, 108, 98, + 98, 98, 109, 98, 98, 110, 111, 112, 113, 114, + 98, 115, 116, 117, 98, 118, 98, 119, 98, 98, + 120, 98, 104, 105, 106, 107, 108, 98, 98, 98, + 109, 98, 98, 110, 111, 112, 113, 114, 98, 115, + 116, 117, 98, 118, 98, 119, 98, 98, 98, 133, + + 56, 192, 133, 134, 135, 172, 186, 136, 172, 194, + 173, 205, 196, 1075, 205, 209, 173, 193, 209, 288, + 187, 1076, 288, 250, 195, 256, 188, 197, 2933, 192, + 137, 198, 138, 259, 186, 199, 200, 194, 225, 226, + 196, 225, 139, 140, 141, 193, 225, 226, 187, 225, + 142, 250, 195, 256, 188, 197, 174, 2932, 137, 198, + 138, 259, 206, 199, 200, 292, 153, 263, 251, 1238, + 139, 140, 141, 133, 56, 252, 133, 134, 135, 289, + 290, 136, 225, 228, 229, 225, 254, 253, 625, 227, + 236, 237, 238, 236, 269, 263, 251, 227, 276, 255, + + 277, 239, 257, 252, 137, 626, 138, 242, 243, 244, + 242, 293, 258, 292, 254, 253, 139, 140, 141, 154, + 298, 274, 269, 298, 142, 275, 276, 255, 277, 876, + 257, 1232, 137, 227, 138, 307, 308, 169, 170, 1233, + 258, 240, 260, 2881, 139, 140, 141, 210, 211, 212, + 213, 214, 215, 275, 216, 302, 246, 217, 303, 295, + 261, 218, 262, 219, 220, 247, 221, 222, 223, 248, + 260, 299, 877, 264, 249, 210, 211, 212, 213, 214, + 215, 265, 216, 302, 246, 217, 303, 2902, 261, 218, + 262, 219, 220, 247, 221, 222, 223, 248, 266, 304, + + 270, 264, 249, 280, 271, 267, 280, 305, 281, 265, + 272, 282, 306, 323, 282, 268, 283, 285, 318, 273, + 285, 318, 286, 2918, 324, 2916, 266, 304, 270, 203, + 204, 155, 271, 267, 155, 305, 151, 152, 272, 151, + 306, 323, 325, 268, 326, 327, 2915, 273, 309, 310, + 311, 309, 324, 312, 328, 329, 313, 315, 316, 317, + 315, 330, 284, 331, 333, 332, 335, 338, 287, 339, + 325, 340, 326, 327, 156, 336, 341, 171, 336, 334, + 171, 172, 328, 329, 172, 342, 173, 153, 343, 330, + 344, 331, 333, 332, 335, 338, 345, 339, 346, 340, + + 347, 349, 350, 351, 341, 352, 353, 334, 354, 358, + 361, 355, 362, 342, 364, 356, 343, 357, 344, 359, + 360, 365, 366, 367, 345, 368, 346, 2910, 347, 349, + 350, 351, 174, 352, 353, 234, 354, 358, 361, 355, + 362, 369, 364, 356, 369, 357, 370, 359, 360, 365, + 366, 367, 205, 368, 374, 205, 375, 173, 207, 208, + 372, 209, 376, 372, 209, 370, 377, 379, 383, 378, + 384, 380, 385, 387, 391, 2902, 392, 396, 395, 393, + 396, 400, 374, 394, 375, 381, 382, 386, 388, 234, + 376, 278, 279, 2894, 377, 379, 383, 378, 384, 380, + + 385, 387, 391, 206, 392, 389, 395, 393, 403, 404, + 390, 394, 153, 381, 382, 386, 388, 225, 226, 405, + 225, 225, 226, 2888, 225, 225, 228, 229, 225, 225, + 397, 245, 225, 389, 245, 235, 403, 404, 390, 236, + 237, 238, 236, 242, 243, 244, 242, 405, 245, 406, + 239, 245, 2851, 407, 408, 409, 410, 411, 414, 412, + 415, 418, 1203, 413, 419, 420, 421, 422, 227, 425, + 428, 416, 227, 426, 1363, 427, 227, 406, 433, 2847, + 227, 407, 408, 409, 410, 411, 414, 412, 415, 418, + 240, 413, 419, 420, 421, 422, 423, 425, 428, 416, + + 429, 426, 431, 427, 436, 437, 433, 424, 449, 434, + 430, 435, 450, 451, 452, 454, 280, 452, 454, 280, + 432, 281, 282, 288, 423, 282, 288, 283, 429, 460, + 431, 288, 436, 437, 288, 424, 449, 434, 430, 435, + 450, 451, 455, 456, 289, 290, 2827, 282, 432, 438, + 282, 292, 283, 292, 439, 463, 440, 460, 441, 442, + 443, 466, 444, 472, 445, 446, 447, 448, 298, 285, + 1756, 298, 285, 284, 286, 457, 467, 438, 457, 467, + 458, 2806, 439, 463, 440, 1370, 441, 442, 443, 466, + 444, 472, 445, 446, 447, 448, 473, 293, 284, 295, + + 307, 308, 309, 310, 311, 309, 469, 312, 318, 469, + 313, 318, 315, 316, 317, 315, 474, 475, 318, 299, + 287, 318, 476, 477, 473, 478, 479, 480, 336, 492, + 494, 336, 493, 494, 2792, 495, 496, 497, 499, 500, + 2788, 502, 503, 369, 474, 475, 369, 1955, 370, 504, + 476, 477, 505, 478, 479, 480, 481, 492, 482, 483, + 493, 506, 484, 495, 496, 497, 499, 500, 485, 502, + 503, 486, 507, 487, 488, 489, 490, 504, 508, 491, + 505, 509, 510, 511, 481, 516, 482, 483, 517, 506, + 484, 514, 515, 512, 518, 519, 485, 520, 521, 486, + + 507, 487, 488, 489, 490, 522, 508, 491, 523, 509, + 510, 511, 513, 516, 524, 2768, 517, 529, 530, 514, + 515, 512, 518, 519, 526, 520, 521, 526, 531, 527, + 532, 533, 372, 522, 534, 372, 523, 370, 528, 535, + 513, 528, 524, 527, 536, 529, 530, 537, 538, 539, + 540, 541, 542, 543, 544, 545, 531, 396, 532, 533, + 396, 546, 534, 398, 546, 547, 548, 535, 549, 550, + 551, 552, 536, 553, 555, 537, 538, 539, 540, 541, + 542, 543, 544, 545, 556, 557, 558, 559, 560, 452, + 1601, 1601, 452, 547, 548, 563, 549, 550, 551, 552, + + 2743, 553, 555, 564, 565, 567, 568, 569, 570, 571, + 561, 572, 556, 557, 558, 559, 560, 562, 562, 562, + 562, 562, 562, 563, 573, 574, 575, 577, 232, 578, + 583, 564, 565, 567, 568, 569, 570, 571, 584, 572, + 585, 589, 579, 580, 591, 581, 582, 594, 595, 596, + 592, 597, 573, 574, 575, 577, 590, 578, 583, 586, + 593, 587, 1955, 600, 605, 588, 584, 2733, 585, 589, + 579, 580, 591, 581, 582, 594, 595, 596, 592, 597, + 601, 598, 602, 606, 590, 613, 606, 586, 593, 587, + 599, 600, 605, 588, 454, 607, 457, 454, 607, 457, + + 608, 458, 610, 618, 623, 610, 627, 628, 601, 598, + 602, 611, 467, 613, 611, 467, 612, 624, 599, 469, + 624, 629, 469, 630, 631, 632, 633, 634, 635, 636, + 639, 618, 623, 640, 627, 628, 642, 641, 643, 644, + 647, 648, 651, 645, 637, 652, 649, 638, 650, 629, + 653, 630, 631, 632, 633, 634, 635, 636, 639, 646, + 494, 640, 656, 494, 642, 641, 643, 644, 647, 648, + 651, 645, 637, 652, 649, 638, 650, 657, 659, 660, + 661, 654, 662, 663, 664, 665, 667, 646, 668, 669, + 656, 670, 671, 672, 674, 675, 676, 678, 679, 682, + + 2710, 546, 683, 680, 546, 657, 659, 660, 661, 684, + 662, 663, 664, 665, 667, 681, 668, 669, 685, 670, + 671, 672, 674, 675, 676, 678, 679, 682, 526, 528, + 683, 526, 528, 527, 527, 686, 687, 684, 688, 689, + 690, 691, 692, 681, 693, 694, 685, 696, 697, 698, + 699, 700, 701, 695, 702, 703, 704, 705, 706, 2707, + 710, 711, 713, 686, 687, 2702, 688, 689, 690, 691, + 692, 715, 693, 694, 716, 696, 697, 698, 699, 700, + 701, 695, 702, 703, 704, 705, 706, 707, 710, 711, + 713, 717, 708, 714, 714, 714, 714, 714, 714, 715, + + 719, 720, 716, 721, 709, 562, 562, 562, 562, 562, + 562, 722, 723, 724, 725, 707, 726, 729, 730, 717, + 708, 731, 732, 733, 734, 735, 736, 738, 719, 720, + 737, 721, 709, 739, 740, 741, 742, 743, 744, 722, + 723, 724, 725, 745, 726, 729, 730, 746, 750, 731, + 732, 733, 734, 735, 751, 738, 748, 752, 737, 753, + 749, 739, 740, 741, 742, 743, 744, 754, 755, 756, + 757, 745, 760, 765, 606, 746, 750, 606, 607, 768, + 2683, 607, 751, 608, 748, 752, 761, 753, 749, 761, + 610, 764, 775, 610, 764, 754, 755, 756, 757, 762, + + 760, 765, 762, 611, 763, 776, 611, 768, 612, 624, + 777, 778, 624, 779, 780, 781, 782, 783, 784, 788, + 775, 785, 786, 789, 787, 791, 792, 790, 793, 797, + 794, 798, 799, 776, 795, 800, 796, 801, 777, 778, + 802, 779, 780, 781, 782, 783, 784, 788, 803, 785, + 786, 789, 787, 791, 792, 790, 793, 797, 794, 798, + 799, 808, 795, 800, 796, 801, 804, 809, 802, 810, + 805, 812, 1955, 813, 814, 815, 803, 806, 816, 807, + 817, 818, 819, 820, 822, 823, 824, 825, 826, 808, + 827, 828, 829, 2663, 804, 809, 837, 2651, 805, 812, + + 811, 813, 814, 815, 838, 806, 816, 807, 817, 818, + 819, 820, 822, 823, 824, 825, 826, 839, 827, 828, + 829, 830, 831, 840, 837, 832, 841, 842, 843, 844, + 833, 845, 838, 846, 847, 848, 834, 849, 850, 851, + 835, 852, 836, 853, 854, 839, 855, 856, 857, 830, + 831, 840, 859, 832, 841, 842, 843, 844, 833, 845, + 860, 846, 847, 848, 834, 849, 850, 851, 835, 852, + 836, 853, 854, 861, 855, 856, 857, 862, 863, 864, + 859, 866, 867, 870, 872, 873, 874, 761, 860, 919, + 761, 2647, 919, 878, 879, 865, 881, 882, 884, 885, + + 886, 861, 887, 888, 889, 862, 863, 864, 871, 866, + 867, 870, 872, 873, 874, 714, 714, 714, 714, 714, + 714, 878, 879, 865, 881, 882, 884, 885, 886, 890, + 887, 888, 889, 891, 891, 891, 891, 891, 891, 892, + 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, + 903, 904, 905, 906, 908, 909, 910, 890, 913, 916, + 762, 764, 920, 762, 764, 763, 923, 892, 893, 894, + 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, + 905, 906, 908, 909, 910, 932, 933, 934, 935, 936, + 920, 937, 938, 939, 923, 940, 941, 942, 943, 944, + + 945, 914, 917, 946, 947, 948, 949, 950, 951, 952, + 953, 954, 957, 932, 933, 934, 935, 936, 958, 937, + 938, 939, 959, 940, 941, 942, 943, 944, 945, 955, + 960, 946, 947, 948, 949, 950, 951, 952, 953, 954, + 957, 961, 962, 963, 956, 964, 958, 965, 966, 970, + 959, 972, 973, 974, 976, 977, 978, 955, 960, 967, + 979, 981, 982, 983, 968, 969, 984, 986, 988, 961, + 962, 963, 956, 964, 989, 965, 966, 970, 990, 972, + 973, 974, 976, 977, 978, 993, 994, 967, 979, 981, + 982, 983, 968, 969, 984, 986, 988, 991, 995, 997, + + 998, 999, 989, 992, 1000, 1001, 990, 1002, 1003, 1004, + 1005, 1006, 1007, 993, 994, 1008, 1009, 1010, 1011, 1012, + 1013, 1014, 1015, 1017, 1016, 991, 995, 997, 998, 999, + 1018, 992, 1000, 1001, 1019, 1002, 1003, 1004, 1005, 1006, + 1007, 1020, 1021, 1008, 1009, 1010, 1011, 1012, 1013, 1014, + 1015, 1017, 1016, 1022, 1023, 1024, 1026, 1029, 1018, 1026, + 1030, 1026, 1019, 1031, 1027, 1032, 1033, 1026, 1033, 1020, + 1021, 1036, 1037, 891, 891, 891, 891, 891, 891, 2642, + 1042, 1022, 1023, 1024, 1043, 1029, 1045, 1050, 1030, 1051, + 1053, 1031, 1054, 1032, 1038, 1055, 1056, 1057, 1058, 1036, + + 1037, 1039, 1039, 1039, 1039, 1039, 1039, 1028, 1042, 1034, + 1059, 877, 1043, 1060, 1045, 1050, 1061, 1051, 1053, 1062, + 1054, 1063, 1040, 1055, 1056, 1057, 1058, 1064, 1041, 1065, + 1066, 1067, 1068, 1068, 1071, 1071, 919, 1077, 1059, 919, + 1082, 1060, 1083, 1085, 1061, 1086, 1087, 1062, 2638, 1063, + 1040, 1088, 1089, 1090, 1091, 1064, 1041, 1065, 1066, 1067, + 1092, 1093, 1094, 1095, 1096, 1077, 1097, 1098, 1082, 1099, + 1083, 1085, 1100, 1086, 1087, 1069, 914, 1072, 917, 1088, + 1089, 1090, 1091, 1101, 1102, 1103, 1106, 1107, 1092, 1093, + 1094, 1095, 1096, 1108, 1097, 1098, 1109, 1099, 1104, 1105, + + 1100, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, + 1119, 1101, 1102, 1103, 1106, 1107, 1120, 1121, 1122, 1126, + 1127, 1108, 1128, 1129, 1109, 1130, 1104, 1105, 1137, 1110, + 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1138, + 1142, 1144, 1131, 2633, 1120, 1121, 1122, 1126, 1127, 1132, + 1128, 1129, 1143, 1130, 1145, 1146, 1137, 1133, 1139, 1147, + 1148, 1149, 1134, 1150, 1151, 1152, 1153, 1138, 1154, 1144, + 1131, 1140, 1155, 1141, 1156, 1159, 1157, 1132, 1160, 1161, + 1143, 1158, 1145, 1146, 1162, 1133, 1139, 1147, 1148, 1149, + 1134, 1150, 1151, 1152, 1153, 1163, 1154, 1164, 1165, 1140, + + 1155, 1141, 1156, 1159, 1157, 1166, 1160, 1161, 1167, 1158, + 1168, 1169, 1162, 1171, 1172, 1173, 1174, 1175, 1176, 1177, + 1178, 1179, 1180, 1163, 1183, 1164, 1165, 1170, 1190, 1026, + 1186, 2631, 1026, 1166, 1026, 1189, 1167, 1181, 1168, 1169, + 1026, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, + 1180, 1026, 2629, 1191, 1026, 1170, 1026, 1192, 1186, 1181, + 1347, 1347, 1026, 1189, 1197, 1955, 1198, 1184, 1199, 2112, + 1200, 877, 1193, 1193, 1193, 1193, 1193, 1193, 1208, 1202, + 1182, 1191, 1203, 1209, 1370, 1192, 1039, 1039, 1039, 1039, + 1039, 1039, 1197, 1194, 1198, 1211, 1199, 1195, 1200, 1196, + + 1212, 1213, 1028, 1214, 1215, 1216, 1208, 1217, 1218, 1219, + 1220, 1209, 1210, 1210, 1210, 1210, 1210, 1210, 1221, 1222, + 1223, 1194, 1224, 1211, 1225, 1195, 1226, 1196, 1212, 1213, + 1227, 1214, 1215, 1216, 1239, 1217, 1218, 1219, 1220, 1240, + 1243, 2573, 1244, 1245, 1246, 2565, 1221, 1222, 1223, 1247, + 1224, 1249, 1225, 1250, 1251, 1252, 1248, 1253, 1254, 1255, + 1256, 1257, 1239, 1258, 1259, 1260, 1261, 1240, 1243, 914, + 1244, 1245, 1246, 917, 1262, 1263, 1264, 1247, 1265, 1249, + 1266, 1250, 1251, 1252, 1248, 1253, 1254, 1255, 1256, 1257, + 1267, 1258, 1259, 1260, 1261, 1268, 1269, 1270, 1271, 1273, + + 1274, 2563, 1262, 1263, 1264, 1275, 1265, 1276, 1266, 1277, + 1278, 1279, 1280, 1281, 1282, 1283, 1284, 1285, 1267, 1287, + 1288, 1289, 1290, 1268, 1269, 1270, 1291, 1273, 1274, 1272, + 1292, 1304, 1305, 1275, 1306, 1276, 1307, 1277, 1278, 1279, + 1280, 1281, 1282, 1283, 1284, 1285, 1293, 1287, 1288, 1289, + 1290, 1308, 1309, 1310, 1291, 1311, 1312, 1294, 1292, 1304, + 1305, 1313, 1306, 1314, 1307, 1315, 1316, 1317, 2536, 1425, + 1318, 1319, 1425, 1320, 1293, 1321, 1322, 2534, 1323, 1308, + 1309, 1310, 1324, 1311, 1312, 1294, 1295, 1296, 1325, 1313, + 1297, 1314, 1298, 1315, 1316, 1317, 1299, 1300, 1318, 1319, + + 1301, 1320, 1326, 1321, 1322, 1302, 1323, 1327, 1328, 1329, + 1324, 1331, 1333, 1334, 1295, 1296, 1325, 1335, 1297, 1336, + 1298, 1337, 1330, 1340, 1299, 1300, 1341, 1346, 1301, 1338, + 1326, 1344, 1033, 1302, 1350, 1327, 1328, 1329, 1351, 1331, + 1333, 1334, 1339, 1353, 1354, 1335, 1203, 1336, 2528, 1337, + 1330, 1340, 1444, 1026, 1341, 1346, 1026, 1338, 1026, 1355, + 1356, 1342, 1350, 1357, 1026, 1358, 1351, 1380, 1381, 1352, + 1339, 1353, 1354, 1360, 1345, 1034, 1193, 1193, 1193, 1193, + 1193, 1193, 1382, 1445, 1955, 1361, 1757, 1355, 1356, 1365, + 1362, 1357, 1365, 1358, 1365, 1380, 1381, 1366, 1383, 1068, + + 1367, 1360, 1713, 1372, 1028, 1714, 1372, 1384, 1372, 1385, + 1382, 1373, 1368, 1361, 1372, 1386, 1376, 1387, 1362, 1376, + 1388, 1376, 1395, 1396, 1377, 1397, 1383, 1376, 1210, 1210, + 1210, 1210, 1210, 1210, 1389, 1384, 1392, 1385, 1398, 1071, + 1369, 1410, 1069, 1386, 1390, 1387, 1411, 1393, 1388, 1413, + 1395, 1396, 1414, 1397, 1374, 1391, 1394, 1415, 1416, 1417, + 1418, 1419, 1389, 1420, 1392, 1421, 1398, 1378, 1422, 1410, + 1423, 1424, 1390, 1426, 1411, 1393, 1427, 1413, 1428, 1429, + 1414, 1430, 1072, 1391, 1394, 1415, 1416, 1417, 1418, 1419, + 1431, 1420, 1432, 1421, 1433, 1435, 1422, 1436, 1423, 1424, + + 1440, 1426, 1441, 1437, 1427, 1438, 1428, 1429, 1442, 1430, + 1439, 1443, 1446, 1447, 1448, 1449, 1451, 1452, 1431, 1453, + 1432, 1454, 1433, 1435, 1455, 1436, 1457, 1458, 1440, 1450, + 1441, 1437, 1459, 1438, 1460, 1461, 1442, 1462, 1439, 1443, + 1446, 1447, 1448, 1449, 1451, 1452, 1463, 1453, 1464, 1454, + 1465, 1467, 1455, 1468, 1457, 1458, 1469, 1470, 1471, 1472, + 1459, 1473, 1460, 1461, 1466, 1462, 1474, 1475, 1479, 1480, + 1481, 1482, 1476, 1483, 1463, 1485, 1464, 1486, 1465, 1467, + 1477, 1468, 1487, 1478, 1469, 1470, 1471, 1472, 1488, 1473, + 1489, 1490, 1466, 1491, 1474, 1475, 1479, 1480, 1481, 1482, + + 1476, 1483, 1492, 1485, 1493, 1486, 1494, 1495, 1477, 1504, + 1487, 1478, 1501, 1502, 1506, 1507, 1488, 1510, 1489, 1490, + 1496, 1491, 1497, 1511, 1955, 1512, 1498, 1513, 1514, 1508, + 1492, 1515, 1493, 1183, 1494, 1495, 1509, 1499, 1183, 1500, + 1501, 1502, 1506, 1507, 1519, 1510, 1522, 1524, 1496, 1525, + 1497, 1511, 1505, 1512, 1498, 1513, 1514, 1508, 1026, 1515, + 1526, 1026, 1527, 1026, 1509, 1499, 1181, 1500, 1528, 1026, + 1529, 1530, 1531, 1532, 1534, 1524, 1184, 1525, 1536, 1537, + 1538, 1345, 1543, 1203, 1575, 1557, 1955, 1520, 1526, 1523, + 1527, 1352, 1714, 1562, 1576, 1363, 1528, 1544, 1529, 1530, + + 1531, 1532, 1577, 1578, 1912, 2386, 1536, 1537, 1538, 1182, + 1365, 1365, 1575, 1365, 1365, 1365, 1365, 1203, 1540, 1547, + 1535, 1367, 1576, 1546, 1365, 1545, 1579, 1365, 1558, 1365, + 1577, 1578, 1551, 1541, 1548, 1367, 1563, 1365, 1372, 1580, + 1365, 1372, 1365, 1372, 1581, 1540, 1555, 1552, 1367, 1372, + 1599, 1582, 1583, 1697, 1579, 1584, 1759, 1941, 1585, 1203, + 1541, 1542, 1549, 1372, 1586, 2384, 1372, 1580, 1372, 1587, + 1588, 1555, 1581, 1376, 1372, 1553, 1376, 1591, 1376, 1582, + 1583, 1560, 1376, 1584, 1376, 1376, 1585, 1376, 1369, 1556, + 1560, 1589, 1586, 1376, 1592, 1593, 1698, 1587, 1588, 1605, + + 154, 1607, 1590, 1608, 1609, 1591, 1600, 1601, 1602, 1600, + 1603, 1601, 1604, 1603, 1374, 1946, 2487, 2481, 1203, 1589, + 1610, 1611, 1592, 1593, 1561, 2443, 2428, 1605, 1612, 1607, + 1590, 1608, 1609, 1378, 1565, 1613, 1955, 1614, 1616, 1617, + 1618, 1566, 1566, 1566, 1566, 1566, 1566, 1425, 1610, 1611, + 1425, 1567, 1620, 1568, 1569, 1570, 1612, 1407, 1621, 1571, + 1622, 1409, 1623, 1613, 1572, 1614, 1616, 1617, 1618, 1624, + 1625, 1626, 1627, 1573, 1628, 1630, 1631, 1632, 1633, 1567, + 1634, 1568, 1569, 1570, 1635, 1636, 1621, 1571, 1622, 1637, + 1623, 1638, 1572, 1639, 1640, 1641, 1642, 1624, 1625, 1626, + + 1627, 1573, 1628, 1630, 1631, 1632, 1633, 1643, 1634, 1644, + 1645, 1646, 1635, 1636, 1647, 1648, 2392, 1637, 1657, 1638, + 1658, 1639, 1640, 1641, 1642, 1659, 1660, 1352, 1661, 1662, + 1663, 1664, 2384, 1665, 2242, 1643, 1666, 1644, 1645, 1646, + 1667, 1668, 1647, 1648, 1649, 1650, 1657, 1651, 1658, 1652, + 1653, 1669, 1670, 1659, 1660, 1654, 1661, 1662, 1663, 1664, + 1655, 1665, 1656, 1671, 1666, 1672, 1673, 1674, 1667, 1668, + 1675, 1676, 1649, 1650, 1677, 1651, 1678, 1652, 1653, 1669, + 1670, 1679, 1680, 1654, 1681, 1683, 1684, 1685, 1655, 1686, + 1656, 1671, 1687, 1672, 1673, 1674, 1688, 1689, 1675, 1676, + + 1690, 1691, 1677, 1692, 1678, 1693, 1694, 1700, 1697, 1679, + 1680, 1702, 1681, 1683, 1684, 1685, 1695, 1686, 1696, 1703, + 1687, 1704, 1534, 1716, 1688, 1689, 1705, 1706, 1690, 1691, + 1707, 1692, 1708, 1693, 1694, 1709, 1710, 1711, 1716, 1702, + 1719, 1722, 1719, 1724, 1695, 1725, 1696, 1703, 1726, 1704, + 1701, 1505, 1727, 1534, 1705, 1706, 2371, 2342, 1707, 1728, + 1708, 1729, 1730, 1709, 1710, 1711, 1717, 1733, 1731, 1734, + 1735, 1724, 1736, 1725, 1203, 1370, 1726, 1745, 1748, 1369, + 1727, 1520, 1203, 1720, 1723, 1523, 1363, 1728, 1776, 1729, + 1730, 1777, 1746, 1544, 1363, 1733, 1762, 1734, 1735, 1535, + + 1736, 1738, 1365, 1750, 1738, 1365, 1738, 1365, 1766, 1739, + 1743, 2337, 1740, 1367, 1546, 1778, 1776, 2336, 2035, 1777, + 1747, 1749, 2329, 1738, 1741, 1541, 1738, 1365, 1738, 2328, + 1365, 1752, 1365, 1365, 1740, 1755, 1365, 1738, 1365, 1763, + 1738, 1551, 1738, 1778, 1367, 1739, 1753, 1781, 1740, 2036, + 1548, 1767, 1742, 1369, 1365, 1782, 1552, 1365, 1372, 1365, + 1741, 1372, 1758, 1372, 1203, 1367, 1760, 1779, 1376, 1372, + 1783, 1376, 1780, 1376, 1754, 1781, 1764, 1552, 1756, 1376, + 1785, 2249, 1786, 1782, 1553, 1787, 1788, 1789, 1742, 1566, + 1566, 1566, 1566, 1566, 1566, 1779, 1919, 2308, 1783, 1790, + + 1780, 1791, 1714, 1792, 1952, 1759, 2237, 1793, 1785, 1374, + 1786, 1794, 1795, 1787, 1788, 1789, 1796, 1797, 1798, 1378, + 1768, 1768, 1768, 1768, 1768, 1768, 1799, 1790, 1800, 1791, + 1769, 1792, 1770, 1771, 1772, 1793, 1801, 1802, 1773, 1794, + 1795, 1601, 1602, 1774, 1796, 1797, 1798, 1600, 1601, 1602, + 1600, 1809, 1775, 1810, 1799, 1811, 1800, 1812, 1769, 1813, + 1770, 1771, 1772, 1826, 1801, 1802, 1773, 1603, 1601, 1604, + 1603, 1774, 1601, 1604, 1822, 1823, 1824, 1828, 1829, 1809, + 1775, 1810, 1831, 1811, 1832, 1812, 1833, 1813, 1834, 1835, + 1714, 1407, 1836, 1837, 1203, 2201, 1827, 1838, 1407, 1839, + + 1840, 1841, 1822, 1823, 1824, 1828, 1829, 1842, 1843, 2200, + 1831, 1844, 1832, 1845, 1833, 1846, 1834, 1835, 1409, 1847, + 1836, 1837, 1409, 1814, 1827, 1838, 1848, 1839, 1840, 1841, + 1851, 1852, 2181, 1853, 1941, 1842, 1843, 1815, 1854, 1844, + 1855, 1845, 1856, 1846, 1858, 1859, 1860, 1847, 1816, 1861, + 1817, 1857, 1862, 1863, 1848, 1864, 1865, 1866, 1851, 1852, + 1818, 1853, 1819, 1820, 1821, 1867, 1854, 1868, 1855, 1869, + 1856, 1870, 1858, 1859, 1860, 1871, 1816, 1861, 1817, 1872, + 1862, 1863, 1873, 1864, 1865, 1866, 1874, 1875, 1818, 1876, + 1819, 1820, 1821, 1867, 1877, 1868, 1878, 1869, 1880, 1870, + + 1881, 1882, 1883, 1871, 1884, 1885, 1886, 1872, 1887, 1888, + 1873, 1889, 1890, 1891, 1874, 1875, 1892, 1876, 1893, 1894, + 1895, 1896, 1877, 1898, 1878, 1901, 1880, 1903, 1881, 1882, + 1883, 1904, 1884, 1885, 1886, 1905, 1887, 1888, 1920, 1889, + 1890, 1891, 1906, 1907, 1892, 1908, 1893, 1894, 1895, 1896, + 1909, 1910, 1911, 1914, 1922, 1903, 1914, 1925, 1914, 1904, + 1927, 1915, 1928, 1905, 1916, 1929, 1899, 1930, 1902, 2172, + 1906, 1907, 1939, 1908, 1931, 1932, 1917, 1933, 1909, 1910, + 1911, 1520, 1934, 1935, 1936, 1808, 1738, 1746, 1927, 1738, + 1928, 1738, 2471, 1929, 1942, 1930, 1557, 1923, 1954, 1939, + + 1926, 1203, 1931, 1932, 1918, 1933, 1557, 1806, 2142, 1943, + 1934, 1935, 1936, 1738, 1746, 1940, 1738, 1738, 1738, 1948, + 1738, 1937, 1738, 2472, 1740, 1937, 1543, 1738, 1740, 1543, + 1738, 1956, 1738, 1562, 1746, 1945, 1741, 1944, 1740, 1558, + 1741, 1544, 1940, 1365, 1544, 1957, 1365, 1562, 1365, 1763, + 1741, 1540, 1738, 2252, 1367, 1738, 1714, 1738, 2072, 1956, + 1950, 2880, 1949, 1740, 1938, 2140, 1541, 1958, 1938, 1545, + 1961, 1962, 1749, 1957, 1738, 1753, 1563, 1738, 1946, 1738, + 2266, 1738, 1950, 1203, 1738, 1740, 1738, 2498, 1365, 1953, + 1767, 1365, 1740, 1365, 1542, 1958, 1547, 1753, 1961, 1962, + + 1949, 1902, 1919, 1951, 1753, 1365, 1918, 2881, 1365, 1714, + 1365, 1548, 1365, 1547, 1947, 1365, 2074, 1365, 1963, 1365, + 1551, 1912, 1365, 1367, 1365, 1951, 1372, 1551, 1548, 1372, + 1367, 1372, 1954, 1376, 1555, 1552, 1376, 1372, 1376, 1549, + 1955, 1560, 1552, 1964, 1376, 1965, 1963, 1768, 1768, 1768, + 1768, 1768, 1768, 1959, 1966, 1967, 1756, 1968, 1960, 1969, + 1970, 1971, 1972, 1553, 1973, 1974, 1975, 1976, 1978, 1979, + 1759, 1964, 1980, 1965, 1981, 1982, 1983, 1556, 1984, 1985, + 1986, 1959, 1966, 1967, 1561, 1968, 1960, 1969, 1970, 1971, + 1972, 1992, 1973, 1974, 1975, 1976, 1978, 1979, 1988, 1989, + + 1980, 1988, 1981, 1982, 1983, 1993, 1984, 1985, 1986, 1991, + 1989, 1994, 1991, 1995, 1998, 1999, 2000, 2001, 2002, 1992, + 2003, 1926, 2004, 2005, 2006, 2008, 2009, 2010, 2012, 2013, + 2014, 2015, 1924, 1993, 2016, 2017, 1523, 2018, 2019, 1994, + 2020, 1995, 1998, 1999, 2000, 2001, 2002, 1714, 2003, 1806, + 2004, 2005, 2006, 2008, 2009, 2010, 2012, 2013, 2014, 2015, + 1808, 2021, 2016, 2017, 1805, 2018, 2019, 2023, 2020, 2024, + 2025, 2026, 2027, 2028, 2029, 1807, 2030, 2031, 2033, 2037, + 2038, 2039, 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2021, + 2047, 2048, 2049, 2051, 2052, 2023, 2053, 2024, 2025, 2026, + + 2027, 2028, 2029, 2054, 2030, 2031, 2033, 2037, 2038, 2039, + 2040, 2041, 2042, 2043, 2044, 2045, 2046, 2055, 2047, 2048, + 2049, 2051, 2052, 2056, 2053, 2057, 2058, 2059, 2060, 2061, + 2062, 2054, 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, + 1697, 1898, 2074, 2075, 2076, 2055, 2077, 2078, 2079, 2080, + 2081, 2056, 1714, 2057, 2058, 2059, 2060, 2061, 2062, 1716, + 2063, 2064, 2065, 2066, 2067, 2068, 2069, 2070, 1714, 2098, + 2074, 2075, 2076, 2086, 2077, 2078, 2079, 2080, 2081, 1719, + 1912, 1922, 1914, 2073, 1902, 1914, 1914, 1914, 2087, 1914, + 2083, 1914, 1914, 1916, 2090, 1914, 1914, 1914, 2100, 1914, + + 2094, 1914, 1717, 1916, 2083, 2084, 2101, 1916, 2089, 2091, + 2102, 2103, 1926, 1352, 2104, 2095, 2088, 2105, 2106, 2084, + 2107, 2109, 2099, 1370, 1926, 1902, 2100, 2383, 2120, 1203, + 1714, 2121, 2391, 2085, 2101, 1714, 1746, 2092, 2102, 2103, + 1900, 1352, 2104, 2096, 1505, 2105, 2106, 1918, 2107, 1738, + 1738, 2110, 1738, 1738, 1738, 1738, 2120, 2108, 1950, 2121, + 1740, 1740, 1738, 1365, 1949, 1738, 1365, 1738, 1365, 1952, + 2111, 1551, 1741, 1753, 1367, 1543, 1738, 1939, 2122, 1738, + 2123, 1738, 2124, 2125, 1937, 1943, 1552, 1740, 2126, 2127, + 1544, 2128, 1746, 2593, 2129, 2130, 1714, 2071, 2050, 1741, + + 1946, 1951, 2829, 2131, 2034, 2829, 2122, 2132, 2123, 2032, + 2124, 2125, 2133, 2112, 2113, 2134, 2126, 2127, 2114, 2128, + 1949, 1738, 2129, 2130, 1738, 1365, 1738, 1946, 1365, 2115, + 1365, 2131, 1740, 2117, 1738, 2132, 1367, 1738, 2135, 1738, + 2133, 2136, 1950, 2134, 1753, 1740, 2137, 2138, 2118, 2139, + 2141, 2143, 2144, 2145, 2146, 2147, 2148, 1753, 2149, 2150, + 1988, 1989, 2151, 1988, 1991, 1989, 2135, 1991, 2152, 2136, + 2153, 2155, 1954, 2156, 2137, 2138, 2119, 2139, 2141, 2143, + 2144, 2145, 2146, 2147, 2148, 1954, 2149, 2150, 2157, 2158, + 2151, 2159, 2160, 2161, 2162, 2163, 2152, 2164, 2153, 2155, + + 2165, 2156, 2022, 2166, 2167, 2168, 2169, 2170, 2171, 2173, + 2174, 1806, 2175, 2177, 2178, 1808, 2157, 2158, 2179, 2159, + 2160, 2161, 2162, 2163, 2180, 2164, 1805, 2182, 2165, 2183, + 1807, 2166, 2167, 2168, 2169, 2170, 2171, 2173, 2174, 2184, + 2175, 2177, 2178, 2185, 2186, 2187, 2179, 2188, 2189, 2190, + 2191, 2192, 2180, 2193, 2194, 2182, 2195, 2183, 2196, 2197, + 2198, 2199, 2202, 2203, 2204, 2205, 2206, 2184, 2207, 2208, + 2209, 2185, 2186, 2187, 2210, 2188, 2189, 2190, 2191, 2192, + 2211, 2193, 2194, 2212, 2195, 2213, 2196, 2197, 2198, 2199, + 2202, 2203, 2204, 2205, 2206, 2214, 2207, 2208, 2209, 2215, + + 2216, 2217, 2210, 2218, 2219, 2220, 2221, 2222, 2211, 1898, + 2223, 2212, 2224, 2213, 2225, 2226, 2227, 2228, 2229, 1919, + 2254, 1714, 2238, 2214, 1714, 2011, 2241, 2215, 2216, 2217, + 1997, 2218, 2219, 2220, 2221, 2222, 1912, 2239, 1808, 1806, + 2224, 2087, 2225, 2226, 2227, 2228, 2229, 2243, 2254, 2900, + 1922, 2231, 1899, 1505, 2231, 1914, 2231, 1804, 1914, 2232, + 1914, 2250, 2233, 2236, 2089, 2240, 1916, 1914, 2231, 2242, + 1914, 2231, 1914, 2231, 2234, 2248, 2245, 1914, 2084, 2233, + 1914, 2231, 1914, 2253, 2231, 2094, 2231, 1803, 1916, 2232, + 2091, 2246, 2233, 1923, 2255, 2901, 2256, 2257, 1977, 2258, + + 2095, 2259, 2235, 2260, 2234, 2729, 1918, 2729, 1767, 1763, + 1947, 2829, 1914, 1203, 2829, 1914, 2857, 1914, 2249, 2247, + 2251, 2900, 2255, 1916, 2256, 2257, 1523, 2258, 2096, 2259, + 1939, 2260, 2235, 1738, 1738, 2095, 1738, 1738, 1738, 1738, + 2267, 1937, 1942, 1738, 1740, 1746, 1738, 1365, 1738, 2262, + 1365, 1942, 1365, 2264, 2268, 2261, 1741, 1943, 1367, 2269, + 1749, 2270, 2271, 2252, 1544, 1535, 1943, 2881, 2267, 1535, + 1552, 1924, 1738, 1940, 2729, 1738, 1523, 1738, 1921, 2272, + 1950, 1520, 2268, 1740, 1938, 1944, 2273, 2269, 1365, 2270, + 2271, 1365, 1749, 1365, 2112, 1753, 2117, 1738, 1759, 1367, + + 1738, 1365, 1738, 2274, 1365, 1752, 1365, 2272, 1740, 2265, + 2275, 2118, 1367, 2276, 2273, 2277, 2278, 2279, 2280, 2281, + 1753, 2282, 2283, 1951, 2118, 2284, 2285, 2286, 2287, 2288, + 2289, 2274, 2290, 2291, 2292, 2293, 2294, 2295, 2275, 2263, + 2296, 2276, 2297, 2277, 2278, 2279, 2280, 2281, 1754, 2282, + 2283, 2298, 2266, 2284, 2285, 2286, 2287, 2288, 2289, 2299, + 2290, 2291, 2292, 2293, 2294, 2295, 2300, 2301, 2296, 2302, + 2297, 2303, 2304, 2305, 2306, 2307, 2309, 1718, 2310, 2298, + 2312, 2316, 2317, 2319, 2320, 2321, 2322, 2299, 2313, 2323, + 2324, 2314, 2325, 2315, 2300, 2301, 2326, 2302, 2327, 2303, + + 2304, 2305, 2306, 2307, 2309, 2311, 2330, 2331, 2312, 2316, + 2317, 2319, 2320, 2321, 2322, 2332, 2313, 2323, 2324, 2314, + 2325, 2315, 2333, 2334, 2326, 2335, 2327, 2338, 2340, 2341, + 2343, 2344, 2345, 2311, 2330, 2331, 2346, 2347, 2348, 2349, + 2350, 2339, 2351, 2332, 2352, 2353, 2354, 2355, 2356, 2357, + 2333, 2334, 2358, 2335, 2359, 2338, 2340, 2341, 2343, 2344, + 2345, 2360, 2361, 2362, 2346, 2347, 2348, 2349, 2350, 2363, + 2351, 2364, 2352, 2353, 2354, 2355, 2356, 2357, 2365, 2366, + 2358, 1898, 2359, 2367, 2368, 2369, 2370, 2372, 2376, 2360, + 2361, 2362, 1714, 2231, 1919, 2376, 2231, 2363, 2231, 2364, + + 2393, 2374, 2394, 2239, 2233, 2373, 2365, 2366, 2395, 1922, + 2239, 2367, 2368, 2369, 2370, 2372, 2234, 2231, 2231, 1714, + 2231, 2231, 2231, 2231, 1701, 2379, 2374, 2396, 2393, 2233, + 2394, 2377, 2378, 2373, 2231, 2385, 2395, 2231, 2377, 2231, + 2380, 2234, 2382, 1914, 2375, 2233, 1914, 2086, 1914, 2086, + 2239, 2083, 1723, 1900, 1916, 2396, 1505, 2234, 2398, 2389, + 2399, 2400, 2087, 2401, 2087, 1897, 2084, 1879, 2381, 2375, + 1850, 1849, 2231, 1808, 1806, 2231, 2231, 2231, 2386, 2231, + 2387, 2231, 2474, 2233, 2387, 2383, 2398, 2233, 2399, 2400, + 2088, 2401, 2242, 2231, 2085, 2246, 2231, 1914, 2231, 2246, + + 1914, 2390, 1914, 1914, 2233, 2090, 1914, 1914, 1914, 1939, + 1914, 2090, 1914, 2475, 1914, 2094, 2246, 1914, 1916, 1914, + 2091, 1804, 2094, 2388, 1746, 1916, 2091, 2388, 1738, 2402, + 2095, 1738, 2403, 1738, 1803, 1595, 1937, 2095, 1365, 1740, + 1594, 1365, 1378, 1365, 2391, 2404, 2397, 2405, 2092, 1367, + 2406, 1741, 1747, 2407, 2249, 2408, 2409, 2402, 2096, 1738, + 2403, 2118, 1738, 1365, 1738, 2252, 1365, 1950, 1365, 2410, + 1740, 2117, 2411, 2404, 1367, 2405, 2412, 2413, 2406, 1742, + 2414, 2407, 1753, 2408, 2409, 2415, 2118, 2416, 2417, 2266, + 2418, 2419, 2420, 2421, 2422, 2423, 2424, 2410, 2425, 2426, + + 2411, 2427, 2429, 2430, 2412, 2413, 2432, 2434, 2414, 2435, + 1754, 2436, 2437, 2415, 2266, 2416, 2417, 2438, 2418, 2419, + 2420, 2421, 2422, 2423, 2424, 2442, 2425, 2426, 2444, 2427, + 2429, 2430, 2439, 2445, 2432, 2434, 2446, 2435, 2447, 2436, + 2437, 2448, 2449, 2440, 2441, 2438, 2450, 2451, 2452, 2453, + 2454, 2455, 2456, 2442, 2457, 2458, 2444, 2459, 2460, 2461, + 2439, 2445, 2462, 2463, 2446, 2464, 2447, 2465, 2466, 2448, + 2449, 2440, 2441, 2467, 2450, 2451, 2452, 2453, 2454, 2455, + 2456, 2468, 2457, 2458, 2469, 2459, 2460, 2461, 2470, 2473, + 2462, 2463, 2476, 2464, 2477, 2465, 2466, 2478, 2479, 2480, + + 2482, 2467, 2483, 2484, 2485, 2486, 2488, 2489, 2490, 2468, + 2492, 2493, 2469, 1714, 2495, 1919, 2470, 2473, 1765, 1714, + 2476, 1564, 2477, 2491, 2574, 2478, 2479, 2480, 2482, 2239, + 2483, 2484, 2485, 2486, 2488, 2489, 2490, 2231, 2492, 2493, + 2231, 2231, 2231, 2496, 2231, 2494, 2231, 2506, 2233, 2387, + 2507, 2491, 2233, 2378, 2086, 2575, 2508, 2386, 2231, 2389, + 2234, 2231, 1914, 2231, 2246, 1914, 2497, 1914, 2376, 2087, + 2094, 2231, 2509, 1916, 2231, 2506, 2231, 2510, 2507, 2374, + 2511, 2380, 2233, 2239, 2508, 2095, 2512, 1374, 2383, 2513, + 1761, 2514, 2388, 2231, 2234, 1559, 2231, 2500, 2231, 1203, + + 2509, 2501, 1744, 1203, 2233, 2510, 2515, 1914, 2511, 2498, + 1914, 2386, 1914, 2499, 2512, 2503, 2246, 2513, 1916, 2514, + 2231, 2516, 2383, 2231, 1365, 2231, 2517, 1365, 2387, 1365, + 2504, 2233, 2117, 2518, 2515, 1367, 2519, 2520, 2521, 2522, + 2523, 2524, 2525, 2246, 2391, 2526, 2527, 2118, 2529, 2516, + 2530, 2531, 2532, 1732, 2517, 1718, 1682, 1615, 2505, 2535, + 2537, 2518, 2538, 2539, 2519, 2520, 2521, 2522, 2523, 2524, + 2525, 2391, 2540, 2526, 2527, 2263, 2529, 2541, 2530, 2531, + 2532, 2533, 2533, 2533, 2533, 2533, 2533, 2535, 2537, 2542, + 2538, 2539, 2543, 2544, 2545, 2547, 2548, 2549, 2550, 2551, + + 2540, 2552, 2553, 2554, 2555, 2541, 2556, 2557, 2558, 2559, + 2560, 2561, 2562, 2564, 2566, 2567, 2568, 2542, 2569, 2570, + 2543, 2544, 2545, 2547, 2548, 2549, 2550, 2551, 2571, 2552, + 2553, 2554, 2555, 2572, 2556, 2557, 2558, 2559, 2560, 2561, + 2562, 2564, 2566, 2567, 2568, 2576, 2569, 2570, 2577, 2578, + 2579, 2580, 2581, 2582, 2583, 2584, 2571, 2585, 2586, 2587, + 2376, 2572, 1714, 1606, 2919, 1409, 2231, 2900, 2946, 2231, + 2594, 2231, 1407, 2576, 2379, 2239, 2577, 2578, 2579, 2580, + 2581, 2582, 2583, 2584, 1595, 2585, 2586, 2587, 2231, 2380, + 2589, 2231, 2231, 2231, 2595, 2231, 2374, 2231, 2594, 2233, + + 2379, 1914, 2591, 2377, 1914, 2087, 1914, 1594, 2596, 2588, + 2881, 2234, 1916, 2901, 2947, 2380, 2597, 2381, 2231, 2598, + 1574, 2231, 2595, 2231, 2095, 2599, 2387, 1914, 1564, 2233, + 1914, 1559, 1914, 2242, 2957, 2503, 2596, 2231, 1916, 2375, + 2231, 2246, 2231, 2498, 2597, 2245, 1203, 2598, 2233, 2600, + 2504, 1914, 2252, 2599, 1914, 2601, 1914, 2602, 2603, 2592, + 2246, 2604, 1916, 2605, 2606, 2607, 2608, 2609, 2610, 2388, + 2611, 2613, 2614, 2615, 2504, 1203, 1517, 2600, 2590, 1516, + 2958, 2616, 1345, 2601, 1484, 2602, 2603, 2618, 2247, 2604, + 1456, 2605, 2606, 2607, 2608, 2609, 2610, 1434, 2611, 2613, + + 2614, 2615, 2593, 2612, 2612, 2612, 2612, 2612, 2612, 2616, + 2612, 2612, 2612, 2612, 2533, 2533, 2533, 2533, 2533, 2533, + 2617, 2617, 2617, 2617, 2617, 2617, 2619, 2621, 2612, 2622, + 2623, 2624, 2625, 2626, 2627, 2628, 2630, 2632, 2634, 2635, + 2636, 2637, 2639, 2640, 2641, 2643, 2644, 2645, 2646, 2648, + 2649, 2650, 2652, 2653, 2619, 2621, 2654, 2622, 2623, 2624, + 2625, 2626, 2627, 2628, 2630, 2632, 2634, 2635, 2636, 2637, + 2639, 2640, 2641, 2643, 2644, 2645, 2646, 2648, 2649, 2650, + 2652, 2653, 2655, 2657, 2654, 2658, 2659, 2660, 2661, 2662, + 2656, 2664, 2665, 2666, 2667, 2668, 1409, 1407, 1405, 1235, + + 2670, 2231, 1234, 1404, 2231, 2671, 2231, 1402, 1379, 2374, + 2655, 2657, 2233, 2658, 2659, 2660, 2661, 2662, 2656, 2664, + 2665, 2666, 2667, 2668, 2234, 2376, 1914, 2231, 2670, 1914, + 2231, 1914, 2231, 2671, 2669, 2387, 1914, 1916, 2233, 1914, + 2239, 1914, 2672, 2673, 2503, 2674, 2675, 1916, 2676, 2504, + 2246, 2677, 2235, 2678, 2679, 2680, 2681, 2682, 2684, 2504, + 2617, 2617, 2617, 2617, 2617, 2617, 2685, 1370, 2240, 1359, + 2672, 2673, 2686, 2674, 2675, 2687, 2676, 2593, 2247, 2677, + 2688, 2678, 2679, 2680, 2681, 2682, 2684, 2593, 2612, 2612, + 2612, 2612, 2612, 2612, 2685, 2612, 2612, 2612, 2612, 2690, + + 2686, 2691, 2692, 2687, 2693, 2694, 2695, 2696, 2688, 2697, + 2698, 2700, 2704, 2612, 2689, 2689, 2689, 2689, 2689, 2689, + 2703, 2703, 2703, 2703, 2703, 2703, 2705, 2690, 2706, 2691, + 2692, 2708, 2693, 2694, 2695, 2696, 2709, 2697, 2698, 2700, + 2704, 2711, 2712, 2713, 2715, 2716, 2717, 2718, 2719, 2720, + 2721, 2722, 2714, 2723, 2705, 2724, 2706, 2725, 2726, 2708, + 2727, 2728, 2730, 2731, 2709, 2732, 2734, 1349, 2735, 2711, + 2712, 2713, 2715, 2716, 2717, 2718, 2719, 2720, 2721, 2722, + 2714, 2723, 2736, 2724, 2737, 2725, 2726, 1348, 2727, 2728, + 2730, 2731, 1914, 2732, 2734, 1914, 2735, 1914, 2738, 2739, + + 2503, 2740, 2741, 1916, 2742, 2742, 2742, 2742, 2742, 2742, + 2736, 2744, 2737, 2745, 2746, 2504, 2747, 2689, 2689, 2689, + 2689, 2689, 2689, 2748, 2749, 2750, 2738, 2739, 2751, 2740, + 2741, 2754, 2752, 2755, 2756, 2757, 2758, 1028, 1343, 2744, + 1185, 2745, 2746, 2590, 2747, 2759, 2759, 2759, 2759, 2759, + 2759, 2748, 2749, 2750, 2753, 2760, 2751, 2761, 2762, 2754, + 2763, 2755, 2756, 2757, 2758, 2703, 2703, 2703, 2703, 2703, + 2703, 2764, 2765, 2766, 2767, 2769, 2770, 2771, 2772, 2773, + 2774, 2775, 2753, 2760, 2776, 2761, 2762, 1332, 2763, 1303, + 1286, 2778, 1241, 1236, 1235, 1234, 2779, 2780, 2782, 2764, + + 2765, 2766, 2767, 2769, 2770, 2771, 2772, 2773, 2774, 2775, + 1231, 2783, 2776, 2777, 2777, 2777, 2777, 2777, 2777, 2778, + 2777, 2777, 2777, 2777, 2779, 2780, 2782, 2784, 2785, 2786, + 2787, 2742, 2742, 2742, 2742, 2742, 2742, 2790, 2777, 2783, + 2789, 2789, 2789, 2789, 2789, 2789, 2791, 2793, 2794, 2795, + 2796, 2798, 2799, 2800, 2803, 2784, 2785, 2786, 2787, 2797, + 2797, 2797, 2797, 2797, 2797, 2790, 2801, 2804, 2759, 2759, + 2759, 2759, 2759, 2759, 2791, 2793, 2794, 2795, 2796, 2798, + 2799, 2800, 2803, 2805, 2807, 2808, 2809, 2810, 2802, 2811, + 2812, 2813, 2814, 2815, 2816, 2804, 2817, 2818, 2777, 2777, + + 2777, 2777, 2777, 2777, 2819, 2777, 2777, 2777, 2777, 2820, + 2821, 2805, 2807, 2808, 2809, 2810, 2802, 2811, 2812, 2813, + 2814, 2815, 2816, 2777, 2817, 2818, 2822, 2823, 2824, 2826, + 2830, 2831, 2819, 2832, 1229, 917, 1073, 2820, 2821, 2789, + 2789, 2789, 2789, 2789, 2789, 2828, 2828, 2828, 2828, 2828, + 2828, 2833, 2834, 2836, 2822, 2823, 2824, 2826, 2830, 2831, + 2837, 2832, 2797, 2797, 2797, 2797, 2797, 2797, 2835, 2835, + 2835, 2835, 2835, 2835, 2838, 2839, 2840, 2841, 2842, 2833, + 2834, 2836, 2843, 2844, 2845, 2846, 2848, 2849, 2837, 2850, + 2852, 2853, 2854, 2855, 2828, 2828, 2828, 2828, 2828, 2828, + + 2858, 2859, 2838, 2839, 2840, 2841, 2842, 2860, 2861, 2862, + 2843, 2844, 2845, 2846, 2848, 2849, 2863, 2850, 2852, 2853, + 2854, 2855, 2835, 2835, 2835, 2835, 2835, 2835, 2858, 2859, + 2864, 2865, 2866, 2867, 2868, 2860, 2861, 2862, 2869, 2870, + 2871, 2872, 2873, 2874, 2863, 2875, 2876, 2878, 2882, 2883, + 2884, 2885, 2886, 2887, 2889, 2890, 2891, 2877, 2864, 2865, + 2866, 2867, 2868, 2892, 2893, 2895, 2869, 2870, 2871, 2872, + 2873, 2874, 2896, 2875, 2876, 2878, 2882, 2883, 2884, 2885, + 2886, 2887, 2889, 2890, 2891, 2877, 2897, 2898, 2899, 2903, + 2904, 2892, 2893, 2895, 2905, 2906, 2907, 2909, 2911, 2912, + + 2896, 2913, 2914, 2917, 2920, 2921, 2922, 2923, 2924, 2925, + 2926, 2927, 2928, 2935, 2897, 2898, 2899, 2903, 2904, 2937, + 2938, 2939, 2905, 2906, 2907, 2909, 2911, 2912, 2929, 2913, + 2914, 2917, 2920, 2921, 2922, 2923, 2924, 2925, 2926, 2927, + 2928, 2935, 2930, 2940, 2941, 2942, 2943, 2937, 2938, 2939, + 2948, 2948, 2948, 2948, 2948, 2948, 2929, 2950, 2950, 2950, + 2950, 2950, 2950, 2951, 2952, 2953, 2954, 2955, 2956, 2957, + 2930, 2940, 2941, 2942, 2943, 2948, 2948, 2948, 2948, 2948, + 2948, 2960, 2960, 2960, 2960, 2960, 2960, 2965, 2961, 2962, + 2964, 2951, 2952, 2953, 2954, 2955, 2956, 2950, 2950, 2950, + + 2950, 2950, 2950, 2960, 2960, 2960, 2960, 2960, 2960, 2966, + 2957, 2967, 2968, 914, 1070, 2947, 2961, 2962, 2964, 1207, + 1205, 877, 1035, 1188, 1187, 1185, 1136, 1135, 1125, 1124, + 1123, 1084, 1081, 2947, 1080, 925, 924, 2966, 922, 2967, + 2968, 921, 1073, 1070, 1052, 1049, 1048, 1047, 1046, 1044, + 1035, 996, 985, 980, 975, 971, 2958, 38, 38, 38, + 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, + 38, 56, 56, 56, 56, 56, 56, 56, 56, 56, + 56, 56, 56, 56, 56, 83, 83, 83, 83, 83, + 83, 83, 83, 83, 83, 83, 83, 83, 83, 88, + + 88, 88, 88, 88, 88, 88, 88, 88, 88, 88, + 88, 88, 88, 92, 92, 92, 92, 92, 92, 92, + 92, 92, 92, 92, 92, 92, 92, 126, 126, 126, + 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, + 126, 129, 129, 129, 129, 129, 129, 129, 129, 129, + 129, 129, 129, 129, 129, 130, 130, 130, 130, 130, + 130, 130, 130, 130, 130, 130, 130, 130, 130, 131, + 131, 131, 131, 131, 131, 131, 131, 131, 131, 131, + 131, 131, 131, 132, 132, 132, 132, 132, 132, 132, + 132, 132, 132, 132, 132, 132, 132, 143, 143, 143, + + 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, + 143, 150, 150, 150, 150, 150, 150, 150, 150, 150, + 150, 150, 150, 150, 150, 154, 154, 931, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 154, 224, + 224, 224, 224, 224, 224, 224, 224, 224, 224, 224, + 224, 224, 224, 230, 930, 230, 230, 929, 230, 230, + 230, 230, 230, 230, 230, 230, 231, 927, 231, 231, + 925, 231, 231, 231, 231, 231, 231, 231, 231, 231, + 233, 233, 233, 233, 233, 233, 233, 233, 233, 233, + 233, 233, 233, 233, 291, 291, 291, 291, 291, 291, + + 291, 291, 291, 291, 291, 291, 291, 291, 296, 296, + 924, 296, 296, 296, 296, 296, 296, 296, 296, 296, + 296, 296, 297, 297, 922, 297, 297, 297, 297, 297, + 297, 297, 297, 297, 297, 297, 321, 321, 921, 321, + 321, 918, 321, 321, 911, 321, 321, 321, 321, 321, + 232, 907, 232, 232, 2969, 232, 232, 232, 232, 232, + 232, 232, 232, 232, 614, 614, 614, 614, 614, 880, + 614, 614, 614, 614, 614, 869, 614, 614, 616, 616, + 616, 616, 616, 858, 616, 616, 616, 616, 616, 821, + 616, 616, 619, 619, 619, 619, 619, 774, 619, 619, + + 619, 619, 619, 773, 619, 619, 621, 621, 621, 621, + 621, 759, 621, 621, 621, 621, 621, 758, 621, 621, + 727, 727, 727, 727, 727, 727, 727, 727, 747, 727, + 727, 727, 727, 727, 766, 766, 766, 766, 766, 728, + 766, 766, 766, 766, 766, 718, 766, 766, 767, 767, + 767, 767, 767, 712, 767, 767, 767, 767, 767, 677, + 767, 767, 769, 769, 769, 769, 769, 673, 769, 769, + 769, 769, 769, 666, 769, 769, 770, 770, 770, 770, + 770, 658, 770, 770, 770, 770, 770, 655, 770, 770, + 868, 622, 868, 868, 620, 617, 868, 868, 615, 868, + + 868, 868, 868, 868, 875, 875, 875, 875, 875, 875, + 875, 875, 875, 875, 875, 875, 875, 875, 883, 883, + 883, 883, 883, 883, 609, 883, 604, 883, 883, 883, + 883, 883, 912, 912, 912, 912, 912, 912, 912, 912, + 912, 912, 912, 912, 912, 912, 915, 915, 915, 915, + 915, 915, 915, 915, 915, 915, 915, 915, 915, 915, + 926, 926, 926, 926, 926, 603, 926, 926, 926, 926, + 926, 576, 926, 926, 928, 928, 928, 928, 928, 566, + 928, 928, 928, 928, 928, 554, 928, 928, 987, 987, + 987, 987, 987, 987, 987, 987, 987, 235, 987, 987, + + 987, 987, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, + 1025, 1025, 1025, 1025, 1025, 1025, 1074, 235, 399, 525, + 501, 498, 1074, 1074, 471, 1074, 1074, 1074, 1074, 1074, + 1078, 1078, 1078, 1078, 1078, 470, 1078, 1078, 1078, 1078, + 1078, 314, 1078, 1078, 1079, 1079, 1079, 1079, 1079, 468, + 1079, 1079, 1079, 1079, 1079, 301, 1079, 1079, 1026, 1026, + 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, + 1026, 1026, 1201, 300, 1201, 1201, 295, 295, 1201, 1201, + 1201, 1201, 1201, 1201, 1201, 1201, 1204, 294, 1204, 1204, + 459, 453, 1204, 1204, 417, 1204, 1204, 1204, 1204, 1204, + + 1206, 402, 1206, 1206, 241, 401, 1206, 1206, 399, 1206, + 1206, 1206, 1206, 1206, 1228, 1228, 1228, 1228, 1228, 373, + 1228, 1228, 1228, 1228, 1228, 371, 1228, 1228, 1230, 1230, + 1230, 1230, 1230, 363, 1230, 1230, 1230, 1230, 1230, 348, + 1230, 1230, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, + 1237, 1237, 1237, 1237, 1237, 1237, 1242, 337, 1242, 322, + 1242, 314, 301, 1242, 1364, 1364, 1364, 1364, 1364, 1364, + 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1203, 300, + 1203, 1203, 294, 241, 1203, 1203, 1203, 1203, 1203, 1203, + 1203, 1203, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, + + 1371, 1371, 1371, 1371, 1371, 1371, 1375, 1375, 1375, 1375, + 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, + 1399, 1399, 1399, 1399, 1399, 232, 1399, 1399, 1399, 1399, + 1399, 2969, 1399, 1399, 1400, 1400, 1400, 1400, 1400, 56, + 1400, 1400, 1400, 1400, 1400, 56, 1400, 1400, 1401, 1401, + 1401, 1401, 1401, 56, 1401, 1401, 1401, 1401, 1401, 56, + 1401, 1401, 1403, 1403, 1403, 1403, 1403, 56, 1403, 1403, + 1403, 1403, 1403, 56, 1403, 1403, 1078, 1078, 1078, 1078, + 1078, 97, 1078, 1078, 1078, 1078, 1078, 97, 1078, 1078, + 1079, 1079, 1079, 1079, 1079, 2969, 1079, 1079, 1079, 1079, + + 1079, 2969, 1079, 1079, 154, 154, 2969, 154, 154, 154, + 154, 154, 154, 154, 154, 154, 154, 154, 1406, 1406, + 2969, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, + 1406, 1406, 1408, 1408, 2969, 1408, 1408, 1408, 1408, 1408, + 1408, 1408, 1408, 1408, 1408, 1408, 1412, 2969, 1412, 2969, + 2969, 1412, 1242, 2969, 1242, 2969, 2969, 1242, 1503, 1503, + 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, + 1503, 1503, 1025, 1025, 1025, 1025, 1025, 1025, 1025, 1025, + 1025, 1025, 1025, 1025, 1025, 1025, 1026, 1026, 1026, 1026, + 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, 1026, + + 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, + 1518, 1518, 1518, 1518, 1521, 1521, 1521, 1521, 1521, 1521, + 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1539, 2969, 1539, 1539, 2969, 2969, 1539, 1539, + 1539, 1539, 1539, 1539, 1539, 1539, 1364, 1364, 1364, 1364, + 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, + 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, + 1365, 1365, 1365, 1365, 1201, 2969, 1201, 1201, 2969, 2969, + 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1367, 1367, + + 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, + 1367, 1367, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, + 1550, 1550, 1550, 1550, 1550, 1550, 1554, 2969, 1554, 1554, + 2969, 2969, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, + 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, + 1371, 1371, 1371, 1371, 1372, 1372, 1372, 1372, 1372, 1372, + 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1204, 2969, + 1204, 1204, 2969, 2969, 1204, 1204, 2969, 1204, 1204, 1204, + 1204, 1204, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, + 1375, 1375, 1375, 1375, 1375, 1375, 1376, 1376, 1376, 1376, + + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1206, 2969, 1206, 1206, 2969, 2969, 1206, 1206, 2969, 1206, + 1206, 1206, 1206, 1206, 1399, 1399, 1399, 1399, 1399, 2969, + 1399, 1399, 1399, 1399, 1399, 2969, 1399, 1399, 1400, 1400, + 1400, 1400, 1400, 2969, 1400, 1400, 1400, 1400, 1400, 2969, + 1400, 1400, 1401, 1401, 1401, 1401, 1401, 2969, 1401, 1401, + 1401, 1401, 1401, 2969, 1401, 1401, 1596, 1596, 1596, 1596, + 1596, 2969, 1596, 1596, 1596, 1596, 1596, 2969, 1596, 1596, + 1403, 1403, 1403, 1403, 1403, 2969, 1403, 1403, 1403, 1403, + 1403, 2969, 1403, 1403, 1597, 1597, 1597, 1597, 1597, 2969, + + 1597, 1597, 1597, 1597, 1597, 2969, 1597, 1597, 1598, 1598, + 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, + 1598, 1598, 1406, 1406, 2969, 1406, 1406, 1406, 1406, 1406, + 1406, 1406, 1406, 1406, 1406, 1406, 1408, 1408, 2969, 1408, + 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, + 1412, 2969, 1412, 2969, 1412, 2969, 2969, 1412, 1619, 1619, + 2969, 2969, 1619, 1619, 1619, 1619, 2969, 1619, 1619, 1619, + 1619, 1619, 1629, 2969, 1629, 2969, 2969, 1629, 1503, 1503, + 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, + 1503, 1503, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, + + 1699, 1699, 1699, 1699, 1699, 1699, 1712, 2969, 1712, 1712, + 2969, 2969, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, + 1715, 1715, 1715, 1715, 1715, 2969, 1715, 1715, 2969, 1715, + 1715, 1715, 1715, 1715, 1518, 1518, 1518, 1518, 1518, 1518, + 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1521, 1521, + 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, + 1521, 1521, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, + 1721, 1721, 1721, 1721, 1721, 1721, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1539, 2969, 1539, 1539, 2969, 2969, 1539, 1539, 1539, 1539, + + 1539, 1539, 1539, 1539, 1201, 2969, 1201, 1201, 2969, 2969, + 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1737, 1737, + 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, + 1737, 1737, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, + 1364, 1364, 1364, 1364, 1364, 1364, 1738, 1738, 1738, 1738, + 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, + 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, + 1365, 1365, 1365, 1365, 1203, 2969, 1203, 1203, 2969, 2969, + 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1751, 1751, + 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, + + 1751, 1751, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, + 1367, 1367, 1367, 1367, 1367, 1367, 1550, 1550, 1550, 1550, + 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, + 1554, 2969, 1554, 1554, 2969, 2969, 1554, 1554, 1554, 1554, + 1554, 1554, 1554, 1554, 1204, 2969, 1204, 1204, 2969, 2969, + 1204, 1204, 2969, 1204, 1204, 1204, 1204, 1204, 1371, 1371, + 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, + 1371, 1371, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, + 1372, 1372, 1372, 1372, 1372, 1372, 1206, 2969, 1206, 1206, + 2969, 2969, 1206, 1206, 2969, 1206, 1206, 1206, 1206, 1206, + + 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, + 1375, 1375, 1375, 1375, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1784, 2969, + 2969, 2969, 2969, 2969, 1784, 1784, 2969, 1784, 1784, 1784, + 1784, 1784, 1399, 1399, 1399, 1399, 1399, 2969, 1399, 1399, + 1399, 1399, 1399, 2969, 1399, 1399, 1400, 1400, 1400, 1400, + 1400, 2969, 1400, 1400, 1400, 1400, 1400, 2969, 1400, 1400, + 1596, 1596, 1596, 1596, 1596, 2969, 1596, 1596, 1596, 1596, + 1596, 2969, 1596, 1596, 1597, 1597, 1597, 1597, 1597, 2969, + 1597, 1597, 1597, 1597, 1597, 2969, 1597, 1597, 1805, 1805, + + 2969, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, + 1805, 1805, 1807, 1807, 2969, 1807, 1807, 1807, 1807, 1807, + 1807, 1807, 1807, 1807, 1807, 1807, 1406, 1406, 1406, 1406, + 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, + 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, + 1408, 1408, 1408, 1408, 1825, 2969, 1825, 2969, 2969, 1825, + 1619, 2969, 2969, 2969, 2969, 2969, 1619, 1619, 2969, 1619, + 1619, 1619, 1619, 1619, 1830, 2969, 2969, 2969, 2969, 2969, + 1830, 1830, 2969, 1830, 1830, 1830, 1830, 1830, 1629, 2969, + 1629, 2969, 2969, 1629, 1503, 1503, 1503, 1503, 1503, 1503, + + 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1699, 1699, + 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, + 1699, 1699, 1712, 2969, 1712, 1712, 2969, 2969, 1712, 1712, + 1712, 1712, 1712, 1712, 1712, 1712, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1714, 2969, 1714, 1714, 2969, 2969, 1714, 1714, 1714, 1714, + 1714, 1714, 1714, 1714, 1715, 1715, 1715, 1715, 1715, 2969, + 1715, 1715, 2969, 1715, 1715, 1715, 1715, 1715, 1518, 1518, + 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, + 1518, 1518, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, + + 1521, 1521, 1521, 1521, 1521, 1521, 1721, 1721, 1721, 1721, + 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, + 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, + 1533, 1533, 1533, 1533, 1737, 1737, 1737, 1737, 1737, 1737, + 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1738, 1738, + 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, + 1738, 1738, 1539, 2969, 1539, 1539, 2969, 2969, 1539, 1539, + 1539, 1539, 1539, 1539, 1539, 1539, 1740, 1740, 1740, 1740, + 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, + 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, + + 1364, 1364, 1364, 1364, 1365, 1365, 1365, 1365, 1365, 1365, + 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1203, 2969, + 1203, 1203, 2969, 2969, 1203, 1203, 1203, 1203, 1203, 1203, + 1203, 1203, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, + 1751, 1751, 1751, 1751, 1751, 1751, 1554, 2969, 1554, 1554, + 2969, 2969, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, + 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, + 1367, 1367, 1367, 1367, 1550, 1550, 1550, 1550, 1550, 1550, + 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1371, 1371, + 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, + + 1371, 1371, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, + 1372, 1372, 1372, 1372, 1372, 1372, 1375, 1375, 1375, 1375, + 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, + 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, + 1376, 1376, 1376, 1376, 1784, 2969, 2969, 2969, 2969, 2969, + 1784, 1784, 2969, 1784, 1784, 1784, 1784, 1784, 1596, 1596, + 1596, 1596, 1596, 2969, 1596, 1596, 1596, 1596, 1596, 2969, + 1596, 1596, 1597, 1597, 1597, 1597, 1597, 2969, 1597, 1597, + 1597, 1597, 1597, 2969, 1597, 1597, 1805, 1805, 2969, 1805, + 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, + + 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, + 1987, 1987, 1987, 1987, 1807, 1807, 2969, 1807, 1807, 1807, + 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1990, 1990, + 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, + 1990, 1990, 1996, 2969, 1996, 2969, 2969, 1996, 1825, 2969, + 1825, 2969, 2969, 1825, 2007, 2969, 2007, 2969, 2969, 2007, + 1830, 2969, 2969, 2969, 2969, 1830, 1830, 1830, 2969, 1830, + 1830, 1830, 1830, 1830, 1699, 1699, 1699, 1699, 1699, 1699, + 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1503, 1503, + 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, + + 1503, 1503, 2082, 2969, 2082, 2082, 2969, 2969, 2082, 2082, + 2082, 2082, 2082, 2082, 2082, 2082, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1712, 2969, 1712, 1712, 2969, 2969, + 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1916, 1916, + 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, + 1916, 1916, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2097, 2969, 2097, 2097, + 2969, 2969, 2097, 2097, 2097, 2097, 2097, 2097, 2097, 2097, + + 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, + 1518, 1518, 1518, 1518, 1721, 1721, 1721, 1721, 1721, 1721, + 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1521, 1521, + 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, + 1521, 1521, 1539, 2969, 1539, 1539, 2969, 2969, 1539, 1539, + 1539, 1539, 1539, 1539, 1539, 1539, 1737, 1737, 1737, 1737, + 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, + 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, + 1738, 1738, 1738, 1738, 1203, 2969, 1203, 1203, 2969, 2969, + 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1751, 1751, + + 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, + 1751, 1751, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, + 1740, 1740, 1740, 1740, 1740, 1740, 1550, 1550, 1550, 1550, + 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, + 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, + 1365, 1365, 1365, 1365, 1554, 2969, 1554, 1554, 2969, 2969, + 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 2116, 2116, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 1805, 1805, 2969, 1805, 1805, 1805, 1805, 1805, + 1805, 1805, 1805, 1805, 1805, 1805, 1987, 1987, 1987, 1987, + + 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, + 1807, 1807, 2969, 1807, 1807, 1807, 1807, 1807, 1807, 1807, + 1807, 1807, 1807, 1807, 1990, 1990, 1990, 1990, 1990, 1990, + 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1996, 2969, + 1996, 2969, 2969, 1996, 2154, 2969, 2154, 2969, 2969, 2154, + 2007, 2969, 2007, 2969, 2969, 2007, 2176, 2969, 2176, 2969, + 2969, 2176, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, + 1699, 1699, 1699, 1699, 1699, 1699, 1503, 1503, 1503, 1503, + 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, + 2082, 2969, 2082, 2082, 2969, 2969, 2082, 2082, 2082, 2082, + + 2082, 2082, 2082, 2082, 1712, 2969, 1712, 1712, 2969, 2969, + 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 2230, 2230, + 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, 2230, + 2230, 2230, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 2231, 2231, 2231, 2231, + 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, + 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1714, 2969, 1714, 1714, 2969, 2969, + 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 2244, 2244, + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + + 2244, 2244, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, + 1916, 1916, 1916, 1916, 1916, 1916, 2093, 2093, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2097, 2969, 2097, 2097, 2969, 2969, 2097, 2097, 2097, 2097, + 2097, 2097, 2097, 2097, 1721, 1721, 1721, 1721, 1721, 1721, + 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1521, 1521, + 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, + 1521, 1521, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, + 1737, 1737, 1737, 1737, 1737, 1737, 1738, 1738, 1738, 1738, + 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, + + 1203, 2969, 1203, 1203, 2969, 2969, 1203, 1203, 1203, 1203, + 1203, 1203, 1203, 1203, 1740, 1740, 1740, 1740, 1740, 1740, + 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1550, 1550, + 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, + 1550, 1550, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, + 1365, 1365, 1365, 1365, 1365, 1365, 1751, 1751, 1751, 1751, + 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, + 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, 2116, + 2116, 2116, 2116, 2116, 1554, 2969, 1554, 1554, 2969, 2969, + 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 2154, 2969, + + 2154, 2969, 2969, 2154, 2318, 2969, 2318, 2969, 2969, 2318, + 2176, 2969, 2176, 2969, 2969, 2176, 1699, 1699, 1699, 1699, + 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, + 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, 2231, + 2231, 2231, 2231, 2231, 2233, 2233, 2233, 2233, 2233, 2233, + 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 1913, 1913, + 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, + 1913, 1913, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, + 1914, 1914, 1914, 1914, 1914, 1914, 1714, 2969, 1714, 1714, + 2969, 2969, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, + + 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, + 2244, 2244, 2244, 2244, 1916, 1916, 1916, 1916, 1916, 1916, + 1916, 1916, 1916, 1916, 1916, 1916, 1916, 1916, 2093, 2093, + 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, 2093, + 2093, 2093, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, + 1721, 1721, 1721, 1721, 1721, 1721, 1737, 1737, 1737, 1737, + 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, + 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, + 1738, 1738, 1738, 1738, 2431, 2431, 2969, 2431, 2431, 2969, + 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2433, 2433, 2433, + + 2433, 2969, 2433, 2433, 2433, 2433, 2433, 2433, 2433, 2433, + 2433, 2502, 2502, 2502, 2502, 2502, 2502, 2502, 2502, 2502, + 2502, 2502, 2502, 2502, 2502, 2546, 2546, 2969, 2546, 2546, + 2969, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2620, 2620, + 2969, 2969, 2969, 2620, 2620, 2620, 2620, 2620, 2620, 2620, + 2620, 2620, 2699, 2699, 2969, 2699, 2699, 2969, 2699, 2699, + 2699, 2699, 2699, 2699, 2699, 2701, 2701, 2969, 2701, 2701, + 2969, 2701, 2701, 2701, 2701, 2701, 2701, 2701, 2781, 2969, + 2781, 2781, 2969, 2781, 2825, 2825, 2969, 2825, 2825, 2969, + 2825, 2825, 2825, 2825, 2825, 2825, 2825, 2856, 2969, 2856, + + 2969, 2969, 2856, 2879, 2879, 2879, 2879, 2879, 2879, 2879, + 2879, 2879, 2879, 2879, 2879, 2879, 2879, 2908, 2908, 2969, + 2908, 2908, 2969, 2908, 2908, 2908, 2908, 2908, 2908, 2908, + 2931, 2969, 2931, 2931, 2969, 2931, 2944, 2969, 2944, 2944, + 2969, 2944, 2945, 2945, 2945, 2945, 2945, 2945, 2945, 2945, + 2945, 2945, 2945, 2945, 2945, 2945, 37, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969 + } ; + +static const flex_int16_t yy_chk[9939] = + { 0, + 0, 1, 1, 1, 1, 3, 1, 1, 3, 0, + 4, 0, 1, 4, 7, 8, 303, 7, 8, 7, + 8, 23, 11, 11, 303, 11, 1, 19, 1, 1, + 19, 231, 19, 1, 1, 9, 9, 3021, 9, 9, + 1, 1, 2959, 1, 1, 24, 10, 10, 1, 10, + 10, 0, 1, 45, 1, 20, 1, 1, 20, 9, + 20, 1, 1, 55, 55, 7, 8, 23, 1, 1, + 10, 1, 1, 11, 79, 79, 1, 2, 2, 2, + 2, 45, 2, 2, 12, 12, 9, 12, 2, 21, + 22, 24, 21, 22, 21, 22, 231, 10, 33, 33, + + 33, 33, 2, 33, 2, 2, 33, 305, 35, 2, + 2, 149, 35, 149, 46, 305, 2, 2, 35, 2, + 2, 33, 47, 48, 2, 2957, 57, 2954, 2, 57, + 2, 103, 2, 2, 103, 12, 2946, 2, 2, 36, + 21, 22, 46, 36, 2, 2, 2935, 2, 2, 36, + 47, 48, 2, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, + 5, 5, 5, 5, 13, 13, 49, 13, 14, 14, + 51, 14, 34, 34, 34, 34, 43, 34, 13, 43, + 34, 50, 14, 39, 39, 52, 39, 51, 53, 50, + 54, 97, 63, 62, 49, 34, 62, 64, 51, 65, + 66, 67, 68, 70, 68, 71, 623, 66, 72, 50, + 77, 65, 78, 52, 623, 51, 53, 50, 54, 43, + 63, 62, 82, 82, 62, 64, 2922, 65, 66, 67, + + 68, 70, 68, 71, 39, 66, 72, 97, 77, 65, + 78, 87, 87, 13, 120, 120, 2920, 14, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, + 17, 17, 17, 17, 17, 17, 17, 17, 17, 31, + + 31, 73, 31, 31, 31, 58, 69, 31, 58, 74, + 58, 81, 75, 920, 81, 84, 81, 73, 84, 124, + 69, 920, 124, 105, 74, 108, 69, 75, 2918, 73, + 31, 76, 31, 110, 69, 76, 76, 74, 88, 88, + 75, 88, 31, 31, 31, 73, 89, 89, 69, 89, + 31, 105, 74, 108, 69, 75, 58, 2917, 31, 76, + 31, 110, 81, 76, 76, 126, 84, 112, 106, 1081, + 31, 31, 31, 32, 32, 106, 32, 32, 32, 125, + 125, 32, 91, 91, 91, 91, 107, 106, 471, 88, + 99, 99, 99, 99, 115, 112, 106, 89, 118, 107, + + 119, 99, 109, 106, 32, 471, 32, 102, 102, 102, + 102, 126, 109, 128, 107, 106, 32, 32, 32, 1081, + 133, 117, 115, 133, 32, 117, 118, 107, 119, 718, + 109, 1077, 32, 91, 32, 142, 142, 153, 153, 1077, + 109, 99, 111, 2902, 32, 32, 32, 86, 86, 86, + 86, 86, 86, 117, 86, 137, 104, 86, 138, 128, + 111, 86, 111, 86, 86, 104, 86, 86, 86, 104, + 111, 133, 718, 113, 104, 86, 86, 86, 86, 86, + 86, 113, 86, 137, 104, 86, 138, 2900, 111, 86, + 111, 86, 86, 104, 86, 86, 86, 104, 114, 139, + + 116, 113, 104, 121, 116, 114, 121, 140, 121, 113, + 116, 122, 141, 157, 122, 114, 122, 123, 148, 116, + 123, 148, 123, 2899, 158, 2897, 114, 139, 116, 174, + 174, 155, 116, 114, 155, 140, 151, 151, 116, 151, + 141, 157, 159, 114, 160, 161, 2896, 116, 144, 144, + 144, 144, 158, 144, 162, 164, 144, 147, 147, 147, + 147, 165, 122, 166, 167, 166, 168, 175, 123, 176, + 159, 177, 160, 161, 155, 169, 178, 171, 169, 167, + 171, 172, 162, 164, 172, 179, 172, 151, 180, 165, + 181, 166, 167, 166, 168, 175, 182, 176, 183, 177, + + 184, 186, 187, 188, 178, 189, 190, 167, 191, 193, + 195, 192, 196, 179, 198, 192, 180, 192, 181, 194, + 194, 199, 200, 201, 182, 202, 183, 2891, 184, 186, + 187, 188, 172, 189, 190, 233, 191, 193, 195, 192, + 196, 203, 198, 192, 203, 192, 203, 194, 194, 199, + 200, 201, 205, 202, 210, 205, 211, 205, 206, 206, + 207, 209, 212, 207, 209, 207, 213, 214, 216, 213, + 216, 215, 217, 218, 220, 2880, 221, 228, 223, 222, + 228, 233, 210, 222, 211, 215, 215, 217, 219, 235, + 212, 240, 240, 2872, 213, 214, 216, 213, 216, 215, + + 217, 218, 220, 205, 221, 219, 223, 222, 246, 247, + 219, 222, 209, 215, 215, 217, 219, 224, 224, 248, + 224, 225, 225, 2864, 225, 227, 227, 227, 227, 229, + 229, 239, 229, 219, 239, 235, 246, 247, 219, 236, + 236, 236, 236, 242, 242, 242, 242, 248, 245, 249, + 236, 245, 2820, 250, 251, 252, 253, 254, 255, 254, + 256, 258, 1201, 254, 259, 260, 261, 262, 224, 264, + 267, 256, 225, 266, 1201, 266, 227, 249, 270, 2813, + 229, 250, 251, 252, 253, 254, 255, 254, 256, 258, + 236, 254, 259, 260, 261, 262, 263, 264, 267, 256, + + 268, 266, 269, 266, 272, 273, 270, 263, 275, 271, + 268, 271, 276, 277, 278, 283, 280, 278, 283, 280, + 269, 280, 281, 286, 263, 281, 286, 281, 268, 302, + 269, 288, 272, 273, 288, 263, 275, 271, 268, 271, + 276, 277, 284, 284, 287, 287, 2791, 282, 269, 274, + 282, 291, 282, 295, 274, 304, 274, 302, 274, 274, + 274, 306, 274, 323, 274, 274, 274, 274, 298, 285, + 1750, 298, 285, 281, 285, 289, 307, 274, 289, 307, + 289, 2763, 274, 304, 274, 1750, 274, 274, 274, 306, + 274, 323, 274, 274, 274, 274, 324, 291, 282, 295, + + 299, 299, 309, 309, 309, 309, 312, 309, 313, 312, + 309, 313, 315, 315, 315, 315, 325, 326, 318, 298, + 285, 318, 327, 329, 324, 330, 331, 332, 336, 334, + 337, 336, 335, 337, 2746, 338, 339, 340, 342, 343, + 2741, 345, 346, 369, 325, 326, 369, 2738, 369, 347, + 327, 329, 349, 330, 331, 332, 333, 334, 333, 333, + 335, 350, 333, 338, 339, 340, 342, 343, 333, 345, + 346, 333, 351, 333, 333, 333, 333, 347, 352, 333, + 349, 353, 354, 355, 333, 358, 333, 333, 359, 350, + 333, 357, 357, 356, 360, 361, 333, 362, 364, 333, + + 351, 333, 333, 333, 333, 365, 352, 333, 366, 353, + 354, 355, 356, 358, 367, 2716, 359, 374, 375, 357, + 357, 356, 360, 361, 371, 362, 364, 371, 376, 371, + 377, 379, 372, 365, 380, 372, 366, 372, 373, 381, + 356, 373, 367, 373, 383, 374, 375, 384, 387, 388, + 389, 391, 392, 393, 394, 395, 376, 396, 377, 379, + 396, 397, 380, 398, 397, 403, 404, 381, 405, 406, + 407, 408, 383, 409, 411, 384, 387, 388, 389, 391, + 392, 393, 394, 395, 412, 413, 414, 415, 416, 452, + 1601, 1601, 452, 403, 404, 418, 405, 406, 407, 408, + + 2684, 409, 411, 419, 420, 422, 423, 424, 426, 427, + 417, 428, 412, 413, 414, 415, 416, 417, 417, 417, + 417, 417, 417, 418, 429, 430, 431, 433, 398, 434, + 435, 419, 420, 422, 423, 424, 426, 427, 436, 428, + 437, 439, 434, 434, 440, 434, 434, 442, 443, 444, + 441, 445, 429, 430, 431, 433, 439, 434, 435, 438, + 441, 438, 2673, 447, 451, 438, 436, 2667, 437, 439, + 434, 434, 440, 434, 434, 442, 443, 444, 441, 445, + 448, 446, 448, 453, 439, 460, 453, 438, 441, 438, + 446, 447, 451, 438, 454, 455, 457, 454, 455, 457, + + 455, 457, 458, 463, 466, 458, 472, 473, 448, 446, + 448, 459, 467, 460, 459, 467, 459, 468, 446, 469, + 468, 474, 469, 475, 476, 477, 478, 479, 480, 481, + 482, 463, 466, 483, 472, 473, 484, 483, 485, 486, + 488, 489, 491, 487, 481, 492, 490, 481, 490, 474, + 495, 475, 476, 477, 478, 479, 480, 481, 482, 487, + 494, 483, 497, 494, 484, 483, 485, 486, 488, 489, + 491, 487, 481, 492, 490, 481, 490, 499, 502, 503, + 504, 495, 505, 506, 507, 508, 510, 487, 511, 512, + 497, 513, 514, 515, 517, 518, 519, 521, 522, 524, + + 2644, 546, 529, 523, 546, 499, 502, 503, 504, 530, + 505, 506, 507, 508, 510, 523, 511, 512, 531, 513, + 514, 515, 517, 518, 519, 521, 522, 524, 526, 528, + 529, 526, 528, 526, 528, 532, 533, 530, 534, 535, + 536, 537, 538, 523, 540, 541, 531, 542, 543, 544, + 545, 547, 548, 541, 549, 550, 551, 552, 553, 2641, + 556, 557, 560, 532, 533, 2632, 534, 535, 536, 537, + 538, 563, 540, 541, 564, 542, 543, 544, 545, 547, + 548, 541, 549, 550, 551, 552, 553, 554, 556, 557, + 560, 565, 554, 561, 561, 561, 561, 561, 561, 563, + + 567, 568, 564, 569, 554, 562, 562, 562, 562, 562, + 562, 571, 572, 573, 574, 554, 575, 577, 578, 565, + 554, 579, 580, 581, 582, 583, 584, 585, 567, 568, + 584, 569, 554, 586, 587, 588, 589, 590, 591, 571, + 572, 573, 574, 592, 575, 577, 578, 593, 596, 579, + 580, 581, 582, 583, 597, 585, 595, 597, 584, 598, + 595, 586, 587, 588, 589, 590, 591, 599, 600, 601, + 602, 592, 605, 613, 606, 593, 596, 606, 607, 618, + 2610, 607, 597, 607, 595, 597, 608, 598, 595, 608, + 610, 612, 628, 610, 612, 599, 600, 601, 602, 609, + + 605, 613, 609, 611, 609, 629, 611, 618, 611, 624, + 631, 632, 624, 633, 634, 635, 636, 637, 638, 640, + 628, 639, 639, 641, 639, 642, 643, 641, 644, 646, + 645, 647, 648, 629, 645, 649, 645, 650, 631, 632, + 651, 633, 634, 635, 636, 637, 638, 640, 652, 639, + 639, 641, 639, 642, 643, 641, 644, 646, 645, 647, + 648, 655, 645, 649, 645, 650, 654, 656, 651, 657, + 654, 658, 2599, 659, 660, 661, 652, 654, 662, 654, + 663, 664, 665, 666, 668, 669, 670, 671, 672, 655, + 674, 675, 676, 2582, 654, 656, 678, 2569, 654, 658, + + 657, 659, 660, 661, 679, 654, 662, 654, 663, 664, + 665, 666, 668, 669, 670, 671, 672, 681, 674, 675, + 676, 677, 677, 682, 678, 677, 683, 684, 685, 686, + 677, 687, 679, 688, 689, 690, 677, 691, 692, 694, + 677, 695, 677, 696, 697, 681, 698, 699, 700, 677, + 677, 682, 702, 677, 683, 684, 685, 686, 677, 687, + 703, 688, 689, 690, 677, 691, 692, 694, 677, 695, + 677, 696, 697, 705, 698, 699, 700, 707, 708, 709, + 702, 710, 711, 713, 715, 716, 717, 761, 703, 763, + 761, 2564, 763, 719, 720, 709, 724, 726, 729, 730, + + 731, 705, 732, 733, 734, 707, 708, 709, 714, 710, + 711, 713, 715, 716, 717, 714, 714, 714, 714, 714, + 714, 719, 720, 709, 724, 726, 729, 730, 731, 735, + 732, 733, 734, 736, 736, 736, 736, 736, 736, 737, + 738, 739, 740, 741, 742, 743, 744, 745, 746, 748, + 749, 750, 751, 752, 754, 755, 756, 735, 758, 759, + 762, 764, 765, 762, 764, 762, 768, 737, 738, 739, + 740, 741, 742, 743, 744, 745, 746, 748, 749, 750, + 751, 752, 754, 755, 756, 775, 776, 777, 778, 779, + 765, 781, 782, 783, 768, 784, 785, 786, 787, 788, + + 789, 758, 759, 790, 791, 792, 793, 794, 795, 796, + 797, 798, 800, 775, 776, 777, 778, 779, 801, 781, + 782, 783, 802, 784, 785, 786, 787, 788, 789, 799, + 804, 790, 791, 792, 793, 794, 795, 796, 797, 798, + 800, 805, 806, 807, 799, 808, 801, 809, 811, 812, + 802, 814, 815, 816, 818, 819, 820, 799, 804, 811, + 821, 823, 824, 825, 811, 811, 826, 828, 830, 805, + 806, 807, 799, 808, 831, 809, 811, 812, 832, 814, + 815, 816, 818, 819, 820, 834, 835, 811, 821, 823, + 824, 825, 811, 811, 826, 828, 830, 833, 836, 838, + + 840, 841, 831, 833, 842, 843, 832, 844, 845, 846, + 847, 848, 849, 834, 835, 850, 852, 853, 854, 855, + 856, 857, 858, 860, 858, 833, 836, 838, 840, 841, + 861, 833, 842, 843, 862, 844, 845, 846, 847, 848, + 849, 863, 864, 850, 852, 853, 854, 855, 856, 857, + 858, 860, 858, 865, 866, 867, 869, 870, 861, 869, + 872, 869, 862, 873, 869, 874, 875, 869, 877, 863, + 864, 878, 879, 891, 891, 891, 891, 891, 891, 2559, + 881, 865, 866, 867, 882, 870, 884, 890, 872, 892, + 894, 873, 895, 874, 880, 896, 897, 898, 899, 878, + + 879, 880, 880, 880, 880, 880, 880, 869, 881, 875, + 900, 877, 882, 901, 884, 890, 903, 892, 894, 904, + 895, 905, 880, 896, 897, 898, 899, 906, 880, 908, + 910, 911, 912, 914, 915, 917, 919, 923, 900, 919, + 932, 901, 933, 935, 903, 936, 937, 904, 2555, 905, + 880, 938, 939, 940, 941, 906, 880, 908, 910, 911, + 942, 943, 944, 945, 946, 923, 947, 948, 932, 949, + 933, 935, 950, 936, 937, 912, 914, 915, 917, 938, + 939, 940, 941, 951, 952, 953, 954, 955, 942, 943, + 944, 945, 946, 956, 947, 948, 957, 949, 953, 953, + + 950, 958, 959, 960, 961, 962, 963, 964, 965, 966, + 967, 951, 952, 953, 954, 955, 968, 969, 970, 975, + 976, 956, 977, 978, 957, 979, 953, 953, 983, 958, + 959, 960, 961, 962, 963, 964, 965, 966, 967, 984, + 986, 988, 980, 2550, 968, 969, 970, 975, 976, 980, + 977, 978, 986, 979, 989, 990, 983, 980, 985, 991, + 992, 993, 980, 994, 995, 996, 997, 984, 998, 988, + 980, 985, 999, 985, 1000, 1002, 1001, 980, 1003, 1004, + 986, 1001, 989, 990, 1005, 980, 985, 991, 992, 993, + 980, 994, 995, 996, 997, 1006, 998, 1007, 1008, 985, + + 999, 985, 1000, 1002, 1001, 1009, 1003, 1004, 1010, 1001, + 1011, 1012, 1005, 1014, 1015, 1016, 1017, 1019, 1020, 1021, + 1022, 1023, 1024, 1006, 1026, 1007, 1008, 1012, 1034, 1025, + 1029, 2548, 1025, 1009, 1025, 1032, 1010, 1025, 1011, 1012, + 1025, 1014, 1015, 1016, 1017, 1019, 1020, 1021, 1022, 1023, + 1024, 1028, 2545, 1036, 1028, 1012, 1028, 1037, 1029, 1028, + 3040, 3040, 1028, 1032, 1040, 2511, 1041, 1026, 1043, 2110, + 1045, 1034, 1038, 1038, 1038, 1038, 1038, 1038, 1050, 1046, + 1025, 1036, 1046, 1051, 2110, 1037, 1039, 1039, 1039, 1039, + 1039, 1039, 1040, 1038, 1041, 1053, 1043, 1038, 1045, 1038, + + 1054, 1055, 1028, 1056, 1057, 1058, 1050, 1059, 1060, 1061, + 1062, 1051, 1052, 1052, 1052, 1052, 1052, 1052, 1063, 1064, + 1065, 1038, 1066, 1053, 1067, 1038, 1069, 1038, 1054, 1055, + 1072, 1056, 1057, 1058, 1082, 1059, 1060, 1061, 1062, 1083, + 1086, 2477, 1087, 1088, 1089, 2464, 1063, 1064, 1065, 1090, + 1066, 1091, 1067, 1092, 1093, 1094, 1090, 1095, 1096, 1097, + 1098, 1099, 1082, 1100, 1101, 1102, 1103, 1083, 1086, 1069, + 1087, 1088, 1089, 1072, 1104, 1105, 1106, 1090, 1107, 1091, + 1108, 1092, 1093, 1094, 1090, 1095, 1096, 1097, 1098, 1099, + 1109, 1100, 1101, 1102, 1103, 1110, 1111, 1112, 1113, 1114, + + 1115, 2462, 1104, 1105, 1106, 1116, 1107, 1118, 1108, 1119, + 1120, 1121, 1122, 1123, 1124, 1125, 1126, 1127, 1109, 1129, + 1130, 1131, 1132, 1110, 1111, 1112, 1133, 1114, 1115, 1113, + 1134, 1139, 1140, 1116, 1141, 1118, 1143, 1119, 1120, 1121, + 1122, 1123, 1124, 1125, 1126, 1127, 1135, 1129, 1130, 1131, + 1132, 1145, 1146, 1150, 1133, 1151, 1152, 1135, 1134, 1139, + 1140, 1153, 1141, 1154, 1143, 1155, 1156, 1157, 2433, 1256, + 1158, 1159, 1256, 1160, 1135, 1161, 1162, 2429, 1163, 1145, + 1146, 1150, 1164, 1151, 1152, 1135, 1136, 1136, 1165, 1153, + 1136, 1154, 1136, 1155, 1156, 1157, 1136, 1136, 1158, 1159, + + 1136, 1160, 1166, 1161, 1162, 1136, 1163, 1167, 1168, 1169, + 1164, 1170, 1172, 1173, 1136, 1136, 1165, 1175, 1136, 1176, + 1136, 1177, 1169, 1179, 1136, 1136, 1180, 1186, 1136, 1178, + 1166, 1184, 1190, 1136, 1191, 1167, 1168, 1169, 1192, 1170, + 1172, 1173, 1178, 1194, 1195, 1175, 1551, 1176, 2423, 1177, + 1169, 1179, 1274, 1182, 1180, 1186, 1182, 1178, 1182, 1196, + 1197, 1182, 1191, 1198, 1182, 1198, 1192, 1209, 1211, 1193, + 1178, 1194, 1195, 1200, 1184, 1190, 1193, 1193, 1193, 1193, + 1193, 1193, 1212, 1274, 2402, 1200, 1551, 1196, 1197, 1202, + 1200, 1198, 1202, 1198, 1202, 1209, 1211, 1202, 1213, 1226, + + 1202, 1200, 1516, 1205, 1182, 1516, 1205, 1214, 1205, 1215, + 1212, 1205, 1202, 1200, 1205, 1216, 1207, 1218, 1200, 1207, + 1219, 1207, 1222, 1223, 1207, 1224, 1213, 1207, 1210, 1210, + 1210, 1210, 1210, 1210, 1220, 1214, 1221, 1215, 1225, 1227, + 1202, 1239, 1226, 1216, 1220, 1218, 1240, 1221, 1219, 1243, + 1222, 1223, 1244, 1224, 1205, 1220, 1221, 1246, 1247, 1248, + 1249, 1250, 1220, 1251, 1221, 1252, 1225, 1207, 1253, 1239, + 1254, 1255, 1220, 1257, 1240, 1221, 1258, 1243, 1259, 1260, + 1244, 1261, 1227, 1220, 1221, 1246, 1247, 1248, 1249, 1250, + 1262, 1251, 1263, 1252, 1264, 1266, 1253, 1267, 1254, 1255, + + 1269, 1257, 1270, 1268, 1258, 1268, 1259, 1260, 1272, 1261, + 1268, 1273, 1276, 1277, 1278, 1279, 1280, 1281, 1262, 1282, + 1263, 1283, 1264, 1266, 1284, 1267, 1286, 1288, 1269, 1279, + 1270, 1268, 1289, 1268, 1290, 1291, 1272, 1292, 1268, 1273, + 1276, 1277, 1278, 1279, 1280, 1281, 1293, 1282, 1294, 1283, + 1295, 1296, 1284, 1297, 1286, 1288, 1298, 1299, 1300, 1301, + 1289, 1302, 1290, 1291, 1295, 1292, 1303, 1303, 1304, 1305, + 1306, 1308, 1303, 1313, 1293, 1315, 1294, 1316, 1295, 1296, + 1303, 1297, 1317, 1303, 1298, 1299, 1300, 1301, 1318, 1302, + 1320, 1321, 1295, 1322, 1303, 1303, 1304, 1305, 1306, 1308, + + 1303, 1313, 1323, 1315, 1324, 1316, 1325, 1327, 1303, 1332, + 1317, 1303, 1330, 1331, 1333, 1334, 1318, 1336, 1320, 1321, + 1328, 1322, 1328, 1337, 2400, 1338, 1328, 1339, 1340, 1335, + 1323, 1341, 1324, 1344, 1325, 1327, 1335, 1328, 1345, 1328, + 1330, 1331, 1333, 1334, 1348, 1336, 1349, 1350, 1328, 1351, + 1328, 1337, 1332, 1338, 1328, 1339, 1340, 1335, 1342, 1341, + 1353, 1342, 1354, 1342, 1335, 1328, 1342, 1328, 1355, 1342, + 1355, 1356, 1357, 1358, 1359, 1350, 1344, 1351, 1360, 1361, + 1362, 1345, 1365, 1366, 1382, 1372, 2398, 1348, 1353, 1349, + 1354, 2393, 1712, 1376, 1383, 1366, 1355, 1365, 1355, 1356, + + 1357, 1358, 1384, 1385, 1712, 2384, 1360, 1361, 1362, 1342, + 1364, 1367, 1382, 1364, 1367, 1364, 1367, 1739, 1364, 1367, + 1359, 1364, 1383, 1366, 1368, 1365, 1386, 1368, 1372, 1368, + 1384, 1385, 1368, 1364, 1367, 1368, 1376, 1369, 1371, 1387, + 1369, 1371, 1369, 1371, 1388, 1369, 1371, 1368, 1369, 1371, + 1405, 1388, 1389, 1503, 1386, 1390, 1757, 1739, 1391, 1757, + 1369, 1364, 1367, 1374, 1392, 2376, 1374, 1387, 1374, 1393, + 1394, 1374, 1388, 1375, 1374, 1368, 1375, 1396, 1375, 1388, + 1389, 1375, 1378, 1390, 1375, 1378, 1391, 1378, 1369, 1371, + 1378, 1395, 1392, 1378, 1397, 1398, 1503, 1393, 1394, 1411, + + 1405, 1413, 1395, 1414, 1415, 1396, 1407, 1407, 1407, 1407, + 1409, 1409, 1409, 1409, 1374, 1941, 2367, 2360, 1941, 1395, + 1416, 1417, 1397, 1398, 1375, 2319, 2305, 1411, 1418, 1413, + 1395, 1414, 1415, 1378, 1379, 1419, 2272, 1420, 1422, 1423, + 1424, 1379, 1379, 1379, 1379, 1379, 1379, 1425, 1416, 1417, + 1425, 1379, 1425, 1379, 1379, 1379, 1418, 1407, 1426, 1379, + 1427, 1409, 1428, 1419, 1379, 1420, 1422, 1423, 1424, 1429, + 1430, 1431, 1432, 1379, 1433, 1435, 1436, 1437, 1438, 1379, + 1439, 1379, 1379, 1379, 1440, 1441, 1426, 1379, 1427, 1442, + 1428, 1445, 1379, 1446, 1447, 1448, 1449, 1429, 1430, 1431, + + 1432, 1379, 1433, 1435, 1436, 1437, 1438, 1450, 1439, 1451, + 1452, 1453, 1440, 1441, 1454, 1455, 2255, 1442, 1457, 1445, + 1458, 1446, 1447, 1448, 1449, 1459, 1460, 2254, 1461, 1462, + 1463, 1464, 2238, 1465, 2237, 1450, 1466, 1451, 1452, 1453, + 1467, 1468, 1454, 1455, 1456, 1456, 1457, 1456, 1458, 1456, + 1456, 1469, 1470, 1459, 1460, 1456, 1461, 1462, 1463, 1464, + 1456, 1465, 1456, 1471, 1466, 1472, 1473, 1474, 1467, 1468, + 1475, 1476, 1456, 1456, 1477, 1456, 1478, 1456, 1456, 1469, + 1470, 1479, 1480, 1456, 1481, 1484, 1485, 1486, 1456, 1487, + 1456, 1471, 1492, 1472, 1473, 1474, 1493, 1494, 1475, 1476, + + 1495, 1496, 1477, 1497, 1478, 1498, 1499, 1504, 1505, 1479, + 1480, 1506, 1481, 1484, 1485, 1486, 1500, 1487, 1500, 1507, + 1492, 1508, 1533, 1518, 1493, 1494, 1509, 1510, 1495, 1496, + 1511, 1497, 1512, 1498, 1499, 1513, 1514, 1515, 1520, 1506, + 1521, 1522, 1523, 1526, 1500, 1527, 1500, 1507, 1528, 1508, + 1504, 1505, 1529, 1535, 1509, 1510, 2228, 2197, 1511, 1530, + 1512, 1531, 1532, 1513, 1514, 1515, 1518, 1536, 1533, 1537, + 1538, 1526, 1538, 1527, 1540, 1547, 1528, 1544, 1545, 1546, + 1529, 1520, 1546, 1521, 1522, 1523, 1540, 1530, 1567, 1531, + 1532, 1568, 1544, 1545, 1546, 1536, 1558, 1537, 1538, 1535, + + 1538, 1541, 1542, 1547, 1541, 1542, 1541, 1542, 1563, 1541, + 1542, 2193, 1541, 1542, 1540, 1569, 1567, 2192, 1856, 1568, + 1544, 1545, 2185, 1548, 1541, 1542, 1548, 1549, 1548, 2184, + 1549, 1548, 1549, 1550, 1548, 1549, 1550, 1552, 1550, 1558, + 1552, 1550, 1552, 1569, 1550, 1552, 1548, 1571, 1552, 1856, + 1549, 1563, 1541, 1542, 1553, 1572, 1550, 1553, 1556, 1553, + 1552, 1556, 1553, 1556, 1752, 1553, 1556, 1570, 1561, 1556, + 1573, 1561, 1570, 1561, 1548, 1571, 1561, 1553, 1549, 1561, + 1575, 2243, 1576, 1572, 1550, 1577, 1578, 1580, 1552, 1566, + 1566, 1566, 1566, 1566, 1566, 1570, 2243, 2166, 1573, 1581, + + 1570, 1582, 2097, 1583, 1752, 1553, 2086, 1584, 1575, 1556, + 1576, 1585, 1586, 1577, 1578, 1580, 1587, 1588, 1589, 1561, + 1565, 1565, 1565, 1565, 1565, 1565, 1590, 1581, 1591, 1582, + 1565, 1583, 1565, 1565, 1565, 1584, 1592, 1593, 1565, 1585, + 1586, 1602, 1602, 1565, 1587, 1588, 1589, 1600, 1600, 1600, + 1600, 1605, 1565, 1607, 1590, 1608, 1591, 1609, 1565, 1610, + 1565, 1565, 1565, 1616, 1592, 1593, 1565, 1603, 1603, 1603, + 1603, 1565, 1604, 1604, 1612, 1613, 1614, 1617, 1618, 1605, + 1565, 1607, 1621, 1608, 1622, 1609, 1623, 1610, 1624, 1625, + 2082, 1602, 1626, 1627, 1937, 2047, 1616, 1628, 1600, 1630, + + 1631, 1632, 1612, 1613, 1614, 1617, 1618, 1633, 1634, 2046, + 1621, 1635, 1622, 1636, 1623, 1637, 1624, 1625, 1603, 1638, + 1626, 1627, 1604, 1611, 1616, 1628, 1639, 1630, 1631, 1632, + 1642, 1643, 2026, 1644, 1937, 1633, 1634, 1611, 1645, 1635, + 1646, 1636, 1647, 1637, 1648, 1649, 1650, 1638, 1611, 1651, + 1611, 1647, 1652, 1653, 1639, 1654, 1655, 1656, 1642, 1643, + 1611, 1644, 1611, 1611, 1611, 1657, 1645, 1658, 1646, 1663, + 1647, 1664, 1648, 1649, 1650, 1665, 1611, 1651, 1611, 1666, + 1652, 1653, 1667, 1654, 1655, 1656, 1668, 1669, 1611, 1670, + 1611, 1611, 1611, 1657, 1671, 1658, 1672, 1663, 1674, 1664, + + 1675, 1676, 1677, 1665, 1678, 1682, 1683, 1666, 1685, 1687, + 1667, 1688, 1690, 1691, 1668, 1669, 1692, 1670, 1693, 1694, + 1695, 1696, 1671, 1699, 1672, 1701, 1674, 1703, 1675, 1676, + 1677, 1704, 1678, 1682, 1683, 1705, 1685, 1687, 1717, 1688, + 1690, 1691, 1706, 1707, 1692, 1708, 1693, 1694, 1695, 1696, + 1709, 1710, 1711, 1713, 1721, 1703, 1713, 1723, 1713, 1704, + 1724, 1713, 1725, 1705, 1713, 1726, 1699, 1727, 1701, 2018, + 1706, 1707, 1738, 1708, 1728, 1729, 1713, 1730, 1709, 1710, + 1711, 1717, 1734, 1735, 1736, 1990, 1740, 1738, 1724, 1740, + 1725, 1740, 2350, 1726, 1740, 1727, 1762, 1721, 1952, 1746, + + 1723, 1952, 1728, 1729, 1713, 1730, 1763, 1987, 1978, 1740, + 1734, 1735, 1736, 1737, 1746, 1738, 1737, 1741, 1737, 1747, + 1741, 1737, 1741, 2350, 1737, 1741, 1748, 1742, 1741, 1749, + 1742, 1769, 1742, 1766, 1747, 1742, 1737, 1740, 1742, 1762, + 1741, 1748, 1746, 1743, 1749, 1770, 1743, 1767, 1743, 1763, + 1742, 1743, 1751, 2250, 1743, 1751, 2250, 1751, 1899, 1769, + 1751, 2857, 1747, 1751, 1737, 1976, 1743, 1771, 1741, 1748, + 1773, 1774, 1749, 1770, 1753, 1751, 1766, 1753, 1742, 1753, + 2264, 1754, 1753, 2264, 1754, 1753, 1754, 2496, 1755, 1754, + 1767, 1755, 1754, 1755, 1743, 1771, 1755, 1753, 1773, 1774, + + 1947, 1899, 2496, 1751, 1754, 1756, 2089, 2857, 1756, 2089, + 1756, 1755, 1758, 1756, 1939, 1758, 1928, 1758, 1775, 1759, + 1758, 2089, 1759, 1758, 1759, 1753, 1760, 1759, 1756, 1760, + 1759, 1760, 1754, 1764, 1760, 1758, 1764, 1760, 1764, 1755, + 1768, 1764, 1759, 1776, 1764, 1777, 1775, 1768, 1768, 1768, + 1768, 1768, 1768, 1772, 1778, 1779, 1756, 1780, 1772, 1781, + 1782, 1783, 1785, 1758, 1788, 1790, 1791, 1792, 1794, 1795, + 1759, 1776, 1796, 1777, 1797, 1798, 1799, 1760, 1800, 1801, + 1802, 1772, 1778, 1779, 1764, 1780, 1772, 1781, 1782, 1783, + 1785, 1809, 1788, 1790, 1791, 1792, 1794, 1795, 1806, 1806, + + 1796, 1806, 1797, 1798, 1799, 1810, 1800, 1801, 1802, 1808, + 1808, 1812, 1808, 1813, 1816, 1817, 1818, 1819, 1820, 1809, + 1821, 1924, 1822, 1823, 1824, 1827, 1828, 1829, 1831, 1832, + 1833, 1834, 1922, 1810, 1835, 1836, 1921, 1837, 1838, 1812, + 1839, 1813, 1816, 1817, 1818, 1819, 1820, 1919, 1821, 1806, + 1822, 1823, 1824, 1827, 1828, 1829, 1831, 1832, 1833, 1834, + 1808, 1840, 1835, 1836, 1806, 1837, 1838, 1842, 1839, 1843, + 1844, 1845, 1846, 1847, 1848, 1808, 1851, 1852, 1854, 1857, + 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1840, + 1869, 1870, 1871, 1873, 1874, 1842, 1875, 1843, 1844, 1845, + + 1846, 1847, 1848, 1877, 1851, 1852, 1854, 1857, 1859, 1860, + 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1878, 1869, 1870, + 1871, 1873, 1874, 1879, 1875, 1880, 1881, 1882, 1883, 1884, + 1885, 1877, 1886, 1887, 1889, 1890, 1891, 1893, 1894, 1895, + 1901, 1902, 1903, 1904, 1905, 1878, 1906, 1907, 1908, 1909, + 1911, 1879, 1912, 1880, 1881, 1882, 1883, 1884, 1885, 1920, + 1886, 1887, 1889, 1890, 1891, 1893, 1894, 1895, 1915, 1923, + 1903, 1904, 1905, 1914, 1906, 1907, 1908, 1909, 1911, 1925, + 1915, 1926, 1913, 1901, 1902, 1913, 1916, 1913, 1914, 1916, + 1913, 1916, 1917, 1913, 1916, 1917, 1918, 1917, 1927, 1918, + + 1917, 1918, 1920, 1917, 1918, 1913, 1929, 1918, 1915, 1916, + 1930, 1931, 1923, 1932, 1933, 1917, 1914, 1934, 1935, 1918, + 1936, 1940, 1925, 1942, 1926, 1900, 1927, 2378, 1956, 1950, + 2378, 1957, 2389, 1913, 1929, 2389, 1940, 1916, 1930, 1931, + 1898, 1932, 1933, 1917, 1897, 1934, 1935, 1918, 1936, 1938, + 1943, 1942, 1938, 1943, 1938, 1943, 1956, 1938, 1943, 1957, + 1938, 1943, 1944, 1945, 1940, 1944, 1945, 1944, 1945, 1950, + 1944, 1945, 1938, 1943, 1945, 1948, 1946, 1949, 1958, 1946, + 1959, 1946, 1960, 1961, 1946, 1944, 1945, 1946, 1962, 1963, + 1948, 1964, 1949, 2591, 1965, 1966, 2591, 1896, 1872, 1946, + + 1938, 1943, 2793, 1967, 1855, 2793, 1958, 1968, 1959, 1853, + 1960, 1961, 1969, 1944, 1945, 1970, 1962, 1963, 1948, 1964, + 1949, 1951, 1965, 1966, 1951, 1953, 1951, 1946, 1953, 1951, + 1953, 1967, 1951, 1953, 1954, 1968, 1953, 1954, 1971, 1954, + 1969, 1972, 1954, 1970, 1951, 1954, 1973, 1974, 1953, 1975, + 1977, 1979, 1980, 1981, 1982, 1983, 1984, 1954, 1985, 1986, + 1988, 1988, 1993, 1988, 1991, 1991, 1971, 1991, 1994, 1972, + 1995, 1998, 1951, 1999, 1973, 1974, 1953, 1975, 1977, 1979, + 1980, 1981, 1982, 1983, 1984, 1954, 1985, 1986, 2000, 2001, + 1993, 2002, 2003, 2004, 2005, 2006, 1994, 2008, 1995, 1998, + + 2009, 1999, 1841, 2010, 2012, 2013, 2014, 2015, 2017, 2019, + 2020, 1988, 2021, 2023, 2023, 1991, 2000, 2001, 2024, 2002, + 2003, 2004, 2005, 2006, 2025, 2008, 1988, 2027, 2009, 2028, + 1991, 2010, 2012, 2013, 2014, 2015, 2017, 2019, 2020, 2029, + 2021, 2023, 2023, 2030, 2031, 2032, 2024, 2033, 2034, 2036, + 2037, 2038, 2025, 2039, 2040, 2027, 2041, 2028, 2042, 2043, + 2044, 2045, 2048, 2049, 2050, 2051, 2052, 2029, 2053, 2054, + 2055, 2030, 2031, 2032, 2056, 2033, 2034, 2036, 2037, 2038, + 2058, 2039, 2040, 2059, 2041, 2060, 2042, 2043, 2044, 2045, + 2048, 2049, 2050, 2051, 2052, 2061, 2053, 2054, 2055, 2062, + + 2063, 2065, 2056, 2066, 2067, 2069, 2070, 2071, 2058, 2072, + 2073, 2059, 2075, 2060, 2076, 2077, 2078, 2079, 2080, 2090, + 2100, 2094, 2087, 2061, 2083, 1830, 2088, 2062, 2063, 2065, + 1815, 2066, 2067, 2069, 2070, 2071, 2083, 2087, 1807, 1805, + 2075, 2088, 2076, 2077, 2078, 2079, 2080, 2090, 2100, 2879, + 2098, 2084, 2072, 2073, 2084, 2085, 2084, 1804, 2085, 2084, + 2085, 2094, 2084, 2085, 2083, 2087, 2085, 2092, 2091, 2088, + 2092, 2091, 2092, 2091, 2084, 2092, 2091, 2093, 2085, 2091, + 2093, 2095, 2093, 2099, 2095, 2093, 2095, 1803, 2093, 2095, + 2092, 2091, 2095, 2098, 2101, 2879, 2102, 2104, 1793, 2105, + + 2093, 2106, 2084, 2107, 2095, 2663, 2085, 2663, 1765, 1761, + 1745, 2829, 2096, 2117, 2829, 2096, 2829, 2096, 2092, 2091, + 2096, 2881, 2101, 2096, 2102, 2104, 2099, 2105, 2093, 2106, + 2109, 2107, 2095, 2108, 2111, 2096, 2108, 2111, 2108, 2111, + 2120, 2108, 2111, 2112, 2108, 2109, 2112, 2113, 2112, 2114, + 2113, 2112, 2113, 2117, 2121, 2113, 2108, 2111, 2113, 2122, + 1744, 2123, 2124, 2096, 2114, 1732, 2112, 2881, 2120, 1731, + 2113, 1722, 2115, 2109, 2663, 2115, 1720, 2115, 1719, 2125, + 2115, 1718, 2121, 2115, 2108, 2111, 2126, 2122, 2116, 2123, + 2124, 2116, 2114, 2116, 2112, 2115, 2116, 2118, 2113, 2116, + + 2118, 2119, 2118, 2127, 2119, 2118, 2119, 2125, 2118, 2119, + 2128, 2116, 2119, 2129, 2126, 2130, 2131, 2132, 2134, 2135, + 2118, 2136, 2137, 2115, 2119, 2138, 2139, 2140, 2141, 2142, + 2143, 2127, 2145, 2146, 2147, 2148, 2149, 2150, 2128, 2116, + 2152, 2129, 2155, 2130, 2131, 2132, 2134, 2135, 2118, 2136, + 2137, 2156, 2119, 2138, 2139, 2140, 2141, 2142, 2143, 2157, + 2145, 2146, 2147, 2148, 2149, 2150, 2158, 2159, 2152, 2160, + 2155, 2161, 2162, 2163, 2164, 2165, 2167, 1716, 2168, 2156, + 2169, 2170, 2171, 2173, 2174, 2175, 2177, 2157, 2169, 2178, + 2179, 2169, 2180, 2169, 2158, 2159, 2181, 2160, 2183, 2161, + + 2162, 2163, 2164, 2165, 2167, 2168, 2186, 2187, 2169, 2170, + 2171, 2173, 2174, 2175, 2177, 2188, 2169, 2178, 2179, 2169, + 2180, 2169, 2189, 2190, 2181, 2191, 2183, 2194, 2195, 2196, + 2198, 2199, 2200, 2168, 2186, 2187, 2201, 2202, 2203, 2204, + 2205, 2194, 2206, 2188, 2207, 2209, 2210, 2211, 2212, 2213, + 2189, 2190, 2214, 2191, 2215, 2194, 2195, 2196, 2198, 2199, + 2200, 2216, 2217, 2218, 2201, 2202, 2203, 2204, 2205, 2219, + 2206, 2220, 2207, 2209, 2210, 2211, 2212, 2213, 2221, 2222, + 2214, 2223, 2215, 2224, 2225, 2226, 2227, 2229, 2231, 2216, + 2217, 2218, 2232, 2230, 1714, 2239, 2230, 2219, 2230, 2220, + + 2256, 2230, 2258, 2231, 2230, 2229, 2221, 2222, 2259, 2253, + 2239, 2224, 2225, 2226, 2227, 2229, 2230, 2233, 2234, 2245, + 2233, 2234, 2233, 2234, 2223, 2233, 2234, 2260, 2256, 2234, + 2258, 2231, 2232, 2229, 2235, 2240, 2259, 2235, 2239, 2235, + 2233, 2234, 2235, 2236, 2230, 2235, 2236, 2241, 2236, 2242, + 2240, 2236, 2253, 1700, 2236, 2260, 1698, 2235, 2267, 2245, + 2268, 2269, 2241, 2270, 2242, 1697, 2236, 1673, 2233, 2234, + 1641, 1640, 2244, 1599, 1598, 2244, 2246, 2244, 2240, 2246, + 2244, 2246, 2352, 2244, 2246, 2235, 2267, 2246, 2268, 2269, + 2241, 2270, 2242, 2247, 2236, 2244, 2247, 2248, 2247, 2246, + + 2248, 2247, 2248, 2249, 2247, 2248, 2249, 2251, 2249, 2262, + 2251, 2249, 2251, 2352, 2252, 2251, 2247, 2252, 2251, 2252, + 2248, 1597, 2252, 2244, 2262, 2252, 2249, 2246, 2261, 2271, + 2251, 2261, 2273, 2261, 1596, 1595, 2261, 2252, 2263, 2261, + 1594, 2263, 1564, 2263, 2247, 2274, 2263, 2276, 2248, 2263, + 2278, 2261, 2262, 2280, 2249, 2281, 2282, 2271, 2251, 2265, + 2273, 2263, 2265, 2266, 2265, 2252, 2266, 2265, 2266, 2283, + 2265, 2266, 2284, 2274, 2266, 2276, 2285, 2286, 2278, 2261, + 2287, 2280, 2265, 2281, 2282, 2288, 2266, 2289, 2290, 2263, + 2291, 2295, 2296, 2297, 2298, 2299, 2300, 2283, 2301, 2303, + + 2284, 2304, 2306, 2307, 2285, 2286, 2309, 2311, 2287, 2312, + 2265, 2313, 2314, 2288, 2266, 2289, 2290, 2315, 2291, 2295, + 2296, 2297, 2298, 2299, 2300, 2317, 2301, 2303, 2320, 2304, + 2306, 2307, 2316, 2321, 2309, 2311, 2322, 2312, 2323, 2313, + 2314, 2324, 2325, 2316, 2316, 2315, 2326, 2328, 2330, 2331, + 2332, 2333, 2334, 2317, 2335, 2336, 2320, 2337, 2338, 2339, + 2316, 2321, 2340, 2341, 2322, 2343, 2323, 2344, 2345, 2324, + 2325, 2316, 2316, 2346, 2326, 2328, 2330, 2331, 2332, 2333, + 2334, 2347, 2335, 2336, 2348, 2337, 2338, 2339, 2349, 2351, + 2340, 2341, 2353, 2343, 2355, 2344, 2345, 2356, 2357, 2359, + + 2361, 2346, 2362, 2363, 2365, 2366, 2368, 2369, 2370, 2347, + 2372, 2373, 2348, 2374, 2377, 2379, 2349, 2351, 1562, 2387, + 2353, 1560, 2355, 2370, 2478, 2356, 2357, 2359, 2361, 2377, + 2362, 2363, 2365, 2366, 2368, 2369, 2370, 2375, 2372, 2373, + 2375, 2380, 2375, 2379, 2380, 2375, 2380, 2394, 2375, 2380, + 2395, 2370, 2380, 2374, 2385, 2478, 2396, 2377, 2381, 2387, + 2375, 2381, 2382, 2381, 2380, 2382, 2381, 2382, 2386, 2385, + 2382, 2383, 2399, 2382, 2383, 2394, 2383, 2401, 2395, 2383, + 2403, 2381, 2383, 2386, 2396, 2382, 2404, 1559, 2375, 2405, + 1557, 2406, 2380, 2388, 2383, 1555, 2388, 2385, 2388, 1554, + + 2399, 2388, 1543, 1539, 2388, 2401, 2408, 2390, 2403, 2381, + 2390, 2386, 2390, 2382, 2404, 2390, 2388, 2405, 2390, 2406, + 2391, 2409, 2383, 2391, 2397, 2391, 2410, 2397, 2391, 2397, + 2390, 2391, 2397, 2411, 2408, 2397, 2412, 2413, 2415, 2416, + 2417, 2418, 2420, 2391, 2388, 2421, 2422, 2397, 2424, 2409, + 2425, 2426, 2427, 1534, 2410, 1519, 1483, 1421, 2390, 2432, + 2434, 2411, 2435, 2436, 2412, 2413, 2415, 2416, 2417, 2418, + 2420, 2391, 2437, 2421, 2422, 2397, 2424, 2438, 2425, 2426, + 2427, 2428, 2428, 2428, 2428, 2428, 2428, 2432, 2434, 2439, + 2435, 2436, 2440, 2441, 2442, 2444, 2445, 2446, 2447, 2448, + + 2437, 2449, 2450, 2451, 2452, 2438, 2453, 2455, 2456, 2458, + 2459, 2460, 2461, 2463, 2465, 2466, 2467, 2439, 2468, 2470, + 2440, 2441, 2442, 2444, 2445, 2446, 2447, 2448, 2472, 2449, + 2450, 2451, 2452, 2475, 2453, 2455, 2456, 2458, 2459, 2460, + 2461, 2463, 2465, 2466, 2467, 2479, 2468, 2470, 2481, 2483, + 2484, 2485, 2486, 2488, 2489, 2490, 2472, 2491, 2492, 2493, + 2495, 2475, 2503, 1412, 2901, 1408, 2497, 2919, 2933, 2497, + 2506, 2497, 1406, 2479, 2497, 2495, 2481, 2483, 2484, 2485, + 2486, 2488, 2489, 2490, 1400, 2491, 2492, 2493, 2494, 2497, + 2500, 2494, 2498, 2494, 2507, 2498, 2494, 2498, 2506, 2494, + + 2498, 2499, 2503, 2495, 2499, 2500, 2499, 1399, 2508, 2499, + 2901, 2494, 2499, 2919, 2933, 2498, 2509, 2497, 2501, 2510, + 1380, 2501, 2507, 2501, 2499, 2512, 2501, 2502, 1377, 2501, + 2502, 1373, 2502, 2500, 2945, 2502, 2508, 2504, 2502, 2494, + 2504, 2501, 2504, 2498, 2509, 2504, 1370, 2510, 2504, 2513, + 2502, 2505, 2499, 2512, 2505, 2514, 2505, 2516, 2517, 2505, + 2504, 2518, 2505, 2519, 2522, 2523, 2524, 2525, 2526, 2501, + 2527, 2529, 2530, 2531, 2505, 1363, 1347, 2513, 2502, 1346, + 2945, 2532, 1343, 2514, 1314, 2516, 2517, 2535, 2504, 2518, + 1285, 2519, 2522, 2523, 2524, 2525, 2526, 1265, 2527, 2529, + + 2530, 2531, 2505, 2528, 2528, 2528, 2528, 2528, 2528, 2532, + 2528, 2528, 2528, 2528, 2533, 2533, 2533, 2533, 2533, 2533, + 2534, 2534, 2534, 2534, 2534, 2534, 2535, 2537, 2528, 2538, + 2539, 2540, 2541, 2542, 2543, 2544, 2547, 2549, 2551, 2552, + 2553, 2554, 2556, 2557, 2558, 2560, 2561, 2562, 2563, 2565, + 2566, 2567, 2570, 2571, 2535, 2537, 2572, 2538, 2539, 2540, + 2541, 2542, 2543, 2544, 2547, 2549, 2551, 2552, 2553, 2554, + 2556, 2557, 2558, 2560, 2561, 2562, 2563, 2565, 2566, 2567, + 2570, 2571, 2573, 2575, 2572, 2577, 2578, 2579, 2580, 2581, + 2573, 2583, 2584, 2585, 2586, 2587, 1238, 1237, 1236, 1235, + + 2594, 2588, 1234, 1233, 2588, 2595, 2588, 1232, 1208, 2588, + 2573, 2575, 2588, 2577, 2578, 2579, 2580, 2581, 2573, 2583, + 2584, 2585, 2586, 2587, 2588, 2589, 2590, 2592, 2594, 2590, + 2592, 2590, 2592, 2595, 2590, 2592, 2593, 2590, 2592, 2593, + 2589, 2593, 2596, 2597, 2593, 2598, 2601, 2593, 2602, 2590, + 2592, 2603, 2588, 2604, 2605, 2606, 2607, 2609, 2611, 2593, + 2617, 2617, 2617, 2617, 2617, 2617, 2613, 1203, 2589, 1199, + 2596, 2597, 2614, 2598, 2601, 2615, 2602, 2590, 2592, 2603, + 2616, 2604, 2605, 2606, 2607, 2609, 2611, 2593, 2612, 2612, + 2612, 2612, 2612, 2612, 2613, 2612, 2612, 2612, 2612, 2619, + + 2614, 2621, 2622, 2615, 2623, 2624, 2625, 2626, 2616, 2627, + 2628, 2630, 2635, 2612, 2618, 2618, 2618, 2618, 2618, 2618, + 2633, 2633, 2633, 2633, 2633, 2633, 2637, 2619, 2639, 2621, + 2622, 2642, 2623, 2624, 2625, 2626, 2643, 2627, 2628, 2630, + 2635, 2645, 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, + 2654, 2655, 2647, 2656, 2637, 2657, 2639, 2658, 2659, 2642, + 2661, 2662, 2664, 2665, 2643, 2666, 2668, 1189, 2670, 2645, + 2646, 2647, 2648, 2649, 2650, 2651, 2652, 2653, 2654, 2655, + 2647, 2656, 2671, 2657, 2672, 2658, 2659, 1188, 2661, 2662, + 2664, 2665, 2669, 2666, 2668, 2669, 2670, 2669, 2674, 2676, + + 2669, 2680, 2682, 2669, 2683, 2683, 2683, 2683, 2683, 2683, + 2671, 2685, 2672, 2686, 2687, 2669, 2688, 2689, 2689, 2689, + 2689, 2689, 2689, 2690, 2691, 2692, 2674, 2676, 2693, 2680, + 2682, 2695, 2694, 2696, 2697, 2698, 2700, 1185, 1183, 2685, + 1181, 2686, 2687, 2669, 2688, 2702, 2702, 2702, 2702, 2702, + 2702, 2690, 2691, 2692, 2694, 2704, 2693, 2708, 2709, 2695, + 2711, 2696, 2697, 2698, 2700, 2703, 2703, 2703, 2703, 2703, + 2703, 2712, 2713, 2714, 2715, 2718, 2720, 2721, 2722, 2723, + 2724, 2727, 2694, 2704, 2728, 2708, 2709, 1171, 2711, 1138, + 1128, 2730, 1084, 1080, 1079, 1078, 2731, 2732, 2734, 2712, + + 2713, 2714, 2715, 2718, 2720, 2721, 2722, 2723, 2724, 2727, + 1076, 2735, 2728, 2729, 2729, 2729, 2729, 2729, 2729, 2730, + 2729, 2729, 2729, 2729, 2731, 2732, 2734, 2736, 2737, 2739, + 2740, 2742, 2742, 2742, 2742, 2742, 2742, 2744, 2729, 2735, + 2743, 2743, 2743, 2743, 2743, 2743, 2745, 2747, 2748, 2749, + 2751, 2753, 2754, 2755, 2757, 2736, 2737, 2739, 2740, 2752, + 2752, 2752, 2752, 2752, 2752, 2744, 2756, 2758, 2759, 2759, + 2759, 2759, 2759, 2759, 2745, 2747, 2748, 2749, 2751, 2753, + 2754, 2755, 2757, 2761, 2764, 2765, 2766, 2767, 2756, 2768, + 2769, 2770, 2771, 2772, 2773, 2758, 2774, 2776, 2777, 2777, + + 2777, 2777, 2777, 2777, 2778, 2777, 2777, 2777, 2777, 2779, + 2780, 2761, 2764, 2765, 2766, 2767, 2756, 2768, 2769, 2770, + 2771, 2772, 2773, 2777, 2774, 2776, 2782, 2784, 2785, 2790, + 2794, 2795, 2778, 2796, 1075, 1073, 1071, 2779, 2780, 2789, + 2789, 2789, 2789, 2789, 2789, 2792, 2792, 2792, 2792, 2792, + 2792, 2798, 2799, 2802, 2782, 2784, 2785, 2790, 2794, 2795, + 2803, 2796, 2797, 2797, 2797, 2797, 2797, 2797, 2801, 2801, + 2801, 2801, 2801, 2801, 2804, 2805, 2806, 2807, 2808, 2798, + 2799, 2802, 2809, 2810, 2811, 2812, 2815, 2817, 2803, 2819, + 2821, 2822, 2824, 2826, 2828, 2828, 2828, 2828, 2828, 2828, + + 2830, 2831, 2804, 2805, 2806, 2807, 2808, 2832, 2833, 2834, + 2809, 2810, 2811, 2812, 2815, 2817, 2836, 2819, 2821, 2822, + 2824, 2826, 2835, 2835, 2835, 2835, 2835, 2835, 2830, 2831, + 2837, 2838, 2839, 2840, 2841, 2832, 2833, 2834, 2842, 2843, + 2845, 2846, 2848, 2850, 2836, 2852, 2853, 2855, 2858, 2859, + 2860, 2861, 2862, 2863, 2867, 2868, 2869, 2853, 2837, 2838, + 2839, 2840, 2841, 2870, 2871, 2874, 2842, 2843, 2845, 2846, + 2848, 2850, 2875, 2852, 2853, 2855, 2858, 2859, 2860, 2861, + 2862, 2863, 2867, 2868, 2869, 2853, 2876, 2877, 2878, 2882, + 2884, 2870, 2871, 2874, 2885, 2886, 2887, 2889, 2892, 2893, + + 2875, 2894, 2895, 2898, 2903, 2904, 2906, 2907, 2909, 2910, + 2912, 2913, 2914, 2921, 2876, 2877, 2878, 2882, 2884, 2924, + 2925, 2926, 2885, 2886, 2887, 2889, 2892, 2893, 2915, 2894, + 2895, 2898, 2903, 2904, 2906, 2907, 2909, 2910, 2912, 2913, + 2914, 2921, 2915, 2927, 2928, 2929, 2930, 2924, 2925, 2926, + 2934, 2934, 2934, 2934, 2934, 2934, 2915, 2936, 2936, 2936, + 2936, 2936, 2936, 2937, 2938, 2939, 2941, 2942, 2943, 2947, + 2915, 2927, 2928, 2929, 2930, 2948, 2948, 2948, 2948, 2948, + 2948, 2949, 2949, 2949, 2949, 2949, 2949, 2958, 2951, 2952, + 2955, 2937, 2938, 2939, 2941, 2942, 2943, 2950, 2950, 2950, + + 2950, 2950, 2950, 2960, 2960, 2960, 2960, 2960, 2960, 2962, + 2965, 2966, 2967, 1070, 1068, 2947, 2951, 2952, 2955, 1048, + 1047, 1035, 1033, 1031, 1030, 1027, 982, 981, 974, 973, + 972, 934, 931, 2958, 930, 925, 924, 2962, 922, 2966, + 2967, 921, 916, 913, 893, 889, 888, 887, 885, 883, + 876, 837, 827, 822, 817, 813, 2965, 2970, 2970, 2970, + 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, 2970, + 2970, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, 2971, + 2971, 2971, 2971, 2971, 2971, 2972, 2972, 2972, 2972, 2972, + 2972, 2972, 2972, 2972, 2972, 2972, 2972, 2972, 2972, 2973, + + 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, 2973, + 2973, 2973, 2973, 2974, 2974, 2974, 2974, 2974, 2974, 2974, + 2974, 2974, 2974, 2974, 2974, 2974, 2974, 2975, 2975, 2975, + 2975, 2975, 2975, 2975, 2975, 2975, 2975, 2975, 2975, 2975, + 2975, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, 2976, + 2976, 2976, 2976, 2976, 2976, 2977, 2977, 2977, 2977, 2977, + 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2977, 2978, + 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, 2978, + 2978, 2978, 2978, 2979, 2979, 2979, 2979, 2979, 2979, 2979, + 2979, 2979, 2979, 2979, 2979, 2979, 2979, 2980, 2980, 2980, + + 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, 2980, + 2980, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981, 2981, + 2981, 2981, 2981, 2981, 2981, 2982, 2982, 774, 2982, 2982, + 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2982, 2983, + 2983, 2983, 2983, 2983, 2983, 2983, 2983, 2983, 2983, 2983, + 2983, 2983, 2983, 2984, 773, 2984, 2984, 772, 2984, 2984, + 2984, 2984, 2984, 2984, 2984, 2984, 2985, 771, 2985, 2985, + 770, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, 2985, + 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, 2986, + 2986, 2986, 2986, 2986, 2987, 2987, 2987, 2987, 2987, 2987, + + 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2987, 2988, 2988, + 769, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, 2988, + 2988, 2988, 2989, 2989, 767, 2989, 2989, 2989, 2989, 2989, + 2989, 2989, 2989, 2989, 2989, 2989, 2990, 2990, 766, 2990, + 2990, 760, 2990, 2990, 757, 2990, 2990, 2990, 2990, 2990, + 2991, 753, 2991, 2991, 727, 2991, 2991, 2991, 2991, 2991, + 2991, 2991, 2991, 2991, 2992, 2992, 2992, 2992, 2992, 723, + 2992, 2992, 2992, 2992, 2992, 712, 2992, 2992, 2993, 2993, + 2993, 2993, 2993, 701, 2993, 2993, 2993, 2993, 2993, 667, + 2993, 2993, 2994, 2994, 2994, 2994, 2994, 626, 2994, 2994, + + 2994, 2994, 2994, 625, 2994, 2994, 2995, 2995, 2995, 2995, + 2995, 604, 2995, 2995, 2995, 2995, 2995, 603, 2995, 2995, + 2996, 2996, 2996, 2996, 2996, 2996, 2996, 2996, 594, 2996, + 2996, 2996, 2996, 2996, 2997, 2997, 2997, 2997, 2997, 576, + 2997, 2997, 2997, 2997, 2997, 566, 2997, 2997, 2998, 2998, + 2998, 2998, 2998, 559, 2998, 2998, 2998, 2998, 2998, 520, + 2998, 2998, 2999, 2999, 2999, 2999, 2999, 516, 2999, 2999, + 2999, 2999, 2999, 509, 2999, 2999, 3000, 3000, 3000, 3000, + 3000, 500, 3000, 3000, 3000, 3000, 3000, 496, 3000, 3000, + 3001, 465, 3001, 3001, 464, 462, 3001, 3001, 461, 3001, + + 3001, 3001, 3001, 3001, 3002, 3002, 3002, 3002, 3002, 3002, + 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3002, 3003, 3003, + 3003, 3003, 3003, 3003, 456, 3003, 450, 3003, 3003, 3003, + 3003, 3003, 3004, 3004, 3004, 3004, 3004, 3004, 3004, 3004, + 3004, 3004, 3004, 3004, 3004, 3004, 3005, 3005, 3005, 3005, + 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, 3005, + 3006, 3006, 3006, 3006, 3006, 449, 3006, 3006, 3006, 3006, + 3006, 432, 3006, 3006, 3007, 3007, 3007, 3007, 3007, 421, + 3007, 3007, 3007, 3007, 3007, 410, 3007, 3007, 3008, 3008, + 3008, 3008, 3008, 3008, 3008, 3008, 3008, 401, 3008, 3008, + + 3008, 3008, 3009, 3009, 3009, 3009, 3009, 3009, 3009, 3009, + 3009, 3009, 3009, 3009, 3009, 3009, 3010, 400, 399, 368, + 344, 341, 3010, 3010, 322, 3010, 3010, 3010, 3010, 3010, + 3011, 3011, 3011, 3011, 3011, 317, 3011, 3011, 3011, 3011, + 3011, 311, 3011, 3011, 3012, 3012, 3012, 3012, 3012, 308, + 3012, 3012, 3012, 3012, 3012, 301, 3012, 3012, 3013, 3013, + 3013, 3013, 3013, 3013, 3013, 3013, 3013, 3013, 3013, 3013, + 3013, 3013, 3014, 300, 3014, 3014, 294, 293, 3014, 3014, + 3014, 3014, 3014, 3014, 3014, 3014, 3015, 292, 3015, 3015, + 290, 279, 3015, 3015, 257, 3015, 3015, 3015, 3015, 3015, + + 3016, 244, 3016, 3016, 238, 234, 3016, 3016, 232, 3016, + 3016, 3016, 3016, 3016, 3017, 3017, 3017, 3017, 3017, 208, + 3017, 3017, 3017, 3017, 3017, 204, 3017, 3017, 3018, 3018, + 3018, 3018, 3018, 197, 3018, 3018, 3018, 3018, 3018, 185, + 3018, 3018, 3019, 3019, 3019, 3019, 3019, 3019, 3019, 3019, + 3019, 3019, 3019, 3019, 3019, 3019, 3020, 170, 3020, 156, + 3020, 146, 136, 3020, 3022, 3022, 3022, 3022, 3022, 3022, + 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3022, 3023, 135, + 3023, 3023, 127, 101, 3023, 3023, 3023, 3023, 3023, 3023, + 3023, 3023, 3024, 3024, 3024, 3024, 3024, 3024, 3024, 3024, + + 3024, 3024, 3024, 3024, 3024, 3024, 3025, 3025, 3025, 3025, + 3025, 3025, 3025, 3025, 3025, 3025, 3025, 3025, 3025, 3025, + 3026, 3026, 3026, 3026, 3026, 95, 3026, 3026, 3026, 3026, + 3026, 37, 3026, 3026, 3027, 3027, 3027, 3027, 3027, 30, + 3027, 3027, 3027, 3027, 3027, 29, 3027, 3027, 3028, 3028, + 3028, 3028, 3028, 28, 3028, 3028, 3028, 3028, 3028, 27, + 3028, 3028, 3029, 3029, 3029, 3029, 3029, 26, 3029, 3029, + 3029, 3029, 3029, 25, 3029, 3029, 3030, 3030, 3030, 3030, + 3030, 16, 3030, 3030, 3030, 3030, 3030, 15, 3030, 3030, + 3031, 3031, 3031, 3031, 3031, 0, 3031, 3031, 3031, 3031, + + 3031, 0, 3031, 3031, 3032, 3032, 0, 3032, 3032, 3032, + 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3032, 3033, 3033, + 0, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, 3033, + 3033, 3033, 3034, 3034, 0, 3034, 3034, 3034, 3034, 3034, + 3034, 3034, 3034, 3034, 3034, 3034, 3035, 0, 3035, 0, + 0, 3035, 3036, 0, 3036, 0, 0, 3036, 3037, 3037, + 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, 3037, + 3037, 3037, 3038, 3038, 3038, 3038, 3038, 3038, 3038, 3038, + 3038, 3038, 3038, 3038, 3038, 3038, 3039, 3039, 3039, 3039, + 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, 3039, + + 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, 3041, + 3041, 3041, 3041, 3041, 3042, 3042, 3042, 3042, 3042, 3042, + 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3042, 3043, 3043, + 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, 3043, + 3043, 3043, 3044, 0, 3044, 3044, 0, 0, 3044, 3044, + 3044, 3044, 3044, 3044, 3044, 3044, 3045, 3045, 3045, 3045, + 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, 3045, + 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, 3046, + 3046, 3046, 3046, 3046, 3047, 0, 3047, 3047, 0, 0, + 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3047, 3048, 3048, + + 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, 3048, + 3048, 3048, 3049, 3049, 3049, 3049, 3049, 3049, 3049, 3049, + 3049, 3049, 3049, 3049, 3049, 3049, 3050, 0, 3050, 3050, + 0, 0, 3050, 3050, 3050, 3050, 3050, 3050, 3050, 3050, + 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, 3051, + 3051, 3051, 3051, 3051, 3052, 3052, 3052, 3052, 3052, 3052, + 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3052, 3053, 0, + 3053, 3053, 0, 0, 3053, 3053, 0, 3053, 3053, 3053, + 3053, 3053, 3054, 3054, 3054, 3054, 3054, 3054, 3054, 3054, + 3054, 3054, 3054, 3054, 3054, 3054, 3055, 3055, 3055, 3055, + + 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, 3055, + 3056, 0, 3056, 3056, 0, 0, 3056, 3056, 0, 3056, + 3056, 3056, 3056, 3056, 3057, 3057, 3057, 3057, 3057, 0, + 3057, 3057, 3057, 3057, 3057, 0, 3057, 3057, 3058, 3058, + 3058, 3058, 3058, 0, 3058, 3058, 3058, 3058, 3058, 0, + 3058, 3058, 3059, 3059, 3059, 3059, 3059, 0, 3059, 3059, + 3059, 3059, 3059, 0, 3059, 3059, 3060, 3060, 3060, 3060, + 3060, 0, 3060, 3060, 3060, 3060, 3060, 0, 3060, 3060, + 3061, 3061, 3061, 3061, 3061, 0, 3061, 3061, 3061, 3061, + 3061, 0, 3061, 3061, 3062, 3062, 3062, 3062, 3062, 0, + + 3062, 3062, 3062, 3062, 3062, 0, 3062, 3062, 3063, 3063, + 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, 3063, + 3063, 3063, 3064, 3064, 0, 3064, 3064, 3064, 3064, 3064, + 3064, 3064, 3064, 3064, 3064, 3064, 3065, 3065, 0, 3065, + 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, 3065, + 3066, 0, 3066, 0, 3066, 0, 0, 3066, 3067, 3067, + 0, 0, 3067, 3067, 3067, 3067, 0, 3067, 3067, 3067, + 3067, 3067, 3068, 0, 3068, 0, 0, 3068, 3069, 3069, + 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, 3069, + 3069, 3069, 3070, 3070, 3070, 3070, 3070, 3070, 3070, 3070, + + 3070, 3070, 3070, 3070, 3070, 3070, 3071, 0, 3071, 3071, + 0, 0, 3071, 3071, 3071, 3071, 3071, 3071, 3071, 3071, + 3072, 3072, 3072, 3072, 3072, 0, 3072, 3072, 0, 3072, + 3072, 3072, 3072, 3072, 3073, 3073, 3073, 3073, 3073, 3073, + 3073, 3073, 3073, 3073, 3073, 3073, 3073, 3073, 3074, 3074, + 3074, 3074, 3074, 3074, 3074, 3074, 3074, 3074, 3074, 3074, + 3074, 3074, 3075, 3075, 3075, 3075, 3075, 3075, 3075, 3075, + 3075, 3075, 3075, 3075, 3075, 3075, 3076, 3076, 3076, 3076, + 3076, 3076, 3076, 3076, 3076, 3076, 3076, 3076, 3076, 3076, + 3077, 0, 3077, 3077, 0, 0, 3077, 3077, 3077, 3077, + + 3077, 3077, 3077, 3077, 3078, 0, 3078, 3078, 0, 0, + 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3078, 3079, 3079, + 3079, 3079, 3079, 3079, 3079, 3079, 3079, 3079, 3079, 3079, + 3079, 3079, 3080, 3080, 3080, 3080, 3080, 3080, 3080, 3080, + 3080, 3080, 3080, 3080, 3080, 3080, 3081, 3081, 3081, 3081, + 3081, 3081, 3081, 3081, 3081, 3081, 3081, 3081, 3081, 3081, + 3082, 3082, 3082, 3082, 3082, 3082, 3082, 3082, 3082, 3082, + 3082, 3082, 3082, 3082, 3083, 0, 3083, 3083, 0, 0, + 3083, 3083, 3083, 3083, 3083, 3083, 3083, 3083, 3084, 3084, + 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, 3084, + + 3084, 3084, 3085, 3085, 3085, 3085, 3085, 3085, 3085, 3085, + 3085, 3085, 3085, 3085, 3085, 3085, 3086, 3086, 3086, 3086, + 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, 3086, + 3087, 0, 3087, 3087, 0, 0, 3087, 3087, 3087, 3087, + 3087, 3087, 3087, 3087, 3088, 0, 3088, 3088, 0, 0, + 3088, 3088, 0, 3088, 3088, 3088, 3088, 3088, 3089, 3089, + 3089, 3089, 3089, 3089, 3089, 3089, 3089, 3089, 3089, 3089, + 3089, 3089, 3090, 3090, 3090, 3090, 3090, 3090, 3090, 3090, + 3090, 3090, 3090, 3090, 3090, 3090, 3091, 0, 3091, 3091, + 0, 0, 3091, 3091, 0, 3091, 3091, 3091, 3091, 3091, + + 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, 3092, + 3092, 3092, 3092, 3092, 3093, 3093, 3093, 3093, 3093, 3093, + 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3093, 3094, 0, + 0, 0, 0, 0, 3094, 3094, 0, 3094, 3094, 3094, + 3094, 3094, 3095, 3095, 3095, 3095, 3095, 0, 3095, 3095, + 3095, 3095, 3095, 0, 3095, 3095, 3096, 3096, 3096, 3096, + 3096, 0, 3096, 3096, 3096, 3096, 3096, 0, 3096, 3096, + 3097, 3097, 3097, 3097, 3097, 0, 3097, 3097, 3097, 3097, + 3097, 0, 3097, 3097, 3098, 3098, 3098, 3098, 3098, 0, + 3098, 3098, 3098, 3098, 3098, 0, 3098, 3098, 3099, 3099, + + 0, 3099, 3099, 3099, 3099, 3099, 3099, 3099, 3099, 3099, + 3099, 3099, 3100, 3100, 0, 3100, 3100, 3100, 3100, 3100, + 3100, 3100, 3100, 3100, 3100, 3100, 3101, 3101, 3101, 3101, + 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, 3101, + 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, 3102, + 3102, 3102, 3102, 3102, 3103, 0, 3103, 0, 0, 3103, + 3104, 0, 0, 0, 0, 0, 3104, 3104, 0, 3104, + 3104, 3104, 3104, 3104, 3105, 0, 0, 0, 0, 0, + 3105, 3105, 0, 3105, 3105, 3105, 3105, 3105, 3106, 0, + 3106, 0, 0, 3106, 3107, 3107, 3107, 3107, 3107, 3107, + + 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3107, 3108, 3108, + 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, 3108, + 3108, 3108, 3109, 0, 3109, 3109, 0, 0, 3109, 3109, + 3109, 3109, 3109, 3109, 3109, 3109, 3110, 3110, 3110, 3110, + 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, 3110, + 3111, 0, 3111, 3111, 0, 0, 3111, 3111, 3111, 3111, + 3111, 3111, 3111, 3111, 3112, 3112, 3112, 3112, 3112, 0, + 3112, 3112, 0, 3112, 3112, 3112, 3112, 3112, 3113, 3113, + 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, 3113, + 3113, 3113, 3114, 3114, 3114, 3114, 3114, 3114, 3114, 3114, + + 3114, 3114, 3114, 3114, 3114, 3114, 3115, 3115, 3115, 3115, + 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, 3115, + 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, 3116, + 3116, 3116, 3116, 3116, 3117, 3117, 3117, 3117, 3117, 3117, + 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3117, 3118, 3118, + 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, 3118, + 3118, 3118, 3119, 0, 3119, 3119, 0, 0, 3119, 3119, + 3119, 3119, 3119, 3119, 3119, 3119, 3120, 3120, 3120, 3120, + 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, 3120, + 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, 3121, + + 3121, 3121, 3121, 3121, 3122, 3122, 3122, 3122, 3122, 3122, + 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3122, 3123, 0, + 3123, 3123, 0, 0, 3123, 3123, 3123, 3123, 3123, 3123, + 3123, 3123, 3124, 3124, 3124, 3124, 3124, 3124, 3124, 3124, + 3124, 3124, 3124, 3124, 3124, 3124, 3125, 0, 3125, 3125, + 0, 0, 3125, 3125, 3125, 3125, 3125, 3125, 3125, 3125, + 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, 3126, + 3126, 3126, 3126, 3126, 3127, 3127, 3127, 3127, 3127, 3127, + 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3127, 3128, 3128, + 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, 3128, + + 3128, 3128, 3129, 3129, 3129, 3129, 3129, 3129, 3129, 3129, + 3129, 3129, 3129, 3129, 3129, 3129, 3130, 3130, 3130, 3130, + 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, 3130, + 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, 3131, + 3131, 3131, 3131, 3131, 3132, 0, 0, 0, 0, 0, + 3132, 3132, 0, 3132, 3132, 3132, 3132, 3132, 3133, 3133, + 3133, 3133, 3133, 0, 3133, 3133, 3133, 3133, 3133, 0, + 3133, 3133, 3134, 3134, 3134, 3134, 3134, 0, 3134, 3134, + 3134, 3134, 3134, 0, 3134, 3134, 3135, 3135, 0, 3135, + 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, 3135, + + 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, 3136, + 3136, 3136, 3136, 3136, 3137, 3137, 0, 3137, 3137, 3137, + 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3137, 3138, 3138, + 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, 3138, + 3138, 3138, 3139, 0, 3139, 0, 0, 3139, 3140, 0, + 3140, 0, 0, 3140, 3141, 0, 3141, 0, 0, 3141, + 3142, 0, 0, 0, 0, 3142, 3142, 3142, 0, 3142, + 3142, 3142, 3142, 3142, 3143, 3143, 3143, 3143, 3143, 3143, + 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3143, 3144, 3144, + 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, 3144, + + 3144, 3144, 3145, 0, 3145, 3145, 0, 0, 3145, 3145, + 3145, 3145, 3145, 3145, 3145, 3145, 3146, 3146, 3146, 3146, + 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, 3146, + 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, 3147, + 3147, 3147, 3147, 3147, 3148, 0, 3148, 3148, 0, 0, + 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3148, 3149, 3149, + 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, 3149, + 3149, 3149, 3150, 3150, 3150, 3150, 3150, 3150, 3150, 3150, + 3150, 3150, 3150, 3150, 3150, 3150, 3151, 0, 3151, 3151, + 0, 0, 3151, 3151, 3151, 3151, 3151, 3151, 3151, 3151, + + 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, 3152, + 3152, 3152, 3152, 3152, 3153, 3153, 3153, 3153, 3153, 3153, + 3153, 3153, 3153, 3153, 3153, 3153, 3153, 3153, 3154, 3154, + 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, 3154, + 3154, 3154, 3155, 0, 3155, 3155, 0, 0, 3155, 3155, + 3155, 3155, 3155, 3155, 3155, 3155, 3156, 3156, 3156, 3156, + 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, 3156, + 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, 3157, + 3157, 3157, 3157, 3157, 3158, 0, 3158, 3158, 0, 0, + 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3158, 3159, 3159, + + 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, 3159, + 3159, 3159, 3160, 3160, 3160, 3160, 3160, 3160, 3160, 3160, + 3160, 3160, 3160, 3160, 3160, 3160, 3161, 3161, 3161, 3161, + 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, 3161, + 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, 3162, + 3162, 3162, 3162, 3162, 3163, 0, 3163, 3163, 0, 0, + 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3163, 3164, 3164, + 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, 3164, + 3164, 3164, 3165, 3165, 0, 3165, 3165, 3165, 3165, 3165, + 3165, 3165, 3165, 3165, 3165, 3165, 3166, 3166, 3166, 3166, + + 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, 3166, + 3167, 3167, 0, 3167, 3167, 3167, 3167, 3167, 3167, 3167, + 3167, 3167, 3167, 3167, 3168, 3168, 3168, 3168, 3168, 3168, + 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3168, 3169, 0, + 3169, 0, 0, 3169, 3170, 0, 3170, 0, 0, 3170, + 3171, 0, 3171, 0, 0, 3171, 3172, 0, 3172, 0, + 0, 3172, 3173, 3173, 3173, 3173, 3173, 3173, 3173, 3173, + 3173, 3173, 3173, 3173, 3173, 3173, 3174, 3174, 3174, 3174, + 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, 3174, + 3175, 0, 3175, 3175, 0, 0, 3175, 3175, 3175, 3175, + + 3175, 3175, 3175, 3175, 3176, 0, 3176, 3176, 0, 0, + 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3176, 3177, 3177, + 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, 3177, + 3177, 3177, 3178, 3178, 3178, 3178, 3178, 3178, 3178, 3178, + 3178, 3178, 3178, 3178, 3178, 3178, 3179, 3179, 3179, 3179, + 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, 3179, + 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, 3180, + 3180, 3180, 3180, 3180, 3181, 0, 3181, 3181, 0, 0, + 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3181, 3182, 3182, + 3182, 3182, 3182, 3182, 3182, 3182, 3182, 3182, 3182, 3182, + + 3182, 3182, 3183, 3183, 3183, 3183, 3183, 3183, 3183, 3183, + 3183, 3183, 3183, 3183, 3183, 3183, 3184, 3184, 3184, 3184, + 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, 3184, + 3185, 0, 3185, 3185, 0, 0, 3185, 3185, 3185, 3185, + 3185, 3185, 3185, 3185, 3186, 3186, 3186, 3186, 3186, 3186, + 3186, 3186, 3186, 3186, 3186, 3186, 3186, 3186, 3187, 3187, + 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, 3187, + 3187, 3187, 3188, 3188, 3188, 3188, 3188, 3188, 3188, 3188, + 3188, 3188, 3188, 3188, 3188, 3188, 3189, 3189, 3189, 3189, + 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, 3189, + + 3190, 0, 3190, 3190, 0, 0, 3190, 3190, 3190, 3190, + 3190, 3190, 3190, 3190, 3191, 3191, 3191, 3191, 3191, 3191, + 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3191, 3192, 3192, + 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, 3192, + 3192, 3192, 3193, 3193, 3193, 3193, 3193, 3193, 3193, 3193, + 3193, 3193, 3193, 3193, 3193, 3193, 3194, 3194, 3194, 3194, + 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, 3194, + 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, 3195, + 3195, 3195, 3195, 3195, 3196, 0, 3196, 3196, 0, 0, + 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3196, 3197, 0, + + 3197, 0, 0, 3197, 3198, 0, 3198, 0, 0, 3198, + 3199, 0, 3199, 0, 0, 3199, 3200, 3200, 3200, 3200, + 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, 3200, + 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, 3201, + 3201, 3201, 3201, 3201, 3202, 3202, 3202, 3202, 3202, 3202, + 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3202, 3203, 3203, + 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, 3203, + 3203, 3203, 3204, 3204, 3204, 3204, 3204, 3204, 3204, 3204, + 3204, 3204, 3204, 3204, 3204, 3204, 3205, 0, 3205, 3205, + 0, 0, 3205, 3205, 3205, 3205, 3205, 3205, 3205, 3205, + + 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, 3206, + 3206, 3206, 3206, 3206, 3207, 3207, 3207, 3207, 3207, 3207, + 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3207, 3208, 3208, + 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, 3208, + 3208, 3208, 3209, 3209, 3209, 3209, 3209, 3209, 3209, 3209, + 3209, 3209, 3209, 3209, 3209, 3209, 3210, 3210, 3210, 3210, + 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, 3210, + 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, 3211, + 3211, 3211, 3211, 3211, 3212, 3212, 0, 3212, 3212, 0, + 3212, 3212, 3212, 3212, 3212, 3212, 3212, 3213, 3213, 3213, + + 3213, 0, 3213, 3213, 3213, 3213, 3213, 3213, 3213, 3213, + 3213, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, 3214, + 3214, 3214, 3214, 3214, 3214, 3215, 3215, 0, 3215, 3215, + 0, 3215, 3215, 3215, 3215, 3215, 3215, 3215, 3216, 3216, + 0, 0, 0, 3216, 3216, 3216, 3216, 3216, 3216, 3216, + 3216, 3216, 3217, 3217, 0, 3217, 3217, 0, 3217, 3217, + 3217, 3217, 3217, 3217, 3217, 3218, 3218, 0, 3218, 3218, + 0, 3218, 3218, 3218, 3218, 3218, 3218, 3218, 3219, 0, + 3219, 3219, 0, 3219, 3220, 3220, 0, 3220, 3220, 0, + 3220, 3220, 3220, 3220, 3220, 3220, 3220, 3221, 0, 3221, + + 0, 0, 3221, 3222, 3222, 3222, 3222, 3222, 3222, 3222, + 3222, 3222, 3222, 3222, 3222, 3222, 3222, 3223, 3223, 0, + 3223, 3223, 0, 3223, 3223, 3223, 3223, 3223, 3223, 3223, + 3224, 0, 3224, 3224, 0, 3224, 3225, 0, 3225, 3225, + 0, 3225, 3226, 3226, 3226, 3226, 3226, 3226, 3226, 3226, + 3226, 3226, 3226, 3226, 3226, 3226, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969, + 2969, 2969, 2969, 2969, 2969, 2969, 2969, 2969 + } ; + +static yy_state_type yy_last_accepting_state; +static char *yy_last_accepting_cpos; + +extern int yy_flex_debug; +int yy_flex_debug = 1; + +static const flex_int16_t yy_rule_linenum[401] = + { 0, + 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, + 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, + 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, + 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, + 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, + 424, 425, 426, 427, 428, 429, 430, 431, 432, 434, + 437, 438, 439, 440, 441, 442, 443, 445, 446, 447, + 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, + 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, + 468, 469, 470, 471, 472, 474, 475, 476, 479, 480, + + 481, 483, 484, 485, 486, 487, 489, 493, 494, 495, + 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, + 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, + 516, 517, 518, 525, 526, 527, 528, 529, 530, 531, + 532, 533, 534, 535, 536, 540, 545, 548, 549, 550, + 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, + 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, + 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, + 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, + 591, 592, 593, 594, 595, 596, 597, 598, 599, 601, + + 602, 603, 605, 606, 607, 608, 609, 610, 611, 612, + 613, 616, 620, 621, 622, 623, 628, 629, 630, 631, + 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, + 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, + 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, + 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, + 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, + 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, + 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, + 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, + + 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, + 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, + 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, + 746, 747, 748, 751, 752, 755, 756, 761, 762, 763, + 764, 768, 769, 770, 774, 775, 776, 777, 778, 779, + 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, + 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, + 800, 801, 802, 803, 804, 805, 806, 807, 808, 810, + 811, 816, 821, 822, 823, 824, 829, 833, 837, 838, + 839, 843, 844, 845, 850, 852, 853, 878, 902, 929 + + } ; + +/* The intent behind this definition is that it'll catch + * any uses of REJECT which flex missed. + */ +#define REJECT reject_used_but_not_detected +#define yymore() yymore_used_but_not_detected +#define YY_MORE_ADJ 0 +#define YY_RESTORE_YY_MORE_OFFSET +char *yytext; +#line 1 "seclang-scanner.ll" +#line 2 "seclang-scanner.ll" +#include +#include +#include +#include + +#include "src/parser/driver.h" +#include "src/parser/seclang-parser.hh" +#include "src/utils/https_client.h" +#include "src/utils/string.h" + +using modsecurity::Parser::Driver; +using modsecurity::Utils::HttpsClient; + +typedef yy::seclang_parser p; + +// Work around an incompatibility in flex (at least versions +// 2.5.31 through 2.5.33): it generates code that does +// not conform to C89. See Debian bug 333231 +// . +# undef yywrap +# define yywrap() 1 + +// The location of the current token. +#line 3891 "seclang-scanner.cc" +#define YY_NO_INPUT 1 + +#line 360 "seclang-scanner.ll" + // Code run each time a pattern is matched. + # define YY_USER_ACTION driver.loc.back()->columns (yyleng); + +#line 3898 "seclang-scanner.cc" +#line 3899 "seclang-scanner.cc" + +#define INITIAL 0 +#define TRANSACTION_TO_VARIABLE 1 +#define EXPECTING_VARIABLE 2 +#define TRANSACTION_FROM_VARIABLE_TO_OPERATOR 3 +#define EXPECTING_OPERATOR 4 +#define COMMENT 5 +#define EXPECTING_VAR_PARAMETER 6 +#define EXPECTING_PARAMETER 7 +#define EXPECTING_ACTIONS 8 +#define TRANSACTION_FROM_OPERATOR_TO_ACTIONS 9 +#define TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS 10 +#define NO_OP_INFORMED 11 +#define FINISH_ACTIONS 12 +#define LEXING_ERROR 13 +#define LEXING_ERROR_ACTION 14 +#define SETVAR_ACTION_WAITING_VARIABLE 15 +#define SETVAR_ACTION_WAITING_OPERATION 16 +#define SETVAR_ACTION_WAITING_CONTENT 17 + +#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. + */ +/* %if-c-only */ +#include +/* %endif */ +/* %if-c++-only */ +/* %endif */ +#endif + +#ifndef YY_EXTRA_TYPE +#define YY_EXTRA_TYPE void * +#endif + +/* %if-c-only Reentrant structure and macros (non-C++). */ +/* %if-reentrant */ +/* %if-c-only */ + +static int yy_init_globals ( void ); + +/* %endif */ +/* %if-reentrant */ +/* %endif */ +/* %endif End reentrant structures and macros. */ + +/* Accessor methods to globals. + These are made visible to non-reentrant scanners for convenience. */ + +int yylex_destroy ( void ); + +int yyget_debug ( void ); + +void yyset_debug ( int debug_flag ); + +YY_EXTRA_TYPE yyget_extra ( void ); + +void yyset_extra ( YY_EXTRA_TYPE user_defined ); + +FILE *yyget_in ( void ); + +void yyset_in ( FILE * _in_str ); + +FILE *yyget_out ( void ); + +void yyset_out ( FILE * _out_str ); + + int yyget_leng ( void ); + +char *yyget_text ( void ); + +int yyget_lineno ( void ); + +void yyset_lineno ( int _line_number ); + +/* %if-bison-bridge */ +/* %endif */ + +/* 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 + +/* %not-for-header */ +#ifndef YY_NO_UNPUT + +#endif +/* %ok-for-header */ + +/* %endif */ + +#ifndef yytext_ptr +static void yy_flex_strncpy ( char *, const char *, int ); +#endif + +#ifdef YY_NEED_STRLEN +static int yy_flex_strlen ( const char * ); +#endif + +#ifndef YY_NO_INPUT +/* %if-c-only Standard (non-C++) definition */ +/* %not-for-header */ +#ifdef __cplusplus +static int yyinput ( void ); +#else +static int input ( void ); +#endif +/* %ok-for-header */ + +/* %endif */ +#endif + +/* %if-c-only */ + +/* %endif */ + +/* Amount of stuff to slurp up with each read. */ +#ifndef YY_READ_BUF_SIZE +#ifdef __ia64__ +/* On IA-64, the buffer size is 16k, not 8k */ +#define YY_READ_BUF_SIZE 16384 +#else +#define YY_READ_BUF_SIZE 8192 +#endif /* __ia64__ */ +#endif + +/* Copy whatever the last rule matched to the standard output. */ +#ifndef ECHO +/* %if-c-only Standard (non-C++) definition */ +/* This used to be an fputs(), but since the string might contain NUL's, + * we now use fwrite(). + */ +#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) +/* %endif */ +/* %if-c++-only C++ definition */ +/* %endif */ +#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) \ +/* %% [5.0] fread()/read() definition of YY_INPUT goes here unless we're doing C++ \ */\ + if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ + { \ + int c = '*'; \ + int n; \ + for ( n = 0; n < max_size && \ + (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ + buf[n] = (char) c; \ + if ( c == '\n' ) \ + buf[n++] = (char) c; \ + if ( c == EOF && ferror( yyin ) ) \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + result = n; \ + } \ + else \ + { \ + errno=0; \ + while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \ + { \ + if( errno != EINTR) \ + { \ + YY_FATAL_ERROR( "input in flex scanner failed" ); \ + break; \ + } \ + errno=0; \ + clearerr(yyin); \ + } \ + }\ +\ +/* %if-c++-only C++ definition \ */\ +/* %endif */ + +#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 +/* %if-c-only */ +#define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +#endif + +/* %if-tables-serialization structures and prototypes */ +/* %not-for-header */ +/* %ok-for-header */ + +/* %not-for-header */ +/* %tables-yydmap generated elements */ +/* %endif */ +/* end tables serialization structures and prototypes */ + +/* %ok-for-header */ + +/* Default declaration of generated scanner - a define so the user can + * easily add parameters. + */ +#ifndef YY_DECL +#define YY_DECL_IS_OURS 1 +/* %if-c-only Standard (non-C++) definition */ + +extern int yylex (void); + +#define YY_DECL int yylex (void) +/* %endif */ +/* %if-c++-only C++ definition */ +/* %endif */ +#endif /* !YY_DECL */ + +/* Code executed at the beginning of each rule, after yytext and yyleng + * have been set up. + */ +#ifndef YY_USER_ACTION +#define YY_USER_ACTION +#endif + +/* Code executed at the end of each rule. */ +#ifndef YY_BREAK +#define YY_BREAK /*LINTED*/break; +#endif + +/* %% [6.0] YY_RULE_SETUP definition goes here */ +#define YY_RULE_SETUP \ + YY_USER_ACTION + +/* %not-for-header */ +/** 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 ) +/* %if-c-only */ + yyin = stdin; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + + if ( ! yyout ) +/* %if-c-only */ + yyout = stdout; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + + if ( ! YY_CURRENT_BUFFER ) { + yyensure_buffer_stack (); + YY_CURRENT_BUFFER_LVALUE = + yy_create_buffer(yyin,YY_BUF_SIZE ); + } + + yy_load_buffer_state( ); + } + + { +/* %% [7.0] user's declarations go here */ +#line 365 "seclang-scanner.ll" + + + +#line 369 "seclang-scanner.ll" + // Code run each time yylex is called. + driver.loc.back()->step(); + + +#line 4203 "seclang-scanner.cc" + + while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ + { +/* %% [8.0] yymore()-related code goes here */ + 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; + +/* %% [9.0] code to set up and find next match goes here */ + 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 >= 2970 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + ++yy_cp; + } + while ( yy_current_state != 2969 ); + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); + +yy_find_action: +/* %% [10.0] code to find the action number goes here */ + yy_act = yy_accept[yy_current_state]; + + YY_DO_BEFORE_ACTION; + +/* %% [11.0] code for yylineno update goes here */ + +do_action: /* This label is used only to access EOF actions. */ + +/* %% [12.0] debug code goes here */ + if ( yy_flex_debug ) + { + if ( yy_act == 0 ) + fprintf( stderr, "--scanner backing up\n" ); + else if ( yy_act < 401 ) + fprintf( stderr, "--accepting rule at line %ld (\"%s\")\n", + (long)yy_rule_linenum[yy_act], yytext ); + else if ( yy_act == 401 ) + fprintf( stderr, "--accepting default rule (\"%s\")\n", + yytext ); + else if ( yy_act == 402 ) + fprintf( stderr, "--(end of buffer or a NUL)\n" ); + else + fprintf( stderr, "--EOF (start condition %d)\n", YY_START ); + } + + switch ( yy_act ) + { /* beginning of action switch */ +/* %% [13.0] actions go here */ + 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 374 "seclang-scanner.ll" +{ return p::make_ACTION_APPEND(yytext, *driver.loc.back()); } + YY_BREAK +case 2: +YY_RULE_SETUP +#line 375 "seclang-scanner.ll" +{ return p::make_ACTION_BLOCK(yytext, *driver.loc.back()); } + YY_BREAK +case 3: +YY_RULE_SETUP +#line 376 "seclang-scanner.ll" +{ return p::make_ACTION_CAPTURE(yytext, *driver.loc.back()); } + YY_BREAK +case 4: +YY_RULE_SETUP +#line 377 "seclang-scanner.ll" +{ return p::make_ACTION_CHAIN(yytext, *driver.loc.back()); } + YY_BREAK +case 5: +YY_RULE_SETUP +#line 378 "seclang-scanner.ll" +{ return p::make_ACTION_DENY(yytext, *driver.loc.back()); } + YY_BREAK +case 6: +YY_RULE_SETUP +#line 379 "seclang-scanner.ll" +{ return p::make_ACTION_DEPRECATE_VAR(yytext, *driver.loc.back()); } + YY_BREAK +case 7: +YY_RULE_SETUP +#line 380 "seclang-scanner.ll" +{ return p::make_ACTION_DROP(yytext, *driver.loc.back()); } + YY_BREAK +case 8: +YY_RULE_SETUP +#line 381 "seclang-scanner.ll" +{ return p::make_ACTION_ID(yytext, *driver.loc.back()); } + YY_BREAK +case 9: +YY_RULE_SETUP +#line 382 "seclang-scanner.ll" +{ return p::make_ACTION_LOG(yytext, *driver.loc.back()); } + YY_BREAK +case 10: +YY_RULE_SETUP +#line 383 "seclang-scanner.ll" +{ return p::make_ACTION_MULTI_MATCH(yytext, *driver.loc.back()); } + YY_BREAK +case 11: +YY_RULE_SETUP +#line 384 "seclang-scanner.ll" +{ return p::make_ACTION_NO_AUDIT_LOG(yytext, *driver.loc.back()); } + YY_BREAK +case 12: +YY_RULE_SETUP +#line 385 "seclang-scanner.ll" +{ return p::make_ACTION_NO_LOG(yytext, *driver.loc.back()); } + YY_BREAK +case 13: +YY_RULE_SETUP +#line 386 "seclang-scanner.ll" +{ return p::make_ACTION_PASS(yytext, *driver.loc.back()); } + YY_BREAK +case 14: +YY_RULE_SETUP +#line 387 "seclang-scanner.ll" +{ return p::make_ACTION_PAUSE(yytext, *driver.loc.back()); } + YY_BREAK +case 15: +YY_RULE_SETUP +#line 388 "seclang-scanner.ll" +{ return p::make_ACTION_PREPEND(yytext, *driver.loc.back()); } + YY_BREAK +case 16: +YY_RULE_SETUP +#line 389 "seclang-scanner.ll" +{ return p::make_ACTION_PROXY(yytext, *driver.loc.back()); } + YY_BREAK +case 17: +YY_RULE_SETUP +#line 390 "seclang-scanner.ll" +{ return p::make_ACTION_SANATISE_ARG(yytext, *driver.loc.back()); } + YY_BREAK +case 18: +YY_RULE_SETUP +#line 391 "seclang-scanner.ll" +{ return p::make_ACTION_SANATISE_MATCHED(yytext, *driver.loc.back()); } + YY_BREAK +case 19: +YY_RULE_SETUP +#line 392 "seclang-scanner.ll" +{ return p::make_ACTION_SANATISE_MATCHED_BYTES(yytext, *driver.loc.back()); } + YY_BREAK +case 20: +YY_RULE_SETUP +#line 393 "seclang-scanner.ll" +{ return p::make_ACTION_SANATISE_REQUEST_HEADER(yytext, *driver.loc.back()); } + YY_BREAK +case 21: +YY_RULE_SETUP +#line 394 "seclang-scanner.ll" +{ return p::make_ACTION_SANATISE_RESPONSE_HEADER(yytext, *driver.loc.back()); } + YY_BREAK +case 22: +YY_RULE_SETUP +#line 395 "seclang-scanner.ll" +{ return p::make_ACTION_SETRSC(yytext, *driver.loc.back()); } + YY_BREAK +case 23: +YY_RULE_SETUP +#line 396 "seclang-scanner.ll" +{ return p::make_ACTION_STATUS(yytext, *driver.loc.back()); } + YY_BREAK +case 24: +/* rule 24 can match eol */ +YY_RULE_SETUP +#line 397 "seclang-scanner.ll" +{ return p::make_ACTION_ACCURACY(yytext, *driver.loc.back()); } + YY_BREAK +case 25: +/* rule 25 can match eol */ +YY_RULE_SETUP +#line 398 "seclang-scanner.ll" +{ return p::make_ACTION_ACCURACY(yytext, *driver.loc.back()); } + YY_BREAK +case 26: +YY_RULE_SETUP +#line 399 "seclang-scanner.ll" +{ return p::make_ACTION_ALLOW(yytext, *driver.loc.back()); } + YY_BREAK +case 27: +YY_RULE_SETUP +#line 400 "seclang-scanner.ll" +{ return p::make_ACTION_AUDIT_LOG(yytext, *driver.loc.back()); } + YY_BREAK +case 28: +YY_RULE_SETUP +#line 401 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_AUDIT_ENGINE(yytext, *driver.loc.back()); } + YY_BREAK +case 29: +YY_RULE_SETUP +#line 402 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_AUDIT_LOG_PARTS(yytext, *driver.loc.back()); } + YY_BREAK +case 30: +YY_RULE_SETUP +#line 403 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_BDY_JSON(yytext, *driver.loc.back()); } + YY_BREAK +case 31: +YY_RULE_SETUP +#line 404 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_BDY_XML(yytext, *driver.loc.back()); } + YY_BREAK +case 32: +YY_RULE_SETUP +#line 405 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_FORCE_REQ_BODY_VAR(yytext, *driver.loc.back()); } + YY_BREAK +case 33: +YY_RULE_SETUP +#line 406 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_REQUEST_BODY_ACCESS(yytext, *driver.loc.back()); } + YY_BREAK +case 34: +YY_RULE_SETUP +#line 407 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_RULE_ENGINE(yytext, *driver.loc.back()); } + YY_BREAK +case 35: +YY_RULE_SETUP +#line 408 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_RULE_REMOVE_BY_ID(yytext, *driver.loc.back()); } + YY_BREAK +case 36: +YY_RULE_SETUP +#line 409 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_RULE_REMOVE_TARGET_BY_ID(yytext, *driver.loc.back()); } + YY_BREAK +case 37: +YY_RULE_SETUP +#line 410 "seclang-scanner.ll" +{ return p::make_ACTION_CTL_RULE_REMOVE_TARGET_BY_TAG(yytext, *driver.loc.back()); } + YY_BREAK +case 38: +/* rule 38 can match eol */ +YY_RULE_SETUP +#line 411 "seclang-scanner.ll" +{ return p::make_ACTION_EXEC(yytext, *driver.loc.back()); } + YY_BREAK +case 39: +/* rule 39 can match eol */ +YY_RULE_SETUP +#line 412 "seclang-scanner.ll" +{ return p::make_ACTION_EXEC(yytext, *driver.loc.back()); } + YY_BREAK +case 40: +/* rule 40 can match eol */ +YY_RULE_SETUP +#line 413 "seclang-scanner.ll" +{ return p::make_ACTION_EXPIRE_VAR(yytext, *driver.loc.back()); } + YY_BREAK +case 41: +/* rule 41 can match eol */ +YY_RULE_SETUP +#line 414 "seclang-scanner.ll" +{ return p::make_ACTION_EXPIRE_VAR(yytext, *driver.loc.back()); } + YY_BREAK +case 42: +/* rule 42 can match eol */ +YY_RULE_SETUP +#line 415 "seclang-scanner.ll" +{ return p::make_ACTION_EXPIRE_VAR(yytext, *driver.loc.back()); } + YY_BREAK +case 43: +/* rule 43 can match eol */ +YY_RULE_SETUP +#line 416 "seclang-scanner.ll" +{ return p::make_ACTION_EXPIRE_VAR(yytext, *driver.loc.back()); } + YY_BREAK +case 44: +/* rule 44 can match eol */ +YY_RULE_SETUP +#line 417 "seclang-scanner.ll" +{ return p::make_ACTION_INITCOL(yytext, *driver.loc.back()); } + YY_BREAK +case 45: +/* rule 45 can match eol */ +YY_RULE_SETUP +#line 418 "seclang-scanner.ll" +{ return p::make_ACTION_MATURITY(yytext, *driver.loc.back()); } + YY_BREAK +case 46: +/* rule 46 can match eol */ +YY_RULE_SETUP +#line 419 "seclang-scanner.ll" +{ return p::make_ACTION_MATURITY(yytext, *driver.loc.back()); } + YY_BREAK +case 47: +/* rule 47 can match eol */ +YY_RULE_SETUP +#line 420 "seclang-scanner.ll" +{ return p::make_ACTION_MSG(yytext, *driver.loc.back()); } + YY_BREAK +case 48: +YY_RULE_SETUP +#line 421 "seclang-scanner.ll" +{ return p::make_ACTION_PHASE(yytext, *driver.loc.back()); } + YY_BREAK +case 49: +/* rule 49 can match eol */ +YY_RULE_SETUP +#line 422 "seclang-scanner.ll" +{ return p::make_ACTION_REDIRECT(yytext, *driver.loc.back()); } + YY_BREAK +case 50: +/* rule 50 can match eol */ +YY_RULE_SETUP +#line 423 "seclang-scanner.ll" +{ return p::make_ACTION_REV(yytext, *driver.loc.back()); } + YY_BREAK +case 51: +/* rule 51 can match eol */ +YY_RULE_SETUP +#line 424 "seclang-scanner.ll" +{ return p::make_ACTION_REV(yytext, *driver.loc.back()); } + YY_BREAK +case 52: +/* rule 52 can match eol */ +YY_RULE_SETUP +#line 425 "seclang-scanner.ll" +{ return p::make_ACTION_SETENV(yytext, *driver.loc.back()); } + YY_BREAK +case 53: +/* rule 53 can match eol */ +YY_RULE_SETUP +#line 426 "seclang-scanner.ll" +{ return p::make_ACTION_SETENV(yytext, *driver.loc.back()); } + YY_BREAK +case 54: +/* rule 54 can match eol */ +YY_RULE_SETUP +#line 427 "seclang-scanner.ll" +{ return p::make_ACTION_SETENV(yytext, *driver.loc.back()); } + YY_BREAK +case 55: +/* rule 55 can match eol */ +YY_RULE_SETUP +#line 428 "seclang-scanner.ll" +{ return p::make_ACTION_SETENV(yytext, *driver.loc.back()); } + YY_BREAK +case 56: +/* rule 56 can match eol */ +YY_RULE_SETUP +#line 429 "seclang-scanner.ll" +{ return p::make_ACTION_SETSID(yytext, *driver.loc.back()); } + YY_BREAK +case 57: +/* rule 57 can match eol */ +YY_RULE_SETUP +#line 430 "seclang-scanner.ll" +{ return p::make_ACTION_SETSID(yytext, *driver.loc.back()); } + YY_BREAK +case 58: +/* rule 58 can match eol */ +YY_RULE_SETUP +#line 431 "seclang-scanner.ll" +{ return p::make_ACTION_SETUID(yytext, *driver.loc.back()); } + YY_BREAK +case 59: +/* rule 59 can match eol */ +YY_RULE_SETUP +#line 432 "seclang-scanner.ll" +{ return p::make_ACTION_SETUID(yytext, *driver.loc.back()); } + YY_BREAK +case 60: +YY_RULE_SETUP +#line 434 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_VARIABLE); return p::make_ACTION_SETVAR(*driver.loc.back()); } + YY_BREAK +case 61: +YY_RULE_SETUP +#line 437 "seclang-scanner.ll" +{ return p::make_ACTION_SEVERITY(yytext, *driver.loc.back()); } + YY_BREAK +case 62: +YY_RULE_SETUP +#line 438 "seclang-scanner.ll" +{ return p::make_ACTION_SEVERITY(yytext, *driver.loc.back()); } + YY_BREAK +case 63: +YY_RULE_SETUP +#line 439 "seclang-scanner.ll" +{ return p::make_ACTION_SKIP_AFTER(yytext, *driver.loc.back()); } + YY_BREAK +case 64: +YY_RULE_SETUP +#line 440 "seclang-scanner.ll" +{ return p::make_ACTION_SKIP(yytext, *driver.loc.back()); } + YY_BREAK +case 65: +/* rule 65 can match eol */ +YY_RULE_SETUP +#line 441 "seclang-scanner.ll" +{ return p::make_ACTION_TAG(yytext, *driver.loc.back()); } + YY_BREAK +case 66: +/* rule 66 can match eol */ +YY_RULE_SETUP +#line 442 "seclang-scanner.ll" +{ return p::make_ACTION_VER(yytext, *driver.loc.back()); } + YY_BREAK +case 67: +YY_RULE_SETUP +#line 443 "seclang-scanner.ll" +{ return p::make_ACTION_XMLNS(yytext, *driver.loc.back()); } + YY_BREAK +case 68: +YY_RULE_SETUP +#line 445 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_PARITY_ZERO_7_BIT(yytext, *driver.loc.back()); } + YY_BREAK +case 69: +YY_RULE_SETUP +#line 446 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_PARITY_ODD_7_BIT(yytext, *driver.loc.back()); } + YY_BREAK +case 70: +YY_RULE_SETUP +#line 447 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_PARITY_EVEN_7_BIT(yytext, *driver.loc.back()); } + YY_BREAK +case 71: +YY_RULE_SETUP +#line 448 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_SQL_HEX_DECODE(yytext, *driver.loc.back()); } + YY_BREAK +case 72: +YY_RULE_SETUP +#line 449 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_CMD_LINE(yytext, *driver.loc.back()); } + YY_BREAK +case 73: +YY_RULE_SETUP +#line 450 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_SHA1(yytext, *driver.loc.back()); } + YY_BREAK +case 74: +YY_RULE_SETUP +#line 451 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_MD5(yytext, *driver.loc.back()); } + YY_BREAK +case 75: +YY_RULE_SETUP +#line 452 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_HEX_ENCODE(yytext, *driver.loc.back()); } + YY_BREAK +case 76: +YY_RULE_SETUP +#line 453 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_LOWERCASE(yytext, *driver.loc.back()); } + YY_BREAK +case 77: +YY_RULE_SETUP +#line 454 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_URL_DECODE_UNI(yytext, *driver.loc.back()); } + YY_BREAK +case 78: +YY_RULE_SETUP +#line 455 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_URL_DECODE(yytext, *driver.loc.back()); } + YY_BREAK +case 79: +YY_RULE_SETUP +#line 456 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_NONE(yytext, *driver.loc.back()); } + YY_BREAK +case 80: +YY_RULE_SETUP +#line 457 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_COMPRESS_WHITESPACE(yytext, *driver.loc.back()); } + YY_BREAK +case 81: +YY_RULE_SETUP +#line 458 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_REMOVE_WHITESPACE(yytext, *driver.loc.back()); } + YY_BREAK +case 82: +YY_RULE_SETUP +#line 459 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_REPLACE_NULLS(yytext, *driver.loc.back()); } + YY_BREAK +case 83: +YY_RULE_SETUP +#line 460 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_REMOVE_NULLS(yytext, *driver.loc.back()); } + YY_BREAK +case 84: +YY_RULE_SETUP +#line 461 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_HTML_ENTITY_DECODE(yytext, *driver.loc.back()); } + YY_BREAK +case 85: +YY_RULE_SETUP +#line 462 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_JS_DECODE(yytext, *driver.loc.back()); } + YY_BREAK +case 86: +YY_RULE_SETUP +#line 463 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_CSS_DECODE(yytext, *driver.loc.back()); } + YY_BREAK +case 87: +YY_RULE_SETUP +#line 464 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_TRIM(yytext, *driver.loc.back()); } + YY_BREAK +case 88: +YY_RULE_SETUP +#line 465 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_NORMALISE_PATH_WIN(yytext, *driver.loc.back()); } + YY_BREAK +case 89: +YY_RULE_SETUP +#line 466 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_NORMALISE_PATH(yytext, *driver.loc.back()); } + YY_BREAK +case 90: +YY_RULE_SETUP +#line 467 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_LENGTH(yytext, *driver.loc.back()); } + YY_BREAK +case 91: +YY_RULE_SETUP +#line 468 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_UTF8_TO_UNICODE(yytext, *driver.loc.back()); } + YY_BREAK +case 92: +YY_RULE_SETUP +#line 469 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_REMOVE_COMMENTS_CHAR(yytext, *driver.loc.back()); } + YY_BREAK +case 93: +YY_RULE_SETUP +#line 470 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_REMOVE_COMMENTS(yytext, *driver.loc.back()); } + YY_BREAK +case 94: +YY_RULE_SETUP +#line 471 "seclang-scanner.ll" +{ return p::make_ACTION_TRANSFORMATION_REPLACE_COMMENTS(yytext, *driver.loc.back()); } + YY_BREAK +case 95: +/* rule 95 can match eol */ +YY_RULE_SETUP +#line 472 "seclang-scanner.ll" +{ return p::make_ACTION_LOG_DATA(yytext, *driver.loc.back()); } + YY_BREAK +case 96: +YY_RULE_SETUP +#line 474 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_DETC(yytext, *driver.loc.back()); } + YY_BREAK +case 97: +YY_RULE_SETUP +#line 475 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_OFF(yytext, *driver.loc.back()); } + YY_BREAK +case 98: +YY_RULE_SETUP +#line 476 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_ON(yytext, *driver.loc.back()); } + YY_BREAK +case 99: +YY_RULE_SETUP +#line 479 "seclang-scanner.ll" +{ return p::make_COMMA(*driver.loc.back()); } + YY_BREAK +case 100: +/* rule 100 can match eol */ +YY_RULE_SETUP +#line 480 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 101: +/* rule 101 can match eol */ +YY_RULE_SETUP +#line 481 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 102: +YY_RULE_SETUP +#line 483 "seclang-scanner.ll" +{ BEGIN(INITIAL); yyless(yyleng); } + YY_BREAK +case 103: +/* rule 103 can match eol */ +YY_RULE_SETUP +#line 484 "seclang-scanner.ll" +{ BEGIN(INITIAL); yyless(yyleng); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 104: +/* rule 104 can match eol */ +YY_RULE_SETUP +#line 485 "seclang-scanner.ll" +{ BEGIN(INITIAL); yyless(yyleng); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 105: +/* rule 105 can match eol */ +YY_RULE_SETUP +#line 486 "seclang-scanner.ll" +{ BEGIN(INITIAL); yyless(1); } + YY_BREAK +case 106: +/* rule 106 can match eol */ +YY_RULE_SETUP +#line 487 "seclang-scanner.ll" +{ BEGIN(INITIAL); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 107: +YY_RULE_SETUP +#line 489 "seclang-scanner.ll" +{ BEGIN(LEXING_ERROR_ACTION); yyless(0); } + YY_BREAK + + +case 108: +YY_RULE_SETUP +#line 493 "seclang-scanner.ll" +{ } + YY_BREAK +case 109: +YY_RULE_SETUP +#line 494 "seclang-scanner.ll" +{ } + YY_BREAK +case 110: +YY_RULE_SETUP +#line 495 "seclang-scanner.ll" +{ return p::make_NOT(*driver.loc.back()); } + YY_BREAK +case 111: +/* rule 111 can match eol */ +YY_RULE_SETUP +#line 496 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 112: +/* rule 112 can match eol */ +YY_RULE_SETUP +#line 497 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 113: +/* rule 113 can match eol */ +YY_RULE_SETUP +#line 498 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 114: +/* rule 114 can match eol */ +YY_RULE_SETUP +#line 499 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 115: +/* rule 115 can match eol */ +YY_RULE_SETUP +#line 500 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 116: +/* rule 116 can match eol */ +YY_RULE_SETUP +#line 501 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 117: +/* rule 117 can match eol */ +YY_RULE_SETUP +#line 502 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 118: +/* rule 118 can match eol */ +YY_RULE_SETUP +#line 503 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 119: +/* rule 119 can match eol */ +YY_RULE_SETUP +#line 504 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 120: +/* rule 120 can match eol */ +YY_RULE_SETUP +#line 505 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 121: +/* rule 121 can match eol */ +YY_RULE_SETUP +#line 506 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 122: +/* rule 122 can match eol */ +YY_RULE_SETUP +#line 507 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 123: +/* rule 123 can match eol */ +YY_RULE_SETUP +#line 508 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 124: +/* rule 124 can match eol */ +YY_RULE_SETUP +#line 509 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 125: +/* rule 125 can match eol */ +YY_RULE_SETUP +#line 510 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 126: +/* rule 126 can match eol */ +YY_RULE_SETUP +#line 511 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 127: +/* rule 127 can match eol */ +YY_RULE_SETUP +#line 512 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 128: +/* rule 128 can match eol */ +YY_RULE_SETUP +#line 513 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 129: +/* rule 129 can match eol */ +YY_RULE_SETUP +#line 514 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 130: +/* rule 130 can match eol */ +YY_RULE_SETUP +#line 515 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_OPERATION); return p::make_VARIABLE(yytext, *driver.loc.back()); } + YY_BREAK +case 131: +YY_RULE_SETUP +#line 516 "seclang-scanner.ll" +{ BEGIN(LEXING_ERROR_ACTION); yyless(0); } + YY_BREAK +case 132: +/* rule 132 can match eol */ +YY_RULE_SETUP +#line 517 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 133: +/* rule 133 can match eol */ +YY_RULE_SETUP +#line 518 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK + + +case 134: +/* rule 134 can match eol */ +YY_RULE_SETUP +#line 525 "seclang-scanner.ll" +{ BEGIN(INITIAL); yyless(1); } + YY_BREAK +case 135: +/* rule 135 can match eol */ +YY_RULE_SETUP +#line 526 "seclang-scanner.ll" +{ BEGIN(INITIAL); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 136: +/* rule 136 can match eol */ +YY_RULE_SETUP +#line 527 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); yyless(yyleng); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 137: +/* rule 137 can match eol */ +YY_RULE_SETUP +#line 528 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); yyless(yyleng); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 138: +YY_RULE_SETUP +#line 529 "seclang-scanner.ll" +{ } + YY_BREAK +case 139: +YY_RULE_SETUP +#line 530 "seclang-scanner.ll" +{ } + YY_BREAK +case 140: +/* rule 140 can match eol */ +YY_RULE_SETUP +#line 531 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); yyless(1); } + YY_BREAK +case 141: +/* rule 141 can match eol */ +YY_RULE_SETUP +#line 532 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 142: +YY_RULE_SETUP +#line 533 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_CONTENT); return p::make_SETVAR_OPERATION_EQUALS_PLUS(*driver.loc.back()); } + YY_BREAK +case 143: +YY_RULE_SETUP +#line 534 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_CONTENT); return p::make_SETVAR_OPERATION_EQUALS_MINUS(*driver.loc.back()); } + YY_BREAK +case 144: +YY_RULE_SETUP +#line 535 "seclang-scanner.ll" +{ BEGIN(SETVAR_ACTION_WAITING_CONTENT); return p::make_SETVAR_OPERATION_EQUALS(*driver.loc.back()); } + YY_BREAK +case 145: +YY_RULE_SETUP +#line 536 "seclang-scanner.ll" +{ BEGIN(LEXING_ERROR_ACTION); yyless(0); } + YY_BREAK + + +case 146: +YY_RULE_SETUP +#line 540 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); return p::make_FREE_TEXT(yytext, *driver.loc.back()); } + YY_BREAK + + +case YY_STATE_EOF(FINISH_ACTIONS): +#line 544 "seclang-scanner.ll" +{ BEGIN(INITIAL); yyless(0); p::make_NEW_LINE(*driver.loc.back()); } + YY_BREAK +case 147: +YY_RULE_SETUP +#line 545 "seclang-scanner.ll" +{ BEGIN(INITIAL); } + YY_BREAK + +case 148: +/* rule 148 can match eol */ +YY_RULE_SETUP +#line 548 "seclang-scanner.ll" +{ return p::make_CONFIG_COMPONENT_SIG(strchr(yytext, ' ') + 2, *driver.loc.back()); } + YY_BREAK +case 149: +YY_RULE_SETUP +#line 549 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_DIR_MOD(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 150: +YY_RULE_SETUP +#line 550 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_DIR(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 151: +YY_RULE_SETUP +#line 551 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_ENG(yytext, *driver.loc.back()); } + YY_BREAK +case 152: +YY_RULE_SETUP +#line 552 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_FLE_MOD(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 153: +YY_RULE_SETUP +#line 553 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_LOG2(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 154: +YY_RULE_SETUP +#line 554 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_LOG_P(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 155: +YY_RULE_SETUP +#line 555 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_LOG(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 156: +/* rule 156 can match eol */ +YY_RULE_SETUP +#line 556 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_STS(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 157: +YY_RULE_SETUP +#line 557 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_AUDIT_TPE(yytext, *driver.loc.back()); } + YY_BREAK +case 158: +YY_RULE_SETUP +#line 558 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_DEBUG_LOG(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 159: +YY_RULE_SETUP +#line 559 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_DEBUG_LVL(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 160: +YY_RULE_SETUP +#line 560 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_GEO_DB(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 161: +YY_RULE_SETUP +#line 561 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_PCRE_MATCH_LIMIT_RECURSION(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 162: +YY_RULE_SETUP +#line 562 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_PCRE_MATCH_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 163: +YY_RULE_SETUP +#line 563 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_REQ_BODY_IN_MEMORY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 164: +YY_RULE_SETUP +#line 564 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_REQ_BODY_LIMIT_ACTION(yytext, *driver.loc.back()); } + YY_BREAK +case 165: +YY_RULE_SETUP +#line 565 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_REQ_BODY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 166: +YY_RULE_SETUP +#line 566 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_REQ_BODY_NO_FILES_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 167: +YY_RULE_SETUP +#line 567 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_REQ_BODY(yytext, *driver.loc.back()); } + YY_BREAK +case 168: +YY_RULE_SETUP +#line 568 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_RES_BODY_LIMIT_ACTION(yytext, *driver.loc.back()); } + YY_BREAK +case 169: +YY_RULE_SETUP +#line 569 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_RES_BODY_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 170: +YY_RULE_SETUP +#line 570 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_RES_BODY(yytext, *driver.loc.back()); } + YY_BREAK +case 171: +YY_RULE_SETUP +#line 571 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_RULE_ENG(yytext, *driver.loc.back()); } + YY_BREAK +case 172: +YY_RULE_SETUP +#line 572 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_SEC_MARKER(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 173: +YY_RULE_SETUP +#line 573 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_SEC_MARKER(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 174: +YY_RULE_SETUP +#line 574 "seclang-scanner.ll" +{ return p::make_CONFIG_DIR_UNICODE_MAP_FILE(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 175: +YY_RULE_SETUP +#line 575 "seclang-scanner.ll" +{ return p::make_CONFIG_SEC_RULE_REMOVE_BY_ID(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 176: +YY_RULE_SETUP +#line 576 "seclang-scanner.ll" +{ return p::make_CONFIG_UPDLOAD_KEEP_FILES(yytext, *driver.loc.back()); } + YY_BREAK +case 177: +YY_RULE_SETUP +#line 577 "seclang-scanner.ll" +{ return p::make_CONFIG_UPDLOAD_SAVE_TMP_FILES(yytext, *driver.loc.back()); } + YY_BREAK +case 178: +YY_RULE_SETUP +#line 578 "seclang-scanner.ll" +{ return p::make_CONFIG_UPLOAD_DIR(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 179: +YY_RULE_SETUP +#line 579 "seclang-scanner.ll" +{ return p::make_CONFIG_UPLOAD_FILE_LIMIT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 180: +YY_RULE_SETUP +#line 580 "seclang-scanner.ll" +{ return p::make_CONFIG_UPLOAD_FILE_MODE(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 181: +YY_RULE_SETUP +#line 581 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_ABORT(yytext, *driver.loc.back()); } + YY_BREAK +case 182: +YY_RULE_SETUP +#line 582 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_DETC(yytext, *driver.loc.back()); } + YY_BREAK +case 183: +YY_RULE_SETUP +#line 583 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_HTTPS(yytext, *driver.loc.back()); } + YY_BREAK +case 184: +YY_RULE_SETUP +#line 584 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_OFF(yytext, *driver.loc.back()); } + YY_BREAK +case 185: +YY_RULE_SETUP +#line 585 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_ON(yytext, *driver.loc.back()); } + YY_BREAK +case 186: +YY_RULE_SETUP +#line 586 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_PARALLEL(yytext, *driver.loc.back()); } + YY_BREAK +case 187: +YY_RULE_SETUP +#line 587 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_PROCESS_PARTIAL(yytext, *driver.loc.back()); } + YY_BREAK +case 188: +YY_RULE_SETUP +#line 588 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_REJECT(yytext, *driver.loc.back()); } + YY_BREAK +case 189: +YY_RULE_SETUP +#line 589 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_RELEVANT_ONLY(yytext, *driver.loc.back()); } + YY_BREAK +case 190: +YY_RULE_SETUP +#line 590 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_SERIAL(yytext, *driver.loc.back()); } + YY_BREAK +case 191: +YY_RULE_SETUP +#line 591 "seclang-scanner.ll" +{ return p::make_CONFIG_VALUE_WARN(yytext, *driver.loc.back()); } + YY_BREAK +case 192: +YY_RULE_SETUP +#line 592 "seclang-scanner.ll" +{ return p::make_CONFIG_XML_EXTERNAL_ENTITY(yytext, *driver.loc.back()); } + YY_BREAK +case 193: +YY_RULE_SETUP +#line 593 "seclang-scanner.ll" +{ return p::make_CONGIG_DIR_RESPONSE_BODY_MP(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 194: +YY_RULE_SETUP +#line 594 "seclang-scanner.ll" +{ return p::make_CONGIG_DIR_SEC_ARG_SEP(yytext, *driver.loc.back()); } + YY_BREAK +case 195: +YY_RULE_SETUP +#line 595 "seclang-scanner.ll" +{ return p::make_CONGIG_DIR_SEC_COOKIE_FORMAT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 196: +YY_RULE_SETUP +#line 596 "seclang-scanner.ll" +{ return p::make_CONGIG_DIR_SEC_DATA_DIR(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 197: +YY_RULE_SETUP +#line 597 "seclang-scanner.ll" +{ return p::make_CONGIG_DIR_SEC_STATUS_ENGINE(yytext, *driver.loc.back()); } + YY_BREAK +case 198: +YY_RULE_SETUP +#line 598 "seclang-scanner.ll" +{ return p::make_CONGIG_DIR_SEC_TMP_DIR(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 199: +YY_RULE_SETUP +#line 599 "seclang-scanner.ll" +{ return p::make_DIRECTIVE_SECRULESCRIPT(yytext, *driver.loc.back()); } + YY_BREAK +case 200: +YY_RULE_SETUP +#line 601 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_TO_VARIABLE); return p::make_DIRECTIVE(yytext, *driver.loc.back()); } + YY_BREAK +case 201: +YY_RULE_SETUP +#line 602 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_CONFIG_DIR_SEC_DEFAULT_ACTION(yytext, *driver.loc.back()); } + YY_BREAK +case 202: +YY_RULE_SETUP +#line 603 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS); return p::make_CONFIG_DIR_SEC_ACTION(yytext, *driver.loc.back()); } + YY_BREAK +case 203: +YY_RULE_SETUP +#line 605 "seclang-scanner.ll" +{ return p::make_CONFIG_SEC_REMOTE_RULES_FAIL_ACTION(yytext, *driver.loc.back()); } + YY_BREAK +case 204: +YY_RULE_SETUP +#line 606 "seclang-scanner.ll" +{ return p::make_CONFIG_SEC_COLLECTION_TIMEOUT(strchr(yytext, ' ') + 1, *driver.loc.back()); } + YY_BREAK +case 205: +/* rule 205 can match eol */ +YY_RULE_SETUP +#line 607 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 206: +/* rule 206 can match eol */ +YY_RULE_SETUP +#line 608 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(COMMENT); } + YY_BREAK +case 207: +/* rule 207 can match eol */ +YY_RULE_SETUP +#line 609 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); BEGIN(COMMENT); } + YY_BREAK +case 208: +YY_RULE_SETUP +#line 610 "seclang-scanner.ll" +{ driver.loc.back()->step(); /* comment, just ignore. */ } + YY_BREAK +case 209: +YY_RULE_SETUP +#line 611 "seclang-scanner.ll" +{ driver.loc.back()->step(); /* carriage return, just ignore. */} + YY_BREAK +case 210: +YY_RULE_SETUP +#line 612 "seclang-scanner.ll" +{ return p::make_QUOTATION_MARK(yytext, *driver.loc.back()); } + YY_BREAK +case 211: +YY_RULE_SETUP +#line 613 "seclang-scanner.ll" +{ return p::make_COMMA(*driver.loc.back()); } + YY_BREAK + +case 212: +YY_RULE_SETUP +#line 616 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VARIABLE); } + YY_BREAK + + +case 213: +YY_RULE_SETUP +#line 620 "seclang-scanner.ll" +{ } + YY_BREAK +case 214: +YY_RULE_SETUP +#line 621 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); } + YY_BREAK +case 215: +/* rule 215 can match eol */ +YY_RULE_SETUP +#line 622 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); } + YY_BREAK +case 216: +/* rule 216 can match eol */ +YY_RULE_SETUP +#line 623 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); } + YY_BREAK + + +case 217: +YY_RULE_SETUP +#line 628 "seclang-scanner.ll" +{ return p::make_VARIABLE_ARGS_COMBINED_SIZE(*driver.loc.back()); } + YY_BREAK +case 218: +YY_RULE_SETUP +#line 629 "seclang-scanner.ll" +{ return p::make_VARIABLE_ARGS_GET_NAMES(*driver.loc.back()); } + YY_BREAK +case 219: +YY_RULE_SETUP +#line 630 "seclang-scanner.ll" +{ return p::make_VARIABLE_ARGS_NAMES(*driver.loc.back()); } + YY_BREAK +case 220: +YY_RULE_SETUP +#line 631 "seclang-scanner.ll" +{ return p::make_VARIABLE_ARGS_POST_NAMES(*driver.loc.back()); } + YY_BREAK +case 221: +YY_RULE_SETUP +#line 632 "seclang-scanner.ll" +{ return p::make_VARIABLE_AUTH_TYPE(*driver.loc.back()); } + YY_BREAK +case 222: +YY_RULE_SETUP +#line 633 "seclang-scanner.ll" +{ return p::make_VARIABLE_FILES_COMBINED_SIZE(*driver.loc.back()); } + YY_BREAK +case 223: +YY_RULE_SETUP +#line 634 "seclang-scanner.ll" +{ return p::make_VARIABLE_FULL_REQUEST_LENGTH(*driver.loc.back()); } + YY_BREAK +case 224: +YY_RULE_SETUP +#line 635 "seclang-scanner.ll" +{ return p::make_VARIABLE_FULL_REQUEST(*driver.loc.back()); } + YY_BREAK +case 225: +YY_RULE_SETUP +#line 636 "seclang-scanner.ll" +{ return p::make_VARIABLE_INBOUND_DATA_ERROR(*driver.loc.back()); } + YY_BREAK +case 226: +YY_RULE_SETUP +#line 637 "seclang-scanner.ll" +{ return p::make_VARIABLE_MATCHED_VAR_NAME(*driver.loc.back()); } + YY_BREAK +case 227: +YY_RULE_SETUP +#line 638 "seclang-scanner.ll" +{ return p::make_VARIABLE_MATCHED_VAR(*driver.loc.back()); } + YY_BREAK +case 228: +YY_RULE_SETUP +#line 639 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_CRLF_LF_LINES(*driver.loc.back()); } + YY_BREAK +case 229: +YY_RULE_SETUP +#line 640 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_DATA_AFTER(*driver.loc.back()); } + YY_BREAK +case 230: +YY_RULE_SETUP +#line 641 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_FILE_LIMIT_EXCEEDED(*driver.loc.back()); } + YY_BREAK +case 231: +YY_RULE_SETUP +#line 642 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_HEADER_FOLDING(*driver.loc.back()); } + YY_BREAK +case 232: +YY_RULE_SETUP +#line 643 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_INVALID_HEADER_FOLDING(*driver.loc.back()); } + YY_BREAK +case 233: +YY_RULE_SETUP +#line 644 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_INVALID_QUOTING(*driver.loc.back()); } + YY_BREAK +case 234: +YY_RULE_SETUP +#line 645 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_STRICT_ERROR(*driver.loc.back()); } + YY_BREAK +case 235: +YY_RULE_SETUP +#line 646 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_UNMATCHED_BOUNDARY(*driver.loc.back()); } + YY_BREAK +case 236: +YY_RULE_SETUP +#line 647 "seclang-scanner.ll" +{ return p::make_VARIABLE_OUTBOUND_DATA_ERROR(*driver.loc.back()); } + YY_BREAK +case 237: +YY_RULE_SETUP +#line 648 "seclang-scanner.ll" +{ return p::make_VARIABLE_PATH_INFO(*driver.loc.back()); } + YY_BREAK +case 238: +YY_RULE_SETUP +#line 649 "seclang-scanner.ll" +{ return p::make_VARIABLE_QUERY_STRING(*driver.loc.back()); } + YY_BREAK +case 239: +YY_RULE_SETUP +#line 650 "seclang-scanner.ll" +{ return p::make_VARIABLE_REMOTE_ADDR(*driver.loc.back()); } + YY_BREAK +case 240: +YY_RULE_SETUP +#line 651 "seclang-scanner.ll" +{ return p::make_VARIABLE_REMOTE_HOST(*driver.loc.back()); } + YY_BREAK +case 241: +YY_RULE_SETUP +#line 652 "seclang-scanner.ll" +{ return p::make_VARIABLE_REMOTE_PORT(*driver.loc.back()); } + YY_BREAK +case 242: +YY_RULE_SETUP +#line 653 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQBODY_ERROR_MSG(*driver.loc.back()); } + YY_BREAK +case 243: +YY_RULE_SETUP +#line 654 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQBODY_ERROR(*driver.loc.back()); } + YY_BREAK +case 244: +YY_RULE_SETUP +#line 655 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQBODY_PROCESSOR_ERROR_MSG(*driver.loc.back()); } + YY_BREAK +case 245: +YY_RULE_SETUP +#line 656 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQBODY_PROCESSOR_ERROR(*driver.loc.back()); } + YY_BREAK +case 246: +YY_RULE_SETUP +#line 657 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQBODY_PROCESSOR(*driver.loc.back()); } + YY_BREAK +case 247: +YY_RULE_SETUP +#line 658 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_BASENAME(*driver.loc.back()); } + YY_BREAK +case 248: +YY_RULE_SETUP +#line 659 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_BODY_LENGTH(*driver.loc.back()); } + YY_BREAK +case 249: +YY_RULE_SETUP +#line 660 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_BODY(*driver.loc.back()); } + YY_BREAK +case 250: +YY_RULE_SETUP +#line 661 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_FILE_NAME(*driver.loc.back()); } + YY_BREAK +case 251: +YY_RULE_SETUP +#line 662 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_HEADERS_NAMES(*driver.loc.back()); } + YY_BREAK +case 252: +YY_RULE_SETUP +#line 663 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_LINE(*driver.loc.back()); } + YY_BREAK +case 253: +YY_RULE_SETUP +#line 664 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_METHOD(*driver.loc.back()); } + YY_BREAK +case 254: +YY_RULE_SETUP +#line 665 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_PROTOCOL(*driver.loc.back()); } + YY_BREAK +case 255: +YY_RULE_SETUP +#line 666 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_URI_RAW(*driver.loc.back()); } + YY_BREAK +case 256: +YY_RULE_SETUP +#line 667 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_URI(*driver.loc.back()); } + YY_BREAK +case 257: +YY_RULE_SETUP +#line 668 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESOURCE(*driver.loc.back()); } + YY_BREAK +case 258: +YY_RULE_SETUP +#line 669 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESPONSE_BODY(*driver.loc.back()); } + YY_BREAK +case 259: +YY_RULE_SETUP +#line 670 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESPONSE_CONTENT_LENGTH(*driver.loc.back()); } + YY_BREAK +case 260: +YY_RULE_SETUP +#line 671 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESPONSE_CONTENT_TYPE(*driver.loc.back()); } + YY_BREAK +case 261: +YY_RULE_SETUP +#line 672 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESPONSE_HEADERS_NAMES(*driver.loc.back()); } + YY_BREAK +case 262: +YY_RULE_SETUP +#line 673 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESPONSE_PROTOCOL(*driver.loc.back()); } + YY_BREAK +case 263: +YY_RULE_SETUP +#line 674 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESPONSE_STATUS(*driver.loc.back()); } + YY_BREAK +case 264: +YY_RULE_SETUP +#line 675 "seclang-scanner.ll" +{ return p::make_VARIABLE_SERVER_ADDR(*driver.loc.back()); } + YY_BREAK +case 265: +YY_RULE_SETUP +#line 676 "seclang-scanner.ll" +{ return p::make_VARIABLE_SERVER_NAME(*driver.loc.back()); } + YY_BREAK +case 266: +YY_RULE_SETUP +#line 677 "seclang-scanner.ll" +{ return p::make_VARIABLE_SERVER_PORT(*driver.loc.back()); } + YY_BREAK +case 267: +YY_RULE_SETUP +#line 678 "seclang-scanner.ll" +{ return p::make_VARIABLE_SESSION_ID(*driver.loc.back()); } + YY_BREAK +case 268: +YY_RULE_SETUP +#line 679 "seclang-scanner.ll" +{ return p::make_VARIABLE_UNIQUE_ID(*driver.loc.back()); } + YY_BREAK +case 269: +YY_RULE_SETUP +#line 680 "seclang-scanner.ll" +{ return p::make_VARIABLE_URL_ENCODED_ERROR(*driver.loc.back()); } + YY_BREAK +case 270: +YY_RULE_SETUP +#line 681 "seclang-scanner.ll" +{ return p::make_VARIABLE_USER_ID(*driver.loc.back()); } + YY_BREAK +case 271: +YY_RULE_SETUP +#line 682 "seclang-scanner.ll" +{ return p::make_VARIABLE_ARGS(*driver.loc.back()); } + YY_BREAK +case 272: +YY_RULE_SETUP +#line 683 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS(*driver.loc.back()); } + YY_BREAK +case 273: +YY_RULE_SETUP +#line 684 "seclang-scanner.ll" +{ return p::make_VARIABLE_ARGS_GET(*driver.loc.back()); } + YY_BREAK +case 274: +YY_RULE_SETUP +#line 685 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_GET(*driver.loc.back()); } + YY_BREAK +case 275: +YY_RULE_SETUP +#line 686 "seclang-scanner.ll" +{ return p::make_VARIABLE_ARGS_POST(*driver.loc.back()); } + YY_BREAK +case 276: +YY_RULE_SETUP +#line 687 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_ARGS_POST(*driver.loc.back()); } + YY_BREAK +case 277: +YY_RULE_SETUP +#line 688 "seclang-scanner.ll" +{ return p::make_VARIABLE_FILES_SIZES(*driver.loc.back()); } + YY_BREAK +case 278: +YY_RULE_SETUP +#line 689 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_SIZES(*driver.loc.back()); } + YY_BREAK +case 279: +YY_RULE_SETUP +#line 690 "seclang-scanner.ll" +{ return p::make_VARIABLE_FILES_NAMES(*driver.loc.back()); } + YY_BREAK +case 280: +YY_RULE_SETUP +#line 691 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_NAMES(*driver.loc.back()); } + YY_BREAK +case 281: +YY_RULE_SETUP +#line 692 "seclang-scanner.ll" +{ return p::make_VARIABLE_FILES_TMP_CONTENT(*driver.loc.back()); } + YY_BREAK +case 282: +YY_RULE_SETUP +#line 693 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_TMP_CONTENT(*driver.loc.back()); } + YY_BREAK +case 283: +YY_RULE_SETUP +#line 694 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_FILENAME(*driver.loc.back()); } + YY_BREAK +case 284: +YY_RULE_SETUP +#line 695 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MULTIPART_FILENAME(*driver.loc.back()); } + YY_BREAK +case 285: +YY_RULE_SETUP +#line 696 "seclang-scanner.ll" +{ return p::make_VARIABLE_MULTIPART_NAME(*driver.loc.back()); } + YY_BREAK +case 286: +YY_RULE_SETUP +#line 697 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MULTIPART_NAME(*driver.loc.back()); } + YY_BREAK +case 287: +YY_RULE_SETUP +#line 698 "seclang-scanner.ll" +{ return p::make_VARIABLE_MATCHED_VARS_NAMES(*driver.loc.back()); } + YY_BREAK +case 288: +YY_RULE_SETUP +#line 699 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MATCHED_VARS_NAMES(*driver.loc.back()); } + YY_BREAK +case 289: +YY_RULE_SETUP +#line 700 "seclang-scanner.ll" +{ return p::make_VARIABLE_MATCHED_VARS(*driver.loc.back()); } + YY_BREAK +case 290: +YY_RULE_SETUP +#line 701 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_MATCHED_VARS(*driver.loc.back()); } + YY_BREAK +case 291: +YY_RULE_SETUP +#line 702 "seclang-scanner.ll" +{ return p::make_VARIABLE_FILES(*driver.loc.back()); } + YY_BREAK +case 292: +YY_RULE_SETUP +#line 703 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES(*driver.loc.back()); } + YY_BREAK +case 293: +YY_RULE_SETUP +#line 704 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_COOKIES(*driver.loc.back()); } + YY_BREAK +case 294: +YY_RULE_SETUP +#line 705 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_COOKIES(*driver.loc.back()); } + YY_BREAK +case 295: +YY_RULE_SETUP +#line 706 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_HEADERS(*driver.loc.back()); } + YY_BREAK +case 296: +YY_RULE_SETUP +#line 707 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_HEADERS(*driver.loc.back()); } + YY_BREAK +case 297: +YY_RULE_SETUP +#line 708 "seclang-scanner.ll" +{ return p::make_VARIABLE_RESPONSE_HEADERS(*driver.loc.back()); } + YY_BREAK +case 298: +YY_RULE_SETUP +#line 709 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RESPONSE_HEADERS(*driver.loc.back()); } + YY_BREAK +case 299: +YY_RULE_SETUP +#line 710 "seclang-scanner.ll" +{ return p::make_VARIABLE_GEO(*driver.loc.back()); } + YY_BREAK +case 300: +YY_RULE_SETUP +#line 711 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_GEO(*driver.loc.back()); } + YY_BREAK +case 301: +YY_RULE_SETUP +#line 712 "seclang-scanner.ll" +{ return p::make_VARIABLE_REQUEST_COOKIES_NAMES(*driver.loc.back()); } + YY_BREAK +case 302: +YY_RULE_SETUP +#line 713 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_REQUEST_COOKIES_NAMES(*driver.loc.back()); } + YY_BREAK +case 303: +YY_RULE_SETUP +#line 714 "seclang-scanner.ll" +{ return p::make_VARIABLE_RULE(*driver.loc.back()); } + YY_BREAK +case 304: +YY_RULE_SETUP +#line 715 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_RULE(*driver.loc.back()); } + YY_BREAK +case 305: +YY_RULE_SETUP +#line 716 "seclang-scanner.ll" +{ return p::make_VARIABLE_FILES_TMP_NAMES(*driver.loc.back()); } + YY_BREAK +case 306: +YY_RULE_SETUP +#line 717 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_FILES_TMP_NAMES(*driver.loc.back()); } + YY_BREAK +case 307: +YY_RULE_SETUP +#line 718 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_XML(*driver.loc.back()); } + YY_BREAK +case 308: +YY_RULE_SETUP +#line 719 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_RUN_TIME_VAR_XML(*driver.loc.back()); } + YY_BREAK +case 309: +YY_RULE_SETUP +#line 720 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_ENV(*driver.loc.back()); } + YY_BREAK +case 310: +YY_RULE_SETUP +#line 721 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_RUN_TIME_VAR_ENV(*driver.loc.back()); } + YY_BREAK +case 311: +YY_RULE_SETUP +#line 724 "seclang-scanner.ll" +{ return p::make_VARIABLE_IP(*driver.loc.back()); } + YY_BREAK +case 312: +YY_RULE_SETUP +#line 725 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_IP(*driver.loc.back()); } + YY_BREAK +case 313: +YY_RULE_SETUP +#line 726 "seclang-scanner.ll" +{ return p::make_VARIABLE_GLOBAL(*driver.loc.back()); } + YY_BREAK +case 314: +YY_RULE_SETUP +#line 727 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_GLOBAL(*driver.loc.back()); } + YY_BREAK +case 315: +YY_RULE_SETUP +#line 728 "seclang-scanner.ll" +{ return p::make_VARIABLE_SESSION(*driver.loc.back()); } + YY_BREAK +case 316: +YY_RULE_SETUP +#line 729 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_SESSION(*driver.loc.back()); } + YY_BREAK +case 317: +YY_RULE_SETUP +#line 730 "seclang-scanner.ll" +{ return p::make_VARIABLE_USER(*driver.loc.back()); } + YY_BREAK +case 318: +YY_RULE_SETUP +#line 731 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_USER(*driver.loc.back()); } + YY_BREAK +case 319: +YY_RULE_SETUP +#line 732 "seclang-scanner.ll" +{ return p::make_VARIABLE_TX(*driver.loc.back()); } + YY_BREAK +case 320: +YY_RULE_SETUP +#line 733 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VAR_PARAMETER); return p::make_VARIABLE_TX(*driver.loc.back()); } + YY_BREAK +case 321: +YY_RULE_SETUP +#line 736 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_BLD(yytext, *driver.loc.back()); } + YY_BREAK +case 322: +YY_RULE_SETUP +#line 737 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_DUR(yytext, *driver.loc.back()); } + YY_BREAK +case 323: +YY_RULE_SETUP +#line 738 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_HSV(yytext, *driver.loc.back()); } + YY_BREAK +case 324: +YY_RULE_SETUP +#line 739 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_REMOTE_USER(yytext, *driver.loc.back()); } + YY_BREAK +case 325: +YY_RULE_SETUP +#line 740 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_DAY(yytext, *driver.loc.back()); } + YY_BREAK +case 326: +YY_RULE_SETUP +#line 741 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_EPOCH(yytext, *driver.loc.back()); } + YY_BREAK +case 327: +YY_RULE_SETUP +#line 742 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_HOUR(yytext, *driver.loc.back()); } + YY_BREAK +case 328: +YY_RULE_SETUP +#line 743 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_MIN(yytext, *driver.loc.back()); } + YY_BREAK +case 329: +YY_RULE_SETUP +#line 744 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_MON(yytext, *driver.loc.back()); } + YY_BREAK +case 330: +YY_RULE_SETUP +#line 745 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_SEC(yytext, *driver.loc.back()); } + YY_BREAK +case 331: +YY_RULE_SETUP +#line 746 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_YEAR(yytext, *driver.loc.back()); } + YY_BREAK +case 332: +YY_RULE_SETUP +#line 747 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME(yytext, *driver.loc.back()); } + YY_BREAK +case 333: +YY_RULE_SETUP +#line 748 "seclang-scanner.ll" +{ return p::make_RUN_TIME_VAR_TIME_WDAY(yytext, *driver.loc.back()); } + YY_BREAK +case 334: +YY_RULE_SETUP +#line 751 "seclang-scanner.ll" +{ driver.error (*driver.loc.back(), "Variable VARIABLE_WEBSERVER_ERROR_LOG is not supported by libModSecurity", ""); throw p::syntax_error(*driver.loc.back(), "");} + YY_BREAK +case 335: +/* rule 335 can match eol */ +YY_RULE_SETUP +#line 752 "seclang-scanner.ll" +{ return p::make_VARIABLE_STATUS(*driver.loc.back()); } + YY_BREAK +case 336: +YY_RULE_SETUP +#line 755 "seclang-scanner.ll" +{ return p::make_VAR_EXCLUSION(*driver.loc.back()); } + YY_BREAK +case 337: +YY_RULE_SETUP +#line 756 "seclang-scanner.ll" +{ return p::make_VAR_COUNT(*driver.loc.back()); } + YY_BREAK + + +case 338: +/* rule 338 can match eol */ +YY_RULE_SETUP +#line 761 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VARIABLE); return p::make_DICT_ELEMENT_REGEXP(std::string(yytext, 1, yyleng-2), *driver.loc.back()); } + YY_BREAK +case 339: +/* rule 339 can match eol */ +YY_RULE_SETUP +#line 762 "seclang-scanner.ll" +{ BEGIN(EXPECTING_VARIABLE); return p::make_DICT_ELEMENT(yytext, *driver.loc.back()); } + YY_BREAK +case 340: +YY_RULE_SETUP +#line 763 "seclang-scanner.ll" +{ } + YY_BREAK +case 341: +YY_RULE_SETUP +#line 764 "seclang-scanner.ll" +{ BEGIN(LEXING_ERROR_ACTION); yyless(0); } + YY_BREAK + + +case 342: +YY_RULE_SETUP +#line 768 "seclang-scanner.ll" +{ BEGIN(EXPECTING_OPERATOR); } + YY_BREAK +case 343: +/* rule 343 can match eol */ +YY_RULE_SETUP +#line 769 "seclang-scanner.ll" +{ BEGIN(EXPECTING_OPERATOR); } + YY_BREAK +case 344: +/* rule 344 can match eol */ +YY_RULE_SETUP +#line 770 "seclang-scanner.ll" +{ BEGIN(EXPECTING_OPERATOR); } + YY_BREAK + + +case 345: +YY_RULE_SETUP +#line 774 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_GEOLOOKUP(yytext, *driver.loc.back()); } + YY_BREAK +case 346: +YY_RULE_SETUP +#line 775 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_WITHIN(yytext, *driver.loc.back()); } + YY_BREAK +case 347: +YY_RULE_SETUP +#line 776 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_CONTAINS_WORD(yytext, *driver.loc.back()); } + YY_BREAK +case 348: +YY_RULE_SETUP +#line 777 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_CONTAINS(yytext, *driver.loc.back()); } + YY_BREAK +case 349: +YY_RULE_SETUP +#line 778 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_ENDS_WITH(yytext, *driver.loc.back()); } + YY_BREAK +case 350: +YY_RULE_SETUP +#line 779 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_EQ(yytext, *driver.loc.back()); } + YY_BREAK +case 351: +YY_RULE_SETUP +#line 780 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_GE(yytext, *driver.loc.back()); } + YY_BREAK +case 352: +YY_RULE_SETUP +#line 781 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_GT(yytext, *driver.loc.back()); } + YY_BREAK +case 353: +YY_RULE_SETUP +#line 782 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_IP_MATCH_FROM_FILE(yytext, *driver.loc.back()); } + YY_BREAK +case 354: +YY_RULE_SETUP +#line 783 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_IP_MATCH(yytext, *driver.loc.back()); } + YY_BREAK +case 355: +YY_RULE_SETUP +#line 784 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_LE(yytext, *driver.loc.back()); } + YY_BREAK +case 356: +YY_RULE_SETUP +#line 785 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_LT(yytext, *driver.loc.back()); } + YY_BREAK +case 357: +YY_RULE_SETUP +#line 786 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_PM_FROM_FILE(yytext, *driver.loc.back()); } + YY_BREAK +case 358: +YY_RULE_SETUP +#line 787 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_PM(yytext, *driver.loc.back()); } + YY_BREAK +case 359: +YY_RULE_SETUP +#line 788 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_RBL(yytext, *driver.loc.back()); } + YY_BREAK +case 360: +YY_RULE_SETUP +#line 789 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_RX(yytext, *driver.loc.back()); } + YY_BREAK +case 361: +YY_RULE_SETUP +#line 790 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_STR_EQ(yytext, *driver.loc.back()); } + YY_BREAK +case 362: +YY_RULE_SETUP +#line 791 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_STR_MATCH(yytext, *driver.loc.back()); } + YY_BREAK +case 363: +YY_RULE_SETUP +#line 792 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_BEGINS_WITH(yytext, *driver.loc.back()); } + YY_BREAK +case 364: +YY_RULE_SETUP +#line 793 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_INSPECT_FILE(yytext, *driver.loc.back()); } + YY_BREAK +case 365: +YY_RULE_SETUP +#line 794 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_FUZZY_HASH(yytext, *driver.loc.back()); } + YY_BREAK +case 366: +YY_RULE_SETUP +#line 795 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_VALIDATE_BYTE_RANGE(yytext, *driver.loc.back()); } + YY_BREAK +case 367: +YY_RULE_SETUP +#line 796 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_VALIDATE_DTD(yytext, *driver.loc.back()); } + YY_BREAK +case 368: +YY_RULE_SETUP +#line 797 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_VALIDATE_HASH(yytext, *driver.loc.back()); } + YY_BREAK +case 369: +YY_RULE_SETUP +#line 798 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_VALIDATE_SCHEMA(yytext, *driver.loc.back()); } + YY_BREAK +case 370: +YY_RULE_SETUP +#line 799 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_VERIFY_CC(yytext, *driver.loc.back()); } + YY_BREAK +case 371: +YY_RULE_SETUP +#line 800 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_VERIFY_CPF(yytext, *driver.loc.back()); } + YY_BREAK +case 372: +YY_RULE_SETUP +#line 801 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_VERIFY_SSN(yytext, *driver.loc.back()); } + YY_BREAK +case 373: +YY_RULE_SETUP +#line 802 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_GSB_LOOKUP(yytext, *driver.loc.back()); } + YY_BREAK +case 374: +YY_RULE_SETUP +#line 803 "seclang-scanner.ll" +{ BEGIN(EXPECTING_PARAMETER); return p::make_OPERATOR_RSUB(yytext, *driver.loc.back()); } + YY_BREAK +case 375: +YY_RULE_SETUP +#line 804 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_UNCONDITIONAL_MATCH(yytext, *driver.loc.back()); } + YY_BREAK +case 376: +YY_RULE_SETUP +#line 805 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_SQLI(yytext, *driver.loc.back()); } + YY_BREAK +case 377: +YY_RULE_SETUP +#line 806 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_DETECT_XSS(yytext, *driver.loc.back()); } + YY_BREAK +case 378: +YY_RULE_SETUP +#line 807 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_URL_ENCODING(yytext, *driver.loc.back()); } + YY_BREAK +case 379: +YY_RULE_SETUP +#line 808 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_VALIDATE_UTF8_ENCODING(yytext, *driver.loc.back()); } + YY_BREAK +case 380: +YY_RULE_SETUP +#line 810 "seclang-scanner.ll" +{ BEGIN(EXPECTING_OPERATOR); return p::make_NOT(*driver.loc.back()); } + YY_BREAK +case 381: +YY_RULE_SETUP +#line 811 "seclang-scanner.ll" +{ BEGIN(NO_OP_INFORMED); yyless(0); } + YY_BREAK + + +case 382: +/* rule 382 can match eol */ +YY_RULE_SETUP +#line 816 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_OPERATOR_RX_CONTENT_ONLY(yytext, *driver.loc.back()); } + YY_BREAK + + +case 383: +YY_RULE_SETUP +#line 821 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); } + YY_BREAK +case 384: +YY_RULE_SETUP +#line 822 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); } + YY_BREAK +case 385: +/* rule 385 can match eol */ +YY_RULE_SETUP +#line 823 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); } + YY_BREAK +case 386: +/* rule 386 can match eol */ +YY_RULE_SETUP +#line 824 "seclang-scanner.ll" +{ BEGIN(EXPECTING_ACTIONS); } + YY_BREAK + + +case 387: +/* rule 387 can match eol */ +YY_RULE_SETUP +#line 829 "seclang-scanner.ll" +{ BEGIN(TRANSACTION_FROM_OPERATOR_TO_ACTIONS); return p::make_FREE_TEXT(yytext+1, *driver.loc.back()); } + YY_BREAK + + +case 388: +YY_RULE_SETUP +#line 833 "seclang-scanner.ll" +{ return p::make_PIPE(*driver.loc.back()); } + YY_BREAK + + +case 389: +YY_RULE_SETUP +#line 837 "seclang-scanner.ll" +{ } + YY_BREAK +case 390: +/* rule 390 can match eol */ +YY_RULE_SETUP +#line 838 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 391: +/* rule 391 can match eol */ +YY_RULE_SETUP +#line 839 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK + + +case 392: +/* rule 392 can match eol */ +YY_RULE_SETUP +#line 843 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 393: +/* rule 393 can match eol */ +YY_RULE_SETUP +#line 844 "seclang-scanner.ll" +{ driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK +case 394: +/* rule 394 can match eol */ +YY_RULE_SETUP +#line 845 "seclang-scanner.ll" +{ BEGIN(INITIAL); driver.loc.back()->lines(1); driver.loc.back()->step(); } + YY_BREAK + +case 395: +YY_RULE_SETUP +#line 850 "seclang-scanner.ll" +{ BEGIN(LEXING_ERROR); yyless(0); } + YY_BREAK +case 396: +YY_RULE_SETUP +#line 852 "seclang-scanner.ll" +{ driver.error (*driver.loc.back(), "Invalid input: ", yytext); throw p::syntax_error(*driver.loc.back(), ""); } + YY_BREAK +case 397: +YY_RULE_SETUP +#line 853 "seclang-scanner.ll" +{ driver.error (*driver.loc.back(), "Invalid action: ", yytext); throw p::syntax_error(*driver.loc.back(), ""); } + YY_BREAK +case YY_STATE_EOF(INITIAL): +case YY_STATE_EOF(TRANSACTION_TO_VARIABLE): +case YY_STATE_EOF(EXPECTING_VARIABLE): +case YY_STATE_EOF(TRANSACTION_FROM_VARIABLE_TO_OPERATOR): +case YY_STATE_EOF(EXPECTING_OPERATOR): +case YY_STATE_EOF(COMMENT): +case YY_STATE_EOF(EXPECTING_VAR_PARAMETER): +case YY_STATE_EOF(EXPECTING_PARAMETER): +case YY_STATE_EOF(EXPECTING_ACTIONS): +case YY_STATE_EOF(TRANSACTION_FROM_OPERATOR_TO_ACTIONS): +case YY_STATE_EOF(TRANSACTION_FROM_DIRECTIVE_TO_ACTIONS): +case YY_STATE_EOF(NO_OP_INFORMED): +case YY_STATE_EOF(LEXING_ERROR): +case YY_STATE_EOF(LEXING_ERROR_ACTION): +case YY_STATE_EOF(SETVAR_ACTION_WAITING_VARIABLE): +case YY_STATE_EOF(SETVAR_ACTION_WAITING_OPERATION): +case YY_STATE_EOF(SETVAR_ACTION_WAITING_CONTENT): +#line 856 "seclang-scanner.ll" +{ + if (driver.ref.size() > 1) { + driver.ref.pop_back(); + } + + if (driver.loc.size() > 1) { + yy::location *l = driver.loc.back(); + driver.loc.pop_back(); + delete l; + } + + if (yyin) { + fclose(yyin); + } + + yypop_buffer_state(); + if (!YY_CURRENT_BUFFER) { + return p::make_END(*driver.loc.back()); + } +} + YY_BREAK +case 398: +YY_RULE_SETUP +#line 878 "seclang-scanner.ll" +{ + const char *file = strchr(yytext, ' ') + 1; + std::string fi = modsecurity::utils::find_resource(file, driver.ref.back()); + if (fi.empty() == true) { + BEGIN(INITIAL); + driver.error (*driver.loc.back(), "", file + std::string(": Not able to open file.")); + throw p::syntax_error(*driver.loc.back(), ""); + } + std::list files = modsecurity::utils::expandEnv(fi, 0); + files.reverse(); + for (auto& s: files) { + std::string f = modsecurity::utils::find_resource(s, driver.ref.back()); + yyin = fopen(f.c_str(), "r" ); + if (!yyin) { + BEGIN(INITIAL); + driver.error (*driver.loc.back(), "", s + std::string(": Not able to open file.")); + throw p::syntax_error(*driver.loc.back(), ""); + } + driver.ref.push_back(f); + driver.loc.push_back(new yy::location()); + yypush_buffer_state(yy_create_buffer( yyin, YY_BUF_SIZE )); + } +} + YY_BREAK +case 399: +YY_RULE_SETUP +#line 902 "seclang-scanner.ll" +{ + const char *file = strchr(yytext, ' ') + 1; + char *f = strdup(file + 1); + f[strlen(f)-1] = '\0'; + std::string fi = modsecurity::utils::find_resource(f, driver.ref.back()); + if (fi.empty() == true) { + BEGIN(INITIAL); + driver.error (*driver.loc.back(), "", file + std::string(": Not able to open file.")); + throw p::syntax_error(*driver.loc.back(), ""); + } + std::list files = modsecurity::utils::expandEnv(fi, 0); + files.reverse(); + for (auto& s: files) { + std::string f = modsecurity::utils::find_resource(s, driver.ref.back()); + yyin = fopen(f.c_str(), "r" ); + if (!yyin) { + BEGIN(INITIAL); + driver.error (*driver.loc.back(), "", s + std::string(": Not able to open file.")); + throw p::syntax_error(*driver.loc.back(), ""); + } + driver.ref.push_back(f.c_str()); + driver.loc.push_back(new yy::location()); + yypush_buffer_state(yy_create_buffer( yyin, YY_BUF_SIZE )); + } + free(f); +} + YY_BREAK +case 400: +/* rule 400 can match eol */ +YY_RULE_SETUP +#line 929 "seclang-scanner.ll" +{ + HttpsClient c; + std::string key; + std::string url; + + std::vector conf = modsecurity::utils::string::split(yytext, ' '); + key = conf[1]; + url = conf[2]; + c.setKey(key); + + driver.ref.push_back(url); + driver.loc.push_back(new yy::location()); + YY_BUFFER_STATE temp = YY_CURRENT_BUFFER; + yypush_buffer_state(temp); + + bool ret = c.download(url); + + if (ret == false) { + BEGIN(INITIAL); + if (driver.m_remoteRulesActionOnFailed == Rules::OnFailedRemoteRulesAction::WarnOnFailedRemoteRulesAction) { + /** TODO: Implement the server logging mechanism. */ + } + if (driver.m_remoteRulesActionOnFailed == Rules::OnFailedRemoteRulesAction::AbortOnFailedRemoteRulesAction) { + driver.error (*driver.loc.back(), "", yytext + std::string(" - Failed to download: ") + c.error); + throw p::syntax_error(*driver.loc.back(), ""); + } + } + + yy_scan_string(c.content.c_str()); +} + YY_BREAK +case 401: +YY_RULE_SETUP +#line 961 "seclang-scanner.ll" +ECHO; + YY_BREAK +#line 6518 "seclang-scanner.cc" + + 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; +/* %if-c-only */ + YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + 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 + { +/* %% [14.0] code to do back-up for compressed tables and set up yy_cp goes here */ + yy_cp = (yy_last_accepting_cpos); + yy_current_state = (yy_last_accepting_state); + goto yy_find_action; + } + } + + else switch ( yy_get_next_buffer( ) ) + { + case EOB_ACT_END_OF_FILE: + { + (yy_did_buffer_switch_on_eof) = 0; + + if ( yywrap( ) ) + { + /* Note: because we've taken care in + * yy_get_next_buffer() to have set up + * yytext, we can now set up + * yy_c_buf_p so that if some total + * hoser (like flex itself) wants to + * call the scanner after we return the + * YY_NULL, it'll still work - another + * YY_NULL will get returned. + */ + (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; + + yy_act = YY_STATE_EOF(YY_START); + goto do_action; + } + + else + { + if ( ! (yy_did_buffer_switch_on_eof) ) + YY_NEW_FILE; + } + break; + } + + case EOB_ACT_CONTINUE_SCAN: + (yy_c_buf_p) = + (yytext_ptr) + yy_amount_of_matched_text; + + yy_current_state = yy_get_previous_state( ); + + yy_cp = (yy_c_buf_p); + yy_bp = (yytext_ptr) + YY_MORE_ADJ; + goto yy_match; + + case EOB_ACT_LAST_MATCH: + (yy_c_buf_p) = + &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; + + yy_current_state = yy_get_previous_state( ); + + yy_cp = (yy_c_buf_p); + yy_bp = (yytext_ptr) + YY_MORE_ADJ; + goto yy_find_action; + } + break; + } + + default: + YY_FATAL_ERROR( + "fatal flex scanner internal error--no action found" ); + } /* end of action switch */ + } /* end of scanning one token */ + } /* end of user's declarations */ +} /* end of yylex */ +/* %ok-for-header */ + +/* %if-c++-only */ +/* %not-for-header */ +/* %ok-for-header */ + +/* %endif */ + +/* 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 + */ +/* %if-c-only */ +static int yy_get_next_buffer (void) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; + char *source = (yytext_ptr); + int number_to_move, i; + int ret_val; + + if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) + YY_FATAL_ERROR( + "fatal flex scanner internal error--end of buffer missed" ); + + if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) + { /* Don't try to fill the buffer, so this is an EOF. */ + if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) + { + /* We matched a single character, the EOB, so + * treat this as a final EOF. + */ + return EOB_ACT_END_OF_FILE; + } + + else + { + /* We matched some text prior to the EOB, first + * process it. + */ + return EOB_ACT_LAST_MATCH; + } + } + + /* Try to read more data. */ + + /* First move last chars to start of buffer. */ + number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1); + + for ( i = 0; i < number_to_move; ++i ) + *(dest++) = *(source++); + + if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) + /* don't do the read, it's not guaranteed to return an EOF, + * just force an EOF + */ + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; + + else + { + int num_to_read = + YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; + + while ( num_to_read <= 0 ) + { /* Not enough room in the buffer - grow it. */ + + /* just a shorter name for the current buffer */ + YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE; + + int yy_c_buf_p_offset = + (int) ((yy_c_buf_p) - b->yy_ch_buf); + + if ( b->yy_is_our_buffer ) + { + int new_size = b->yy_buf_size * 2; + + if ( new_size <= 0 ) + b->yy_buf_size += b->yy_buf_size / 8; + else + b->yy_buf_size *= 2; + + b->yy_ch_buf = (char *) + /* Include room in for 2 EOB chars. */ + yyrealloc((void *) b->yy_ch_buf,(yy_size_t) (b->yy_buf_size + 2) ); + } + else + /* Can't grow it, we don't own it. */ + b->yy_ch_buf = NULL; + + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( + "fatal error - scanner input buffer overflow" ); + + (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; + + num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - + number_to_move - 1; + + } + + if ( num_to_read > YY_READ_BUF_SIZE ) + num_to_read = YY_READ_BUF_SIZE; + + /* Read in more data. */ + YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), + (yy_n_chars), num_to_read ); + + YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); + } + + if ( (yy_n_chars) == 0 ) + { + if ( number_to_move == YY_MORE_ADJ ) + { + ret_val = EOB_ACT_END_OF_FILE; + yyrestart(yyin ); + } + + else + { + ret_val = EOB_ACT_LAST_MATCH; + YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = + YY_BUFFER_EOF_PENDING; + } + } + + else + ret_val = EOB_ACT_CONTINUE_SCAN; + + if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { + /* Extend the array by 50%, plus the number we really need. */ + int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); + YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,(yy_size_t) new_size ); + if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); + } + + (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 */ + +/* %if-c-only */ +/* %not-for-header */ + static yy_state_type yy_get_previous_state (void) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + yy_state_type yy_current_state; + char *yy_cp; + +/* %% [15.0] code to get the start state into yy_current_state goes here */ + yy_current_state = (yy_start); + + for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) + { +/* %% [16.0] code to find the next state goes here */ + 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 >= 2970 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + } + + return yy_current_state; +} + +/* yy_try_NUL_trans - try to make a transition on the NUL character + * + * synopsis + * next_state = yy_try_NUL_trans( current_state ); + */ +/* %if-c-only */ + static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + int yy_is_jam; + /* %% [17.0] code to find the next state, and perhaps do backing up, goes here */ + 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 >= 2970 ) + yy_c = yy_meta[yy_c]; + } + yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c]; + yy_is_jam = (yy_current_state == 2969); + + return yy_is_jam ? 0 : yy_current_state; +} + +#ifndef YY_NO_UNPUT +/* %if-c-only */ + +/* %endif */ +#endif + +/* %if-c-only */ +#ifndef YY_NO_INPUT +#ifdef __cplusplus + static int yyinput (void) +#else + static int input (void) +#endif + +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + int c; + + *(yy_c_buf_p) = (yy_hold_char); + + if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) + { + /* yy_c_buf_p now points to the character we want to return. + * If this occurs *before* the EOB characters, then it's a + * valid NUL; if not, then we've hit the end of the buffer. + */ + if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) + /* This was really a NUL. */ + *(yy_c_buf_p) = '\0'; + + else + { /* need more input */ + int offset = (int) ((yy_c_buf_p) - (yytext_ptr)); + ++(yy_c_buf_p); + + switch ( yy_get_next_buffer( ) ) + { + case EOB_ACT_LAST_MATCH: + /* This happens because yy_g_n_b() + * sees that we've accumulated a + * token and flags that we need to + * try matching the token before + * proceeding. But for input(), + * there's no matching to consider. + * So convert the EOB_ACT_LAST_MATCH + * to EOB_ACT_END_OF_FILE. + */ + + /* Reset buffer status. */ + yyrestart(yyin ); + + /*FALLTHROUGH*/ + + case EOB_ACT_END_OF_FILE: + { + if ( yywrap( ) ) + return 0; + + if ( ! (yy_did_buffer_switch_on_eof) ) + YY_NEW_FILE; +#ifdef __cplusplus + return yyinput(); +#else + return input(); +#endif + } + + case EOB_ACT_CONTINUE_SCAN: + (yy_c_buf_p) = (yytext_ptr) + offset; + break; + } + } + } + + c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ + *(yy_c_buf_p) = '\0'; /* preserve yytext */ + (yy_hold_char) = *++(yy_c_buf_p); + +/* %% [19.0] update BOL and yylineno */ + + return c; +} +/* %if-c-only */ +#endif /* ifndef YY_NO_INPUT */ +/* %endif */ + +/** 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 . + */ +/* %if-c-only */ + void yyrestart (FILE * input_file ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + + 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( ); +} + +/* %if-c++-only */ +/* %endif */ + +/** Switch to a different input buffer. + * @param new_buffer The new input buffer. + * + */ +/* %if-c-only */ + void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + + /* 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; +} + +/* %if-c-only */ +static void yy_load_buffer_state (void) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; + (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; +/* %if-c-only */ + yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + (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. + */ +/* %if-c-only */ + YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + YY_BUFFER_STATE b; + + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); + + b->yy_buf_size = size; + + /* yy_ch_buf has to be 2 characters longer than the size given because + * we need to put in 2 end-of-buffer characters. + */ + b->yy_ch_buf = (char *) yyalloc((yy_size_t) (b->yy_buf_size + 2) ); + if ( ! b->yy_ch_buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); + + b->yy_is_our_buffer = 1; + + yy_init_buffer(b,file ); + + return b; +} + +/* %if-c++-only */ +/* %endif */ + +/** Destroy the buffer. + * @param b a buffer created with yy_create_buffer() + * + */ +/* %if-c-only */ + void yy_delete_buffer (YY_BUFFER_STATE b ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + + 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. + */ +/* %if-c-only */ + static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ + +{ + int oerrno = errno; + + yy_flush_buffer(b ); + +/* %if-c-only */ + b->yy_input_file = file; +/* %endif */ +/* %if-c++-only */ +/* %endif */ + 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; + } + +/* %if-c-only */ + + b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; + +/* %endif */ +/* %if-c++-only */ +/* %endif */ + 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. + * + */ +/* %if-c-only */ + void yy_flush_buffer (YY_BUFFER_STATE b ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + 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( ); +} + +/* %if-c-or-c++ */ +/** 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. + * + */ +/* %if-c-only */ +void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + 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; +} +/* %endif */ + +/* %if-c-or-c++ */ +/** Removes and deletes the top of the stack, if present. + * The next element becomes the new top. + * + */ +/* %if-c-only */ +void yypop_buffer_state (void) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + 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; + } +} +/* %endif */ + +/* %if-c-or-c++ */ +/* Allocates the stack if it does not exist. + * Guarantees space for at least one push. + */ +/* %if-c-only */ +static void yyensure_buffer_stack (void) +/* %endif */ +/* %if-c++-only */ +/* %endif */ +{ + yy_size_t num_to_alloc; + + if (!(yy_buffer_stack)) { + + /* First allocation is just for 2 elements, since we don't know if this + * scanner will even need a stack. We use 2 instead of 1 to avoid an + * immediate realloc on the next call. + */ + num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ + (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc + (num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); + + (yy_buffer_stack_max) = num_to_alloc; + (yy_buffer_stack_top) = 0; + return; + } + + if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ + + /* Increase the buffer to prepare for a possible push. */ + yy_size_t grow_size = 8 /* arbitrary grow size */; + + num_to_alloc = (yy_buffer_stack_max) + grow_size; + (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc + ((yy_buffer_stack), + num_to_alloc * sizeof(struct yy_buffer_state*) + ); + if ( ! (yy_buffer_stack) ) + YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); + + /* zero only the new slots.*/ + memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); + (yy_buffer_stack_max) = num_to_alloc; + } +} +/* %endif */ + +/* %if-c-only */ +/** Setup the input buffer state to scan directly from a user-specified character buffer. + * @param base the character buffer + * @param size the size in bytes of the character buffer + * + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) +{ + YY_BUFFER_STATE b; + + if ( size < 2 || + base[size-2] != YY_END_OF_BUFFER_CHAR || + base[size-1] != YY_END_OF_BUFFER_CHAR ) + /* They forgot to leave room for the EOB's. */ + return NULL; + + b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); + if ( ! b ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); + + b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */ + b->yy_buf_pos = b->yy_ch_buf = base; + b->yy_is_our_buffer = 0; + b->yy_input_file = NULL; + b->yy_n_chars = b->yy_buf_size; + b->yy_is_interactive = 0; + b->yy_at_bol = 1; + b->yy_fill_buffer = 0; + b->yy_buffer_status = YY_BUFFER_NEW; + + yy_switch_to_buffer(b ); + + return b; +} +/* %endif */ + +/* %if-c-only */ +/** Setup the input buffer state to scan a string. The next call to yylex() will + * scan from a @e copy of @a str. + * @param yystr a NUL-terminated string to scan + * + * @return the newly allocated buffer state object. + * @note If you want to scan bytes that may contain NUL values, then use + * yy_scan_bytes() instead. + */ +YY_BUFFER_STATE yy_scan_string (const char * yystr ) +{ + + return yy_scan_bytes(yystr,(int) strlen(yystr) ); +} +/* %endif */ + +/* %if-c-only */ +/** Setup the input buffer state to scan the given bytes. The next call to yylex() will + * scan from a @e copy of @a bytes. + * @param yybytes the byte buffer to scan + * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. + * + * @return the newly allocated buffer state object. + */ +YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len ) +{ + YY_BUFFER_STATE b; + char *buf; + yy_size_t n; + int i; + + /* Get memory for full buffer, including space for trailing EOB's. */ + n = (yy_size_t) (_yybytes_len + 2); + buf = (char *) yyalloc(n ); + if ( ! buf ) + YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); + + for ( i = 0; i < _yybytes_len; ++i ) + buf[i] = yybytes[i]; + + buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; + + b = yy_scan_buffer(buf,n ); + if ( ! b ) + YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); + + /* It's okay to grow etc. this buffer, and we should throw it + * away when we're done. + */ + b->yy_is_our_buffer = 1; + + return b; +} +/* %endif */ + +#ifndef YY_EXIT_FAILURE +#define YY_EXIT_FAILURE 2 +#endif + +/* %if-c-only */ +static void yynoreturn yy_fatal_error (const char* msg ) +{ + (void) fprintf( stderr, "%s\n", msg ); + exit( YY_EXIT_FAILURE ); +} +/* %endif */ +/* %if-c++-only */ +/* %endif */ + +/* 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. */ + +/* %if-c-only */ +/* %if-reentrant */ +/* %endif */ + +/** Get the current line number. + * + */ +int yyget_lineno (void) +{ + + return yylineno; +} + +/** Get the input stream. + * + */ +FILE *yyget_in (void) +{ + return yyin; +} + +/** Get the output stream. + * + */ +FILE *yyget_out (void) +{ + return yyout; +} + +/** Get the length of the current token. + * + */ +int yyget_leng (void) +{ + return yyleng; +} + +/** Get the current token. + * + */ + +char *yyget_text (void) +{ + return yytext; +} + +/* %if-reentrant */ +/* %endif */ + +/** Set the current line number. + * @param _line_number line number + * + */ +void yyset_lineno (int _line_number ) +{ + + yylineno = _line_number; +} + +/** Set the input stream. This does not discard the current + * input buffer. + * @param _in_str A readable stream. + * + * @see yy_switch_to_buffer + */ +void yyset_in (FILE * _in_str ) +{ + yyin = _in_str ; +} + +void yyset_out (FILE * _out_str ) +{ + yyout = _out_str ; +} + +int yyget_debug (void) +{ + return yy_flex_debug; +} + +void yyset_debug (int _bdebug ) +{ + yy_flex_debug = _bdebug ; +} + +/* %endif */ + +/* %if-reentrant */ +/* %if-bison-bridge */ +/* %endif */ +/* %endif if-c-only */ + +/* %if-c-only */ +static int yy_init_globals (void) +{ + /* Initialization is the same as for the non-reentrant scanner. + * This function is called from yylex_destroy(), so don't allocate here. + */ + + (yy_buffer_stack) = NULL; + (yy_buffer_stack_top) = 0; + (yy_buffer_stack_max) = 0; + (yy_c_buf_p) = NULL; + (yy_init) = 0; + (yy_start) = 0; + +/* Defined in main.c */ +#ifdef YY_STDINIT + yyin = stdin; + yyout = stdout; +#else + yyin = NULL; + yyout = NULL; +#endif + + /* For future reference: Set errno on error, since we are called by + * yylex_init() + */ + return 0; +} +/* %endif */ + +/* %if-c-only SNIP! this currently causes conflicts with the c++ scanner */ +/* 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( ); + +/* %if-reentrant */ +/* %endif */ + return 0; +} +/* %endif */ + +/* + * Internal utility routines. + */ + +#ifndef yytext_ptr +static void yy_flex_strncpy (char* s1, const char * s2, int n ) +{ + + int i; + for ( i = 0; i < n; ++i ) + s1[i] = s2[i]; +} +#endif + +#ifdef YY_NEED_STRLEN +static int yy_flex_strlen (const char * s ) +{ + int n; + for ( n = 0; s[n]; ++n ) + ; + + return n; +} +#endif + +void *yyalloc (yy_size_t size ) +{ + return malloc(size); +} + +void *yyrealloc (void * ptr, yy_size_t size ) +{ + + /* The cast to (char *) in the following accommodates both + * implementations that use char* generic pointers, and those + * that use void* generic pointers. It works with the latter + * because both ANSI C and C++ allow castless assignment from + * any pointer type to void*, and deal with argument conversions + * as though doing an assignment. + */ + return realloc(ptr, size); +} + +void yyfree (void * ptr ) +{ + free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ +} + +/* %if-tables-serialization definitions */ +/* %define-yytables The name for this specific scanner's tables. */ +#define YYTABLES_NAME "yytables" +/* %endif */ + +/* %ok-for-header */ + +#line 961 "seclang-scanner.ll" + + +namespace modsecurity { + +bool Driver::scan_begin () { + yy_flex_debug = trace_scanning; + + if (buffer.empty() == false) { + yy_scan_string(buffer.c_str()); + return true; + } + return false; +} + +void Driver::scan_end () { + yylex_destroy(); + BEGIN(INITIAL); +} + +} + +