Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Oct 2016 18:20:22 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r306861 - in projects/doctools/cddl/usr.bin/doctools: . eqn eqn/eqn eqn/eqnchar eqn/neqn grap pic picpack ptx refer tbl troff troff/libhnj troff/nroff troff/troff troff/troff/dpost trof...
Message-ID:  <201610081820.u98IKMWN097304@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sat Oct  8 18:20:22 2016
New Revision: 306861
URL: https://svnweb.freebsd.org/changeset/base/306861

Log:
  Add a doctools subdirectory in cddl/usr.bin
  
  Given that most of the heirloom doctools are under CDDL license, make
  it live under the CDDL directory.
  
  Only build the doctools components which does not already exists in FreeBSD.

Added:
  projects/doctools/cddl/usr.bin/doctools/
  projects/doctools/cddl/usr.bin/doctools/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/Makefile.inc   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/eqn/
  projects/doctools/cddl/usr.bin/doctools/eqn/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/eqn/Makefile.inc   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/eqn/eqn/
  projects/doctools/cddl/usr.bin/doctools/eqn/eqn/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/eqn/eqnchar/
  projects/doctools/cddl/usr.bin/doctools/eqn/eqnchar/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/eqn/neqn/
  projects/doctools/cddl/usr.bin/doctools/eqn/neqn/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/grap/
  projects/doctools/cddl/usr.bin/doctools/grap/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/pic/
  projects/doctools/cddl/usr.bin/doctools/pic/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/pic/picl.c   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/picpack/
  projects/doctools/cddl/usr.bin/doctools/picpack/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/ptx/
  projects/doctools/cddl/usr.bin/doctools/ptx/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/refer/
  projects/doctools/cddl/usr.bin/doctools/refer/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/tbl/
  projects/doctools/cddl/usr.bin/doctools/tbl/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/
  projects/doctools/cddl/usr.bin/doctools/troff/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/Makefile.inc   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/libhnj/
  projects/doctools/cddl/usr.bin/doctools/troff/libhnj/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/nroff/
  projects/doctools/cddl/usr.bin/doctools/troff/nroff/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/troff/
  projects/doctools/cddl/usr.bin/doctools/troff/troff/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/troff/Makefile.inc   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/troff/dhtml.c   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/troff/dpost/
  projects/doctools/cddl/usr.bin/doctools/troff/troff/dpost/Makefile   (contents, props changed)
  projects/doctools/cddl/usr.bin/doctools/troff/troff/tmac/
  projects/doctools/cddl/usr.bin/doctools/troff/troff/tmac/Makefile   (contents, props changed)

Added: projects/doctools/cddl/usr.bin/doctools/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/Makefile	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,11 @@
+SUBDIR= \
+	eqn \
+	tbl \
+	pic \
+	grap \
+	refer \
+	troff \
+	picpack \
+	ptx
+
+.include <bsd.subdir.mk>

Added: projects/doctools/cddl/usr.bin/doctools/Makefile.inc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/Makefile.inc	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,13 @@
+DOCTOOLSDIR=	${SRCTOP}/contrib/heirloom-doctools
+CFLAGS+=	-I${DOCTOOLSDIR}/include
+NO_WERROR=	yes
+LIBDIR=	/usr/libexec/doctools
+REDFIR=	${LIBDIR}/reftools
+HYPDIR=	${LIBDIR}/hyphen
+SHAREDIR=	/usr/share/doctools
+FNTDIR=	${SHAREDIR}/font
+MACDIR=	${SHAREDIR}/tmac
+PSTDIR=	${SHAREDIR}/devpost/postscript
+PUBDIR=	${SHAREDIR}/pub
+TABDIR=	${SHAREDIR}/nterm
+.include "../Makefile.inc"

Added: projects/doctools/cddl/usr.bin/doctools/eqn/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/eqn/Makefile	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,6 @@
+SUBDIR=	\
+	eqn \
+	eqnchar \
+	neqn
+
+.include <bsd.subdir.mk>

Added: projects/doctools/cddl/usr.bin/doctools/eqn/Makefile.inc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/eqn/Makefile.inc	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,6 @@
+CFLAGS+=	-I${DOCTOOLSDIR}/eqn \
+		-DPUBDIR="${PUBDIR}"
+
+.include "../Makefile.inc"
+
+.PATH:	${DOCTOOLSDIR}/eqn

Added: projects/doctools/cddl/usr.bin/doctools/eqn/eqn/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/eqn/eqn/Makefile	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,39 @@
+
+PROGS=	eqn checkeq
+SRCS.eqn=	diacrit.c \
+		e.y \
+		y.tab.h \
+		eqnbox.c \
+		font.c \
+		fromto.c \
+		funny.c \
+		glob.c \
+		integral.c \
+		io.c \
+		lex.c \
+		lookup.c \
+		mark.c \
+		matrix.c \
+		move.c \
+		over.c \
+		paren.c \
+		pile.c \
+		shift.c \
+		size.c \
+		sqrt.c \
+		text.c
+
+SRCS.checkeq=	checkeq.c
+
+MAN=	eqn.1 \
+	eqnchar.7
+MLINKS=	eqn.1 checkeq.1 \
+	eqn.1 neqn.1
+
+CLEANFILES+=	y.tab.h
+
+CFLAGS+=	-I.
+
+.include <bsd.progs.mk>
+
+.PATH: ${DOCTOOLSDIR}/eqn/eqn.d ${DOCTOOLSDIR}/eqn/checkeq.d

