#line 3 "cftoken.c"
#define YY_INT_ALIGNED short int
/* A lexical scanner generated by flex */
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
#define YY_FLEX_SUBMINOR_VERSION 35
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
/* First, we deal with platform-specific or compiler-specific issues. */
/* begin standard C headers. */
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
/* end standard C headers. */
/* flex integer type definitions */
#ifndef FLEXINT_H
#define FLEXINT_H
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
* if you want the limit (max/min) macros for int types.
*/
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif
#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;
typedef int16_t flex_int16_t;
typedef uint16_t flex_uint16_t;
typedef int32_t flex_int32_t;
typedef uint32_t flex_uint32_t;
#else
typedef signed char flex_int8_t;
typedef short int flex_int16_t;
typedef int flex_int32_t;
typedef unsigned char flex_uint8_t;
typedef unsigned short int flex_uint16_t;
typedef unsigned int flex_uint32_t;
/* Limits of integral types. */
#ifndef INT8_MIN
#define INT8_MIN (-128)
#endif
#ifndef INT16_MIN
#define INT16_MIN (-32767-1)
#endif
#ifndef INT32_MIN
#define INT32_MIN (-2147483647-1)
#endif
#ifndef INT8_MAX
#define INT8_MAX (127)
#endif
#ifndef INT16_MAX
#define INT16_MAX (32767)
#endif
#ifndef INT32_MAX
#define INT32_MAX (2147483647)
#endif
#ifndef UINT8_MAX
#define UINT8_MAX (255U)
#endif
#ifndef UINT16_MAX
#define UINT16_MAX (65535U)
#endif
#ifndef UINT32_MAX
#define UINT32_MAX (4294967295U)
#endif
#endif /* ! C99 */
#endif /* ! FLEXINT_H */
#ifdef __cplusplus
/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST
#else /* ! __cplusplus */
/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)
#define YY_USE_CONST
#endif /* defined (__STDC__) */
#endif /* ! __cplusplus */
#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif
/* Returned upon end-of-file. */
#define YY_NULL 0
/* Promotes a possibly negative, possibly signed char to an unsigned
* integer for use as an array index. If the signed char is negative,
* we want to instead treat it as an 8-bit unsigned char, hence the
* double cast.
*/
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
/* Enter a start condition. This macro really ought to take a parameter,
* but we do it the disgusting crufty way forced on us by the ()-less
* definition of BEGIN.
*/
#define BEGIN (yy_start) = 1 + 2 *
/* Translate the current start state into a value that can be later handed
* to BEGIN to return to the state. The YYSTATE alias is for lex
* compatibility.
*/
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START
/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart(yyin )
#define YY_END_OF_BUFFER_CHAR 0
/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k.
* Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
* Ditto for the __ia64__ case accordingly.
*/
#define YY_BUF_SIZE 32768
#else
#define YY_BUF_SIZE 16384
#endif /* __ia64__ */
#endif
/* The state buf must be large enough to hold one state per character in the main buffer.
*/
#define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif
extern int yyleng;
extern FILE *yyin, *yyout;
#define EOB_ACT_CONTINUE_SCAN 0
#define EOB_ACT_END_OF_FILE 1
#define EOB_ACT_LAST_MATCH 2
#define YY_LESS_LINENO(n)
/* Return all but the first "n" matched characters back to the input stream. */
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
*yy_cp = (yy_hold_char); \
YY_RESTORE_YY_MORE_OFFSET \
(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
YY_DO_BEFORE_ACTION; /* set up yytext again */ \
} \
while ( 0 )
#define unput(c) yyunput( c, (yytext_ptr) )
#ifndef YY_TYPEDEF_YY_SIZE_T
#define YY_TYPEDEF_YY_SIZE_T
typedef size_t yy_size_t;
#endif
#ifndef YY_STRUCT_YY_BUFFER_STATE
#define YY_STRUCT_YY_BUFFER_STATE
struct yy_buffer_state
{
FILE *yy_input_file;
char *yy_ch_buf; /* input buffer */
char *yy_buf_pos; /* current position in input buffer */
/* Size of input buffer in bytes, not including room for EOB
* characters.
*/
yy_size_t yy_buf_size;
/* Number of characters read into yy_ch_buf, not including EOB
* characters.
*/
int yy_n_chars;
/* Whether we "own" the buffer - i.e., we know we created it,
* and can realloc() it to grow it, and should free() it to
* delete it.
*/
int yy_is_our_buffer;
/* Whether this is an "interactive" input source; if so, and
* if we're using stdio for input, then we want to use getc()
* instead of fread(), to make sure we stop fetching input after
* each newline.
*/
int yy_is_interactive;
/* Whether we're considered to be at the beginning of a line.
* If so, '^' rules will be active on the next match, otherwise
* not.
*/
int yy_at_bol;
int yy_bs_lineno; /**< The line count. */
int yy_bs_column; /**< The column count. */
/* Whether to try to fill the input buffer when we reach the
* end of it.
*/
int yy_fill_buffer;
int yy_buffer_status;
#define YY_BUFFER_NEW 0
#define YY_BUFFER_NORMAL 1
/* When an EOF's been seen but there's still some text to process
* then we mark the buffer as YY_EOF_PENDING, to indicate that we
* shouldn't try reading from the input source any more. We might
* still have a bunch of tokens to match, though, because of
* possible backing-up.
*
* When we actually see the EOF, we change the status to "new"
* (via yyrestart()), so that the user can continue scanning by
* just pointing yyin at a new input file.
*/
#define YY_BUFFER_EOF_PENDING 2
};
#endif /* !YY_STRUCT_YY_BUFFER_STATE */
/* Stack of input buffers. */
static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
/* We provide macros for accessing buffer states in case in the
* future we want to put the buffer states in a more general
* "scanner state".
*
* Returns the top of the stack, or NULL.
*/
#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
? (yy_buffer_stack)[(yy_buffer_stack_top)] \
: NULL)
/* Same as previous macro, but useful when we know that the buffer stack is not
* NULL or when we need an lvalue. For internal use only.
*/
#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
/* yy_hold_char holds the character lost when yytext is formed. */
static char yy_hold_char;
static int yy_n_chars; /* number of characters read into yy_ch_buf */
int yyleng;
/* Points to current character in buffer. */
static char *yy_c_buf_p = (char *) 0;
static int yy_init = 0; /* whether we need to initialize */
static int yy_start = 0; /* start state number */
/* Flag which is used to allow yywrap()'s to do buffer switches
* instead of setting up a fresh yyin. A bit of a hack ...
*/
static int yy_did_buffer_switch_on_eof;
void yyrestart (FILE *input_file );
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer );
YY_BUFFER_STATE yy_create_buffer (FILE *file,int size );
void yy_delete_buffer (YY_BUFFER_STATE b );
void yy_flush_buffer (YY_BUFFER_STATE b );
void yypush_buffer_state (YY_BUFFER_STATE new_buffer );
void yypop_buffer_state (void );
static void yyensure_buffer_stack (void );
static void yy_load_buffer_state (void );
static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file );
#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size );
YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str );
YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len );
void *yyalloc (yy_size_t );
void *yyrealloc (void *,yy_size_t );
void yyfree (void * );
#define yy_new_buffer yy_create_buffer
#define yy_set_interactive(is_interactive) \
{ \
if ( ! YY_CURRENT_BUFFER ){ \
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
}
#define yy_set_bol(at_bol) \
{ \
if ( ! YY_CURRENT_BUFFER ){\
yyensure_buffer_stack (); \
YY_CURRENT_BUFFER_LVALUE = \
yy_create_buffer(yyin,YY_BUF_SIZE ); \
} \
YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
}
#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
/* Begin user sect3 */
typedef unsigned char YY_CHAR;
FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
typedef int yy_state_type;
extern int yylineno;
int yylineno = 1;
extern char *yytext;
#define yytext_ptr yytext
static yy_state_type yy_get_previous_state (void );
static yy_state_type yy_try_NUL_trans (yy_state_type current_state );
static int yy_get_next_buffer (void );
static void yy_fatal_error (yyconst char msg[] );
/* Done after the current pattern has been matched and before the
* corresponding action - sets up yytext.
*/
#define YY_DO_BEFORE_ACTION \
(yytext_ptr) = yy_bp; \
(yytext_ptr) -= (yy_more_len); \
yyleng = (size_t) (yy_cp - (yytext_ptr)); \
(yy_hold_char) = *yy_cp; \
*yy_cp = '\0'; \
(yy_c_buf_p) = yy_cp;
#define YY_NUM_RULES 306
#define YY_END_OF_BUFFER 307
/* This struct is not used in this scanner,
but its presence is necessary. */
struct yy_trans_info
{
flex_int32_t yy_verify;
flex_int32_t yy_nxt;
};
static yyconst flex_int16_t yy_accept[1819] =
{ 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
307, 305, 301, 302, 305, 303, 305, 305, 297, 297,
297, 300, 304, 288, 305, 305, 305, 305, 300, 300,
300, 300, 300, 300, 305, 305, 305, 305, 305, 305,
305, 305, 305, 305, 305, 305, 305, 305, 305, 300,
305, 305, 305, 305, 305, 305, 305, 305, 300, 305,
305, 2, 6, 14, 300, 300, 305, 305, 305, 25,
300, 300, 305, 305, 305, 300, 305, 305, 305, 27,
33, 300, 300, 305, 305, 35, 42, 300, 305, 305,
305, 96, 103, 93, 300, 300, 300, 300, 305, 305,
305, 305, 305, 305, 305, 305, 66, 94, 300, 300,
305, 305, 305, 305, 51, 64, 300, 305, 305, 44,
49, 112, 305, 300, 300, 300, 305, 111, 123, 300,
300, 300, 300, 305, 305, 305, 305, 305, 113, 300,
305, 127, 131, 300, 300, 300, 300, 300, 300, 305,
305, 305, 305, 305, 305, 305, 305, 305, 305, 305,
305, 305, 305, 305, 128, 300, 300, 300, 300, 305,
305, 305, 305, 189, 190, 203, 305, 305, 301, 0,
299, 303, 208, 206, 300, 300, 297, 0, 300, 0,
289, 290, 291, 0, 300, 300, 210, 0, 0, 0,
300, 300, 0, 300, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 296, 0, 0, 204, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 300, 300,
0, 0, 0, 0, 300, 0, 0, 296, 0, 0,
0, 0, 0, 300, 0, 0, 0, 0, 0, 0,
0, 0, 300, 0, 300, 0, 300, 0, 0, 0,
0, 0, 0, 0, 296, 0, 0, 0, 0, 0,
0, 0, 0, 0, 300, 0, 0, 0, 0, 0,
300, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 300, 0, 300, 300, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 296, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 208, 208, 206, 300, 298, 300, 0,
207, 300, 229, 0, 0, 0, 0, 0, 300, 218,
0, 300, 209, 0, 0, 216, 0, 0, 0, 0,
0, 0, 0, 0, 0, 255, 244, 293, 0, 0,
0, 205, 253, 0, 226, 220, 0, 0, 292, 0,
0, 286, 214, 0, 0, 215, 0, 0, 295, 0,
0, 0, 0, 0, 18, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 300, 0, 0,
0, 0, 0, 300, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 300, 0, 0, 0, 300, 0, 0, 0, 0,
0, 0, 0, 0, 82, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 300,
0, 0, 0, 0, 0, 108, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 135, 174,
209, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 292,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
208, 206, 219, 0, 0, 0, 0, 288, 0, 0,
0, 0, 0, 0, 287, 281, 0, 0, 294, 0,
212, 221, 0, 0, 243, 293, 0, 0, 0, 228,
0, 0, 0, 0, 0, 0, 292, 245, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 7, 0, 0, 0, 0, 0, 0,
0, 0, 3, 0, 0, 0, 0, 0, 0, 0,
0, 22, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 300, 69, 0, 0, 83, 0, 0, 0, 0,
80, 0, 0, 0, 0, 0, 0, 0, 0, 55,
0, 53, 54, 0, 0, 46, 45, 0, 0, 0,
0, 0, 109, 0, 0, 119, 0, 0, 0, 0,
0, 0, 118, 0, 0, 0, 132, 173, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 133, 0, 0, 0,
0, 0, 165, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 172, 0,
0, 0, 147, 0, 0, 193, 0, 0, 0, 0,
0, 0, 192, 0, 0, 224, 0, 0, 0, 288,
0, 0, 0, 0, 0, 0, 0, 0, 0, 294,
0, 213, 0, 282, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 246, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 95, 0, 4, 0, 0, 0, 0, 0, 0,
23, 19, 0, 0, 0, 0, 0, 0, 38, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 79, 70, 0, 0, 0, 0,
0, 0, 0, 0, 71, 0, 0, 0, 0, 0,
0, 107, 0, 0, 110, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 168, 0, 0,
0, 0, 0, 0, 167, 0, 163, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 178, 0, 0, 0, 187, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 285,
0, 0, 0, 0, 0, 0, 268, 0, 0, 0,
0, 0, 0, 211, 293, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 269, 270, 267,
292, 248, 0, 0, 0, 250, 252, 284, 0, 0,
0, 0, 0, 0, 0, 34, 0, 0, 0, 0,
0, 124, 104, 5, 0, 0, 0, 0, 0, 11,
24, 21, 0, 0, 0, 0, 0, 0, 0, 36,
0, 0, 0, 0, 0, 100, 101, 0, 0, 0,
0, 85, 0, 0, 0, 0, 0, 0, 0, 0,
0, 81, 0, 0, 78, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
150, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 181, 0, 0, 0,
166, 0, 158, 0, 0, 0, 0, 0, 0, 198,
0, 0, 0, 201, 0, 283, 0, 0, 222, 254,
0, 0, 242, 259, 260, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 256, 0, 0, 0, 0,
0, 0, 0, 0, 231, 0, 0, 0, 0, 0,
15, 50, 0, 26, 0, 1, 0, 0, 0, 8,
13, 0, 20, 0, 0, 0, 0, 0, 0, 0,
0, 97, 0, 0, 99, 0, 0, 0, 0, 0,
0, 0, 89, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 57, 58, 56, 52,
48, 47, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 126, 0, 146, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 170, 0, 0, 0, 0,
0, 0, 159, 139, 0, 153, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 223, 232,
225, 217, 0, 234, 0, 0, 0, 257, 258, 261,
262, 263, 264, 265, 233, 227, 0, 230, 247, 249,
251, 0, 0, 0, 0, 0, 65, 0, 0, 12,
0, 0, 0, 0, 0, 0, 0, 40, 0, 0,
98, 0, 0, 0, 0, 0, 0, 0, 0, 0,
68, 67, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 117, 0, 0,
115, 0, 0, 0, 155, 0, 0, 0, 180, 0,
0, 0, 179, 0, 0, 0, 0, 171, 0, 185,
0, 0, 0, 0, 0, 0, 0, 0, 188, 0,
0, 0, 0, 0, 0, 0, 0, 0, 197, 0,
0, 0, 191, 202, 0, 235, 0, 0, 0, 0,
0, 0, 280, 0, 0, 0, 0, 0, 43, 0,
0, 0, 0, 28, 0, 39, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 88, 91, 84, 0,
90, 0, 60, 0, 61, 0, 59, 105, 0, 0,
0, 0, 0, 114, 125, 0, 0, 175, 0, 176,
0, 0, 0, 0, 140, 136, 169, 0, 0, 0,
0, 0, 0, 0, 0, 182, 148, 0, 0, 152,
137, 0, 0, 0, 0, 0, 0, 0, 199, 0,
271, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 200, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 77, 0, 0, 0, 0, 0, 0, 0,
0, 62, 0, 106, 0, 0, 0, 0, 134, 0,
0, 0, 0, 0, 0, 0, 0, 0, 156, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 237, 0, 0, 0, 239, 241, 0,
0, 0, 0, 0, 0, 0, 0, 0, 10, 0,
0, 0, 0, 0, 37, 0, 0, 74, 73, 0,
76, 0, 0, 92, 0, 63, 0, 0, 0, 0,
0, 177, 0, 0, 0, 0, 0, 0, 0, 0,
0, 184, 183, 0, 0, 0, 151, 0, 0, 142,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 16, 0, 0, 0,
0, 31, 0, 0, 0, 0, 75, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
236, 238, 240, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 86,
0, 87, 0, 0, 0, 116, 0, 130, 0, 138,
0, 0, 141, 162, 0, 0, 0, 0, 160, 0,
0, 0, 0, 0, 0, 0, 0, 0, 266, 0,
0, 0, 0, 17, 9, 32, 30, 0, 41, 102,
72, 0, 0, 0, 0, 0, 0, 154, 149, 0,
164, 129, 0, 0, 0, 0, 196, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
157, 161, 0, 0, 0, 0, 0, 0, 0, 0,
0, 277, 276, 279, 278, 29, 0, 0, 0, 145,
143, 0, 0, 0, 0, 275, 273, 274, 272, 0,
0, 0, 144, 186, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 120, 0,
194, 0, 122, 195, 0, 0, 121, 0
} ;
static yyconst flex_int32_t yy_ec[256] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 2, 3,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 2, 1, 4, 5, 1, 6, 1, 1, 1,
1, 1, 1, 7, 8, 9, 10, 11, 12, 13,
14, 15, 16, 17, 18, 19, 20, 21, 22, 1,
1, 1, 1, 1, 23, 24, 23, 23, 23, 23,
25, 25, 25, 25, 26, 25, 27, 25, 25, 25,
25, 25, 25, 28, 25, 25, 25, 25, 25, 25,
29, 1, 30, 1, 31, 1, 32, 33, 34, 35,
36, 37, 38, 39, 40, 41, 42, 43, 44, 45,
46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
56, 57, 58, 1, 59, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1
} ;
static yyconst flex_int32_t yy_meta[60] =
{ 0,
1, 1, 2, 1, 1, 3, 1, 1, 3, 1,
4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
5, 1, 6, 6, 7, 7, 7, 7, 1, 1,
1, 6, 6, 6, 6, 6, 6, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
7, 7, 7, 7, 7, 7, 7, 1, 1
} ;
static yyconst flex_int16_t yy_base[1831] =
{ 0,
0, 0, 26, 44, 27, 58, 68, 87, 90, 106,
103, 114, 134, 136, 98, 143, 196, 0, 165, 167,
48, 189, 0, 0, 0, 0, 227, 238, 290, 343,
31, 71, 396, 0, 424, 452, 0, 0, 61, 97,
2196, 2197, 2193, 2197, 2190, 0, 0, 0, 506, 2138,
130, 2186, 2197, 2185, 2166, 2165, 2164, 0, 172, 153,
66, 169, 229, 204, 18, 135, 89, 86, 2130, 222,
102, 221, 2137, 237, 242, 248, 132, 2153, 2148, 68,
183, 256, 249, 258, 237, 275, 278, 304, 313, 250,
192, 2197, 2197, 2197, 286, 299, 312, 140, 317, 2197,
277, 314, 320, 314, 2151, 334, 353, 364, 361, 2197,
2197, 2147, 355, 372, 372, 2197, 2197, 412, 336, 369,
425, 2197, 2197, 2197, 328, 446, 447, 463, 323, 462,
286, 440, 499, 466, 515, 2141, 2197, 2197, 2129, 526,
381, 167, 429, 2143, 2197, 2197, 383, 510, 523, 2197,
2197, 2197, 2146, 2132, 527, 543, 360, 2197, 2197, 2124,
522, 448, 550, 495, 533, 279, 540, 553, 2197, 2130,
563, 2197, 2197, 2136, 532, 569, 575, 590, 588, 566,
584, 430, 546, 595, 591, 605, 616, 613, 622, 632,
625, 2137, 2136, 221, 2197, 2119, 611, 640, 662, 421,
637, 631, 655, 2197, 2197, 2197, 645, 647, 2168, 2165,
2197, 0, 2162, 0, 0, 2161, 2111, 0, 498, 2130,
2197, 2197, 2197, 2134, 466, 376, 2197, 2118, 2116, 2110,
672, 674, 2110, 593, 2112, 2115, 2122, 2120, 2105, 2122,
2101, 2119, 2107, 2114, 2115, 2092, 2112, 2096, 2129, 2099,
2108, 2097, 2098, 2103, 2197, 2099, 2102, 617, 2096, 2104,
2101, 2102, 2100, 2094, 2084, 2092, 2083, 2081, 2091, 2074,
2075, 2080, 2073, 2088, 2089, 2070, 2081, 2083, 502, 2075,
272, 2081, 2071, 2074, 647, 2064, 648, 2076, 686, 56,
2077, 2075, 2073, 2059, 693, 2058, 2069, 655, 2056, 2070,
2048, 2057, 2052, 697, 2050, 2067, 2049, 2045, 2045, 2044,
2045, 2061, 695, 2041, 699, 2046, 698, 2040, 672, 2055,
2056, 2053, 2041, 2034, 2039, 2039, 2032, 2035, 2045, 2026,
2035, 2027, 2031, 2024, 704, 2029, 663, 2024, 2039, 2022,
708, 2019, 2018, 679, 2023, 675, 2027, 2020, 691, 2014,
2013, 2019, 2028, 2024, 2029, 2009, 2014, 681, 2011, 2017,
2017, 722, 2003, 727, 730, 2021, 2021, 2001, 2010, 2014,
2001, 706, 1998, 2001, 2009, 2008, 694, 705, 710, 2006,
709, 2007, 2010, 1989, 1994, 2002, 1987, 2000, 735, 2003,
715, 708, 1985, 719, 1982, 1983, 726, 719, 1991, 1981,
1997, 2017, 1975, 1975, 1974, 1993, 1989, 1972, 1971, 1983,
724, 1968, 1981, 0, 2011, 0, 0, 0, 759, 1980,
2197, 763, 2197, 2003, 1960, 1977, 1976, 1960, 764, 1979,
1959, 768, 2197, 1972, 1962, 2197, 1974, 1971, 1955, 1954,
1955, 1969, 1954, 1959, 1956, 2197, 2197, 726, 1950, 1965,
1952, 2197, 2197, 1963, 2197, 2197, 1948, 739, 328, 768,
1947, 2197, 2197, 1955, 1953, 2197, 1940, 1937, 2197, 1940,
754, 1943, 1938, 1933, 2197, 747, 1948, 1943, 1945, 1927,
1939, 1932, 1932, 1940, 1929, 1922, 1924, 781, 1921, 1928,
1933, 1938, 1928, 784, 1921, 1920, 1925, 1919, 1920, 1922,
1926, 1920, 1919, 1926, 1915, 1916, 1910, 1918, 1902, 1902,
1901, 598, 1911, 1904, 1911, 785, 1932, 1894, 1902, 1897,
1911, 1892, 748, 762, 2197, 1910, 1897, 1899, 1902, 1897,
1885, 1885, 1885, 1897, 1897, 1880, 1879, 750, 1879, 790,
1889, 1878, 1890, 1869, 1879, 2197, 1887, 1878, 1869, 1881,
1883, 1871, 1868, 1880, 1875, 1883, 1867, 1876, 1866, 1874,
1860, 1872, 1871, 1855, 1854, 1864, 1865, 1852, 2197, 1870,
1869, 1865, 1859, 1863, 1860, 765, 1864, 1843, 1857, 1856,
1844, 1854, 1844, 1854, 764, 1847, 1855, 772, 1829, 1834,
1834, 1842, 1831, 1840, 1832, 1842, 1831, 1824, 1835, 769,
1839, 1821, 1832, 1824, 1834, 1821, 1828, 1825, 1846, 1814,
1825, 1827, 1824, 1812, 773, 1821, 1823, 1822, 1817, 1848,
0, 2197, 2197, 1823, 1818, 1818, 1815, 1801, 1807, 1837,
1816, 376, 1807, 1834, 2197, 2197, 1798, 1813, 1793, 1802,
1824, 2197, 1796, 1804, 2197, 2197, 1787, 812, 1805, 1805,
1785, 1799, 1788, 1796, 1791, 1785, 2197, 2197, 783, 1810,
1816, 1791, 1777, 1785, 1793, 1784, 1779, 1781, 1768, 1785,
1782, 1786, 1776, 2197, 1759, 1764, 1761, 1761, 1774, 1761,
1763, 1761, 1776, 1754, 1765, 1752, 1763, 1752, 1754, 1762,
1750, 2197, 1761, 1757, 1744, 1751, 1748, 1759, 1747, 1758,
1746, 1755, 1737, 1738, 1755, 1749, 1748, 1731, 1751, 1745,
1749, 802, 2197, 1732, 1726, 2197, 1734, 1761, 1743, 1728,
2197, 1735, 1741, 1719, 1739, 1718, 1732, 1752, 1735, 2197,
1734, 2197, 2197, 1715, 1723, 2197, 2197, 1722, 1715, 1730,
1703, 1713, 2197, 1710, 1720, 1705, 1705, 1697, 1701, 1716,
1712, 1698, 2197, 1692, 1698, 1710, 2197, 1695, 1688, 1703,
1698, 1692, 1704, 798, 1702, 1687, 1705, 1700, 1686, 1683,
1696, 1692, 1693, 1696, 1697, 1677, 2197, 1688, 1695, 1690,
1673, 1687, 2197, 1682, 1671, 1685, 1683, 1673, 1671, 1660,
1664, 1674, 1666, 1676, 1680, 1678, 1675, 1662, 2197, 1655,
1669, 1674, 2197, 1665, 1667, 1652, 1652, 1644, 1657, 1647,
50, 80, 2197, 110, 175, 2197, 201, 460, 474, 2197,
566, 600, 588, 763, 788, 783, 816, 782, 790, 2197,
802, 2197, 791, 2197, 803, 832, 833, 834, 835, 837,
833, 839, 800, 817, 816, 824, 823, 805, 821, 825,
844, 849, 849, 853, 816, 2197, 818, 832, 839, 835,
837, 838, 837, 830, 842, 832, 847, 843, 830, 845,
836, 2197, 832, 2197, 837, 848, 851, 844, 849, 838,
877, 2197, 835, 847, 843, 842, 851, 845, 847, 855,
852, 849, 865, 849, 861, 859, 893, 862, 870, 860,
860, 868, 881, 878, 883, 2197, 865, 867, 868, 868,
869, 875, 892, 880, 2197, 893, 891, 891, 882, 893,
878, 2197, 888, 882, 2197, 889, 899, 889, 899, 904,
892, 906, 899, 904, 896, 900, 911, 2197, 903, 916,
915, 920, 917, 905, 2197, 910, 2197, 924, 917, 909,
927, 911, 930, 919, 923, 933, 931, 930, 918, 937,
916, 939, 2197, 959, 941, 923, 2197, 938, 926, 925,
943, 944, 928, 929, 932, 946, 927, 937, 954, 941,
941, 941, 954, 950, 959, 952, 981, 977, 945, 2197,
946, 957, 979, 963, 986, 967, 2197, 986, 988, 974,
971, 968, 977, 2197, 959, 997, 997, 997, 995, 994,
1000, 997, 997, 967, 974, 988, 985, 2197, 2197, 2197,
972, 2197, 1007, 1005, 1013, 2197, 2197, 2197, 987, 979,
981, 974, 1000, 996, 995, 2197, 997, 997, 1003, 990,
1004, 2197, 2197, 2197, 989, 1000, 1005, 1006, 1011, 2197,
2197, 2197, 1006, 1005, 1002, 1007, 1017, 1003, 1014, 1020,
1021, 1004, 1022, 1019, 1021, 2197, 2197, 1006, 1009, 1013,
1021, 2197, 1015, 1011, 1013, 1028, 1022, 1024, 1025, 1022,
1029, 2197, 1038, 1036, 2197, 1037, 1024, 1042, 1025, 1031,
1023, 1043, 1035, 1032, 1032, 1038, 1053, 1035, 1037, 1037,
1045, 1045, 1045, 1052, 1047, 1043, 1045, 1060, 1057, 1046,
2197, 1056, 1045, 1050, 1070, 1065, 1053, 1054, 1074, 1064,
1068, 1074, 1070, 1067, 1076, 1076, 1069, 1083, 1066, 1081,
1084, 1088, 1071, 1089, 1091, 1087, 2197, 1069, 1090, 1087,
2197, 1077, 2197, 1098, 1091, 1088, 1081, 1081, 1083, 2197,
1105, 1095, 1096, 2197, 1098, 2197, 1103, 1111, 2197, 2197,
1131, 1130, 2197, 2197, 2197, 1104, 1131, 1116, 1114, 1135,
1134, 1133, 1140, 1137, 1140, 2197, 1143, 1118, 1124, 1110,
1117, 1144, 1147, 1151, 2197, 1130, 1116, 1117, 1137, 1133,
2197, 2197, 1132, 2197, 1119, 2197, 1135, 1141, 1140, 2197,
2197, 1126, 2197, 1123, 1146, 1121, 1145, 1146, 1146, 1137,
1151, 2197, 1141, 1149, 2197, 1146, 1141, 1136, 1140, 1138,
1160, 1146, 2197, 1161, 1179, 1180, 1144, 1140, 1148, 1154,
1164, 1166, 1156, 1153, 1160, 1169, 2197, 2197, 2197, 2197,
2197, 2197, 1154, 1172, 1168, 1159, 1170, 1175, 1161, 1161,
1179, 1163, 2197, 1176, 2197, 1183, 1171, 1187, 1183, 1172,
1184, 1187, 1188, 1169, 1188, 1196, 1177, 1183, 1177, 1195,
1188, 1195, 1183, 1182, 1196, 2197, 1201, 1203, 1204, 1190,
1198, 1210, 2197, 2197, 1194, 2197, 1198, 1214, 1212, 1215,
1202, 1209, 1203, 1211, 1213, 1216, 1221, 1222, 2197, 2197,
2197, 2197, 1210, 2197, 1248, 1213, 1215, 2197, 2197, 2197,
2197, 2197, 2197, 2197, 2197, 2197, 1230, 2197, 2197, 2197,
2197, 1222, 1226, 1237, 1237, 1226, 2197, 1235, 1235, 2197,
1242, 1239, 1240, 1234, 1242, 1240, 1238, 2197, 1249, 1247,
2197, 1236, 1239, 1233, 1237, 1241, 1239, 1254, 1238, 1246,
2197, 2197, 1245, 1257, 1244, 1245, 1245, 1248, 1246, 1257,
1267, 1252, 1252, 1268, 1270, 1265, 1260, 2197, 1267, 1261,
2197, 1259, 1257, 1279, 2197, 1256, 1281, 1258, 2197, 1284,
1285, 1286, 2197, 1284, 1263, 1280, 1285, 2197, 1275, 2197,
1283, 1288, 1268, 1277, 1291, 1292, 1282, 1298, 1300, 1297,
1282, 1289, 1288, 1300, 1302, 1289, 1302, 1307, 2197, 1296,
1308, 1298, 2197, 2197, 1312, 2197, 1330, 1328, 1336, 1299,
1318, 1316, 2197, 1321, 1322, 1302, 1321, 1319, 2197, 1306,
1323, 1328, 1324, 1331, 1327, 2197, 1313, 1330, 1334, 1329,
1321, 1335, 1319, 1337, 1326, 1324, 2197, 2197, 2197, 1320,
2197, 1321, 2197, 1329, 2197, 1341, 2197, 2197, 1329, 1347,
1334, 1336, 1345, 2197, 2197, 1347, 1333, 2197, 1345, 2197,
1342, 1340, 1342, 1343, 2197, 2197, 2197, 1339, 1354, 1343,
1357, 1343, 1350, 1364, 1343, 2197, 2197, 1364, 1364, 2197,
2197, 1351, 1352, 1366, 1367, 1364, 1373, 1361, 2197, 1358,
2197, 1391, 1396, 1396, 1400, 1383, 1384, 1385, 1383, 1384,
1374, 2197, 1384, 1385, 1391, 1372, 1379, 1382, 1392, 1376,
1379, 1386, 2197, 1380, 1395, 1381, 1399, 1392, 1403, 1403,
1393, 2197, 1391, 2197, 1390, 1397, 1412, 1404, 2197, 1409,
1403, 1401, 1402, 1404, 1405, 1395, 1412, 1403, 2197, 1417,
1404, 1421, 1412, 1419, 1410, 1414, 1410, 1417, 1451, 1419,
1414, 1435, 1427, 2197, 1452, 1450, 1458, 2197, 2197, 1437,
1438, 1431, 1431, 1439, 1433, 1441, 1443, 1430, 2197, 1438,
1449, 1444, 1447, 1442, 2197, 1449, 1446, 2197, 2197, 1446,
2197, 1458, 1455, 2197, 1443, 2197, 1453, 1463, 1463, 1460,
1466, 2197, 1463, 1456, 1457, 1450, 1471, 1467, 1472, 1465,
1466, 2197, 2197, 1471, 1472, 1454, 2197, 1459, 1480, 2197,
1472, 1481, 1463, 1498, 1501, 1504, 1475, 1483, 1477, 1485,
1486, 1483, 1475, 1485, 1477, 1484, 2197, 1492, 1489, 1479,
1486, 2197, 1482, 1480, 1498, 1495, 2197, 1494, 1491, 1506,
1496, 1491, 1490, 1506, 1503, 1488, 1513, 1512, 1498, 1505,
1506, 1513, 1517, 1502, 1497, 1514, 1521, 1510, 1514, 1519,
2197, 2197, 2197, 1519, 1511, 1521, 1513, 1507, 1528, 1512,
1530, 1514, 1532, 1513, 1527, 1532, 1534, 1523, 1538, 2197,
1530, 2197, 1531, 1534, 1540, 2197, 1523, 2197, 1546, 2197,
1547, 1533, 2197, 2197, 1547, 1544, 1543, 1536, 2197, 1550,
1549, 1544, 1552, 1547, 1556, 1540, 1558, 1542, 2197, 1551,
1561, 1553, 1563, 2197, 2197, 2197, 2197, 1549, 2197, 2197,
2197, 1570, 1564, 1557, 1557, 1549, 1555, 2197, 2197, 1571,
2197, 2197, 1568, 1573, 1579, 1565, 2197, 1567, 1577, 1569,
1579, 1565, 1568, 1567, 1570, 1581, 1589, 1576, 1574, 1588,
2197, 2197, 1576, 1590, 1593, 1584, 1580, 1579, 1582, 1581,
1584, 2197, 2197, 2197, 2197, 2197, 1591, 1586, 1596, 2197,
2197, 1588, 1596, 1603, 1600, 2197, 2197, 2197, 2197, 1603,
1602, 1592, 2197, 2197, 1593, 1594, 1600, 1596, 1609, 1610,
1611, 1602, 1613, 1609, 1608, 1611, 1616, 1613, 2197, 1623,
2197, 1608, 2197, 2197, 1621, 1617, 2197, 2197, 1661, 1668,
1672, 1666, 1676, 1679, 1681, 1684, 1685, 1689, 1692, 1686
} ;
static yyconst flex_int16_t yy_def[1831] =
{ 0,
1818, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 17, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 33, 1, 1, 1, 1, 1, 1,
1818, 1818, 1818, 1818, 1819, 1820, 1821, 1822, 1818, 49,
49, 1823, 1818, 1823, 1818, 1818, 1818, 1824, 1823, 1823,
1823, 1823, 1823, 1823, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1823,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1823, 1818,
1818, 1818, 1818, 1818, 1823, 1823, 1818, 1818, 1818, 1818,
1823, 1823, 1818, 1818, 1818, 1823, 1818, 1818, 1818, 1818,
1818, 59, 1823, 1818, 1818, 1818, 1818, 1823, 1818, 1818,
1818, 1818, 1818, 1818, 59, 1823, 1823, 1823, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 59, 1823,
1818, 1818, 1818, 1818, 1818, 1818, 59, 1818, 1818, 1818,
1818, 1818, 1824, 59, 1823, 1823, 1818, 1818, 1818, 59,
1823, 1823, 1823, 1818, 1818, 1818, 1818, 1818, 1818, 59,
1818, 1818, 1818, 59, 140, 1823, 1823, 1823, 1823, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 59, 1823, 1823, 1823, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1819,
1818, 1820, 1825, 1826, 1827, 1823, 49, 1828, 1823, 1818,
1818, 1818, 1818, 1824, 1823, 1823, 1818, 1818, 1818, 1818,
1823, 1823, 1818, 1823, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1823, 1823,
1818, 1818, 1818, 1818, 1823, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1823, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1823, 1818, 1823, 1818, 1823, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1823, 1818, 1818, 1818, 1818, 1818,
1823, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1823, 1818, 1823, 1823, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1829, 1825, 1830, 1827, 1828, 1823, 1818,
1818, 1823, 1818, 1818, 1818, 1818, 1818, 1818, 1823, 1818,
1818, 1823, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1823, 1818, 1818,
1818, 1818, 1818, 1823, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1823, 1818, 1818, 1818, 1823, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1823,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1829, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1823, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 0, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818
} ;
static yyconst flex_int16_t yy_nxt[2257] =
{ 0,
42, 43, 44, 45, 46, 42, 42, 47, 42, 48,
49, 50, 50, 51, 50, 50, 50, 50, 50, 50,
52, 53, 52, 54, 42, 55, 56, 57, 58, 42,
42, 59, 60, 61, 62, 63, 64, 65, 66, 67,
42, 68, 69, 70, 71, 72, 73, 42, 74, 75,
76, 77, 42, 42, 78, 79, 42, 42, 42, 80,
89, 215, 170, 81, 90, 82, 238, 239, 83, 84,
171, 215, 85, 215, 86, 87, 88, 80, 91, 147,
985, 81, 206, 82, 92, 93, 83, 84, 172, 94,
85, 89, 86, 87, 88, 90, 148, 231, 149, 231,
95, 96, 170, 207, 489, 150, 151, 97, 94, 91,
171, 100, 208, 272, 98, 92, 93, 99, 206, 95,
96, 246, 243, 244, 101, 102, 97, 100, 172, 103,
986, 118, 247, 98, 104, 245, 99, 119, 106, 207,
101, 102, 120, 105, 121, 103, 107, 252, 208, 106,
104, 108, 109, 253, 987, 122, 123, 107, 215, 105,
110, 111, 108, 109, 219, 112, 268, 112, 113, 220,
113, 110, 111, 114, 215, 114, 118, 215, 240, 292,
241, 269, 119, 115, 1818, 115, 988, 120, 293, 121,
242, 116, 117, 116, 117, 229, 139, 140, 139, 140,
122, 123, 124, 141, 232, 141, 225, 226, 230, 215,
227, 142, 338, 142, 143, 257, 143, 144, 233, 144,
147, 228, 145, 146, 145, 146, 268, 125, 126, 127,
128, 238, 273, 129, 215, 130, 402, 148, 131, 149,
132, 288, 133, 236, 134, 135, 150, 151, 152, 136,
989, 237, 403, 137, 138, 153, 249, 254, 154, 152,
155, 250, 234, 156, 157, 255, 153, 251, 279, 154,
258, 155, 256, 280, 156, 157, 259, 261, 235, 264,
262, 265, 215, 275, 158, 281, 260, 266, 276, 243,
244, 215, 249, 263, 277, 158, 159, 250, 287, 239,
274, 267, 245, 278, 215, 248, 282, 454, 258, 284,
283, 480, 295, 261, 259, 356, 262, 289, 215, 215,
321, 160, 161, 162, 260, 163, 233, 257, 229, 263,
231, 322, 164, 165, 290, 264, 166, 265, 167, 215,
168, 230, 248, 285, 231, 243, 244, 234, 169, 159,
294, 286, 261, 243, 244, 262, 291, 267, 245, 298,
215, 313, 296, 235, 297, 253, 245, 234, 263, 243,
244, 319, 239, 656, 160, 161, 162, 657, 163, 314,
309, 215, 245, 235, 301, 164, 165, 249, 300, 166,
232, 167, 250, 168, 305, 302, 261, 258, 251, 262,
310, 169, 173, 259, 233, 243, 244, 261, 349, 239,
262, 303, 263, 260, 252, 824, 341, 215, 245, 825,
253, 306, 307, 263, 240, 423, 337, 174, 175, 176,
177, 178, 179, 180, 342, 181, 242, 182, 183, 184,
185, 186, 187, 231, 188, 189, 190, 191, 192, 193,
194, 215, 215, 215, 195, 196, 197, 308, 198, 199,
311, 200, 201, 312, 261, 379, 202, 262, 215, 238,
408, 215, 323, 257, 203, 324, 247, 315, 231, 231,
339, 204, 205, 196, 197, 325, 198, 199, 229, 200,
201, 253, 316, 352, 202, 243, 244, 329, 317, 258,
422, 230, 203, 215, 990, 259, 320, 318, 245, 204,
205, 215, 233, 991, 216, 260, 217, 217, 217, 217,
217, 217, 217, 217, 217, 217, 216, 215, 216, 216,
326, 215, 215, 419, 354, 327, 477, 216, 216, 216,
216, 216, 216, 258, 328, 343, 330, 257, 215, 259,
261, 248, 478, 262, 264, 215, 265, 335, 231, 260,
218, 331, 344, 362, 229, 336, 263, 249, 229, 347,
332, 1818, 250, 258, 215, 357, 267, 351, 251, 259,
215, 230, 236, 234, 264, 380, 265, 363, 355, 260,
237, 348, 358, 215, 353, 215, 243, 244, 215, 235,
364, 374, 248, 215, 365, 432, 267, 360, 992, 245,
232, 366, 993, 367, 238, 239, 215, 243, 375, 368,
369, 370, 384, 234, 233, 376, 381, 236, 377, 249,
378, 455, 456, 373, 250, 237, 385, 386, 994, 371,
382, 254, 253, 708, 372, 215, 258, 387, 392, 255,
383, 388, 259, 229, 389, 393, 256, 394, 390, 268,
262, 395, 260, 264, 391, 265, 405, 215, 409, 399,
410, 398, 396, 397, 269, 232, 412, 215, 406, 215,
240, 268, 241, 436, 464, 267, 264, 248, 265, 233,
484, 215, 242, 486, 411, 234, 269, 413, 215, 450,
215, 248, 215, 215, 215, 497, 407, 436, 267, 215,
429, 235, 536, 215, 439, 427, 464, 518, 464, 488,
545, 428, 543, 430, 558, 494, 436, 215, 512, 429,
546, 422, 215, 578, 516, 215, 549, 572, 443, 573,
503, 540, 430, 514, 579, 581, 592, 430, 583, 596,
454, 597, 600, 534, 580, 598, 464, 564, 461, 584,
595, 464, 605, 601, 215, 444, 593, 618, 215, 215,
427, 562, 604, 215, 653, 646, 428, 647, 565, 658,
659, 660, 672, 661, 668, 637, 215, 654, 655, 215,
215, 719, 649, 648, 662, 215, 642, 721, 851, 779,
734, 720, 649, 809, 810, 782, 631, 215, 623, 770,
648, 625, 634, 852, 656, 995, 712, 794, 657, 996,
997, 1000, 684, 836, 837, 838, 839, 631, 840, 841,
842, 998, 941, 1001, 999, 690, 1003, 1004, 1005, 1002,
736, 942, 1006, 1008, 1009, 1010, 943, 1007, 1011, 1012,
1013, 1014, 1015, 902, 1016, 1017, 1018, 1019, 1020, 1021,
1022, 1023, 1024, 1026, 1025, 1027, 1028, 1029, 1030, 1031,
1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040, 1041,
1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051,
1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061,
1062, 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1072, 1073,
1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1070,
1071, 1083, 1084, 1085, 1086, 1090, 1092, 1093, 1094, 1095,
1087, 1096, 1097, 1098, 1099, 1100, 1088, 1091, 1101, 1102,
1103, 1104, 1105, 1106, 1089, 1107, 1108, 1109, 1110, 1111,
1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121,
1122, 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131,
1132, 1133, 1134, 1135, 1136, 1137, 1138, 1139, 1140, 1141,
1142, 1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151,
1152, 1153, 1154, 1155, 1156, 1157, 1158, 1159, 1160, 1161,
1163, 1164, 1162, 1165, 1166, 1167, 1168, 1169, 646, 1170,
1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180,
1181, 657, 1182, 1183, 1184, 1185, 1186, 1187, 1189, 1188,
1190, 1191, 1192, 1193, 1194, 1195, 1196, 1197, 1198, 1199,
1200, 1201, 1202, 1203, 1204, 1205, 1206, 1207, 1208, 1209,
1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219,
1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228, 1229,
1230, 1232, 1233, 1234, 1236, 1237, 1238, 1235, 1239, 1240,
1231, 1241, 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249,
1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259,
1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269,
1270, 1271, 1272, 1273, 1274, 1275, 1276, 1277, 1279, 1280,
1281, 1282, 1283, 1278, 1284, 1285, 1287, 1288, 1289, 1290,
1291, 1292, 1293, 1294, 1187, 1295, 1188, 1296, 1286, 1297,
1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1308,
1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318,
1319, 1320, 1307, 1321, 1322, 1323, 1324, 1325, 1326, 1327,
1328, 1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337,
1338, 1339, 1340, 1341, 1342, 1343, 1344, 1345, 1346, 1347,
1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356, 1357,
1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367,
1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377,
1378, 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387,
1388, 1389, 1390, 1391, 1392, 1393, 1394, 1395, 1396, 1398,
1399, 1400, 1401, 1402, 1403, 1404, 1406, 1407, 1408, 1409,
1410, 1405, 1411, 1412, 1303, 1397, 1413, 1414, 1415, 1416,
1417, 1418, 1420, 1419, 1421, 1422, 1423, 1424, 1425, 1426,
1427, 1428, 1429, 1430, 1431, 1432, 1433, 1434, 1435, 1436,
1437, 1438, 1439, 1440, 1441, 1442, 1443, 1444, 1445, 1446,
1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, 1455, 1456,
1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465, 1466,
1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476,
1477, 1478, 1479, 1480, 1481, 1482, 1483, 1484, 1486, 1487,
1488, 1489, 1490, 1491, 1492, 1493, 1494, 1485, 1495, 1496,
1497, 1498, 1499, 1500, 1501, 1502, 1504, 1505, 1506, 1507,
1508, 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517,
1503, 1518, 1519, 1520, 1521, 1522, 1523, 1524, 1525, 1526,
1527, 1528, 1529, 1530, 1531, 1532, 1533, 1534, 1535, 1536,
1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544, 1545, 1546,
1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556,
1557, 1558, 1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566,
1568, 1567, 1569, 1570, 1571, 1572, 1573, 1575, 1577, 1578,
1579, 1580, 1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588,
1589, 1590, 1574, 1576, 1591, 1592, 1593, 1594, 1595, 1596,
1597, 1598, 1599, 1600, 1601, 1602, 1603, 1604, 1605, 1606,
1607, 1608, 1609, 1610, 1611, 1612, 1613, 1614, 1615, 1616,
1617, 1618, 1619, 1620, 1621, 1622, 1623, 1624, 1625, 1626,
1627, 1629, 1631, 1632, 1633, 1634, 1635, 1636, 1637, 1638,
1639, 1640, 1641, 1642, 1643, 1644, 1628, 1630, 1645, 1646,
1647, 1648, 1649, 1650, 1651, 1652, 1653, 1654, 1655, 1656,
1657, 1658, 1659, 1660, 1661, 1662, 1663, 1664, 1665, 1666,
1667, 1668, 1669, 1670, 1671, 1672, 1673, 1674, 1675, 1676,
1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685, 1686,
1687, 1688, 1689, 1690, 1691, 1692, 1693, 1694, 1695, 1696,
1697, 1698, 1699, 1700, 1701, 1702, 1703, 1704, 1705, 1706,
1707, 1708, 1709, 1710, 1711, 1712, 1713, 1714, 1715, 1716,
1717, 1718, 1719, 1720, 1721, 1722, 1723, 1724, 1725, 1726,
1727, 1728, 1729, 1730, 1731, 1732, 1733, 1734, 1735, 1736,
1737, 1738, 1739, 1740, 1741, 1742, 1743, 1744, 1745, 1746,
1747, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756,
1757, 1758, 1759, 1760, 1761, 1762, 1763, 1764, 1765, 1766,
1767, 1768, 1769, 1770, 1771, 1772, 1773, 1774, 1775, 1776,
1777, 1778, 1779, 1780, 1781, 1782, 1783, 1784, 1785, 1786,
1787, 1788, 1789, 1790, 1791, 1792, 1793, 1794, 1795, 1796,
1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806,
1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816,
1817, 210, 210, 210, 210, 210, 210, 210, 212, 214,
212, 212, 212, 212, 212, 213, 213, 213, 216, 216,
216, 216, 224, 415, 415, 415, 415, 416, 417, 622,
417, 417, 418, 984, 418, 621, 983, 621, 621, 982,
981, 820, 980, 979, 978, 977, 976, 975, 974, 973,
972, 971, 970, 969, 968, 967, 966, 965, 964, 963,
962, 961, 960, 959, 958, 957, 956, 955, 954, 953,
952, 951, 950, 949, 948, 947, 946, 945, 944, 940,
939, 938, 937, 936, 820, 935, 934, 933, 932, 931,
930, 929, 928, 927, 820, 926, 925, 924, 923, 922,
921, 920, 919, 918, 917, 916, 915, 914, 913, 912,
911, 910, 909, 908, 907, 906, 905, 904, 903, 901,
900, 899, 898, 897, 896, 895, 894, 893, 892, 891,
890, 889, 888, 887, 886, 885, 884, 883, 882, 881,
880, 879, 878, 877, 876, 875, 858, 874, 873, 872,
871, 870, 869, 868, 867, 866, 865, 864, 863, 862,
861, 860, 859, 858, 857, 856, 855, 854, 853, 850,
849, 848, 847, 846, 845, 844, 843, 835, 834, 833,
832, 831, 830, 829, 828, 827, 826, 823, 822, 821,
820, 819, 818, 817, 816, 815, 814, 813, 812, 811,
808, 807, 806, 805, 804, 803, 802, 801, 800, 799,
798, 797, 796, 795, 793, 792, 791, 790, 789, 788,
787, 786, 785, 784, 783, 781, 780, 778, 777, 776,
775, 774, 773, 772, 771, 769, 768, 767, 766, 765,
764, 763, 762, 761, 760, 759, 758, 757, 756, 755,
754, 753, 752, 751, 750, 749, 748, 747, 746, 745,
744, 743, 742, 741, 740, 739, 738, 737, 735, 733,
732, 731, 730, 729, 728, 727, 726, 725, 724, 723,
722, 718, 717, 716, 715, 714, 713, 711, 710, 709,
707, 706, 705, 704, 703, 702, 701, 700, 699, 698,
697, 696, 695, 694, 693, 692, 691, 689, 688, 687,
686, 685, 683, 682, 681, 680, 679, 678, 677, 676,
675, 674, 673, 671, 670, 669, 667, 666, 665, 664,
663, 662, 652, 651, 650, 649, 648, 645, 644, 643,
642, 641, 640, 639, 638, 637, 636, 635, 633, 632,
630, 629, 628, 627, 626, 624, 414, 620, 619, 617,
616, 615, 614, 613, 612, 611, 610, 609, 608, 607,
606, 603, 602, 599, 594, 591, 590, 589, 588, 587,
586, 585, 582, 577, 576, 575, 574, 571, 570, 569,
568, 567, 566, 563, 561, 560, 559, 557, 556, 555,
554, 553, 552, 551, 550, 548, 547, 544, 542, 541,
539, 538, 537, 535, 533, 532, 531, 530, 529, 528,
527, 526, 525, 524, 523, 522, 521, 520, 519, 517,
515, 513, 511, 510, 509, 508, 507, 506, 505, 504,
502, 501, 500, 499, 498, 496, 495, 493, 492, 491,
490, 487, 485, 483, 482, 481, 479, 476, 475, 474,
473, 472, 471, 470, 469, 468, 467, 466, 465, 464,
463, 462, 461, 460, 459, 458, 457, 454, 453, 452,
451, 450, 449, 448, 447, 446, 445, 444, 443, 442,
441, 440, 439, 438, 437, 436, 435, 434, 433, 431,
426, 425, 424, 421, 420, 1818, 215, 414, 211, 209,
404, 401, 400, 361, 359, 350, 346, 345, 340, 334,
333, 304, 299, 271, 270, 257, 248, 223, 222, 221,
215, 215, 1818, 211, 209, 1818, 41, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818
} ;
static yyconst flex_int16_t yy_chk[2257] =
{ 0,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 3,
5, 290, 31, 3, 5, 3, 65, 65, 3, 3,
31, 61, 3, 80, 3, 3, 3, 4, 5, 21,
811, 4, 39, 4, 5, 5, 4, 4, 31, 7,
4, 6, 4, 4, 4, 6, 21, 61, 21, 80,
7, 7, 32, 39, 290, 21, 21, 7, 8, 6,
32, 9, 39, 80, 7, 6, 6, 7, 40, 8,
8, 68, 67, 67, 9, 9, 8, 10, 32, 9,
812, 15, 68, 8, 9, 67, 8, 15, 11, 40,
10, 10, 15, 9, 15, 10, 11, 71, 40, 12,
10, 11, 11, 71, 814, 15, 15, 12, 60, 10,
11, 11, 12, 12, 51, 13, 77, 14, 13, 51,
14, 12, 12, 13, 62, 14, 16, 59, 66, 98,
66, 77, 16, 13, 51, 14, 815, 16, 98, 16,
66, 13, 13, 14, 14, 60, 19, 19, 20, 20,
16, 16, 17, 19, 62, 20, 59, 59, 60, 64,
59, 19, 142, 20, 19, 142, 20, 19, 62, 20,
22, 59, 19, 19, 20, 20, 91, 17, 17, 17,
17, 81, 81, 17, 63, 17, 194, 22, 17, 22,
17, 91, 17, 64, 17, 17, 22, 22, 27, 17,
817, 64, 194, 17, 17, 27, 70, 72, 27, 28,
27, 70, 63, 27, 27, 72, 28, 70, 85, 28,
74, 28, 72, 85, 28, 28, 74, 75, 63, 76,
75, 76, 101, 83, 27, 85, 74, 76, 83, 82,
82, 95, 84, 75, 83, 28, 29, 84, 90, 90,
82, 76, 82, 84, 96, 83, 86, 281, 86, 87,
86, 281, 101, 87, 86, 166, 87, 95, 89, 102,
131, 29, 29, 29, 86, 29, 101, 166, 95, 87,
96, 131, 29, 29, 96, 88, 29, 88, 29, 106,
29, 95, 131, 88, 89, 97, 97, 102, 29, 30,
99, 89, 99, 103, 103, 99, 97, 88, 97, 104,
113, 125, 102, 102, 103, 104, 103, 106, 99, 119,
119, 129, 129, 459, 30, 30, 30, 459, 30, 125,
119, 226, 119, 106, 107, 30, 30, 107, 106, 30,
113, 30, 107, 30, 113, 108, 109, 108, 107, 109,
120, 30, 33, 108, 113, 114, 114, 115, 157, 157,
115, 109, 109, 108, 120, 632, 147, 118, 114, 632,
120, 114, 115, 115, 141, 226, 141, 33, 33, 33,
33, 33, 33, 33, 147, 33, 141, 33, 33, 33,
33, 33, 33, 118, 33, 33, 33, 33, 33, 33,
33, 126, 127, 162, 33, 35, 35, 118, 35, 35,
121, 35, 35, 121, 143, 182, 35, 143, 128, 200,
200, 225, 132, 121, 35, 132, 182, 126, 127, 162,
143, 35, 35, 36, 36, 132, 36, 36, 126, 36,
36, 132, 127, 162, 36, 130, 130, 134, 128, 134,
225, 126, 36, 219, 818, 134, 130, 128, 130, 36,
36, 49, 128, 819, 49, 134, 49, 49, 49, 49,
49, 49, 49, 49, 49, 49, 49, 161, 49, 49,
133, 140, 155, 219, 164, 133, 279, 49, 49, 49,
49, 49, 49, 148, 133, 148, 135, 133, 156, 148,
135, 164, 279, 135, 149, 163, 149, 140, 155, 148,
49, 135, 149, 175, 161, 140, 135, 165, 140, 155,
135, 175, 165, 167, 176, 167, 149, 161, 165, 167,
177, 140, 156, 163, 168, 183, 168, 175, 165, 167,
156, 156, 168, 179, 163, 178, 171, 171, 234, 163,
176, 180, 183, 512, 176, 234, 168, 171, 821, 171,
177, 176, 822, 177, 180, 180, 197, 181, 181, 177,
177, 177, 185, 178, 177, 181, 184, 179, 181, 184,
181, 258, 258, 179, 184, 179, 185, 186, 823, 178,
184, 186, 185, 512, 178, 198, 188, 187, 188, 186,
184, 187, 188, 197, 187, 189, 186, 189, 187, 191,
189, 189, 188, 190, 187, 190, 197, 199, 201, 191,
202, 190, 189, 189, 191, 198, 207, 231, 198, 232,
201, 208, 201, 287, 285, 190, 203, 202, 203, 198,
285, 289, 201, 287, 203, 199, 208, 208, 295, 298,
313, 207, 304, 317, 315, 298, 199, 319, 203, 335,
232, 199, 337, 341, 337, 231, 344, 319, 358, 289,
346, 231, 344, 232, 358, 295, 349, 362, 313, 295,
346, 304, 364, 377, 317, 365, 349, 372, 378, 372,
304, 341, 295, 315, 377, 379, 389, 317, 381, 392,
391, 392, 394, 335, 378, 392, 398, 364, 397, 381,
391, 411, 398, 394, 419, 379, 389, 411, 422, 429,
364, 362, 397, 432, 458, 448, 364, 448, 365, 460,
460, 460, 476, 460, 471, 471, 488, 458, 458, 494,
516, 523, 524, 476, 538, 540, 576, 524, 659, 585,
538, 523, 588, 615, 615, 588, 429, 712, 419, 576,
585, 422, 432, 659, 600, 824, 516, 600, 600, 825,
826, 828, 488, 648, 648, 648, 648, 516, 648, 648,
648, 827, 764, 829, 827, 494, 831, 833, 835, 829,
540, 764, 836, 837, 838, 839, 764, 836, 840, 841,
842, 843, 844, 712, 845, 846, 847, 848, 849, 850,
851, 852, 852, 853, 852, 854, 855, 857, 858, 859,
860, 861, 862, 863, 864, 865, 866, 867, 868, 869,
870, 871, 873, 875, 876, 877, 878, 879, 880, 881,
883, 884, 885, 886, 887, 888, 889, 890, 891, 892,
893, 894, 895, 896, 897, 897, 898, 899, 900, 901,
902, 903, 904, 905, 907, 908, 909, 910, 911, 899,
899, 912, 913, 914, 916, 917, 918, 919, 920, 921,
916, 923, 924, 926, 927, 928, 916, 917, 929, 930,
931, 932, 933, 934, 916, 935, 936, 937, 939, 940,
941, 942, 943, 944, 946, 948, 949, 950, 951, 952,
953, 954, 955, 956, 957, 958, 959, 960, 961, 962,
964, 965, 966, 968, 969, 970, 971, 972, 973, 974,
975, 976, 977, 978, 979, 980, 981, 982, 983, 984,
985, 986, 987, 988, 989, 991, 992, 993, 994, 995,
996, 998, 995, 999, 1000, 1001, 1002, 1003, 1005, 1006,
1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016,
1017, 1021, 1023, 1024, 1025, 1029, 1030, 1031, 1032, 1031,
1033, 1034, 1035, 1037, 1038, 1039, 1040, 1041, 1045, 1046,
1047, 1048, 1049, 1053, 1054, 1055, 1056, 1057, 1058, 1059,
1060, 1061, 1062, 1063, 1064, 1065, 1068, 1069, 1070, 1071,
1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1083,
1084, 1086, 1087, 1088, 1089, 1090, 1091, 1088, 1092, 1093,
1084, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101, 1102,
1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1112, 1113,
1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121, 1122, 1123,
1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133,
1134, 1135, 1136, 1131, 1138, 1139, 1140, 1142, 1144, 1145,
1146, 1147, 1148, 1149, 1146, 1151, 1146, 1152, 1139, 1153,
1155, 1157, 1158, 1161, 1162, 1166, 1167, 1168, 1169, 1170,
1171, 1172, 1173, 1174, 1175, 1177, 1178, 1179, 1180, 1181,
1182, 1183, 1169, 1184, 1186, 1187, 1188, 1189, 1190, 1193,
1195, 1197, 1198, 1199, 1202, 1204, 1205, 1206, 1207, 1208,
1209, 1210, 1211, 1213, 1214, 1216, 1217, 1218, 1219, 1220,
1221, 1222, 1224, 1225, 1226, 1227, 1228, 1229, 1230, 1231,
1232, 1233, 1234, 1235, 1236, 1243, 1244, 1245, 1246, 1247,
1248, 1249, 1250, 1251, 1252, 1254, 1256, 1257, 1258, 1259,
1260, 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269,
1270, 1271, 1272, 1273, 1274, 1275, 1277, 1278, 1279, 1280,
1281, 1282, 1285, 1287, 1288, 1289, 1290, 1291, 1292, 1293,
1294, 1289, 1295, 1296, 1295, 1279, 1297, 1298, 1303, 1305,
1305, 1305, 1306, 1305, 1307, 1317, 1322, 1323, 1324, 1325,
1326, 1328, 1329, 1331, 1332, 1333, 1334, 1335, 1336, 1337,
1339, 1340, 1342, 1343, 1344, 1345, 1346, 1347, 1348, 1349,
1350, 1353, 1354, 1355, 1356, 1357, 1358, 1359, 1360, 1361,
1362, 1363, 1364, 1365, 1366, 1367, 1369, 1370, 1372, 1373,
1374, 1376, 1377, 1378, 1380, 1381, 1382, 1384, 1385, 1386,
1387, 1389, 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398,
1399, 1400, 1401, 1402, 1403, 1404, 1405, 1396, 1406, 1407,
1408, 1410, 1411, 1412, 1415, 1417, 1418, 1419, 1420, 1421,
1422, 1424, 1425, 1426, 1427, 1428, 1430, 1431, 1432, 1433,
1417, 1434, 1435, 1437, 1438, 1439, 1440, 1441, 1442, 1443,
1444, 1445, 1446, 1450, 1452, 1454, 1456, 1459, 1460, 1461,
1462, 1463, 1466, 1467, 1469, 1471, 1472, 1473, 1474, 1478,
1479, 1480, 1481, 1482, 1483, 1484, 1485, 1488, 1489, 1492,
1493, 1494, 1495, 1496, 1497, 1498, 1500, 1502, 1503, 1503,
1504, 1503, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1513,
1514, 1515, 1516, 1517, 1518, 1519, 1520, 1521, 1522, 1524,
1525, 1526, 1509, 1510, 1527, 1528, 1529, 1530, 1531, 1533,
1535, 1536, 1537, 1538, 1540, 1541, 1542, 1543, 1544, 1545,
1546, 1547, 1548, 1550, 1551, 1552, 1553, 1554, 1555, 1556,
1557, 1558, 1559, 1560, 1561, 1562, 1563, 1565, 1566, 1567,
1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, 1580,
1581, 1582, 1583, 1584, 1586, 1587, 1570, 1571, 1590, 1592,
1593, 1595, 1597, 1598, 1599, 1600, 1601, 1603, 1604, 1605,
1606, 1607, 1608, 1609, 1610, 1611, 1614, 1615, 1616, 1618,
1619, 1621, 1622, 1623, 1624, 1625, 1626, 1627, 1628, 1629,
1630, 1631, 1632, 1633, 1634, 1635, 1636, 1638, 1639, 1640,
1641, 1643, 1644, 1645, 1646, 1648, 1649, 1650, 1651, 1652,
1653, 1654, 1655, 1656, 1657, 1658, 1659, 1660, 1661, 1662,
1663, 1664, 1665, 1666, 1667, 1668, 1669, 1670, 1674, 1675,
1676, 1677, 1678, 1679, 1680, 1681, 1682, 1683, 1684, 1685,
1686, 1687, 1688, 1689, 1691, 1693, 1694, 1695, 1697, 1699,
1701, 1702, 1705, 1706, 1707, 1708, 1710, 1711, 1712, 1713,
1714, 1715, 1716, 1717, 1718, 1720, 1721, 1722, 1723, 1728,
1732, 1733, 1734, 1735, 1736, 1737, 1740, 1743, 1744, 1745,
1746, 1748, 1749, 1750, 1751, 1752, 1753, 1754, 1755, 1756,
1757, 1758, 1759, 1760, 1763, 1764, 1765, 1766, 1767, 1768,
1769, 1770, 1771, 1777, 1778, 1779, 1782, 1783, 1784, 1785,
1790, 1791, 1792, 1795, 1796, 1797, 1798, 1799, 1800, 1801,
1802, 1803, 1804, 1805, 1806, 1807, 1808, 1810, 1812, 1815,
1816, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1820, 1822,
1820, 1820, 1820, 1820, 1820, 1821, 1821, 1821, 1823, 1823,
1823, 1823, 1824, 1825, 1825, 1825, 1825, 1826, 1827, 1830,
1827, 1827, 1828, 810, 1828, 1829, 809, 1829, 1829, 808,
807, 806, 805, 804, 802, 801, 800, 798, 797, 796,
795, 794, 793, 792, 791, 790, 789, 788, 787, 786,
785, 784, 782, 781, 780, 779, 778, 776, 775, 774,
773, 772, 771, 770, 769, 768, 767, 766, 765, 763,
762, 761, 760, 759, 758, 756, 755, 754, 752, 751,
750, 749, 748, 747, 746, 745, 744, 742, 741, 740,
739, 738, 735, 734, 731, 729, 728, 727, 726, 725,
724, 723, 722, 720, 719, 718, 717, 715, 714, 711,
710, 709, 708, 707, 706, 705, 704, 703, 702, 701,
700, 699, 698, 697, 696, 695, 694, 693, 691, 690,
689, 688, 687, 686, 685, 684, 683, 682, 681, 680,
679, 678, 677, 676, 675, 673, 672, 671, 670, 669,
668, 667, 666, 665, 664, 663, 662, 661, 660, 656,
655, 654, 653, 652, 651, 650, 649, 647, 644, 643,
641, 640, 639, 638, 637, 634, 633, 631, 630, 629,
628, 627, 626, 625, 624, 620, 619, 618, 617, 616,
614, 613, 612, 611, 610, 609, 608, 607, 606, 605,
604, 603, 602, 601, 599, 598, 597, 596, 595, 594,
593, 592, 591, 590, 589, 587, 586, 584, 583, 582,
581, 580, 579, 578, 577, 575, 574, 573, 572, 571,
570, 568, 567, 566, 565, 564, 563, 562, 561, 560,
559, 558, 557, 556, 555, 554, 553, 552, 551, 550,
549, 548, 547, 545, 544, 543, 542, 541, 539, 537,
536, 535, 534, 533, 532, 531, 530, 529, 528, 527,
526, 522, 521, 520, 519, 518, 517, 515, 514, 513,
511, 510, 509, 508, 507, 506, 505, 504, 503, 502,
501, 500, 499, 498, 497, 496, 495, 493, 492, 491,
490, 489, 487, 486, 485, 484, 483, 482, 481, 480,
479, 478, 477, 474, 473, 472, 470, 468, 467, 465,
464, 461, 457, 454, 451, 450, 449, 445, 444, 443,
442, 441, 440, 439, 438, 437, 435, 434, 431, 430,
428, 427, 426, 425, 424, 420, 415, 413, 412, 410,
409, 408, 407, 406, 405, 404, 403, 402, 401, 400,
399, 396, 395, 393, 390, 388, 387, 386, 385, 384,
383, 382, 380, 376, 375, 374, 373, 371, 370, 369,
368, 367, 366, 363, 361, 360, 359, 357, 356, 355,
354, 353, 352, 351, 350, 348, 347, 345, 343, 342,
340, 339, 338, 336, 334, 333, 332, 331, 330, 329,
328, 327, 326, 325, 324, 323, 322, 321, 320, 318,
316, 314, 312, 311, 310, 309, 308, 307, 306, 305,
303, 302, 301, 300, 299, 297, 296, 294, 293, 292,
291, 288, 286, 284, 283, 282, 280, 278, 277, 276,
275, 274, 273, 272, 271, 270, 269, 268, 267, 266,
265, 264, 263, 262, 261, 260, 259, 257, 256, 254,
253, 252, 251, 250, 249, 248, 247, 246, 245, 244,
243, 242, 241, 240, 239, 238, 237, 236, 235, 233,
230, 229, 228, 224, 220, 217, 216, 213, 210, 209,
196, 193, 192, 174, 170, 160, 154, 153, 144, 139,
136, 112, 105, 79, 78, 73, 69, 57, 56, 55,
54, 52, 50, 45, 43, 41, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818,
1818, 1818, 1818, 1818, 1818, 1818
} ;
static yy_state_type yy_last_accepting_state;
static char *yy_last_accepting_cpos;
extern int yy_flex_debug;
int yy_flex_debug = 0;
/* The intent behind this definition is that it'll catch
* any uses of REJECT which flex missed.
*/
#define REJECT reject_used_but_not_detected
static int yy_more_flag = 0;
static int yy_more_len = 0;
#define yymore() ((yy_more_flag) = 1)
#define YY_MORE_ADJ (yy_more_len)
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "cftoken.l"
/* $NetBSD: cftoken.l,v 1.23 2011/02/02 15:21:34 vanhu Exp $ */
/* Id: cftoken.l,v 1.53 2006/08/22 18:17:17 manubsd Exp */
#line 6 "cftoken.l"
/*
* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 and 2003 WIDE Project.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the project nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "config.h"
#include <sys/types.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include PATH_IPSEC_H
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <limits.h>
#include <ctype.h>
#include <glob.h>
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "var.h"
#include "misc.h"
#include "vmbuf.h"
#include "plog.h"
#include "debug.h"
#include "algorithm.h"
#include "cfparse_proto.h"
#include "cftoken_proto.h"
#include "localconf.h"
#include "oakley.h"
#include "isakmp_var.h"
#include "isakmp.h"
#include "ipsec_doi.h"
#include "policy.h"
#include "proposal.h"
#include "remoteconf.h"
#ifdef GC
#include "gcmalloc.h"
#endif
#include "cfparse.h"
int yyerrorcount = 0;
#if defined(YIPS_DEBUG)
# define YYDB plog(LLV_DEBUG2, LOCATION, NULL, \
"begin <%d>%s\n", yy_start, yytext);
# define YYD { \
plog(LLV_DEBUG2, LOCATION, NULL, "<%d>%s", \
yy_start, loglevel >= LLV_DEBUG2 ? "\n" : ""); \
}
#else
# define YYDB
# define YYD
#endif /* defined(YIPS_DEBUG) */
#define MAX_INCLUDE_DEPTH 10
static struct include_stack {
char *path;
FILE *fp;
YY_BUFFER_STATE prevstate;
int lineno;
glob_t matches;
int matchon;
} incstack[MAX_INCLUDE_DEPTH];
static int incstackp = 0;
static int yy_first_time = 1;
/* common seciton */
/*octet (([01]?{digit}?{digit})|((2([0-4]{digit}))|(25[0-5]))) */
#line 1671 "cftoken.c"
#define INITIAL 0
#define S_INI 1
#define S_PRIV 2
#define S_PTH 3
#define S_LOG 4
#define S_PAD 5
#define S_LST 6
#define S_RTRY 7
#define S_CFG 8
#define S_LDAP 9
#define S_RAD 10
#define S_ALGST 11
#define S_ALGCL 12
#define S_SAINF 13
#define S_SAINFS 14
#define S_RMT 15
#define S_RMTS 16
#define S_RMTP 17
#define S_SA 18
#define S_GSSENC 19
#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
* down here because we want the user's section 1 to have been scanned first.
* The user has a chance to override it with an option.
*/
#include <unistd.h>
#endif
#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif
static int yy_init_globals (void );
/* Accessor methods to globals.
These are made visible to non-reentrant scanners for convenience. */
int yylex_destroy (void );
int yyget_debug (void );
void yyset_debug (int debug_flag );
YY_EXTRA_TYPE yyget_extra (void );
void yyset_extra (YY_EXTRA_TYPE user_defined );
FILE *yyget_in (void );
void yyset_in (FILE * in_str );
FILE *yyget_out (void );
void yyset_out (FILE * out_str );
int yyget_leng (void );
char *yyget_text (void );
int yyget_lineno (void );
void yyset_lineno (int line_number );
/* Macros after this point can all be overridden by user definitions in
* section 1.
*/
#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap (void );
#else
extern int yywrap (void );
#endif
#endif
static void yyunput (int c,char *buf_ptr );
#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int );
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * );
#endif
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void );
#else
static int input (void );
#endif
#endif
/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#ifdef __ia64__
/* On IA-64, the buffer size is 16k, not 8k */
#define YY_READ_BUF_SIZE 16384
#else
#define YY_READ_BUF_SIZE 8192
#endif /* __ia64__ */
#endif
/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
* we now use fwrite().
*/
#define ECHO do { if (fwrite( yytext, yyleng, 1, yyout )) {} } while (0)
#endif
/* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
* is returned in "result".
*/
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
{ \
int c = '*'; \
size_t n; \
for ( n = 0; n < max_size && \
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
buf[n] = (char) c; \
if ( c == '\n' ) \
buf[n++] = (char) c; \
if ( c == EOF && ferror( yyin ) ) \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
result = n; \
} \
else \
{ \
errno=0; \
while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
{ \
if( errno != EINTR) \
{ \
YY_FATAL_ERROR( "input in flex scanner failed" ); \
break; \
} \
errno=0; \
clearerr(yyin); \
} \
}\
\
#endif
/* No semi-colon after return; correct usage is to write "yyterminate();" -
* we don't want an extra ';' after the "return" because that will cause
* some compilers to complain about unreachable statements.
*/
#ifndef yyterminate
#define yyterminate() return YY_NULL
#endif
/* Number of entries by which start-condition stack grows. */
#ifndef YY_START_STACK_INCR
#define YY_START_STACK_INCR 25
#endif
/* Report a fatal error. */
#ifndef YY_FATAL_ERROR
#define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
#endif
/* end tables serialization structures and prototypes */
/* Default declaration of generated scanner - a define so the user can
* easily add parameters.
*/
#ifndef YY_DECL
#define YY_DECL_IS_OURS 1
extern int yylex (void);
#define YY_DECL int yylex (void)
#endif /* !YY_DECL */
/* Code executed at the beginning of each rule, after yytext and yyleng
* have been set up.
*/
#ifndef YY_USER_ACTION
#define YY_USER_ACTION
#endif
/* Code executed at the end of each rule. */
#ifndef YY_BREAK
#define YY_BREAK break;
#endif
#define YY_RULE_SETUP \
YY_USER_ACTION
/** The main scanner function which does all the work.
*/
YY_DECL
{
register yy_state_type yy_current_state;
register char *yy_cp, *yy_bp;
register int yy_act;
#line 142 "cftoken.l"
if (yy_first_time) {
BEGIN S_INI;
yy_first_time = 0;
}
/* privsep */
#line 1887 "cftoken.c"
if ( !(yy_init) )
{
(yy_init) = 1;
#ifdef YY_USER_INIT
YY_USER_INIT;
#endif
if ( ! (yy_start) )
(yy_start) = 1; /* first start state */
if ( ! yyin )
yyin = stdin;
if ( ! yyout )
yyout = stdout;
if ( ! YY_CURRENT_BUFFER ) {
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE );
}
yy_load_buffer_state( );
}
while ( 1 ) /* loops until end-of-file is reached */
{
(yy_more_len) = 0;
if ( (yy_more_flag) )
{
(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
(yy_more_flag) = 0;
}
yy_cp = (yy_c_buf_p);
/* Support of yytext. */
*yy_cp = (yy_hold_char);
/* yy_bp points to the position in yy_ch_buf of the start of
* the current run.
*/
yy_bp = yy_cp;
yy_current_state = (yy_start);
yy_match:
do
{
register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1819 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
++yy_cp;
}
while ( yy_base[yy_current_state] != 2197 );
yy_find_action:
yy_act = yy_accept[yy_current_state];
if ( yy_act == 0 )
{ /* have to back up */
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
yy_act = yy_accept[yy_current_state];
}
YY_DO_BEFORE_ACTION;
do_action: /* This label is used only to access EOF actions. */
switch ( yy_act )
{ /* beginning of action switch */
case 0: /* must back up */
/* undo the effects of YY_DO_BEFORE_ACTION */
*yy_cp = (yy_hold_char);
yy_cp = (yy_last_accepting_cpos);
yy_current_state = (yy_last_accepting_state);
goto yy_find_action;
case 1:
YY_RULE_SETUP
#line 151 "cftoken.l"
{ BEGIN S_PRIV; YYDB; return(PRIVSEP); }
YY_BREAK
case 2:
YY_RULE_SETUP
#line 152 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 3:
YY_RULE_SETUP
#line 153 "cftoken.l"
{ YYD; return(USER); }
YY_BREAK
case 4:
YY_RULE_SETUP
#line 154 "cftoken.l"
{ YYD; return(GROUP); }
YY_BREAK
case 5:
YY_RULE_SETUP
#line 155 "cftoken.l"
{ YYD; return(CHROOT); }
YY_BREAK
case 6:
YY_RULE_SETUP
#line 156 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
/* path */
case 7:
YY_RULE_SETUP
#line 159 "cftoken.l"
{ BEGIN S_PTH; YYDB; return(PATH); }
YY_BREAK
case 8:
YY_RULE_SETUP
#line 160 "cftoken.l"
{ YYD; yylval.num = LC_PATHTYPE_INCLUDE;
return(PATHTYPE); }
YY_BREAK
case 9:
YY_RULE_SETUP
#line 162 "cftoken.l"
{ YYD; yylval.num = LC_PATHTYPE_PSK;
return(PATHTYPE); }
YY_BREAK
case 10:
YY_RULE_SETUP
#line 164 "cftoken.l"
{ YYD; yylval.num = LC_PATHTYPE_CERT;
return(PATHTYPE); }
YY_BREAK
case 11:
YY_RULE_SETUP
#line 166 "cftoken.l"
{ YYD; yylval.num = LC_PATHTYPE_SCRIPT;
return(PATHTYPE); }
YY_BREAK
case 12:
YY_RULE_SETUP
#line 168 "cftoken.l"
{ YYD; yylval.num = LC_PATHTYPE_BACKUPSA;
return(PATHTYPE); }
YY_BREAK
case 13:
YY_RULE_SETUP
#line 170 "cftoken.l"
{ YYD; yylval.num = LC_PATHTYPE_PIDFILE;
return(PATHTYPE); }
YY_BREAK
case 14:
YY_RULE_SETUP
#line 172 "cftoken.l"
{ BEGIN S_INI; YYDB; return(EOS); }
YY_BREAK
/* include */
case 15:
YY_RULE_SETUP
#line 175 "cftoken.l"
{ YYDB; return(INCLUDE); }
YY_BREAK
/* pfkey_buffer */
case 16:
YY_RULE_SETUP
#line 178 "cftoken.l"
{ YYDB; return(PFKEY_BUFFER); }
YY_BREAK
/* special */
case 17:
YY_RULE_SETUP
#line 181 "cftoken.l"
{ YYDB; return(COMPLEX_BUNDLE); }
YY_BREAK
/* logging */
case 18:
YY_RULE_SETUP
#line 184 "cftoken.l"
{ BEGIN S_LOG; YYDB; return(LOGGING); }
YY_BREAK
case 19:
YY_RULE_SETUP
#line 185 "cftoken.l"
{ YYD; yylval.num = LLV_ERROR; return(LOGLEV); }
YY_BREAK
case 20:
YY_RULE_SETUP
#line 186 "cftoken.l"
{ YYD; yylval.num = LLV_WARNING; return(LOGLEV); }
YY_BREAK
case 21:
YY_RULE_SETUP
#line 187 "cftoken.l"
{ YYD; yylval.num = LLV_NOTIFY; return(LOGLEV); }
YY_BREAK
case 22:
YY_RULE_SETUP
#line 188 "cftoken.l"
{ YYD; yylval.num = LLV_INFO; return(LOGLEV); }
YY_BREAK
case 23:
YY_RULE_SETUP
#line 189 "cftoken.l"
{ YYD; yylval.num = LLV_DEBUG; return(LOGLEV); }
YY_BREAK
case 24:
YY_RULE_SETUP
#line 190 "cftoken.l"
{ YYD; yylval.num = LLV_DEBUG2; return(LOGLEV); }
YY_BREAK
case 25:
YY_RULE_SETUP
#line 191 "cftoken.l"
{ BEGIN S_INI; return(EOS); }
YY_BREAK
/* padding */
case 26:
YY_RULE_SETUP
#line 194 "cftoken.l"
{ BEGIN S_PAD; YYDB; return(PADDING); }
YY_BREAK
case 27:
YY_RULE_SETUP
#line 195 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 28:
YY_RULE_SETUP
#line 196 "cftoken.l"
{ YYD; return(PAD_RANDOMIZE); }
YY_BREAK
case 29:
YY_RULE_SETUP
#line 197 "cftoken.l"
{ YYD; return(PAD_RANDOMIZELEN); }
YY_BREAK
case 30:
YY_RULE_SETUP
#line 198 "cftoken.l"
{ YYD; return(PAD_MAXLEN); }
YY_BREAK
case 31:
YY_RULE_SETUP
#line 199 "cftoken.l"
{ YYD; return(PAD_STRICT); }
YY_BREAK
case 32:
YY_RULE_SETUP
#line 200 "cftoken.l"
{ YYD; return(PAD_EXCLTAIL); }
YY_BREAK
case 33:
YY_RULE_SETUP
#line 201 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
/* listen */
case 34:
YY_RULE_SETUP
#line 204 "cftoken.l"
{ BEGIN S_LST; YYDB; return(LISTEN); }
YY_BREAK
case 35:
YY_RULE_SETUP
#line 205 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 36:
YY_RULE_SETUP
#line 206 "cftoken.l"
{ YYD; return(X_ISAKMP); }
YY_BREAK
case 37:
YY_RULE_SETUP
#line 207 "cftoken.l"
{ YYD; return(X_ISAKMP_NATT); }
YY_BREAK
case 38:
YY_RULE_SETUP
#line 208 "cftoken.l"
{ YYD; return(X_ADMIN); }
YY_BREAK
case 39:
YY_RULE_SETUP
#line 209 "cftoken.l"
{ YYD; return(ADMINSOCK); }
YY_BREAK
case 40:
YY_RULE_SETUP
#line 210 "cftoken.l"
{ YYD; return(DISABLED); }
YY_BREAK
case 41:
YY_RULE_SETUP
#line 211 "cftoken.l"
{ YYD; return(STRICT_ADDRESS); }
YY_BREAK
case 42:
YY_RULE_SETUP
#line 212 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
/* radius config */
case 43:
YY_RULE_SETUP
#line 215 "cftoken.l"
{ BEGIN S_RAD; YYDB; return(RADCFG); }
YY_BREAK
case 44:
YY_RULE_SETUP
#line 216 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 45:
YY_RULE_SETUP
#line 217 "cftoken.l"
{ YYD; return(RAD_AUTH); }
YY_BREAK
case 46:
YY_RULE_SETUP
#line 218 "cftoken.l"
{ YYD; return(RAD_ACCT); }
YY_BREAK
case 47:
YY_RULE_SETUP
#line 219 "cftoken.l"
{ YYD; return(RAD_TIMEOUT); }
YY_BREAK
case 48:
YY_RULE_SETUP
#line 220 "cftoken.l"
{ YYD; return(RAD_RETRIES); }
YY_BREAK
case 49:
YY_RULE_SETUP
#line 221 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
/* ldap config */
case 50:
YY_RULE_SETUP
#line 224 "cftoken.l"
{ BEGIN S_LDAP; YYDB; return(LDAPCFG); }
YY_BREAK
case 51:
YY_RULE_SETUP
#line 225 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 52:
YY_RULE_SETUP
#line 226 "cftoken.l"
{ YYD; return(LDAP_PVER); }
YY_BREAK
case 53:
YY_RULE_SETUP
#line 227 "cftoken.l"
{ YYD; return(LDAP_HOST); }
YY_BREAK
case 54:
YY_RULE_SETUP
#line 228 "cftoken.l"
{ YYD; return(LDAP_PORT); }
YY_BREAK
case 55:
YY_RULE_SETUP
#line 229 "cftoken.l"
{ YYD; return(LDAP_BASE); }
YY_BREAK
case 56:
YY_RULE_SETUP
#line 230 "cftoken.l"
{ YYD; return(LDAP_SUBTREE); }
YY_BREAK
case 57:
YY_RULE_SETUP
#line 231 "cftoken.l"
{ YYD; return(LDAP_BIND_DN); }
YY_BREAK
case 58:
YY_RULE_SETUP
#line 232 "cftoken.l"
{ YYD; return(LDAP_BIND_PW); }
YY_BREAK
case 59:
YY_RULE_SETUP
#line 233 "cftoken.l"
{ YYD; return(LDAP_ATTR_USER); }
YY_BREAK
case 60:
YY_RULE_SETUP
#line 234 "cftoken.l"
{ YYD; return(LDAP_ATTR_ADDR); }
YY_BREAK
case 61:
YY_RULE_SETUP
#line 235 "cftoken.l"
{ YYD; return(LDAP_ATTR_MASK); }
YY_BREAK
case 62:
YY_RULE_SETUP
#line 236 "cftoken.l"
{ YYD; return(LDAP_ATTR_GROUP); }
YY_BREAK
case 63:
YY_RULE_SETUP
#line 237 "cftoken.l"
{ YYD; return(LDAP_ATTR_MEMBER); }
YY_BREAK
case 64:
YY_RULE_SETUP
#line 238 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
/* mode_cfg */
case 65:
YY_RULE_SETUP
#line 241 "cftoken.l"
{ BEGIN S_CFG; YYDB; return(MODECFG); }
YY_BREAK
case 66:
YY_RULE_SETUP
#line 242 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 67:
YY_RULE_SETUP
#line 243 "cftoken.l"
{ YYD; return(CFG_NET4); }
YY_BREAK
case 68:
YY_RULE_SETUP
#line 244 "cftoken.l"
{ YYD; return(CFG_MASK4); }
YY_BREAK
case 69:
YY_RULE_SETUP
#line 245 "cftoken.l"
{ YYD; return(CFG_DNS4); }
YY_BREAK
case 70:
YY_RULE_SETUP
#line 246 "cftoken.l"
{ YYD; return(CFG_NBNS4); }
YY_BREAK
case 71:
YY_RULE_SETUP
#line 247 "cftoken.l"
{ YYD; return(CFG_NBNS4); }
YY_BREAK
case 72:
YY_RULE_SETUP
#line 248 "cftoken.l"
{ YYD; return(CFG_DEFAULT_DOMAIN); }
YY_BREAK
case 73:
YY_RULE_SETUP
#line 249 "cftoken.l"
{ YYD; return(CFG_AUTH_SOURCE); }
YY_BREAK
case 74:
YY_RULE_SETUP
#line 250 "cftoken.l"
{ YYD; return(CFG_AUTH_GROUPS); }
YY_BREAK
case 75:
YY_RULE_SETUP
#line 251 "cftoken.l"
{ YYD; return(CFG_GROUP_SOURCE); }
YY_BREAK
case 76:
YY_RULE_SETUP
#line 252 "cftoken.l"
{ YYD; return(CFG_CONF_SOURCE); }
YY_BREAK
case 77:
YY_RULE_SETUP
#line 253 "cftoken.l"
{ YYD; return(CFG_ACCOUNTING); }
YY_BREAK
case 78:
YY_RULE_SETUP
#line 254 "cftoken.l"
{ YYD; return(CFG_SYSTEM); }
YY_BREAK
case 79:
YY_RULE_SETUP
#line 255 "cftoken.l"
{ YYD; return(CFG_LOCAL); }
YY_BREAK
case 80:
YY_RULE_SETUP
#line 256 "cftoken.l"
{ YYD; return(CFG_NONE); }
YY_BREAK
case 81:
YY_RULE_SETUP
#line 257 "cftoken.l"
{ YYD; return(CFG_RADIUS); }
YY_BREAK
case 82:
YY_RULE_SETUP
#line 258 "cftoken.l"
{ YYD; return(CFG_PAM); }
YY_BREAK
case 83:
YY_RULE_SETUP
#line 259 "cftoken.l"
{ YYD; return(CFG_LDAP); }
YY_BREAK
case 84:
YY_RULE_SETUP
#line 260 "cftoken.l"
{ YYD; return(CFG_POOL_SIZE); }
YY_BREAK
case 85:
YY_RULE_SETUP
#line 261 "cftoken.l"
{ YYD; return(CFG_MOTD); }
YY_BREAK
case 86:
YY_RULE_SETUP
#line 262 "cftoken.l"
{ YYD; return(CFG_AUTH_THROTTLE); }
YY_BREAK
case 87:
YY_RULE_SETUP
#line 263 "cftoken.l"
{ YYD; return(CFG_SPLIT_NETWORK); }
YY_BREAK
case 88:
YY_RULE_SETUP
#line 264 "cftoken.l"
{ YYD; return(CFG_SPLIT_LOCAL); }
YY_BREAK
case 89:
YY_RULE_SETUP
#line 265 "cftoken.l"
{ YYD; return(CFG_SPLIT_INCLUDE); }
YY_BREAK
case 90:
YY_RULE_SETUP
#line 266 "cftoken.l"
{ YYD; return(CFG_SPLIT_DNS); }
YY_BREAK
case 91:
YY_RULE_SETUP
#line 267 "cftoken.l"
{ YYD; return(CFG_PFS_GROUP); }
YY_BREAK
case 92:
YY_RULE_SETUP
#line 268 "cftoken.l"
{ YYD; return(CFG_SAVE_PASSWD); }
YY_BREAK
case 93:
YY_RULE_SETUP
#line 269 "cftoken.l"
{ YYD; return(COMMA); }
YY_BREAK
case 94:
YY_RULE_SETUP
#line 270 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
/* timer */
case 95:
YY_RULE_SETUP
#line 273 "cftoken.l"
{ BEGIN S_RTRY; YYDB; return(RETRY); }
YY_BREAK
case 96:
YY_RULE_SETUP
#line 274 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 97:
YY_RULE_SETUP
#line 275 "cftoken.l"
{ YYD; return(RETRY_COUNTER); }
YY_BREAK
case 98:
YY_RULE_SETUP
#line 276 "cftoken.l"
{ YYD; return(RETRY_INTERVAL); }
YY_BREAK
case 99:
YY_RULE_SETUP
#line 277 "cftoken.l"
{ YYD; return(RETRY_PERSEND); }
YY_BREAK
case 100:
YY_RULE_SETUP
#line 278 "cftoken.l"
{ YYD; return(RETRY_PHASE1); }
YY_BREAK
case 101:
YY_RULE_SETUP
#line 279 "cftoken.l"
{ YYD; return(RETRY_PHASE2); }
YY_BREAK
case 102:
YY_RULE_SETUP
#line 280 "cftoken.l"
{ YYD; return(NATT_KA); }
YY_BREAK
case 103:
YY_RULE_SETUP
#line 281 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
/* sainfo */
case 104:
YY_RULE_SETUP
#line 284 "cftoken.l"
{ BEGIN S_SAINF; YYDB; return(SAINFO); }
YY_BREAK
case 105:
YY_RULE_SETUP
#line 285 "cftoken.l"
{ YYD; return(ANONYMOUS); }
YY_BREAK
case 106:
YY_RULE_SETUP
#line 286 "cftoken.l"
{ YYD; return(CLIENTADDR); }
YY_BREAK
case 107:
YY_RULE_SETUP
#line 287 "cftoken.l"
{ YYD; return(PORTANY); }
YY_BREAK
case 108:
YY_RULE_SETUP
#line 288 "cftoken.l"
{ YYD; return(ANY); }
YY_BREAK
case 109:
YY_RULE_SETUP
#line 289 "cftoken.l"
{ YYD; return(FROM); }
YY_BREAK
case 110:
YY_RULE_SETUP
#line 290 "cftoken.l"
{ YYD; return(GROUP); }
YY_BREAK
/* sainfo spec */
case 111:
YY_RULE_SETUP
#line 292 "cftoken.l"
{ BEGIN S_SAINFS; return(BOC); }
YY_BREAK
case 112:
YY_RULE_SETUP
#line 293 "cftoken.l"
{ BEGIN S_INI; return(EOS); }
YY_BREAK
case 113:
YY_RULE_SETUP
#line 294 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
case 114:
YY_RULE_SETUP
#line 295 "cftoken.l"
{ YYD; return(PFS_GROUP); }
YY_BREAK
case 115:
YY_RULE_SETUP
#line 296 "cftoken.l"
{ YYD; return(REMOTEID); }
YY_BREAK
case 116:
YY_RULE_SETUP
#line 297 "cftoken.l"
{ YYD; return(MY_IDENTIFIER); }
YY_BREAK
case 117:
YY_RULE_SETUP
#line 298 "cftoken.l"
{ YYD; return(LIFETIME); }
YY_BREAK
case 118:
YY_RULE_SETUP
#line 299 "cftoken.l"
{ YYD; return(LIFETYPE_TIME); }
YY_BREAK
case 119:
YY_RULE_SETUP
#line 300 "cftoken.l"
{ YYD; return(LIFETYPE_BYTE); }
YY_BREAK
case 120:
YY_RULE_SETUP
#line 301 "cftoken.l"
{ YYD; yylval.num = algclass_ipsec_enc; return(ALGORITHM_CLASS); }
YY_BREAK
case 121:
YY_RULE_SETUP
#line 302 "cftoken.l"
{ YYD; yylval.num = algclass_ipsec_auth; return(ALGORITHM_CLASS); }
YY_BREAK
case 122:
YY_RULE_SETUP
#line 303 "cftoken.l"
{ YYD; yylval.num = algclass_ipsec_comp; return(ALGORITHM_CLASS); }
YY_BREAK
case 123:
YY_RULE_SETUP
#line 304 "cftoken.l"
{ YYD; return(COMMA); }
YY_BREAK
/* remote */
case 124:
YY_RULE_SETUP
#line 307 "cftoken.l"
{ BEGIN S_RMT; YYDB; return(REMOTE); }
YY_BREAK
case 125:
YY_RULE_SETUP
#line 308 "cftoken.l"
{ YYD; return(ANONYMOUS); }
YY_BREAK
case 126:
YY_RULE_SETUP
#line 309 "cftoken.l"
{ YYD; return(INHERIT); }
YY_BREAK
/* remote spec */
case 127:
YY_RULE_SETUP
#line 311 "cftoken.l"
{ BEGIN S_RMTS; return(BOC); }
YY_BREAK
case 128:
YY_RULE_SETUP
#line 312 "cftoken.l"
{ BEGIN S_INI; return(EOC); }
YY_BREAK
case 129:
YY_RULE_SETUP
#line 313 "cftoken.l"
{ YYD; return(REMOTE_ADDRESS); }
YY_BREAK
case 130:
YY_RULE_SETUP
#line 314 "cftoken.l"
{ YYD; return(EXCHANGE_MODE); }
YY_BREAK
case 131:
YY_RULE_SETUP
#line 315 "cftoken.l"
{ YYD; /* XXX ignored, but to be handled. */ ; }
YY_BREAK
case 132:
YY_RULE_SETUP
#line 316 "cftoken.l"
{ YYD; yylval.num = ISAKMP_ETYPE_BASE; return(EXCHANGETYPE); }
YY_BREAK
case 133:
YY_RULE_SETUP
#line 317 "cftoken.l"
{ YYD; yylval.num = ISAKMP_ETYPE_IDENT; return(EXCHANGETYPE); }
YY_BREAK
case 134:
YY_RULE_SETUP
#line 318 "cftoken.l"
{ YYD; yylval.num = ISAKMP_ETYPE_AGG; return(EXCHANGETYPE); }
YY_BREAK
case 135:
YY_RULE_SETUP
#line 319 "cftoken.l"
{ YYD; return(DOI); }
YY_BREAK
case 136:
YY_RULE_SETUP
#line 320 "cftoken.l"
{ YYD; yylval.num = IPSEC_DOI; return(DOITYPE); }
YY_BREAK
case 137:
YY_RULE_SETUP
#line 321 "cftoken.l"
{ YYD; return(SITUATION); }
YY_BREAK
case 138:
YY_RULE_SETUP
#line 322 "cftoken.l"
{ YYD; yylval.num = IPSECDOI_SIT_IDENTITY_ONLY; return(SITUATIONTYPE); }
YY_BREAK
case 139:
YY_RULE_SETUP
#line 323 "cftoken.l"
{ YYD; yylval.num = IPSECDOI_SIT_SECRECY; return(SITUATIONTYPE); }
YY_BREAK
case 140:
YY_RULE_SETUP
#line 324 "cftoken.l"
{ YYD; yylval.num = IPSECDOI_SIT_INTEGRITY; return(SITUATIONTYPE); }
YY_BREAK
case 141:
YY_RULE_SETUP
#line 325 "cftoken.l"
{ YYD; return(MY_IDENTIFIER); }
YY_BREAK
case 142:
YY_RULE_SETUP
#line 326 "cftoken.l"
{ YYD; return(XAUTH_LOGIN); /* formerly identifier type login */ }
YY_BREAK
case 143:
YY_RULE_SETUP
#line 327 "cftoken.l"
{ YYD; return(PEERS_IDENTIFIER); }
YY_BREAK
case 144:
YY_RULE_SETUP
#line 328 "cftoken.l"
{ YYD; return(VERIFY_IDENTIFIER); }
YY_BREAK
case 145:
YY_RULE_SETUP
#line 329 "cftoken.l"
{ YYD; return(CERTIFICATE_TYPE); }
YY_BREAK
case 146:
YY_RULE_SETUP
#line 330 "cftoken.l"
{ YYD; return(CA_TYPE); }
YY_BREAK
case 147:
YY_RULE_SETUP
#line 331 "cftoken.l"
{ YYD; yylval.num = ISAKMP_CERT_X509SIGN; return(CERT_X509); }
YY_BREAK
case 148:
YY_RULE_SETUP
#line 332 "cftoken.l"
{ YYD; yylval.num = ISAKMP_CERT_PLAINRSA; return(CERT_PLAINRSA); }
YY_BREAK
case 149:
YY_RULE_SETUP
#line 333 "cftoken.l"
{ YYD; return(PEERS_CERTFILE); }
YY_BREAK
case 150:
YY_RULE_SETUP
#line 334 "cftoken.l"
{ YYD; return(DNSSEC); }
YY_BREAK
case 151:
YY_RULE_SETUP
#line 335 "cftoken.l"
{ YYD; return(VERIFY_CERT); }
YY_BREAK
case 152:
YY_RULE_SETUP
#line 336 "cftoken.l"
{ YYD; return(SEND_CERT); }
YY_BREAK
case 153:
YY_RULE_SETUP
#line 337 "cftoken.l"
{ YYD; return(SEND_CR); }
YY_BREAK
case 154:
YY_RULE_SETUP
#line 338 "cftoken.l"
{ YYD; return(MATCH_EMPTY_CR); }
YY_BREAK
case 155:
YY_RULE_SETUP
#line 339 "cftoken.l"
{ YYD; return(DH_GROUP); }
YY_BREAK
case 156:
YY_RULE_SETUP
#line 340 "cftoken.l"
{ YYD; return(NONCE_SIZE); }
YY_BREAK
case 157:
YY_RULE_SETUP
#line 341 "cftoken.l"
{ YYD; return(GENERATE_POLICY); }
YY_BREAK
case 158:
YY_RULE_SETUP
#line 342 "cftoken.l"
{ YYD; yylval.num = GENERATE_POLICY_UNIQUE; return(GENERATE_LEVEL); }
YY_BREAK
case 159:
YY_RULE_SETUP
#line 343 "cftoken.l"
{ YYD; yylval.num = GENERATE_POLICY_REQUIRE; return(GENERATE_LEVEL); }
YY_BREAK
case 160:
YY_RULE_SETUP
#line 344 "cftoken.l"
{ YYD; return(SUPPORT_PROXY); }
YY_BREAK
case 161:
YY_RULE_SETUP
#line 345 "cftoken.l"
{ YYD; return(INITIAL_CONTACT); }
YY_BREAK
case 162:
YY_RULE_SETUP
#line 346 "cftoken.l"
{ YYD; return(NAT_TRAVERSAL); }
YY_BREAK
case 163:
YY_RULE_SETUP
#line 347 "cftoken.l"
{ YYD; return(REMOTE_FORCE_LEVEL); }
YY_BREAK
case 164:
YY_RULE_SETUP
#line 348 "cftoken.l"
{ YYD; return(PROPOSAL_CHECK); }
YY_BREAK
case 165:
YY_RULE_SETUP
#line 349 "cftoken.l"
{ YYD; yylval.num = PROP_CHECK_OBEY; return(PROPOSAL_CHECK_LEVEL); }
YY_BREAK
case 166:
YY_RULE_SETUP
#line 350 "cftoken.l"
{ YYD; yylval.num = PROP_CHECK_STRICT; return(PROPOSAL_CHECK_LEVEL); }
YY_BREAK
case 167:
YY_RULE_SETUP
#line 351 "cftoken.l"
{ YYD; yylval.num = PROP_CHECK_EXACT; return(PROPOSAL_CHECK_LEVEL); }
YY_BREAK
case 168:
YY_RULE_SETUP
#line 352 "cftoken.l"
{ YYD; yylval.num = PROP_CHECK_CLAIM; return(PROPOSAL_CHECK_LEVEL); }
YY_BREAK
case 169:
YY_RULE_SETUP
#line 353 "cftoken.l"
{ YYD; return(KEEPALIVE); }
YY_BREAK
case 170:
YY_RULE_SETUP
#line 354 "cftoken.l"
{ YYD; return(PASSIVE); }
YY_BREAK
case 171:
YY_RULE_SETUP
#line 355 "cftoken.l"
{ YYD; return(LIFETIME); }
YY_BREAK
case 172:
YY_RULE_SETUP
#line 356 "cftoken.l"
{ YYD; return(LIFETYPE_TIME); }
YY_BREAK
case 173:
YY_RULE_SETUP
#line 357 "cftoken.l"
{ YYD; return(LIFETYPE_BYTE); }
YY_BREAK
case 174:
YY_RULE_SETUP
#line 358 "cftoken.l"
{ YYD; return(DPD); }
YY_BREAK
case 175:
YY_RULE_SETUP
#line 359 "cftoken.l"
{ YYD; return(DPD_DELAY); }
YY_BREAK
case 176:
YY_RULE_SETUP
#line 360 "cftoken.l"
{ YYD; return(DPD_RETRY); }
YY_BREAK
case 177:
YY_RULE_SETUP
#line 361 "cftoken.l"
{ YYD; return(DPD_MAXFAIL); }
YY_BREAK
case 178:
YY_RULE_SETUP
#line 362 "cftoken.l"
{ YYD; return(PH1ID); }
YY_BREAK
case 179:
YY_RULE_SETUP
#line 363 "cftoken.l"
{ YYD; return(IKE_FRAG); }
YY_BREAK
case 180:
YY_RULE_SETUP
#line 364 "cftoken.l"
{ YYD; return(ESP_FRAG); }
YY_BREAK
case 181:
YY_RULE_SETUP
#line 365 "cftoken.l"
{ YYD; return(SCRIPT); }
YY_BREAK
case 182:
YY_RULE_SETUP
#line 366 "cftoken.l"
{ YYD; return(PHASE1_UP); }
YY_BREAK
case 183:
YY_RULE_SETUP
#line 367 "cftoken.l"
{ YYD; return(PHASE1_DOWN); }
YY_BREAK
case 184:
YY_RULE_SETUP
#line 368 "cftoken.l"
{ YYD; return(PHASE1_DEAD); }
YY_BREAK
case 185:
YY_RULE_SETUP
#line 369 "cftoken.l"
{ YYD; return(MODE_CFG); }
YY_BREAK
case 186:
YY_RULE_SETUP
#line 370 "cftoken.l"
{ YYD; return(WEAK_PHASE1_CHECK); }
YY_BREAK
case 187:
YY_RULE_SETUP
#line 371 "cftoken.l"
{ YYD; return(REKEY); }
YY_BREAK
/* remote proposal */
case 188:
YY_RULE_SETUP
#line 373 "cftoken.l"
{ BEGIN S_RMTP; YYDB; return(PROPOSAL); }
YY_BREAK
case 189:
YY_RULE_SETUP
#line 374 "cftoken.l"
{ return(BOC); }
YY_BREAK
case 190:
YY_RULE_SETUP
#line 375 "cftoken.l"
{ BEGIN S_RMTS; return(EOC); }
YY_BREAK
case 191:
YY_RULE_SETUP
#line 376 "cftoken.l"
{ YYD; return(LIFETIME); }
YY_BREAK
case 192:
YY_RULE_SETUP
#line 377 "cftoken.l"
{ YYD; return(LIFETYPE_TIME); }
YY_BREAK
case 193:
YY_RULE_SETUP
#line 378 "cftoken.l"
{ YYD; return(LIFETYPE_BYTE); }
YY_BREAK
case 194:
YY_RULE_SETUP
#line 379 "cftoken.l"
{ YYD; yylval.num = algclass_isakmp_enc; return(ALGORITHM_CLASS); }
YY_BREAK
case 195:
YY_RULE_SETUP
#line 380 "cftoken.l"
{ YYD; yylval.num = algclass_isakmp_ameth; return(ALGORITHM_CLASS); }
YY_BREAK
case 196:
YY_RULE_SETUP
#line 381 "cftoken.l"
{ YYD; yylval.num = algclass_isakmp_hash; return(ALGORITHM_CLASS); }
YY_BREAK
case 197:
YY_RULE_SETUP
#line 382 "cftoken.l"
{ YYD; return(DH_GROUP); }
YY_BREAK
case 198:
YY_RULE_SETUP
#line 383 "cftoken.l"
{ YYD; return(GSS_ID); }
YY_BREAK
case 199:
YY_RULE_SETUP
#line 384 "cftoken.l"
{ YYD; return(GSS_ID); } /* for back compatibility */
YY_BREAK
/* GSS ID encoding type (global) */
case 200:
YY_RULE_SETUP
#line 387 "cftoken.l"
{ BEGIN S_GSSENC; YYDB; return(GSS_ID_ENC); }
YY_BREAK
case 201:
YY_RULE_SETUP
#line 388 "cftoken.l"
{ YYD; yylval.num = LC_GSSENC_LATIN1;
return(GSS_ID_ENCTYPE); }
YY_BREAK
case 202:
YY_RULE_SETUP
#line 390 "cftoken.l"
{ YYD; yylval.num = LC_GSSENC_UTF16LE;
return(GSS_ID_ENCTYPE); }
YY_BREAK
case 203:
YY_RULE_SETUP
#line 392 "cftoken.l"
{ BEGIN S_INI; YYDB; return(EOS); }
YY_BREAK
/* parameter */
case 204:
YY_RULE_SETUP
#line 395 "cftoken.l"
{ YYD; yylval.num = TRUE; return(SWITCH); }
YY_BREAK
case 205:
YY_RULE_SETUP
#line 396 "cftoken.l"
{ YYD; yylval.num = FALSE; return(SWITCH); }
YY_BREAK
/* prefix */
case 206:
YY_RULE_SETUP
#line 399 "cftoken.l"
{
YYD;
yytext++;
yylval.num = atoi(yytext);
return(PREFIX);
}
YY_BREAK
/* port number */
case 207:
YY_RULE_SETUP
#line 407 "cftoken.l"
{
char *p = yytext;
YYD;
while (*++p != ']') ;
*p = 0;
yytext++;
yylval.num = atoi(yytext);
return(PORT);
}
YY_BREAK
/* address range */
case 208:
YY_RULE_SETUP
#line 418 "cftoken.l"
{
YYD;
yytext++;
yylval.val = vmalloc(yyleng + 1);
if (yylval.val == NULL) {
yyerror("vmalloc failed");
return -1;
}
memcpy(yylval.val->v, yytext, yylval.val->l);
return(ADDRRANGE);
}
YY_BREAK
/* upper protocol */
case 209:
YY_RULE_SETUP
#line 431 "cftoken.l"
{ YYD; yylval.num = IPPROTO_ESP; return(UL_PROTO); }
YY_BREAK
case 210:
YY_RULE_SETUP
#line 432 "cftoken.l"
{ YYD; yylval.num = IPPROTO_AH; return(UL_PROTO); }
YY_BREAK
case 211:
YY_RULE_SETUP
#line 433 "cftoken.l"
{ YYD; yylval.num = IPPROTO_IPCOMP; return(UL_PROTO); }
YY_BREAK
case 212:
YY_RULE_SETUP
#line 434 "cftoken.l"
{ YYD; yylval.num = IPPROTO_ICMP; return(UL_PROTO); }
YY_BREAK
case 213:
YY_RULE_SETUP
#line 435 "cftoken.l"
{ YYD; yylval.num = IPPROTO_ICMPV6; return(UL_PROTO); }
YY_BREAK
case 214:
YY_RULE_SETUP
#line 436 "cftoken.l"
{ YYD; yylval.num = IPPROTO_TCP; return(UL_PROTO); }
YY_BREAK
case 215:
YY_RULE_SETUP
#line 437 "cftoken.l"
{ YYD; yylval.num = IPPROTO_UDP; return(UL_PROTO); }
YY_BREAK
case 216:
YY_RULE_SETUP
#line 438 "cftoken.l"
{ YYD; yylval.num = IPPROTO_GRE; return(UL_PROTO); }
YY_BREAK
/* algorithm type */
case 217:
YY_RULE_SETUP
#line 441 "cftoken.l"
{ YYD; yylval.num = algtype_des_iv64; return(ALGORITHMTYPE); }
YY_BREAK
case 218:
YY_RULE_SETUP
#line 442 "cftoken.l"
{ YYD; yylval.num = algtype_des; return(ALGORITHMTYPE); }
YY_BREAK
case 219:
YY_RULE_SETUP
#line 443 "cftoken.l"
{ YYD; yylval.num = algtype_3des; return(ALGORITHMTYPE); }
YY_BREAK
case 220:
YY_RULE_SETUP
#line 444 "cftoken.l"
{ YYD; yylval.num = algtype_rc5; return(ALGORITHMTYPE); }
YY_BREAK
case 221:
YY_RULE_SETUP
#line 445 "cftoken.l"
{ YYD; yylval.num = algtype_idea; return(ALGORITHMTYPE); }
YY_BREAK
case 222:
YY_RULE_SETUP
#line 446 "cftoken.l"
{ YYD; yylval.num = algtype_cast128; return(ALGORITHMTYPE); }
YY_BREAK
case 223:
YY_RULE_SETUP
#line 447 "cftoken.l"
{ YYD; yylval.num = algtype_blowfish; return(ALGORITHMTYPE); }
YY_BREAK
case 224:
YY_RULE_SETUP
#line 448 "cftoken.l"
{ YYD; yylval.num = algtype_3idea; return(ALGORITHMTYPE); }
YY_BREAK
case 225:
YY_RULE_SETUP
#line 449 "cftoken.l"
{ YYD; yylval.num = algtype_des_iv32; return(ALGORITHMTYPE); }
YY_BREAK
case 226:
YY_RULE_SETUP
#line 450 "cftoken.l"
{ YYD; yylval.num = algtype_rc4; return(ALGORITHMTYPE); }
YY_BREAK
case 227:
YY_RULE_SETUP
#line 451 "cftoken.l"
{ YYD; yylval.num = algtype_null_enc; return(ALGORITHMTYPE); }
YY_BREAK
case 228:
YY_RULE_SETUP
#line 452 "cftoken.l"
{ YYD; yylval.num = algtype_null_enc; return(ALGORITHMTYPE); }
YY_BREAK
case 229:
YY_RULE_SETUP
#line 453 "cftoken.l"
{ YYD; yylval.num = algtype_aes; return(ALGORITHMTYPE); }
YY_BREAK
case 230:
YY_RULE_SETUP
#line 454 "cftoken.l"
{ YYD; yylval.num = algtype_aes; return(ALGORITHMTYPE); }
YY_BREAK
case 231:
YY_RULE_SETUP
#line 455 "cftoken.l"
{ YYD; yylval.num = algtype_twofish; return(ALGORITHMTYPE); }
YY_BREAK
case 232:
YY_RULE_SETUP
#line 456 "cftoken.l"
{ YYD; yylval.num = algtype_camellia; return(ALGORITHMTYPE); }
YY_BREAK
case 233:
YY_RULE_SETUP
#line 457 "cftoken.l"
{ YYD; yylval.num = algtype_non_auth; return(ALGORITHMTYPE); }
YY_BREAK
case 234:
YY_RULE_SETUP
#line 458 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_md5; return(ALGORITHMTYPE); }
YY_BREAK
case 235:
YY_RULE_SETUP
#line 459 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_sha1; return(ALGORITHMTYPE); }
YY_BREAK
case 236:
YY_RULE_SETUP
#line 460 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_sha2_256; return(ALGORITHMTYPE); }
YY_BREAK
case 237:
YY_RULE_SETUP
#line 461 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_sha2_256; return(ALGORITHMTYPE); }
YY_BREAK
case 238:
YY_RULE_SETUP
#line 462 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_sha2_384; return(ALGORITHMTYPE); }
YY_BREAK
case 239:
YY_RULE_SETUP
#line 463 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_sha2_384; return(ALGORITHMTYPE); }
YY_BREAK
case 240:
YY_RULE_SETUP
#line 464 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_sha2_512; return(ALGORITHMTYPE); }
YY_BREAK
case 241:
YY_RULE_SETUP
#line 465 "cftoken.l"
{ YYD; yylval.num = algtype_hmac_sha2_512; return(ALGORITHMTYPE); }
YY_BREAK
case 242:
YY_RULE_SETUP
#line 466 "cftoken.l"
{ YYD; yylval.num = algtype_des_mac; return(ALGORITHMTYPE); }
YY_BREAK
case 243:
YY_RULE_SETUP
#line 467 "cftoken.l"
{ YYD; yylval.num = algtype_kpdk; return(ALGORITHMTYPE); }
YY_BREAK
case 244:
YY_RULE_SETUP
#line 468 "cftoken.l"
{ YYD; yylval.num = algtype_md5; return(ALGORITHMTYPE); }
YY_BREAK
case 245:
YY_RULE_SETUP
#line 469 "cftoken.l"
{ YYD; yylval.num = algtype_sha1; return(ALGORITHMTYPE); }
YY_BREAK
case 246:
YY_RULE_SETUP
#line 470 "cftoken.l"
{ YYD; yylval.num = algtype_tiger; return(ALGORITHMTYPE); }
YY_BREAK
case 247:
YY_RULE_SETUP
#line 471 "cftoken.l"
{ YYD; yylval.num = algtype_sha2_256; return(ALGORITHMTYPE); }
YY_BREAK
case 248:
YY_RULE_SETUP
#line 472 "cftoken.l"
{ YYD; yylval.num = algtype_sha2_256; return(ALGORITHMTYPE); }
YY_BREAK
case 249:
YY_RULE_SETUP
#line 473 "cftoken.l"
{ YYD; yylval.num = algtype_sha2_384; return(ALGORITHMTYPE); }
YY_BREAK
case 250:
YY_RULE_SETUP
#line 474 "cftoken.l"
{ YYD; yylval.num = algtype_sha2_384; return(ALGORITHMTYPE); }
YY_BREAK
case 251:
YY_RULE_SETUP
#line 475 "cftoken.l"
{ YYD; yylval.num = algtype_sha2_512; return(ALGORITHMTYPE); }
YY_BREAK
case 252:
YY_RULE_SETUP
#line 476 "cftoken.l"
{ YYD; yylval.num = algtype_sha2_512; return(ALGORITHMTYPE); }
YY_BREAK
case 253:
YY_RULE_SETUP
#line 477 "cftoken.l"
{ YYD; yylval.num = algtype_oui; return(ALGORITHMTYPE); }
YY_BREAK
case 254:
YY_RULE_SETUP
#line 478 "cftoken.l"
{ YYD; yylval.num = algtype_deflate; return(ALGORITHMTYPE); }
YY_BREAK
case 255:
YY_RULE_SETUP
#line 479 "cftoken.l"
{ YYD; yylval.num = algtype_lzs; return(ALGORITHMTYPE); }
YY_BREAK
case 256:
YY_RULE_SETUP
#line 480 "cftoken.l"
{ YYD; yylval.num = algtype_modp768; return(ALGORITHMTYPE); }
YY_BREAK
case 257:
YY_RULE_SETUP
#line 481 "cftoken.l"
{ YYD; yylval.num = algtype_modp1024; return(ALGORITHMTYPE); }
YY_BREAK
case 258:
YY_RULE_SETUP
#line 482 "cftoken.l"
{ YYD; yylval.num = algtype_modp1536; return(ALGORITHMTYPE); }
YY_BREAK
case 259:
YY_RULE_SETUP
#line 483 "cftoken.l"
{ YYD; yylval.num = algtype_ec2n155; return(ALGORITHMTYPE); }
YY_BREAK
case 260:
YY_RULE_SETUP
#line 484 "cftoken.l"
{ YYD; yylval.num = algtype_ec2n185; return(ALGORITHMTYPE); }
YY_BREAK
case 261:
YY_RULE_SETUP
#line 485 "cftoken.l"
{ YYD; yylval.num = algtype_modp2048; return(ALGORITHMTYPE); }
YY_BREAK
case 262:
YY_RULE_SETUP
#line 486 "cftoken.l"
{ YYD; yylval.num = algtype_modp3072; return(ALGORITHMTYPE); }
YY_BREAK
case 263:
YY_RULE_SETUP
#line 487 "cftoken.l"
{ YYD; yylval.num = algtype_modp4096; return(ALGORITHMTYPE); }
YY_BREAK
case 264:
YY_RULE_SETUP
#line 488 "cftoken.l"
{ YYD; yylval.num = algtype_modp6144; return(ALGORITHMTYPE); }
YY_BREAK
case 265:
YY_RULE_SETUP
#line 489 "cftoken.l"
{ YYD; yylval.num = algtype_modp8192; return(ALGORITHMTYPE); }
YY_BREAK
case 266:
YY_RULE_SETUP
#line 490 "cftoken.l"
{ YYD; yylval.num = algtype_psk; return(ALGORITHMTYPE); }
YY_BREAK
case 267:
YY_RULE_SETUP
#line 491 "cftoken.l"
{ YYD; yylval.num = algtype_rsasig; return(ALGORITHMTYPE); }
YY_BREAK
case 268:
YY_RULE_SETUP
#line 492 "cftoken.l"
{ YYD; yylval.num = algtype_dsssig; return(ALGORITHMTYPE); }
YY_BREAK
case 269:
YY_RULE_SETUP
#line 493 "cftoken.l"
{ YYD; yylval.num = algtype_rsaenc; return(ALGORITHMTYPE); }
YY_BREAK
case 270:
YY_RULE_SETUP
#line 494 "cftoken.l"
{ YYD; yylval.num = algtype_rsarev; return(ALGORITHMTYPE); }
YY_BREAK
case 271:
YY_RULE_SETUP
#line 495 "cftoken.l"
{ YYD; yylval.num = algtype_gssapikrb; return(ALGORITHMTYPE); }
YY_BREAK
case 272:
YY_RULE_SETUP
#line 496 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_hybrid_rsa_s; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
case 273:
YY_RULE_SETUP
#line 503 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_hybrid_dss_s; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
case 274:
YY_RULE_SETUP
#line 510 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_hybrid_rsa_c; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
case 275:
YY_RULE_SETUP
#line 517 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_hybrid_dss_c; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
case 276:
YY_RULE_SETUP
#line 524 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_xauth_psk_s; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
case 277:
YY_RULE_SETUP
#line 531 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_xauth_psk_c; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
case 278:
YY_RULE_SETUP
#line 538 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_xauth_rsa_s; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
case 279:
YY_RULE_SETUP
#line 545 "cftoken.l"
{
#ifdef ENABLE_HYBRID
YYD; yylval.num = algtype_xauth_rsa_c; return(ALGORITHMTYPE);
#else
yyerror("racoon not configured with --enable-hybrid");
#endif
}
YY_BREAK
/* identifier type */
case 280:
YY_RULE_SETUP
#line 555 "cftoken.l"
{ YYD; yylval.num = IDTYPE_USERFQDN; return(IDENTIFIERTYPE); }
YY_BREAK
case 281:
YY_RULE_SETUP
#line 556 "cftoken.l"
{ YYD; yylval.num = IDTYPE_FQDN; return(IDENTIFIERTYPE); }
YY_BREAK
case 282:
YY_RULE_SETUP
#line 557 "cftoken.l"
{ YYD; yylval.num = IDTYPE_KEYID; return(IDENTIFIERTYPE); }
YY_BREAK
case 283:
YY_RULE_SETUP
#line 558 "cftoken.l"
{ YYD; yylval.num = IDTYPE_ADDRESS; return(IDENTIFIERTYPE); }
YY_BREAK
case 284:
YY_RULE_SETUP
#line 559 "cftoken.l"
{ YYD; yylval.num = IDTYPE_SUBNET; return(IDENTIFIERTYPE); }
YY_BREAK
case 285:
YY_RULE_SETUP
#line 560 "cftoken.l"
{ YYD; yylval.num = IDTYPE_ASN1DN; return(IDENTIFIERTYPE); }
YY_BREAK
/* identifier qualifier */
case 286:
YY_RULE_SETUP
#line 563 "cftoken.l"
{ YYD; yylval.num = IDQUAL_TAG; return(IDENTIFIERQUAL); }
YY_BREAK
case 287:
YY_RULE_SETUP
#line 564 "cftoken.l"
{ YYD; yylval.num = IDQUAL_FILE; return(IDENTIFIERQUAL); }
YY_BREAK
/* units */
case 288:
YY_RULE_SETUP
#line 567 "cftoken.l"
{ YYD; return(UNITTYPE_BYTE); }
YY_BREAK
case 289:
YY_RULE_SETUP
#line 568 "cftoken.l"
{ YYD; return(UNITTYPE_KBYTES); }
YY_BREAK
case 290:
YY_RULE_SETUP
#line 569 "cftoken.l"
{ YYD; return(UNITTYPE_MBYTES); }
YY_BREAK
case 291:
YY_RULE_SETUP
#line 570 "cftoken.l"
{ YYD; return(UNITTYPE_TBYTES); }
YY_BREAK
case 292:
YY_RULE_SETUP
#line 571 "cftoken.l"
{ YYD; return(UNITTYPE_SEC); }
YY_BREAK
case 293:
YY_RULE_SETUP
#line 572 "cftoken.l"
{ YYD; return(UNITTYPE_MIN); }
YY_BREAK
case 294:
YY_RULE_SETUP
#line 573 "cftoken.l"
{ YYD; return(UNITTYPE_HOUR); }
YY_BREAK
/* boolean */
case 295:
YY_RULE_SETUP
#line 576 "cftoken.l"
{ YYD; yylval.num = TRUE; return(BOOLEAN); }
YY_BREAK
case 296:
YY_RULE_SETUP
#line 577 "cftoken.l"
{ YYD; yylval.num = FALSE; return(BOOLEAN); }
YY_BREAK
case 297:
YY_RULE_SETUP
#line 579 "cftoken.l"
{
char *bp;
YYD;
yylval.num = strtoul(yytext, &bp, 10);
return(NUMBER);
}
YY_BREAK
case 298:
YY_RULE_SETUP
#line 587 "cftoken.l"
{
char *p;
YYD;
yylval.val = vmalloc(yyleng + (yyleng & 1) + 1);
if (yylval.val == NULL) {
yyerror("vmalloc failed");
return -1;
}
p = yylval.val->v;
*p++ = '0';
*p++ = 'x';
/* fixed string if length is odd. */
if (yyleng & 1)
*p++ = '0';
memcpy(p, &yytext[2], yyleng - 1);
return(HEXSTRING);
}
YY_BREAK
case 299:
/* rule 299 can match eol */
YY_RULE_SETUP
#line 609 "cftoken.l"
{
char *p = yytext;
YYD;
while (*++p != '"') ;
*p = '\0';
yylval.val = vmalloc(yyleng - 1);
if (yylval.val == NULL) {
yyerror("vmalloc failed");
return -1;
}
memcpy(yylval.val->v, &yytext[1], yylval.val->l);
return(QUOTEDSTRING);
}
YY_BREAK
case 300:
YY_RULE_SETUP
#line 626 "cftoken.l"
{
YYD;
yylval.val = vmalloc(yyleng + 1);
if (yylval.val == NULL) {
yyerror("vmalloc failed");
return -1;
}
memcpy(yylval.val->v, yytext, yylval.val->l);
return(ADDRSTRING);
}
YY_BREAK
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(S_INI):
case YY_STATE_EOF(S_PRIV):
case YY_STATE_EOF(S_PTH):
case YY_STATE_EOF(S_LOG):
case YY_STATE_EOF(S_PAD):
case YY_STATE_EOF(S_LST):
case YY_STATE_EOF(S_RTRY):
case YY_STATE_EOF(S_CFG):
case YY_STATE_EOF(S_LDAP):
case YY_STATE_EOF(S_RAD):
case YY_STATE_EOF(S_ALGST):
case YY_STATE_EOF(S_ALGCL):
case YY_STATE_EOF(S_SAINF):
case YY_STATE_EOF(S_SAINFS):
case YY_STATE_EOF(S_RMT):
case YY_STATE_EOF(S_RMTS):
case YY_STATE_EOF(S_RMTP):
case YY_STATE_EOF(S_SA):
case YY_STATE_EOF(S_GSSENC):
#line 639 "cftoken.l"
{
yy_delete_buffer(YY_CURRENT_BUFFER);
fclose (incstack[incstackp].fp);
incstack[incstackp].fp = NULL;
racoon_free(incstack[incstackp].path);
incstack[incstackp].path = NULL;
incstackp--;
nextfile:
if (incstack[incstackp].matchon <
incstack[incstackp].matches.gl_pathc) {
char* filepath = incstack[incstackp].matches.gl_pathv[incstack[incstackp].matchon];
incstack[incstackp].matchon++;
incstackp++;
if (yycf_set_buffer(filepath) != 0) {
incstackp--;
goto nextfile;
}
yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE));
BEGIN(S_INI);
} else {
globfree(&incstack[incstackp].matches);
if (incstackp == 0)
yyterminate();
else
yy_switch_to_buffer(incstack[incstackp].prevstate);
}
}
YY_BREAK
/* ... */
case 301:
YY_RULE_SETUP
#line 668 "cftoken.l"
{ ; }
YY_BREAK
case 302:
/* rule 302 can match eol */
YY_RULE_SETUP
#line 669 "cftoken.l"
{ incstack[incstackp].lineno++; }
YY_BREAK
case 303:
YY_RULE_SETUP
#line 670 "cftoken.l"
{ YYD; }
YY_BREAK
case 304:
YY_RULE_SETUP
#line 671 "cftoken.l"
{ return(EOS); }
YY_BREAK
case 305:
YY_RULE_SETUP
#line 672 "cftoken.l"
{ yymore(); }
YY_BREAK
case 306:
YY_RULE_SETUP
#line 674 "cftoken.l"
ECHO;
YY_BREAK
#line 3716 "cftoken.c"
case YY_END_OF_BUFFER:
{
/* Amount of text matched not including the EOB char. */
int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
/* Undo the effects of YY_DO_BEFORE_ACTION. */
*yy_cp = (yy_hold_char);
YY_RESTORE_YY_MORE_OFFSET
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
{
/* We're scanning a new file or input source. It's
* possible that this happened because the user
* just pointed yyin at a new source and called
* yylex(). If so, then we have to assure
* consistency between YY_CURRENT_BUFFER and our
* globals. Here is the right place to do so, because
* this is the first action (other than possibly a
* back-up) that will match for the new input source.
*/
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
}
/* Note that here we test for yy_c_buf_p "<=" to the position
* of the first EOB in the buffer, since yy_c_buf_p will
* already have been incremented past the NUL character
* (since all states make transitions on EOB to the
* end-of-buffer state). Contrast this with the test
* in input().
*/
if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
{ /* This was really a NUL. */
yy_state_type yy_next_state;
(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
/* Okay, we're now positioned to make the NUL
* transition. We couldn't have
* yy_get_previous_state() go ahead and do it
* for us because it doesn't know how to deal
* with the possibility of jamming (and we don't
* want to build jamming into it because then it
* will run more slowly).
*/
yy_next_state = yy_try_NUL_trans( yy_current_state );
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
if ( yy_next_state )
{
/* Consume the NUL. */
yy_cp = ++(yy_c_buf_p);
yy_current_state = yy_next_state;
goto yy_match;
}
else
{
yy_cp = (yy_c_buf_p);
goto yy_find_action;
}
}
else switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_END_OF_FILE:
{
(yy_did_buffer_switch_on_eof) = 0;
if ( yywrap( ) )
{
/* Note: because we've taken care in
* yy_get_next_buffer() to have set up
* yytext, we can now set up
* yy_c_buf_p so that if some total
* hoser (like flex itself) wants to
* call the scanner after we return the
* YY_NULL, it'll still work - another
* YY_NULL will get returned.
*/
(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
yy_act = YY_STATE_EOF(YY_START);
goto do_action;
}
else
{
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
}
break;
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) =
(yytext_ptr) + yy_amount_of_matched_text;
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_match;
case EOB_ACT_LAST_MATCH:
(yy_c_buf_p) =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
yy_current_state = yy_get_previous_state( );
yy_cp = (yy_c_buf_p);
yy_bp = (yytext_ptr) + YY_MORE_ADJ;
goto yy_find_action;
}
break;
}
default:
YY_FATAL_ERROR(
"fatal flex scanner internal error--no action found" );
} /* end of action switch */
} /* end of scanning one token */
} /* end of yylex */
/* yy_get_next_buffer - try to read in a new buffer
*
* Returns a code representing an action:
* EOB_ACT_LAST_MATCH -
* EOB_ACT_CONTINUE_SCAN - continue scanning from current position
* EOB_ACT_END_OF_FILE - end of file
*/
static int yy_get_next_buffer (void)
{
register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
register char *source = (yytext_ptr);
register int number_to_move, i;
int ret_val;
if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
YY_FATAL_ERROR(
"fatal flex scanner internal error--end of buffer missed" );
if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
{ /* Don't try to fill the buffer, so this is an EOF. */
if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
{
/* We matched a single character, the EOB, so
* treat this as a final EOF.
*/
return EOB_ACT_END_OF_FILE;
}
else
{
/* We matched some text prior to the EOB, first
* process it.
*/
return EOB_ACT_LAST_MATCH;
}
}
/* Try to read more data. */
/* First move last chars to start of buffer. */
number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
for ( i = 0; i < number_to_move; ++i )
*(dest++) = *(source++);
if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
/* don't do the read, it's not guaranteed to return an EOF,
* just force an EOF
*/
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
else
{
int num_to_read =
YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
while ( num_to_read <= 0 )
{ /* Not enough room in the buffer - grow it. */
/* just a shorter name for the current buffer */
YY_BUFFER_STATE b = YY_CURRENT_BUFFER;
int yy_c_buf_p_offset =
(int) ((yy_c_buf_p) - b->yy_ch_buf);
if ( b->yy_is_our_buffer )
{
int new_size = b->yy_buf_size * 2;
if ( new_size <= 0 )
b->yy_buf_size += b->yy_buf_size / 8;
else
b->yy_buf_size *= 2;
b->yy_ch_buf = (char *)
/* Include room in for 2 EOB chars. */
yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 );
}
else
/* Can't grow it, we don't own it. */
b->yy_ch_buf = 0;
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR(
"fatal error - scanner input buffer overflow" );
(yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset];
num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size -
number_to_move - 1;
}
if ( num_to_read > YY_READ_BUF_SIZE )
num_to_read = YY_READ_BUF_SIZE;
/* Read in more data. */
YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
(yy_n_chars), (size_t) num_to_read );
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
if ( (yy_n_chars) == 0 )
{
if ( number_to_move == YY_MORE_ADJ )
{
ret_val = EOB_ACT_END_OF_FILE;
yyrestart(yyin );
}
else
{
ret_val = EOB_ACT_LAST_MATCH;
YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
YY_BUFFER_EOF_PENDING;
}
}
else
ret_val = EOB_ACT_CONTINUE_SCAN;
if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
/* Extend the array by 50%, plus the number we really need. */
yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size );
if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
}
(yy_n_chars) += number_to_move;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
return ret_val;
}
/* yy_get_previous_state - get the state just before the EOB char was reached */
static yy_state_type yy_get_previous_state (void)
{
register yy_state_type yy_current_state;
register char *yy_cp;
yy_current_state = (yy_start);
for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
{
register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1819 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
}
return yy_current_state;
}
/* yy_try_NUL_trans - try to make a transition on the NUL character
*
* synopsis
* next_state = yy_try_NUL_trans( current_state );
*/
static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
{
register int yy_is_jam;
register char *yy_cp = (yy_c_buf_p);
register YY_CHAR yy_c = 1;
if ( yy_accept[yy_current_state] )
{
(yy_last_accepting_state) = yy_current_state;
(yy_last_accepting_cpos) = yy_cp;
}
while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
{
yy_current_state = (int) yy_def[yy_current_state];
if ( yy_current_state >= 1819 )
yy_c = yy_meta[(unsigned int) yy_c];
}
yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
yy_is_jam = (yy_current_state == 1818);
return yy_is_jam ? 0 : yy_current_state;
}
static void yyunput (int c, register char * yy_bp )
{
register char *yy_cp;
yy_cp = (yy_c_buf_p);
/* undo effects of setting up yytext */
*yy_cp = (yy_hold_char);
if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
{ /* need to shift things up to make room */
/* +2 for EOB chars. */
register int number_to_move = (yy_n_chars) + 2;
register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
register char *source =
&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
*--dest = *--source;
yy_cp += (int) (dest - source);
yy_bp += (int) (dest - source);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
YY_FATAL_ERROR( "flex scanner push-back overflow" );
}
*--yy_cp = (char) c;
(yytext_ptr) = yy_bp;
(yy_hold_char) = *yy_cp;
(yy_c_buf_p) = yy_cp;
}
#ifndef YY_NO_INPUT
#ifdef __cplusplus
static int yyinput (void)
#else
static int input (void)
#endif
{
int c;
*(yy_c_buf_p) = (yy_hold_char);
if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
{
/* yy_c_buf_p now points to the character we want to return.
* If this occurs *before* the EOB characters, then it's a
* valid NUL; if not, then we've hit the end of the buffer.
*/
if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
/* This was really a NUL. */
*(yy_c_buf_p) = '\0';
else
{ /* need more input */
int offset = (yy_c_buf_p) - (yytext_ptr);
++(yy_c_buf_p);
switch ( yy_get_next_buffer( ) )
{
case EOB_ACT_LAST_MATCH:
/* This happens because yy_g_n_b()
* sees that we've accumulated a
* token and flags that we need to
* try matching the token before
* proceeding. But for input(),
* there's no matching to consider.
* So convert the EOB_ACT_LAST_MATCH
* to EOB_ACT_END_OF_FILE.
*/
/* Reset buffer status. */
yyrestart(yyin );
/*FALLTHROUGH*/
case EOB_ACT_END_OF_FILE:
{
if ( yywrap( ) )
return EOF;
if ( ! (yy_did_buffer_switch_on_eof) )
YY_NEW_FILE;
#ifdef __cplusplus
return yyinput();
#else
return input();
#endif
}
case EOB_ACT_CONTINUE_SCAN:
(yy_c_buf_p) = (yytext_ptr) + offset;
break;
}
}
}
c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
*(yy_c_buf_p) = '\0'; /* preserve yytext */
(yy_hold_char) = *++(yy_c_buf_p);
return c;
}
#endif /* ifndef YY_NO_INPUT */
/** Immediately switch to a different input stream.
* @param input_file A readable stream.
*
* @note This function does not reset the start condition to @c INITIAL .
*/
void yyrestart (FILE * input_file )
{
if ( ! YY_CURRENT_BUFFER ){
yyensure_buffer_stack ();
YY_CURRENT_BUFFER_LVALUE =
yy_create_buffer(yyin,YY_BUF_SIZE );
}
yy_init_buffer(YY_CURRENT_BUFFER,input_file );
yy_load_buffer_state( );
}
/** Switch to a different input buffer.
* @param new_buffer The new input buffer.
*
*/
void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
{
/* TODO. We should be able to replace this entire function body
* with
* yypop_buffer_state();
* yypush_buffer_state(new_buffer);
*/
yyensure_buffer_stack ();
if ( YY_CURRENT_BUFFER == new_buffer )
return;
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
YY_CURRENT_BUFFER_LVALUE = new_buffer;
yy_load_buffer_state( );
/* We don't actually know whether we did this switch during
* EOF (yywrap()) processing, but the only time this flag
* is looked at is after yywrap() is called, so it's safe
* to go ahead and always set it.
*/
(yy_did_buffer_switch_on_eof) = 1;
}
static void yy_load_buffer_state (void)
{
(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
(yy_hold_char) = *(yy_c_buf_p);
}
/** Allocate and initialize an input buffer state.
* @param file A readable stream.
* @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
*
* @return the allocated buffer state.
*/
YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
{
YY_BUFFER_STATE b;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_buf_size = size;
/* yy_ch_buf has to be 2 characters longer than the size given because
* we need to put in 2 end-of-buffer characters.
*/
b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 );
if ( ! b->yy_ch_buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
b->yy_is_our_buffer = 1;
yy_init_buffer(b,file );
return b;
}
/** Destroy the buffer.
* @param b a buffer created with yy_create_buffer()
*
*/
void yy_delete_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
if ( b->yy_is_our_buffer )
yyfree((void *) b->yy_ch_buf );
yyfree((void *) b );
}
#ifndef __cplusplus
extern int isatty (int );
#endif /* __cplusplus */
/* Initializes or reinitializes a buffer.
* This function is sometimes called more than once on the same buffer,
* such as during a yyrestart() or at EOF.
*/
static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
{
int oerrno = errno;
yy_flush_buffer(b );
b->yy_input_file = file;
b->yy_fill_buffer = 1;
/* If b is the current buffer, then yy_init_buffer was _probably_
* called from yyrestart() or through yy_get_next_buffer.
* In that case, we don't want to reset the lineno or column.
*/
if (b != YY_CURRENT_BUFFER){
b->yy_bs_lineno = 1;
b->yy_bs_column = 0;
}
b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
errno = oerrno;
}
/** Discard all buffered characters. On the next scan, YY_INPUT will be called.
* @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
*
*/
void yy_flush_buffer (YY_BUFFER_STATE b )
{
if ( ! b )
return;
b->yy_n_chars = 0;
/* We always need two end-of-buffer characters. The first causes
* a transition to the end-of-buffer state. The second causes
* a jam in that state.
*/
b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
b->yy_buf_pos = &b->yy_ch_buf[0];
b->yy_at_bol = 1;
b->yy_buffer_status = YY_BUFFER_NEW;
if ( b == YY_CURRENT_BUFFER )
yy_load_buffer_state( );
}
/** Pushes the new state onto the stack. The new state becomes
* the current state. This function will allocate the stack
* if necessary.
* @param new_buffer The new state.
*
*/
void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
{
if (new_buffer == NULL)
return;
yyensure_buffer_stack();
/* This block is copied from yy_switch_to_buffer. */
if ( YY_CURRENT_BUFFER )
{
/* Flush out information for old buffer. */
*(yy_c_buf_p) = (yy_hold_char);
YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
}
/* Only push if top exists. Otherwise, replace top. */
if (YY_CURRENT_BUFFER)
(yy_buffer_stack_top)++;
YY_CURRENT_BUFFER_LVALUE = new_buffer;
/* copied from yy_switch_to_buffer. */
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
/** Removes and deletes the top of the stack, if present.
* The next element becomes the new top.
*
*/
void yypop_buffer_state (void)
{
if (!YY_CURRENT_BUFFER)
return;
yy_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
if ((yy_buffer_stack_top) > 0)
--(yy_buffer_stack_top);
if (YY_CURRENT_BUFFER) {
yy_load_buffer_state( );
(yy_did_buffer_switch_on_eof) = 1;
}
}
/* Allocates the stack if it does not exist.
* Guarantees space for at least one push.
*/
static void yyensure_buffer_stack (void)
{
int num_to_alloc;
if (!(yy_buffer_stack)) {
/* First allocation is just for 2 elements, since we don't know if this
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
num_to_alloc = 1;
(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
(yy_buffer_stack_top) = 0;
return;
}
if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
/* Increase the buffer to prepare for a possible push. */
int grow_size = 8 /* arbitrary grow size */;
num_to_alloc = (yy_buffer_stack_max) + grow_size;
(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
((yy_buffer_stack),
num_to_alloc * sizeof(struct yy_buffer_state*)
);
if ( ! (yy_buffer_stack) )
YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
/* zero only the new slots.*/
memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
(yy_buffer_stack_max) = num_to_alloc;
}
}
/** Setup the input buffer state to scan directly from a user-specified character buffer.
* @param base the character buffer
* @param size the size in bytes of the character buffer
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
{
YY_BUFFER_STATE b;
if ( size < 2 ||
base[size-2] != YY_END_OF_BUFFER_CHAR ||
base[size-1] != YY_END_OF_BUFFER_CHAR )
/* They forgot to leave room for the EOB's. */
return 0;
b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) );
if ( ! b )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */
b->yy_buf_pos = b->yy_ch_buf = base;
b->yy_is_our_buffer = 0;
b->yy_input_file = 0;
b->yy_n_chars = b->yy_buf_size;
b->yy_is_interactive = 0;
b->yy_at_bol = 1;
b->yy_fill_buffer = 0;
b->yy_buffer_status = YY_BUFFER_NEW;
yy_switch_to_buffer(b );
return b;
}
/** Setup the input buffer state to scan a string. The next call to yylex() will
* scan from a @e copy of @a str.
* @param yystr a NUL-terminated string to scan
*
* @return the newly allocated buffer state object.
* @note If you want to scan bytes that may contain NUL values, then use
* yy_scan_bytes() instead.
*/
YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
{
return yy_scan_bytes(yystr,strlen(yystr) );
}
/** Setup the input buffer state to scan the given bytes. The next call to yylex() will
* scan from a @e copy of @a bytes.
* @param yybytes the byte buffer to scan
* @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
*
* @return the newly allocated buffer state object.
*/
YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len )
{
YY_BUFFER_STATE b;
char *buf;
yy_size_t n;
int i;
/* Get memory for full buffer, including space for trailing EOB's. */
n = _yybytes_len + 2;
buf = (char *) yyalloc(n );
if ( ! buf )
YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
for ( i = 0; i < _yybytes_len; ++i )
buf[i] = yybytes[i];
buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
b = yy_scan_buffer(buf,n );
if ( ! b )
YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
/* It's okay to grow etc. this buffer, and we should throw it
* away when we're done.
*/
b->yy_is_our_buffer = 1;
return b;
}
#ifndef YY_EXIT_FAILURE
#define YY_EXIT_FAILURE 2
#endif
static void yy_fatal_error (yyconst char* msg )
{
(void) fprintf( stderr, "%s\n", msg );
exit( YY_EXIT_FAILURE );
}
/* Redefine yyless() so it works in section 3 code. */
#undef yyless
#define yyless(n) \
do \
{ \
/* Undo effects of setting up yytext. */ \
int yyless_macro_arg = (n); \
YY_LESS_LINENO(yyless_macro_arg);\
yytext[yyleng] = (yy_hold_char); \
(yy_c_buf_p) = yytext + yyless_macro_arg; \
(yy_hold_char) = *(yy_c_buf_p); \
*(yy_c_buf_p) = '\0'; \
yyleng = yyless_macro_arg; \
} \
while ( 0 )
/* Accessor methods (get/set functions) to struct members. */
/** Get the current line number.
*
*/
int yyget_lineno (void)
{
return yylineno;
}
/** Get the input stream.
*
*/
FILE *yyget_in (void)
{
return yyin;
}
/** Get the output stream.
*
*/
FILE *yyget_out (void)
{
return yyout;
}
/** Get the length of the current token.
*
*/
int yyget_leng (void)
{
return yyleng;
}
/** Get the current token.
*
*/
char *yyget_text (void)
{
return yytext;
}
/** Set the current line number.
* @param line_number
*
*/
void yyset_lineno (int line_number )
{
yylineno = line_number;
}
/** Set the input stream. This does not discard the current
* input buffer.
* @param in_str A readable stream.
*
* @see yy_switch_to_buffer
*/
void yyset_in (FILE * in_str )
{
yyin = in_str ;
}
void yyset_out (FILE * out_str )
{
yyout = out_str ;
}
int yyget_debug (void)
{
return yy_flex_debug;
}
void yyset_debug (int bdebug )
{
yy_flex_debug = bdebug ;
}
static int yy_init_globals (void)
{
/* Initialization is the same as for the non-reentrant scanner.
* This function is called from yylex_destroy(), so don't allocate here.
*/
(yy_buffer_stack) = 0;
(yy_buffer_stack_top) = 0;
(yy_buffer_stack_max) = 0;
(yy_c_buf_p) = (char *) 0;
(yy_init) = 0;
(yy_start) = 0;
/* Defined in main.c */
#ifdef YY_STDINIT
yyin = stdin;
yyout = stdout;
#else
yyin = (FILE *) 0;
yyout = (FILE *) 0;
#endif
/* For future reference: Set errno on error, since we are called by
* yylex_init()
*/
return 0;
}
/* yylex_destroy is for both reentrant and non-reentrant scanners. */
int yylex_destroy (void)
{
/* Pop the buffer stack, destroying each element. */
while(YY_CURRENT_BUFFER){
yy_delete_buffer(YY_CURRENT_BUFFER );
YY_CURRENT_BUFFER_LVALUE = NULL;
yypop_buffer_state();
}
/* Destroy the stack itself. */
yyfree((yy_buffer_stack) );
(yy_buffer_stack) = NULL;
/* Reset the globals. This is important in a non-reentrant scanner so the next time
* yylex() is called, initialization will occur. */
yy_init_globals( );
return 0;
}
/*
* Internal utility routines.
*/
#ifndef yytext_ptr
static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
{
register int i;
for ( i = 0; i < n; ++i )
s1[i] = s2[i];
}
#endif
#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * s )
{
register int n;
for ( n = 0; s[n]; ++n )
;
return n;
}
#endif
void *yyalloc (yy_size_t size )
{
return (void *) malloc( size );
}
void *yyrealloc (void * ptr, yy_size_t size )
{
/* The cast to (char *) in the following accommodates both
* implementations that use char* generic pointers, and those
* that use void* generic pointers. It works with the latter
* because both ANSI C and C++ allow castless assignment from
* any pointer type to void*, and deal with argument conversions
* as though doing an assignment.
*/
return (void *) realloc( (char *) ptr, size );
}
void yyfree (void * ptr )
{
free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
}
#define YYTABLES_NAME "yytables"
#line 674 "cftoken.l"
void
yyerror(char *s, ...)
{
char fmt[512];
va_list ap;
#ifdef HAVE_STDARG_H
va_start(ap, s);
#else
va_start(ap);
#endif
snprintf(fmt, sizeof(fmt), "%s:%d: \"%s\" %s\n",
incstack[incstackp].path, incstack[incstackp].lineno,
yytext, s);
plogv(LLV_ERROR, LOCATION, NULL, fmt, ap);
va_end(ap);
yyerrorcount++;
}
void
yywarn(char *s, ...)
{
char fmt[512];
va_list ap;
#ifdef HAVE_STDARG_H
va_start(ap, s);
#else
va_start(ap);
#endif
snprintf(fmt, sizeof(fmt), "%s:%d: \"%s\" %s\n",
incstack[incstackp].path, incstack[incstackp].lineno,
yytext, s);
plogv(LLV_WARNING, LOCATION, NULL, fmt, ap);
va_end(ap);
}
int
yycf_switch_buffer(path)
char *path;
{
char *filepath = NULL;
/* got the include file name */
if (incstackp >= MAX_INCLUDE_DEPTH) {
plog(LLV_ERROR, LOCATION, NULL,
"Includes nested too deeply");
return -1;
}
if (glob(path, GLOB_TILDE, NULL, &incstack[incstackp].matches) != 0 ||
incstack[incstackp].matches.gl_pathc == 0) {
plog(LLV_ERROR, LOCATION, NULL,
"glob found no matches for path \"%s\"\n", path);
return -1;
}
incstack[incstackp].matchon = 0;
incstack[incstackp].prevstate = YY_CURRENT_BUFFER;
nextmatch:
if (incstack[incstackp].matchon >= incstack[incstackp].matches.gl_pathc)
return -1;
filepath =
incstack[incstackp].matches.gl_pathv[incstack[incstackp].matchon];
incstack[incstackp].matchon++;
incstackp++;
if (yycf_set_buffer(filepath) != 0) {
incstackp--;
goto nextmatch;
}
yy_switch_to_buffer(yy_create_buffer(yyin,YY_BUF_SIZE));
BEGIN(S_INI);
return 0;
}
int
yycf_set_buffer(path)
char *path;
{
yyin = fopen(path, "r");
if (yyin == NULL) {
fprintf(stderr, "failed to open file %s (%s)\n",
path, strerror(errno));
plog(LLV_ERROR, LOCATION, NULL,
"failed to open file %s (%s)\n",
path, strerror(errno));
return -1;
}
/* initialize */
incstack[incstackp].fp = yyin;
if (incstack[incstackp].path != NULL)
racoon_free(incstack[incstackp].path);
incstack[incstackp].path = racoon_strdup(path);
STRDUP_FATAL(incstack[incstackp].path);
incstack[incstackp].lineno = 1;
plog(LLV_DEBUG, LOCATION, NULL,
"reading config file %s\n", path);
return 0;
}
void
yycf_init_buffer()
{
int i;
for (i = 0; i < MAX_INCLUDE_DEPTH; i++)
memset(&incstack[i], 0, sizeof(incstack[i]));
incstackp = 0;
}
void
yycf_clean_buffer()
{
int i;
for (i = 0; i < MAX_INCLUDE_DEPTH; i++) {
if (incstack[i].path != NULL) {
fclose(incstack[i].fp);
racoon_free(incstack[i].path);
incstack[i].path = NULL;
}
}
}
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>