2009-03-24 08:47:56 -04:00
|
|
|
#include "config.h"
|
2007-10-18 18:49:08 -04:00
|
|
|
#include "util/configyyrename.h"
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#line 3 "<stdout>"
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_INT_ALIGNED short int
|
|
|
|
|
|
|
|
|
|
/* A lexical scanner generated by flex */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define FLEX_SCANNER
|
|
|
|
|
#define YY_FLEX_MAJOR_VERSION 2
|
2016-10-20 03:46:35 -04:00
|
|
|
#define YY_FLEX_MINOR_VERSION 6
|
2019-04-05 11:39:10 -04:00
|
|
|
#define YY_FLEX_SUBMINOR_VERSION 4
|
2015-12-01 03:11:48 -05:00
|
|
|
#if YY_FLEX_SUBMINOR_VERSION > 0
|
|
|
|
|
#define FLEX_BETA
|
|
|
|
|
#endif
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* First, we deal with platform-specific or compiler-specific issues. */
|
|
|
|
|
|
|
|
|
|
/* begin standard C headers. */
|
2007-10-18 18:49:08 -04:00
|
|
|
#include <stdio.h>
|
2015-12-01 03:11:48 -05:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
/* end standard C headers. */
|
|
|
|
|
|
|
|
|
|
/* flex integer type definitions */
|
|
|
|
|
|
|
|
|
|
#ifndef FLEXINT_H
|
|
|
|
|
#define FLEXINT_H
|
|
|
|
|
|
|
|
|
|
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
|
2007-10-19 04:37:27 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
|
|
|
|
|
* if you want the limit (max/min) macros for int types.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __STDC_LIMIT_MACROS
|
|
|
|
|
#define __STDC_LIMIT_MACROS 1
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
typedef int8_t flex_int8_t;
|
|
|
|
|
typedef uint8_t flex_uint8_t;
|
|
|
|
|
typedef int16_t flex_int16_t;
|
|
|
|
|
typedef uint16_t flex_uint16_t;
|
|
|
|
|
typedef int32_t flex_int32_t;
|
|
|
|
|
typedef uint32_t flex_uint32_t;
|
|
|
|
|
#else
|
|
|
|
|
typedef signed char flex_int8_t;
|
|
|
|
|
typedef short int flex_int16_t;
|
|
|
|
|
typedef int flex_int32_t;
|
|
|
|
|
typedef unsigned char flex_uint8_t;
|
|
|
|
|
typedef unsigned short int flex_uint16_t;
|
|
|
|
|
typedef unsigned int flex_uint32_t;
|
|
|
|
|
|
|
|
|
|
/* Limits of integral types. */
|
|
|
|
|
#ifndef INT8_MIN
|
|
|
|
|
#define INT8_MIN (-128)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT16_MIN
|
|
|
|
|
#define INT16_MIN (-32767-1)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT32_MIN
|
|
|
|
|
#define INT32_MIN (-2147483647-1)
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef INT8_MAX
|
|
|
|
|
#define INT8_MAX (127)
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2015-12-01 03:11:48 -05:00
|
|
|
#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)
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
2013-04-15 03:57:08 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
#ifndef SIZE_MAX
|
|
|
|
|
#define SIZE_MAX (~(size_t)0)
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif /* ! C99 */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif /* ! FLEXINT_H */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
/* begin standard C++ headers. */
|
|
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
/* TODO: this is always defined, so inline it */
|
2017-06-16 03:56:28 -04:00
|
|
|
#define yyconst const
|
2017-07-24 05:04:18 -04:00
|
|
|
|
|
|
|
|
#if defined(__GNUC__) && __GNUC__ >= 3
|
|
|
|
|
#define yynoreturn __attribute__((__noreturn__))
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2017-07-24 05:04:18 -04:00
|
|
|
#define yynoreturn
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Returned upon end-of-file. */
|
|
|
|
|
#define YY_NULL 0
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
/* Promotes a possibly negative, possibly signed char to an
|
|
|
|
|
* integer in range [0..255] for use as an array index.
|
2007-10-18 18:49:08 -04:00
|
|
|
*/
|
2019-04-05 11:39:10 -04:00
|
|
|
#define YY_SC_TO_UI(c) ((YY_CHAR) (c))
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
#define BEGIN (yy_start) = 1 + 2 *
|
2007-10-18 18:49:08 -04:00
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_START (((yy_start) - 1) / 2)
|
2007-10-18 18:49:08 -04:00
|
|
|
#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". */
|
2019-04-05 11:39:10 -04:00
|
|
|
#define YY_NEW_FILE yyrestart( yyin )
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_END_OF_BUFFER_CHAR 0
|
|
|
|
|
|
|
|
|
|
/* Size of default input buffer. */
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifndef YY_BUF_SIZE
|
2016-06-13 02:57:28 -04:00
|
|
|
#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
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_BUF_SIZE 16384
|
2016-06-13 02:57:28 -04:00
|
|
|
#endif /* __ia64__ */
|
2015-12-01 03:11:48 -05:00
|
|
|
#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))
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
|
|
|
|
|
#define YY_TYPEDEF_YY_BUFFER_STATE
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef struct yy_buffer_state *YY_BUFFER_STATE;
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif
|
|
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifndef YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
#define YY_TYPEDEF_YY_SIZE_T
|
|
|
|
|
typedef size_t yy_size_t;
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
extern int yyleng;
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
extern FILE *yyin, *yyout;
|
|
|
|
|
|
|
|
|
|
#define EOB_ACT_CONTINUE_SCAN 0
|
|
|
|
|
#define EOB_ACT_END_OF_FILE 1
|
|
|
|
|
#define EOB_ACT_LAST_MATCH 2
|
2019-04-05 11:39:10 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_LESS_LINENO(n)
|
2016-10-20 03:46:35 -04:00
|
|
|
#define YY_LINENO_REWIND_TO(ptr)
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
/* Return all but the first "n" matched characters back to the input stream. */
|
2007-10-18 18:49:08 -04:00
|
|
|
#define yyless(n) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
/* Undo effects of setting up yytext. */ \
|
2019-04-05 11:39:10 -04:00
|
|
|
int yyless_macro_arg = (n); \
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_LESS_LINENO(yyless_macro_arg);\
|
|
|
|
|
*yy_cp = (yy_hold_char); \
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
|
|
|
|
|
} \
|
|
|
|
|
while ( 0 )
|
2015-12-01 03:11:48 -05:00
|
|
|
#define unput(c) yyunput( c, (yytext_ptr) )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifndef YY_STRUCT_YY_BUFFER_STATE
|
|
|
|
|
#define YY_STRUCT_YY_BUFFER_STATE
|
2007-10-18 18:49:08 -04:00
|
|
|
struct yy_buffer_state
|
|
|
|
|
{
|
|
|
|
|
FILE *yy_input_file;
|
|
|
|
|
|
|
|
|
|
char *yy_ch_buf; /* input buffer */
|
|
|
|
|
char *yy_buf_pos; /* current position in input buffer */
|
|
|
|
|
|
|
|
|
|
/* Size of input buffer in bytes, not including room for EOB
|
|
|
|
|
* characters.
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
int yy_buf_size;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Number of characters read into yy_ch_buf, not including EOB
|
|
|
|
|
* characters.
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
int yy_n_chars;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
int yy_bs_lineno; /**< The line count. */
|
|
|
|
|
int yy_bs_column; /**< The column count. */
|
2019-04-05 11:39:10 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Whether to try to fill the input buffer when we reach the
|
|
|
|
|
* end of it.
|
|
|
|
|
*/
|
|
|
|
|
int yy_fill_buffer;
|
|
|
|
|
|
|
|
|
|
int yy_buffer_status;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#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
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
};
|
2015-12-01 03:11:48 -05:00
|
|
|
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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. */
|
2017-07-24 05:04:18 -04:00
|
|
|
static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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".
|
2015-12-01 03:11:48 -05:00
|
|
|
*
|
|
|
|
|
* Returns the top of the stack, or NULL.
|
2007-10-18 18:49:08 -04:00
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
#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)]
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_hold_char holds the character lost when yytext is formed. */
|
|
|
|
|
static char yy_hold_char;
|
2017-07-24 05:04:18 -04:00
|
|
|
static int yy_n_chars; /* number of characters read into yy_ch_buf */
|
|
|
|
|
int yyleng;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Points to current character in buffer. */
|
2017-07-24 05:04:18 -04:00
|
|
|
static char *yy_c_buf_p = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
static int yy_init = 0; /* whether we need to initialize */
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
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 );
|
2018-08-30 05:02:29 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
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 )
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
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 );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
void *yyalloc ( yy_size_t );
|
|
|
|
|
void *yyrealloc ( void *, yy_size_t );
|
|
|
|
|
void yyfree ( void * );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#define yy_new_buffer yy_create_buffer
|
|
|
|
|
#define yy_set_interactive(is_interactive) \
|
|
|
|
|
{ \
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER ){ \
|
|
|
|
|
yyensure_buffer_stack (); \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
2015-12-01 03:11:48 -05:00
|
|
|
} \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
|
|
|
{ \
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER ){\
|
|
|
|
|
yyensure_buffer_stack (); \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = \
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
2015-12-01 03:11:48 -05:00
|
|
|
} \
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
|
|
|
|
|
|
|
|
|
|
/* Begin user sect3 */
|
2019-04-05 11:39:10 -04:00
|
|
|
typedef flex_uint8_t YY_CHAR;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
FILE *yyin = NULL, *yyout = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
typedef int yy_state_type;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
extern int yylineno;
|
|
|
|
|
int yylineno = 1;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
extern char *yytext;
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifdef yytext_ptr
|
|
|
|
|
#undef yytext_ptr
|
|
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
#define yytext_ptr yytext
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
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 );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Done after the current pattern has been matched and before the
|
|
|
|
|
* corresponding action - sets up yytext.
|
|
|
|
|
*/
|
|
|
|
|
#define YY_DO_BEFORE_ACTION \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yytext_ptr) = yy_bp; \
|
|
|
|
|
(yytext_ptr) -= (yy_more_len); \
|
2017-07-24 05:04:18 -04:00
|
|
|
yyleng = (int) (yy_cp - (yytext_ptr)); \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_hold_char) = *yy_cp; \
|
2007-10-18 18:49:08 -04:00
|
|
|
*yy_cp = '\0'; \
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = yy_cp;
|
2019-04-05 11:39:10 -04:00
|
|
|
#define YY_NUM_RULES 293
|
|
|
|
|
#define YY_END_OF_BUFFER 294
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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;
|
|
|
|
|
};
|
2019-04-05 11:39:10 -04:00
|
|
|
static const flex_int16_t yy_accept[2911] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2019-04-05 11:39:10 -04:00
|
|
|
1, 1, 275, 275, 279, 279, 283, 283, 287, 287,
|
|
|
|
|
1, 1, 294, 291, 1, 273, 273, 292, 2, 292,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 275, 276, 276, 277, 292, 279, 280, 280,
|
|
|
|
|
281, 292, 286, 283, 284, 284, 285, 292, 287, 288,
|
|
|
|
|
288, 289, 292, 290, 274, 2, 278, 292, 290, 291,
|
|
|
|
|
0, 1, 2, 2, 2, 2, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
275, 0, 279, 0, 286, 0, 283, 287, 0, 290,
|
|
|
|
|
0, 2, 2, 290, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 290, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 112, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 116, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 290, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 96, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 8, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 113, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 121, 291,
|
|
|
|
|
290, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 290, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 54, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
216, 291, 14, 15, 291, 18, 17, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
115, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 200,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 3, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 290, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 266, 291, 291, 265, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 282, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 57, 291, 240,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 58, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 189, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 20, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 140, 291, 291, 282, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 94, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 248, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 161, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 139, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 93, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 31, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 32, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
55, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
114, 291, 291, 291, 291, 291, 111, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 56, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 162, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 45, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 231, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 49, 291, 50, 291,
|
|
|
|
|
291, 291, 291, 291, 97, 291, 98, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 95, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 7,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 209, 291,
|
|
|
|
|
291, 291, 291, 142, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 46, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 181, 291, 180,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 16, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 59,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 188, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 100, 291, 99, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 172, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 122, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 78, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 82, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 53, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 175,
|
|
|
|
|
|
|
|
|
|
176, 291, 291, 291, 242, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 6, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 246, 291,
|
|
|
|
|
291, 291, 267, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 41, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 43, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 168, 291, 291, 291, 117,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
193, 291, 169, 291, 291, 291, 206, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 44, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 119, 105, 291, 106, 291, 291, 291,
|
|
|
|
|
104, 291, 291, 291, 291, 291, 291, 291, 291, 137,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 230, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
170, 291, 291, 291, 291, 291, 173, 291, 179, 291,
|
|
|
|
|
291, 291, 291, 291, 205, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 92,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 51, 291, 291, 291, 25, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 19, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 26, 35, 291, 147, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 67, 69, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
250, 291, 291, 291, 217, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 107, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 136, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 261,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 141, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 199, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 270, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 158, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
101, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
153, 291, 163, 291, 291, 291, 291, 291, 125, 291,
|
|
|
|
|
291, 291, 291, 291, 88, 291, 291, 291, 291, 191,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 207, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 222,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 118,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
157, 291, 291, 291, 291, 291, 70, 71, 291, 291,
|
|
|
|
|
291, 291, 291, 52, 291, 291, 291, 291, 291, 77,
|
|
|
|
|
164, 291, 182, 291, 210, 291, 291, 174, 243, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 63, 291, 166, 291, 291, 291,
|
|
|
|
|
291, 291, 9, 291, 291, 291, 91, 291, 291, 291,
|
|
|
|
|
291, 235, 291, 291, 291, 190, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 156, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 143, 291, 249, 291, 291, 291, 291, 221,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 201, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 241, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 264, 291,
|
|
|
|
|
165, 291, 291, 291, 291, 291, 291, 291, 62, 64,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 90, 291, 291,
|
|
|
|
|
291, 291, 233, 291, 291, 291, 245, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 195, 33, 27, 29, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 34, 291, 28,
|
|
|
|
|
30, 291, 291, 291, 291, 291, 291, 291, 291, 87,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 197, 194, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 61, 291, 291, 120, 291, 108, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 138, 13, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 259, 291,
|
|
|
|
|
262, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 12, 291, 291, 21, 291, 291, 291, 239, 291,
|
|
|
|
|
291, 291, 247, 291, 65, 291, 203, 291, 291, 196,
|
|
|
|
|
291, 291, 60, 291, 291, 291, 291, 22, 291, 42,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 152, 151, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 198, 192, 291, 208, 291, 291, 251,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 72, 291, 291, 291, 234, 291,
|
|
|
|
|
291, 291, 291, 178, 291, 291, 291, 291, 202, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 268, 269, 149,
|
|
|
|
|
66, 291, 291, 159, 291, 291, 102, 103, 291, 291,
|
|
|
|
|
291, 291, 144, 291, 146, 291, 183, 291, 291, 291,
|
|
|
|
|
291, 150, 291, 291, 211, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
291, 291, 127, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 218, 291, 291, 291, 23, 291,
|
|
|
|
|
244, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 184, 291, 291, 232, 291, 263, 291, 177,
|
|
|
|
|
291, 291, 291, 291, 47, 291, 291, 291, 291, 4,
|
|
|
|
|
291, 291, 126, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 214,
|
|
|
|
|
36, 37, 291, 291, 291, 291, 291, 291, 291, 252,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 220, 291, 291, 291,
|
|
|
|
|
187, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
|
|
|
|
|
75, 291, 48, 238, 291, 215, 291, 291, 291, 291,
|
|
|
|
|
11, 291, 291, 291, 291, 291, 291, 291, 185, 79,
|
|
|
|
|
291, 39, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
155, 291, 291, 291, 291, 291, 129, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 219, 123, 291, 291,
|
|
|
|
|
109, 110, 291, 291, 291, 81, 85, 80, 291, 73,
|
|
|
|
|
291, 291, 291, 291, 291, 10, 291, 291, 291, 236,
|
|
|
|
|
291, 291, 272, 38, 291, 291, 291, 291, 291, 154,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 86, 84,
|
|
|
|
|
|
|
|
|
|
291, 74, 260, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
171, 291, 291, 291, 186, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 145, 68, 291, 291, 291, 291, 291,
|
|
|
|
|
253, 291, 291, 291, 291, 291, 291, 291, 124, 291,
|
|
|
|
|
83, 130, 131, 134, 135, 132, 133, 76, 291, 237,
|
|
|
|
|
291, 291, 148, 291, 291, 291, 291, 291, 213, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 160, 40, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 89, 291, 212, 291,
|
|
|
|
|
|
|
|
|
|
229, 257, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 5, 291, 204, 291, 291, 258, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 24, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
128, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
167, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
254, 291, 291, 291, 291, 291, 291, 291, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 291, 291, 291, 291, 271, 291,
|
|
|
|
|
291, 225, 291, 291, 291, 291, 291, 255, 291, 291,
|
|
|
|
|
291, 291, 291, 291, 256, 291, 291, 291, 223, 291,
|
|
|
|
|
|
|
|
|
|
226, 227, 291, 291, 291, 291, 291, 224, 228, 0
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static const YY_CHAR yy_ec[256] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 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,
|
2007-11-28 03:10:45 -05:00
|
|
|
1, 2, 1, 5, 6, 1, 1, 1, 7, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 1, 1, 8, 1, 1, 1, 9, 1,
|
|
|
|
|
10, 11, 1, 12, 1, 1, 1, 13, 1, 1,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 14, 1, 1, 1, 1, 15, 16, 17, 18,
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2017-03-09 08:18:08 -05:00
|
|
|
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
|
|
|
|
|
29, 30, 31, 32, 33, 34, 35, 36, 37, 38,
|
|
|
|
|
39, 40, 1, 1, 1, 1, 1, 1, 1, 1,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1
|
|
|
|
|
} ;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static const YY_CHAR yy_meta[41] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2009-11-30 08:07:39 -05:00
|
|
|
1, 2, 3, 4, 5, 1, 6, 1, 1, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 7, 1, 1, 1, 1, 1, 1, 1,
|
2007-10-18 18:49:08 -04:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static const flex_int16_t yy_base[2925] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2017-03-09 08:18:08 -05:00
|
|
|
0, 0, 38, 41, 44, 46, 59, 65, 71, 77,
|
2019-04-05 11:39:10 -04:00
|
|
|
90, 112, 2129, 1866, 81, 5681, 5681, 5681, 96, 52,
|
2018-04-17 09:23:35 -04:00
|
|
|
106, 63, 107, 111, 70, 128, 130, 133, 57, 88,
|
2019-04-05 11:39:10 -04:00
|
|
|
76, 135, 141, 117, 148, 145, 160, 164, 185, 177,
|
|
|
|
|
189, 152, 1744, 5681, 5681, 5681, 107, 1174, 5681, 5681,
|
|
|
|
|
5681, 165, 1056, 933, 5681, 5681, 5681, 211, 839, 5681,
|
|
|
|
|
5681, 5681, 180, 829, 5681, 217, 5681, 221, 168, 761,
|
|
|
|
|
225, 231, 0, 237, 0, 0, 226, 231, 85, 180,
|
|
|
|
|
114, 238, 239, 156, 234, 206, 240, 232, 200, 132,
|
|
|
|
|
253, 244, 245, 248, 256, 257, 264, 271, 249, 277,
|
|
|
|
|
|
|
|
|
|
279, 262, 282, 285, 270, 272, 291, 293, 290, 299,
|
|
|
|
|
301, 284, 302, 305, 310, 312, 311, 315, 313, 319,
|
|
|
|
|
322, 318, 324, 327, 326, 193, 221, 334, 329, 340,
|
|
|
|
|
342, 325, 348, 349, 350, 353, 354, 357, 363, 359,
|
|
|
|
|
699, 379, 670, 381, 596, 388, 450, 365, 392, 278,
|
|
|
|
|
396, 400, 0, 377, 392, 401, 367, 394, 396, 402,
|
|
|
|
|
261, 398, 399, 403, 405, 406, 418, 407, 416, 422,
|
|
|
|
|
426, 430, 427, 434, 424, 437, 439, 440, 429, 451,
|
|
|
|
|
453, 454, 446, 455, 456, 458, 461, 462, 463, 472,
|
|
|
|
|
465, 473, 484, 479, 488, 492, 475, 493, 496, 491,
|
|
|
|
|
|
|
|
|
|
503, 499, 506, 507, 502, 498, 508, 510, 513, 515,
|
|
|
|
|
516, 518, 517, 520, 521, 523, 525, 527, 528, 532,
|
|
|
|
|
534, 535, 546, 541, 548, 543, 544, 551, 547, 554,
|
|
|
|
|
558, 562, 555, 570, 565, 567, 568, 572, 579, 582,
|
|
|
|
|
583, 575, 584, 578, 580, 586, 587, 588, 591, 601,
|
|
|
|
|
606, 603, 604, 611, 610, 612, 613, 615, 616, 592,
|
|
|
|
|
627, 619, 618, 632, 637, 623, 635, 638, 628, 630,
|
|
|
|
|
640, 642, 647, 654, 649, 657, 650, 659, 658, 660,
|
|
|
|
|
664, 671, 655, 666, 667, 668, 672, 674, 676, 678,
|
|
|
|
|
680, 685, 683, 687, 691, 695, 693, 692, 705, 697,
|
|
|
|
|
|
|
|
|
|
700, 702, 708, 709, 715, 719, 730, 721, 734, 726,
|
|
|
|
|
727, 735, 736, 739, 747, 740, 748, 749, 750, 751,
|
|
|
|
|
753, 756, 716, 5681, 755, 759, 766, 767, 769, 776,
|
|
|
|
|
768, 783, 778, 757, 790, 789, 791, 792, 814, 765,
|
|
|
|
|
777, 793, 794, 797, 5681, 800, 806, 838, 807, 812,
|
|
|
|
|
824, 810, 825, 826, 827, 834, 828, 855, 832, 831,
|
|
|
|
|
848, 865, 844, 836, 860, 861, 863, 864, 872, 870,
|
|
|
|
|
873, 874, 875, 883, 878, 881, 882, 894, 884, 885,
|
|
|
|
|
890, 888, 896, 895, 905, 907, 900, 910, 911, 912,
|
|
|
|
|
914, 913, 917, 915, 932, 929, 937, 918, 934, 941,
|
|
|
|
|
|
|
|
|
|
942, 923, 948, 944, 946, 950, 952, 960, 955, 956,
|
|
|
|
|
958, 961, 962, 964, 968, 969, 970, 972, 974, 978,
|
|
|
|
|
975, 985, 976, 983, 990, 5681, 992, 994, 995, 996,
|
|
|
|
|
997, 998, 5681, 1000, 999, 1002, 1007, 1012, 1014, 1006,
|
|
|
|
|
1009, 1022, 1031, 1024, 1026, 1034, 1013, 1032, 1035, 1038,
|
|
|
|
|
1036, 1041, 1039, 1042, 1045, 1043, 1050, 1064, 5681, 1048,
|
|
|
|
|
1051, 1049, 1055, 1060, 1067, 1077, 1058, 1087, 1069, 1079,
|
|
|
|
|
1095, 1075, 1093, 1081, 1094, 1097, 1099, 1101, 1103, 1105,
|
|
|
|
|
1106, 1107, 1108, 1110, 1111, 1109, 1112, 1113, 5681, 1116,
|
|
|
|
|
1129, 1137, 1122, 1123, 1132, 1135, 1139, 1140, 1141, 1142,
|
|
|
|
|
|
|
|
|
|
1144, 1148, 1153, 1163, 1147, 1166, 1150, 1161, 1165, 1167,
|
|
|
|
|
1168, 1169, 1171, 1170, 1184, 1175, 1177, 1192, 1195, 1194,
|
|
|
|
|
1197, 1204, 1181, 1200, 1201, 1199, 1205, 1207, 1209, 1185,
|
|
|
|
|
1211, 1212, 1221, 1219, 1217, 1220, 1222, 1232, 1224, 1227,
|
|
|
|
|
1228, 1233, 1237, 1234, 1239, 1243, 1245, 1246, 1253, 1249,
|
|
|
|
|
1254, 1256, 1250, 1262, 1263, 1264, 1266, 1136, 1270, 1267,
|
|
|
|
|
1269, 1274, 1276, 1271, 1275, 1277, 1281, 1294, 1292, 1296,
|
|
|
|
|
1297, 1301, 1287, 1295, 1308, 1307, 1310, 1311, 1313, 1321,
|
|
|
|
|
1303, 1317, 1319, 1328, 1323, 1324, 1326, 1329, 1340, 1325,
|
|
|
|
|
1336, 1349, 1278, 1327, 1344, 1335, 1351, 1345, 1350, 1355,
|
|
|
|
|
|
|
|
|
|
1356, 1357, 1364, 1361, 1360, 1359, 1366, 1362, 1367, 1370,
|
|
|
|
|
1372, 1384, 1371, 1376, 1379, 1383, 1389, 1390, 1391, 1392,
|
|
|
|
|
1394, 1395, 1397, 1399, 1401, 1396, 1406, 1404, 1416, 1403,
|
|
|
|
|
1409, 1420, 1422, 1425, 1424, 1427, 1434, 1423, 1435, 1436,
|
|
|
|
|
1426, 1437, 1438, 1443, 1444, 1449, 1451, 1452, 1454, 1456,
|
|
|
|
|
1455, 1458, 1459, 1463, 1464, 5681, 1466, 1477, 1467, 1474,
|
|
|
|
|
1472, 1475, 1479, 1486, 1481, 1483, 1488, 1482, 1491, 1493,
|
|
|
|
|
5681, 1494, 5681, 5681, 1496, 5681, 5681, 1492, 1504, 1503,
|
|
|
|
|
1495, 1516, 1520, 1514, 1508, 1518, 1522, 1529, 1543, 1528,
|
|
|
|
|
1527, 1531, 1534, 1535, 1537, 1539, 1540, 1551, 1552, 1558,
|
|
|
|
|
|
|
|
|
|
1554, 1560, 1567, 1556, 1564, 1570, 1571, 1573, 1572, 1575,
|
|
|
|
|
1578, 1581, 1584, 1579, 1577, 1582, 1530, 1594, 1587, 1602,
|
|
|
|
|
5681, 1598, 1606, 1611, 1607, 1614, 1610, 1609, 1616, 1617,
|
|
|
|
|
1618, 1621, 1620, 1619, 1623, 1628, 1631, 1635, 1630, 5681,
|
|
|
|
|
1632, 1633, 1640, 1634, 1644, 1646, 1648, 1650, 1652, 1654,
|
|
|
|
|
1655, 1656, 1657, 1660, 5681, 1588, 1659, 1661, 1667, 1664,
|
|
|
|
|
1666, 1668, 1670, 1673, 1678, 1676, 1679, 1677, 1684, 1696,
|
|
|
|
|
1680, 1694, 1691, 1697, 1698, 1700, 1702, 1709, 1701, 1713,
|
|
|
|
|
1705, 1712, 1715, 1716, 1717, 1719, 1724, 1723, 1732, 1727,
|
|
|
|
|
1734, 1746, 1729, 1730, 1731, 1745, 1741, 1752, 1748, 1754,
|
|
|
|
|
|
|
|
|
|
1755, 1756, 1764, 1759, 1761, 1763, 1765, 1767, 1768, 1771,
|
|
|
|
|
1776, 1772, 1778, 1780, 1774, 5681, 1782, 1786, 5681, 1784,
|
|
|
|
|
1787, 1809, 1788, 1791, 1790, 1797, 1792, 1799, 1801, 1807,
|
|
|
|
|
1810, 1813, 1829, 1819, 1822, 1824, 1831, 1832, 1834, 1835,
|
|
|
|
|
1838, 1841, 1849, 1850, 1854, 1845, 1857, 1842, 1855, 1858,
|
|
|
|
|
1877, 1859, 1860, 1861, 1867, 1862, 1868, 1872, 1870, 1869,
|
|
|
|
|
1881, 1887, 1889, 5681, 1898, 1899, 1882, 1894, 1910, 1890,
|
|
|
|
|
1905, 1802, 1906, 1909, 1914, 1911, 1912, 1913, 1916, 1919,
|
|
|
|
|
1917, 1922, 1921, 1923, 1929, 1926, 1944, 5681, 1939, 5681,
|
|
|
|
|
1927, 1928, 1940, 1942, 1945, 1946, 1947, 1949, 1953, 1951,
|
|
|
|
|
|
|
|
|
|
1964, 1968, 1957, 5681, 1950, 1973, 1974, 1976, 1969, 1971,
|
|
|
|
|
1977, 1980, 1981, 1988, 1984, 1992, 1987, 1985, 1989, 1997,
|
|
|
|
|
1998, 2000, 2003, 1999, 5681, 2001, 2009, 2010, 2018, 2020,
|
|
|
|
|
2013, 2015, 2021, 2026, 2017, 2023, 2028, 2029, 2030, 2037,
|
|
|
|
|
2040, 2036, 2039, 2045, 2052, 5681, 2038, 2047, 2055, 2053,
|
|
|
|
|
2060, 2054, 2057, 2051, 2061, 2062, 2068, 2070, 2071, 2072,
|
|
|
|
|
2080, 2081, 2077, 2073, 2085, 2076, 2082, 2086, 2093, 2087,
|
|
|
|
|
2090, 2094, 2097, 5681, 2100, 2102, 124, 2103, 2106, 2104,
|
|
|
|
|
2107, 2109, 2111, 2108, 2120, 2129, 2125, 2124, 2127, 2131,
|
|
|
|
|
2133, 2134, 2135, 2136, 2137, 2138, 2140, 5681, 2142, 2143,
|
|
|
|
|
|
|
|
|
|
2146, 2148, 2152, 2149, 2151, 5681, 2160, 2166, 2168, 2162,
|
|
|
|
|
2174, 2154, 2173, 2178, 2179, 2180, 2181, 2184, 5681, 2187,
|
|
|
|
|
2188, 2189, 2190, 2191, 2195, 2197, 2200, 2201, 2202, 2205,
|
|
|
|
|
2204, 2207, 2208, 2209, 2211, 2212, 2218, 2222, 2213, 2223,
|
|
|
|
|
2225, 5681, 2235, 2226, 2231, 2227, 2236, 2238, 2252, 2242,
|
|
|
|
|
2244, 2249, 2253, 2263, 2256, 2248, 2265, 2266, 2255, 2264,
|
|
|
|
|
2280, 2270, 2278, 2284, 2277, 2287, 2289, 2279, 2290, 2291,
|
|
|
|
|
2281, 2297, 2293, 2295, 2309, 2310, 2306, 2312, 2305, 2317,
|
|
|
|
|
2322, 2315, 5681, 2324, 2327, 2329, 2330, 2337, 2332, 2333,
|
|
|
|
|
2334, 2335, 2340, 2341, 2343, 2349, 2345, 2352, 2346, 2353,
|
|
|
|
|
|
|
|
|
|
2356, 2357, 2365, 2358, 2368, 2370, 5681, 2374, 2375, 2369,
|
|
|
|
|
2376, 2379, 2382, 2384, 2386, 2389, 2390, 2391, 2393, 2395,
|
|
|
|
|
2396, 2397, 2398, 2400, 2404, 2401, 5681, 2405, 2407, 2413,
|
|
|
|
|
2416, 2420, 2424, 2425, 2426, 2431, 2414, 2433, 2434, 2410,
|
|
|
|
|
5681, 2443, 2444, 2435, 2448, 2445, 2446, 2447, 2450, 2451,
|
|
|
|
|
5681, 2452, 2453, 2461, 2462, 2457, 5681, 2466, 2459, 2464,
|
|
|
|
|
2468, 2467, 2469, 2474, 2470, 2477, 2478, 2483, 2486, 2482,
|
|
|
|
|
2489, 5681, 2491, 2498, 2493, 2495, 2499, 2500, 2501, 2503,
|
|
|
|
|
2512, 2506, 2509, 2519, 2522, 2524, 2515, 2525, 2527, 2528,
|
|
|
|
|
2529, 2531, 2530, 5681, 2532, 2537, 2538, 2539, 2544, 2541,
|
|
|
|
|
|
|
|
|
|
2542, 2549, 2552, 2553, 2554, 2558, 2560, 2557, 2562, 2563,
|
|
|
|
|
2566, 2565, 2569, 2579, 2574, 2581, 2577, 2585, 2588, 2592,
|
|
|
|
|
2593, 2595, 5681, 2600, 2597, 2602, 2591, 2603, 2604, 2605,
|
|
|
|
|
2606, 2608, 2610, 2615, 2613, 2614, 2622, 2630, 2623, 2625,
|
|
|
|
|
2631, 2632, 2635, 2634, 2636, 2637, 2638, 2646, 2642, 2641,
|
|
|
|
|
2654, 2645, 2652, 2659, 2649, 2660, 2661, 2662, 2663, 2665,
|
|
|
|
|
2669, 2670, 2672, 2666, 2674, 2682, 2685, 2683, 2688, 2690,
|
|
|
|
|
2692, 5681, 2695, 2676, 2693, 2699, 2702, 2704, 2705, 2708,
|
|
|
|
|
2714, 2706, 2707, 2716, 2723, 2720, 5681, 2721, 5681, 2722,
|
|
|
|
|
2724, 2727, 2737, 2730, 5681, 2733, 5681, 2735, 2741, 2742,
|
|
|
|
|
|
|
|
|
|
2744, 5681, 2745, 2734, 2746, 2751, 2747, 2749, 2753, 2756,
|
|
|
|
|
2757, 2763, 2759, 2765, 2766, 2767, 2769, 2774, 2773, 2775,
|
|
|
|
|
2782, 2784, 2776, 2785, 2779, 2787, 2789, 2794, 2795, 5681,
|
|
|
|
|
2803, 2797, 2804, 2805, 2806, 2807, 2808, 2811, 2799, 2810,
|
|
|
|
|
2812, 2817, 2814, 2826, 2831, 2829, 2827, 2839, 5681, 2835,
|
|
|
|
|
2838, 2840, 2842, 5681, 2841, 2843, 2844, 2850, 2852, 2853,
|
|
|
|
|
2854, 2855, 2856, 2860, 2861, 2862, 2870, 2873, 2874, 2877,
|
|
|
|
|
2863, 2876, 2890, 2886, 2892, 2894, 2902, 2898, 2887, 2889,
|
|
|
|
|
2885, 2897, 2905, 2912, 2915, 2911, 2919, 2899, 2918, 2921,
|
|
|
|
|
2924, 2910, 2914, 2925, 2926, 2927, 2930, 2931, 2938, 2933,
|
|
|
|
|
|
|
|
|
|
2935, 2936, 2937, 5681, 2947, 2939, 2943, 2951, 2949, 2954,
|
|
|
|
|
2956, 2957, 2960, 2961, 2963, 2962, 2965, 5681, 2967, 5681,
|
|
|
|
|
2966, 2983, 2973, 2978, 2984, 2979, 2985, 2990, 2992, 2993,
|
|
|
|
|
2994, 2995, 2998, 3002, 3001, 3003, 3004, 3006, 3014, 3020,
|
|
|
|
|
3007, 3011, 3021, 3009, 3025, 3026, 5681, 3028, 3029, 3030,
|
|
|
|
|
3032, 3033, 3035, 3036, 3034, 3044, 3045, 3049, 3056, 5681,
|
|
|
|
|
3054, 3058, 3057, 3060, 3069, 3065, 3077, 3072, 5681, 3061,
|
|
|
|
|
3073, 3080, 3076, 3079, 3090, 5681, 3083, 5681, 3085, 3086,
|
|
|
|
|
3092, 3093, 3094, 3095, 3096, 3097, 3099, 3109, 3112, 3101,
|
|
|
|
|
3113, 3116, 3117, 3115, 3124, 3119, 3121, 3122, 5681, 3126,
|
|
|
|
|
|
|
|
|
|
3123, 3127, 3130, 3139, 3142, 3129, 3132, 5681, 3145, 3149,
|
|
|
|
|
3146, 3150, 3151, 3153, 3154, 3156, 3157, 3159, 3158, 3161,
|
|
|
|
|
3172, 3164, 3167, 3173, 3175, 3180, 3187, 5681, 3184, 3182,
|
|
|
|
|
3194, 3193, 3178, 3195, 3196, 3198, 3200, 3201, 3202, 3203,
|
|
|
|
|
3204, 3205, 3206, 3207, 3214, 3209, 3210, 3216, 3230, 3211,
|
|
|
|
|
3226, 3227, 3228, 3231, 3235, 3237, 3240, 3242, 3234, 3247,
|
|
|
|
|
3252, 3244, 3250, 3256, 3257, 3264, 3259, 5681, 3266, 3263,
|
|
|
|
|
3273, 3268, 3269, 3275, 3276, 3284, 3282, 3270, 3279, 3286,
|
|
|
|
|
3283, 5681, 3298, 3288, 3285, 3289, 3291, 3310, 3305, 3307,
|
|
|
|
|
3308, 3312, 2875, 3315, 3313, 3309, 3317, 3320, 3321, 5681,
|
|
|
|
|
|
|
|
|
|
5681, 3323, 3324, 3325, 5681, 3326, 3330, 3338, 3337, 3339,
|
|
|
|
|
3328, 3340, 3344, 3342, 3345, 3348, 3350, 5681, 3352, 3361,
|
|
|
|
|
3356, 3358, 3369, 3370, 3372, 3354, 3373, 3367, 3362, 3377,
|
|
|
|
|
3375, 3379, 3380, 3383, 3391, 3388, 3386, 3390, 5681, 3392,
|
|
|
|
|
3395, 3396, 5681, 3398, 3399, 3407, 3393, 3405, 3415, 3409,
|
|
|
|
|
3422, 3416, 3418, 3423, 3424, 3426, 3427, 3434, 3430, 3431,
|
|
|
|
|
3439, 3440, 3444, 5681, 3443, 3449, 3433, 3451, 3455, 3462,
|
|
|
|
|
3463, 3464, 3459, 3466, 3467, 3474, 5681, 3469, 3472, 3470,
|
|
|
|
|
3473, 3483, 3475, 3484, 3480, 5681, 3487, 3486, 3488, 5681,
|
|
|
|
|
3491, 3489, 3496, 3501, 3502, 3509, 3504, 3506, 3507, 3508,
|
|
|
|
|
|
|
|
|
|
5681, 3514, 5681, 3512, 3516, 3520, 5681, 3518, 3523, 3524,
|
|
|
|
|
3526, 3527, 3532, 3533, 3540, 3531, 3534, 3541, 3542, 3544,
|
|
|
|
|
3545, 3552, 3549, 5681, 3553, 3555, 3547, 3557, 3560, 3562,
|
|
|
|
|
3564, 3566, 3567, 5681, 5681, 3576, 5681, 3578, 3568, 3570,
|
|
|
|
|
5681, 3572, 3577, 3588, 3579, 3589, 3592, 3598, 3593, 5681,
|
|
|
|
|
3595, 3583, 3599, 3604, 3605, 3606, 3607, 3608, 3609, 3610,
|
|
|
|
|
3611, 5681, 3612, 3615, 3622, 3616, 3623, 3628, 3624, 3633,
|
|
|
|
|
5681, 3636, 3637, 3638, 3640, 3642, 5681, 3646, 5681, 3644,
|
|
|
|
|
3648, 3647, 3650, 3651, 5681, 3658, 3654, 3664, 3661, 3666,
|
|
|
|
|
3665, 3669, 3672, 3673, 3675, 3682, 3678, 3679, 3680, 5681,
|
|
|
|
|
|
|
|
|
|
3681, 3684, 3686, 3689, 3693, 3694, 3702, 3699, 3701, 3697,
|
|
|
|
|
3707, 3709, 3710, 3715, 3717, 3718, 3720, 3712, 3725, 3723,
|
|
|
|
|
3728, 5681, 3729, 3731, 3734, 5681, 3735, 3737, 3738, 3743,
|
|
|
|
|
3744, 3745, 3749, 3746, 3751, 5681, 3752, 3755, 3750, 3753,
|
|
|
|
|
3754, 3768, 5681, 5681, 3769, 5681, 3772, 3756, 3761, 3771,
|
|
|
|
|
3773, 3774, 3781, 3782, 3785, 3786, 3790, 3787, 3793, 3801,
|
|
|
|
|
3802, 3803, 3804, 3808, 3799, 5681, 5681, 3810, 3811, 3813,
|
|
|
|
|
3815, 3817, 3820, 3821, 3829, 3825, 3827, 3834, 3831, 3841,
|
|
|
|
|
5681, 3838, 3824, 3843, 5681, 3840, 3845, 3846, 3848, 3849,
|
|
|
|
|
3852, 3851, 3856, 3853, 3858, 3859, 3860, 3862, 3861, 3866,
|
|
|
|
|
|
|
|
|
|
3868, 3872, 3876, 5681, 3877, 3878, 3879, 3882, 3883, 3884,
|
|
|
|
|
3887, 3888, 3889, 5681, 3891, 3893, 3896, 3901, 3895, 3902,
|
|
|
|
|
3911, 3917, 3919, 3913, 3920, 3921, 3923, 3925, 3926, 5681,
|
|
|
|
|
3929, 3927, 3930, 3936, 3938, 3940, 3941, 3943, 3944, 3946,
|
|
|
|
|
3949, 3951, 3953, 3955, 3957, 3958, 3959, 3961, 5681, 3963,
|
|
|
|
|
3966, 3969, 3975, 3972, 3970, 3978, 3982, 3985, 3977, 3979,
|
|
|
|
|
3986, 3992, 5681, 3987, 3989, 3993, 3995, 4001, 3997, 4002,
|
|
|
|
|
4003, 5681, 4010, 4004, 4006, 4011, 4014, 4019, 4021, 4026,
|
|
|
|
|
4015, 5681, 4022, 4027, 4031, 4023, 4029, 4033, 4038, 4037,
|
|
|
|
|
5681, 4039, 4041, 4045, 4053, 4049, 4056, 4052, 4059, 4051,
|
|
|
|
|
|
|
|
|
|
4055, 4058, 4062, 4065, 4066, 4069, 4067, 4079, 4083, 4080,
|
|
|
|
|
5681, 4072, 5681, 4082, 4085, 4093, 4088, 4090, 5681, 4095,
|
|
|
|
|
4098, 4100, 4094, 4096, 5681, 4101, 4102, 4104, 4103, 5681,
|
|
|
|
|
4117, 4116, 4106, 4122, 4108, 4123, 5681, 4128, 4129, 4125,
|
|
|
|
|
4137, 4139, 4136, 4138, 4140, 4142, 4143, 4144, 4145, 5681,
|
|
|
|
|
4147, 4150, 4149, 4155, 4156, 4158, 4162, 4168, 4159, 5681,
|
|
|
|
|
4164, 4161, 4170, 4171, 4173, 4174, 4175, 4182, 4183, 4179,
|
|
|
|
|
5681, 4184, 4186, 4193, 4188, 4199, 5681, 5681, 4192, 4202,
|
|
|
|
|
4195, 4204, 4207, 5681, 4205, 4216, 4211, 4213, 4215, 5681,
|
|
|
|
|
5681, 4218, 5681, 4214, 5681, 4219, 4220, 5681, 5681, 4221,
|
|
|
|
|
|
|
|
|
|
4222, 4229, 4235, 4228, 5681, 4238, 5681, 4231, 4241, 4239,
|
|
|
|
|
4243, 4244, 5681, 4245, 4246, 4251, 5681, 4247, 4259, 4252,
|
|
|
|
|
4254, 5681, 4261, 4257, 4262, 5681, 4266, 4272, 4263, 4273,
|
|
|
|
|
4275, 4274, 4279, 4281, 4282, 4284, 4286, 4290, 4292, 4294,
|
|
|
|
|
4295, 4297, 4298, 4303, 4296, 4300, 4305, 4307, 4310, 4311,
|
|
|
|
|
4315, 4317, 4318, 4319, 4320, 4321, 4322, 4332, 4324, 4326,
|
|
|
|
|
4335, 4336, 4328, 4338, 4339, 4340, 4341, 4347, 4350, 4351,
|
|
|
|
|
4353, 5681, 4343, 4349, 4356, 4357, 4362, 4365, 4367, 4374,
|
|
|
|
|
4378, 4380, 5681, 4382, 5681, 4384, 4369, 4375, 4388, 5681,
|
|
|
|
|
4389, 4390, 4391, 4392, 4393, 4394, 4397, 4395, 5681, 4399,
|
|
|
|
|
|
|
|
|
|
4400, 4401, 4404, 5681, 4411, 4406, 4416, 4417, 4418, 4421,
|
|
|
|
|
4419, 4423, 4424, 4426, 4428, 4430, 4438, 4431, 4433, 4439,
|
|
|
|
|
4442, 4443, 4444, 4446, 4450, 4454, 4455, 4460, 5681, 4456,
|
|
|
|
|
5681, 4461, 4462, 4465, 4466, 4467, 4468, 4471, 5681, 5681,
|
|
|
|
|
4469, 4473, 4479, 4480, 4474, 4483, 4487, 5681, 4484, 4493,
|
|
|
|
|
4501, 4485, 5681, 4494, 4496, 4503, 5681, 4505, 4507, 4504,
|
|
|
|
|
4509, 4510, 4512, 4519, 5681, 5681, 5681, 5681, 4520, 4511,
|
|
|
|
|
4526, 4522, 4527, 4528, 4529, 4531, 4532, 5681, 4542, 5681,
|
|
|
|
|
5681, 4534, 4543, 4536, 4544, 4545, 4546, 4551, 4554, 5681,
|
|
|
|
|
4552, 4556, 4558, 4555, 4569, 4572, 4557, 4573, 4559, 4566,
|
|
|
|
|
|
|
|
|
|
4580, 4576, 4582, 4575, 4586, 4588, 4593, 5681, 5681, 4585,
|
|
|
|
|
4595, 4596, 4603, 4600, 4601, 4610, 4607, 4608, 4609, 4612,
|
|
|
|
|
4614, 4615, 4616, 5681, 4619, 4623, 5681, 4617, 5681, 4625,
|
|
|
|
|
4631, 4621, 4632, 4633, 4634, 4637, 4635, 5681, 5681, 4640,
|
|
|
|
|
4641, 4646, 4648, 4649, 4651, 4652, 4654, 4650, 5681, 4655,
|
|
|
|
|
5681, 4656, 4658, 4664, 4657, 4672, 4677, 4679, 4675, 4678,
|
|
|
|
|
4680, 5681, 4681, 4683, 5681, 4684, 4687, 4689, 5681, 4691,
|
|
|
|
|
4694, 4698, 5681, 4700, 5681, 4703, 5681, 4695, 4711, 5681,
|
|
|
|
|
4706, 4707, 5681, 4713, 4717, 4718, 4709, 5681, 4714, 5681,
|
|
|
|
|
4719, 4724, 4727, 4730, 4720, 4734, 4725, 4731, 4736, 4743,
|
|
|
|
|
|
|
|
|
|
4741, 4742, 5681, 5681, 4753, 4744, 4745, 4748, 4751, 4760,
|
|
|
|
|
4755, 4758, 4764, 5681, 5681, 4756, 5681, 4766, 4769, 5681,
|
|
|
|
|
4759, 4770, 4771, 4776, 4775, 4777, 4778, 4783, 4779, 4786,
|
|
|
|
|
4791, 4787, 4796, 4799, 4801, 4803, 4807, 4805, 4809, 4810,
|
|
|
|
|
4811, 4813, 4812, 4815, 5681, 4817, 4820, 4818, 5681, 4825,
|
|
|
|
|
4819, 4828, 4829, 5681, 4839, 4831, 4833, 4841, 5681, 4843,
|
|
|
|
|
4845, 4847, 4846, 4848, 4858, 4849, 4856, 5681, 5681, 5681,
|
|
|
|
|
5681, 4854, 4859, 5681, 4860, 4864, 5681, 5681, 4866, 4870,
|
|
|
|
|
4867, 4874, 5681, 4871, 5681, 4872, 5681, 4873, 4875, 4881,
|
|
|
|
|
4885, 5681, 4884, 4895, 5681, 4898, 4901, 4903, 4904, 4886,
|
|
|
|
|
|
|
|
|
|
4888, 4905, 5681, 4914, 4911, 4912, 4919, 4909, 4915, 4920,
|
|
|
|
|
4921, 4928, 4923, 4930, 5681, 4924, 4926, 4931, 5681, 4933,
|
|
|
|
|
5681, 4934, 4937, 4938, 4935, 4940, 4945, 4946, 4952, 4949,
|
|
|
|
|
4959, 4953, 5681, 4961, 4963, 5681, 4955, 5681, 4966, 5681,
|
|
|
|
|
4967, 4968, 4969, 4973, 5681, 4971, 4974, 4977, 4979, 5681,
|
|
|
|
|
4980, 4982, 5681, 4986, 4987, 4989, 4993, 4990, 5002, 4995,
|
|
|
|
|
4999, 4997, 5011, 5003, 5004, 5007, 5013, 5015, 5019, 5681,
|
|
|
|
|
5681, 5681, 5014, 5023, 5030, 5029, 5031, 5038, 5033, 5681,
|
|
|
|
|
5035, 5036, 5025, 5045, 5037, 5047, 5681, 5049, 5042, 5050,
|
|
|
|
|
5681, 5053, 5057, 5058, 5060, 5062, 5065, 5069, 5071, 5072,
|
|
|
|
|
|
|
|
|
|
5681, 5076, 5681, 5681, 5066, 5681, 5073, 5078, 5079, 5080,
|
|
|
|
|
5681, 5083, 5084, 5086, 5087, 5089, 5090, 5092, 5681, 5681,
|
|
|
|
|
5094, 5681, 5103, 5099, 5091, 5113, 5108, 5110, 5112, 5114,
|
|
|
|
|
5681, 5115, 5116, 5117, 5121, 5123, 5681, 5124, 5125, 5126,
|
|
|
|
|
5127, 5130, 5134, 5137, 5128, 5138, 5681, 5681, 5131, 5139,
|
|
|
|
|
5681, 5681, 5141, 5157, 5158, 5681, 5681, 5681, 5160, 5681,
|
|
|
|
|
5164, 5168, 5172, 5176, 5167, 5681, 5178, 5161, 5175, 5681,
|
|
|
|
|
5180, 5182, 5681, 5681, 5183, 5184, 5186, 5187, 5188, 5681,
|
|
|
|
|
5192, 5193, 5194, 5198, 5200, 5201, 5204, 5205, 5212, 5213,
|
|
|
|
|
5215, 5218, 5220, 5219, 5221, 5223, 5228, 5225, 5681, 5681,
|
|
|
|
|
|
|
|
|
|
5232, 5681, 5681, 5235, 5237, 5239, 5244, 5246, 5248, 5250,
|
|
|
|
|
5681, 5251, 5253, 5254, 5681, 5256, 5258, 5255, 5259, 5261,
|
|
|
|
|
5262, 5264, 5266, 5681, 5681, 5267, 5142, 5268, 5276, 5269,
|
|
|
|
|
5681, 5278, 5286, 5282, 5283, 5271, 5284, 5289, 5681, 5291,
|
|
|
|
|
5681, 5681, 5681, 5681, 5681, 5681, 5681, 5681, 5292, 5681,
|
|
|
|
|
5298, 5300, 5681, 5293, 5301, 5303, 5304, 5308, 5681, 5309,
|
|
|
|
|
5312, 5313, 4890, 5311, 5314, 5317, 5319, 5321, 5320, 5325,
|
|
|
|
|
5327, 5328, 5331, 5681, 5681, 5329, 5333, 5335, 5337, 5341,
|
|
|
|
|
5344, 5348, 5355, 5352, 5356, 5357, 5358, 5359, 5361, 5362,
|
|
|
|
|
5372, 5365, 5367, 5369, 5370, 5374, 5681, 5375, 5681, 5378,
|
|
|
|
|
|
|
|
|
|
5681, 5681, 5381, 5382, 5384, 5385, 5394, 5397, 5393, 5395,
|
|
|
|
|
5398, 5400, 5681, 5401, 5681, 5402, 5405, 5681, 5403, 5406,
|
|
|
|
|
5410, 5412, 5413, 5414, 5415, 5419, 5681, 5418, 5422, 5428,
|
|
|
|
|
5430, 5437, 5438, 5440, 5442, 5443, 5432, 5450, 5449, 5453,
|
|
|
|
|
5681, 5455, 5446, 5222, 5456, 5457, 5464, 5460, 5461, 5462,
|
|
|
|
|
5681, 5467, 5468, 5473, 5469, 5470, 5471, 5481, 5485, 5483,
|
|
|
|
|
5681, 5472, 5486, 5491, 5492, 5494, 5497, 5499, 5500, 5504,
|
|
|
|
|
5507, 5509, 5514, 5501, 5515, 5505, 5516, 5517, 5681, 5526,
|
|
|
|
|
5518, 5681, 5523, 5527, 5520, 5529, 5530, 5681, 5534, 5535,
|
|
|
|
|
5538, 5540, 5543, 5544, 5681, 5546, 5550, 5552, 5681, 5553,
|
|
|
|
|
|
|
|
|
|
5681, 5681, 5555, 5547, 5556, 5562, 5564, 5681, 5681, 5681,
|
|
|
|
|
5589, 5596, 5603, 5610, 5617, 88, 5624, 5631, 5638, 5645,
|
|
|
|
|
5652, 5659, 5666, 5673
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static const flex_int16_t yy_def[2925] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2019-04-05 11:39:10 -04:00
|
|
|
2910, 1, 2911, 2911, 2912, 2912, 2913, 2913, 2914, 2914,
|
|
|
|
|
2915, 2915, 2910, 2916, 2910, 2910, 2910, 2910, 2917, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2918, 2910, 2910, 2910, 2918, 2919, 2910, 2910,
|
|
|
|
|
2910, 2919, 2920, 2910, 2910, 2910, 2910, 2920, 2921, 2910,
|
|
|
|
|
2910, 2910, 2921, 2922, 2910, 2923, 2910, 2922, 2922, 2916,
|
|
|
|
|
2916, 2910, 2924, 2917, 2924, 2917, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2918, 2918, 2919, 2919, 2920, 2920, 2910, 2921, 2921, 2922,
|
|
|
|
|
2922, 2923, 2923, 2922, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2922, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2922, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2922, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2922, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2910, 2910, 2916, 2910, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2922, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2922, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
|
|
|
|
|
2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2910, 2916, 2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2910, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2910, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2910, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2910, 2916, 2910, 2916, 2910, 2916, 2916, 2910, 2910, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2910, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2910, 2910, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2910,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2910, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2910, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2910, 2916, 2910, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2910, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2910, 2910, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2910, 2916, 2910, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2910, 2910,
|
|
|
|
|
2910, 2916, 2916, 2910, 2916, 2916, 2910, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2910, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2910, 2916, 2910, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2910, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
|
|
|
|
|
2910, 2916, 2910, 2910, 2916, 2910, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2910,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2910, 2916, 2916,
|
|
|
|
|
2910, 2910, 2916, 2916, 2916, 2910, 2910, 2910, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2910, 2910, 2916, 2916, 2916, 2916, 2916, 2910,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2910,
|
|
|
|
|
|
|
|
|
|
2916, 2910, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2916, 2910,
|
|
|
|
|
2916, 2916, 2910, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2910, 2910, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2910, 2916,
|
|
|
|
|
|
|
|
|
|
2910, 2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2910, 2916, 2910, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2910, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2916, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
2916, 2910, 2916, 2916, 2916, 2916, 2916, 2910, 2916, 2916,
|
|
|
|
|
2916, 2916, 2916, 2916, 2910, 2916, 2916, 2916, 2910, 2916,
|
|
|
|
|
|
|
|
|
|
2910, 2910, 2916, 2916, 2916, 2916, 2916, 2910, 2910, 0,
|
2019-01-23 04:35:52 -05:00
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
2019-04-05 11:39:10 -04:00
|
|
|
2910, 2910, 2910, 2910
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static const flex_int16_t yy_nxt[5722] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
2009-02-06 05:19:16 -05:00
|
|
|
14, 15, 16, 17, 18, 19, 18, 14, 14, 14,
|
2017-07-17 04:21:19 -04:00
|
|
|
14, 14, 18, 20, 21, 22, 23, 24, 25, 26,
|
|
|
|
|
14, 27, 28, 29, 30, 31, 32, 33, 34, 35,
|
2017-10-17 11:16:31 -04:00
|
|
|
36, 37, 38, 39, 40, 41, 14, 14, 14, 42,
|
|
|
|
|
44, 45, 46, 44, 45, 46, 49, 50, 49, 50,
|
|
|
|
|
51, 47, 51, 70, 47, 70, 70, 52, 70, 52,
|
|
|
|
|
54, 55, 56, 57, 70, 18, 54, 55, 56, 57,
|
2018-04-17 09:23:35 -04:00
|
|
|
71, 18, 58, 60, 61, 62, 71, 82, 58, 60,
|
|
|
|
|
61, 62, 72, 71, 63, 102, 73, 92, 70, 71,
|
2018-02-08 08:16:36 -05:00
|
|
|
63, 15, 16, 17, 65, 66, 67, 75, 71, 75,
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
75, 71, 75, 68, 104, 157, 103, 93, 75, 76,
|
|
|
|
|
141, 141, 69, 15, 16, 17, 65, 66, 67, 71,
|
2018-04-17 09:23:35 -04:00
|
|
|
71, 83, 77, 78, 71, 68, 79, 71, 84, 87,
|
2019-04-05 11:39:10 -04:00
|
|
|
71, 80, 85, 88, 69, 86, 89, 151, 90, 91,
|
|
|
|
|
81, 71, 94, 71, 96, 71, 71, 159, 71, 105,
|
2018-04-17 09:23:35 -04:00
|
|
|
98, 112, 97, 99, 71, 109, 95, 106, 71, 110,
|
2019-04-05 11:39:10 -04:00
|
|
|
100, 71, 101, 107, 172, 71, 113, 108, 143, 71,
|
|
|
|
|
114, 143, 118, 71, 119, 111, 115, 71, 120, 116,
|
|
|
|
|
140, 151, 124, 148, 148, 125, 117, 163, 121, 122,
|
|
|
|
|
71, 123, 126, 71, 133, 154, 127, 128, 71, 129,
|
|
|
|
|
|
|
|
|
|
224, 130, 71, 137, 134, 158, 71, 138, 135, 136,
|
|
|
|
|
131, 139, 145, 71, 145, 145, 132, 145, 75, 71,
|
|
|
|
|
75, 75, 150, 75, 150, 150, 70, 150, 70, 70,
|
|
|
|
|
153, 70, 72, 165, 71, 171, 73, 70, 75, 71,
|
|
|
|
|
75, 75, 155, 75, 71, 71, 225, 71, 156, 75,
|
|
|
|
|
76, 71, 71, 71, 160, 161, 164, 71, 71, 166,
|
|
|
|
|
173, 71, 71, 169, 170, 167, 71, 168, 162, 71,
|
|
|
|
|
71, 175, 177, 178, 71, 71, 184, 71, 176, 174,
|
|
|
|
|
179, 182, 253, 71, 71, 71, 189, 180, 181, 183,
|
|
|
|
|
71, 151, 71, 185, 191, 71, 186, 71, 71, 199,
|
|
|
|
|
|
|
|
|
|
192, 194, 197, 71, 71, 195, 71, 198, 200, 187,
|
|
|
|
|
188, 190, 71, 201, 71, 71, 202, 205, 71, 203,
|
|
|
|
|
193, 196, 207, 71, 71, 71, 71, 204, 71, 212,
|
|
|
|
|
209, 71, 71, 206, 210, 71, 214, 71, 71, 71,
|
|
|
|
|
71, 208, 71, 220, 211, 215, 213, 71, 226, 229,
|
|
|
|
|
217, 216, 223, 71, 221, 71, 219, 218, 222, 233,
|
|
|
|
|
230, 71, 71, 71, 235, 227, 71, 71, 228, 231,
|
|
|
|
|
71, 239, 71, 236, 232, 238, 71, 234, 149, 240,
|
|
|
|
|
71, 242, 141, 141, 143, 237, 243, 143, 241, 145,
|
|
|
|
|
151, 145, 145, 244, 145, 148, 148, 150, 248, 150,
|
|
|
|
|
|
|
|
|
|
150, 75, 150, 75, 75, 71, 75, 71, 246, 71,
|
|
|
|
|
245, 71, 71, 153, 71, 71, 71, 250, 71, 71,
|
|
|
|
|
71, 256, 249, 247, 251, 259, 252, 255, 258, 71,
|
|
|
|
|
254, 71, 260, 264, 262, 71, 263, 71, 257, 71,
|
|
|
|
|
71, 265, 71, 71, 268, 261, 266, 71, 273, 269,
|
|
|
|
|
71, 147, 71, 71, 270, 275, 274, 276, 279, 71,
|
|
|
|
|
271, 272, 278, 267, 71, 277, 71, 71, 71, 71,
|
|
|
|
|
281, 71, 282, 283, 71, 71, 71, 290, 71, 288,
|
|
|
|
|
289, 285, 291, 284, 286, 71, 71, 280, 71, 287,
|
|
|
|
|
294, 297, 71, 298, 292, 299, 293, 71, 295, 301,
|
|
|
|
|
|
|
|
|
|
303, 71, 296, 304, 71, 71, 71, 300, 302, 71,
|
|
|
|
|
307, 71, 71, 309, 310, 71, 71, 308, 305, 71,
|
|
|
|
|
71, 71, 311, 71, 312, 306, 71, 313, 71, 71,
|
|
|
|
|
71, 71, 315, 71, 71, 319, 71, 317, 71, 324,
|
|
|
|
|
71, 71, 320, 314, 318, 71, 325, 71, 71, 321,
|
|
|
|
|
316, 327, 322, 329, 71, 332, 71, 71, 323, 71,
|
|
|
|
|
71, 71, 334, 326, 71, 338, 335, 71, 71, 339,
|
|
|
|
|
328, 71, 330, 331, 337, 71, 333, 341, 71, 336,
|
|
|
|
|
71, 71, 344, 71, 345, 71, 346, 340, 71, 348,
|
|
|
|
|
342, 151, 71, 71, 343, 71, 71, 71, 349, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 352, 353, 71, 71, 357, 355, 359, 146,
|
|
|
|
|
347, 351, 354, 360, 71, 350, 71, 71, 363, 71,
|
|
|
|
|
356, 361, 362, 71, 71, 71, 71, 358, 71, 71,
|
|
|
|
|
369, 71, 71, 372, 370, 371, 71, 368, 364, 365,
|
|
|
|
|
71, 71, 367, 71, 366, 71, 373, 374, 71, 376,
|
|
|
|
|
71, 71, 377, 71, 375, 71, 380, 378, 379, 381,
|
|
|
|
|
71, 383, 71, 71, 385, 386, 387, 71, 71, 382,
|
|
|
|
|
71, 71, 71, 71, 390, 388, 384, 71, 392, 71,
|
|
|
|
|
71, 71, 391, 144, 71, 71, 397, 71, 393, 71,
|
|
|
|
|
398, 71, 389, 71, 396, 400, 71, 394, 71, 402,
|
|
|
|
|
|
|
|
|
|
71, 395, 406, 404, 71, 71, 71, 399, 71, 407,
|
|
|
|
|
71, 401, 142, 71, 403, 71, 405, 408, 71, 415,
|
|
|
|
|
417, 71, 71, 442, 418, 421, 419, 409, 71, 71,
|
|
|
|
|
410, 416, 71, 426, 71, 411, 412, 413, 414, 71,
|
|
|
|
|
71, 422, 420, 71, 423, 424, 425, 71, 71, 71,
|
|
|
|
|
427, 433, 71, 71, 435, 430, 428, 431, 432, 429,
|
|
|
|
|
71, 71, 71, 71, 71, 434, 71, 437, 71, 71,
|
|
|
|
|
71, 457, 71, 445, 71, 438, 436, 444, 71, 71,
|
|
|
|
|
71, 71, 71, 439, 441, 446, 440, 447, 443, 71,
|
|
|
|
|
71, 71, 449, 448, 450, 451, 71, 458, 471, 452,
|
|
|
|
|
|
|
|
|
|
456, 459, 71, 71, 71, 71, 71, 71, 461, 460,
|
|
|
|
|
71, 472, 453, 71, 462, 454, 476, 455, 463, 71,
|
|
|
|
|
71, 473, 474, 71, 475, 71, 464, 71, 465, 490,
|
|
|
|
|
466, 488, 477, 478, 487, 486, 489, 71, 151, 71,
|
|
|
|
|
71, 71, 151, 467, 71, 71, 468, 71, 469, 71,
|
|
|
|
|
470, 71, 149, 479, 480, 493, 494, 71, 492, 491,
|
|
|
|
|
495, 71, 496, 481, 498, 482, 483, 484, 71, 503,
|
|
|
|
|
485, 497, 500, 71, 71, 499, 71, 71, 71, 508,
|
|
|
|
|
502, 506, 501, 71, 509, 71, 71, 71, 71, 505,
|
|
|
|
|
513, 71, 507, 504, 71, 71, 71, 71, 71, 511,
|
|
|
|
|
|
|
|
|
|
516, 71, 512, 71, 517, 518, 510, 71, 71, 71,
|
|
|
|
|
515, 523, 525, 71, 520, 522, 514, 519, 71, 521,
|
|
|
|
|
71, 528, 526, 71, 71, 71, 71, 71, 71, 524,
|
|
|
|
|
71, 71, 529, 538, 147, 534, 71, 527, 530, 537,
|
|
|
|
|
531, 533, 71, 532, 541, 71, 535, 71, 536, 539,
|
|
|
|
|
71, 540, 542, 543, 71, 71, 546, 71, 544, 71,
|
|
|
|
|
545, 71, 547, 71, 549, 71, 551, 552, 71, 71,
|
|
|
|
|
548, 71, 553, 71, 71, 71, 550, 71, 558, 556,
|
|
|
|
|
557, 71, 71, 71, 554, 71, 559, 71, 71, 71,
|
|
|
|
|
564, 71, 555, 560, 568, 565, 71, 563, 71, 567,
|
|
|
|
|
|
|
|
|
|
566, 562, 561, 71, 570, 71, 571, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 581, 71, 573, 569, 574, 71,
|
|
|
|
|
71, 583, 71, 576, 584, 71, 71, 71, 572, 580,
|
|
|
|
|
575, 577, 579, 578, 582, 71, 585, 71, 588, 71,
|
|
|
|
|
593, 591, 590, 586, 71, 71, 587, 71, 71, 71,
|
|
|
|
|
594, 71, 71, 597, 71, 71, 71, 589, 71, 598,
|
|
|
|
|
600, 71, 71, 71, 71, 592, 614, 599, 71, 146,
|
|
|
|
|
595, 71, 596, 71, 601, 602, 603, 71, 604, 613,
|
|
|
|
|
71, 612, 71, 605, 617, 606, 620, 615, 71, 616,
|
|
|
|
|
71, 607, 71, 608, 71, 618, 609, 610, 622, 619,
|
|
|
|
|
|
|
|
|
|
71, 623, 624, 611, 626, 621, 71, 71, 71, 627,
|
|
|
|
|
71, 630, 71, 625, 71, 632, 71, 628, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 71, 629, 638, 71,
|
|
|
|
|
634, 633, 642, 639, 635, 71, 71, 631, 643, 636,
|
|
|
|
|
641, 640, 151, 637, 645, 71, 644, 646, 71, 71,
|
|
|
|
|
71, 647, 71, 71, 71, 71, 717, 71, 652, 654,
|
|
|
|
|
71, 71, 649, 71, 648, 656, 71, 650, 653, 655,
|
|
|
|
|
657, 651, 658, 659, 71, 660, 71, 661, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 665, 664, 144, 71, 673,
|
|
|
|
|
71, 670, 662, 666, 71, 663, 671, 71, 71, 669,
|
|
|
|
|
|
|
|
|
|
667, 672, 675, 668, 674, 71, 676, 71, 71, 677,
|
|
|
|
|
71, 678, 71, 71, 71, 679, 680, 71, 71, 681,
|
|
|
|
|
71, 686, 71, 684, 71, 71, 683, 685, 689, 688,
|
|
|
|
|
71, 682, 71, 71, 71, 71, 690, 71, 692, 694,
|
|
|
|
|
71, 71, 695, 687, 697, 71, 71, 71, 691, 698,
|
|
|
|
|
71, 701, 71, 699, 696, 693, 71, 703, 71, 71,
|
|
|
|
|
707, 704, 71, 71, 700, 702, 71, 71, 712, 71,
|
|
|
|
|
709, 708, 705, 710, 706, 71, 71, 71, 713, 71,
|
|
|
|
|
71, 714, 71, 71, 71, 719, 721, 71, 71, 71,
|
|
|
|
|
71, 71, 756, 715, 71, 711, 718, 716, 722, 725,
|
|
|
|
|
|
|
|
|
|
71, 727, 720, 723, 724, 71, 726, 71, 71, 71,
|
|
|
|
|
71, 728, 729, 730, 71, 734, 71, 736, 732, 731,
|
|
|
|
|
71, 71, 733, 71, 71, 735, 71, 737, 739, 741,
|
|
|
|
|
71, 738, 71, 740, 71, 745, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 742, 748, 749, 747, 751, 71, 71,
|
|
|
|
|
752, 743, 744, 71, 753, 746, 754, 71, 71, 758,
|
|
|
|
|
750, 755, 71, 71, 71, 757, 760, 759, 71, 71,
|
|
|
|
|
71, 766, 71, 71, 71, 71, 761, 71, 767, 71,
|
|
|
|
|
71, 762, 768, 71, 71, 71, 763, 769, 764, 71,
|
|
|
|
|
765, 775, 71, 771, 770, 773, 71, 71, 776, 772,
|
|
|
|
|
|
|
|
|
|
774, 777, 71, 71, 71, 71, 780, 71, 71, 71,
|
|
|
|
|
71, 778, 71, 788, 71, 779, 71, 71, 789, 71,
|
|
|
|
|
782, 781, 71, 783, 787, 784, 785, 786, 790, 71,
|
|
|
|
|
791, 792, 794, 71, 793, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 795, 797, 798, 799, 800, 796, 71, 71, 71,
|
|
|
|
|
71, 71, 801, 805, 802, 803, 151, 71, 804, 806,
|
|
|
|
|
809, 808, 71, 807, 71, 71, 810, 71, 71, 71,
|
|
|
|
|
816, 71, 71, 817, 812, 819, 71, 71, 811, 71,
|
|
|
|
|
71, 818, 813, 814, 822, 71, 820, 71, 71, 815,
|
|
|
|
|
71, 824, 71, 828, 71, 71, 71, 825, 821, 71,
|
|
|
|
|
|
|
|
|
|
823, 71, 829, 830, 71, 71, 71, 71, 71, 71,
|
|
|
|
|
827, 834, 844, 826, 841, 835, 71, 71, 836, 831,
|
|
|
|
|
832, 71, 839, 842, 833, 837, 840, 71, 838, 71,
|
|
|
|
|
845, 71, 843, 71, 846, 71, 851, 886, 847, 848,
|
|
|
|
|
71, 71, 71, 71, 71, 849, 859, 71, 71, 864,
|
|
|
|
|
71, 863, 71, 71, 866, 850, 71, 852, 853, 865,
|
|
|
|
|
854, 860, 861, 855, 71, 71, 868, 71, 856, 71,
|
|
|
|
|
870, 71, 862, 71, 857, 858, 869, 71, 871, 867,
|
|
|
|
|
71, 873, 872, 71, 71, 71, 71, 875, 71, 879,
|
|
|
|
|
71, 71, 71, 878, 71, 71, 874, 71, 882, 888,
|
|
|
|
|
|
|
|
|
|
71, 71, 884, 924, 876, 877, 880, 71, 881, 889,
|
|
|
|
|
883, 71, 887, 892, 890, 71, 891, 885, 893, 71,
|
|
|
|
|
71, 895, 71, 71, 71, 894, 896, 71, 897, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 904, 71, 898, 899, 901,
|
|
|
|
|
902, 71, 907, 71, 71, 71, 71, 71, 71, 900,
|
|
|
|
|
905, 903, 906, 71, 909, 910, 912, 71, 911, 71,
|
|
|
|
|
913, 71, 908, 71, 914, 71, 917, 71, 71, 71,
|
|
|
|
|
71, 925, 71, 71, 71, 915, 922, 71, 920, 71,
|
|
|
|
|
71, 71, 918, 71, 923, 927, 71, 919, 916, 71,
|
|
|
|
|
71, 71, 71, 71, 921, 926, 935, 71, 928, 929,
|
|
|
|
|
|
|
|
|
|
933, 930, 939, 938, 71, 931, 932, 71, 936, 71,
|
|
|
|
|
71, 71, 934, 71, 71, 71, 937, 943, 71, 940,
|
|
|
|
|
945, 946, 71, 941, 942, 71, 71, 944, 71, 71,
|
|
|
|
|
71, 955, 71, 950, 947, 948, 71, 71, 949, 957,
|
|
|
|
|
71, 959, 71, 71, 71, 71, 961, 71, 951, 953,
|
|
|
|
|
956, 952, 954, 960, 71, 968, 963, 142, 71, 71,
|
|
|
|
|
958, 71, 962, 965, 964, 71, 967, 71, 71, 71,
|
|
|
|
|
969, 972, 71, 974, 71, 966, 71, 71, 71, 977,
|
|
|
|
|
151, 71, 971, 976, 71, 71, 970, 71, 979, 71,
|
|
|
|
|
980, 71, 973, 71, 975, 71, 978, 71, 983, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 995, 71, 71, 71, 984, 981, 996, 998,
|
|
|
|
|
71, 982, 71, 986, 71, 71, 1000, 987, 997, 985,
|
|
|
|
|
71, 988, 71, 71, 1051, 989, 71, 990, 1003, 1001,
|
|
|
|
|
999, 991, 71, 992, 1002, 71, 1005, 71, 993, 1008,
|
|
|
|
|
1004, 1006, 71, 994, 71, 71, 1007, 71, 71, 1010,
|
|
|
|
|
1012, 71, 1009, 1020, 71, 71, 1017, 1018, 71, 1011,
|
|
|
|
|
1016, 1013, 71, 71, 1021, 1015, 1019, 71, 71, 1014,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 1036, 1022, 1033, 71,
|
|
|
|
|
71, 71, 71, 71, 1032, 71, 1037, 1023, 1034, 1024,
|
|
|
|
|
71, 1025, 1035, 1038, 71, 71, 1026, 1039, 1027, 1042,
|
|
|
|
|
|
|
|
|
|
71, 1040, 71, 71, 1028, 1044, 1043, 71, 1049, 1029,
|
|
|
|
|
1030, 71, 71, 1041, 1046, 1045, 1031, 1048, 71, 71,
|
|
|
|
|
1047, 1054, 71, 71, 71, 71, 71, 71, 1052, 71,
|
|
|
|
|
71, 1057, 71, 1055, 71, 71, 71, 1050, 1053, 71,
|
|
|
|
|
71, 71, 71, 1062, 1056, 1063, 1059, 1061, 1064, 1058,
|
|
|
|
|
1060, 1066, 71, 71, 1068, 71, 1065, 71, 71, 71,
|
|
|
|
|
71, 1069, 71, 71, 71, 1074, 71, 1075, 1067, 1071,
|
|
|
|
|
71, 1076, 1070, 1077, 1073, 1079, 1072, 71, 1078, 1081,
|
|
|
|
|
1082, 71, 71, 1080, 71, 1083, 71, 71, 1084, 71,
|
|
|
|
|
71, 1085, 1086, 71, 71, 1092, 1087, 71, 71, 1094,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 1095, 1088, 71, 1090, 1097, 1089, 1091,
|
|
|
|
|
71, 71, 71, 71, 71, 1098, 71, 1093, 1100, 1096,
|
|
|
|
|
1103, 1101, 71, 71, 1102, 1106, 71, 1099, 71, 1105,
|
|
|
|
|
71, 71, 1107, 71, 71, 1108, 71, 1110, 1104, 71,
|
|
|
|
|
1111, 71, 71, 71, 1117, 1115, 1109, 1118, 1112, 71,
|
|
|
|
|
71, 71, 71, 71, 1119, 1113, 1116, 1120, 71, 1122,
|
|
|
|
|
71, 1114, 1125, 1121, 71, 71, 71, 71, 71, 1123,
|
|
|
|
|
71, 1126, 1127, 71, 71, 71, 1128, 1131, 1132, 1129,
|
|
|
|
|
1124, 71, 1130, 71, 71, 71, 71, 1137, 1138, 71,
|
|
|
|
|
71, 1140, 1133, 71, 71, 71, 1135, 1141, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 1134, 1145, 71, 1136, 1139, 71, 71, 1142, 1143,
|
|
|
|
|
71, 1144, 1147, 71, 1151, 71, 71, 71, 1146, 71,
|
|
|
|
|
71, 71, 71, 1157, 71, 1155, 1148, 1159, 2910, 1154,
|
|
|
|
|
1152, 1156, 1150, 71, 1153, 1149, 1160, 71, 71, 1162,
|
|
|
|
|
71, 1158, 71, 1161, 71, 1163, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 1166, 71, 1172, 71, 71, 1169, 1164, 71,
|
|
|
|
|
1165, 71, 71, 1167, 71, 71, 1170, 71, 1168, 1178,
|
|
|
|
|
1173, 1176, 1171, 71, 1182, 71, 1175, 1174, 1179, 71,
|
|
|
|
|
1180, 71, 1177, 1181, 1183, 1187, 71, 71, 1184, 1185,
|
|
|
|
|
1186, 71, 71, 71, 71, 1188, 1189, 71, 1191, 1194,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 71, 71, 1192, 1195, 1196, 71, 1198,
|
|
|
|
|
71, 1190, 1199, 71, 71, 71, 1193, 71, 71, 1200,
|
|
|
|
|
71, 71, 71, 1197, 71, 71, 71, 1206, 1201, 1202,
|
|
|
|
|
1204, 71, 1205, 1207, 1203, 71, 71, 1211, 71, 71,
|
|
|
|
|
71, 1208, 1216, 1210, 71, 1209, 1213, 1215, 71, 71,
|
|
|
|
|
1212, 71, 1218, 1217, 1220, 71, 1214, 71, 2910, 1222,
|
|
|
|
|
1219, 71, 71, 1221, 1223, 71, 71, 1227, 71, 71,
|
|
|
|
|
1235, 1225, 1236, 1238, 1224, 1226, 71, 71, 71, 71,
|
|
|
|
|
1237, 1228, 1234, 71, 1229, 1230, 1239, 1240, 1241, 1231,
|
|
|
|
|
71, 71, 71, 71, 71, 1232, 1242, 71, 1243, 1233,
|
|
|
|
|
|
|
|
|
|
71, 1245, 71, 71, 71, 1246, 71, 1247, 71, 2910,
|
|
|
|
|
71, 1244, 1248, 1250, 1251, 1252, 1255, 1256, 71, 71,
|
|
|
|
|
1253, 1249, 71, 71, 1257, 71, 1254, 1259, 71, 1258,
|
|
|
|
|
71, 1264, 1260, 1265, 1261, 71, 1262, 71, 1263, 1266,
|
|
|
|
|
71, 1267, 71, 71, 1271, 71, 71, 71, 71, 1272,
|
|
|
|
|
71, 1274, 1270, 71, 71, 1268, 71, 1276, 71, 71,
|
|
|
|
|
1269, 1275, 71, 1281, 1279, 71, 71, 1273, 1283, 71,
|
|
|
|
|
71, 71, 1277, 1278, 2910, 1286, 1280, 1287, 71, 1282,
|
|
|
|
|
1289, 71, 71, 71, 1284, 1290, 1288, 71, 71, 71,
|
|
|
|
|
1291, 1295, 71, 1292, 1285, 71, 1297, 71, 1294, 71,
|
|
|
|
|
|
|
|
|
|
1298, 1293, 71, 71, 71, 1302, 71, 1299, 71, 71,
|
|
|
|
|
71, 71, 1304, 71, 71, 1296, 1306, 71, 71, 1308,
|
|
|
|
|
71, 1310, 1307, 71, 1300, 1301, 71, 71, 1303, 71,
|
|
|
|
|
1305, 1312, 1309, 71, 1313, 1311, 1322, 71, 71, 71,
|
|
|
|
|
1317, 1314, 1315, 1316, 71, 1319, 71, 71, 71, 1318,
|
|
|
|
|
1323, 1324, 1320, 1325, 1321, 1326, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 1330, 71, 71, 71, 71, 1327, 1334, 1335,
|
|
|
|
|
71, 1329, 71, 1337, 71, 71, 1336, 71, 1328, 71,
|
|
|
|
|
71, 71, 71, 71, 1331, 1332, 1338, 71, 1344, 1333,
|
|
|
|
|
71, 71, 1339, 1341, 1342, 71, 71, 1340, 1349, 71,
|
|
|
|
|
|
|
|
|
|
1343, 1348, 71, 1345, 71, 1353, 71, 1351, 71, 1347,
|
|
|
|
|
1354, 71, 71, 71, 71, 1346, 71, 1356, 1350, 71,
|
|
|
|
|
1357, 1364, 71, 1352, 1355, 71, 1366, 1358, 71, 1359,
|
|
|
|
|
1362, 1360, 71, 1363, 1361, 71, 1365, 71, 71, 1367,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 1372, 1369, 1368, 1374,
|
|
|
|
|
71, 71, 71, 1379, 71, 71, 1383, 71, 1371, 1376,
|
|
|
|
|
1373, 1380, 71, 1375, 1370, 71, 71, 71, 1377, 1378,
|
|
|
|
|
71, 71, 1381, 71, 1382, 71, 71, 1384, 71, 71,
|
|
|
|
|
1390, 1386, 71, 1391, 1392, 1385, 1387, 71, 1388, 1389,
|
|
|
|
|
71, 1394, 71, 1395, 71, 1400, 1393, 2910, 71, 1401,
|
|
|
|
|
|
|
|
|
|
1397, 71, 1396, 1399, 71, 71, 71, 1402, 71, 1403,
|
|
|
|
|
71, 1398, 1404, 71, 1405, 71, 71, 71, 71, 71,
|
|
|
|
|
1411, 71, 1407, 71, 1406, 1410, 71, 71, 71, 1417,
|
|
|
|
|
1408, 1413, 1409, 1414, 1418, 71, 71, 1419, 71, 1422,
|
|
|
|
|
1415, 1412, 1420, 71, 71, 71, 1416, 71, 71, 71,
|
|
|
|
|
71, 71, 1426, 1430, 71, 71, 1421, 1425, 71, 71,
|
|
|
|
|
1431, 1433, 71, 1423, 1424, 71, 1436, 71, 1427, 1429,
|
|
|
|
|
1428, 1435, 71, 71, 71, 71, 71, 1434, 71, 71,
|
|
|
|
|
1432, 1437, 71, 71, 1444, 71, 1447, 71, 1445, 71,
|
|
|
|
|
1441, 1446, 1438, 1439, 1440, 71, 71, 1443, 71, 1442,
|
|
|
|
|
|
|
|
|
|
1448, 71, 1449, 71, 1457, 71, 71, 1453, 71, 1450,
|
|
|
|
|
1451, 1454, 71, 1456, 1460, 71, 1452, 71, 71, 71,
|
|
|
|
|
71, 71, 1461, 1462, 1455, 1463, 1458, 71, 1459, 71,
|
|
|
|
|
1468, 1464, 1469, 71, 71, 71, 71, 71, 1466, 1465,
|
|
|
|
|
71, 1473, 1472, 71, 1474, 1476, 71, 71, 71, 1467,
|
|
|
|
|
71, 1477, 1470, 1478, 71, 71, 1471, 71, 71, 71,
|
|
|
|
|
71, 1481, 71, 1475, 71, 1484, 71, 1482, 1483, 71,
|
|
|
|
|
71, 1479, 71, 1480, 1488, 1485, 71, 1490, 71, 71,
|
|
|
|
|
71, 1494, 71, 1486, 1489, 1487, 71, 71, 71, 71,
|
|
|
|
|
1491, 1497, 71, 1492, 1499, 71, 1495, 71, 71, 1502,
|
|
|
|
|
|
|
|
|
|
71, 1500, 71, 1498, 1493, 1496, 1505, 71, 71, 1501,
|
|
|
|
|
71, 1504, 71, 1507, 1503, 1508, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 1515, 71, 71, 71, 1506, 71, 1509, 1516,
|
|
|
|
|
71, 1510, 1517, 1513, 1519, 1520, 1524, 1511, 1512, 71,
|
|
|
|
|
71, 1522, 71, 1518, 71, 1514, 1526, 1521, 71, 1523,
|
|
|
|
|
1528, 71, 71, 71, 71, 71, 71, 71, 1533, 1531,
|
|
|
|
|
1525, 1530, 1527, 71, 1534, 71, 71, 71, 71, 71,
|
|
|
|
|
1539, 1538, 1529, 71, 71, 71, 71, 1545, 1542, 1535,
|
|
|
|
|
1532, 1543, 1537, 71, 1536, 1540, 71, 71, 71, 71,
|
|
|
|
|
71, 1546, 1550, 1544, 1541, 1548, 1547, 1551, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 1549, 71, 71, 1552, 71, 1553, 71, 1554, 1555,
|
|
|
|
|
71, 71, 71, 1557, 1772, 71, 1556, 1559, 71, 1562,
|
|
|
|
|
1558, 1561, 1563, 71, 71, 71, 1565, 71, 71, 1564,
|
|
|
|
|
1560, 71, 71, 1568, 71, 1566, 1567, 71, 71, 71,
|
|
|
|
|
71, 1570, 1569, 71, 71, 1577, 71, 1571, 71, 71,
|
|
|
|
|
71, 71, 71, 1573, 1574, 1575, 71, 1576, 1572, 1582,
|
|
|
|
|
71, 1584, 71, 1580, 71, 1585, 1578, 71, 1579, 71,
|
|
|
|
|
71, 1581, 1583, 71, 71, 71, 71, 1586, 71, 71,
|
|
|
|
|
71, 1587, 1590, 1592, 1593, 1600, 71, 1594, 1589, 1591,
|
|
|
|
|
1601, 71, 71, 1588, 1595, 1596, 71, 71, 71, 1599,
|
|
|
|
|
|
|
|
|
|
1597, 1604, 1605, 71, 1598, 71, 71, 71, 71, 1602,
|
|
|
|
|
1603, 71, 1608, 1609, 71, 71, 71, 71, 1606, 71,
|
|
|
|
|
71, 1617, 71, 1612, 71, 1607, 1614, 71, 1616, 1615,
|
|
|
|
|
1610, 1611, 1618, 71, 71, 1613, 1622, 1620, 71, 71,
|
|
|
|
|
1619, 71, 71, 71, 1627, 71, 71, 71, 71, 71,
|
|
|
|
|
1631, 1624, 1621, 1630, 1623, 1629, 1633, 71, 71, 1634,
|
|
|
|
|
1626, 1628, 71, 1638, 1632, 1641, 1625, 71, 1639, 71,
|
|
|
|
|
71, 71, 1643, 71, 71, 1635, 1644, 2910, 71, 1636,
|
|
|
|
|
1637, 1640, 71, 1645, 1646, 71, 71, 1650, 1642, 71,
|
|
|
|
|
71, 1647, 71, 71, 1648, 1652, 71, 1654, 71, 71,
|
|
|
|
|
|
|
|
|
|
1649, 1653, 1651, 71, 1655, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 1664, 71, 1658, 71, 1659, 1666, 1656, 1657, 1667,
|
|
|
|
|
1660, 1661, 71, 1662, 1663, 71, 71, 1668, 71, 71,
|
|
|
|
|
71, 1673, 71, 1665, 71, 71, 71, 71, 1677, 71,
|
|
|
|
|
71, 1672, 71, 71, 1679, 71, 1669, 1670, 1680, 1671,
|
|
|
|
|
1675, 1683, 71, 1676, 1674, 71, 1678, 1681, 71, 71,
|
|
|
|
|
1682, 1686, 71, 71, 71, 1690, 71, 71, 1684, 71,
|
|
|
|
|
71, 71, 71, 1685, 71, 1688, 1692, 71, 1687, 1697,
|
|
|
|
|
71, 1691, 1693, 1689, 1694, 71, 71, 1701, 71, 1698,
|
|
|
|
|
1695, 71, 1700, 71, 1696, 71, 1702, 71, 1699, 1703,
|
|
|
|
|
|
|
|
|
|
71, 1706, 1704, 1708, 1705, 1707, 71, 71, 71, 71,
|
|
|
|
|
1709, 71, 1710, 71, 71, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 1715, 71, 71, 71, 1719, 1716, 71, 1724, 71,
|
|
|
|
|
1717, 1711, 1713, 1714, 1718, 1712, 1720, 1725, 1723, 71,
|
|
|
|
|
71, 71, 1722, 71, 71, 1726, 1730, 71, 71, 1721,
|
|
|
|
|
71, 1733, 1734, 71, 1735, 71, 1728, 71, 1727, 1737,
|
|
|
|
|
71, 1729, 1731, 71, 1732, 71, 1738, 1736, 1741, 71,
|
|
|
|
|
71, 1743, 71, 1745, 1742, 1744, 71, 71, 1739, 71,
|
|
|
|
|
1747, 71, 71, 71, 1740, 1749, 71, 1750, 71, 71,
|
|
|
|
|
1751, 1752, 71, 1759, 1746, 71, 71, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
1764, 71, 71, 1757, 71, 1761, 1748, 1753, 1754, 1755,
|
|
|
|
|
1762, 71, 1758, 1765, 1756, 1763, 1760, 1767, 71, 1766,
|
|
|
|
|
71, 71, 71, 71, 1771, 71, 71, 1768, 71, 1773,
|
|
|
|
|
71, 1776, 1777, 71, 71, 1779, 71, 71, 71, 71,
|
|
|
|
|
1769, 71, 1770, 71, 1775, 1784, 1774, 1781, 1782, 1785,
|
|
|
|
|
71, 71, 71, 71, 1778, 71, 1787, 71, 71, 1791,
|
|
|
|
|
1788, 71, 1780, 71, 1783, 71, 1789, 71, 1795, 71,
|
|
|
|
|
1794, 71, 1801, 1786, 71, 71, 1798, 1799, 1797, 1793,
|
|
|
|
|
71, 1790, 71, 71, 1800, 71, 71, 1792, 71, 1796,
|
|
|
|
|
71, 1806, 71, 71, 1804, 1802, 71, 1809, 1810, 71,
|
|
|
|
|
|
|
|
|
|
1803, 71, 1805, 71, 71, 71, 71, 1813, 71, 71,
|
|
|
|
|
1807, 71, 71, 2910, 1812, 1821, 1819, 1822, 71, 1808,
|
|
|
|
|
71, 1811, 71, 1814, 1817, 1815, 1820, 1816, 71, 71,
|
|
|
|
|
1818, 71, 1823, 1824, 1826, 71, 71, 71, 1825, 71,
|
|
|
|
|
71, 1833, 1830, 71, 71, 1828, 71, 71, 2910, 1835,
|
|
|
|
|
1827, 1836, 71, 71, 1837, 1829, 71, 71, 1834, 1831,
|
|
|
|
|
1832, 1838, 71, 1843, 71, 1839, 1842, 1844, 71, 1845,
|
|
|
|
|
1847, 1848, 71, 1840, 1846, 71, 71, 71, 1841, 71,
|
|
|
|
|
71, 1852, 71, 71, 1850, 71, 71, 71, 71, 1854,
|
|
|
|
|
1857, 1859, 1851, 71, 1853, 1855, 71, 71, 1849, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 1865, 71, 1860, 1863, 1864, 1866, 71,
|
|
|
|
|
1858, 1856, 1861, 1867, 71, 71, 1869, 71, 1862, 71,
|
|
|
|
|
71, 71, 71, 1870, 1871, 71, 1872, 71, 1875, 71,
|
|
|
|
|
1873, 71, 1874, 71, 1877, 1868, 71, 71, 1881, 71,
|
|
|
|
|
71, 1876, 1880, 1878, 71, 71, 71, 71, 1879, 1882,
|
|
|
|
|
1883, 1884, 1885, 71, 71, 71, 1887, 71, 71, 1892,
|
|
|
|
|
71, 1890, 71, 1891, 1886, 71, 71, 1894, 71, 1897,
|
|
|
|
|
71, 1898, 1888, 71, 1889, 71, 1893, 71, 1895, 71,
|
|
|
|
|
71, 71, 1899, 71, 1902, 71, 1896, 1900, 1904, 71,
|
|
|
|
|
71, 71, 71, 1903, 1905, 1910, 71, 1906, 1901, 1907,
|
|
|
|
|
|
|
|
|
|
1908, 71, 71, 1912, 1909, 71, 71, 1913, 71, 1911,
|
|
|
|
|
1914, 71, 71, 1918, 1915, 1916, 1917, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 1919, 2910, 71, 71,
|
|
|
|
|
1926, 1921, 1922, 1923, 1930, 71, 71, 71, 1925, 1920,
|
|
|
|
|
1929, 71, 1934, 1927, 1933, 1928, 71, 1931, 1924, 71,
|
|
|
|
|
71, 71, 1937, 71, 1936, 71, 1932, 71, 1939, 71,
|
|
|
|
|
71, 71, 1940, 71, 71, 1945, 1935, 71, 1941, 1938,
|
|
|
|
|
1943, 71, 1944, 1947, 71, 1942, 1949, 71, 71, 71,
|
|
|
|
|
1952, 1948, 71, 1946, 1951, 71, 71, 1953, 71, 1957,
|
|
|
|
|
1954, 71, 71, 71, 71, 71, 1958, 71, 1963, 71,
|
|
|
|
|
|
|
|
|
|
1950, 1960, 71, 1964, 1955, 1959, 71, 71, 1956, 1967,
|
|
|
|
|
71, 1962, 71, 1961, 71, 71, 1969, 1968, 1970, 1972,
|
|
|
|
|
71, 1965, 71, 71, 1974, 71, 1971, 1966, 71, 1975,
|
|
|
|
|
71, 71, 1981, 71, 1973, 1979, 71, 1982, 71, 1976,
|
|
|
|
|
1977, 71, 71, 1978, 71, 1983, 1980, 71, 71, 1986,
|
|
|
|
|
71, 71, 1987, 1984, 1985, 1991, 71, 71, 71, 71,
|
|
|
|
|
1990, 1988, 71, 71, 71, 71, 71, 71, 71, 71,
|
|
|
|
|
1989, 2000, 2001, 1995, 71, 1992, 1993, 1997, 1994, 1996,
|
|
|
|
|
1998, 71, 71, 1999, 71, 71, 71, 71, 2003, 2007,
|
|
|
|
|
2002, 2005, 2006, 2011, 71, 71, 2010, 2013, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 2004, 2008, 71, 2012, 2016, 71, 2015, 2018, 2020,
|
|
|
|
|
2021, 2009, 71, 2019, 71, 71, 71, 71, 2014, 2017,
|
|
|
|
|
2022, 71, 2025, 71, 71, 2026, 71, 2030, 71, 2023,
|
|
|
|
|
71, 2031, 2024, 71, 71, 2029, 2034, 71, 71, 2027,
|
|
|
|
|
71, 2036, 71, 2035, 71, 2032, 2037, 71, 2039, 2038,
|
|
|
|
|
2028, 71, 2033, 71, 71, 2040, 71, 2041, 71, 71,
|
|
|
|
|
2042, 71, 71, 2044, 71, 71, 71, 2047, 2050, 71,
|
|
|
|
|
2051, 71, 71, 71, 71, 71, 2046, 2053, 2043, 71,
|
|
|
|
|
2049, 71, 2045, 2048, 2057, 71, 2052, 2055, 2060, 71,
|
|
|
|
|
71, 71, 71, 2056, 2058, 71, 71, 71, 2061, 2054,
|
|
|
|
|
|
|
|
|
|
71, 71, 71, 2059, 71, 2071, 71, 2910, 71, 71,
|
|
|
|
|
2062, 2063, 2072, 2068, 71, 71, 2066, 2910, 2064, 2070,
|
|
|
|
|
2065, 2067, 2074, 2069, 71, 2076, 71, 2073, 2075, 2077,
|
|
|
|
|
71, 2078, 71, 71, 71, 2081, 71, 2084, 71, 71,
|
|
|
|
|
71, 2079, 71, 71, 2085, 2082, 2080, 2086, 2083, 71,
|
|
|
|
|
2090, 71, 2091, 71, 71, 2093, 71, 71, 2095, 71,
|
|
|
|
|
2087, 2089, 71, 2088, 71, 2098, 71, 2099, 71, 2097,
|
|
|
|
|
71, 71, 71, 2092, 71, 2094, 71, 2096, 2105, 71,
|
|
|
|
|
2101, 2104, 71, 71, 2100, 71, 2102, 2107, 71, 2109,
|
|
|
|
|
71, 71, 71, 2103, 2110, 71, 2111, 2113, 71, 71,
|
|
|
|
|
|
|
|
|
|
71, 2106, 71, 2108, 2117, 71, 71, 2115, 71, 2114,
|
|
|
|
|
71, 2112, 2121, 2122, 71, 71, 71, 71, 2116, 71,
|
|
|
|
|
2118, 2120, 2126, 71, 71, 2119, 2128, 71, 71, 2123,
|
|
|
|
|
2124, 2125, 71, 2131, 71, 71, 71, 2127, 2129, 71,
|
|
|
|
|
71, 2133, 71, 2132, 71, 2136, 71, 2135, 2134, 2137,
|
|
|
|
|
71, 71, 71, 2130, 71, 2139, 2141, 2143, 71, 2144,
|
|
|
|
|
2146, 2138, 71, 2148, 71, 71, 71, 2140, 71, 71,
|
|
|
|
|
2149, 71, 71, 2145, 2153, 71, 2142, 2150, 71, 71,
|
|
|
|
|
71, 2152, 71, 2147, 2154, 71, 2159, 2155, 2156, 2151,
|
|
|
|
|
2160, 2157, 71, 71, 2158, 71, 71, 2161, 71, 2164,
|
|
|
|
|
|
|
|
|
|
2165, 71, 2166, 71, 2163, 2162, 71, 71, 71, 71,
|
|
|
|
|
2167, 71, 2172, 71, 71, 71, 71, 71, 2174, 71,
|
|
|
|
|
2183, 71, 2173, 2168, 2170, 2169, 2175, 2171, 2178, 71,
|
|
|
|
|
71, 2176, 2177, 2179, 2180, 71, 71, 2184, 71, 2181,
|
|
|
|
|
2185, 71, 71, 2187, 2188, 2186, 2189, 2182, 2190, 71,
|
|
|
|
|
71, 71, 71, 71, 2192, 71, 71, 71, 71, 2196,
|
|
|
|
|
71, 2199, 71, 71, 2197, 2191, 2198, 2193, 71, 71,
|
|
|
|
|
2194, 71, 71, 2200, 71, 71, 2195, 71, 2201, 2203,
|
|
|
|
|
2204, 71, 2206, 71, 71, 2205, 71, 71, 71, 2213,
|
|
|
|
|
2210, 2202, 71, 2212, 2207, 71, 71, 71, 2209, 71,
|
|
|
|
|
|
|
|
|
|
2218, 71, 2214, 2208, 2217, 71, 71, 2211, 71, 2219,
|
|
|
|
|
2215, 2223, 71, 2216, 2220, 71, 2222, 71, 71, 2221,
|
|
|
|
|
71, 2225, 2226, 2227, 71, 2229, 71, 71, 71, 71,
|
|
|
|
|
2231, 71, 71, 71, 71, 71, 2228, 2230, 2241, 2235,
|
|
|
|
|
2239, 71, 71, 2224, 71, 2232, 2233, 2237, 71, 2234,
|
|
|
|
|
2240, 71, 71, 2238, 71, 2242, 71, 71, 71, 71,
|
|
|
|
|
71, 2236, 2245, 2248, 71, 71, 2250, 71, 2243, 2249,
|
|
|
|
|
71, 2247, 71, 2253, 71, 71, 71, 2246, 2244, 71,
|
|
|
|
|
2256, 2258, 2252, 2251, 2257, 71, 71, 71, 71, 2254,
|
|
|
|
|
2260, 2259, 71, 2255, 71, 71, 2265, 71, 2266, 71,
|
|
|
|
|
|
|
|
|
|
2264, 2261, 2267, 71, 2268, 71, 2262, 71, 71, 71,
|
|
|
|
|
71, 71, 2272, 71, 2263, 2271, 71, 2273, 71, 2269,
|
|
|
|
|
71, 2274, 2278, 71, 71, 2275, 2270, 2280, 71, 2281,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 2277, 71, 2276, 71,
|
|
|
|
|
2284, 71, 2282, 2279, 2283, 71, 2285, 2290, 71, 71,
|
|
|
|
|
2287, 71, 71, 71, 71, 2286, 71, 2288, 2291, 2289,
|
|
|
|
|
71, 2297, 71, 71, 71, 2294, 71, 2292, 2296, 71,
|
|
|
|
|
71, 2293, 2298, 2304, 2301, 71, 2910, 2295, 71, 2299,
|
|
|
|
|
71, 2300, 71, 2306, 2302, 2307, 2308, 71, 71, 2305,
|
|
|
|
|
2309, 71, 2303, 71, 2310, 71, 2311, 71, 2312, 2314,
|
|
|
|
|
|
|
|
|
|
2313, 71, 71, 71, 71, 71, 71, 71, 71, 2323,
|
|
|
|
|
71, 2324, 71, 71, 71, 2320, 2327, 71, 2329, 71,
|
|
|
|
|
2315, 2317, 2316, 2326, 71, 2319, 2318, 2321, 2322, 71,
|
|
|
|
|
71, 71, 71, 2328, 71, 2325, 71, 71, 2332, 71,
|
|
|
|
|
2338, 71, 2339, 71, 71, 2340, 71, 2330, 2331, 2333,
|
|
|
|
|
2334, 71, 71, 2336, 2335, 71, 71, 71, 2337, 71,
|
|
|
|
|
2344, 2342, 2341, 71, 2347, 2348, 2349, 71, 71, 71,
|
|
|
|
|
2350, 2343, 2351, 71, 71, 71, 2345, 2346, 71, 71,
|
|
|
|
|
71, 71, 71, 2353, 71, 2357, 71, 71, 2352, 2361,
|
|
|
|
|
2355, 2362, 71, 71, 2354, 2365, 71, 71, 71, 2356,
|
|
|
|
|
|
|
|
|
|
71, 2358, 2360, 2359, 2366, 2364, 71, 71, 2363, 71,
|
|
|
|
|
2368, 2370, 2367, 2369, 71, 2373, 71, 71, 71, 2375,
|
|
|
|
|
71, 2377, 71, 71, 71, 71, 2910, 2371, 2378, 2372,
|
|
|
|
|
2374, 2380, 71, 71, 2381, 71, 2376, 2379, 2383, 71,
|
|
|
|
|
71, 71, 71, 2388, 71, 71, 2382, 71, 2384, 71,
|
|
|
|
|
2386, 2387, 2391, 2385, 2390, 71, 71, 71, 71, 71,
|
|
|
|
|
2389, 2392, 2394, 2393, 71, 71, 2395, 71, 71, 71,
|
|
|
|
|
71, 71, 71, 2397, 2400, 2398, 2401, 2405, 2396, 71,
|
|
|
|
|
2399, 2403, 71, 2402, 2404, 71, 71, 2409, 71, 71,
|
|
|
|
|
2407, 2406, 2910, 71, 2410, 71, 2411, 2408, 71, 71,
|
|
|
|
|
|
|
|
|
|
2414, 71, 2910, 2412, 2413, 2415, 71, 2417, 71, 71,
|
|
|
|
|
2419, 2416, 2418, 71, 71, 2420, 71, 2423, 2421, 2422,
|
|
|
|
|
71, 71, 71, 71, 2424, 71, 2425, 71, 71, 71,
|
|
|
|
|
71, 2426, 71, 2429, 71, 2428, 71, 2431, 71, 2432,
|
|
|
|
|
2427, 2430, 2433, 2434, 71, 71, 71, 71, 71, 2435,
|
|
|
|
|
71, 2440, 2436, 71, 71, 2438, 2439, 2441, 2437, 71,
|
|
|
|
|
2445, 71, 71, 71, 71, 71, 2449, 71, 71, 71,
|
|
|
|
|
71, 71, 2442, 2447, 2443, 2453, 2454, 71, 2444, 2456,
|
|
|
|
|
2448, 2446, 2450, 2451, 2457, 71, 2458, 2459, 71, 2452,
|
|
|
|
|
71, 71, 71, 71, 71, 2455, 71, 71, 2461, 2460,
|
|
|
|
|
|
|
|
|
|
71, 2464, 71, 2462, 71, 2467, 2468, 71, 71, 2463,
|
|
|
|
|
2469, 71, 2470, 71, 2465, 2471, 71, 2466, 2473, 71,
|
|
|
|
|
71, 2476, 71, 2474, 71, 2477, 71, 71, 2472, 2478,
|
|
|
|
|
71, 71, 71, 71, 2479, 2480, 2483, 71, 71, 2475,
|
|
|
|
|
71, 2484, 2485, 71, 71, 2481, 2487, 71, 2486, 71,
|
|
|
|
|
2491, 2488, 2482, 2492, 71, 71, 71, 71, 71, 2493,
|
|
|
|
|
2494, 71, 2489, 2490, 71, 2495, 71, 2500, 71, 71,
|
|
|
|
|
2499, 71, 71, 71, 2504, 2502, 2503, 71, 2497, 71,
|
|
|
|
|
2496, 2498, 71, 71, 71, 2506, 2508, 2505, 71, 71,
|
|
|
|
|
71, 71, 71, 2501, 2511, 2515, 71, 2507, 2518, 71,
|
|
|
|
|
|
|
|
|
|
71, 2509, 2510, 2519, 71, 2514, 2512, 2517, 2521, 71,
|
|
|
|
|
2513, 2516, 71, 2522, 71, 2523, 71, 2524, 71, 2520,
|
|
|
|
|
71, 2525, 71, 71, 71, 71, 71, 2527, 71, 2533,
|
|
|
|
|
71, 71, 71, 71, 2526, 2530, 2534, 2536, 71, 2537,
|
|
|
|
|
2538, 71, 71, 2528, 71, 2531, 71, 2539, 2532, 2535,
|
|
|
|
|
2529, 2540, 71, 2541, 71, 2542, 71, 2545, 71, 71,
|
|
|
|
|
71, 71, 71, 2543, 2546, 2549, 2553, 71, 2547, 71,
|
|
|
|
|
2550, 71, 71, 71, 2544, 2551, 2548, 71, 2552, 71,
|
|
|
|
|
71, 2560, 2555, 71, 71, 71, 71, 71, 71, 2556,
|
|
|
|
|
2554, 2563, 2558, 2564, 71, 2565, 2561, 71, 71, 71,
|
|
|
|
|
|
|
|
|
|
2559, 71, 2567, 71, 2557, 2784, 2562, 2566, 71, 2568,
|
|
|
|
|
2570, 71, 2569, 2571, 71, 2572, 71, 71, 71, 2574,
|
|
|
|
|
2575, 2577, 71, 2576, 71, 71, 2573, 71, 71, 2578,
|
|
|
|
|
2579, 2580, 71, 71, 71, 2585, 71, 71, 2583, 71,
|
|
|
|
|
2581, 71, 2587, 71, 71, 2591, 71, 71, 71, 2582,
|
|
|
|
|
71, 71, 2584, 71, 2589, 2594, 2588, 2595, 71, 71,
|
|
|
|
|
2592, 2586, 71, 2593, 2590, 71, 71, 2598, 71, 2596,
|
|
|
|
|
2599, 2601, 71, 2603, 71, 2604, 71, 2597, 2606, 71,
|
|
|
|
|
71, 71, 71, 2611, 71, 2602, 71, 71, 2600, 2605,
|
|
|
|
|
71, 2610, 71, 71, 2615, 71, 2607, 2608, 2609, 71,
|
|
|
|
|
|
|
|
|
|
71, 2619, 71, 71, 2617, 2620, 71, 2612, 71, 2616,
|
|
|
|
|
71, 2614, 71, 2613, 2622, 71, 71, 71, 2627, 2624,
|
|
|
|
|
71, 2625, 2618, 2621, 71, 2631, 71, 71, 71, 2629,
|
|
|
|
|
2626, 2632, 71, 2633, 2623, 2628, 71, 2636, 71, 2634,
|
|
|
|
|
2630, 2637, 71, 71, 71, 2639, 71, 2638, 71, 71,
|
|
|
|
|
71, 71, 2644, 2641, 2642, 71, 2635, 2643, 71, 2647,
|
|
|
|
|
71, 2648, 71, 71, 2640, 2651, 71, 2645, 2646, 2652,
|
|
|
|
|
71, 71, 2650, 71, 2649, 71, 2653, 2656, 71, 71,
|
|
|
|
|
2655, 2657, 71, 2658, 71, 71, 71, 2654, 2660, 71,
|
|
|
|
|
2659, 71, 71, 71, 2665, 2666, 71, 71, 2661, 71,
|
|
|
|
|
|
|
|
|
|
71, 2670, 71, 71, 71, 71, 2673, 71, 2662, 2669,
|
|
|
|
|
2672, 2667, 71, 2663, 2664, 2674, 71, 2675, 2676, 2668,
|
|
|
|
|
2677, 71, 2671, 71, 2680, 71, 71, 71, 71, 71,
|
|
|
|
|
71, 2679, 2681, 2678, 71, 2684, 71, 71, 71, 71,
|
|
|
|
|
71, 71, 2686, 71, 71, 2687, 2685, 71, 2682, 2683,
|
|
|
|
|
71, 71, 71, 2699, 71, 71, 2696, 2688, 2761, 2689,
|
|
|
|
|
2690, 2691, 2695, 2692, 2697, 2698, 2910, 2693, 2694, 2700,
|
|
|
|
|
71, 71, 2702, 71, 71, 2701, 2703, 71, 2704, 2705,
|
|
|
|
|
71, 71, 2706, 2707, 2710, 71, 2708, 2709, 71, 71,
|
|
|
|
|
2711, 71, 2712, 71, 2715, 71, 71, 71, 2714, 71,
|
|
|
|
|
|
|
|
|
|
71, 71, 2713, 2718, 2717, 71, 71, 71, 2723, 2719,
|
|
|
|
|
2724, 71, 2725, 71, 71, 2722, 2720, 71, 71, 2730,
|
|
|
|
|
2732, 2716, 2727, 2721, 2731, 71, 71, 2728, 71, 2726,
|
|
|
|
|
2729, 71, 71, 71, 71, 71, 71, 2736, 71, 2737,
|
|
|
|
|
2739, 71, 2854, 2740, 2741, 71, 2734, 2742, 71, 2743,
|
|
|
|
|
71, 2744, 71, 2733, 2735, 2738, 2745, 71, 2746, 71,
|
|
|
|
|
2747, 71, 2748, 71, 71, 2750, 71, 71, 71, 71,
|
|
|
|
|
2753, 71, 71, 2749, 71, 71, 2757, 71, 2759, 71,
|
|
|
|
|
71, 71, 71, 2754, 71, 2755, 2756, 2751, 2752, 71,
|
|
|
|
|
2763, 71, 2758, 2766, 2765, 71, 71, 71, 2760, 71,
|
|
|
|
|
|
|
|
|
|
2764, 2768, 71, 2769, 71, 71, 71, 2762, 2773, 2767,
|
|
|
|
|
2774, 71, 2775, 71, 71, 2770, 71, 71, 2771, 2772,
|
|
|
|
|
2778, 71, 71, 2777, 71, 71, 71, 71, 2786, 2776,
|
|
|
|
|
71, 2783, 71, 71, 71, 2780, 2782, 2779, 71, 2785,
|
|
|
|
|
71, 71, 71, 2787, 71, 2781, 71, 2797, 71, 2790,
|
|
|
|
|
71, 2788, 2789, 2799, 71, 2792, 2795, 71, 2800, 2798,
|
|
|
|
|
2801, 71, 2793, 2791, 2794, 71, 2796, 2802, 71, 71,
|
|
|
|
|
71, 71, 71, 2805, 71, 71, 2806, 2807, 71, 2810,
|
|
|
|
|
71, 2813, 71, 71, 2803, 71, 2815, 71, 71, 2804,
|
|
|
|
|
2809, 71, 2811, 2818, 71, 71, 2819, 71, 71, 2808,
|
|
|
|
|
|
|
|
|
|
2812, 2822, 2814, 2816, 2823, 2820, 71, 71, 71, 2817,
|
|
|
|
|
71, 71, 2827, 71, 71, 71, 71, 2821, 71, 71,
|
|
|
|
|
2824, 2825, 2830, 71, 2832, 71, 71, 71, 71, 2829,
|
|
|
|
|
2826, 71, 71, 2837, 2828, 71, 2831, 2838, 2834, 2835,
|
|
|
|
|
2841, 71, 2833, 71, 2843, 71, 2836, 2910, 2842, 2839,
|
|
|
|
|
71, 71, 2844, 71, 2840, 71, 71, 2849, 2845, 71,
|
|
|
|
|
2846, 2847, 71, 71, 2848, 2851, 71, 2850, 71, 71,
|
|
|
|
|
71, 2857, 2852, 71, 71, 71, 2860, 71, 2853, 2861,
|
|
|
|
|
71, 71, 71, 71, 71, 71, 71, 2859, 2855, 2856,
|
|
|
|
|
2862, 2864, 2858, 2863, 71, 2868, 71, 2867, 71, 71,
|
|
|
|
|
|
|
|
|
|
2872, 2865, 2866, 2869, 71, 71, 2874, 71, 2875, 2870,
|
|
|
|
|
71, 2871, 71, 71, 71, 2876, 2879, 71, 71, 2877,
|
|
|
|
|
71, 2883, 71, 2873, 2881, 2880, 2882, 71, 71, 71,
|
|
|
|
|
71, 71, 2878, 71, 2886, 2884, 71, 2885, 2888, 71,
|
|
|
|
|
71, 2890, 71, 71, 2894, 2891, 2895, 71, 71, 2887,
|
|
|
|
|
2889, 71, 2892, 71, 2898, 2899, 71, 71, 2901, 71,
|
|
|
|
|
71, 2893, 2902, 71, 2900, 71, 71, 2896, 71, 71,
|
|
|
|
|
2897, 2904, 2903, 2905, 2908, 71, 2909, 71, 2910, 2906,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2907, 43,
|
|
|
|
|
43, 43, 43, 43, 43, 43, 48, 48, 48, 48,
|
|
|
|
|
|
|
|
|
|
48, 48, 48, 53, 53, 53, 53, 53, 53, 53,
|
|
|
|
|
59, 59, 59, 59, 59, 59, 59, 64, 64, 64,
|
|
|
|
|
64, 64, 64, 64, 74, 74, 2910, 74, 74, 74,
|
|
|
|
|
74, 141, 141, 2910, 2910, 2910, 141, 141, 143, 143,
|
|
|
|
|
2910, 2910, 143, 2910, 143, 145, 2910, 2910, 2910, 2910,
|
|
|
|
|
2910, 145, 148, 148, 2910, 2910, 2910, 148, 148, 150,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 150, 152, 152, 2910, 152,
|
|
|
|
|
152, 152, 152, 75, 75, 2910, 75, 75, 75, 75,
|
|
|
|
|
13, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
2910
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static const flex_int16_t yy_chk[5722] =
|
2007-10-18 18:49:08 -04:00
|
|
|
{ 0,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
2017-03-09 08:18:08 -05:00
|
|
|
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
|
|
|
|
|
3, 3, 3, 4, 4, 4, 5, 5, 6, 6,
|
|
|
|
|
5, 3, 6, 20, 4, 20, 20, 5, 20, 6,
|
|
|
|
|
7, 7, 7, 7, 20, 7, 8, 8, 8, 8,
|
2018-02-08 08:16:36 -05:00
|
|
|
29, 8, 7, 9, 9, 9, 22, 22, 8, 10,
|
2019-04-05 11:39:10 -04:00
|
|
|
10, 10, 15, 25, 9, 29, 15, 25, 2916, 31,
|
2018-02-08 08:16:36 -05:00
|
|
|
10, 11, 11, 11, 11, 11, 11, 19, 79, 19,
|
|
|
|
|
|
|
|
|
|
19, 30, 19, 11, 31, 79, 30, 25, 19, 19,
|
|
|
|
|
47, 47, 11, 12, 12, 12, 12, 12, 12, 21,
|
2018-04-17 09:23:35 -04:00
|
|
|
23, 23, 21, 21, 24, 12, 21, 81, 23, 24,
|
2019-04-05 11:39:10 -04:00
|
|
|
34, 21, 23, 24, 12, 23, 24, 977, 24, 24,
|
2018-04-17 09:23:35 -04:00
|
|
|
21, 26, 26, 27, 27, 90, 28, 81, 32, 32,
|
|
|
|
|
28, 34, 27, 28, 33, 33, 26, 32, 36, 33,
|
|
|
|
|
28, 35, 28, 32, 90, 42, 35, 32, 52, 84,
|
|
|
|
|
35, 52, 36, 37, 37, 33, 35, 38, 37, 35,
|
2019-04-05 11:39:10 -04:00
|
|
|
42, 69, 38, 63, 63, 38, 35, 84, 37, 37,
|
|
|
|
|
40, 37, 38, 80, 40, 69, 38, 38, 39, 39,
|
2018-04-17 09:23:35 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
126, 39, 41, 41, 40, 80, 126, 41, 40, 40,
|
|
|
|
|
39, 41, 58, 89, 58, 58, 39, 58, 66, 86,
|
2018-04-17 09:23:35 -04:00
|
|
|
66, 66, 68, 66, 68, 68, 71, 68, 71, 71,
|
2019-04-05 11:39:10 -04:00
|
|
|
66, 71, 72, 86, 127, 89, 72, 71, 74, 77,
|
|
|
|
|
74, 74, 77, 74, 78, 88, 127, 85, 78, 74,
|
|
|
|
|
74, 82, 83, 87, 82, 83, 85, 92, 93, 87,
|
|
|
|
|
91, 94, 99, 88, 88, 87, 91, 87, 83, 95,
|
|
|
|
|
96, 92, 94, 94, 161, 102, 99, 97, 93, 91,
|
|
|
|
|
94, 97, 161, 105, 98, 106, 101, 95, 96, 98,
|
|
|
|
|
100, 150, 101, 100, 102, 103, 100, 112, 104, 106,
|
|
|
|
|
|
|
|
|
|
103, 104, 105, 109, 107, 104, 108, 105, 107, 100,
|
|
|
|
|
100, 101, 110, 108, 111, 113, 109, 112, 114, 110,
|
|
|
|
|
103, 104, 114, 115, 117, 116, 119, 111, 118, 118,
|
|
|
|
|
116, 122, 120, 113, 116, 121, 120, 123, 132, 125,
|
|
|
|
|
124, 115, 129, 124, 117, 120, 119, 128, 128, 129,
|
|
|
|
|
121, 120, 125, 130, 124, 131, 123, 122, 124, 132,
|
|
|
|
|
129, 133, 134, 135, 134, 128, 136, 137, 128, 130,
|
|
|
|
|
138, 136, 140, 134, 131, 135, 139, 133, 148, 137,
|
|
|
|
|
157, 139, 142, 142, 144, 134, 140, 144, 138, 146,
|
|
|
|
|
154, 146, 146, 154, 146, 149, 149, 151, 157, 151,
|
|
|
|
|
|
|
|
|
|
151, 152, 151, 152, 152, 155, 152, 158, 156, 159,
|
|
|
|
|
155, 162, 163, 152, 156, 160, 164, 159, 165, 166,
|
|
|
|
|
168, 164, 158, 156, 159, 167, 160, 163, 166, 169,
|
|
|
|
|
162, 167, 167, 171, 169, 170, 170, 175, 165, 171,
|
|
|
|
|
173, 172, 179, 172, 173, 168, 172, 174, 174, 173,
|
|
|
|
|
176, 147, 177, 178, 173, 176, 175, 177, 180, 183,
|
|
|
|
|
173, 173, 179, 172, 180, 178, 181, 182, 184, 185,
|
|
|
|
|
181, 186, 182, 183, 187, 188, 189, 189, 191, 187,
|
|
|
|
|
188, 185, 189, 184, 185, 190, 192, 180, 197, 186,
|
|
|
|
|
190, 193, 194, 194, 189, 195, 189, 193, 191, 196,
|
|
|
|
|
|
|
|
|
|
198, 195, 192, 199, 200, 196, 198, 195, 197, 199,
|
|
|
|
|
201, 206, 202, 203, 204, 205, 201, 202, 199, 203,
|
|
|
|
|
204, 207, 205, 208, 206, 200, 209, 207, 210, 211,
|
|
|
|
|
213, 212, 209, 214, 215, 213, 216, 211, 217, 218,
|
|
|
|
|
218, 219, 214, 208, 212, 220, 219, 221, 222, 215,
|
|
|
|
|
210, 221, 216, 223, 224, 225, 226, 227, 217, 223,
|
|
|
|
|
229, 225, 227, 220, 228, 231, 228, 230, 233, 232,
|
|
|
|
|
222, 231, 224, 224, 230, 232, 226, 234, 235, 229,
|
|
|
|
|
236, 237, 237, 234, 238, 238, 239, 233, 242, 240,
|
|
|
|
|
235, 244, 239, 245, 236, 240, 241, 243, 241, 246,
|
|
|
|
|
|
|
|
|
|
247, 248, 243, 244, 249, 260, 248, 246, 250, 145,
|
|
|
|
|
239, 242, 245, 251, 250, 241, 252, 253, 254, 251,
|
|
|
|
|
247, 252, 253, 255, 254, 256, 257, 249, 258, 259,
|
|
|
|
|
260, 263, 262, 263, 261, 262, 266, 259, 255, 256,
|
|
|
|
|
261, 269, 258, 270, 257, 264, 264, 265, 267, 267,
|
|
|
|
|
265, 268, 268, 271, 266, 272, 271, 269, 270, 272,
|
|
|
|
|
273, 274, 275, 277, 276, 277, 278, 274, 283, 273,
|
|
|
|
|
276, 279, 278, 280, 280, 279, 275, 281, 282, 284,
|
|
|
|
|
285, 286, 281, 143, 282, 287, 287, 288, 283, 289,
|
|
|
|
|
288, 290, 279, 291, 286, 290, 293, 284, 292, 292,
|
|
|
|
|
|
|
|
|
|
294, 285, 296, 294, 295, 298, 297, 289, 296, 297,
|
|
|
|
|
300, 291, 141, 301, 293, 302, 295, 298, 299, 300,
|
|
|
|
|
302, 303, 304, 323, 303, 304, 303, 299, 305, 323,
|
|
|
|
|
299, 301, 306, 308, 308, 299, 299, 299, 299, 310,
|
|
|
|
|
311, 305, 303, 307, 306, 307, 307, 309, 312, 313,
|
|
|
|
|
309, 314, 314, 316, 316, 311, 310, 312, 313, 310,
|
|
|
|
|
315, 317, 318, 319, 320, 315, 321, 318, 325, 322,
|
|
|
|
|
334, 334, 326, 327, 70, 319, 317, 326, 340, 327,
|
|
|
|
|
328, 331, 329, 320, 322, 328, 321, 329, 325, 330,
|
|
|
|
|
341, 333, 330, 329, 330, 331, 332, 335, 340, 332,
|
|
|
|
|
|
|
|
|
|
333, 336, 336, 335, 337, 338, 342, 343, 338, 337,
|
|
|
|
|
344, 341, 332, 346, 338, 332, 346, 332, 338, 347,
|
|
|
|
|
349, 342, 343, 352, 344, 350, 338, 339, 339, 352,
|
|
|
|
|
339, 351, 346, 347, 350, 349, 351, 351, 353, 354,
|
|
|
|
|
355, 357, 64, 339, 360, 359, 339, 356, 339, 364,
|
|
|
|
|
339, 348, 59, 348, 348, 355, 356, 363, 354, 353,
|
|
|
|
|
357, 361, 358, 348, 360, 348, 348, 348, 358, 364,
|
|
|
|
|
348, 359, 362, 365, 366, 361, 367, 368, 362, 369,
|
|
|
|
|
363, 367, 362, 370, 370, 369, 371, 372, 373, 366,
|
|
|
|
|
374, 375, 368, 365, 376, 377, 374, 379, 380, 372,
|
|
|
|
|
|
|
|
|
|
377, 382, 373, 381, 378, 378, 371, 378, 384, 383,
|
|
|
|
|
376, 383, 384, 387, 380, 382, 375, 379, 385, 381,
|
|
|
|
|
386, 386, 385, 388, 389, 390, 392, 391, 394, 383,
|
|
|
|
|
393, 398, 387, 394, 54, 392, 402, 385, 388, 393,
|
|
|
|
|
389, 391, 396, 390, 397, 395, 392, 399, 392, 395,
|
|
|
|
|
397, 396, 398, 399, 400, 401, 402, 404, 400, 405,
|
|
|
|
|
401, 403, 403, 406, 405, 407, 407, 408, 409, 410,
|
|
|
|
|
404, 411, 409, 408, 412, 413, 406, 414, 414, 412,
|
|
|
|
|
413, 415, 416, 417, 410, 418, 414, 419, 421, 423,
|
|
|
|
|
419, 420, 411, 415, 423, 420, 424, 418, 422, 422,
|
|
|
|
|
|
|
|
|
|
421, 417, 416, 425, 425, 427, 427, 428, 429, 430,
|
|
|
|
|
431, 432, 435, 434, 437, 436, 429, 424, 430, 440,
|
|
|
|
|
437, 439, 441, 432, 440, 438, 447, 439, 428, 436,
|
|
|
|
|
431, 434, 435, 434, 438, 442, 441, 444, 443, 445,
|
|
|
|
|
447, 446, 445, 442, 443, 448, 442, 446, 449, 451,
|
|
|
|
|
448, 450, 453, 451, 452, 454, 456, 444, 455, 452,
|
|
|
|
|
454, 460, 462, 457, 461, 446, 462, 453, 463, 53,
|
|
|
|
|
449, 467, 450, 464, 455, 456, 457, 458, 458, 461,
|
|
|
|
|
465, 460, 469, 458, 465, 458, 467, 463, 472, 464,
|
|
|
|
|
466, 458, 470, 458, 474, 466, 458, 458, 469, 466,
|
|
|
|
|
|
|
|
|
|
468, 470, 471, 458, 472, 468, 473, 475, 471, 473,
|
|
|
|
|
476, 476, 477, 471, 478, 478, 479, 474, 480, 481,
|
|
|
|
|
482, 483, 486, 484, 485, 487, 488, 475, 484, 490,
|
|
|
|
|
480, 479, 488, 485, 481, 493, 494, 477, 490, 482,
|
|
|
|
|
487, 486, 491, 483, 492, 495, 491, 493, 496, 558,
|
|
|
|
|
492, 494, 497, 498, 499, 500, 558, 501, 499, 501,
|
|
|
|
|
505, 502, 496, 507, 495, 503, 503, 497, 500, 502,
|
|
|
|
|
504, 498, 505, 506, 508, 507, 504, 508, 509, 506,
|
|
|
|
|
510, 511, 512, 514, 513, 512, 511, 48, 516, 517,
|
|
|
|
|
517, 515, 509, 513, 523, 510, 515, 515, 530, 514,
|
|
|
|
|
|
|
|
|
|
513, 516, 519, 513, 518, 518, 520, 520, 519, 521,
|
|
|
|
|
521, 522, 526, 524, 525, 523, 524, 522, 527, 525,
|
|
|
|
|
528, 530, 529, 528, 531, 532, 527, 529, 533, 532,
|
|
|
|
|
535, 526, 534, 536, 533, 537, 534, 539, 536, 538,
|
|
|
|
|
540, 541, 539, 531, 541, 538, 542, 544, 535, 541,
|
|
|
|
|
543, 543, 545, 541, 540, 537, 546, 545, 547, 548,
|
|
|
|
|
549, 546, 550, 553, 542, 544, 549, 551, 553, 552,
|
|
|
|
|
551, 550, 547, 552, 548, 554, 555, 556, 554, 557,
|
|
|
|
|
560, 555, 561, 559, 564, 560, 562, 562, 565, 563,
|
|
|
|
|
566, 593, 593, 556, 567, 552, 559, 557, 563, 566,
|
|
|
|
|
|
|
|
|
|
573, 568, 561, 564, 565, 569, 567, 568, 574, 570,
|
|
|
|
|
571, 569, 570, 571, 572, 575, 581, 577, 573, 572,
|
|
|
|
|
576, 575, 574, 577, 578, 576, 579, 578, 580, 581,
|
|
|
|
|
582, 579, 583, 580, 580, 584, 585, 586, 590, 587,
|
|
|
|
|
594, 584, 588, 582, 587, 588, 586, 589, 596, 591,
|
|
|
|
|
590, 583, 583, 589, 591, 585, 592, 595, 598, 595,
|
|
|
|
|
588, 592, 592, 599, 597, 594, 597, 596, 600, 601,
|
|
|
|
|
602, 603, 606, 605, 604, 608, 598, 603, 604, 607,
|
|
|
|
|
609, 599, 605, 610, 613, 611, 600, 606, 601, 614,
|
|
|
|
|
602, 612, 615, 608, 607, 610, 616, 612, 613, 609,
|
|
|
|
|
|
|
|
|
|
611, 614, 617, 618, 619, 620, 617, 621, 622, 626,
|
|
|
|
|
623, 615, 624, 624, 625, 616, 630, 628, 625, 627,
|
|
|
|
|
619, 618, 631, 620, 623, 621, 621, 622, 626, 629,
|
|
|
|
|
627, 628, 630, 632, 629, 633, 638, 635, 634, 641,
|
|
|
|
|
636, 631, 633, 634, 635, 636, 632, 637, 639, 640,
|
|
|
|
|
642, 643, 637, 641, 638, 639, 644, 645, 640, 642,
|
|
|
|
|
645, 644, 646, 643, 647, 648, 646, 649, 651, 650,
|
|
|
|
|
652, 652, 653, 653, 648, 654, 654, 655, 647, 657,
|
|
|
|
|
659, 653, 649, 650, 658, 661, 655, 660, 662, 651,
|
|
|
|
|
658, 660, 663, 664, 665, 668, 666, 661, 657, 664,
|
|
|
|
|
|
|
|
|
|
659, 667, 665, 666, 669, 678, 670, 672, 681, 675,
|
|
|
|
|
663, 670, 681, 662, 678, 670, 680, 679, 670, 667,
|
|
|
|
|
668, 685, 672, 679, 669, 670, 675, 684, 670, 682,
|
|
|
|
|
682, 686, 680, 683, 683, 687, 688, 717, 684, 685,
|
|
|
|
|
691, 690, 688, 717, 692, 686, 690, 693, 694, 695,
|
|
|
|
|
695, 694, 696, 697, 697, 687, 689, 689, 689, 696,
|
|
|
|
|
689, 691, 692, 689, 698, 699, 699, 701, 689, 704,
|
|
|
|
|
701, 700, 693, 702, 689, 689, 700, 705, 702, 698,
|
|
|
|
|
703, 704, 703, 706, 707, 709, 708, 706, 710, 710,
|
|
|
|
|
715, 711, 714, 709, 712, 716, 705, 713, 713, 719,
|
|
|
|
|
|
|
|
|
|
719, 756, 715, 756, 707, 708, 711, 718, 712, 720,
|
|
|
|
|
714, 722, 718, 723, 720, 720, 722, 716, 724, 723,
|
|
|
|
|
725, 726, 728, 727, 724, 725, 727, 726, 728, 729,
|
|
|
|
|
730, 731, 734, 733, 732, 735, 735, 729, 730, 732,
|
|
|
|
|
733, 736, 738, 739, 737, 741, 742, 744, 738, 731,
|
|
|
|
|
736, 734, 737, 743, 741, 742, 744, 745, 743, 746,
|
|
|
|
|
745, 747, 739, 748, 746, 749, 749, 750, 751, 752,
|
|
|
|
|
753, 757, 757, 754, 758, 747, 754, 760, 752, 761,
|
|
|
|
|
759, 762, 750, 763, 754, 759, 764, 751, 748, 766,
|
|
|
|
|
768, 765, 767, 771, 753, 758, 767, 769, 760, 761,
|
|
|
|
|
|
|
|
|
|
765, 762, 771, 770, 773, 763, 764, 772, 768, 770,
|
|
|
|
|
774, 775, 766, 776, 779, 777, 769, 775, 781, 772,
|
|
|
|
|
777, 778, 778, 773, 774, 782, 780, 776, 783, 784,
|
|
|
|
|
785, 787, 786, 782, 779, 780, 788, 787, 781, 789,
|
|
|
|
|
790, 791, 793, 794, 795, 789, 793, 791, 783, 785,
|
|
|
|
|
788, 784, 786, 792, 797, 799, 795, 43, 796, 792,
|
|
|
|
|
790, 799, 794, 796, 795, 798, 798, 800, 801, 802,
|
|
|
|
|
800, 803, 804, 805, 805, 797, 806, 803, 807, 808,
|
|
|
|
|
808, 809, 802, 807, 810, 812, 801, 815, 810, 811,
|
|
|
|
|
811, 813, 804, 814, 806, 817, 809, 820, 814, 818,
|
|
|
|
|
|
|
|
|
|
821, 823, 823, 825, 824, 827, 815, 812, 824, 826,
|
|
|
|
|
826, 813, 828, 818, 829, 872, 828, 820, 825, 817,
|
|
|
|
|
830, 821, 822, 831, 872, 822, 832, 822, 831, 829,
|
|
|
|
|
827, 822, 834, 822, 830, 835, 833, 836, 822, 835,
|
|
|
|
|
832, 833, 833, 822, 837, 838, 834, 839, 840, 837,
|
|
|
|
|
838, 841, 836, 846, 842, 848, 843, 844, 846, 837,
|
|
|
|
|
842, 839, 843, 844, 847, 841, 845, 845, 849, 840,
|
|
|
|
|
847, 850, 852, 853, 854, 856, 856, 848, 853, 14,
|
|
|
|
|
855, 857, 860, 859, 852, 858, 857, 849, 854, 850,
|
|
|
|
|
851, 851, 855, 858, 861, 867, 851, 859, 851, 862,
|
|
|
|
|
|
|
|
|
|
862, 860, 863, 870, 851, 865, 863, 868, 870, 851,
|
|
|
|
|
851, 865, 866, 861, 867, 866, 851, 869, 871, 873,
|
|
|
|
|
868, 875, 874, 869, 876, 877, 878, 875, 873, 879,
|
|
|
|
|
881, 878, 880, 876, 883, 882, 884, 871, 874, 886,
|
|
|
|
|
891, 892, 885, 883, 877, 884, 880, 882, 885, 879,
|
|
|
|
|
881, 887, 889, 893, 891, 894, 886, 887, 895, 896,
|
|
|
|
|
897, 892, 898, 905, 900, 897, 899, 898, 889, 894,
|
|
|
|
|
903, 899, 893, 900, 896, 902, 895, 901, 901, 905,
|
|
|
|
|
906, 902, 909, 903, 910, 906, 906, 907, 907, 908,
|
|
|
|
|
911, 907, 908, 912, 913, 914, 909, 915, 918, 916,
|
|
|
|
|
|
|
|
|
|
917, 914, 919, 917, 910, 916, 912, 919, 911, 913,
|
|
|
|
|
920, 921, 924, 922, 926, 920, 923, 915, 922, 918,
|
|
|
|
|
926, 923, 927, 928, 924, 929, 931, 921, 932, 928,
|
|
|
|
|
935, 929, 930, 930, 933, 931, 936, 933, 927, 934,
|
|
|
|
|
934, 937, 938, 939, 940, 938, 932, 941, 935, 942,
|
|
|
|
|
940, 947, 943, 941, 942, 936, 939, 943, 944, 945,
|
|
|
|
|
948, 937, 949, 944, 954, 945, 950, 952, 949, 947,
|
|
|
|
|
953, 950, 951, 951, 955, 956, 952, 955, 956, 953,
|
|
|
|
|
948, 957, 954, 958, 959, 960, 964, 961, 962, 966,
|
|
|
|
|
963, 964, 957, 961, 962, 967, 959, 965, 965, 968,
|
|
|
|
|
|
|
|
|
|
970, 958, 969, 971, 960, 963, 969, 972, 966, 967,
|
|
|
|
|
973, 968, 971, 975, 976, 976, 978, 980, 970, 979,
|
|
|
|
|
981, 984, 982, 983, 983, 981, 972, 985, 13, 980,
|
|
|
|
|
978, 982, 975, 985, 979, 973, 986, 988, 987, 988,
|
|
|
|
|
989, 984, 986, 987, 990, 989, 991, 992, 993, 994,
|
|
|
|
|
995, 996, 992, 997, 999, 999, 1000, 995, 990, 1001,
|
|
|
|
|
991, 1002, 1004, 993, 1005, 1003, 996, 1012, 994, 1005,
|
|
|
|
|
1000, 1003, 997, 1007, 1007, 1010, 1002, 1001, 1005, 1008,
|
|
|
|
|
1005, 1009, 1004, 1005, 1008, 1012, 1013, 1011, 1009, 1010,
|
|
|
|
|
1011, 1014, 1015, 1016, 1017, 1013, 1014, 1018, 1016, 1020,
|
|
|
|
|
|
|
|
|
|
1020, 1021, 1022, 1023, 1024, 1017, 1021, 1022, 1025, 1024,
|
|
|
|
|
1026, 1015, 1025, 1027, 1028, 1029, 1018, 1031, 1030, 1026,
|
|
|
|
|
1032, 1033, 1034, 1023, 1035, 1036, 1039, 1032, 1027, 1028,
|
|
|
|
|
1030, 1037, 1031, 1033, 1029, 1038, 1040, 1037, 1041, 1044,
|
|
|
|
|
1046, 1034, 1043, 1036, 1045, 1035, 1039, 1041, 1043, 1047,
|
|
|
|
|
1038, 1048, 1045, 1044, 1047, 1050, 1040, 1051, 0, 1049,
|
|
|
|
|
1046, 1056, 1052, 1048, 1049, 1049, 1053, 1053, 1059, 1055,
|
|
|
|
|
1056, 1051, 1057, 1059, 1050, 1052, 1054, 1060, 1057, 1058,
|
|
|
|
|
1058, 1054, 1055, 1062, 1054, 1054, 1060, 1061, 1062, 1054,
|
|
|
|
|
1065, 1063, 1068, 1061, 1071, 1054, 1063, 1064, 1064, 1054,
|
|
|
|
|
|
|
|
|
|
1066, 1066, 1067, 1069, 1070, 1067, 1073, 1067, 1074, 0,
|
|
|
|
|
1072, 1065, 1068, 1070, 1071, 1072, 1075, 1076, 1079, 1077,
|
|
|
|
|
1073, 1069, 1075, 1076, 1077, 1078, 1074, 1079, 1082, 1078,
|
|
|
|
|
1080, 1080, 1079, 1081, 1079, 1081, 1079, 1084, 1079, 1082,
|
|
|
|
|
1085, 1084, 1086, 1087, 1088, 1089, 1090, 1091, 1092, 1088,
|
|
|
|
|
1088, 1090, 1087, 1093, 1094, 1085, 1095, 1092, 1097, 1099,
|
|
|
|
|
1086, 1091, 1096, 1097, 1095, 1098, 1100, 1089, 1099, 1101,
|
|
|
|
|
1102, 1104, 1093, 1094, 0, 1102, 1096, 1103, 1103, 1098,
|
|
|
|
|
1105, 1105, 1110, 1106, 1100, 1106, 1104, 1108, 1109, 1111,
|
|
|
|
|
1108, 1112, 1112, 1109, 1101, 1113, 1114, 1114, 1111, 1115,
|
|
|
|
|
|
|
|
|
|
1115, 1110, 1116, 1117, 1118, 1119, 1119, 1116, 1120, 1121,
|
|
|
|
|
1122, 1123, 1121, 1124, 1126, 1113, 1123, 1125, 1128, 1125,
|
|
|
|
|
1129, 1128, 1124, 1140, 1117, 1118, 1130, 1137, 1120, 1131,
|
|
|
|
|
1122, 1130, 1126, 1132, 1131, 1129, 1140, 1133, 1134, 1135,
|
|
|
|
|
1135, 1132, 1133, 1134, 1136, 1137, 1138, 1139, 1144, 1136,
|
|
|
|
|
1142, 1143, 1138, 1144, 1139, 1145, 1142, 1143, 1146, 1147,
|
|
|
|
|
1148, 1145, 1149, 1149, 1150, 1152, 1153, 1146, 1154, 1155,
|
|
|
|
|
1156, 1148, 1159, 1158, 1154, 1155, 1156, 1160, 1147, 1158,
|
|
|
|
|
1162, 1161, 1163, 1165, 1150, 1152, 1159, 1164, 1164, 1153,
|
|
|
|
|
1166, 1167, 1159, 1161, 1162, 1170, 1168, 1160, 1169, 1169,
|
|
|
|
|
|
|
|
|
|
1163, 1168, 1171, 1165, 1173, 1174, 1175, 1171, 1176, 1167,
|
|
|
|
|
1174, 1174, 1177, 1178, 1179, 1166, 1180, 1176, 1170, 1182,
|
|
|
|
|
1177, 1182, 1183, 1173, 1175, 1181, 1184, 1178, 1187, 1179,
|
|
|
|
|
1181, 1180, 1184, 1181, 1180, 1185, 1183, 1186, 1188, 1185,
|
|
|
|
|
1189, 1190, 1191, 1193, 1192, 1195, 1190, 1187, 1186, 1192,
|
|
|
|
|
1196, 1197, 1198, 1198, 1200, 1201, 1202, 1199, 1189, 1195,
|
|
|
|
|
1191, 1199, 1202, 1193, 1188, 1203, 1204, 1205, 1196, 1197,
|
|
|
|
|
1208, 1206, 1200, 1207, 1201, 1209, 1210, 1203, 1212, 1211,
|
|
|
|
|
1209, 1205, 1213, 1210, 1211, 1204, 1206, 1215, 1207, 1208,
|
|
|
|
|
1217, 1213, 1214, 1214, 1216, 1219, 1212, 0, 1218, 1220,
|
|
|
|
|
|
|
|
|
|
1216, 1219, 1215, 1218, 1227, 1220, 1221, 1221, 1222, 1222,
|
|
|
|
|
1225, 1217, 1224, 1224, 1225, 1226, 1228, 1229, 1230, 1231,
|
|
|
|
|
1231, 1232, 1227, 1233, 1226, 1230, 1235, 1236, 1234, 1237,
|
|
|
|
|
1228, 1233, 1229, 1234, 1237, 1237, 1239, 1238, 1240, 1240,
|
|
|
|
|
1235, 1232, 1238, 1238, 1241, 1242, 1236, 1244, 1243, 1245,
|
|
|
|
|
1246, 1247, 1244, 1248, 1250, 1249, 1239, 1243, 1252, 1248,
|
|
|
|
|
1249, 1251, 1255, 1241, 1242, 1253, 1254, 1251, 1245, 1247,
|
|
|
|
|
1246, 1253, 1254, 1256, 1257, 1258, 1259, 1252, 1260, 1264,
|
|
|
|
|
1250, 1255, 1261, 1262, 1262, 1263, 1265, 1265, 1263, 1274,
|
|
|
|
|
1259, 1264, 1256, 1257, 1258, 1266, 1268, 1261, 1267, 1260,
|
|
|
|
|
|
|
|
|
|
1266, 1269, 1267, 1270, 1274, 1271, 1275, 1271, 1273, 1268,
|
|
|
|
|
1269, 1271, 1276, 1273, 1277, 1277, 1270, 1278, 1279, 1282,
|
|
|
|
|
1283, 1280, 1278, 1279, 1271, 1280, 1275, 1281, 1276, 1284,
|
|
|
|
|
1285, 1281, 1286, 1286, 1288, 1290, 1285, 1291, 1283, 1282,
|
|
|
|
|
1292, 1292, 1291, 1294, 1293, 1296, 1296, 1304, 1298, 1284,
|
|
|
|
|
1293, 1298, 1288, 1299, 1299, 1300, 1290, 1301, 1303, 1305,
|
|
|
|
|
1307, 1303, 1308, 1294, 1306, 1306, 1309, 1304, 1305, 1310,
|
|
|
|
|
1311, 1300, 1313, 1301, 1310, 1307, 1312, 1312, 1314, 1315,
|
|
|
|
|
1316, 1316, 1317, 1308, 1311, 1309, 1319, 1318, 1320, 1323,
|
|
|
|
|
1313, 1319, 1325, 1314, 1321, 1321, 1317, 1322, 1324, 1324,
|
|
|
|
|
|
|
|
|
|
1326, 1322, 1327, 1320, 1315, 1318, 1327, 1328, 1329, 1323,
|
|
|
|
|
1332, 1326, 1339, 1329, 1325, 1331, 1331, 1333, 1334, 1335,
|
|
|
|
|
1336, 1337, 1337, 1340, 1338, 1341, 1328, 1343, 1332, 1338,
|
|
|
|
|
1342, 1333, 1339, 1335, 1341, 1342, 1346, 1334, 1334, 1344,
|
|
|
|
|
1347, 1344, 1346, 1340, 1345, 1336, 1348, 1343, 1350, 1345,
|
|
|
|
|
1351, 1351, 1348, 1352, 1355, 1353, 1356, 1357, 1357, 1355,
|
|
|
|
|
1347, 1353, 1350, 1358, 1358, 1359, 1360, 1361, 1362, 1363,
|
|
|
|
|
1363, 1362, 1352, 1364, 1365, 1366, 1371, 1367, 1366, 1359,
|
|
|
|
|
1356, 1366, 1361, 1367, 1360, 1364, 1368, 1369, 1593, 1372,
|
|
|
|
|
1370, 1368, 1372, 1366, 1365, 1370, 1369, 1373, 1381, 1374,
|
|
|
|
|
|
|
|
|
|
1379, 1371, 1380, 1373, 1374, 1375, 1375, 1376, 1376, 1377,
|
|
|
|
|
1382, 1378, 1388, 1379, 1593, 1377, 1378, 1381, 1383, 1384,
|
|
|
|
|
1380, 1383, 1385, 1392, 1386, 1384, 1387, 1393, 1385, 1386,
|
|
|
|
|
1382, 1389, 1387, 1390, 1390, 1388, 1389, 1391, 1394, 1395,
|
|
|
|
|
1396, 1392, 1391, 1397, 1398, 1399, 1400, 1393, 1401, 1402,
|
|
|
|
|
1403, 1399, 1406, 1395, 1396, 1397, 1407, 1398, 1394, 1405,
|
|
|
|
|
1405, 1407, 1409, 1402, 1408, 1408, 1400, 1410, 1401, 1411,
|
|
|
|
|
1412, 1403, 1406, 1413, 1414, 1416, 1415, 1409, 1417, 1421,
|
|
|
|
|
1419, 1410, 1413, 1415, 1416, 1423, 1423, 1416, 1412, 1414,
|
|
|
|
|
1424, 1424, 1426, 1411, 1417, 1419, 1422, 1425, 1427, 1422,
|
|
|
|
|
|
|
|
|
|
1419, 1427, 1428, 1428, 1421, 1429, 1430, 1431, 1432, 1425,
|
|
|
|
|
1426, 1433, 1431, 1432, 1435, 1434, 1436, 1437, 1429, 1438,
|
|
|
|
|
1441, 1439, 1444, 1435, 1442, 1430, 1437, 1439, 1438, 1437,
|
|
|
|
|
1433, 1434, 1440, 1440, 1443, 1436, 1444, 1442, 1445, 1446,
|
|
|
|
|
1441, 1448, 1449, 1450, 1450, 1451, 1452, 1455, 1453, 1454,
|
|
|
|
|
1454, 1446, 1443, 1453, 1445, 1452, 1455, 1456, 1457, 1455,
|
|
|
|
|
1449, 1451, 1458, 1459, 1454, 1462, 1448, 1461, 1459, 1459,
|
|
|
|
|
1463, 1462, 1464, 1464, 1470, 1456, 1465, 0, 1466, 1457,
|
|
|
|
|
1458, 1461, 1465, 1466, 1467, 1468, 1471, 1472, 1463, 1473,
|
|
|
|
|
1467, 1468, 1474, 1472, 1470, 1474, 1477, 1475, 1479, 1480,
|
|
|
|
|
|
|
|
|
|
1471, 1474, 1473, 1475, 1477, 1481, 1482, 1483, 1484, 1485,
|
|
|
|
|
1486, 1487, 1487, 1481, 1490, 1482, 1488, 1479, 1480, 1489,
|
|
|
|
|
1483, 1484, 1488, 1485, 1486, 1489, 1491, 1490, 1494, 1492,
|
|
|
|
|
1493, 1495, 1496, 1487, 1497, 1498, 1501, 1495, 1500, 1500,
|
|
|
|
|
1502, 1494, 1506, 1503, 1502, 1507, 1491, 1492, 1503, 1493,
|
|
|
|
|
1497, 1506, 1504, 1498, 1496, 1505, 1501, 1504, 1509, 1511,
|
|
|
|
|
1505, 1510, 1510, 1512, 1513, 1514, 1514, 1515, 1507, 1516,
|
|
|
|
|
1517, 1519, 1518, 1509, 1520, 1512, 1516, 1522, 1511, 1521,
|
|
|
|
|
1523, 1515, 1517, 1513, 1518, 1521, 1524, 1525, 1525, 1522,
|
|
|
|
|
1519, 1533, 1524, 1526, 1520, 1530, 1526, 1529, 1523, 1527,
|
|
|
|
|
|
|
|
|
|
1527, 1531, 1529, 1533, 1530, 1532, 1532, 1531, 1534, 1535,
|
|
|
|
|
1534, 1536, 1535, 1537, 1538, 1539, 1540, 1541, 1542, 1543,
|
|
|
|
|
1544, 1540, 1546, 1547, 1550, 1544, 1541, 1545, 1548, 1548,
|
|
|
|
|
1542, 1536, 1538, 1539, 1543, 1537, 1545, 1549, 1547, 1551,
|
|
|
|
|
1552, 1553, 1546, 1549, 1554, 1550, 1554, 1559, 1555, 1545,
|
|
|
|
|
1556, 1556, 1557, 1557, 1558, 1558, 1552, 1562, 1551, 1560,
|
|
|
|
|
1560, 1553, 1555, 1563, 1555, 1561, 1561, 1559, 1564, 1564,
|
|
|
|
|
1565, 1566, 1567, 1569, 1565, 1567, 1570, 1566, 1562, 1569,
|
|
|
|
|
1571, 1572, 1573, 1578, 1563, 1573, 1571, 1574, 1574, 1575,
|
|
|
|
|
1575, 1576, 1579, 1580, 1570, 1577, 1581, 1576, 1585, 1580,
|
|
|
|
|
|
|
|
|
|
1585, 1584, 1586, 1578, 1587, 1583, 1572, 1577, 1577, 1577,
|
|
|
|
|
1583, 1583, 1579, 1586, 1577, 1584, 1581, 1588, 1589, 1587,
|
|
|
|
|
1590, 1591, 1596, 1588, 1592, 1592, 1595, 1589, 1594, 1594,
|
|
|
|
|
1597, 1597, 1598, 1598, 1599, 1602, 1602, 1603, 1604, 1606,
|
|
|
|
|
1590, 1611, 1591, 1607, 1596, 1608, 1595, 1604, 1606, 1609,
|
|
|
|
|
1609, 1608, 1610, 1612, 1599, 1614, 1611, 1613, 1615, 1615,
|
|
|
|
|
1612, 1616, 1603, 1617, 1607, 1619, 1613, 1626, 1620, 1621,
|
|
|
|
|
1619, 1622, 1626, 1610, 1620, 1629, 1623, 1624, 1622, 1617,
|
|
|
|
|
1628, 1614, 1623, 1624, 1625, 1625, 1627, 1616, 1631, 1621,
|
|
|
|
|
1630, 1631, 1632, 1633, 1629, 1627, 1634, 1634, 1635, 1637,
|
|
|
|
|
|
|
|
|
|
1628, 1636, 1630, 1638, 1635, 1640, 1647, 1638, 1641, 1642,
|
|
|
|
|
1632, 1644, 1645, 0, 1637, 1647, 1645, 1648, 1648, 1633,
|
|
|
|
|
1646, 1636, 1650, 1638, 1642, 1640, 1646, 1641, 1649, 1652,
|
|
|
|
|
1644, 1653, 1649, 1650, 1651, 1651, 1654, 1655, 1650, 1656,
|
|
|
|
|
1657, 1658, 1655, 1659, 1660, 1653, 1667, 1658, 0, 1660,
|
|
|
|
|
1652, 1661, 1661, 1662, 1662, 1654, 1665, 1663, 1659, 1656,
|
|
|
|
|
1657, 1663, 1666, 1668, 1668, 1665, 1667, 1669, 1669, 1670,
|
|
|
|
|
1671, 1672, 1673, 1666, 1670, 1670, 1671, 1672, 1666, 1674,
|
|
|
|
|
1675, 1676, 1678, 1680, 1674, 1679, 1681, 1676, 1683, 1679,
|
|
|
|
|
1682, 1684, 1675, 1685, 1678, 1680, 1682, 1684, 1673, 1688,
|
|
|
|
|
|
|
|
|
|
1687, 1689, 1692, 1692, 1691, 1685, 1689, 1691, 1693, 1693,
|
|
|
|
|
1683, 1681, 1687, 1694, 1694, 1695, 1696, 1697, 1688, 1698,
|
|
|
|
|
1699, 1700, 1696, 1697, 1698, 1704, 1699, 1702, 1704, 1705,
|
|
|
|
|
1700, 1708, 1702, 1706, 1706, 1695, 1709, 1710, 1711, 1711,
|
|
|
|
|
1712, 1705, 1710, 1708, 1716, 1713, 1714, 1717, 1709, 1712,
|
|
|
|
|
1713, 1714, 1715, 1715, 1718, 1719, 1717, 1720, 1721, 1722,
|
|
|
|
|
1727, 1720, 1723, 1721, 1716, 1722, 1725, 1725, 1726, 1727,
|
|
|
|
|
1728, 1728, 1718, 1729, 1719, 1730, 1723, 1731, 1725, 1732,
|
|
|
|
|
1733, 1739, 1729, 1740, 1732, 1742, 1726, 1730, 1736, 1736,
|
|
|
|
|
1743, 1738, 1745, 1733, 1738, 1744, 1752, 1739, 1731, 1740,
|
|
|
|
|
|
|
|
|
|
1742, 1744, 1746, 1746, 1743, 1747, 1749, 1747, 1751, 1745,
|
|
|
|
|
1748, 1748, 1753, 1753, 1749, 1751, 1752, 1754, 1755, 1756,
|
|
|
|
|
1757, 1758, 1759, 1760, 1761, 1763, 1754, 0, 1764, 1766,
|
|
|
|
|
1761, 1756, 1757, 1758, 1765, 1765, 1767, 1769, 1760, 1755,
|
|
|
|
|
1764, 1768, 1769, 1761, 1768, 1763, 1770, 1766, 1759, 1772,
|
|
|
|
|
1773, 1774, 1773, 1775, 1772, 1776, 1767, 1780, 1775, 1778,
|
|
|
|
|
1782, 1781, 1776, 1783, 1784, 1783, 1770, 1787, 1778, 1774,
|
|
|
|
|
1781, 1786, 1782, 1786, 1789, 1780, 1788, 1788, 1791, 1790,
|
|
|
|
|
1791, 1787, 1792, 1784, 1790, 1793, 1794, 1792, 1795, 1796,
|
|
|
|
|
1793, 1797, 1798, 1799, 1801, 1796, 1797, 1802, 1803, 1803,
|
|
|
|
|
|
|
|
|
|
1789, 1799, 1804, 1804, 1794, 1798, 1805, 1806, 1795, 1807,
|
|
|
|
|
1810, 1802, 1808, 1801, 1809, 1807, 1809, 1808, 1810, 1811,
|
|
|
|
|
1811, 1805, 1812, 1813, 1813, 1818, 1810, 1806, 1814, 1814,
|
|
|
|
|
1815, 1816, 1819, 1817, 1812, 1817, 1820, 1819, 1819, 1815,
|
|
|
|
|
1816, 1821, 1823, 1816, 1824, 1820, 1818, 1825, 1827, 1824,
|
|
|
|
|
1828, 1829, 1825, 1821, 1823, 1830, 1830, 1831, 1832, 1834,
|
|
|
|
|
1829, 1827, 1833, 1839, 1835, 1837, 1840, 1841, 1838, 1848,
|
|
|
|
|
1828, 1840, 1841, 1834, 1849, 1831, 1832, 1837, 1833, 1835,
|
|
|
|
|
1838, 1842, 1845, 1839, 1850, 1847, 1851, 1852, 1845, 1849,
|
|
|
|
|
1842, 1847, 1848, 1853, 1853, 1854, 1852, 1855, 1855, 1856,
|
|
|
|
|
|
|
|
|
|
1858, 1845, 1850, 1857, 1854, 1858, 1859, 1857, 1860, 1861,
|
|
|
|
|
1862, 1851, 1865, 1860, 1860, 1861, 1862, 1863, 1856, 1859,
|
|
|
|
|
1863, 1864, 1868, 1868, 1869, 1869, 1870, 1871, 1871, 1864,
|
|
|
|
|
1872, 1872, 1865, 1873, 1874, 1870, 1875, 1883, 1876, 1869,
|
|
|
|
|
1877, 1877, 1875, 1876, 1879, 1873, 1878, 1878, 1880, 1879,
|
|
|
|
|
1869, 1882, 1874, 1886, 1880, 1882, 1884, 1883, 1887, 1888,
|
|
|
|
|
1884, 1889, 1890, 1887, 1892, 1891, 1894, 1890, 1893, 1893,
|
|
|
|
|
1894, 1895, 1896, 1897, 1899, 1898, 1889, 1896, 1886, 1900,
|
|
|
|
|
1892, 1901, 1888, 1891, 1900, 1902, 1895, 1898, 1903, 1903,
|
|
|
|
|
1905, 1906, 1907, 1899, 1901, 1908, 1909, 1910, 1905, 1897,
|
|
|
|
|
|
|
|
|
|
1911, 1912, 1913, 1902, 1915, 1916, 1916, 0, 1919, 1917,
|
|
|
|
|
1906, 1907, 1917, 1912, 1918, 1920, 1910, 0, 1908, 1915,
|
|
|
|
|
1909, 1911, 1919, 1913, 1921, 1921, 1924, 1918, 1920, 1922,
|
|
|
|
|
1922, 1923, 1923, 1925, 1926, 1926, 1927, 1928, 1928, 1929,
|
|
|
|
|
1932, 1924, 1931, 1933, 1929, 1927, 1925, 1931, 1927, 1934,
|
|
|
|
|
1935, 1935, 1936, 1936, 1937, 1938, 1938, 1939, 1940, 1940,
|
|
|
|
|
1932, 1934, 1941, 1933, 1942, 1943, 1943, 1944, 1944, 1942,
|
|
|
|
|
1945, 1946, 1947, 1937, 1948, 1939, 1950, 1941, 1951, 1951,
|
|
|
|
|
1946, 1950, 1952, 1955, 1945, 1954, 1947, 1953, 1953, 1955,
|
|
|
|
|
1959, 1956, 1960, 1948, 1956, 1957, 1957, 1958, 1958, 1961,
|
|
|
|
|
|
|
|
|
|
1964, 1952, 1965, 1954, 1962, 1962, 1966, 1960, 1967, 1959,
|
|
|
|
|
1969, 1957, 1967, 1968, 1968, 1970, 1971, 1974, 1961, 1975,
|
|
|
|
|
1964, 1966, 1973, 1973, 1976, 1965, 1975, 1977, 1981, 1969,
|
|
|
|
|
1970, 1971, 1978, 1978, 1979, 1983, 1986, 1974, 1976, 1980,
|
|
|
|
|
1984, 1980, 1987, 1979, 1985, 1984, 1988, 1983, 1981, 1985,
|
|
|
|
|
1990, 1989, 1992, 1977, 1993, 1987, 1989, 1992, 1994, 1993,
|
|
|
|
|
1995, 1986, 1996, 1997, 2000, 1998, 1995, 1988, 2001, 1997,
|
|
|
|
|
1998, 2002, 1999, 1994, 2002, 2003, 1990, 1999, 2004, 2005,
|
|
|
|
|
2007, 2001, 2006, 1996, 2003, 2012, 2008, 2004, 2005, 2000,
|
|
|
|
|
2009, 2006, 2008, 2010, 2007, 2014, 2009, 2010, 2015, 2015,
|
|
|
|
|
|
|
|
|
|
2016, 2017, 2017, 2018, 2014, 2012, 2016, 2023, 2020, 2024,
|
|
|
|
|
2017, 2021, 2022, 2022, 2026, 2027, 2029, 2028, 2024, 2033,
|
|
|
|
|
2035, 2035, 2023, 2018, 2020, 2018, 2026, 2021, 2029, 2032,
|
|
|
|
|
2031, 2027, 2028, 2031, 2032, 2034, 2036, 2036, 2040, 2033,
|
|
|
|
|
2038, 2038, 2039, 2040, 2041, 2039, 2042, 2034, 2043, 2043,
|
|
|
|
|
2041, 2044, 2042, 2045, 2045, 2046, 2047, 2048, 2049, 2049,
|
|
|
|
|
2051, 2053, 2053, 2052, 2051, 2044, 2052, 2046, 2054, 2055,
|
|
|
|
|
2047, 2056, 2059, 2054, 2062, 2057, 2048, 2061, 2055, 2057,
|
|
|
|
|
2058, 2058, 2061, 2063, 2064, 2059, 2065, 2066, 2067, 2068,
|
|
|
|
|
2065, 2056, 2070, 2067, 2062, 2068, 2069, 2072, 2064, 2073,
|
|
|
|
|
|
|
|
|
|
2074, 2075, 2069, 2063, 2073, 2079, 2074, 2066, 2081, 2075,
|
|
|
|
|
2070, 2081, 2076, 2072, 2076, 2080, 2080, 2082, 2085, 2079,
|
|
|
|
|
2083, 2083, 2085, 2086, 2087, 2088, 2088, 2094, 2089, 2086,
|
|
|
|
|
2092, 2092, 2096, 2097, 2100, 2101, 2087, 2089, 2108, 2100,
|
|
|
|
|
2104, 2104, 2102, 2082, 2108, 2094, 2096, 2102, 2103, 2097,
|
|
|
|
|
2106, 2106, 2110, 2103, 2109, 2109, 2111, 2112, 2114, 2115,
|
|
|
|
|
2118, 2101, 2112, 2116, 2116, 2120, 2119, 2121, 2110, 2118,
|
|
|
|
|
2124, 2115, 2119, 2123, 2123, 2125, 2129, 2114, 2111, 2127,
|
|
|
|
|
2127, 2129, 2121, 2120, 2128, 2128, 2130, 2132, 2131, 2124,
|
|
|
|
|
2131, 2130, 2133, 2125, 2134, 2135, 2136, 2136, 2137, 2137,
|
|
|
|
|
|
|
|
|
|
2135, 2132, 2138, 2138, 2139, 2139, 2133, 2140, 2141, 2145,
|
|
|
|
|
2142, 2143, 2143, 2146, 2134, 2142, 2144, 2144, 2147, 2140,
|
|
|
|
|
2148, 2145, 2149, 2149, 2150, 2146, 2141, 2151, 2151, 2152,
|
|
|
|
|
2152, 2153, 2154, 2155, 2156, 2157, 2148, 2159, 2147, 2160,
|
|
|
|
|
2155, 2163, 2153, 2150, 2154, 2158, 2156, 2161, 2161, 2162,
|
|
|
|
|
2158, 2164, 2165, 2166, 2167, 2157, 2173, 2159, 2162, 2160,
|
|
|
|
|
2168, 2168, 2174, 2169, 2170, 2165, 2171, 2163, 2167, 2175,
|
|
|
|
|
2176, 2164, 2169, 2176, 2173, 2177, 0, 2166, 2178, 2170,
|
|
|
|
|
2179, 2171, 2187, 2178, 2174, 2179, 2180, 2180, 2188, 2177,
|
|
|
|
|
2181, 2181, 2175, 2182, 2182, 2184, 2184, 2186, 2186, 2188,
|
|
|
|
|
|
|
|
|
|
2187, 2189, 2191, 2192, 2193, 2194, 2195, 2196, 2198, 2198,
|
|
|
|
|
2197, 2200, 2200, 2201, 2202, 2195, 2203, 2203, 2206, 2206,
|
|
|
|
|
2189, 2192, 2191, 2202, 2205, 2194, 2193, 2196, 2197, 2207,
|
|
|
|
|
2208, 2209, 2211, 2205, 2210, 2201, 2212, 2213, 2209, 2214,
|
|
|
|
|
2215, 2215, 2216, 2216, 2218, 2217, 2219, 2207, 2208, 2210,
|
|
|
|
|
2211, 2217, 2220, 2213, 2212, 2221, 2222, 2223, 2214, 2224,
|
|
|
|
|
2221, 2219, 2218, 2225, 2224, 2225, 2226, 2226, 2227, 2230,
|
|
|
|
|
2227, 2220, 2228, 2228, 2232, 2233, 2222, 2223, 2234, 2235,
|
|
|
|
|
2236, 2237, 2241, 2232, 2238, 2236, 2242, 2245, 2230, 2242,
|
|
|
|
|
2234, 2243, 2243, 2244, 2233, 2246, 2246, 2249, 2252, 2235,
|
|
|
|
|
|
|
|
|
|
2247, 2237, 2241, 2238, 2247, 2245, 2250, 2254, 2244, 2255,
|
|
|
|
|
2250, 2252, 2249, 2251, 2251, 2256, 2256, 2260, 2258, 2259,
|
|
|
|
|
2259, 2261, 2261, 2262, 2270, 2263, 0, 2254, 2262, 2255,
|
|
|
|
|
2258, 2264, 2264, 2269, 2269, 2272, 2260, 2263, 2271, 2271,
|
|
|
|
|
2273, 2274, 2275, 2276, 2276, 2277, 2270, 2282, 2272, 2284,
|
|
|
|
|
2274, 2275, 2282, 2273, 2279, 2279, 2283, 2285, 2286, 2287,
|
|
|
|
|
2277, 2283, 2285, 2284, 2288, 2291, 2286, 2289, 2294, 2292,
|
|
|
|
|
2297, 2293, 2299, 2288, 2292, 2289, 2293, 2297, 2287, 2300,
|
|
|
|
|
2291, 2295, 2295, 2294, 2296, 2296, 2298, 2301, 2304, 2302,
|
|
|
|
|
2299, 2298, 0, 2301, 2302, 2303, 2303, 2300, 2310, 2305,
|
|
|
|
|
|
|
|
|
|
2306, 2306, 0, 2304, 2305, 2307, 2307, 2311, 2311, 2312,
|
|
|
|
|
2313, 2310, 2312, 2314, 2315, 2313, 2313, 2316, 2314, 2315,
|
|
|
|
|
2317, 2318, 2319, 2316, 2317, 2320, 2318, 2321, 2322, 2323,
|
|
|
|
|
2328, 2319, 2325, 2322, 2332, 2321, 2326, 2325, 2330, 2326,
|
|
|
|
|
2320, 2323, 2328, 2330, 2331, 2333, 2334, 2335, 2337, 2331,
|
|
|
|
|
2336, 2336, 2332, 2340, 2341, 2334, 2335, 2337, 2333, 2342,
|
|
|
|
|
2343, 2343, 2344, 2348, 2345, 2346, 2347, 2347, 2350, 2352,
|
|
|
|
|
2355, 2353, 2340, 2345, 2341, 2353, 2354, 2354, 2342, 2356,
|
|
|
|
|
2346, 2344, 2348, 2350, 2357, 2356, 2358, 2359, 2359, 2352,
|
|
|
|
|
2357, 2360, 2358, 2361, 2363, 2355, 2364, 2366, 2361, 2360,
|
|
|
|
|
|
|
|
|
|
2367, 2366, 2368, 2363, 2370, 2370, 2371, 2371, 2378, 2364,
|
|
|
|
|
2372, 2372, 2374, 2374, 2367, 2376, 2376, 2368, 2379, 2381,
|
|
|
|
|
2382, 2382, 2387, 2379, 2379, 2384, 2384, 2389, 2378, 2385,
|
|
|
|
|
2385, 2386, 2391, 2395, 2386, 2387, 2392, 2392, 2397, 2381,
|
|
|
|
|
2393, 2393, 2394, 2394, 2398, 2389, 2396, 2396, 2395, 2399,
|
|
|
|
|
2400, 2397, 2391, 2401, 2401, 2402, 2400, 2406, 2407, 2402,
|
|
|
|
|
2405, 2408, 2398, 2399, 2409, 2405, 2405, 2410, 2411, 2416,
|
|
|
|
|
2409, 2412, 2421, 2410, 2416, 2412, 2413, 2413, 2407, 2418,
|
|
|
|
|
2406, 2408, 2419, 2422, 2423, 2419, 2422, 2418, 2425, 2424,
|
|
|
|
|
2426, 2427, 2429, 2411, 2424, 2428, 2428, 2421, 2431, 2430,
|
|
|
|
|
|
|
|
|
|
2432, 2423, 2423, 2431, 2431, 2427, 2425, 2430, 2433, 2433,
|
|
|
|
|
2426, 2429, 2434, 2434, 2435, 2435, 2436, 2436, 2438, 2432,
|
|
|
|
|
2437, 2437, 2439, 2440, 2441, 2443, 2442, 2439, 2444, 2446,
|
|
|
|
|
2446, 2448, 2451, 2447, 2438, 2442, 2447, 2450, 2450, 2451,
|
|
|
|
|
2452, 2452, 2453, 2440, 2456, 2443, 2457, 2453, 2444, 2448,
|
|
|
|
|
2441, 2455, 2455, 2456, 2458, 2457, 2460, 2461, 2461, 2463,
|
|
|
|
|
2462, 2464, 2466, 2458, 2462, 2465, 2472, 2472, 2463, 2467,
|
|
|
|
|
2465, 2465, 2473, 2475, 2460, 2466, 2464, 2476, 2467, 2479,
|
|
|
|
|
2481, 2482, 2475, 2480, 2484, 2486, 2488, 2482, 2489, 2476,
|
|
|
|
|
2473, 2488, 2480, 2489, 2490, 2490, 2484, 2493, 2491, 2500,
|
|
|
|
|
|
|
|
|
|
2481, 2501, 2493, 2763, 2479, 2763, 2486, 2491, 2494, 2494,
|
|
|
|
|
2496, 2496, 2494, 2497, 2497, 2498, 2498, 2499, 2502, 2500,
|
|
|
|
|
2501, 2504, 2508, 2502, 2505, 2506, 2499, 2504, 2509, 2505,
|
|
|
|
|
2506, 2507, 2507, 2510, 2511, 2512, 2513, 2516, 2510, 2517,
|
|
|
|
|
2508, 2512, 2514, 2514, 2518, 2520, 2520, 2522, 2525, 2509,
|
|
|
|
|
2523, 2524, 2511, 2526, 2517, 2524, 2516, 2525, 2527, 2528,
|
|
|
|
|
2522, 2513, 2530, 2523, 2518, 2529, 2532, 2528, 2537, 2526,
|
|
|
|
|
2529, 2531, 2531, 2534, 2534, 2535, 2535, 2527, 2539, 2539,
|
|
|
|
|
2541, 2542, 2543, 2546, 2546, 2532, 2544, 2547, 2530, 2537,
|
|
|
|
|
2548, 2544, 2549, 2551, 2551, 2552, 2541, 2542, 2543, 2554,
|
|
|
|
|
|
|
|
|
|
2555, 2556, 2556, 2558, 2554, 2557, 2557, 2547, 2560, 2552,
|
|
|
|
|
2562, 2549, 2561, 2548, 2559, 2559, 2564, 2565, 2563, 2560,
|
|
|
|
|
2566, 2561, 2555, 2558, 2563, 2567, 2567, 2573, 2568, 2565,
|
|
|
|
|
2562, 2568, 2569, 2569, 2559, 2564, 2574, 2575, 2583, 2573,
|
|
|
|
|
2566, 2576, 2576, 2575, 2577, 2578, 2579, 2577, 2581, 2582,
|
|
|
|
|
2585, 2578, 2584, 2581, 2582, 2589, 2574, 2583, 2584, 2586,
|
|
|
|
|
2586, 2588, 2588, 2590, 2579, 2592, 2592, 2585, 2585, 2593,
|
|
|
|
|
2593, 2594, 2590, 2595, 2589, 2596, 2594, 2597, 2597, 2605,
|
|
|
|
|
2596, 2598, 2598, 2599, 2599, 2600, 2607, 2595, 2602, 2602,
|
|
|
|
|
2600, 2608, 2609, 2610, 2610, 2612, 2612, 2613, 2605, 2614,
|
|
|
|
|
|
|
|
|
|
2615, 2616, 2616, 2617, 2625, 2618, 2621, 2621, 2607, 2615,
|
|
|
|
|
2618, 2613, 2624, 2608, 2609, 2623, 2623, 2624, 2625, 2614,
|
|
|
|
|
2626, 2627, 2617, 2628, 2629, 2629, 2626, 2630, 2632, 2633,
|
|
|
|
|
2634, 2628, 2630, 2627, 2635, 2634, 2636, 2638, 2639, 2640,
|
|
|
|
|
2641, 2645, 2636, 2642, 2649, 2638, 2635, 2643, 2632, 2633,
|
|
|
|
|
2644, 2646, 2650, 2653, 2653, 2727, 2646, 2639, 2727, 2640,
|
|
|
|
|
2641, 2642, 2645, 2643, 2649, 2650, 0, 2644, 2644, 2654,
|
|
|
|
|
2654, 2655, 2659, 2659, 2668, 2655, 2661, 2661, 2662, 2662,
|
|
|
|
|
2665, 2662, 2663, 2663, 2665, 2663, 2664, 2664, 2669, 2664,
|
|
|
|
|
2667, 2667, 2668, 2671, 2672, 2672, 2675, 2676, 2671, 2677,
|
|
|
|
|
|
|
|
|
|
2678, 2679, 2669, 2677, 2676, 2681, 2682, 2683, 2683, 2678,
|
|
|
|
|
2684, 2684, 2685, 2685, 2686, 2682, 2679, 2687, 2688, 2689,
|
|
|
|
|
2690, 2675, 2687, 2681, 2689, 2689, 2690, 2688, 2691, 2686,
|
|
|
|
|
2688, 2692, 2694, 2693, 2695, 2844, 2696, 2694, 2698, 2695,
|
|
|
|
|
2697, 2697, 2844, 2698, 2701, 2701, 2692, 2704, 2704, 2705,
|
|
|
|
|
2705, 2706, 2706, 2691, 2693, 2696, 2707, 2707, 2708, 2708,
|
|
|
|
|
2709, 2709, 2710, 2710, 2712, 2713, 2713, 2714, 2718, 2716,
|
|
|
|
|
2717, 2717, 2719, 2712, 2720, 2721, 2721, 2722, 2723, 2723,
|
|
|
|
|
2726, 2728, 2730, 2718, 2736, 2719, 2720, 2714, 2716, 2729,
|
|
|
|
|
2729, 2732, 2722, 2733, 2732, 2734, 2735, 2737, 2726, 2733,
|
|
|
|
|
|
|
|
|
|
2730, 2735, 2738, 2736, 2740, 2749, 2754, 2728, 2749, 2734,
|
|
|
|
|
2751, 2751, 2752, 2752, 2755, 2737, 2756, 2757, 2738, 2740,
|
|
|
|
|
2756, 2758, 2760, 2755, 2764, 2761, 2762, 2765, 2765, 2754,
|
|
|
|
|
2766, 2762, 2767, 2769, 2768, 2758, 2761, 2757, 2770, 2764,
|
|
|
|
|
2771, 2772, 2776, 2766, 2773, 2760, 2777, 2778, 2778, 2769,
|
|
|
|
|
2779, 2767, 2768, 2780, 2780, 2771, 2776, 2781, 2781, 2779,
|
|
|
|
|
2782, 2782, 2772, 2770, 2773, 2784, 2777, 2783, 2783, 2785,
|
|
|
|
|
2786, 2787, 2788, 2786, 2789, 2790, 2787, 2788, 2792, 2791,
|
|
|
|
|
2793, 2794, 2794, 2795, 2784, 2791, 2796, 2796, 2798, 2785,
|
|
|
|
|
2790, 2800, 2792, 2803, 2803, 2804, 2804, 2805, 2806, 2789,
|
|
|
|
|
|
|
|
|
|
2793, 2807, 2795, 2798, 2808, 2805, 2809, 2807, 2810, 2800,
|
|
|
|
|
2808, 2811, 2812, 2812, 2814, 2816, 2819, 2806, 2817, 2820,
|
|
|
|
|
2809, 2810, 2817, 2821, 2820, 2822, 2823, 2824, 2825, 2816,
|
|
|
|
|
2811, 2828, 2826, 2825, 2814, 2829, 2819, 2826, 2822, 2823,
|
|
|
|
|
2830, 2830, 2821, 2831, 2832, 2837, 2824, 0, 2831, 2828,
|
|
|
|
|
2832, 2833, 2833, 2834, 2829, 2835, 2836, 2838, 2834, 2843,
|
|
|
|
|
2835, 2836, 2839, 2838, 2837, 2840, 2840, 2839, 2842, 2845,
|
|
|
|
|
2846, 2847, 2842, 2848, 2849, 2850, 2850, 2847, 2843, 2852,
|
|
|
|
|
2852, 2853, 2855, 2856, 2857, 2862, 2854, 2849, 2845, 2846,
|
|
|
|
|
2853, 2854, 2848, 2853, 2858, 2858, 2860, 2857, 2859, 2863,
|
|
|
|
|
|
|
|
|
|
2863, 2855, 2856, 2859, 2864, 2865, 2865, 2866, 2866, 2860,
|
|
|
|
|
2867, 2862, 2868, 2869, 2874, 2867, 2870, 2870, 2876, 2868,
|
|
|
|
|
2871, 2874, 2872, 2864, 2872, 2871, 2873, 2873, 2875, 2877,
|
|
|
|
|
2878, 2881, 2869, 2885, 2877, 2875, 2883, 2876, 2880, 2880,
|
|
|
|
|
2884, 2883, 2886, 2887, 2887, 2884, 2889, 2889, 2890, 2878,
|
|
|
|
|
2881, 2891, 2885, 2892, 2892, 2893, 2893, 2894, 2896, 2896,
|
|
|
|
|
2904, 2886, 2897, 2897, 2894, 2898, 2900, 2890, 2903, 2905,
|
|
|
|
|
2891, 2900, 2898, 2903, 2906, 2906, 2907, 2907, 0, 2904,
|
|
|
|
|
0, 0, 0, 0, 0, 0, 0, 0, 2905, 2911,
|
|
|
|
|
2911, 2911, 2911, 2911, 2911, 2911, 2912, 2912, 2912, 2912,
|
|
|
|
|
|
|
|
|
|
2912, 2912, 2912, 2913, 2913, 2913, 2913, 2913, 2913, 2913,
|
|
|
|
|
2914, 2914, 2914, 2914, 2914, 2914, 2914, 2915, 2915, 2915,
|
|
|
|
|
2915, 2915, 2915, 2915, 2917, 2917, 0, 2917, 2917, 2917,
|
|
|
|
|
2917, 2918, 2918, 0, 0, 0, 2918, 2918, 2919, 2919,
|
|
|
|
|
0, 0, 2919, 0, 2919, 2920, 0, 0, 0, 0,
|
|
|
|
|
0, 2920, 2921, 2921, 0, 0, 0, 2921, 2921, 2922,
|
|
|
|
|
0, 0, 0, 0, 0, 2922, 2923, 2923, 0, 2923,
|
|
|
|
|
2923, 2923, 2923, 2924, 2924, 0, 2924, 2924, 2924, 2924,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910, 2910,
|
|
|
|
|
2910
|
2007-10-18 18:49:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
static yy_state_type yy_last_accepting_state;
|
|
|
|
|
static char *yy_last_accepting_cpos;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
extern int yy_flex_debug;
|
|
|
|
|
int yy_flex_debug = 0;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* The intent behind this definition is that it'll catch
|
|
|
|
|
* any uses of REJECT which flex missed.
|
|
|
|
|
*/
|
|
|
|
|
#define REJECT reject_used_but_not_detected
|
|
|
|
|
static int yy_more_flag = 0;
|
|
|
|
|
static int yy_more_len = 0;
|
2015-12-01 03:11:48 -05:00
|
|
|
#define yymore() ((yy_more_flag) = 1)
|
|
|
|
|
#define YY_MORE_ADJ (yy_more_len)
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
|
char *yytext;
|
2012-01-10 10:07:16 -05:00
|
|
|
#line 1 "./util/configlexer.lex"
|
|
|
|
|
#line 2 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
/*
|
|
|
|
|
* configlexer.lex - lexical analyzer for unbound config file
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2001-2006, NLnet Labs. All rights reserved
|
|
|
|
|
*
|
|
|
|
|
* See LICENSE for the license.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2016-09-13 06:44:24 -04:00
|
|
|
|
|
|
|
|
/* because flex keeps having sign-unsigned compare problems that are unfixed*/
|
2016-10-20 03:46:35 -04:00
|
|
|
#if defined(__clang__)||(defined(__GNUC__)&&((__GNUC__ >4)||(defined(__GNUC_MINOR__)&&(__GNUC__ ==4)&&(__GNUC_MINOR__ >=2))))
|
2016-09-13 06:44:24 -04:00
|
|
|
#pragma GCC diagnostic ignored "-Wsign-compare"
|
2016-10-20 03:46:35 -04:00
|
|
|
#endif
|
2016-09-13 06:44:24 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <strings.h>
|
2012-09-27 04:52:37 -04:00
|
|
|
#ifdef HAVE_GLOB_H
|
|
|
|
|
# include <glob.h>
|
|
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#include "util/config_file.h"
|
|
|
|
|
#include "util/configparser.h"
|
|
|
|
|
void ub_c_error(const char *message);
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
#define LEXOUT(s) printf s /* used ONLY when debugging */
|
|
|
|
|
#else
|
|
|
|
|
#define LEXOUT(s)
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-04-17 08:14:43 -04:00
|
|
|
/** avoid warning in about fwrite return value */
|
|
|
|
|
#define ECHO ub_c_error_msg("syntax error at text: %s", yytext)
|
|
|
|
|
|
2009-02-06 05:19:16 -05:00
|
|
|
/** A parser variable, this is a statement in the config file which is
|
|
|
|
|
* of the form variable: value1 value2 ... nargs is the number of values. */
|
|
|
|
|
#define YDVAR(nargs, var) \
|
|
|
|
|
num_args=(nargs); \
|
|
|
|
|
LEXOUT(("v(%s%d) ", yytext, num_args)); \
|
|
|
|
|
if(num_args > 0) { BEGIN(val); } \
|
|
|
|
|
return (var);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
struct inc_state {
|
|
|
|
|
char* filename;
|
|
|
|
|
int line;
|
2013-06-10 09:37:14 -04:00
|
|
|
YY_BUFFER_STATE buffer;
|
|
|
|
|
struct inc_state* next;
|
2007-10-18 18:49:08 -04:00
|
|
|
};
|
2013-06-10 09:37:14 -04:00
|
|
|
static struct inc_state* config_include_stack = NULL;
|
2013-07-26 09:11:53 -04:00
|
|
|
static int inc_depth = 0;
|
2009-02-06 05:19:16 -05:00
|
|
|
static int inc_prev = 0;
|
|
|
|
|
static int num_args = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2013-07-26 09:11:53 -04:00
|
|
|
void init_cfg_parse(void)
|
|
|
|
|
{
|
|
|
|
|
config_include_stack = NULL;
|
|
|
|
|
inc_depth = 0;
|
|
|
|
|
inc_prev = 0;
|
|
|
|
|
num_args = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
static void config_start_include(const char* filename)
|
|
|
|
|
{
|
|
|
|
|
FILE *input;
|
2013-06-10 09:37:14 -04:00
|
|
|
struct inc_state* s;
|
|
|
|
|
char* nm;
|
2013-07-26 09:11:53 -04:00
|
|
|
if(inc_depth++ > 100000) {
|
|
|
|
|
ub_c_error_msg("too many include files");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-01-14 03:28:46 -05:00
|
|
|
if(*filename == '\0') {
|
2007-10-18 18:49:08 -04:00
|
|
|
ub_c_error_msg("empty include file name");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
s = (struct inc_state*)malloc(sizeof(*s));
|
|
|
|
|
if(!s) {
|
|
|
|
|
ub_c_error_msg("include %s: malloc failure", filename);
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
}
|
2009-01-06 10:47:15 -05:00
|
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
|
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
|
|
|
filename += strlen(cfg_parser->chroot);
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
nm = strdup(filename);
|
|
|
|
|
if(!nm) {
|
2013-08-20 10:14:32 -04:00
|
|
|
ub_c_error_msg("include %s: strdup failure", filename);
|
2013-06-10 09:37:14 -04:00
|
|
|
free(s);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
input = fopen(filename, "r");
|
|
|
|
|
if(!input) {
|
|
|
|
|
ub_c_error_msg("cannot open include file '%s': %s",
|
|
|
|
|
filename, strerror(errno));
|
2013-06-10 09:37:14 -04:00
|
|
|
free(s);
|
|
|
|
|
free(nm);
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
}
|
2013-06-10 09:37:14 -04:00
|
|
|
LEXOUT(("switch_to_include_file(%s)\n", filename));
|
|
|
|
|
s->filename = cfg_parser->filename;
|
|
|
|
|
s->line = cfg_parser->line;
|
|
|
|
|
s->buffer = YY_CURRENT_BUFFER;
|
|
|
|
|
s->next = config_include_stack;
|
|
|
|
|
config_include_stack = s;
|
|
|
|
|
cfg_parser->filename = nm;
|
2007-10-18 18:49:08 -04:00
|
|
|
cfg_parser->line = 1;
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_switch_to_buffer(yy_create_buffer(input, YY_BUF_SIZE));
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2012-09-27 04:52:37 -04:00
|
|
|
static void config_start_include_glob(const char* filename)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* check for wildcards */
|
|
|
|
|
#ifdef HAVE_GLOB
|
|
|
|
|
glob_t g;
|
|
|
|
|
size_t i;
|
|
|
|
|
int r, flags;
|
|
|
|
|
if(!(!strchr(filename, '*') && !strchr(filename, '?') && !strchr(filename, '[') &&
|
|
|
|
|
!strchr(filename, '{') && !strchr(filename, '~'))) {
|
|
|
|
|
flags = 0
|
|
|
|
|
#ifdef GLOB_ERR
|
|
|
|
|
| GLOB_ERR
|
|
|
|
|
#endif
|
2018-11-26 04:54:34 -05:00
|
|
|
/* do not set GLOB_NOSORT so the results are sorted
|
|
|
|
|
and in a predictable order. */
|
2012-09-27 04:52:37 -04:00
|
|
|
#ifdef GLOB_BRACE
|
|
|
|
|
| GLOB_BRACE
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef GLOB_TILDE
|
|
|
|
|
| GLOB_TILDE
|
|
|
|
|
#endif
|
|
|
|
|
;
|
|
|
|
|
memset(&g, 0, sizeof(g));
|
2015-09-22 04:04:19 -04:00
|
|
|
if(cfg_parser->chroot && strncmp(filename, cfg_parser->chroot,
|
|
|
|
|
strlen(cfg_parser->chroot)) == 0) {
|
|
|
|
|
filename += strlen(cfg_parser->chroot);
|
|
|
|
|
}
|
2012-09-27 04:52:37 -04:00
|
|
|
r = glob(filename, flags, NULL, &g);
|
|
|
|
|
if(r) {
|
|
|
|
|
/* some error */
|
|
|
|
|
globfree(&g);
|
2013-04-15 03:57:08 -04:00
|
|
|
if(r == GLOB_NOMATCH)
|
|
|
|
|
return; /* no matches for pattern */
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include(filename); /* let original deal with it */
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
/* process files found, if any */
|
|
|
|
|
for(i=0; i<(size_t)g.gl_pathc; i++) {
|
|
|
|
|
config_start_include(g.gl_pathv[i]);
|
|
|
|
|
}
|
|
|
|
|
globfree(&g);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endif /* HAVE_GLOB */
|
|
|
|
|
|
|
|
|
|
config_start_include(filename);
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
static void config_end_include(void)
|
|
|
|
|
{
|
2013-06-10 09:37:14 -04:00
|
|
|
struct inc_state* s = config_include_stack;
|
2013-07-26 09:11:53 -04:00
|
|
|
--inc_depth;
|
2013-06-10 09:37:14 -04:00
|
|
|
if(!s) return;
|
2007-10-18 18:49:08 -04:00
|
|
|
free(cfg_parser->filename);
|
2013-06-10 09:37:14 -04:00
|
|
|
cfg_parser->filename = s->filename;
|
|
|
|
|
cfg_parser->line = s->line;
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER);
|
2013-06-10 09:37:14 -04:00
|
|
|
yy_switch_to_buffer(s->buffer);
|
|
|
|
|
config_include_stack = s->next;
|
|
|
|
|
free(s);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef yy_set_bol /* compat definition, for flex 2.4.6 */
|
|
|
|
|
#define yy_set_bol(at_bol) \
|
|
|
|
|
{ \
|
|
|
|
|
if ( ! yy_current_buffer ) \
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE ); \
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_current_buffer->yy_ch_buf[0] = ((at_bol)?'\n':' '); \
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 2846 "<stdout>"
|
2008-05-22 06:41:13 -04:00
|
|
|
#define YY_NO_INPUT 1
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 185 "./util/configlexer.lex"
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_NO_UNPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
#define YY_NO_UNPUT 1
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif
|
|
|
|
|
#ifndef YY_NO_INPUT
|
|
|
|
|
#define YY_NO_INPUT 1
|
|
|
|
|
#endif
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 2855 "<stdout>"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 2857 "<stdout>"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
#define INITIAL 0
|
2007-10-18 18:49:08 -04:00
|
|
|
#define quotedstring 1
|
2007-11-28 03:10:45 -05:00
|
|
|
#define singlequotedstr 2
|
|
|
|
|
#define include 3
|
|
|
|
|
#define include_quoted 4
|
2009-02-06 05:19:16 -05:00
|
|
|
#define val 5
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifndef YY_NO_UNISTD_H
|
|
|
|
|
/* Special case for "unistd.h", since it is non-ANSI. We include it way
|
|
|
|
|
* down here because we want the user's section 1 to have been scanned first.
|
|
|
|
|
* The user has a chance to override it with an option.
|
|
|
|
|
*/
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef YY_EXTRA_TYPE
|
|
|
|
|
#define YY_EXTRA_TYPE void *
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static int yy_init_globals ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
/* Accessor methods to globals.
|
|
|
|
|
These are made visible to non-reentrant scanners for convenience. */
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
int yylex_destroy ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
int yyget_debug ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
void yyset_debug ( int debug_flag );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
YY_EXTRA_TYPE yyget_extra ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
void yyset_extra ( YY_EXTRA_TYPE user_defined );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
FILE *yyget_in ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
void yyset_in ( FILE * _in_str );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
FILE *yyget_out ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
void yyset_out ( FILE * _out_str );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
int yyget_leng ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
char *yyget_text ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
int yyget_lineno ( void );
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
void yyset_lineno ( int _line_number );
|
2009-03-24 08:53:25 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Macros after this point can all be overridden by user definitions in
|
|
|
|
|
* section 1.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef YY_SKIP_YYWRAP
|
|
|
|
|
#ifdef __cplusplus
|
2019-04-05 11:39:10 -04:00
|
|
|
extern "C" int yywrap ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2019-04-05 11:39:10 -04:00
|
|
|
extern int yywrap ( void );
|
2015-11-30 11:10:26 -05:00
|
|
|
#endif
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifndef YY_NO_UNPUT
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#ifndef yytext_ptr
|
2019-04-05 11:39:10 -04:00
|
|
|
static void yy_flex_strncpy ( char *, const char *, int );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2019-04-05 11:39:10 -04:00
|
|
|
static int yy_flex_strlen ( const char * );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef YY_NO_INPUT
|
2015-12-01 03:11:48 -05:00
|
|
|
#ifdef __cplusplus
|
2019-04-05 11:39:10 -04:00
|
|
|
static int yyinput ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2019-04-05 11:39:10 -04:00
|
|
|
static int input ( void );
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Amount of stuff to slurp up with each read. */
|
|
|
|
|
#ifndef YY_READ_BUF_SIZE
|
2016-06-13 02:57:28 -04:00
|
|
|
#ifdef __ia64__
|
|
|
|
|
/* On IA-64, the buffer size is 16k, not 8k */
|
|
|
|
|
#define YY_READ_BUF_SIZE 16384
|
|
|
|
|
#else
|
2007-10-18 18:49:08 -04:00
|
|
|
#define YY_READ_BUF_SIZE 8192
|
2016-06-13 02:57:28 -04:00
|
|
|
#endif /* __ia64__ */
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Copy whatever the last rule matched to the standard output. */
|
|
|
|
|
#ifndef ECHO
|
|
|
|
|
/* This used to be an fputs(), but since the string might contain NUL's,
|
|
|
|
|
* we now use fwrite().
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
#define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
|
2007-10-18 18:49:08 -04:00
|
|
|
#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) \
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
|
2007-10-18 18:49:08 -04:00
|
|
|
{ \
|
2015-12-01 03:11:48 -05:00
|
|
|
int c = '*'; \
|
2018-04-24 06:23:12 -04:00
|
|
|
int n; \
|
2007-10-18 18:49:08 -04:00
|
|
|
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; \
|
|
|
|
|
} \
|
2015-12-01 03:11:48 -05:00
|
|
|
else \
|
|
|
|
|
{ \
|
|
|
|
|
errno=0; \
|
2018-04-24 06:23:12 -04:00
|
|
|
while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
|
2015-12-01 03:11:48 -05:00
|
|
|
{ \
|
|
|
|
|
if( errno != EINTR) \
|
|
|
|
|
{ \
|
|
|
|
|
YY_FATAL_ERROR( "input in flex scanner failed" ); \
|
|
|
|
|
break; \
|
|
|
|
|
} \
|
|
|
|
|
errno=0; \
|
|
|
|
|
clearerr(yyin); \
|
|
|
|
|
} \
|
|
|
|
|
}\
|
|
|
|
|
\
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* No semi-colon after return; correct usage is to write "yyterminate();" -
|
|
|
|
|
* we don't want an extra ';' after the "return" because that will cause
|
|
|
|
|
* some compilers to complain about unreachable statements.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef yyterminate
|
|
|
|
|
#define yyterminate() return YY_NULL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Number of entries by which start-condition stack grows. */
|
|
|
|
|
#ifndef YY_START_STACK_INCR
|
|
|
|
|
#define YY_START_STACK_INCR 25
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Report a fatal error. */
|
|
|
|
|
#ifndef YY_FATAL_ERROR
|
|
|
|
|
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* end tables serialization structures and prototypes */
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Default declaration of generated scanner - a define so the user can
|
|
|
|
|
* easily add parameters.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef YY_DECL
|
2015-12-01 03:11:48 -05:00
|
|
|
#define YY_DECL_IS_OURS 1
|
|
|
|
|
|
|
|
|
|
extern int yylex (void);
|
|
|
|
|
|
|
|
|
|
#define YY_DECL int yylex (void)
|
|
|
|
|
#endif /* !YY_DECL */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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
|
2016-10-20 03:46:35 -04:00
|
|
|
#define YY_BREAK /*LINTED*/break;
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#define YY_RULE_SETUP \
|
|
|
|
|
YY_USER_ACTION
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** The main scanner function which does all the work.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_DECL
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_state_type yy_current_state;
|
|
|
|
|
char *yy_cp, *yy_bp;
|
|
|
|
|
int yy_act;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
if ( !(yy_init) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_init) = 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifdef YY_USER_INIT
|
|
|
|
|
YY_USER_INIT;
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! (yy_start) )
|
|
|
|
|
(yy_start) = 1; /* first start state */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( ! yyin )
|
|
|
|
|
yyin = stdin;
|
|
|
|
|
|
|
|
|
|
if ( ! yyout )
|
|
|
|
|
yyout = stdout;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER ) {
|
|
|
|
|
yyensure_buffer_stack ();
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE =
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
{
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 205 "./util/configlexer.lex"
|
2016-10-20 03:46:35 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 3079 "<stdout>"
|
2016-10-20 03:46:35 -04:00
|
|
|
|
|
|
|
|
while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_more_len) = 0;
|
|
|
|
|
if ( (yy_more_flag) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
(yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr));
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_more_flag) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Support of yytext. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*yy_cp = (yy_hold_char);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_bp points to the position in yy_ch_buf of the start of
|
|
|
|
|
* the current run.
|
|
|
|
|
*/
|
|
|
|
|
yy_bp = yy_cp;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_match:
|
|
|
|
|
do
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2019-04-05 11:39:10 -04:00
|
|
|
if ( yy_current_state >= 2911 )
|
|
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
++yy_cp;
|
|
|
|
|
}
|
2019-04-05 11:39:10 -04:00
|
|
|
while ( yy_base[yy_current_state] != 5681 );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
yy_find_action:
|
|
|
|
|
yy_act = yy_accept[yy_current_state];
|
|
|
|
|
if ( yy_act == 0 )
|
|
|
|
|
{ /* have to back up */
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
|
|
|
yy_current_state = (yy_last_accepting_state);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_act = yy_accept[yy_current_state];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
YY_DO_BEFORE_ACTION;
|
|
|
|
|
|
|
|
|
|
do_action: /* This label is used only to access EOF actions. */
|
|
|
|
|
|
|
|
|
|
switch ( yy_act )
|
|
|
|
|
{ /* beginning of action switch */
|
|
|
|
|
case 0: /* must back up */
|
|
|
|
|
/* undo the effects of YY_DO_BEFORE_ACTION */
|
2015-12-01 03:11:48 -05:00
|
|
|
*yy_cp = (yy_hold_char);
|
|
|
|
|
yy_cp = (yy_last_accepting_cpos);
|
|
|
|
|
yy_current_state = (yy_last_accepting_state);
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_find_action;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 206 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("SP ")); /* ignore */ }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 2:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 208 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
2009-12-01 03:12:12 -05:00
|
|
|
/* note that flex makes the longest match and '.' is any but not nl */
|
2009-02-06 05:19:16 -05:00
|
|
|
LEXOUT(("comment(%s) ", yytext)); /* ignore */ }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 3:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 211 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ YDVAR(0, VAR_SERVER) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 4:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 212 "./util/configlexer.lex"
|
2015-11-30 11:10:26 -05:00
|
|
|
{ YDVAR(1, VAR_QNAME_MINIMISATION) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 5:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 213 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_QNAME_MINIMISATION_STRICT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 6:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 214 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_NUM_THREADS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 7:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 215 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_VERBOSITY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 8:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 216 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 9:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 217 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_RANGE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 10:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 218 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_PERMIT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 11:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 219 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_PORT_AVOID) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 12:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 220 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 13:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 221 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_INCOMING_NUM_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 14:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 222 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_IP4) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 15:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 223 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_IP6) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 16:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 224 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_PREFER_IP6) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 17:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 225 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_UDP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 18:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 226 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_DO_TCP) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 19:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 227 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 20:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 228 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_MSS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 21:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 229 "./util/configlexer.lex"
|
2016-10-11 07:32:50 -04:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_TCP_MSS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 22:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 230 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TCP_IDLE_TIMEOUT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 23:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 231 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 24:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 232 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_EDNS_TCP_KEEPALIVE_TIMEOUT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 25:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 233 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 26:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 234 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_UPSTREAM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 27:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 235 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 28:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 236 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_KEY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 29:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 237 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 30:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 238 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_SERVICE_PEM) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 31:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 239 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 32:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 240 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_SSL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 33:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 241 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 34:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 242 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_CERT_BUNDLE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 35:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 243 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_WIN_CERT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 36:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 244 "./util/configlexer.lex"
|
2018-06-12 04:45:57 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 37:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 245 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 38:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 246 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 39:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 247 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ YDVAR(1, VAR_TLS_ADDITIONAL_PORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 40:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 248 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TLS_SESSION_TICKET_KEYS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 41:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 249 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TLS_CIPHERS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 42:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 250 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TLS_CIPHERSUITES) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 43:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 251 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_USE_SYSTEMD) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 44:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 252 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DO_DAEMONIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 45:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 253 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 46:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 254 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 47:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 255 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_OUTGOING_INTERFACE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 48:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 256 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INTERFACE_AUTOMATIC) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 49:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 257 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_SO_RCVBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 50:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 258 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_SO_SNDBUF) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 51:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 259 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_SO_REUSEPORT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 52:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 260 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_IP_TRANSPARENT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 53:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 261 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_IP_FREEBIND) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 54:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 262 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CHROOT) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 55:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 263 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_USERNAME) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 56:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 264 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DIRECTORY) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 57:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 265 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_LOGFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 58:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 266 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PIDFILE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 59:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 267 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_ROOT_HINTS) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 60:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 268 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STREAM_WAIT_SIZE) }
|
2007-10-19 04:32:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 61:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 269 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_EDNS_BUFFER_SIZE) }
|
2007-10-19 10:02:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 62:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 270 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_BUFFER_SIZE) }
|
2007-10-22 02:25:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 63:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 271 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SIZE) }
|
2007-10-31 03:46:30 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 64:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 272 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_MSG_CACHE_SLABS) }
|
2007-11-01 11:32:27 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 65:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 273 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SIZE) }
|
2007-11-19 10:32:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 66:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 274 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_RRSET_CACHE_SLABS) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 67:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 275 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_TTL) }
|
2007-11-20 09:48:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 68:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 276 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MAX_NEGATIVE_TTL) }
|
2008-01-15 04:45:30 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 69:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 277 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CACHE_MIN_TTL) }
|
2008-02-05 05:23:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 70:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 278 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_HOST_TTL) }
|
2008-02-20 02:26:03 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 71:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 279 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_LAME_TTL) }
|
2008-02-27 04:39:27 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 72:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 280 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_SLABS) }
|
2008-04-09 08:29:53 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 73:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 281 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_NUMHOSTS) }
|
2008-04-09 11:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 74:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 282 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_LAME_SIZE) }
|
2008-08-13 10:30:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 75:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 283 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_INFRA_CACHE_MIN_RTT) }
|
2008-08-21 10:58:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 76:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 284 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_NUM_QUERIES_PER_THREAD) }
|
2008-08-27 09:02:22 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 77:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 285 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_JOSTLE_TIMEOUT) }
|
2008-08-29 10:46:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 78:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 286 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DELAY_CLOSE) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 79:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 287 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_TARGET_FETCH_POLICY) }
|
2008-09-03 10:40:09 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 80:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 288 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_SHORT_BUFSIZE) }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
2008-09-03 10:40:09 -04:00
|
|
|
case 81:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 289 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_LARGE_QUERIES) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 82:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 290 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_GLUE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 83:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 291 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_DNSSEC_STRIPPED) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 84:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 292 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_BELOW_NXDOMAIN) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 85:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 293 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_REFERRAL_PATH) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 86:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 294 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_HARDEN_ALGO_DOWNGRADE) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 87:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 295 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_USE_CAPS_FOR_ID) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 88:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 296 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_CAPS_WHITELIST) }
|
2008-09-16 05:08:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 89:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 297 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_UNWANTED_REPLY_THRESHOLD) }
|
2008-09-30 11:04:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 90:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 298 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_ADDRESS) }
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 91:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 299 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PRIVATE_DOMAIN) }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 92:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 300 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH_KEY) }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 93:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 301 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_PREFETCH) }
|
2009-02-06 07:51:45 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 94:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 302 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_DENY_ANY) }
|
2009-03-18 10:02:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 95:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 303 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(0, VAR_STUB_ZONE) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 96:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 304 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_NAME) }
|
2009-03-25 10:47:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 97:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 305 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_ADDR) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 98:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 306 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_HOST) }
|
2009-04-06 10:09:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 99:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 307 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_PRIME) }
|
2009-04-14 06:10:11 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 100:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 308 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_FIRST) }
|
2009-07-20 10:22:29 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 101:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 309 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_NO_CACHE) }
|
2009-08-12 11:26:47 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 102:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 310 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_BREAK
|
2009-08-12 11:26:47 -04:00
|
|
|
case 103:
|
2008-09-10 11:23:01 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 311 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_STUB_SSL_UPSTREAM) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 104:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 312 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(0, VAR_FORWARD_ZONE) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 105:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 313 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_ADDR) }
|
2009-09-25 04:54:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 106:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 314 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_HOST) }
|
2009-10-29 06:37:44 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 107:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 315 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_FIRST) }
|
2010-01-07 09:38:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 108:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 316 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_NO_CACHE) }
|
2010-01-13 08:33:18 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 109:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 317 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
|
2010-11-15 09:30:34 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 110:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 318 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FORWARD_SSL_UPSTREAM) }
|
2010-11-18 03:49:15 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 111:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 319 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(0, VAR_AUTH_ZONE) }
|
2011-05-10 07:20:14 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 112:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 320 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_RPZ) }
|
2011-06-16 09:15:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 113:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 321 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_TAGS) }
|
2011-08-22 09:58:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 114:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 322 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_ZONEFILE) }
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_BREAK
|
2011-08-22 09:58:40 -04:00
|
|
|
case 115:
|
2009-08-25 04:46:33 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 323 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MASTER) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 116:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 324 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_URL) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 117:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 325 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_ALLOW_NOTIFY) }
|
2011-11-08 05:56:42 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 118:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 326 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FOR_DOWNSTREAM) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 119:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 327 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FOR_UPSTREAM) }
|
2012-03-01 08:16:40 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 120:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 328 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FALLBACK_ENABLED) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 121:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 329 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_VIEW) }
|
2012-04-10 05:16:39 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 122:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 330 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VIEW_FIRST) }
|
2013-04-25 07:55:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 123:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 331 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_ADDRESS) }
|
2013-11-05 21:48:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 124:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 332 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DO_NOT_QUERY_LOCALHOST) }
|
2014-01-24 06:43:38 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 125:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 333 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL) }
|
2014-01-28 09:35:55 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 126:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 334 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SEND_CLIENT_SUBNET) }
|
2014-05-20 06:38:32 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 127:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 335 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_ZONE) }
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_BREAK
|
2014-05-20 06:38:32 -04:00
|
|
|
case 128:
|
2011-10-31 10:48:48 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 336 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_ALWAYS_FORWARD) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 129:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 337 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CLIENT_SUBNET_OPCODE) }
|
2014-07-31 03:15:33 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 130:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 338 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV4) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 131:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 339 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_CLIENT_SUBNET_IPV6) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 132:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 340 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV4) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 133:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 341 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MIN_CLIENT_SUBNET_IPV6) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 134:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 342 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV4) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 135:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 343 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_ECS_TREE_SIZE_IPV6) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 136:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 344 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_IDENTITY) }
|
2015-01-06 09:12:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 137:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 345 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_VERSION) }
|
2015-02-02 03:46:22 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 138:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 346 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_HIDE_TRUSTANCHOR) }
|
2015-03-09 09:30:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 139:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 347 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IDENTITY) }
|
2015-03-19 05:50:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 140:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 348 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VERSION) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 141:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 349 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MODULE_CONF) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 142:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 350 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 143:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 351 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DLV_ANCHOR_FILE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 144:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 352 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_FILE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 145:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 353 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_AUTO_TRUST_ANCHOR_FILE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 146:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 354 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_TRUSTED_KEYS_FILE) }
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_BREAK
|
2015-03-19 05:50:35 -04:00
|
|
|
case 147:
|
2014-08-05 03:57:52 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 355 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 148:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 356 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_TRUST_ANCHOR_SIGNALING) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 149:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 357 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_ROOT_KEY_SENTINEL) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 150:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 358 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_OVERRIDE_DATE) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 151:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 359 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MIN) }
|
2015-04-16 10:18:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 152:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 360 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_SIG_SKEW_MAX) }
|
2015-05-01 08:36:16 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 153:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 361 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_BOGUS_TTL) }
|
2015-05-29 10:51:36 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 154:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 362 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_CLEAN_ADDITIONAL) }
|
2015-07-30 07:52:12 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 155:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 363 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_PERMISSIVE_MODE) }
|
2015-11-30 11:10:26 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 156:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 364 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_AGGRESSIVE_NSEC) }
|
2016-01-05 05:03:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 157:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 365 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IGNORE_CD_FLAG) }
|
2016-01-05 05:03:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 158:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 366 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED) }
|
2016-02-09 08:25:59 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 159:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 367 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL) }
|
2016-03-15 05:35:48 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 160:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 368 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SERVE_EXPIRED_TTL_RESET) }
|
2016-04-21 05:49:02 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 161:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 369 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FAKE_DSA) }
|
2016-04-21 05:49:02 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 162:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-21 11:20:14 -05:00
|
|
|
#line 370 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FAKE_SHA1) }
|
2016-05-24 08:17:42 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 163:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 03:46:33 -05:00
|
|
|
#line 371 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_VAL_LOG_LEVEL) }
|
2016-06-06 04:33:59 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 164:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 03:46:33 -05:00
|
|
|
#line 372 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SIZE) }
|
2016-06-06 06:00:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 165:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 04:35:52 -05:00
|
|
|
#line 373 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_KEY_CACHE_SLABS) }
|
2016-06-06 09:47:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 166:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 374 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(1, VAR_NEG_CACHE_SIZE) }
|
2016-06-06 09:47:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 167:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 375 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_VAL_NSEC3_KEYSIZE_ITERATIONS) }
|
2016-07-04 10:49:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 168:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 377 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_ADD_HOLDDOWN) }
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_BREAK
|
2016-07-04 10:49:49 -04:00
|
|
|
case 169:
|
2015-04-10 05:59:57 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 378 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DEL_HOLDDOWN) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 170:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 379 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_KEEP_MISSING) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 171:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 380 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_PERMIT_SMALL_HOLDDOWN) }
|
2016-10-11 07:32:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 172:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 381 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_USE_SYSLOG) }
|
2016-10-24 08:43:20 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 173:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 382 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_IDENTITY) }
|
2016-10-26 03:38:00 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 174:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 383 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_TIME_ASCII) }
|
2016-11-03 04:51:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 175:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 384 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_QUERIES) }
|
2016-11-04 08:07:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 176:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 385 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_REPLIES) }
|
2016-11-04 08:07:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 177:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 386 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_TAG_QUERYREPLY) }
|
2017-01-03 08:43:29 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 178:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 387 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_LOCAL_ACTIONS) }
|
2017-01-05 06:39:54 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 179:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 388 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOG_SERVFAIL) }
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_BREAK
|
2017-01-05 06:39:54 -05:00
|
|
|
case 180:
|
2016-10-05 05:36:25 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 389 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 181:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 390 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 182:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 391 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOCAL_DATA_PTR) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 183:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 392 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_UNBLOCK_LAN_ZONES) }
|
2017-02-23 07:05:05 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 184:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 393 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_INSECURE_LAN_ZONES) }
|
2017-02-23 07:05:05 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 185:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 394 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_INTERVAL) }
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_BREAK
|
2017-02-23 07:05:05 -05:00
|
|
|
case 186:
|
2017-01-05 08:57:12 -05:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 395 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_STATISTICS_CUMULATIVE) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 187:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 396 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_EXTENDED_STATISTICS) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 188:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 397 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SHM_ENABLE) }
|
2017-03-09 08:18:08 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 189:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 398 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SHM_KEY) }
|
2017-03-16 05:17:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 190:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 399 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_REMOTE_CONTROL) }
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_BREAK
|
2017-03-16 05:17:58 -04:00
|
|
|
case 191:
|
2017-03-07 09:58:51 -05:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 400 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_ENABLE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 192:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 401 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_INTERFACE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 193:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 402 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_PORT) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 194:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 403 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_USE_CERT) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 195:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 404 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_KEY_FILE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 196:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 405 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_SERVER_CERT_FILE) }
|
2017-03-20 11:09:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 197:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 406 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_KEY_FILE) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 198:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 407 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CONTROL_CERT_FILE) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 199:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 408 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_PYTHON_SCRIPT) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 200:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 409 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_PYTHON) }
|
2017-04-06 09:13:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 201:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 410 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DOMAIN_INSECURE) }
|
2017-04-26 08:58:13 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 202:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 411 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MINIMAL_RESPONSES) }
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_BREAK
|
2017-04-26 08:58:13 -04:00
|
|
|
case 203:
|
2017-03-21 08:08:17 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 412 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_RRSET_ROUNDROBIN) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 204:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 413 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_UNKNOWN_SERVER_TIME_LIMIT) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 205:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 414 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_MAX_UDP_SIZE) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 206:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 415 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_PREFIX) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 207:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 416 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_SYNTHALL) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 208:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 417 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNS64_IGNORE_AAAA) }
|
2017-06-08 10:44:55 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 209:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 418 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DEFINE_TAG) }
|
2017-07-17 04:21:19 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 210:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 419 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_LOCAL_ZONE_TAG) }
|
2017-07-17 04:21:19 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 211:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 420 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_TAG) }
|
2017-08-08 05:09:45 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 212:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 421 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_ACTION) }
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_BREAK
|
2017-08-08 05:09:45 -04:00
|
|
|
case 213:
|
2017-05-16 09:21:10 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 422 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(3, VAR_ACCESS_CONTROL_TAG_DATA) }
|
2017-08-31 07:59:38 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 214:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 423 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_ACCESS_CONTROL_VIEW) }
|
2017-09-18 04:42:24 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 215:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 424 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(3, VAR_LOCAL_ZONE_OVERRIDE) }
|
2017-09-18 04:55:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 216:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 425 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_DNSTAP) }
|
2017-09-18 04:55:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 217:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-30 04:45:37 -05:00
|
|
|
#line 426 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_ENABLE) }
|
2017-10-17 03:34:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 218:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-21 11:20:14 -05:00
|
|
|
#line 427 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SOCKET_PATH) }
|
2017-08-31 07:59:38 -04:00
|
|
|
YY_BREAK
|
2017-10-17 03:34:49 -04:00
|
|
|
case 219:
|
2017-08-31 07:59:38 -04:00
|
|
|
YY_RULE_SETUP
|
2019-01-23 03:46:33 -05:00
|
|
|
#line 428 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_IDENTITY) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 220:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 03:46:33 -05:00
|
|
|
#line 429 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_SEND_VERSION) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 221:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 04:35:52 -05:00
|
|
|
#line 430 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSTAP_IDENTITY) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 222:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 431 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(1, VAR_DNSTAP_VERSION) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 223:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 432 "./util/configlexer.lex"
|
2019-01-21 11:20:14 -05:00
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_QUERY_MESSAGES) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 224:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 434 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_RESOLVER_RESPONSE_MESSAGES) }
|
2017-10-17 11:16:31 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 225:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 436 "./util/configlexer.lex"
|
2019-01-23 03:46:33 -05:00
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_QUERY_MESSAGES) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 226:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 438 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_CLIENT_RESPONSE_MESSAGES) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 227:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 440 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_QUERY_MESSAGES) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 228:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 442 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSTAP_LOG_FORWARDER_RESPONSE_MESSAGES) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 229:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 444 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DISABLE_DNSSEC_LAME_CHECK) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 230:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 445 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT) }
|
2018-01-30 05:35:20 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 231:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 446 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT) }
|
2018-02-08 08:16:36 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 232:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 447 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SLABS) }
|
2018-02-13 05:35:09 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 233:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 448 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_SLABS) }
|
2018-02-13 05:35:09 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 234:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 449 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_SIZE) }
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_BREAK
|
2018-02-13 05:35:09 -05:00
|
|
|
case 235:
|
2018-01-22 03:35:44 -05:00
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 450 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_SIZE) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 236:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 451 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_RATELIMIT_FOR_DOMAIN) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 237:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 452 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_RATELIMIT_BELOW_DOMAIN) }
|
2018-03-15 10:23:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 238:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 453 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IP_RATELIMIT_FACTOR) }
|
2018-03-15 10:23:51 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 239:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 454 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_RATELIMIT_FACTOR) }
|
2018-04-09 09:27:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 240:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 455 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_LOW_RTT) }
|
2018-04-09 09:27:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 241:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 456 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_NUM) }
|
2018-04-17 09:23:35 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 242:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 457 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-04-24 05:03:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 243:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 458 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-05-15 03:48:12 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 244:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 459 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_FAST_SERVER_PERMIL) }
|
2018-05-28 10:15:06 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 245:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 460 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP_TAG) }
|
2018-06-01 04:02:04 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 246:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 461 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP) }
|
2018-06-12 04:45:57 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 247:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 462 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(2, VAR_RESPONSE_IP_DATA) }
|
2018-06-29 08:58:52 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 248:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 463 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_DNSCRYPT) }
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_BREAK
|
2018-06-29 08:58:52 -04:00
|
|
|
case 249:
|
2018-03-15 08:33:51 -04:00
|
|
|
YY_RULE_SETUP
|
2018-11-30 04:45:37 -05:00
|
|
|
#line 464 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_ENABLE) }
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 250:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-21 11:20:14 -05:00
|
|
|
#line 465 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PORT) }
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 251:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 03:46:33 -05:00
|
|
|
#line 466 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER) }
|
2018-08-07 08:02:10 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 252:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 03:46:33 -05:00
|
|
|
#line 467 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_SECRET_KEY) }
|
2018-08-09 08:44:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 253:
|
|
|
|
|
YY_RULE_SETUP
|
2019-01-23 04:35:52 -05:00
|
|
|
#line 468 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT) }
|
2018-08-09 08:44:40 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 254:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 469 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_PROVIDER_CERT_ROTATED) }
|
2018-08-17 11:22:05 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 255:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 470 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SIZE) }
|
2018-08-21 03:10:49 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 256:
|
|
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 472 "./util/configlexer.lex"
|
|
|
|
|
{
|
|
|
|
|
YDVAR(1, VAR_DNSCRYPT_SHARED_SECRET_CACHE_SLABS) }
|
2018-08-28 10:21:56 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 257:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 474 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SIZE) }
|
2018-08-28 10:21:56 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 258:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 475 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_DNSCRYPT_NONCE_CACHE_SLABS) }
|
2018-10-08 12:03:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 259:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 476 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_ENABLED) }
|
2018-10-08 12:03:46 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 260:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 477 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_IGNORE_BOGUS) }
|
2018-10-22 10:54:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 261:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 478 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_HOOK) }
|
2018-10-22 10:54:28 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 262:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 479 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_MAX_TTL) }
|
2018-10-25 04:07:37 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 263:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 480 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_WHITELIST) }
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 264:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 481 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_IPSECMOD_STRICT) }
|
2018-10-25 04:53:50 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 265:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 482 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(0, VAR_CACHEDB) }
|
2018-10-25 05:21:41 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case 266:
|
|
|
|
|
YY_RULE_SETUP
|
2018-11-26 04:54:34 -05:00
|
|
|
#line 483 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_BACKEND) }
|
2018-11-30 04:45:37 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 267:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 484 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_SECRETSEED) }
|
2019-01-21 11:20:14 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 268:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 485 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISHOST) }
|
2019-01-23 03:46:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 269:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 486 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISPORT) }
|
2019-01-23 03:46:33 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 270:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 487 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_CACHEDB_REDISTIMEOUT) }
|
2019-01-23 04:35:52 -05:00
|
|
|
YY_BREAK
|
|
|
|
|
case 271:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 488 "./util/configlexer.lex"
|
2019-04-05 11:39:10 -04:00
|
|
|
{ YDVAR(1, VAR_UDP_UPSTREAM_WITHOUT_DOWNSTREAM) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 272:
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 489 "./util/configlexer.lex"
|
|
|
|
|
{ YDVAR(2, VAR_TCP_CONNECTION_LIMIT) }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case 273:
|
|
|
|
|
/* rule 273 can match eol */
|
|
|
|
|
YY_RULE_SETUP
|
|
|
|
|
#line 490 "./util/configlexer.lex"
|
2018-07-31 03:23:58 -04:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++; }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* Quoted strings. Strip leading and ending quotes */
|
2019-04-05 11:39:10 -04:00
|
|
|
case 274:
|
2018-07-31 03:23:58 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 493 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ BEGIN(quotedstring); LEXOUT(("QS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(quotedstring):
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 494 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 275:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 499 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 276:
|
|
|
|
|
/* rule 276 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 500 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline inside quoted string, no end \"");
|
|
|
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 277:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 502 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("QE "));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-10-18 18:49:08 -04:00
|
|
|
yytext[yyleng - 1] = '\0';
|
|
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
|
if(!yylval.str)
|
|
|
|
|
yyerror("out of memory");
|
2009-04-09 11:23:14 -04:00
|
|
|
return STRING_ARG;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2007-11-28 03:10:45 -05:00
|
|
|
/* Single Quoted strings. Strip leading and ending quotes */
|
2019-04-05 11:39:10 -04:00
|
|
|
case 278:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 514 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{ BEGIN(singlequotedstr); LEXOUT(("SQS ")); }
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(singlequotedstr):
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 515 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-11-28 03:10:45 -05:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 279:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 520 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("STR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 280:
|
|
|
|
|
/* rule 280 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 521 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline inside quoted string, no end '");
|
|
|
|
|
cfg_parser->line++; BEGIN(INITIAL); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 281:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 523 "./util/configlexer.lex"
|
2007-11-28 03:10:45 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("SQE "));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-02-06 05:45:40 -05:00
|
|
|
else { BEGIN(val); }
|
2007-11-28 03:10:45 -05:00
|
|
|
yytext[yyleng - 1] = '\0';
|
|
|
|
|
yylval.str = strdup(yytext);
|
|
|
|
|
if(!yylval.str)
|
|
|
|
|
yyerror("out of memory");
|
2009-04-09 11:23:14 -04:00
|
|
|
return STRING_ARG;
|
2007-11-28 03:10:45 -05:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
/* include: directive */
|
2019-04-05 11:39:10 -04:00
|
|
|
case 282:
|
2007-11-28 03:10:45 -05:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 535 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
LEXOUT(("v(%s) ", yytext)); inc_prev = YYSTATE; BEGIN(include); }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(include):
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 537 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside include directive");
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 283:
|
2018-10-25 05:21:41 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 541 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ LEXOUT(("ISP ")); /* ignore */ }
|
2018-11-30 04:45:37 -05:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 284:
|
|
|
|
|
/* rule 284 can match eol */
|
2018-11-30 04:45:37 -05:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 542 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ LEXOUT(("NL\n")); cfg_parser->line++;}
|
2019-01-21 11:20:14 -05:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 285:
|
2019-01-21 11:20:14 -05:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 543 "./util/configlexer.lex"
|
2019-01-23 04:35:52 -05:00
|
|
|
{ LEXOUT(("IQS ")); BEGIN(include_quoted); }
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 286:
|
2019-01-23 04:35:52 -05:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 544 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("Iunquotedstr(%s) ", yytext));
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include_glob(yytext);
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(include_quoted):
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 549 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
yyerror("EOF inside quoted string");
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 287:
|
2008-10-06 05:28:50 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 553 "./util/configlexer.lex"
|
2008-10-22 10:36:46 -04:00
|
|
|
{ LEXOUT(("ISTR(%s) ", yytext)); yymore(); }
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 288:
|
|
|
|
|
/* rule 288 can match eol */
|
2008-10-22 08:01:40 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 554 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{ yyerror("newline before \" in include name");
|
|
|
|
|
cfg_parser->line++; BEGIN(inc_prev); }
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 289:
|
2008-10-22 10:36:46 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 556 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
LEXOUT(("IQE "));
|
|
|
|
|
yytext[yyleng - 1] = '\0';
|
2012-09-27 04:52:37 -04:00
|
|
|
config_start_include_glob(yytext);
|
2009-02-06 05:19:16 -05:00
|
|
|
BEGIN(inc_prev);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
YY_BREAK
|
|
|
|
|
case YY_STATE_EOF(INITIAL):
|
2009-02-06 05:19:16 -05:00
|
|
|
case YY_STATE_EOF(val):
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 562 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2013-06-10 09:37:14 -04:00
|
|
|
LEXOUT(("LEXEOF "));
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_set_bol(1); /* Set beginning of line, so "^" rules match. */
|
2013-06-10 09:37:14 -04:00
|
|
|
if (!config_include_stack) {
|
2007-10-18 18:49:08 -04:00
|
|
|
yyterminate();
|
|
|
|
|
} else {
|
|
|
|
|
fclose(yyin);
|
|
|
|
|
config_end_include();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 290:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 573 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
{ LEXOUT(("unquotedstr(%s) ", yytext));
|
2009-02-06 05:19:16 -05:00
|
|
|
if(--num_args == 0) { BEGIN(INITIAL); }
|
2009-04-09 11:23:14 -04:00
|
|
|
yylval.str = strdup(yytext); return STRING_ARG; }
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 291:
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 577 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("unknown keyword '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 292:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 581 "./util/configlexer.lex"
|
2009-02-06 05:19:16 -05:00
|
|
|
{
|
|
|
|
|
ub_c_error_msg("stray '%s'", yytext);
|
|
|
|
|
}
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
case 293:
|
2009-02-06 05:19:16 -05:00
|
|
|
YY_RULE_SETUP
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 585 "./util/configlexer.lex"
|
2007-10-18 18:49:08 -04:00
|
|
|
ECHO;
|
|
|
|
|
YY_BREAK
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 4708 "<stdout>"
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case YY_END_OF_BUFFER:
|
|
|
|
|
{
|
|
|
|
|
/* Amount of text matched not including the EOB char. */
|
2015-12-01 03:11:48 -05:00
|
|
|
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* Undo the effects of YY_DO_BEFORE_ACTION. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*yy_cp = (yy_hold_char);
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_RESTORE_YY_MORE_OFFSET
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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
|
2015-12-01 03:11:48 -05:00
|
|
|
* consistency between YY_CURRENT_BUFFER and our
|
2007-10-18 18:49:08 -04:00
|
|
|
* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 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().
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
2007-10-18 18:49:08 -04:00
|
|
|
{ /* This was really a NUL. */
|
|
|
|
|
yy_state_type yy_next_state;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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 );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( yy_next_state )
|
|
|
|
|
{
|
|
|
|
|
/* Consume the NUL. */
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = ++(yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
yy_current_state = yy_next_state;
|
|
|
|
|
goto yy_match;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_find_action;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
else switch ( yy_get_next_buffer( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_did_buffer_switch_on_eof) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
if ( yywrap( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
yy_act = YY_STATE_EOF(YY_START);
|
|
|
|
|
goto do_action;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_NEW_FILE;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
(yytext_ptr) + yy_amount_of_matched_text;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
goto yy_match;
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_LAST_MATCH:
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) =
|
|
|
|
|
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_current_state = yy_get_previous_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
yy_cp = (yy_c_buf_p);
|
|
|
|
|
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
|
2007-10-18 18:49:08 -04:00
|
|
|
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 */
|
2016-10-20 03:46:35 -04:00
|
|
|
} /* end of user's declarations */
|
2015-12-01 03:11:48 -05:00
|
|
|
} /* end of yylex */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
static int yy_get_next_buffer (void)
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
|
|
|
|
|
char *source = (yytext_ptr);
|
2019-04-05 11:39:10 -04:00
|
|
|
int number_to_move, i;
|
2007-10-18 18:49:08 -04:00
|
|
|
int ret_val;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_FATAL_ERROR(
|
|
|
|
|
"fatal flex scanner internal error--end of buffer missed" );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{ /* Don't try to fill the buffer, so this is an EOF. */
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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. */
|
2019-04-05 11:39:10 -04:00
|
|
|
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
for ( i = 0; i < number_to_move; ++i )
|
|
|
|
|
*(dest++) = *(source++);
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
|
2007-10-18 18:49:08 -04:00
|
|
|
/* don't do the read, it's not guaranteed to return an EOF,
|
|
|
|
|
* just force an EOF
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2016-09-13 06:44:24 -04:00
|
|
|
int num_to_read =
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
while ( num_to_read <= 0 )
|
|
|
|
|
{ /* Not enough room in the buffer - grow it. */
|
|
|
|
|
|
|
|
|
|
/* just a shorter name for the current buffer */
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_BUFFER_STATE b = YY_CURRENT_BUFFER_LVALUE;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
int yy_c_buf_p_offset =
|
2015-12-01 03:11:48 -05:00
|
|
|
(int) ((yy_c_buf_p) - b->yy_ch_buf);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( b->yy_is_our_buffer )
|
|
|
|
|
{
|
2017-07-24 05:04:18 -04:00
|
|
|
int new_size = b->yy_buf_size * 2;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
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. */
|
2019-04-05 11:39:10 -04:00
|
|
|
yyrealloc( (void *) b->yy_ch_buf,
|
|
|
|
|
(yy_size_t) (b->yy_buf_size + 2) );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Can't grow it, we don't own it. */
|
2017-07-24 05:04:18 -04:00
|
|
|
b->yy_ch_buf = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( ! b->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR(
|
|
|
|
|
"fatal error - scanner input buffer overflow" );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
|
2007-10-18 18:49:08 -04:00
|
|
|
number_to_move - 1;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( num_to_read > YY_READ_BUF_SIZE )
|
|
|
|
|
num_to_read = YY_READ_BUF_SIZE;
|
|
|
|
|
|
|
|
|
|
/* Read in more data. */
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
|
2016-10-20 03:46:35 -04:00
|
|
|
(yy_n_chars), num_to_read );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_n_chars) == 0 )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
if ( number_to_move == YY_MORE_ADJ )
|
|
|
|
|
{
|
|
|
|
|
ret_val = EOB_ACT_END_OF_FILE;
|
2019-04-05 11:39:10 -04:00
|
|
|
yyrestart( yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret_val = EOB_ACT_LAST_MATCH;
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_EOF_PENDING;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
ret_val = EOB_ACT_CONTINUE_SCAN;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Extend the array by 50%, plus the number we really need. */
|
2017-07-24 05:04:18 -04:00
|
|
|
int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
|
2019-04-05 11:39:10 -04:00
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
|
|
|
|
|
(void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size );
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
|
2019-04-05 11:39:10 -04:00
|
|
|
/* "- 2" to take care of EOB's */
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(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;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
return ret_val;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_get_previous_state - get the state just before the EOB char was reached */
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
static yy_state_type yy_get_previous_state (void)
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_state_type yy_current_state;
|
|
|
|
|
char *yy_cp;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
yy_current_state = (yy_start);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2019-04-05 11:39:10 -04:00
|
|
|
if ( yy_current_state >= 2911 )
|
|
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return yy_current_state;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_try_NUL_trans - try to make a transition on the NUL character
|
|
|
|
|
*
|
|
|
|
|
* synopsis
|
|
|
|
|
* next_state = yy_try_NUL_trans( current_state );
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
int yy_is_jam;
|
|
|
|
|
char *yy_cp = (yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
YY_CHAR yy_c = 1;
|
2015-11-30 11:10:26 -05:00
|
|
|
if ( yy_accept[yy_current_state] )
|
|
|
|
|
{
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_last_accepting_state) = yy_current_state;
|
|
|
|
|
(yy_last_accepting_cpos) = yy_cp;
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
|
|
|
|
|
{
|
|
|
|
|
yy_current_state = (int) yy_def[yy_current_state];
|
2019-04-05 11:39:10 -04:00
|
|
|
if ( yy_current_state >= 2911 )
|
|
|
|
|
yy_c = yy_meta[yy_c];
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
|
|
|
|
|
yy_is_jam = (yy_current_state == 2910);
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
return yy_is_jam ? 0 : yy_current_state;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
#ifndef YY_NO_UNPUT
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-06-09 05:34:40 -04:00
|
|
|
#ifndef YY_NO_INPUT
|
2008-06-09 05:29:44 -04:00
|
|
|
#ifdef __cplusplus
|
2015-12-01 03:11:48 -05:00
|
|
|
static int yyinput (void)
|
2015-11-30 11:10:26 -05:00
|
|
|
#else
|
2015-12-01 03:11:48 -05:00
|
|
|
static int input (void)
|
2015-11-30 11:10:26 -05:00
|
|
|
#endif
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
int c;
|
|
|
|
|
|
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
|
2007-10-18 18:49:08 -04:00
|
|
|
/* This was really a NUL. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*(yy_c_buf_p) = '\0';
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{ /* need more input */
|
2019-04-05 11:39:10 -04:00
|
|
|
int offset = (int) ((yy_c_buf_p) - (yytext_ptr));
|
2015-12-01 03:11:48 -05:00
|
|
|
++(yy_c_buf_p);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
switch ( yy_get_next_buffer( ) )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
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. */
|
2019-04-05 11:39:10 -04:00
|
|
|
yyrestart( yyin );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/*FALLTHROUGH*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
case EOB_ACT_END_OF_FILE:
|
|
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
if ( yywrap( ) )
|
2017-07-24 05:04:18 -04:00
|
|
|
return 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( ! (yy_did_buffer_switch_on_eof) )
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_NEW_FILE;
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
return yyinput();
|
|
|
|
|
#else
|
|
|
|
|
return input();
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case EOB_ACT_CONTINUE_SCAN:
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_c_buf_p) = (yytext_ptr) + offset;
|
2007-10-18 18:49:08 -04:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
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);
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return c;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
#endif /* ifndef YY_NO_INPUT */
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Immediately switch to a different input stream.
|
|
|
|
|
* @param input_file A readable stream.
|
|
|
|
|
*
|
|
|
|
|
* @note This function does not reset the start condition to @c INITIAL .
|
|
|
|
|
*/
|
|
|
|
|
void yyrestart (FILE * input_file )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if ( ! YY_CURRENT_BUFFER ){
|
|
|
|
|
yyensure_buffer_stack ();
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE =
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_create_buffer( yyin, YY_BUF_SIZE );
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_init_buffer( YY_CURRENT_BUFFER, input_file );
|
|
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Switch to a different input buffer.
|
|
|
|
|
* @param new_buffer The new input buffer.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/* TODO. We should be able to replace this entire function body
|
|
|
|
|
* with
|
|
|
|
|
* yypop_buffer_state();
|
|
|
|
|
* yypush_buffer_state(new_buffer);
|
|
|
|
|
*/
|
|
|
|
|
yyensure_buffer_stack ();
|
|
|
|
|
if ( YY_CURRENT_BUFFER == new_buffer )
|
2007-10-18 18:49:08 -04:00
|
|
|
return;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( YY_CURRENT_BUFFER )
|
2007-10-18 18:49:08 -04:00
|
|
|
{
|
|
|
|
|
/* Flush out information for old buffer. */
|
2015-12-01 03:11:48 -05:00
|
|
|
*(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);
|
2007-10-18 18:49:08 -04:00
|
|
|
}
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_load_buffer_state( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
|
*/
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
static void yy_load_buffer_state (void)
|
|
|
|
|
{
|
|
|
|
|
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
|
|
|
|
|
(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
|
|
|
|
|
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
|
|
|
|
|
(yy_hold_char) = *(yy_c_buf_p);
|
|
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Allocate and initialize an input buffer state.
|
|
|
|
|
* @param file A readable stream.
|
|
|
|
|
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
|
|
|
|
|
*
|
|
|
|
|
* @return the allocated buffer state.
|
|
|
|
|
*/
|
|
|
|
|
YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
|
|
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
|
|
2018-04-24 06:23:12 -04:00
|
|
|
b->yy_buf_size = size;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
/* yy_ch_buf has to be 2 characters longer than the size given because
|
|
|
|
|
* we need to put in 2 end-of-buffer characters.
|
|
|
|
|
*/
|
2019-04-05 11:39:10 -04:00
|
|
|
b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b->yy_ch_buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
|
|
|
|
|
|
|
|
|
|
b->yy_is_our_buffer = 1;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_init_buffer( b, file );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Destroy the buffer.
|
|
|
|
|
* @param b a buffer created with yy_create_buffer()
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yy_delete_buffer (YY_BUFFER_STATE b )
|
|
|
|
|
{
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b )
|
|
|
|
|
return;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
if ( b->yy_is_our_buffer )
|
2019-04-05 11:39:10 -04:00
|
|
|
yyfree( (void *) b->yy_ch_buf );
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
yyfree( (void *) b );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:29:44 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Initializes or reinitializes a buffer.
|
|
|
|
|
* This function is sometimes called more than once on the same buffer,
|
|
|
|
|
* such as during a yyrestart() or at EOF.
|
|
|
|
|
*/
|
|
|
|
|
static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
int oerrno = errno;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_flush_buffer( b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
b->yy_input_file = file;
|
|
|
|
|
b->yy_fill_buffer = 1;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* If b is the current buffer, then yy_init_buffer was _probably_
|
|
|
|
|
* called from yyrestart() or through yy_get_next_buffer.
|
|
|
|
|
* In that case, we don't want to reset the lineno or column.
|
|
|
|
|
*/
|
|
|
|
|
if (b != YY_CURRENT_BUFFER){
|
|
|
|
|
b->yy_bs_lineno = 1;
|
|
|
|
|
b->yy_bs_column = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
|
|
|
|
|
|
|
|
|
|
errno = oerrno;
|
|
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
|
|
|
|
|
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yy_flush_buffer (YY_BUFFER_STATE b )
|
|
|
|
|
{
|
|
|
|
|
if ( ! b )
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ( b == YY_CURRENT_BUFFER )
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Pushes the new state onto the stack. The new state becomes
|
|
|
|
|
* the current state. This function will allocate the stack
|
|
|
|
|
* if necessary.
|
|
|
|
|
* @param new_buffer The new state.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
|
|
|
|
|
{
|
|
|
|
|
if (new_buffer == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
yyensure_buffer_stack();
|
|
|
|
|
|
|
|
|
|
/* This block is copied from yy_switch_to_buffer. */
|
|
|
|
|
if ( YY_CURRENT_BUFFER )
|
|
|
|
|
{
|
|
|
|
|
/* Flush out information for old buffer. */
|
|
|
|
|
*(yy_c_buf_p) = (yy_hold_char);
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Only push if top exists. Otherwise, replace top. */
|
|
|
|
|
if (YY_CURRENT_BUFFER)
|
|
|
|
|
(yy_buffer_stack_top)++;
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = new_buffer;
|
|
|
|
|
|
|
|
|
|
/* copied from yy_switch_to_buffer. */
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Removes and deletes the top of the stack, if present.
|
|
|
|
|
* The next element becomes the new top.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void yypop_buffer_state (void)
|
|
|
|
|
{
|
|
|
|
|
if (!YY_CURRENT_BUFFER)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
yy_delete_buffer(YY_CURRENT_BUFFER );
|
|
|
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
|
|
|
if ((yy_buffer_stack_top) > 0)
|
|
|
|
|
--(yy_buffer_stack_top);
|
|
|
|
|
|
|
|
|
|
if (YY_CURRENT_BUFFER) {
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_load_buffer_state( );
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_did_buffer_switch_on_eof) = 1;
|
2008-02-29 05:59:26 -05:00
|
|
|
}
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Allocates the stack if it does not exist.
|
|
|
|
|
* Guarantees space for at least one push.
|
|
|
|
|
*/
|
|
|
|
|
static void yyensure_buffer_stack (void)
|
|
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_size_t num_to_alloc;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
2016-12-21 05:29:19 -05:00
|
|
|
num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
|
2015-12-01 03:11:48 -05:00
|
|
|
(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()" );
|
2019-04-05 11:39:10 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
|
2019-04-05 11:39:10 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_buffer_stack_max) = num_to_alloc;
|
|
|
|
|
(yy_buffer_stack_top) = 0;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Increase the buffer to prepare for a possible push. */
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_size_t grow_size = 8 /* arbitrary grow size */;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
|
|
|
|
num_to_alloc = (yy_buffer_stack_max) + grow_size;
|
|
|
|
|
(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
|
|
|
|
|
((yy_buffer_stack),
|
|
|
|
|
num_to_alloc * sizeof(struct yy_buffer_state*)
|
|
|
|
|
);
|
|
|
|
|
if ( ! (yy_buffer_stack) )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
|
|
|
|
|
|
|
|
|
|
/* zero only the new slots.*/
|
|
|
|
|
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
|
|
|
|
|
(yy_buffer_stack_max) = num_to_alloc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** Setup the input buffer state to scan directly from a user-specified character buffer.
|
|
|
|
|
* @param base the character buffer
|
|
|
|
|
* @param size the size in bytes of the character buffer
|
|
|
|
|
*
|
2019-04-05 11:39:10 -04:00
|
|
|
* @return the newly allocated buffer state object.
|
2015-12-01 03:11:48 -05:00
|
|
|
*/
|
|
|
|
|
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
|
|
|
|
|
{
|
|
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
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. */
|
2017-07-24 05:04:18 -04:00
|
|
|
return NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! b )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
|
|
|
|
|
|
2018-04-24 06:23:12 -04:00
|
|
|
b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */
|
2007-10-18 18:49:08 -04:00
|
|
|
b->yy_buf_pos = b->yy_ch_buf = base;
|
|
|
|
|
b->yy_is_our_buffer = 0;
|
2017-07-24 05:04:18 -04:00
|
|
|
b->yy_input_file = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_switch_to_buffer( b );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
return b;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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.
|
|
|
|
|
*/
|
2019-04-05 11:39:10 -04:00
|
|
|
YY_BUFFER_STATE yy_scan_string (const char * yystr )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
return yy_scan_bytes( yystr, (int) strlen(yystr) );
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2015-11-30 11:10:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** 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.
|
|
|
|
|
*/
|
2019-04-05 11:39:10 -04:00
|
|
|
YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2007-10-18 18:49:08 -04:00
|
|
|
YY_BUFFER_STATE b;
|
|
|
|
|
char *buf;
|
|
|
|
|
yy_size_t n;
|
2019-01-25 08:00:09 -05:00
|
|
|
int i;
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* Get memory for full buffer, including space for trailing EOB's. */
|
2019-01-25 08:00:09 -05:00
|
|
|
n = (yy_size_t) (_yybytes_len + 2);
|
2019-04-05 11:39:10 -04:00
|
|
|
buf = (char *) yyalloc( n );
|
2007-10-18 18:49:08 -04:00
|
|
|
if ( ! buf )
|
|
|
|
|
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
for ( i = 0; i < _yybytes_len; ++i )
|
|
|
|
|
buf[i] = yybytes[i];
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
b = yy_scan_buffer( buf, n );
|
2007-10-18 18:49:08 -04:00
|
|
|
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;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef YY_EXIT_FAILURE
|
|
|
|
|
#define YY_EXIT_FAILURE 2
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
static void yynoreturn yy_fatal_error (const char* msg )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
fprintf( stderr, "%s\n", msg );
|
2015-12-01 03:11:48 -05:00
|
|
|
exit( YY_EXIT_FAILURE );
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Redefine yyless() so it works in section 3 code. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
#undef yyless
|
|
|
|
|
#define yyless(n) \
|
|
|
|
|
do \
|
|
|
|
|
{ \
|
|
|
|
|
/* Undo effects of setting up yytext. */ \
|
2019-04-05 11:39:10 -04:00
|
|
|
int yyless_macro_arg = (n); \
|
2015-12-01 03:11:48 -05:00
|
|
|
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 )
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Accessor methods (get/set functions) to struct members. */
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the current line number.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
int yyget_lineno (void)
|
|
|
|
|
{
|
2019-04-05 11:39:10 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
return yylineno;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the input stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_in (void)
|
|
|
|
|
{
|
|
|
|
|
return yyin;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the output stream.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
FILE *yyget_out (void)
|
|
|
|
|
{
|
|
|
|
|
return yyout;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the length of the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
int yyget_leng (void)
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
return yyleng;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Get the current token.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
char *yyget_text (void)
|
|
|
|
|
{
|
|
|
|
|
return yytext;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Set the current line number.
|
2016-10-20 03:46:35 -04:00
|
|
|
* @param _line_number line number
|
2015-12-01 03:11:48 -05:00
|
|
|
*
|
|
|
|
|
*/
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_lineno (int _line_number )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
|
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
yylineno = _line_number;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-19 04:32:36 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/** Set the input stream. This does not discard the current
|
|
|
|
|
* input buffer.
|
2016-10-20 03:46:35 -04:00
|
|
|
* @param _in_str A readable stream.
|
2015-12-01 03:11:48 -05:00
|
|
|
*
|
|
|
|
|
* @see yy_switch_to_buffer
|
|
|
|
|
*/
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_in (FILE * _in_str )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yyin = _in_str ;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_out (FILE * _out_str )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yyout = _out_str ;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-06-09 05:34:40 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
int yyget_debug (void)
|
|
|
|
|
{
|
|
|
|
|
return yy_flex_debug;
|
|
|
|
|
}
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2016-10-20 03:46:35 -04:00
|
|
|
void yyset_debug (int _bdebug )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
yy_flex_debug = _bdebug ;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-07-24 05:04:18 -04:00
|
|
|
(yy_buffer_stack) = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_buffer_stack_top) = 0;
|
|
|
|
|
(yy_buffer_stack_max) = 0;
|
2017-07-24 05:04:18 -04:00
|
|
|
(yy_c_buf_p) = NULL;
|
2015-12-01 03:11:48 -05:00
|
|
|
(yy_init) = 0;
|
|
|
|
|
(yy_start) = 0;
|
|
|
|
|
|
|
|
|
|
/* Defined in main.c */
|
|
|
|
|
#ifdef YY_STDINIT
|
|
|
|
|
yyin = stdin;
|
|
|
|
|
yyout = stdout;
|
2007-10-18 18:49:08 -04:00
|
|
|
#else
|
2017-07-24 05:04:18 -04:00
|
|
|
yyin = NULL;
|
|
|
|
|
yyout = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* For future reference: Set errno on error, since we are called by
|
|
|
|
|
* yylex_init()
|
|
|
|
|
*/
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* 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){
|
2019-04-05 11:39:10 -04:00
|
|
|
yy_delete_buffer( YY_CURRENT_BUFFER );
|
2015-12-01 03:11:48 -05:00
|
|
|
YY_CURRENT_BUFFER_LVALUE = NULL;
|
|
|
|
|
yypop_buffer_state();
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Destroy the stack itself. */
|
|
|
|
|
yyfree((yy_buffer_stack) );
|
|
|
|
|
(yy_buffer_stack) = NULL;
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/* Reset the globals. This is important in a non-reentrant scanner so the next time
|
|
|
|
|
* yylex() is called, initialization will occur. */
|
|
|
|
|
yy_init_globals( );
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
return 0;
|
|
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
/*
|
|
|
|
|
* Internal utility routines.
|
|
|
|
|
*/
|
2007-10-18 18:49:08 -04:00
|
|
|
|
|
|
|
|
#ifndef yytext_ptr
|
2019-04-05 11:39:10 -04:00
|
|
|
static void yy_flex_strncpy (char* s1, const char * s2, int n )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
|
|
|
|
|
int i;
|
2007-10-18 18:49:08 -04:00
|
|
|
for ( i = 0; i < n; ++i )
|
|
|
|
|
s1[i] = s2[i];
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef YY_NEED_STRLEN
|
2019-04-05 11:39:10 -04:00
|
|
|
static int yy_flex_strlen (const char * s )
|
2015-12-01 03:11:48 -05:00
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
int n;
|
2007-10-18 18:49:08 -04:00
|
|
|
for ( n = 0; s[n]; ++n )
|
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
return n;
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
void *yyalloc (yy_size_t size )
|
|
|
|
|
{
|
2017-07-24 05:04:18 -04:00
|
|
|
return malloc(size);
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2007-10-18 18:49:08 -04:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
void *yyrealloc (void * ptr, yy_size_t size )
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
|
2007-10-18 18:49:08 -04:00
|
|
|
/* 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.
|
|
|
|
|
*/
|
2017-07-24 05:04:18 -04:00
|
|
|
return realloc(ptr, size);
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
2008-02-29 05:59:26 -05:00
|
|
|
|
2015-12-01 03:11:48 -05:00
|
|
|
void yyfree (void * ptr )
|
|
|
|
|
{
|
2016-10-20 03:46:35 -04:00
|
|
|
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
|
2015-12-01 03:11:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define YYTABLES_NAME "yytables"
|
2007-10-19 10:02:53 -04:00
|
|
|
|
2019-04-05 11:39:10 -04:00
|
|
|
#line 585 "./util/configlexer.lex"
|
2015-12-01 03:11:48 -05:00
|
|
|
|
2018-08-30 05:02:29 -04:00
|
|
|
|