Added: projects/doctools/cddl/usr.bin/doctools/eqn/eqnchar/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/eqn/eqnchar/Makefile	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,17 @@
+CLEANFILES=	genutf8 utf-8
+
+FILES+=	ascii eqnchar greek iso utf-8
+FILESDIR+=	${PUBDIR}
+CFLAGS+=	-DEUC
+
+build-tools: genutf8
+
+genutf8: genutf8.c
+	${CC} -o $@ ${CFLAGS} $<
+
+utf-8:	genutf8
+	./genutf8 >utf-8
+
+.include <bsd.prog.mk>
+
+.PATH: ${DOCTOOLSDIR}/eqn/eqnchar.d

Added: projects/doctools/cddl/usr.bin/doctools/eqn/neqn/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/eqn/neqn/Makefile	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,33 @@
+PROG=	neqn
+SRCS=	diacrit.c \
+	e.y \
+	y.tab.h \
+	eqnbox.c \
+	font.c \
+	fromto.c \
+	funny.c \
+	glob.c \
+	integral.c \
+	io.c \
+	lex.c \
+	lookup.c \
+	mark.c \
+	matrix.c \
+	move.c \
+	over.c \
+	paren.c \
+	pile.c \
+	shift.c \
+	size.c \
+	sqrt.c \
+	text.c
+
+MAN=
+
+CLEANFILES+=	y.tab.h
+
+CFLAGS+=	-I. -DNEON
+
+.include <bsd.prog.mk>
+
+.PATH: ${DOCTOOLSDIR}/eqn/neqn.d

Added: projects/doctools/cddl/usr.bin/doctools/grap/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/grap/Makefile	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,27 @@
+PROG=	grap
+SRCS=	coord.c \
+	for.c \
+	frame.c \
+	grap.y \
+	grapl.c \
+	input.c \
+	label.c \
+	main.c \
+	misc.c \
+	plot.c \
+	print.c \
+	ticks.c \
+	version.c \
+	y.tab.h
+
+FILES=	grap.defines
+FILESDIR=	${LIBDIR}
+
+CLEANFILES=	grapl.c
+
+CFLAGS=	-I. -I${DOCTOOLSDIR}/grap -DLIBDIR='"${LIBDIR}"'
+LIBADD=	m
+
+.include <bsd.prog.mk>
+
+.PATH:	${DOCTOOLSDIR}/grap

Added: projects/doctools/cddl/usr.bin/doctools/pic/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/pic/Makefile	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,26 @@
+PROG=	pic
+SRCS=	arcgen.c \
+	blockgen.c \
+	boxgen.c \
+	circgen.c \
+	for.c \
+	input.c \
+	linegen.c \
+	main.c \
+	misc.c \
+	movegen.c \
+	picl.c \
+	picy.y \
+	pltroff.c \
+	print.c \
+	symtab.c \
+	textgen.c \
+	version.c \
+	y.tab.h
+
+LIBADD=	m
+
+CFLAGS+=	-I${DOCTOOLSDIR}/pic -I.
+
+.include <bsd.prog.mk>
+.PATH: ${DOCTOOLSDIR}/pic

