rcfile_l.c   [plain text]



#line 3 "rcfile_l.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;
#endif /* ! C99 */

/* 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 /* ! FLEXINT_H */

#ifdef __cplusplus

/* The "const" storage-class-modifier is valid. */
#define YY_USE_CONST

#else	/* ! __cplusplus */

/* C99 requires __STDC__ to be defined as 1. */
#if defined (__STDC__)

#define YY_USE_CONST

#endif	/* defined (__STDC__) */
#endif	/* ! __cplusplus */

#ifdef YY_USE_CONST
#define yyconst const
#else
#define yyconst
#endif

/* Returned upon end-of-file. */
#define YY_NULL 0

/* Promotes a possibly negative, possibly signed char to an unsigned
 * integer for use as an array index.  If the signed char is negative,
 * we want to instead treat it as an 8-bit unsigned char, hence the
 * double cast.
 */
#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)

/* Enter a start condition.  This macro really ought to take a parameter,
 * but we do it the disgusting crufty way forced on us by the ()-less
 * definition of BEGIN.
 */
#define BEGIN (yy_start) = 1 + 2 *

/* Translate the current start state into a value that can be later handed
 * to BEGIN to return to the state.  The YYSTATE alias is for lex
 * compatibility.
 */
#define YY_START (((yy_start) - 1) / 2)
#define YYSTATE YY_START

/* Action number for EOF rule of a given start state. */
#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)

/* Special action meaning "start processing a new file". */
#define YY_NEW_FILE yyrestart(yyin  )

#define YY_END_OF_BUFFER_CHAR 0

/* Size of default input buffer. */
#ifndef YY_BUF_SIZE
#define YY_BUF_SIZE 16384
#endif

/* The state buf must be large enough to hold one state per character in the main buffer.
 */
#define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))

#ifndef YY_TYPEDEF_YY_BUFFER_STATE
#define YY_TYPEDEF_YY_BUFFER_STATE
typedef struct yy_buffer_state *YY_BUFFER_STATE;
#endif

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 */

#define yywrap(n) 1
#define YY_SKIP_YYWRAP

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; \
	yyleng = (size_t) (yy_cp - yy_bp); \
	(yy_hold_char) = *yy_cp; \
	*yy_cp = '\0'; \
	(yy_c_buf_p) = yy_cp;

#define YY_NUM_RULES 145
#define YY_END_OF_BUFFER 146
/* 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[1587] =
    {   0,
        0,    0,    0,    0,    0,    0,  146,  143,  144,  141,
      143,  143,  143,    3,  130,  143,  142,   80,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,    4,
        4,    4,    4,    3,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  143,  143,  144,
      143,    0,    1,  143,    0,  141,  143,  143,    0,    2,

      142,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,   76,  143,
      143,  143,  143,  143,  143,  143,  143,  143,   99,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,   79,  143,  143,  143,  143,  143,  143,
        4,    4,    1,    4,    4,    4,    2,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  143,    1,    0,
        2,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,   24,  126,  143,   32,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  112,  143,  143,  143,  143,

      143,  143,  143,  143,  143,  143,  143,  143,  127,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,   61,  143,  143,   41,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,   39,  143,  143,  143,  143,  143,  143,
      143,   64,  143,  143,  143,  143,  143,  143,  143,  143,
        5,  143,  143,  143,  143,  143,   37,  114,  143,  143,
      143,  143,  143,  143,  143,   23,  143,  143,  143,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  143,  136,  131,
      138,  135,  140,  139,  132,  134,  137,  133,  143,  143,

       31,  143,  143,  143,  143,  143,   40,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
       77,  143,  111,  143,  143,  100,  143,  143,   63,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
       42,  143,   54,  143,  143,   21,   28,   65,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,   22,   56,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  113,   53,  143,  143,  125,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,  143,  143,  143,  143,  143,  143,
      143,   62,  143,  143,  143,  143,  143,  143,  143,  143,

      143,  143,  143,  143,  101,  143,  143,  143,  143,  143,
      143,  143,  124,   25,  143,  143,  143,  143,  143,   84,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  107,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,   26,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,   78,  143,  143,  143,  128,
      143,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,  143,   51,  143,
      143,  143,  143,  143,  143,  143,    9,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
       55,  143,   33,    7,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,

       98,   86,  143,  143,  143,  143,  143,  143,   82,  143,
      143,  143,  143,   68,  143,  143,  143,  143,  143,  143,
      143,  143,  143,   52,  143,   20,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  115,  143,  143,   10,
      143,  143,  143,  143,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,  143,  143,   74,  143,  143,  143,  143,  143,
      143,   55,  105,  143,  143,  143,  143,  143,  143,    6,
      110,   67,  143,  143,  143,  143,  143,  143,   87,  143,
      143,  143,   93,  143,  143,  143,  129,  143,  143,    8,
       69,  143,  143,   30,  143,  143,  143,  143,  143,  104,
       27,  143,  143,  143,  143,  143,  143,  116,  143,  143,

      143,  106,   44,  143,  143,  143,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,  143,   60,  143,  143,  143,  143,  143,   40,   19,
      143,  143,   45,  143,  143,   38,   73,  103,  143,  143,

      143,  143,   29,  143,   36,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,  143,  143,  143,
      143,  143,   54,  143,  143,  143,  143,  143,  143,   26,
       46,   12,  143,   56,   59,  143,  143,  143,  143,  143,
      143,  143,  117,  143,   53,   17,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
       43,  143,  143,  143,  143,  143,  143,  143,   48,  143,
      143,  143,  143,   66,   11,   34,   35,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,   91,  143,   96,
      143,   90,  143,   92,  107,  143,  143,  143,  143,   47,
      143,  143,  143,  143,  118,  143,  143,  143,  143,  143,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,

        4,    4,    4,    4,    4,    4,    4,    4,    4,  143,
       50,   70,   14,  123,  143,  108,  143,  143,   71,  143,
      143,  102,  143,  110,  143,  143,  143,  143,   85,   89,
      143,  143,  143,  143,  143,   13,  143,   64,   75,  143,
       16,   15,  143,  143,  143,  143,   18,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,  143,  143,  143,  143,  143,
      143,  143,  143,  143,  143,  143,  143,   93,  143,   65,

      143,   58,  119,  120,  143,  143,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,   31,  143,  143,
       57,  143,   25,   81,   83,  143,   94,   88,   96,   97,
      143,  143,  143,    4,    4,    4,    4,    4,    4,    4,
        4,    4,    4,    4,    4,    4,    4,    4,    4,  109,
       49,  143,  143,  143,  121,  143,    4,    4,    4,    4,
        4,    4,    4,   72,  143,  143,  122,    4,    4,    4,
        4,   95,   30,    4,    4,    0
    } ;

static yyconst flex_int32_t yy_ec[256] =
    {   0,
        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
        1,    1,    2,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    2,    1,    4,    5,    1,    1,    1,    6,    1,
        1,    7,    1,    8,    9,    1,    1,   10,   10,   11,
       12,   13,   14,   10,   10,   15,   10,    8,    8,    1,
       16,    1,    1,    1,   17,    1,    1,   18,   19,    1,
        1,    1,   20,    1,   21,    1,   22,   23,   24,   25,
        1,   26,   27,   28,   29,    1,    1,    1,    1,    1,
        1,   30,    1,    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,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,

        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    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[58] =
    {   0,
        1,    2,    2,    1,    1,    1,    1,    2,    1,    1,
        1,    1,    1,    1,    1,    2,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
        1,    1,    1,    1,    1,    1,    1
    } ;

static yyconst flex_int16_t yy_base[1598] =
    {   0,
        0,    0,   57,    0, 1710, 1709, 1755,    0, 1752, 1758,
      113,  116,  120,    0, 1758,  127,  137, 1758,  102, 1725,
     1730, 1726, 1732, 1725, 1723, 1729, 1743,  111,  111,   81,
      123,  115,  135, 1695,  137,  139,   97,  136,  150,  140,
      152,  161, 1691,  128,  176,  185,   85, 1703,  122,    0,
      233,  236,  240,    0,  247,  257,  163, 1714, 1719, 1715,
     1721, 1714, 1712, 1718, 1732,  231,  163,  159,  243,  200,
      248, 1684,  170,  251,  158,  241,  258,  168,  182,  257,
     1680,  217,  274,  283,  190, 1692,  242,  294,    0, 1729,
      342, 1726,    0,  325,  260, 1758,  345,  354, 1723,    0,

      353, 1704, 1699, 1700, 1708, 1700, 1701, 1697, 1697, 1695,
     1685, 1686,  280, 1671, 1665,  284, 1663, 1670, 1677, 1680,
     1675, 1673, 1659, 1662, 1654, 1662, 1656,  260, 1654, 1652,
     1650,  256, 1651, 1650, 1650,  334, 1666,  126,    0,  302,
     1651, 1652, 1644,  335, 1662, 1649, 1647, 1646,  345, 1647,
     1645,  332, 1641, 1637, 1651, 1633,  353,  365, 1644,  298,
     1637, 1635,  263, 1635, 1640, 1628, 1641, 1645,  347, 1627,
     1625, 1638, 1629,    0, 1640, 1636, 1634, 1637,  359, 1617,
        0,  410,    0,  407,  414,  425,    0,  435, 1643, 1638,
     1639, 1647, 1639, 1640, 1636, 1636, 1634, 1624, 1625,  384,

     1610, 1604,  356, 1602, 1609, 1616, 1619, 1614, 1612, 1598,
     1601, 1593, 1601, 1595,  373, 1593, 1591, 1589,  350, 1590,
     1589, 1589,  395, 1605,  323,    0,  385, 1590, 1591, 1583,
      391, 1601, 1588, 1586, 1585,  418, 1586, 1584,  423, 1580,
     1576, 1590, 1572,  426,  441, 1583,  402, 1576, 1574,  408,
     1574, 1579, 1567, 1580, 1584,  439, 1566, 1564, 1577, 1568,
        0, 1579, 1575, 1573, 1576,  434, 1556, 1556, 1758,  436,
     1758, 1580, 1580, 1580, 1577, 1576, 1574,  460, 1574, 1571,
     1561,    0,    0, 1556,    0, 1548,  182, 1585, 1559, 1547,
     1540, 1556, 1545, 1544, 1555,    0, 1539, 1549, 1533, 1538,

     1530, 1545, 1529, 1545, 1528, 1542, 1542, 1543,    0, 1538,
     1533, 1536, 1524, 1534, 1529, 1521, 1534, 1519, 1525, 1517,
     1531, 1525,    0, 1525, 1520,    0, 1513, 1519,  435, 1512,
      449, 1521, 1519, 1514, 1513, 1520, 1515,  439, 1510, 1505,
     1499, 1511, 1506,    0, 1495, 1507, 1505, 1499,  477, 1490,
     1489,  459, 1494,  447, 1489, 1501, 1487, 1488, 1484, 1480,
        0, 1478, 1484, 1483, 1478, 1484,    0,  462, 1487, 1483,
     1476, 1488, 1489, 1479, 1472,    0, 1469, 1474, 1479, 1492,
     1492, 1492, 1489, 1488, 1486,  489, 1486, 1483, 1473,    0,
        0, 1468,    0, 1460,  208, 1497, 1471, 1459, 1452, 1468,

     1457, 1456, 1467,    0, 1451, 1461, 1445, 1450, 1442, 1457,
     1441, 1457, 1440, 1454, 1454, 1455,    0, 1450, 1445, 1448,
     1436, 1446, 1441, 1433, 1446, 1431, 1437, 1429, 1443, 1437,
        0, 1437, 1432,    0, 1425, 1431,  457, 1424,  467, 1433,
     1431, 1426, 1425, 1432, 1427,  460, 1422, 1417, 1411, 1423,
     1418,    0, 1407, 1419, 1417, 1411,  503, 1402, 1401,  484,
     1406,  461, 1401, 1413, 1399, 1400, 1396, 1392,    0, 1390,
     1396, 1395, 1390, 1396,    0,  483, 1399, 1395, 1388, 1400,
     1401, 1391, 1384,    0, 1381, 1386, 1391, 1379,    0,    0,
        0,    0,    0,    0,    0,    0,    0,    0, 1381, 1377,

     1390, 1386, 1385, 1389, 1375, 1379, 1411, 1373, 1366,  267,
     1374, 1369, 1370, 1365, 1361, 1373, 1372, 1374, 1373, 1361,
        0, 1364,    0, 1357, 1355,    0, 1368, 1352,    0, 1359,
     1361, 1365, 1348, 1346, 1361, 1346, 1349, 1341, 1342, 1340,
     1342, 1347, 1353, 1344, 1343, 1336, 1331, 1352, 1334, 1347,
        0, 1335,  344, 1340,  396,    0,    0,  485, 1327, 1332,
     1343, 1340, 1329, 1323, 1339, 1332,  486, 1336,    0,  489,
     1337, 1336,  487, 1328, 1331, 1317, 1318, 1318, 1327, 1316,
     1325,    0, 1315, 1309, 1318,    0,    0,    0,    0,    0,
        0,    0,    0,    0,    0,    0, 1310, 1306, 1319, 1315,

     1314, 1318, 1304, 1308, 1340, 1302, 1295,  489, 1303, 1298,
     1299, 1294, 1290, 1302, 1301, 1303, 1302, 1290,    0, 1293,
        0, 1286, 1284,    0, 1297, 1281,    0, 1288, 1290, 1294,
     1277, 1275, 1290, 1275, 1278, 1270, 1271, 1269, 1271, 1276,
     1282, 1273, 1272, 1265, 1260, 1281, 1263, 1276,    0, 1264,
      482, 1269,  491,    0,    0,  498, 1256, 1261, 1272, 1269,
     1258, 1252, 1268, 1261,  504, 1265,    0,  506, 1266, 1265,
      507, 1257, 1260, 1246, 1247, 1247, 1256, 1245, 1254,    0,
     1244, 1238, 1247,    0,  512, 1235, 1238, 1239, 1247, 1239,
     1245,    0, 1248, 1235, 1233, 1234, 1240, 1224, 1228,  501,

     1235, 1227, 1231,  515,    0, 1221, 1235, 1228, 1231,  504,
     1226, 1216, 1227, 1228, 1219, 1225, 1214, 1214,  100,    0,
      150,  180,  243,  292,  315,  318,  337,  366,  428,  455,
      486,  505,  512,  511,  510,  523,  513,  517,  516,  510,
      517,  532,  516,  523,  529,  521,  537,  520,  522,  523,
      526,  542,  531,  543,  533,  548,  535,  536,  534,  540,
      540,  530,  541,  554,  551,    0,  538,  544,  560,    0,
      548,  543,  548,  551,  561,  555,  563,    0,  568,  557,
      557,  560,  568,  554,  560,  562,  570,  565,  571,  580,
        0,  564,  580,  576,  581,  581,  579,  571,  584,  587,

      581,  589,  580,  582,  594,    0,  582,  595,  598,  583,
      601,  600,  590,  598,  603,  590,  592,  598,  603,  601,
      600,  613,  601,  605,  604,  598,  605,  620,  602,  609,
      615,  607,  623,  606,  608,  609,  612,  628,  617,  629,
      619,  634,  621,  622,  620,  626,  626,  616,  627,  640,
      637,    0,  624,  630,  646,    0,  634,  634,    0,  649,
      631,  651,  644,  641,  643,  652,    0,  637,  646,  658,
      644,  660,  661,  658,  663,  661,  654,  652,  659,  660,
      651,  653,    0,    0,  671,  672,  672,  660,  664,  662,
      673,  676,  662,  678,  671,  679,  672,  677,  678,  682,

        0,    0,  668,  685,  706,  682,  690,  677,    0,  675,
      686,  678,  692,    0,  679,  686,  682,  694,  689,  688,
      685,  691,  706,    0,  703,    0,  704,  690,  707,  693,
      700,  693,  694,  696,  704,  711,    0,  699,  702,    0,
      701,  707,  710,  717,    0,  724,  706,  726,  719,  716,
      718,  727,    0,  712,  721,  733,  719,  735,  736,  733,
      738,  736,  729,  727,  734,  735,  726,  728,    0,    0,
      746,  747,  747,  735,  739,  737,  748,  751,  737,  753,
      746,  754,  747,  752,  753,  757,    0,    0,  743,  760,
      781,  757,  765,  752,    0,  750,  761,  753,  767,    0,

      754,  761,  757,  769,  764,  763,  760,  766,  781,    0,
      778,    0,  779,  765,  782,  768,  775,  768,  769,  771,
      779,  786,    0,  774,  777,    0,  776,  782,  785,  792,
      782,  788,  793,  799,  791,  804,  797,  824,  789,  800,
      790,  806,  799,  794,    0,  802,  803,  804,  804,  805,
      793,    0,    0,  817,  809,  810,  804,  803,  812,    0,
      811,    0,  822,  827,  824,  810,  816,  831,    0,  830,
      828,  830,  834,  817,  823,  836,    0,  820,  837,    0,
        0,  828,  823,  839,  840,  845,  838,  836,  837,    0,
        0,  831,  833,  832,  848,  840,  841,  853,  842,  853,

      845,    0,    0,  849,  857,  844,  851,  856,  862,  854,
      867,  861,  888,  853,  864,  854,  870,  863,  858,    0,
      866,  867,  868,  868,  869,  857,    0,    0,  881,  873,
      874,  868,  867,  876,    0,  875,    0,  886,  891,  888,
      874,  880,  895,    0,  894,  892,  894,  898,  881,  887,
      900,    0,  884,  901,    0,    0,  892,  887,  903,  904,
      909,  902,  900,  901,    0,    0,  895,  897,  896,  912,
      904,  905,  917,  906,  917,  909,    0,    0,  913,  921,
      908,  924,    0,  926,  925,  922,  923,  933,    0,    0,
      913,  915,    0,  932,  919,    0,    0,    0,  938,  931,

      936,  937,    0,  938,  962,  927,  946,  944,  936,  938,
      939,  951,  937,  942,  937,  944,  954,  949,  954,  939,
      943,  944,    0,  959,  960,  952,  964,  956,  964,    0,
        0,    0,  965,    0,    0,  968,  969,  962,  965,  974,
      962,  959,    0,  966,    0,    0,    0,  976,  975,  972,
      973,  982,    0,    0,  962,  964,    0,  981,  968,    0,
        0,    0,  987,  980,  985,  986,    0,  987, 1011,  976,
      995,  993,  985,  987,  988, 1000,  986,  991,  986,  993,
     1003,  998, 1003,  988,  992,  993,    0, 1008, 1009, 1001,
     1013, 1005, 1013,    0,    0,    0, 1014,    0,    0, 1017,

     1018, 1011, 1014, 1023, 1011, 1008,    0, 1015,    0,    0,
        0, 1027, 1011, 1010, 1019, 1013, 1028, 1015,    0, 1012,
     1027, 1017, 1026,    0,    0,    0,    0, 1017, 1032, 1032,
     1037, 1042, 1035, 1036, 1026, 1042, 1036,    0, 1028, 1035,
     1031,    0, 1038,    0,    0, 1050, 1036, 1035, 1036,    0,
     1038, 1039, 1054, 1055,    0, 1049, 1042, 1049, 1048, 1046,
     1065, 1049, 1048, 1057, 1051, 1066, 1053,    0, 1050, 1065,
     1055, 1064,    0,    0,    0,    0, 1055, 1070, 1070, 1075,
     1080, 1073, 1074, 1064, 1080, 1074,    0, 1066, 1073, 1069,
        0, 1076,    0,    0, 1088, 1074, 1073, 1074,    0, 1076,

     1077, 1092, 1093,    0, 1087, 1080, 1087, 1086, 1084, 1084,
        0,    0,    0,    0, 1087,    0, 1091, 1093,    0, 1099,
     1127,    0, 1097,    0, 1103, 1112, 1092, 1094,    0,    0,
     1097, 1113, 1099, 1116, 1100,    0, 1112,    0,    0, 1103,
        0,    0, 1118, 1116, 1124, 1108,    0, 1107,    0,    0,
        0,    0, 1110,    0, 1114, 1116,    0, 1122, 1150,    0,
     1120,    0, 1126, 1135, 1115, 1117,    0,    0, 1120, 1136,
     1122, 1139, 1123,    0, 1135,    0,    0, 1126,    0,    0,
     1141, 1139, 1147, 1131,    0, 1145, 1146, 1134, 1134, 1141,
     1136, 1144, 1138, 1153, 1140, 1152, 1156,    0, 1157,    0,

     1160,    0,    0,    0, 1151, 1156, 1161, 1162, 1150, 1150,
     1157, 1152, 1160, 1154, 1169, 1156, 1168, 1172,    0, 1173,
        0, 1176,    0,    0,    0, 1167, 1172,    0, 1178, 1179,
        0, 1175,    0,    0,    0, 1167,    0,    0,    0,    0,
     1185, 1182, 1174,    0, 1185, 1186,    0, 1182,    0,    0,
        0, 1174,    0,    0,    0,    0, 1192, 1189, 1181,    0,
        0, 1176, 1192, 1178,    0, 1179,    0,    0, 1180, 1196,
     1182,    0, 1183,    0, 1200, 1200,    0,    0, 1202, 1202,
        0,    0,    0,    0,    0, 1758, 1238, 1239, 1241, 1243,
     1245, 1246, 1248, 1250, 1252, 1254, 1256

    } ;

static yyconst flex_int16_t yy_def[1598] =
    {   0,
     1586,    1, 1586,    3,    1,    1, 1586, 1587, 1586, 1586,
     1588, 1589, 1590, 1587, 1586, 1587, 1587, 1586, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1591,
     1592, 1593, 1594, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1587, 1587, 1586,
     1588, 1595, 1587, 1589, 1596, 1586, 1589, 1590, 1597, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1591, 1592, 1591, 1593, 1593, 1594, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1587, 1586, 1596,
     1586, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,

     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,

     1587, 1587, 1587, 1587, 1587, 1587, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1587, 1587, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587,
     1587, 1587, 1587, 1591, 1591, 1591, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1587,
     1587, 1587, 1587, 1587, 1587, 1587, 1591, 1591, 1591, 1591,
     1591, 1591, 1591, 1587, 1587, 1587, 1587, 1591, 1591, 1591,
     1591, 1587, 1587, 1591, 1591,    0, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586

    } ;

static yyconst flex_int16_t yy_nxt[1816] =
    {   0,
        8,    9,   10,   11,   12,   13,   14,   15,   16,   17,
       17,   17,   17,   17,   17,   18,   19,    8,   20,   21,
       22,    8,    8,   23,   24,   25,   26,    8,    8,   27,
        8,   28,   29,   30,   31,   32,   33,   34,   35,   36,
        8,   37,   38,   39,   40,   41,   42,   43,   44,   45,
       46,   47,   48,   49,    8,    8,    8,   50,    9,   10,
       51,   52,   53,   54,   15,   55,   56,   56,   56,   56,
       56,   56,   18,   57,   50,   58,   59,   60,   50,   50,
       61,   62,   63,   64,   50,   50,   65,   50,   66,   67,
       68,   69,   70,   71,   72,   73,   74,   50,   75,   76,

       77,   78,   79,   80,   81,   82,   83,   84,   85,   86,
       87,   50,   50,   50,   92,   92,   93,   95,   96,  119,
       92,   99,   99,   95,  176,  100,  102,   99,   92,  120,
      103,   95,  140,  895,  177,   99,  101,  101,  101,  101,
      101,  101,  116,  141,  111,   97,  101,  101,  101,  101,
      101,  101,  112,  179,  121,  113,  117,  114,  122,  125,
      118,  180,  115,  160,  126,  127,  129,  123,  134,  128,
      130,  124,  135,  136,  161,  142,  314,  131,  315,  143,
      132,  144,  137,  138,  145,  149,  151,  189,  139,  146,
      150,  190,  154,  227,  203,  147,  896,  206,  152,  148,

      155,  221,  153,  156,  228,  222,  157,  207,  204,  158,
      162,  163,  205,  236,  164,  897,  238,  165,  237,  166,
      501,  167,  168,  172,  173,  169,  170,  490,  239,  263,
      174,  171,  240,  175,   92,   92,  183,   95,   96,  264,
       92,   99,   99,   95,  212,  187,  599,   99,   92,  213,
      214,   95,  247,  588,  215,   99,  188,  188,  188,  188,
      188,  188,   96,  248,  198,  185,  188,  188,  188,  188,
      188,  188,  199,  266,  208,  200,  898,  201,  209,  216,
      229,  267,  202,  217,  230,  223,  231,  210,  241,  270,
      218,  211,  232,  219,  224,  225,  242,  233,  306,  243,

      226,  697,  244,  234,  307,  245,  301,  235,  249,  250,
      302,  360,  251,  361,  283,  252,  698,  253,  288,  254,
      255,  259,  260,  256,  257,  268,   95,   96,  261,  258,
      284,  262,   95,  155,  289,  285,  156,  316,  356,  157,
       95,  899,  158,   92,   92,   93,   95,   96,  900,   92,
      317,  357,   95,  901,   97,   99,   99,   92,  736,  100,
       95,   99,  101,  101,  101,  101,  101,  101,  321,   99,
      311,  342,  322,  422,   97,  423,  312,  327,  328,  329,
      330,  331,  343,  902,  332,  367,  333,  334,  335,  368,
      396,  336,  414,  337,  338,  348,  339,  737,  415,  349,

      352,  350,  351,  377,  353,  903,  397,  378,   95,   96,
      354,   92,   92,  183,   95,   95,   96,   92,  391,  409,
      424,   95,   95,  410,  429,   92,   99,   99,  430,   95,
      187,  419,   99,  425,  392,  739,  185,  420,   96,  393,
       99,  740,  464,  185,  188,  188,  188,  188,  188,  188,
      435,  436,  437,  438,  439,  465,  468,  440,  469,  441,
      442,  443,  450,  904,  444,  270,  445,  446,  456,  447,
      495,  496,  457,  451,  458,  459,  460,  475,  485,  536,
      461,  476,  486,  537,  539,  548,  462,  495,  496,  549,
      559,  540,  560,  562,  541,  573,  822,  563,  574,  593,

      594,  634,  637,  575,  905,  635,  646,  660,  576,  638,
      647,  661,  639,  593,  594,  657,  671,  658,  741,  672,
      754,  751,  759,  783,  673,  752,  736,  755,  742,  674,
      825,  827,  760,  756,  906,  823,  826,  840,  784,  837,
      885,  828,  845,  838,  841,  872,  877,  873,  907,  878,
      842,  908,  846,  909,  910,  911,  886,  879,  912,  913,
      914,  915,  916,  917,  880,  858,  918,  919,  920,  921,
      922,  923,  924,  925,  926,  927,  928,  929,  930,  931,
      932,  933,  934,  935,  936,  937,  938,  939,  940,  941,
      942,  943,  944,  945,  946,  947,  948,  949,  950,  951,

      952,  953,  954,  955,  956,  957,  958,  960,  959,  961,
      962,  963,  967,  968,  964,  969,  970,  971,  973,  974,
      975,  976,  965,  977,  978,  979,  980,  981,  982,  966,
      983,  984,  985,  972,  986,  987,  988,  989,  990,  991,
      992,  993,  994,  995,  996,  997,  998,  999, 1000, 1001,
     1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011,
     1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021,
     1022, 1023, 1024, 1025, 1026, 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, 1067, 1068, 1069, 1070, 1071, 1072,
     1073, 1074, 1075, 1076, 1077, 1078, 1079, 1080, 1066, 1081,
     1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089, 1090, 1091,
     1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1101,
     1102, 1103, 1104, 1105, 1106, 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, 1142,
     1143, 1144, 1145, 1146, 1147, 1148, 1149, 1150, 1151, 1152,

     1153, 1154, 1155, 1141, 1156, 1157, 1158, 1159, 1160, 1161,
     1162, 1163, 1164, 1165, 1166, 1167, 1168, 1169, 1170, 1171,
     1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, 1180, 1181,
     1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 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, 1231,
     1232, 1233, 1234, 1235, 1236, 1237, 1238, 1241, 1242, 1239,
     1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1240,

     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, 1278, 1279, 1280, 1281,
     1282, 1283, 1284, 1285, 1286, 1287, 1288, 1289, 1290, 1291,
     1292, 1293, 1294, 1295, 1296, 1297, 1298, 1299, 1300, 1301,
     1302, 1305, 1306, 1303, 1307, 1308, 1309, 1310, 1311, 1312,
     1313, 1314, 1315, 1304, 1316, 1317, 1318, 1319, 1320, 1321,
     1322, 1323, 1324, 1325, 1326, 1327, 1329, 1330, 1331, 1332,
     1333, 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342,
     1343, 1344, 1328, 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, 1378, 1379, 1380, 1381, 1382,
     1383, 1384, 1385, 1386, 1387, 1388, 1389, 1390, 1391, 1392,
     1393, 1377, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401,
     1402, 1403, 1404, 1405, 1406, 1407, 1408, 1409, 1410, 1411,
     1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 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, 1485, 1486, 1487, 1488, 1489, 1490, 1326,
     1327, 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499,
     1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507, 1508, 1509,
     1510, 1511, 1375, 1376, 1512, 1513, 1514, 1515, 1516, 1517,
     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, 1567,
     1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577,
     1578, 1579, 1580, 1581, 1582, 1583, 1584, 1585,   89,   91,
       91,   94,   94,   98,   98,  181,  182,  182,  184,  184,
      186,  186,   92,   92,   95,   95,   99,   99,  894,  893,
      892,  891,  890,  889,  888,  887,  884,  883,  882,  881,
      876,  875,  874,  871,  870,  869,  868,  867,  866,  865,
      864,  863,  862,  861,  860,  859,  857,  856,  855,  854,
      853,  852,  851,  850,  849,  848,  847,  844,  843,  839,

      836,  835,  834,  833,  832,  831,  830,  829,  824,  821,
      820,  819,  818,  817,  816,  815,  814,  813,  812,  811,
      810,  809,  808,  807,  806,  805,  804,  803,  802,  801,
      800,  799,  798,  797,  796,  795,  794,  793,  792,  791,
      790,  789,  788,  787,  786,  785,  782,  781,  780,  779,
      778,  777,  776,  775,  774,  773,  772,  771,  770,  769,
      768,  767,  766,  765,  764,  763,  762,  761,  758,  757,
      753,  750,  749,  748,  747,  746,  745,  744,  743,  738,
      735,  734,  733,  732,  731,  730,  729,  728,  727,  726,
      725,  724,  723,  722,  721,  720,  719,  718,  717,  716,

      715,  714,  713,  712,  711,  710,  709,  708,  707,  706,
      705,  704,  703,  702,  701,  700,  699,  696,  695,  694,
      693,  692,  691,  690,  689,  688,  687,  686,  685,  684,
      683,  682,  681,  680,  679,  678,  677,  676,  675,  670,
      669,  668,  667,  666,  665,  596,  595,  664,  663,  662,
      659,  656,  655,  654,  653,  652,  651,  650,  452,  592,
      649,  648,  645,  644,  643,  642,  641,  640,  636,  633,
      632,  631,  630,  629,  628,  627,  626,  591,  625,  624,
      623,  622,  590,  621,  620,  619,  618,  617,  616,  615,
      614,  613,  612,  611,  589,  610,  609,  608,  607,  606,

      605,  604,  603,  602,  601,  600,  587,  598,  597,  596,
      595,  592,  591,  590,  589,  588,  587,  586,  585,  584,
      583,  582,  581,  580,  579,  578,  577,  572,  571,  570,
      569,  568,  567,  498,  497,  566,  565,  564,  561,  558,
      557,  556,  555,  554,  553,  552,  344,  494,  551,  550,
      547,  546,  545,  544,  543,  542,  538,  535,  534,  533,
      532,  531,  530,  529,  528,  493,  527,  526,  525,  524,
      492,  523,  522,  521,  520,  519,  518,  517,  516,  515,
      514,  513,  491,  512,  511,  510,  509,  508,  507,  506,
      505,  504,  503,  502,  489,  500,  499,  498,  497,  494,

      493,  492,  491,  490,  489,  488,  487,  484,  483,  482,
      481,  480,  479,  478,  477,  474,  473,  472,  471,  470,
      467,  466,  463,  455,  454,  453,  452,  449,  448,  434,
      433,  432,  431,  428,  427,  426,  421,  418,  417,  416,
      413,  412,  411,  408,  407,  406,  405,  404,  403,  402,
      401,  400,  399,  398,  395,  394,  390,  389,  388,  387,
      386,  385,  384,  383,  382,  381,  380,  379,  376,  375,
      374,  373,  372,  371,  370,  369,  366,  365,  364,  363,
      362,  359,  358,  355,  347,  346,  345,  344,  341,  340,
      326,  325,  324,  323,  320,  319,  318,  313,  310,  309,

      308,  305,  304,  303,  300,  299,  298,  297,  296,  295,
      294,  293,  292,  291,  290,  287,  286,  282,  281,  280,
      279,  278,  277,  276,  275,  274,  273,  272,  271,  269,
       90,  265,  246,  220,   96,  197,  196,  195,  194,  193,
      192,  191,  178,  159,  133,   96,  110,  109,  108,  107,
      106,  105,  104,   90, 1586,   88,   88,    7, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,

     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586
    } ;

static yyconst flex_int16_t yy_chk[1816] =
    {   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,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,

        3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
        3,    3,    3,    3,   11,   11,   11,   12,   12,   30,
       11,   13,   13,   12,   47,   13,   19,   13,   11,   30,
       19,   12,   37,  719,   47,   13,   16,   16,   16,   16,
       16,   16,   29,   37,   28,   12,   17,   17,   17,   17,
       17,   17,   28,   49,   31,   28,   29,   28,   31,   32,
       29,   49,   28,   44,   32,   32,   33,   31,   35,   32,
       33,   31,   35,   36,   44,   38,  138,   33,  138,   38,
       33,   38,   36,   36,   39,   40,   41,   57,   36,   39,
       40,   57,   42,   75,   67,   39,  721,   68,   41,   39,

       42,   73,   41,   42,   75,   73,   42,   68,   67,   42,
       45,   45,   67,   78,   45,  722,   79,   45,   78,   45,
      287,   45,   45,   46,   46,   45,   45,  287,   79,   85,
       46,   45,   79,   46,   51,   51,   51,   52,   52,   85,
       51,   53,   53,   52,   70,   53,  395,   53,   51,   70,
       70,   52,   82,  395,   70,   53,   55,   55,   55,   55,
       55,   55,   95,   82,   66,   52,   56,   56,   56,   56,
       56,   56,   66,   87,   69,   66,  723,   66,   69,   71,
       76,   87,   66,   71,   76,   74,   76,   69,   80,   95,
       71,   69,   77,   71,   74,   74,   80,   77,  132,   80,

       74,  510,   80,   77,  132,   80,  128,   77,   83,   83,
      128,  163,   83,  163,  113,   83,  510,   83,  116,   83,
       83,   84,   84,   83,   83,   88,   94,   94,   84,   83,
      113,   84,   94,   88,  116,  113,   88,  140,  160,   88,
       94,  724,   88,   91,   91,   91,   97,   97,  725,   91,
      140,  160,   97,  726,   94,   98,   98,   91,  553,   98,
       97,   98,  101,  101,  101,  101,  101,  101,  144,   98,
      136,  152,  144,  225,   97,  225,  136,  149,  149,  149,
      149,  149,  152,  727,  149,  169,  149,  149,  149,  169,
      203,  149,  219,  149,  149,  157,  149,  553,  219,  157,

      158,  157,  157,  179,  158,  728,  203,  179,  184,  184,
      158,  182,  182,  182,  184,  185,  185,  182,  200,  215,
      227,  185,  184,  215,  231,  182,  186,  186,  231,  185,
      186,  223,  186,  227,  200,  555,  184,  223,  270,  200,
      186,  555,  247,  185,  188,  188,  188,  188,  188,  188,
      236,  236,  236,  236,  236,  247,  250,  236,  250,  236,
      236,  236,  239,  729,  236,  270,  236,  236,  244,  236,
      278,  278,  244,  239,  244,  244,  245,  256,  266,  329,
      245,  256,  266,  329,  331,  338,  245,  349,  349,  338,
      352,  331,  352,  354,  331,  368,  651,  354,  368,  386,

      386,  437,  439,  368,  730,  437,  446,  462,  368,  439,
      446,  462,  439,  457,  457,  460,  476,  460,  558,  476,
      570,  567,  573,  608,  476,  567,  685,  570,  558,  476,
      653,  656,  573,  570,  731,  651,  653,  668,  608,  665,
      710,  656,  671,  665,  668,  700,  704,  700,  732,  704,
      668,  733,  671,  734,  735,  736,  710,  704,  737,  738,
      739,  740,  741,  742,  704,  685,  743,  744,  745,  746,
      747,  748,  749,  750,  751,  752,  753,  754,  755,  756,
      757,  758,  759,  760,  761,  762,  763,  764,  765,  767,
      768,  769,  771,  772,  773,  774,  775,  776,  777,  779,

      780,  781,  782,  783,  784,  785,  786,  787,  786,  788,
      789,  790,  792,  793,  790,  794,  795,  796,  797,  798,
      799,  800,  790,  801,  802,  803,  804,  805,  807,  790,
      808,  809,  810,  796,  811,  812,  813,  814,  815,  816,
      817,  818,  819,  820,  821,  822,  823,  824,  825,  826,
      827,  828,  829,  830,  831,  832,  833,  834,  835,  836,
      837,  838,  839,  840,  841,  842,  843,  844,  845,  846,
      847,  848,  849,  850,  851,  853,  854,  855,  857,  858,
      860,  861,  862,  863,  864,  865,  866,  868,  869,  870,
      871,  872,  873,  874,  875,  876,  877,  878,  879,  880,

      881,  882,  885,  886,  887,  888,  889,  890,  891,  892,
      893,  894,  895,  896,  897,  898,  899,  900,  903,  904,
      905,  906,  907,  908,  910,  911,  912,  913,  896,  915,
      916,  917,  918,  919,  920,  921,  922,  923,  925,  927,
      928,  929,  930,  931,  932,  933,  934,  935,  936,  938,
      939,  941,  942,  943,  944,  946,  947,  948,  949,  950,
      951,  952,  954,  955,  956,  957,  958,  959,  960,  961,
      962,  963,  964,  965,  966,  967,  968,  971,  972,  973,
      974,  975,  976,  977,  978,  979,  980,  981,  982,  983,
      984,  985,  986,  989,  990,  991,  992,  993,  994,  996,

      997,  998,  999,  982, 1001, 1002, 1003, 1004, 1005, 1006,
     1007, 1008, 1009, 1011, 1013, 1014, 1015, 1016, 1017, 1018,
     1019, 1020, 1021, 1022, 1024, 1025, 1027, 1028, 1029, 1030,
     1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040,
     1041, 1042, 1043, 1044, 1046, 1047, 1048, 1049, 1050, 1051,
     1054, 1055, 1056, 1057, 1058, 1059, 1061, 1063, 1064, 1065,
     1066, 1067, 1068, 1070, 1071, 1072, 1073, 1074, 1075, 1076,
     1078, 1079, 1082, 1083, 1084, 1085, 1086, 1087, 1088, 1089,
     1092, 1093, 1094, 1095, 1096, 1097, 1098, 1099, 1100, 1098,
     1101, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1098,

     1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1121, 1122,
     1123, 1124, 1125, 1126, 1129, 1130, 1131, 1132, 1133, 1134,
     1136, 1138, 1139, 1140, 1141, 1142, 1143, 1145, 1146, 1147,
     1148, 1149, 1150, 1151, 1153, 1154, 1157, 1158, 1159, 1160,
     1161, 1162, 1163, 1164, 1167, 1168, 1169, 1170, 1171, 1172,
     1173, 1174, 1175, 1173, 1176, 1179, 1180, 1181, 1182, 1184,
     1185, 1186, 1187, 1173, 1188, 1191, 1192, 1194, 1195, 1199,
     1200, 1201, 1202, 1204, 1205, 1205, 1206, 1207, 1208, 1209,
     1210, 1211, 1212, 1213, 1214, 1215, 1216, 1217, 1218, 1219,
     1220, 1221, 1205, 1222, 1224, 1225, 1226, 1227, 1228, 1229,

     1233, 1236, 1237, 1238, 1239, 1240, 1241, 1242, 1244, 1248,
     1249, 1250, 1251, 1252, 1255, 1256, 1258, 1259, 1263, 1264,
     1265, 1266, 1268, 1269, 1269, 1270, 1271, 1272, 1273, 1274,
     1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284,
     1285, 1269, 1286, 1288, 1289, 1290, 1291, 1292, 1293, 1297,
     1300, 1301, 1302, 1303, 1304, 1305, 1306, 1308, 1312, 1313,
     1314, 1315, 1316, 1317, 1318, 1320, 1321, 1322, 1323, 1328,
     1329, 1330, 1331, 1332, 1333, 1334, 1335, 1336, 1337, 1339,
     1340, 1341, 1343, 1346, 1347, 1348, 1349, 1351, 1352, 1353,
     1354, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364,

     1365, 1366, 1367, 1369, 1370, 1371, 1372, 1377, 1378, 1379,
     1380, 1381, 1382, 1383, 1384, 1385, 1386, 1388, 1389, 1390,
     1392, 1395, 1396, 1397, 1398, 1400, 1401, 1402, 1403, 1405,
     1406, 1407, 1408, 1409, 1410, 1415, 1417, 1418, 1420, 1421,
     1421, 1423, 1425, 1426, 1427, 1428, 1431, 1432, 1433, 1434,
     1435, 1437, 1440, 1443, 1444, 1445, 1446, 1448, 1453, 1455,
     1456, 1458, 1459, 1459, 1461, 1463, 1464, 1465, 1466, 1469,
     1470, 1471, 1472, 1473, 1475, 1478, 1481, 1482, 1483, 1484,
     1486, 1487, 1488, 1489, 1490, 1491, 1492, 1493, 1494, 1495,
     1496, 1497, 1499, 1501, 1505, 1506, 1507, 1508, 1509, 1510,

     1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1520, 1522,
     1526, 1527, 1529, 1530, 1532, 1536, 1541, 1542, 1543, 1545,
     1546, 1548, 1552, 1557, 1558, 1559, 1562, 1563, 1564, 1566,
     1569, 1570, 1571, 1573, 1575, 1576, 1579, 1580, 1587, 1588,
     1588, 1589, 1589, 1590, 1590, 1591, 1592, 1592, 1593, 1593,
     1594, 1594, 1595, 1595, 1596, 1596, 1597, 1597,  718,  717,
      716,  715,  714,  713,  712,  711,  709,  708,  707,  706,
      703,  702,  701,  699,  698,  697,  696,  695,  694,  693,
      691,  690,  689,  688,  687,  686,  683,  682,  681,  679,
      678,  677,  676,  675,  674,  673,  672,  670,  669,  666,

      664,  663,  662,  661,  660,  659,  658,  657,  652,  650,
      648,  647,  646,  645,  644,  643,  642,  641,  640,  639,
      638,  637,  636,  635,  634,  633,  632,  631,  630,  629,
      628,  626,  625,  623,  622,  620,  618,  617,  616,  615,
      614,  613,  612,  611,  610,  609,  607,  606,  605,  604,
      603,  602,  601,  600,  599,  598,  597,  585,  584,  583,
      581,  580,  579,  578,  577,  576,  575,  574,  572,  571,
      568,  566,  565,  564,  563,  562,  561,  560,  559,  554,
      552,  550,  549,  548,  547,  546,  545,  544,  543,  542,
      541,  540,  539,  538,  537,  536,  535,  534,  533,  532,

      531,  530,  528,  527,  525,  524,  522,  520,  519,  518,
      517,  516,  515,  514,  513,  512,  511,  509,  508,  507,
      506,  505,  504,  503,  502,  501,  500,  499,  488,  487,
      486,  485,  483,  482,  481,  480,  479,  478,  477,  474,
      473,  472,  471,  470,  468,  467,  466,  465,  464,  463,
      461,  459,  458,  456,  455,  454,  453,  451,  450,  449,
      448,  447,  445,  444,  443,  442,  441,  440,  438,  436,
      435,  433,  432,  430,  429,  428,  427,  426,  425,  424,
      423,  422,  421,  420,  419,  418,  416,  415,  414,  413,
      412,  411,  410,  409,  408,  407,  406,  405,  403,  402,

      401,  400,  399,  398,  397,  396,  394,  392,  389,  388,
      387,  385,  384,  383,  382,  381,  380,  379,  378,  377,
      375,  374,  373,  372,  371,  370,  369,  366,  365,  364,
      363,  362,  360,  359,  358,  357,  356,  355,  353,  351,
      350,  348,  347,  346,  345,  343,  342,  341,  340,  339,
      337,  336,  335,  334,  333,  332,  330,  328,  327,  325,
      324,  322,  321,  320,  319,  318,  317,  316,  315,  314,
      313,  312,  311,  310,  308,  307,  306,  305,  304,  303,
      302,  301,  300,  299,  298,  297,  295,  294,  293,  292,
      291,  290,  289,  288,  286,  284,  281,  280,  279,  277,

      276,  275,  274,  273,  272,  268,  267,  265,  264,  263,
      262,  260,  259,  258,  257,  255,  254,  253,  252,  251,
      249,  248,  246,  243,  242,  241,  240,  238,  237,  235,
      234,  233,  232,  230,  229,  228,  224,  222,  221,  220,
      218,  217,  216,  214,  213,  212,  211,  210,  209,  208,
      207,  206,  205,  204,  202,  201,  199,  198,  197,  196,
      195,  194,  193,  192,  191,  190,  189,  180,  178,  177,
      176,  175,  173,  172,  171,  170,  168,  167,  166,  165,
      164,  162,  161,  159,  156,  155,  154,  153,  151,  150,
      148,  147,  146,  145,  143,  142,  141,  137,  135,  134,

      133,  131,  130,  129,  127,  126,  125,  124,  123,  122,
      121,  120,  119,  118,  117,  115,  114,  112,  111,  110,
      109,  108,  107,  106,  105,  104,  103,  102,   99,   92,
       90,   86,   81,   72,   65,   64,   63,   62,   61,   60,
       59,   58,   48,   43,   34,   27,   26,   25,   24,   23,
       22,   21,   20,    9,    7,    6,    5, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,

     1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586,
     1586, 1586, 1586, 1586, 1586
    } ;

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
#define yymore() yymore_used_but_not_detected
#define YY_MORE_ADJ 0
#define YY_RESTORE_YY_MORE_OFFSET
char *yytext;
#line 1 "rcfile_l.l"
#line 2 "rcfile_l.l"

/*
 * rcfile_l.l -- lexer for the run control file, to be used with GNU flex.
 *
 * For license terms, see the file COPYING in this directory.
 */