Added: projects/doctools/cddl/usr.bin/doctools/pic/picl.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/doctools/cddl/usr.bin/doctools/pic/picl.c	Sat Oct  8 18:20:22 2016	(r306861)
@@ -0,0 +1,3045 @@
+
+#line 3 "<stdout>"
+
+#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 37
+#if YY_FLEX_SUBMINOR_VERSION > 0
+#define FLEX_BETA
+#endif
+
+/* First, we deal with  platform-specific or compiler-specific issues. */
+
+#if defined(__FreeBSD__)
+#ifndef __STDC_LIMIT_MACROS
+#define	__STDC_LIMIT_MACROS
+#endif
+#include <sys/cdefs.h>
+#include <stdint.h>
+#else
+#define	__dead2
+#endif
+
+/* 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(__FreeBSD__) || \
+    (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L)
+
+/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
+ * if you want the limit (max/min) macros for int types. 
+ */
+#ifndef __STDC_LIMIT_MACROS
+#define __STDC_LIMIT_MACROS 1
+#endif
+
+#include <inttypes.h>
+typedef int8_t flex_int8_t;
+typedef uint8_t flex_uint8_t;
+typedef int16_t flex_int16_t;
+typedef uint16_t flex_uint16_t;
+typedef int32_t flex_int32_t;
+typedef uint32_t flex_uint32_t;
+#else
+typedef signed char flex_int8_t;
+typedef short int flex_int16_t;
+typedef int flex_int32_t;
+typedef unsigned char flex_uint8_t; 
+typedef unsigned short int flex_uint16_t;
+typedef unsigned int flex_uint32_t;
+
+/* Limits of integral types. */
+#ifndef INT8_MIN
+#define INT8_MIN               (-128)
+#endif
+#ifndef INT16_MIN
+#define INT16_MIN              (-32767-1)
+#endif
+#ifndef INT32_MIN
+#define INT32_MIN              (-2147483647-1)
+#endif
+#ifndef INT8_MAX
+#define INT8_MAX               (127)
+#endif
+#ifndef INT16_MAX
+#define INT16_MAX              (32767)
+#endif
+#ifndef INT32_MAX
+#define INT32_MAX              (2147483647)
+#endif
+#ifndef UINT8_MAX
+#define UINT8_MAX              (255U)
+#endif
+#ifndef UINT16_MAX
+#define UINT16_MAX             (65535U)
+#endif
+#ifndef UINT32_MAX
+#define UINT32_MAX             (4294967295U)
+#endif
+
+#endif /* ! C99 */
+
+#endif /* ! FLEXINT_H */
+
+#ifdef __cplusplus
+
+/* The "const" storage-class-modifier is valid. */
+#define YY_USE_CONST
+
+#else	/* ! __cplusplus */
+
+/* C99 requires __STDC__ to be defined as 1. */
+#if defined (__STDC__)
+
+#define YY_USE_CONST
+
+#endif	/* defined (__STDC__) */
+#endif	/* ! __cplusplus */
+
+#ifdef YY_USE_CONST
+#define yyconst const
+#else
+#define yyconst
+#endif
+
+/* Returned upon end-of-file. */
+#define YY_NULL 0
+
+/* Promotes a possibly negative, possibly signed char to an unsigned
+ * integer for use as an array index.  If the signed char is negative,
+ * we want to instead treat it as an 8-bit unsigned char, hence the
+ * double cast.
+ */
+#define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
+
+/* Enter a start condition.  This macro really ought to take a parameter,
+ * but we do it the disgusting crufty way forced on us by the ()-less
+ * definition of BEGIN.
+ */
+#define BEGIN (yy_start) = 1 + 2 *
+
+/* Translate the current start state into a value that can be later handed
+ * to BEGIN to return to the state.  The YYSTATE alias is for lex
+ * compatibility.
+ */
+#define YY_START (((yy_start) - 1) / 2)
+#define YYSTATE YY_START
+
+/* Action number for EOF rule of a given start state. */
+#define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
+
+/* Special action meaning "start processing a new file". */
+#define YY_NEW_FILE yyrestart(yyin  )
+
+#define YY_END_OF_BUFFER_CHAR 0
+
+/* Size of default input buffer. */
+#ifndef YY_BUF_SIZE
+#define YY_BUF_SIZE 16384
+#endif
+
+/* The state buf must be large enough to hold one state per character in the main buffer.
+ */
+#define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
+
+#ifndef YY_TYPEDEF_YY_BUFFER_STATE
+#define YY_TYPEDEF_YY_BUFFER_STATE
+typedef struct yy_buffer_state *YY_BUFFER_STATE;
+#endif
+
+#ifndef YY_TYPEDEF_YY_SIZE_T
+#define YY_TYPEDEF_YY_SIZE_T
+typedef size_t yy_size_t;
+#endif
+
+extern yy_size_t yyleng;
+
+extern FILE *yyin, *yyout;
+
+#define EOB_ACT_CONTINUE_SCAN 0
+#define EOB_ACT_END_OF_FILE 1
+#define EOB_ACT_LAST_MATCH 2
+
+    #define YY_LESS_LINENO(n)
+    
+/* Return all but the first "n" matched characters back to the input stream. */
+#define yyless(n) \
+	do \
+		{ \
+		/* Undo effects of setting up yytext. */ \
+        int yyless_macro_arg = (n); \
+        YY_LESS_LINENO(yyless_macro_arg);\
+		*yy_cp = (yy_hold_char); \
+		YY_RESTORE_YY_MORE_OFFSET \
+		(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
+		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
+		} \
+	while ( 0 )
+
+#define unput(c) yyunput( c, (yytext_ptr)  )
+
+#ifndef YY_STRUCT_YY_BUFFER_STATE
+#define YY_STRUCT_YY_BUFFER_STATE
+struct yy_buffer_state
+	{
+	FILE *yy_input_file;
+
+	char *yy_ch_buf;		/* input buffer */
+	char *yy_buf_pos;		/* current position in input buffer */
+
+	/* Size of input buffer in bytes, not including room for EOB
+	 * characters.
+	 */
+	yy_size_t yy_buf_size;
+
+	/* Number of characters read into yy_ch_buf, not including EOB
+	 * characters.
+	 */
+	yy_size_t yy_n_chars;
+
+	/* Whether we "own" the buffer - i.e., we know we created it,
+	 * and can realloc() it to grow it, and should free() it to
+	 * delete it.
+	 */
+	int yy_is_our_buffer;
+
+	/* Whether this is an "interactive" input source; if so, and
+	 * if we're using stdio for input, then we want to use getc()
+	 * instead of fread(), to make sure we stop fetching input after
+	 * each newline.
+	 */
+	int yy_is_interactive;
+
+	/* Whether we're considered to be at the beginning of a line.
+	 * If so, '^' rules will be active on the next match, otherwise
+	 * not.
+	 */
+	int yy_at_bol;
+
+    int yy_bs_lineno; /**< The line count. */
+    int yy_bs_column; /**< The column count. */
+    
+	/* Whether to try to fill the input buffer when we reach the
+	 * end of it.
+	 */
+	int yy_fill_buffer;
+
+	int yy_buffer_status;
+
+#define YY_BUFFER_NEW 0
+#define YY_BUFFER_NORMAL 1
+	/* When an EOF's been seen but there's still some text to process
+	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
+	 * shouldn't try reading from the input source any more.  We might
+	 * still have a bunch of tokens to match, though, because of
+	 * possible backing-up.
+	 *
+	 * When we actually see the EOF, we change the status to "new"
+	 * (via yyrestart()), so that the user can continue scanning by
+	 * just pointing yyin at a new input file.
+	 */
+#define YY_BUFFER_EOF_PENDING 2
+
+	};
+#endif /* !YY_STRUCT_YY_BUFFER_STATE */
+
+/* Stack of input buffers. */
+static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
+static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
+static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
+
+/* We provide macros for accessing buffer states in case in the
+ * future we want to put the buffer states in a more general
+ * "scanner state".
+ *
+ * Returns the top of the stack, or NULL.
+ */
+#define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
+                          ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
+                          : NULL)
+#define yy_current_buffer YY_CURRENT_BUFFER
+
+/* Same as previous macro, but useful when we know that the buffer stack is not
+ * NULL or when we need an lvalue. For internal use only.
+ */
+#define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
+
+/* yy_hold_char holds the character lost when yytext is formed. */
+static char yy_hold_char;
+static yy_size_t yy_n_chars;		/* number of characters read into yy_ch_buf */
+yy_size_t yyleng;
+
+/* Points to current character in buffer. */
+static char *yy_c_buf_p = (char *) 0;
+static int yy_init = 0;		/* whether we need to initialize */
+static int yy_start = 0;	/* start state number */
+
+/* Flag which is used to allow yywrap()'s to do buffer switches
+ * instead of setting up a fresh yyin.  A bit of a hack ...
+ */
+static int yy_did_buffer_switch_on_eof;
+
+void yyrestart (FILE *input_file  );
+void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
+YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
+void yy_delete_buffer (YY_BUFFER_STATE b  );
+void yy_flush_buffer (YY_BUFFER_STATE b  );
+void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
+void yypop_buffer_state (void );
+
+static void yyensure_buffer_stack (void );
+static void yy_load_buffer_state (void );
+static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );
+
+#define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
+
+YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
+YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
+YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,yy_size_t len  );
+
+void *yyalloc (yy_size_t  );
+void *yyrealloc (void *,yy_size_t  );
+void yyfree (void *  );
+
+#define yy_new_buffer yy_create_buffer
+
+#define yy_set_interactive(is_interactive) \
+	{ \
+	if ( ! YY_CURRENT_BUFFER ){ \
+        yyensure_buffer_stack (); \
+		YY_CURRENT_BUFFER_LVALUE =    \
+            yy_create_buffer(yyin,YY_BUF_SIZE ); \
+	} \
+	YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
+	}
+
+#define yy_set_bol(at_bol) \
+	{ \
+	if ( ! YY_CURRENT_BUFFER ){\
+        yyensure_buffer_stack (); \
+		YY_CURRENT_BUFFER_LVALUE =    \
+            yy_create_buffer(yyin,YY_BUF_SIZE ); \
+	} \
+	YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
+	}
+
+#define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
+
+/* Begin user sect3 */
+
+typedef unsigned char YY_CHAR;
+
+FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
+
+typedef int yy_state_type;
+
+extern int yylineno;
+
+int yylineno = 1;
+
+extern char *yytext;
+#define yytext_ptr yytext
+
+static yy_state_type yy_get_previous_state (void );
+static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
+static int yy_get_next_buffer (void );
+static void yy_fatal_error (yyconst char msg[]  ) __dead2;
+
+/* 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 147
+#define YY_END_OF_BUFFER 148
+/* 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[610] =
+    {   0,
+        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,  148,  147,  146,    1,
+        3,  116,  138,  145,  146,  146,  146,  136,    4,  113,
+      146,  112,  137,  137,  146,  146,    6,  137,  137,  137,
+      137,  137,  137,  137,  137,  137,  137,  137,  137,  137,
+      137,  137,  137,  137,  137,  146,  146,    5,   10,   10,
+      137,  144,  140,  139,  144,  132,  123,  123,  130,  129,
+      111,  145,  114,   85,  136,   36,   37,   29,    0,   32,
+       33,   30,   35,   34,   31,   87,   88,  136,  136,    0,
+      136,    0,    0,    0,    0,   84,  110,  108,  109,  137,
+
+      137,   20,    2,  137,  137,  137,   94,  137,  137,   95,
+      137,  137,  137,  137,  137,  137,   68,  137,  137,  137,
+      120,  137,  137,  137,  137,  137,  137,  137,  137,   59,
+      125,  137,  137,  137,  137,  137,  137,  137,  137,  137,
+      137,   26,  137,  137,  137,  137,  137,  137,  137,  137,
+      137,  137,  137,  137,  137,   93,  137,   66,  137,  137,
+      137,    0,    7,    0,  115,   10,   10,   10,   10,   10,
+       10,   10,   10,   10,   10,   10,   10,   10,   10,   10,
+       10,  137,  141,  143,  142,  132,  123,  129,    0,    0,
+        0,    0,    0,   89,    0,   40,    0,   42,    0,    0,
+
+       41,    0,    0,   43,    0,    0,    0,  136,    0,  136,
+      135,   86,  137,  137,   25,   14,  137,  137,  137,  137,
+      137,   12,   70,  137,  137,  137,  137,  137,  101,  137,
+      137,  137,   75,  137,  137,  137,  137,  137,   99,  137,
+      137,  118,  137,  137,  137,  107,  137,  137,  137,  137,
+      137,   98,  137,  105,  106,  137,  137,  137,  137,   61,
+      137,  137,  137,  137,  137,  128,  100,  137,  137,  137,
+      137,  137,  137,  137,   27,  137,  137,  137,  137,  137,
+       28,  137,   60,  137,    0,   10,   10,    9,    8,   10,
+       10,   10,   10,   10,   10,   10,   10,   10,   10,   10,
+
+       10,   10,   10,   10,   10,   10,   10,   10,  137,   36,
+        0,    0,   39,    0,    0,    0,   91,    0,    0,    0,
+       34,    0,   90,  117,  137,  137,  137,  137,  137,  137,
+      137,   77,  137,  137,  121,   76,  137,   62,  137,   67,
+      137,  137,  127,    0,    0,   73,  137,   92,  137,  137,
+      137,   97,   64,   18,  137,  137,   19,  137,  137,  137,
+      137,  104,  137,  137,  137,   23,   63,  137,  137,  137,
+      137,  137,  103,  137,  126,  137,  137,    0,    0,  137,
+      137,  137,  137,  137,   96,   10,   10,    9,    8,   10,
+       10,   10,   10,   10,   10,   10,   10,   10,   10,   10,
+
+       10,   10,   10,  137,    0,    0,   29,    0,   32,    0,
+        0,    0,    0,    0,   31,    0,   81,   16,  102,   82,
+      137,  137,  137,  137,  137,  137,  137,  137,  137,    0,
+        0,  137,    0,  134,  137,  137,   71,    0,    0,   79,
+      137,  137,  137,   11,  137,   21,   65,   80,   74,  137,
+      137,  137,  137,  137,  137,  122,    0,  137,  124,  137,
+        0,    0,   60,   10,   10,   10,   10,   10,   10,   10,
+       10,   10,   10,   10,   10,  137,    0,    0,    0,   33,
+        0,   30,   35,   38,   90,  137,  137,   83,   13,  137,
+       76,  137,  137,   75,    0,  137,   54,  137,  137,    0,
+
+        0,    0,   72,    0,    0,   61,    0,    0,    0,    0,
+       17,   78,  137,    0,    0,  137,   44,    0,  137,    0,
+        0,    0,   10,   10,   10,   10,   10,   10,   10,   10,
+       10,  137,   36,   37,   91,   24,    0,    0,    0,    0,
+      137,  131,  137,   51,   15,  137,   48,    0,    0,    0,
+        0,    0,   22,    0,  133,  137,    0,    0,   49,   10,
+       10,   10,  119,    0,    0,  137,   62,  137,    0,    0,
+       45,   50,   47,   53,  133,  137,    0,    0,   46,   52,
+       69,   71,    0,    0,    0,    0,    0,    0,    0,    0,
+        0,    0,    0,    0,    0,    0,    0,    0,    0,    0,
+
+        0,    0,   58,    0,   57,    0,   56,   55,    0
+    } ;
+
+static yyconst flex_int32_t yy_ec[256] =
+    {   0,
+        1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    2,    4,    5,    6,    1,    1,    7,    8,    1,
+        1,    1,    9,    1,   10,   11,    1,   12,   12,   13,
+       12,   12,   12,   12,   12,   12,   12,    1,   14,   15,
+       16,   17,    1,    1,   18,   18,   18,   18,   19,   18,
+       18,   20,   18,   18,   18,   18,   18,   18,   18,   21,
+       18,   18,   22,   18,   18,   18,   18,   18,   18,   18,
+       23,   24,   25,    1,   18,    1,   26,   27,   28,   29,
+
+       30,   31,   32,   33,   34,   35,   36,   37,   38,   39,
+       40,   41,   42,   43,   44,   45,   46,   47,   48,   49,
+       50,   51,   52,   53,   54,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
+        1,    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[55] =
+    {   0,
+        1,    2,    3,    1,    1,    1,    1,    1,    1,    1,
+        1,    4,    4,    1,    1,    1,    1,    5,    5,    5,
+        5,    5,    1,    1,    1,    5,    5,    5,    5,    5,
+        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
+        5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
+        5,    1,    1,    1
+    } ;
+
+static yyconst flex_int16_t yy_base[623] =
+    {   0,
+        0,    0,    0,   47,   54,   57,   81,    0,    0,    0,
+        0,    0,  135,    0,  189,    0,  899,  900,  900,  900,
+      900,  882,  900,    0,  890,  879,  232,  272,  900,   51,
+      879,  878,    0,  863,  867,  888,  900,   29,  216,  224,
+       39,  260,   37,  218,  216,  270,  253,  850,  858,  845,
+      288,  286,   30,  210,  244,  286,  834,  900,    0,  330,
+      847,  900,  900,  900,  289,    0,  900,    0,  900,    0,
+      900,    0,  900,  900,  325,  845,  854,  264,  223,  853,
+      299,  299,  300,  842,  316,  900,  900,  352,    0,  375,
+      900,  852,  851,  834,  845,  860,  900,  900,  900,    0,
+
+      833,  900,  900,  835,  845,  293,  847,  304,  307,    0,
+      824,  832,  830,  826,  828,  254,    0,  823,  835,  839,
+      344,  820,  264,  834,  821,  230,  818,  820,  825,    0,
+        0,  325,  814,  826,  817,  809,  329,  805,  814,  805,
+      338,    0,  817,  337,  806,  817,  802,  809,  844,   25,
+      353,  354,  802,  818,  353,  802,  364,  801,  791,  796,
+      365,  398,  836,  835,  900,    0,  333,  393,  376,  797,
+      806,  376,  373,  805,  377,  382,  381,  794,  390,    0,
+        0,  804,  900,  900,  900,    0,    0,    0,  787,  792,
+      786,  800,  794,  900,  796,  900,  783,  900,  796,  792,
+
+      900,  777,  796,  900,  780,  776,  790,  418,  401,  420,
+      900,  900,  788,  770,    0,    0,  776,  776,  774,  765,
+      767,    0,    0,  766,  769,  781,  780,  757,    0,  773,
+      771,  766,  758,  763,  756,  766,  769,  417,    0,  761,
+      753,    0,  758,  763,  757,    0,  759,  747,  746,  760,
+      745,    0,  758,    0,    0,  757,  757,  740,  745,  749,
+      753,  751,  747,  735,  748,  775,    0,  746,  741,  729,
+      739,  404,  727,  728,  731,  382,  433,  739,  734,  737,
+        0,  721,  720,  731,  760,  430,    0,    0,    0,  717,
+      722,  716,  730,  724,    0,  726,    0,  713,    0,  726,
+
+      722,    0,  707,  726,    0,  710,  706,  720,  717,  702,
+      701,  700,  900,  712,  698,  697,  707,  707,  694,  695,
+      900,  692,  691,    0,  705,  686,  720,  684,  701,  690,
+      699,    0,  691,  691,    0,  696,  686,  694,  693,    0,
+      434,  681,    0,  442,  718,    0,  675,    0,  686,  672,
+      673,    0,  443,    0,  671,  672,    0,  682,  680,  667,
+      665,    0,  665,  664,  663,    0,    0,  678,  673,  666,
+      678,  664,    0,  657,    0,  655,  698,  444,  696,  667,
+      660,  653,  445,  662,    0,  437,  443,    0,    0,  649,
+      648,  647,    0,  659,  645,  644,  654,  654,  641,  642,
+
+        0,  639,  638,  642,  641,  650,  900,  646,  900,  645,
+      631,  631,  642,  629,  900,  640,    0,    0,    0,    0,
+      642,  633,  627,  639,  620,  638,  636,  620,  635,  449,
+      660,  618,  630,    0,  615,  630,  624,  451,  654,    0,
+      457,  626,  459,    0,  611,    0,  461,    0,    0,  462,
+      624,  624,  607,  463,  619,  648,  618,  458,    0,  469,
+      470,  645,    0,  607,  616,    0,  612,    0,  611,  597,
+      597,  608,  595,    0,  606,  595,  599,  593,  590,  900,
+      590,  900,  900,  900,  900,  594,  472,  474,    0,  598,
+        0,  629,  600,    0,  598,  598,  900,  597,  599,  594,
+
+      458,  621,    0,  476,  620,    0,  478,  619,  488,  618,
+        0,    0,  589,  495,  616,  585,  900,  615,  577,  462,
+      612,  583,  575,  569,  566,    0,  566,    0,    0,    0,
+        0,  606,  900,  900,  900,    0,  501,  602,  502,  601,
+      556,  593,  536,  900,    0,  535,  900,  528,  523,  525,
+      523,  522,    0,  520,    0,  520,  519,  514,  900,    0,
+        0,    0,  900,  515,  514,  514,    0,  510,  507,  502,
+      900,  900,  900,  900,    0,  530,  496,  492,  900,  900,
+        0,    0,  478,  489,  475,  480,  505,  461,  506,  443,
+      507,  476,  509,  512,  467,  513,  431,  515,  359,  293,
+
+      519,  304,  900,  219,  900,   44,  900,  900,  900,  559,
+      564,  569,  571,  576,  578,  580,  582,  587,  592,  597,
+      601,  603
+    } ;
+
+static yyconst flex_int16_t yy_def[623] =
+    {   0,
+      610,  610,  609,    3,  611,  611,  609,    7,  610,  610,
+      610,  610,  609,   13,  609,   15,  609,  609,  609,  609,
+      609,  609,  609,  612,  609,  609,  609,  609,  609,  609,
+      609,  609,  613,  613,  609,  609,  609,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  609,  609,  609,  614,  614,
+      613,  609,  609,  609,  609,  615,  609,  616,  609,  617,
+      609,  612,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,   28,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  613,
+
+      613,  609,  609,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  609,  609,  618,  609,  614,  614,  614,  614,  614,
+      614,  614,  614,  614,  614,  614,  614,  614,  614,  614,
+      614,  613,  609,  609,  609,  615,  616,  617,  609,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  609,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  618,  614,  614,  619,  620,  614,
+      614,  614,  614,  614,  614,  614,  614,  614,  614,  614,
+
+      614,  614,  614,  614,  614,  614,  614,  614,  613,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  609,  609,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  609,  609,  613,
+      613,  613,  613,  613,  613,  614,  614,  619,  620,  614,
+      614,  614,  614,  614,  614,  614,  614,  614,  614,  614,
+
+      614,  614,  614,  613,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  609,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  609,
+      609,  613,  609,  613,  613,  613,  613,  609,  609,  613,
+      613,  613,  613,  613,  613,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  613,  609,  609,  613,  613,  613,
+      609,  609,  613,  614,  614,  614,  614,  614,  614,  614,
+      614,  614,  614,  614,  614,  613,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  613,  613,  613,  613,  613,
+      613,  613,  613,  613,  609,  613,  609,  613,  613,  609,
+
+      609,  609,  613,  609,  609,  613,  609,  609,  609,  609,
+      613,  613,  613,  609,  609,  613,  609,  621,  613,  609,
+      609,  609,  614,  614,  614,  614,  614,  614,  614,  614,
+      614,  613,  609,  609,  609,  613,  609,  609,  609,  609,
+      613,  609,  613,  609,  613,  613,  609,  609,  609,  609,
+      609,  609,  613,  609,  622,  613,  609,  609,  609,  614,
+      614,  614,  609,  609,  609,  613,  613,  613,  609,  609,
+      609,  609,  609,  609,  622,  613,  609,  609,  609,  609,
+      613,  613,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+
+      609,  609,  609,  609,  609,  609,  609,  609,    0,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609
+    } ;
+
+static yyconst flex_int16_t yy_nxt[955] =
+    {   0,
+       19,   20,   21,   22,   23,   24,   25,   19,   19,   26,
+       27,   28,   28,   29,   30,   31,   32,   33,   33,   34,
+       33,   33,   35,   36,   37,   38,   39,   40,   41,   42,
+       43,   33,   44,   45,   33,   33,   46,   47,   48,   49,
+       50,   33,   51,   52,   53,   54,   33,   55,   33,   33,
+       33,   56,   57,   58,   59,  104,   63,   60,   64,   63,
+       96,   64,  155,  267,  118,   61,   97,  105,  119,  156,
+      126,  106,  120,  107,  608,  268,  127,   65,  121,  128,
+       65,   18,   18,   18,   18,   18,   18,   18,   18,   18,
+       18,   18,   18,   18,   18,   18,   18,   18,   66,   66,
+
+       66,   66,   66,   18,   18,   18,   66,   66,   66,   66,
+       66,   66,   66,   66,   66,   66,   66,   66,   66,   66,
+       66,   66,   66,   66,   66,   66,   66,   66,   66,   66,
+       66,   66,   18,   18,   18,   67,   67,   18,   67,   67,
+       67,   67,   67,   67,   67,   67,   67,   67,   67,   67,
+       67,   67,   68,   68,   68,   68,   68,   67,   67,   67,
+       68,   68,   68,   68,   68,   68,   68,   68,   68,   68,
+       68,   68,   68,   68,   68,   68,   68,   68,   68,   68,
+       68,   68,   68,   68,   68,   68,   67,   67,   67,   69,
+       69,   69,   69,   69,   69,   69,   69,   69,   69,   69,
+
+       69,   69,   69,   69,   69,   69,   70,   70,   70,   70,
+       70,   69,   69,   69,   70,   70,   70,   70,   70,   70,
+       70,   70,   70,   70,   70,   70,   70,   70,   70,   70,
+       70,   70,   70,   70,   70,   70,   70,   70,   70,   70,
+       69,   69,   69,   75,   75,  108,  131,  129,  157,  607,
+      158,  111,  193,  112,  132,  109,  113,  114,   76,   77,
+      115,   78,  130,  116,   79,  110,  240,  194,   80,  159,
+       81,  117,  241,  160,   82,   83,   84,  161,  138,   85,
+       86,   87,   88,   89,   89,  122,  139,  162,  163,  191,
+       90,  164,  140,  183,  228,  133,  123,  229,  124,  134,
+
+      236,   90,  192,  135,  136,   91,  601,  237,  125,  137,
+       92,  148,  184,  144,   93,   94,   95,  145,  149,  150,
+      216,  146,  147,  605,  199,  151,  152,  153,  196,  201,
+      154,  167,  200,  185,  167,  217,   75,   75,  197,  202,
+      219,  168,  168,   90,  203,  206,  198,  204,  220,  207,
+      169,  221,  245,  169,   90,  222,  170,  171,   91,  172,
+      252,  598,  173,  208,  208,  260,  174,  257,  175,  246,
+       90,  247,  176,  177,  178,  261,  253,  179,  180,  181,
+      258,   90,  275,  209,  209,   91,  210,  210,  233,  269,
+      271,  234,  278,  283,  288,  276,  272,  289,  270,  162,
+
+      163,  292,  294,  164,  168,  168,  297,  300,  279,  284,
+      302,  286,  210,  210,  293,  301,  298,  295,  344,  307,
+      303,  376,  286,  308,  299,  304,  287,  377,  305,  208,
+      208,  210,  210,  371,  378,  430,   90,  372,  386,  386,
+      345,  387,  387,  344,  438,  378,  461,   90,  387,  387,
+      430,   91,  438,   91,  387,  387,  379,  431,  501,  518,
+      504,  603,  507,  509,  514,  345,  439,  379,  462,  594,
+      520,  461,  431,  537,  439,  539,  287,  504,  591,  507,
+      502,  433,  505,  457,  508,  510,  515,  596,  495,  509,
+      500,  519,  521,  462,  548,  538,  514,  540,  557,  505,
+
+      549,  508,  537,  539,  558,  593,  591,  594,  591,  522,
+      598,  510,  590,  594,  601,  550,  598,  551,  515,  589,
+      601,  588,  587,  586,  538,  540,  585,  552,  592,  595,
+      592,  518,  599,  584,  554,  595,  602,  583,  599,  582,
+      564,  565,  602,  581,  580,  579,  597,  578,  577,  576,
+      574,  600,  573,  572,  604,  571,  570,  569,  606,   18,
+       18,   18,   18,   18,   62,   62,   62,   62,   62,   72,
+       72,  568,   72,   72,  100,  100,  166,  166,  567,  166,
+      166,  186,  186,  187,  187,  188,  188,  285,  285,  285,
+      285,  285,  388,  388,  542,  388,  388,  389,  389,  566,
+
+      389,  389,  555,  539,  537,  555,  575,  575,  563,  562,
+      295,  561,  560,  559,  520,  556,  518,  377,  514,  553,
+      509,  507,  504,  501,  547,  546,  335,  545,  544,  543,
+      542,  541,  536,  535,  194,  534,  533,  532,  531,  530,
+      529,  528,  527,  526,  525,  524,  523,  461,  517,  456,
+      516,  513,  512,  511,  506,  503,  438,  499,  498,  130,
+      497,  496,  430,  494,  493,  492,  491,  490,  489,  488,
+      487,  486,  485,  484,  483,  482,  481,  480,  479,  478,
+      477,  476,  475,  474,  473,  472,  471,  470,  469,  468,
+      467,  466,  465,  464,  463,  460,  459,  458,  378,  456,
+
+      455,  454,  453,  452,  451,  450,  449,  448,  447,  446,
+      445,  444,  443,  442,  441,  440,  437,  436,  435,  434,
+      344,  432,  429,  428,  427,  426,  425,  424,  423,  422,
+      421,  420,  419,  418,  417,  416,  415,  414,  413,  412,
+      411,  410,  409,  408,  407,  406,  405,  404,  403,  402,
+      401,  400,  399,  398,  397,  396,  395,  394,  393,  392,
+      391,  390,  163,  385,  384,  383,  382,  381,  380,  375,
+      374,  373,  370,  369,  368,  367,  266,  366,  365,  364,
+      363,  362,  361,  360,  359,  358,  357,  356,  355,  354,
+      353,  352,  351,  350,  349,  348,  347,  346,  343,  342,
+
+      341,  340,  339,  338,  337,  336,  335,  334,  333,  332,
+      331,  330,  329,  328,  327,  326,  325,  324,  323,  322,
+      321,  320,  319,  318,  317,  316,  315,  314,  313,  312,
+      311,  310,  309,  306,  296,  291,  290,  163,  163,  282,
+      281,  280,  277,  274,  273,  266,  265,  264,  263,  262,
+      259,  256,  255,  254,  251,  250,  249,  248,  244,  243,
+      242,  239,  238,  235,  232,  231,  230,  227,  226,  225,
+      224,  223,  218,  215,  214,  213,  212,  211,  211,  211,
+      211,  205,  195,  190,  189,  182,  165,  143,  142,  141,
+      103,  102,  101,   99,   98,   74,   73,   71,  609,   17,
+
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609,  609,  609,  609,  609,  609,  609,
+      609,  609,  609,  609
+    } ;
+
+static yyconst flex_int16_t yy_chk[955] =
+    {   0,
+        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,    4,   38,    5,    4,    5,    6,
+       30,    6,   53,  150,   41,    4,   30,   38,   41,   53,
+       43,   38,   41,   38,  606,  150,   43,    5,   41,   43,
+        6,    7,    7,    7,    7,    7,    7,    7,    7,    7,
+        7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
+
+        7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
+        7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
+        7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
+        7,    7,    7,    7,    7,   13,   13,   13,   13,   13,
+       13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
+       13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
+       13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
+       13,   13,   13,   13,   13,   13,   13,   13,   13,   13,
+       13,   13,   13,   13,   13,   13,   13,   13,   13,   15,
+       15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
+
+       15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
+       15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
+       15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
+       15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
+       15,   15,   15,   27,   27,   39,   45,   44,   54,  604,
+       54,   40,   79,   40,   45,   39,   40,   40,   27,   27,
+       40,   27,   44,   40,   27,   39,  126,   79,   27,   55,
+       27,   40,  126,   55,   27,   27,   27,   55,   47,   27,
+       27,   27,   28,   28,   28,   42,   47,   56,   56,   78,
+       28,   56,   47,   65,  116,   46,   42,  116,   42,   46,
+
+      123,   28,   78,   46,   46,   28,  602,  123,   42,   46,
+       28,   52,   65,   51,   28,   28,   28,   51,   52,   52,
+      106,   51,   51,  600,   82,   52,   52,   52,   81,   83,
+       52,   60,   82,   65,  167,  106,   75,   75,   81,   83,
+      108,   60,   60,   75,   83,   85,   81,   83,  108,   85,
+       60,  109,  132,  167,   75,  109,   60,   60,   75,   60,

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610081820.u98IKMWN097304>