#include <string.h>

#include "config.h"
#include "fetchmail.h"
#include "xmalloc.h"
#include "rcfile_y.h"

int prc_lineno = 1;

#ifdef LEXDEBUG
#define SETSTATE(n)	do {BEGIN(n); if (yydebug) fprintf(stderr, "Entering lexer state %d\n", n);} while (0)
#else
#define SETSTATE(n)	BEGIN(n)
#endif /* LEXDEBUG */

#define YY_NO_INPUT


#line 1403 "rcfile_l.c"

#define INITIAL 0
#define NAME 1
#define AUTH 2

#ifndef YY_NO_UNISTD_H
/* Special case for "unistd.h", since it is non-ANSI. We include it way
 * down here because we want the user's section 1 to have been scanned first.
 * The user has a chance to override it with an option.
 */
#include <unistd.h>
#endif

#ifndef YY_EXTRA_TYPE
#define YY_EXTRA_TYPE void *
#endif

static int yy_init_globals (void );

/* Accessor methods to globals.
   These are made visible to non-reentrant scanners for convenience. */

int yylex_destroy (void );

int yyget_debug (void );

void yyset_debug (int debug_flag  );

YY_EXTRA_TYPE yyget_extra (void );

void yyset_extra (YY_EXTRA_TYPE user_defined  );

FILE *yyget_in (void );

void yyset_in  (FILE * in_str  );

FILE *yyget_out (void );

void yyset_out  (FILE * out_str  );

int yyget_leng (void );

char *yyget_text (void );

int yyget_lineno (void );

void yyset_lineno (int line_number  );

/* Macros after this point can all be overridden by user definitions in
 * section 1.
 */

#ifndef YY_SKIP_YYWRAP
#ifdef __cplusplus
extern "C" int yywrap (void );
#else
extern int yywrap (void );
#endif
#endif

#ifndef yytext_ptr
static void yy_flex_strncpy (char *,yyconst char *,int );
#endif

#ifdef YY_NEED_STRLEN
static int yy_flex_strlen (yyconst char * );
#endif

#ifndef YY_NO_INPUT

#ifdef __cplusplus
static int yyinput (void );
#else
static int input (void );
#endif

#endif

/* Amount of stuff to slurp up with each read. */
#ifndef YY_READ_BUF_SIZE
#define YY_READ_BUF_SIZE 8192
#endif

/* Copy whatever the last rule matched to the standard output. */
#ifndef ECHO
/* This used to be an fputs(), but since the string might contain NUL's,
 * we now use fwrite().
 */
#define ECHO fwrite( yytext, yyleng, 1, yyout )
#endif

/* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
 * is returned in "result".
 */
#ifndef YY_INPUT
#define YY_INPUT(buf,result,max_size) \
	if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
		{ \
		int c = '*'; \
		int n; \
		for ( n = 0; n < max_size && \
			     (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
			buf[n] = (char) c; \
		if ( c == '\n' ) \
			buf[n++] = (char) c; \
		if ( c == EOF && ferror( yyin ) ) \
			YY_FATAL_ERROR( "input in flex scanner failed" ); \
		result = n; \
		} \
	else \
		{ \
		errno=0; \
		while ( (result = 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 33 "rcfile_l.l"


#line 1588 "rcfile_l.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_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 >= 1587 )
					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_current_state != 1586 );
		yy_cp = (yy_last_accepting_cpos);
		yy_current_state = (yy_last_accepting_state);

yy_find_action:
		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:
/* rule 1 can match eol */
#line 36 "rcfile_l.l"
case 2:
/* rule 2 can match eol */
YY_RULE_SETUP
#line 36 "rcfile_l.l"
{
			char *in = xstrndup(yytext+1, yyleng-2);
			escapes(in, in);
			yylval.sval = in;
			SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 3:
YY_RULE_SETUP
#line 44 "rcfile_l.l"
{
		 	SETSTATE(0);
			return WILDCARD;
		}
	YY_BREAK
case 4:
YY_RULE_SETUP
#line 49 "rcfile_l.l"
{
			char *in = xstrdup(yytext);
			escapes(in, in);
			yylval.sval = in;
			SETSTATE(0);
			return STRING;
		}
	YY_BREAK
case 5:
YY_RULE_SETUP
#line 57 "rcfile_l.l"
{ return SET; }
	YY_BREAK
case 6:
YY_RULE_SETUP
#line 58 "rcfile_l.l"
{ return LOGFILE; }
	YY_BREAK
case 7:
YY_RULE_SETUP
#line 59 "rcfile_l.l"
{ return IDFILE; }
	YY_BREAK
case 8:
YY_RULE_SETUP
#line 60 "rcfile_l.l"
{ return PIDFILE; }
	YY_BREAK
case 9:
YY_RULE_SETUP
#line 61 "rcfile_l.l"
{ return DAEMON; }
	YY_BREAK
case 10:
YY_RULE_SETUP
#line 62 "rcfile_l.l"
{ return SYSLOG; }
	YY_BREAK
case 11:
YY_RULE_SETUP
#line 63 "rcfile_l.l"
{ return INVISIBLE; }
	YY_BREAK
case 12:
YY_RULE_SETUP
#line 64 "rcfile_l.l"
{ return SHOWDOTS; }
	YY_BREAK
case 13:
YY_RULE_SETUP
#line 65 "rcfile_l.l"
{ return POSTMASTER; }
	YY_BREAK
case 14:
YY_RULE_SETUP
#line 66 "rcfile_l.l"
{ return BOUNCEMAIL; }
	YY_BREAK
case 15:
YY_RULE_SETUP
#line 67 "rcfile_l.l"
{ return SPAMBOUNCE; }
	YY_BREAK
case 16:
YY_RULE_SETUP
#line 68 "rcfile_l.l"
{ return SOFTBOUNCE; }
	YY_BREAK
case 17:
YY_RULE_SETUP
#line 69 "rcfile_l.l"
{ return WARNINGS; }
	YY_BREAK
case 18:
YY_RULE_SETUP
#line 70 "rcfile_l.l"
{ return TRACEPOLLS; }
	YY_BREAK
case 19:
YY_RULE_SETUP
#line 72 "rcfile_l.l"
{ return DEFAULTS; }
	YY_BREAK
case 20:
YY_RULE_SETUP
#line 73 "rcfile_l.l"
{ return POLL; }
	YY_BREAK
case 21:
YY_RULE_SETUP
#line 74 "rcfile_l.l"
{ return POLL; }
	YY_BREAK
case 22:
YY_RULE_SETUP
#line 75 "rcfile_l.l"
{ return SKIP; }
	YY_BREAK
case 23:
YY_RULE_SETUP
#line 76 "rcfile_l.l"
{ return VIA; }
	YY_BREAK
case 24:
YY_RULE_SETUP
#line 77 "rcfile_l.l"
{ return AKA; }
	YY_BREAK
case 25:
YY_RULE_SETUP
#line 78 "rcfile_l.l"
{ return LOCALDOMAINS; }
	YY_BREAK
case 26:
YY_RULE_SETUP
#line 79 "rcfile_l.l"
{ return PROTOCOL; }
	YY_BREAK
case 27:
YY_RULE_SETUP
#line 80 "rcfile_l.l"
{ return SERVICE; }
	YY_BREAK
case 28:
YY_RULE_SETUP
#line 81 "rcfile_l.l"
{ return PORT; }
	YY_BREAK
case 29:
YY_RULE_SETUP
#line 82 "rcfile_l.l"
{ return INTERVAL; }
	YY_BREAK
case 30:
YY_RULE_SETUP
#line 83 "rcfile_l.l"
{ SETSTATE(AUTH); return AUTHENTICATE; }
	YY_BREAK
case 31:
YY_RULE_SETUP
#line 84 "rcfile_l.l"
{ SETSTATE(AUTH); return AUTHENTICATE; }
	YY_BREAK
case 32:
YY_RULE_SETUP
#line 85 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_ANY; return AUTHTYPE;}
	YY_BREAK
case 33:
YY_RULE_SETUP
#line 86 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_GSSAPI; return AUTHTYPE;}
	YY_BREAK
case 34:
YY_RULE_SETUP
#line 87 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;}
	YY_BREAK
case 35:
YY_RULE_SETUP
#line 88 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V5; return AUTHTYPE;}
	YY_BREAK
case 36:
YY_RULE_SETUP
#line 89 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_KERBEROS_V4; return AUTHTYPE;}
	YY_BREAK
case 37:
YY_RULE_SETUP
#line 90 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_SSH; return AUTHTYPE;}
	YY_BREAK
case 38:
YY_RULE_SETUP
#line 91 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_EXTERNAL; return AUTHTYPE;}
	YY_BREAK
case 39:
YY_RULE_SETUP
#line 92 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_OTP; return AUTHTYPE;}
	YY_BREAK
case 40:
YY_RULE_SETUP
#line 93 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_CRAM_MD5; return AUTHTYPE;}
	YY_BREAK
case 41:
YY_RULE_SETUP
#line 94 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_MSN; return AUTHTYPE;}
	YY_BREAK
case 42:
YY_RULE_SETUP
#line 95 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_NTLM; return AUTHTYPE;}
	YY_BREAK
case 43:
YY_RULE_SETUP
#line 96 "rcfile_l.l"
{ SETSTATE(0); yylval.proto = A_PASSWORD; return AUTHTYPE;}
	YY_BREAK
case 44:
YY_RULE_SETUP
#line 97 "rcfile_l.l"
{ return TIMEOUT;}
	YY_BREAK
case 45:
YY_RULE_SETUP
#line 98 "rcfile_l.l"
{ return ENVELOPE; }
	YY_BREAK
case 46:
YY_RULE_SETUP
#line 99 "rcfile_l.l"
{ return QVIRTUAL; }
	YY_BREAK
case 47:
YY_RULE_SETUP
#line 100 "rcfile_l.l"
{ return PRINCIPAL; }
	YY_BREAK
case 48:
YY_RULE_SETUP
#line 101 "rcfile_l.l"
{ return ESMTPNAME; }
	YY_BREAK
case 49:
YY_RULE_SETUP
#line 102 "rcfile_l.l"
{ return ESMTPPASSWORD; }
	YY_BREAK
case 50:
YY_RULE_SETUP
#line 103 "rcfile_l.l"
{ return BADHEADER; }
	YY_BREAK
case 51:
YY_RULE_SETUP
#line 104 "rcfile_l.l"
{ return ACCEPT; }
	YY_BREAK
case 52:
YY_RULE_SETUP
#line 105 "rcfile_l.l"
{ return REJECT_; }
	YY_BREAK
case 53:
YY_RULE_SETUP
#line 107 "rcfile_l.l"
{SETSTATE(NAME); return USERNAME; }
	YY_BREAK
case 54:
YY_RULE_SETUP
#line 108 "rcfile_l.l"
{SETSTATE(NAME); return PASSWORD; }
	YY_BREAK
case 55:
YY_RULE_SETUP
#line 109 "rcfile_l.l"
{ return FOLDER; }
	YY_BREAK
case 56:
YY_RULE_SETUP
#line 110 "rcfile_l.l"
{ return SMTPHOST; }
	YY_BREAK
case 57:
YY_RULE_SETUP
#line 111 "rcfile_l.l"
{ return FETCHDOMAINS; }
	YY_BREAK
case 58:
YY_RULE_SETUP
#line 112 "rcfile_l.l"
{ return SMTPADDRESS; }
	YY_BREAK
case 59:
YY_RULE_SETUP
#line 113 "rcfile_l.l"
{ return SMTPNAME; }
	YY_BREAK
case 60:
YY_RULE_SETUP
#line 114 "rcfile_l.l"
{ return SPAMRESPONSE; }
	YY_BREAK
case 61:
YY_RULE_SETUP
#line 115 "rcfile_l.l"
{ return MDA; }
	YY_BREAK
case 62:
YY_RULE_SETUP
#line 116 "rcfile_l.l"
{ return BSMTP; }
	YY_BREAK
case 63:
YY_RULE_SETUP
#line 117 "rcfile_l.l"
{ return LMTP; }
	YY_BREAK
case 64:
YY_RULE_SETUP
#line 118 "rcfile_l.l"
{ return PRECONNECT; }
	YY_BREAK
case 65:
YY_RULE_SETUP
#line 119 "rcfile_l.l"
{ return POSTCONNECT; }
	YY_BREAK
case 66:
YY_RULE_SETUP
#line 120 "rcfile_l.l"
{ return INTERFACE; }
	YY_BREAK
case 67:
YY_RULE_SETUP
#line 121 "rcfile_l.l"
{ return MONITOR; }
	YY_BREAK
case 68:
YY_RULE_SETUP
#line 122 "rcfile_l.l"
{ return PLUGIN; }
	YY_BREAK
case 69:
YY_RULE_SETUP
#line 123 "rcfile_l.l"
{ return PLUGOUT; }
	YY_BREAK
case 70:
YY_RULE_SETUP
#line 124 "rcfile_l.l"
{ return BATCHLIMIT; }
	YY_BREAK
case 71:
YY_RULE_SETUP
#line 125 "rcfile_l.l"
{ return FETCHLIMIT; }
	YY_BREAK
case 72:
YY_RULE_SETUP
#line 126 "rcfile_l.l"
{ return FETCHSIZELIMIT; }
	YY_BREAK
case 73:
YY_RULE_SETUP
#line 127 "rcfile_l.l"
{ return FASTUIDL; }
	YY_BREAK
case 74:
YY_RULE_SETUP
#line 128 "rcfile_l.l"
{ return EXPUNGE; }
	YY_BREAK
case 75:
YY_RULE_SETUP
#line 129 "rcfile_l.l"
{ return PROPERTIES; }
	YY_BREAK
case 76:
YY_RULE_SETUP
#line 131 "rcfile_l.l"
{ SETSTATE(NAME); return IS; }
	YY_BREAK
case 77:
YY_RULE_SETUP
#line 132 "rcfile_l.l"
{ return HERE; }
	YY_BREAK
case 78:
YY_RULE_SETUP
#line 133 "rcfile_l.l"
{ return THERE; }
	YY_BREAK
case 79:
YY_RULE_SETUP
#line 134 "rcfile_l.l"
{ SETSTATE(NAME); return TO; }
	YY_BREAK
case 80:
YY_RULE_SETUP
#line 135 "rcfile_l.l"
{ SETSTATE(NAME); return MAP; }
	YY_BREAK
case 81:
#line 138 "rcfile_l.l"
case 82:
#line 139 "rcfile_l.l"
case 83:
#line 140 "rcfile_l.l"
case 84:
#line 141 "rcfile_l.l"
case 85:
#line 142 "rcfile_l.l"
case 86:
#line 143 "rcfile_l.l"
case 87:
#line 144 "rcfile_l.l"
case 88:
#line 145 "rcfile_l.l"
case 89:
#line 146 "rcfile_l.l"
case 90:
#line 147 "rcfile_l.l"
case 91:
#line 148 "rcfile_l.l"
case 92:
#line 149 "rcfile_l.l"
case 93:
#line 150 "rcfile_l.l"
case 94:
#line 151 "rcfile_l.l"
case 95:
#line 152 "rcfile_l.l"
case 96:
#line 153 "rcfile_l.l"
case 97:
#line 154 "rcfile_l.l"
case 98:
YY_RULE_SETUP
#line 154 "rcfile_l.l"
{
                   yyless(2);
                   return NO;
                }
	YY_BREAK
case 99:
YY_RULE_SETUP
#line 159 "rcfile_l.l"
{return NO;}
	YY_BREAK
case 100:
YY_RULE_SETUP
#line 161 "rcfile_l.l"
{ return KEEP; }
	YY_BREAK
case 101:
YY_RULE_SETUP
#line 162 "rcfile_l.l"
{ return FLUSH; }
	YY_BREAK
case 102:
YY_RULE_SETUP
#line 163 "rcfile_l.l"
{ return LIMITFLUSH; }
	YY_BREAK
case 103:
YY_RULE_SETUP
#line 164 "rcfile_l.l"
{ return FETCHALL; }
	YY_BREAK
case 104:
YY_RULE_SETUP
#line 165 "rcfile_l.l"
{ return REWRITE; }
	YY_BREAK
case 105:
YY_RULE_SETUP
#line 166 "rcfile_l.l"
{ return FORCECR; }
	YY_BREAK
case 106:
YY_RULE_SETUP
#line 167 "rcfile_l.l"
{ return STRIPCR; }
	YY_BREAK
case 107:
YY_RULE_SETUP
#line 168 "rcfile_l.l"
{ return PASS8BITS; }
	YY_BREAK
case 108:
YY_RULE_SETUP
#line 169 "rcfile_l.l"
{ return DROPSTATUS; }
	YY_BREAK
case 109:
YY_RULE_SETUP
#line 170 "rcfile_l.l"
{ return DROPDELIVERED; }
	YY_BREAK
case 110:
YY_RULE_SETUP
#line 171 "rcfile_l.l"
{ return MIMEDECODE; }
	YY_BREAK
case 111:
YY_RULE_SETUP
#line 172 "rcfile_l.l"
{ return IDLE; }
	YY_BREAK
case 112:
YY_RULE_SETUP
#line 173 "rcfile_l.l"
{ return DNS; }
	YY_BREAK
case 113:
YY_RULE_SETUP
#line 174 "rcfile_l.l"
{ return UIDL; }
	YY_BREAK
case 114:
YY_RULE_SETUP
#line 175 "rcfile_l.l"
{ return SSL; }
	YY_BREAK
case 115:
YY_RULE_SETUP
#line 176 "rcfile_l.l"
{ return SSLKEY; }
	YY_BREAK
case 116:
YY_RULE_SETUP
#line 177 "rcfile_l.l"
{ return SSLCERT; }
	YY_BREAK
case 117:
YY_RULE_SETUP
#line 178 "rcfile_l.l"
{ return SSLPROTO; }
	YY_BREAK
case 118:
YY_RULE_SETUP
#line 179 "rcfile_l.l"
{ return SSLCERTCK; }
	YY_BREAK
case 119:
YY_RULE_SETUP
#line 180 "rcfile_l.l"
{ return SSLCERTFILE; }
	YY_BREAK
case 120:
YY_RULE_SETUP
#line 181 "rcfile_l.l"
{ return SSLCERTPATH; }
	YY_BREAK
case 121:
YY_RULE_SETUP
#line 182 "rcfile_l.l"
{ return SSLCOMMONNAME; }
	YY_BREAK
case 122:
YY_RULE_SETUP
#line 183 "rcfile_l.l"
{ return SSLFINGERPRINT; }
	YY_BREAK
case 123:
YY_RULE_SETUP
#line 184 "rcfile_l.l"
{ return CHECKALIAS; }
	YY_BREAK
case 124:
YY_RULE_SETUP
#line 186 "rcfile_l.l"
{ return LIMIT; }
	YY_BREAK
case 125:
YY_RULE_SETUP
#line 188 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 126:
YY_RULE_SETUP
#line 189 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 127:
YY_RULE_SETUP
#line 190 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 128:
YY_RULE_SETUP
#line 191 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 129:
YY_RULE_SETUP
#line 192 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 130:
YY_RULE_SETUP
#line 193 "rcfile_l.l"
{/* EMPTY */}
	YY_BREAK
case 131:
YY_RULE_SETUP
#line 195 "rcfile_l.l"
{ yylval.proto = P_AUTO;  return PROTO; }
	YY_BREAK
case 132:
YY_RULE_SETUP
#line 196 "rcfile_l.l"
{ yylval.proto = P_POP2;  return PROTO; }
	YY_BREAK
case 133:
YY_RULE_SETUP
#line 197 "rcfile_l.l"
{ return SDPS; }
	YY_BREAK
case 134:
YY_RULE_SETUP
#line 198 "rcfile_l.l"
{ yylval.proto = P_POP3;  return PROTO; }
	YY_BREAK
case 135:
YY_RULE_SETUP
#line 199 "rcfile_l.l"
{ yylval.proto = P_IMAP;  return PROTO; }
	YY_BREAK
case 136:
YY_RULE_SETUP
#line 200 "rcfile_l.l"
{ yylval.proto = P_APOP;  return PROTO; }
	YY_BREAK
case 137:
YY_RULE_SETUP
#line 201 "rcfile_l.l"
{ yylval.proto = P_RPOP;  return PROTO; }
	YY_BREAK
case 138:
YY_RULE_SETUP
#line 202 "rcfile_l.l"
{ yylval.proto = P_ETRN;  return PROTO; }
	YY_BREAK
case 139:
YY_RULE_SETUP
#line 203 "rcfile_l.l"
{ yylval.proto = P_ODMR;  return PROTO; }
	YY_BREAK
case 140:
YY_RULE_SETUP
#line 204 "rcfile_l.l"
{ return KPOP; }
	YY_BREAK
case 141:
/* rule 141 can match eol */
YY_RULE_SETUP
#line 206 "rcfile_l.l"
{ prc_lineno++;	}   /* newline is ignored */
	YY_BREAK
case 142:
YY_RULE_SETUP
#line 208 "rcfile_l.l"
{ yylval.number = atoi(yytext); return NUMBER; }
	YY_BREAK
case 143:
YY_RULE_SETUP
#line 210 "rcfile_l.l"
{
			char *in = xstrdup(yytext);
			escapes(in, in);
			yylval.sval = in;
			return STRING;
		}
	YY_BREAK
case 144:
YY_RULE_SETUP
#line 217 "rcfile_l.l"
;	/* whitespace */
	YY_BREAK
case 145:
YY_RULE_SETUP
#line 219 "rcfile_l.l"
YY_FATAL_ERROR( "flex scanner jammed" );
	YY_BREAK
#line 2364 "rcfile_l.c"
case YY_STATE_EOF(INITIAL):
case YY_STATE_EOF(NAME):
case YY_STATE_EOF(AUTH):
	yyterminate();

	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_last_accepting_cpos);
				yy_current_state = (yy_last_accepting_state);
				goto yy_find_action;
				}
			}

		else switch ( yy_get_next_buffer(  ) )
			{
			case EOB_ACT_END_OF_FILE:
				{
				(yy_did_buffer_switch_on_eof) = 0;

				if ( yywrap( ) )
					{
					/* Note: because we've taken care in
					 * yy_get_next_buffer() to have set up
					 * yytext, we can now set up
					 * yy_c_buf_p so that if some total
					 * hoser (like flex itself) wants to
					 * call the scanner after we return the
					 * YY_NULL, it'll still work - another
					 * YY_NULL will get returned.
					 */
					(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;

					yy_act = YY_STATE_EOF(YY_START);
					goto do_action;
					}

				else
					{
					if ( ! (yy_did_buffer_switch_on_eof) )
						YY_NEW_FILE;
					}
				break;
				}

			case EOB_ACT_CONTINUE_SCAN:
				(yy_c_buf_p) =
					(yytext_ptr) + yy_amount_of_matched_text;

				yy_current_state = yy_get_previous_state(  );

				yy_cp = (yy_c_buf_p);
				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
				goto yy_match;

			case EOB_ACT_LAST_MATCH:
				(yy_c_buf_p) =
				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];

				yy_current_state = yy_get_previous_state(  );

				yy_cp = (yy_c_buf_p);
				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
				goto yy_find_action;
			}
		break;
		}

	default:
		YY_FATAL_ERROR(
			"fatal flex scanner internal error--no action found" );
	} /* end of action switch */
		} /* end of scanning one token */
} /* end of 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 >= 1587 )
				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 >= 1587 )
			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 == 1586);

	return yy_is_jam ? 0 : yy_current_state;
}

#ifndef YY_NO_INPUT
#ifdef __cplusplus
    static int yyinput (void)
#else
    static int input  (void)
#endif

{
	int c;
    
	*(yy_c_buf_p) = (yy_hold_char);

	if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
		{
		/* yy_c_buf_p now points to the character we want to return.
		 * If this occurs *before* the EOB characters, then it's a
		 * valid NUL; if not, then we've hit the end of the buffer.
		 */
		if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
			/* This was really a NUL. */
			*(yy_c_buf_p) = '\0';

		else
			{ /* need more input */
			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 bytes the byte buffer to scan
 * @param 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 219 "rcfile_l.l"



/** process standard C-style escape sequences in a string,
 * this can never lengthen the output, so cp and tp may overlap as long
 * as cp >= tp. */
void escapes(const char *cp /** source string with escapes */,
	     char       *tp /** target buffer for digested string */)
{
    while (*cp)
    {
	int	cval = 0;

	/* we MUST check for NUL explicitly, as strchr(string, 0) will
	 * always succeed! */
	if (*cp == '\\' && cp[1] && strchr("0123456789xX", cp[1]))
	{
	    const char *dp;
	    const char *hex = "00112233445566778899aAbBcCdDeEfF";
	    int dcount = 0;

	    if (*++cp == 'x' || *cp == 'X')
		for (++cp; *cp && (dp = strchr(hex, *cp)) && (dcount++ < 2); cp++)
		    cval = (cval * 16) + (dp - hex) / 2;
	    else if (*cp == '0')
		while (*cp && strchr("01234567",*cp) != (char*)NULL && (dcount++ < 3))
		    cval = (cval * 8) + (*cp++ - '0');
	    else
		while (*cp && (strchr("0123456789",*cp)!=(char*)NULL)&&(dcount++ < 3))
		    cval = (cval * 10) + (*cp++ - '0');
	}
	else if (*cp == '\\')		/* C-style character escapes */
	{
	    switch (*++cp)
	    {
	    case '\n': cp++; continue;	/* backslash before LF to join lines */
	    case '\0': goto done;	   /* ignore backslash at file end */
	    case '\\': cval = '\\'; break;
	    case 'n': cval = '\n'; break;
	    case 't': cval = '\t'; break;
	    case 'b': cval = '\b'; break;
	    case 'r': cval = '\r'; break;
	    default: cval = *cp;
	    }
	    cp++;
	}
	else
	    cval = *cp++;
	*tp++ = cval;
    }
done:
    *tp = '\0';
}