source: other-projects/rsyntax-textarea/src/java/org/fife/ui/rsyntaxtextarea/modes/LispTokenMaker.java@ 25584

Last change on this file since 25584 was 25584, checked in by davidb, 12 years ago

Initial cut an a text edit area for GLI that supports color syntax highlighting

File size: 49.4 KB
Line 
1/* The following code was generated by JFlex 1.4.1 on 6/11/09 9:34 AM */
2
3/*
4 * 11/13/2004
5 *
6 * LispTokenMaker.java - Scanner for the Lisp programming language.
7 *
8 * This library is distributed under a modified BSD license. See the included
9 * RSyntaxTextArea.License.txt file for details.
10 */
11package org.fife.ui.rsyntaxtextarea.modes;
12
13import java.io.*;
14import javax.swing.text.Segment;
15
16import org.fife.ui.rsyntaxtextarea.*;
17
18
19/**
20 * Scanner for the Lisp programming language.<p>
21 *
22 * This implementation was created using
23 * <a href="http://www.jflex.de/">JFlex</a> 1.4.1; however, the generated file
24 * was modified for performance. Memory allocation needs to be almost
25 * completely removed to be competitive with the handwritten lexers (subclasses
26 * of <code>AbstractTokenMaker</code>, so this class has been modified so that
27 * Strings are never allocated (via yytext()), and the scanner never has to
28 * worry about refilling its buffer (needlessly copying chars around).
29 * We can achieve this because RText always scans exactly 1 line of tokens at a
30 * time, and hands the scanner this line as an array of characters (a Segment
31 * really). Since tokens contain pointers to char arrays instead of Strings
32 * holding their contents, there is no need for allocating new memory for
33 * Strings.<p>
34 *
35 * The actual algorithm generated for scanning has, of course, not been
36 * modified.<p>
37 *
38 * If you wish to regenerate this file yourself, keep in mind the following:
39 * <ul>
40 * <li>The generated LispTokenMaker.java</code> file will contain two
41 * definitions of both <code>zzRefill</code> and <code>yyreset</code>.
42 * You should hand-delete the second of each definition (the ones
43 * generated by the lexer), as these generated methods modify the input
44 * buffer, which we'll never have to do.</li>
45 * <li>You should also change the declaration/definition of zzBuffer to NOT
46 * be initialized. This is a needless memory allocation for us since we
47 * will be pointing the array somewhere else anyway.</li>
48 * <li>You should NOT call <code>yylex()</code> on the generated scanner
49 * directly; rather, you should use <code>getTokenList</code> as you would
50 * with any other <code>TokenMaker</code> instance.</li>
51 * </ul>
52 *
53 * @author Robert Futrell
54 * @version 0.5
55 *
56 */
57
58public class LispTokenMaker extends AbstractJFlexTokenMaker {
59
60 /** This character denotes the end of file */
61 public static final int YYEOF = -1;
62
63 /** initial size of the lookahead buffer */
64 private static final int ZZ_BUFFERSIZE = 16384;
65
66 /** lexical states */
67 public static final int EOL_COMMENT = 3;
68 public static final int STRING = 1;
69 public static final int YYINITIAL = 0;
70 public static final int MLC = 2;
71
72 /**
73 * Translates characters to character classes
74 */
75 private static final String ZZ_CMAP_PACKED =
76 "\11\0\1\14\1\13\1\0\1\14\1\10\22\0\1\14\1\34\1\73"+
77 "\1\11\1\1\1\34\1\37\1\42\2\25\1\32\1\26\1\42\1\23"+
78 "\1\24\1\35\1\4\1\71\1\71\5\6\2\3\1\40\1\16\1\27"+
79 "\1\30\1\33\1\36\1\41\3\5\1\21\1\22\1\21\5\1\1\20"+
80 "\13\1\1\17\2\1\1\42\1\12\1\42\1\31\1\2\1\0\1\56"+
81 "\1\64\1\55\1\54\1\52\1\47\1\61\1\43\1\50\1\1\1\67"+
82 "\1\51\1\63\1\60\1\57\1\45\1\72\1\62\1\46\1\44\1\7"+
83 "\1\70\1\53\1\66\1\65\1\1\1\10\1\15\1\10\1\36\uff81\0";
84
85 /**
86 * Translates characters to character classes
87 */
88 private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED);
89
90 /**
91 * Translates DFA states to action switch labels.
92 */
93 private static final int [] ZZ_ACTION = zzUnpackAction();
94
95 private static final String ZZ_ACTION_PACKED_0 =
96 "\4\0\1\1\1\2\2\3\1\2\2\1\1\4\1\5"+
97 "\1\6\1\7\1\6\1\1\1\10\5\6\17\2\1\11"+
98 "\1\12\1\13\1\14\1\15\1\12\1\16\5\12\1\17"+
99 "\3\12\1\1\1\20\1\3\1\21\1\20\1\21\1\20"+
100 "\1\22\1\20\1\2\1\23\1\0\1\6\10\2\1\24"+
101 "\14\2\1\24\12\2\1\13\1\25\10\0\1\1\1\21"+
102 "\1\0\2\22\12\2\1\0\1\2\1\24\13\2\1\0"+
103 "\1\24\16\2\10\0\1\1\7\2\1\24\3\2\1\0"+
104 "\20\2\3\0\11\2\2\0\1\26\2\0\1\27\1\1"+
105 "\10\2\1\0\3\2\2\0\13\2\3\0\5\2\4\0"+
106 "\1\1\5\2\1\0\1\2\10\0\12\2\3\0\1\24"+
107 "\2\2\1\0\1\2\16\0\3\2\1\0\4\2\4\0"+
108 "\2\2\21\0\2\2\3\0\2\2\4\0\1\2\21\0"+
109 "\1\2\5\0\2\2\23\0\1\2\201\0";
110
111 private static int [] zzUnpackAction() {
112 int [] result = new int[512];
113 int offset = 0;
114 offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
115 return result;
116 }
117
118 private static int zzUnpackAction(String packed, int offset, int [] result) {
119 int i = 0; /* index in packed string */
120 int j = offset; /* index in unpacked array */
121 int l = packed.length();
122 while (i < l) {
123 int count = packed.charAt(i++);
124 int value = packed.charAt(i++);
125 do result[j++] = value; while (--count > 0);
126 }
127 return j;
128 }
129
130
131 /**
132 * Translates a state to a row index in the transition table
133 */
134 private static final int [] ZZ_ROWMAP = zzUnpackRowMap();
135
136 private static final String ZZ_ROWMAP_PACKED_0 =
137 "\0\0\0\74\0\170\0\264\0\360\0\u012c\0\u0168\0\u01a4"+
138 "\0\u01e0\0\u021c\0\u0258\0\u021c\0\u0294\0\u02d0\0\u021c\0\u030c"+
139 "\0\u0348\0\u021c\0\u0384\0\u03c0\0\u03fc\0\u021c\0\u0438\0\u0474"+
140 "\0\u04b0\0\u04ec\0\u0528\0\u0564\0\u05a0\0\u05dc\0\u0618\0\u0654"+
141 "\0\u0690\0\u06cc\0\u0708\0\u0744\0\u0780\0\u07bc\0\u021c\0\u07f8"+
142 "\0\u0834\0\u021c\0\u021c\0\u0870\0\u021c\0\u08ac\0\u08e8\0\u0924"+
143 "\0\u0960\0\u099c\0\u021c\0\u09d8\0\u0a14\0\u0a50\0\u0a8c\0\u0ac8"+
144 "\0\u0ac8\0\u0ac8\0\u0b04\0\u0b40\0\u0b7c\0\u0bb8\0\u0bf4\0\u0c30"+
145 "\0\u021c\0\u02d0\0\u0c6c\0\u0ca8\0\u0ce4\0\u0d20\0\u0d5c\0\u0d98"+
146 "\0\u0dd4\0\u0e10\0\u0e4c\0\u012c\0\u0e88\0\u0ec4\0\u0f00\0\u0f3c"+
147 "\0\u0f78\0\u0fb4\0\u0ff0\0\u102c\0\u1068\0\u10a4\0\u10e0\0\u111c"+
148 "\0\u1158\0\u1194\0\u11d0\0\u120c\0\u1248\0\u1284\0\u12c0\0\u12fc"+
149 "\0\u1338\0\u1374\0\u13b0\0\u021c\0\u021c\0\u13ec\0\u1428\0\u1464"+
150 "\0\u14a0\0\u14dc\0\u1518\0\u1554\0\u1590\0\u15cc\0\u1608\0\u1644"+
151 "\0\u0ac8\0\u1680\0\u16bc\0\u16f8\0\u1734\0\u1770\0\u17ac\0\u17e8"+
152 "\0\u1824\0\u1860\0\u189c\0\u18d8\0\u1914\0\u1950\0\u198c\0\u19c8"+
153 "\0\u1a04\0\u1a40\0\u1a7c\0\u1ab8\0\u1af4\0\u1b30\0\u1b6c\0\u1ba8"+
154 "\0\u1be4\0\u1c20\0\u1c5c\0\u021c\0\u1c98\0\u1cd4\0\u1d10\0\u1d4c"+
155 "\0\u1d88\0\u1dc4\0\u1e00\0\u1e3c\0\u1e78\0\u1eb4\0\u1ef0\0\u1f2c"+
156 "\0\u1f68\0\u1fa4\0\u1fe0\0\u201c\0\u2058\0\u2094\0\u20d0\0\u210c"+
157 "\0\u2148\0\u2184\0\u21c0\0\u21fc\0\u2238\0\u2274\0\u22b0\0\u22ec"+
158 "\0\u2328\0\u2364\0\u23a0\0\u23dc\0\u2418\0\u2454\0\u2490\0\u24cc"+
159 "\0\u2508\0\u2544\0\u2580\0\u25bc\0\u25f8\0\u2634\0\u2670\0\u26ac"+
160 "\0\u26e8\0\u2724\0\u2760\0\u279c\0\u27d8\0\u2814\0\u2850\0\u288c"+
161 "\0\u28c8\0\u2904\0\u2940\0\u297c\0\u29b8\0\u29f4\0\u2a30\0\u2a6c"+
162 "\0\u2aa8\0\u2ae4\0\u2b20\0\u2b5c\0\u2b98\0\u2bd4\0\u2c10\0\u2c4c"+
163 "\0\u2c88\0\u2cc4\0\u2d00\0\u2d3c\0\u2d78\0\u2db4\0\u2df0\0\u2e2c"+
164 "\0\u2e68\0\u2ea4\0\u2ee0\0\u2f1c\0\u2f58\0\u2f94\0\u2fd0\0\u300c"+
165 "\0\u3048\0\u3084\0\u30c0\0\u30fc\0\u3138\0\u3174\0\u31b0\0\u31ec"+
166 "\0\u3228\0\u3264\0\u32a0\0\u32dc\0\u3318\0\u3354\0\u3390\0\u33cc"+
167 "\0\u3408\0\u3444\0\u3480\0\u34bc\0\u2bd4\0\u34f8\0\u2c88\0\u3534"+
168 "\0\u3570\0\u35ac\0\u35e8\0\u3624\0\u3660\0\u369c\0\u36d8\0\u3714"+
169 "\0\u3750\0\u378c\0\u37c8\0\u3804\0\u3840\0\u387c\0\u38b8\0\u38f4"+
170 "\0\u3930\0\u396c\0\u39a8\0\u39e4\0\u3a20\0\u3a5c\0\u3a98\0\u3ad4"+
171 "\0\u3b10\0\u3b4c\0\u3b88\0\u3bc4\0\u3c00\0\u3c3c\0\u3c78\0\u3cb4"+
172 "\0\u3cf0\0\u3d2c\0\u3d68\0\u3da4\0\u3de0\0\u3e1c\0\u3e58\0\u3e94"+
173 "\0\u3ed0\0\u3f0c\0\u3f48\0\u3f84\0\u3fc0\0\u3ffc\0\u4038\0\u4074"+
174 "\0\u40b0\0\u40ec\0\u4128\0\u4164\0\u41a0\0\u41dc\0\u4218\0\u4254"+
175 "\0\u4290\0\u42cc\0\u4308\0\u4344\0\u4380\0\u43bc\0\u43f8\0\u4434"+
176 "\0\u4470\0\u44ac\0\u44e8\0\u4524\0\u4560\0\u459c\0\u45d8\0\u4614"+
177 "\0\u4650\0\u468c\0\u46c8\0\u4704\0\u4740\0\u477c\0\u47b8\0\u47f4"+
178 "\0\u4830\0\u486c\0\u48a8\0\u48e4\0\u4920\0\u495c\0\u4998\0\u49d4"+
179 "\0\u4a10\0\u4a4c\0\u4a88\0\u4ac4\0\u4b00\0\u4b3c\0\u4b78\0\u4bb4"+
180 "\0\u4bf0\0\u4c2c\0\u4c68\0\u4ca4\0\u4ce0\0\u4d1c\0\u4d58\0\u4d94"+
181 "\0\u4dd0\0\u4e0c\0\u4e48\0\u4e84\0\u4ec0\0\u4efc\0\u4f38\0\u4f74"+
182 "\0\u4fb0\0\u4fec\0\u5028\0\u5064\0\u50a0\0\u50dc\0\u5118\0\u5154"+
183 "\0\u5190\0\u51cc\0\u5208\0\u5244\0\u5280\0\u52bc\0\u52f8\0\u5334"+
184 "\0\u5370\0\u53ac\0\u53e8\0\u5424\0\u5460\0\u549c\0\u54d8\0\u5514"+
185 "\0\u5550\0\u558c\0\u55c8\0\u5604\0\u5640\0\u567c\0\u56b8\0\u56f4"+
186 "\0\u5730\0\u576c\0\u57a8\0\u57e4\0\u5820\0\u585c\0\u5898\0\u58d4"+
187 "\0\u5910\0\u594c\0\u5988\0\u59c4\0\u5a00\0\u5a3c\0\u5a78\0\u5ab4"+
188 "\0\u5af0\0\u5b2c\0\u5b68\0\u5ba4\0\u5be0\0\u5c1c\0\u5c58\0\u5c94"+
189 "\0\u5cd0\0\u5d0c\0\u5d48\0\u5d84\0\u5dc0\0\u5dfc\0\u5e38\0\u5e74"+
190 "\0\u5eb0\0\u5eec\0\u5f28\0\u5f64\0\u5fa0\0\u5fdc\0\u6018\0\u6054"+
191 "\0\u6090\0\u60cc\0\u6108\0\u6144\0\u6180\0\u61bc\0\u61f8\0\u6234"+
192 "\0\u6270\0\u62ac\0\u62e8\0\u6324\0\u6360\0\u639c\0\u63d8\0\u6414"+
193 "\0\u6450\0\u648c\0\u64c8\0\u6504\0\u6540\0\u657c\0\u65b8\0\u65f4"+
194 "\0\u6630\0\u666c\0\u66a8\0\u66e4\0\u6720\0\u675c\0\u6798\0\u67d4"+
195 "\0\u6810\0\u684c\0\u6888\0\u68c4\0\u6900\0\u693c\0\u6978\0\u69b4"+
196 "\0\u69f0\0\u6a2c\0\u6a68\0\u6aa4\0\u6ae0\0\u6b1c\0\u6b58\0\u6b94"+
197 "\0\u6bd0\0\u6c0c\0\u6c48\0\u6c84\0\u6cc0\0\u6cfc\0\u6d38\0\u6d74"+
198 "\0\u6db0\0\u6dec\0\u6e28\0\u6e64\0\u6ea0\0\u6edc\0\u6f18\0\u6f54"+
199 "\0\u6f90\0\u6fcc\0\u7008\0\u7044\0\u7080\0\u70bc\0\u70f8\0\u7134"+
200 "\0\u7170\0\u71ac\0\u71e8\0\u7224\0\u7260\0\u729c\0\u72d8\0\u7314";
201
202 private static int [] zzUnpackRowMap() {
203 int [] result = new int[512];
204 int offset = 0;
205 offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
206 return result;
207 }
208
209 private static int zzUnpackRowMap(String packed, int offset, int [] result) {
210 int i = 0; /* index in packed string */
211 int j = offset; /* index in unpacked array */
212 int l = packed.length();
213 while (i < l) {
214 int high = packed.charAt(i++) << 16;
215 result[j++] = high | packed.charAt(i++);
216 }
217 return j;
218 }
219
220 /**
221 * The transition table of the DFA
222 */
223 private static final int [] ZZ_TRANS = zzUnpackTrans();
224
225 private static final String ZZ_TRANS_PACKED_0 =
226 "\1\5\2\6\1\7\1\10\1\6\1\7\1\11\1\12"+
227 "\1\13\1\5\1\14\1\15\1\16\1\17\4\6\1\20"+
228 "\1\21\1\22\1\23\1\24\3\16\1\25\2\16\1\26"+
229 "\1\27\1\26\1\5\1\12\1\30\1\31\1\32\1\33"+
230 "\1\34\1\35\1\36\1\37\1\40\1\41\1\42\1\43"+
231 "\3\6\1\44\1\45\1\46\4\6\1\7\1\6\1\47"+
232 "\12\50\1\51\1\52\57\50\1\53\13\54\1\55\1\54"+
233 "\1\56\25\54\1\57\3\54\1\60\3\54\1\61\20\54"+
234 "\13\62\1\63\27\62\1\64\3\62\1\65\3\62\1\66"+
235 "\20\62\10\5\1\0\2\5\4\0\4\5\16\0\1\5"+
236 "\1\0\30\5\1\0\1\5\7\6\1\0\1\5\1\67"+
237 "\4\0\4\6\16\0\1\5\1\0\30\6\1\0\3\70"+
238 "\2\7\1\70\1\7\1\70\1\0\2\70\4\0\1\70"+
239 "\1\71\1\72\1\73\1\0\1\74\14\0\1\70\1\0"+
240 "\4\70\1\72\1\70\1\71\1\73\1\70\1\72\14\70"+
241 "\1\7\1\70\1\0\3\70\1\75\1\76\1\70\1\76"+
242 "\1\70\1\0\2\70\4\0\1\77\1\71\1\72\1\73"+
243 "\1\0\1\74\14\0\1\70\1\0\4\70\1\72\1\70"+
244 "\1\71\1\73\1\70\1\72\11\70\1\77\2\70\1\76"+
245 "\1\70\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
246 "\4\6\16\0\1\5\1\0\15\6\1\100\12\6\75\0"+
247 "\10\5\1\0\2\5\2\0\1\101\1\0\4\5\16\0"+
248 "\1\5\1\0\30\5\15\0\1\15\107\0\1\26\66\0"+
249 "\1\26\4\0\1\26\46\0\2\74\1\0\1\74\62\0"+
250 "\1\74\30\0\1\26\1\0\1\26\72\0\1\102\1\26"+
251 "\73\0\1\26\2\0\1\103\70\0\1\26\6\0\1\26"+
252 "\34\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
253 "\16\0\1\5\1\0\13\6\1\104\14\6\1\0\1\5"+
254 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
255 "\1\0\1\105\12\6\1\106\6\6\1\107\5\6\1\0"+
256 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
257 "\1\5\1\0\17\6\1\110\10\6\1\0\1\5\7\6"+
258 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
259 "\5\6\1\111\14\6\1\112\5\6\1\0\1\5\7\6"+
260 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
261 "\6\6\1\113\21\6\1\0\1\5\7\6\1\0\1\5"+
262 "\1\67\4\0\4\6\16\0\1\5\1\0\4\6\1\114"+
263 "\10\6\1\115\1\116\11\6\1\0\1\5\7\6\1\0"+
264 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\7\6"+
265 "\1\117\3\6\1\120\1\121\13\6\1\0\1\5\7\6"+
266 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
267 "\1\6\1\122\10\6\1\123\4\6\1\124\5\6\1\125"+
268 "\2\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
269 "\4\6\16\0\1\5\1\0\1\126\4\6\1\127\22\6"+
270 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
271 "\16\0\1\5\1\0\7\6\1\130\4\6\1\131\13\6"+
272 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
273 "\16\0\1\5\1\0\1\6\1\122\5\6\1\132\2\6"+
274 "\1\123\1\133\1\134\13\6\1\0\1\5\7\6\1\0"+
275 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\3\6"+
276 "\1\135\15\6\1\136\6\6\1\0\1\5\7\6\1\0"+
277 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\7\6"+
278 "\1\137\20\6\1\0\1\5\6\6\1\140\1\0\1\5"+
279 "\1\67\4\0\4\6\16\0\1\5\1\0\13\6\1\141"+
280 "\14\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
281 "\4\6\16\0\1\5\1\0\6\6\1\142\10\6\1\143"+
282 "\10\6\1\0\12\50\2\0\57\50\1\0\13\144\1\0"+
283 "\60\144\13\54\1\0\1\54\1\0\25\54\1\0\3\54"+
284 "\1\0\3\54\1\0\20\54\11\0\1\145\126\0\1\146"+
285 "\73\0\1\147\3\0\1\150\76\0\1\151\20\0\13\62"+
286 "\1\0\27\62\1\0\3\62\1\0\3\62\1\0\20\62"+
287 "\44\0\1\152\73\0\1\153\3\0\1\154\76\0\1\155"+
288 "\20\0\7\5\1\156\1\0\2\5\4\0\4\5\16\0"+
289 "\1\5\1\0\30\5\1\0\10\70\1\0\2\70\4\0"+
290 "\4\70\16\0\1\70\1\0\30\70\1\0\3\70\2\157"+
291 "\1\70\1\157\1\70\1\0\2\70\4\0\4\70\1\160"+
292 "\2\0\1\160\12\0\1\70\1\0\26\70\1\157\1\70"+
293 "\1\0\3\70\2\74\1\70\1\74\1\70\1\0\2\70"+
294 "\4\0\2\70\1\72\1\73\16\0\1\70\1\0\4\70"+
295 "\1\72\2\70\1\73\1\70\1\72\14\70\1\74\1\70"+
296 "\1\0\3\70\2\75\1\70\1\75\1\70\1\0\2\70"+
297 "\4\0\2\70\1\72\1\73\1\0\1\74\14\0\1\70"+
298 "\1\0\4\70\1\72\2\70\1\73\1\70\1\72\14\70"+
299 "\1\75\1\70\1\0\3\70\1\75\1\76\1\70\1\76"+
300 "\1\70\1\0\2\70\4\0\1\70\1\161\1\72\1\73"+
301 "\1\0\1\74\14\0\1\70\1\0\4\70\1\72\1\70"+
302 "\1\161\1\73\1\70\1\72\14\70\1\76\1\70\1\0"+
303 "\3\70\4\162\1\70\1\0\2\70\4\0\2\70\2\162"+
304 "\16\0\1\70\1\0\4\70\1\162\2\70\1\162\1\70"+
305 "\3\162\5\70\1\162\4\70\1\162\1\70\1\0\1\5"+
306 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
307 "\1\0\6\6\1\163\1\6\1\164\17\6\31\0\1\26"+
308 "\2\0\1\16\40\0\1\5\7\6\1\0\1\5\1\67"+
309 "\4\0\4\6\16\0\1\5\1\0\15\6\1\165\12\6"+
310 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
311 "\16\0\1\5\1\0\7\6\1\114\7\6\1\166\10\6"+
312 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
313 "\16\0\1\5\1\0\16\6\1\167\11\6\1\0\1\5"+
314 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
315 "\1\0\2\6\1\170\25\6\1\0\1\5\7\6\1\0"+
316 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\14\6"+
317 "\1\171\13\6\1\0\1\5\7\6\1\0\1\5\1\67"+
318 "\4\0\4\6\16\0\1\5\1\0\16\6\1\172\11\6"+
319 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
320 "\16\0\1\5\1\0\20\6\1\173\7\6\1\0\1\5"+
321 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
322 "\1\0\7\6\1\174\20\6\1\0\1\5\7\6\1\0"+
323 "\1\5\1\67\4\0\4\6\1\175\15\0\1\5\1\0"+
324 "\30\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
325 "\4\6\16\0\1\5\1\0\15\6\1\176\12\6\1\0"+
326 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
327 "\1\5\1\0\1\6\1\177\26\6\1\0\1\5\7\6"+
328 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
329 "\20\6\1\200\1\201\6\6\1\0\1\5\7\6\1\0"+
330 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\12\6"+
331 "\1\202\1\6\1\203\13\6\1\0\1\5\7\6\1\0"+
332 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\22\6"+
333 "\1\107\5\6\1\0\1\5\7\6\1\0\1\5\1\67"+
334 "\4\0\4\6\16\0\1\5\1\0\13\6\1\204\14\6"+
335 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
336 "\16\0\1\5\1\0\17\6\1\205\10\6\1\0\1\5"+
337 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
338 "\1\0\13\6\1\206\14\6\1\0\1\5\7\6\1\0"+
339 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\7\6"+
340 "\1\207\20\6\1\0\1\5\7\6\1\0\1\5\1\67"+
341 "\4\0\4\6\16\0\1\5\1\0\1\6\1\210\26\6"+
342 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
343 "\16\0\1\5\1\0\4\6\1\211\5\6\1\212\15\6"+
344 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
345 "\1\213\6\0\1\214\6\0\1\5\1\0\1\6\1\215"+
346 "\4\6\1\216\21\6\1\0\1\5\7\6\1\0\1\5"+
347 "\1\67\4\0\4\6\16\0\1\5\1\0\17\6\1\124"+
348 "\10\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
349 "\4\6\16\0\1\5\1\0\1\6\1\217\1\6\1\220"+
350 "\24\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
351 "\4\6\16\0\1\5\1\0\15\6\1\221\12\6\1\0"+
352 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
353 "\1\5\1\0\3\6\1\222\24\6\1\0\1\5\7\6"+
354 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
355 "\14\6\1\223\13\6\1\0\1\5\7\6\1\0\1\5"+
356 "\1\67\4\0\4\6\16\0\1\5\1\0\1\6\1\224"+
357 "\1\6\1\225\23\6\1\226\1\0\1\5\7\6\1\0"+
358 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\6\6"+
359 "\1\227\21\6\1\0\1\5\7\6\1\0\1\5\1\67"+
360 "\4\0\4\6\16\0\1\5\1\0\12\6\1\230\15\6"+
361 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
362 "\16\0\1\5\1\0\14\6\1\231\13\6\1\0\1\5"+
363 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
364 "\1\0\7\6\1\232\20\6\45\0\1\233\74\0\1\234"+
365 "\77\0\1\235\75\0\1\236\64\0\1\237\74\0\1\240"+
366 "\77\0\1\241\75\0\1\242\20\0\3\5\4\243\1\5"+
367 "\1\0\2\5\4\0\2\5\2\243\16\0\1\5\1\0"+
368 "\4\5\1\243\2\5\1\243\1\5\3\243\5\5\1\243"+
369 "\4\5\1\243\1\5\1\0\3\70\2\157\1\70\1\157"+
370 "\1\70\1\0\2\70\4\0\2\70\1\72\1\70\16\0"+
371 "\1\70\1\0\4\70\1\72\4\70\1\72\14\70\1\157"+
372 "\1\70\4\0\2\157\1\0\1\157\62\0\1\157\2\0"+
373 "\3\70\4\162\1\70\1\0\2\70\4\0\1\70\1\161"+
374 "\2\162\16\0\1\70\1\0\4\70\1\162\1\70\1\161"+
375 "\1\162\1\70\3\162\5\70\1\162\4\70\1\162\1\70"+
376 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
377 "\16\0\1\5\1\0\7\6\1\244\20\6\1\0\1\5"+
378 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
379 "\1\0\5\6\1\245\22\6\1\0\1\5\7\6\1\0"+
380 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\11\6"+
381 "\1\246\16\6\1\0\1\5\7\6\1\0\1\5\1\67"+
382 "\4\0\4\6\16\0\1\5\1\0\14\6\1\247\13\6"+
383 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
384 "\16\0\1\5\1\0\21\6\1\250\6\6\1\0\1\5"+
385 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
386 "\1\0\7\6\1\251\20\6\1\0\1\5\7\6\1\0"+
387 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\12\6"+
388 "\1\252\3\6\1\253\6\6\1\254\2\6\1\0\1\5"+
389 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
390 "\1\0\15\6\1\255\12\6\1\0\1\5\7\6\1\0"+
391 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\21\6"+
392 "\1\256\6\6\1\0\1\5\7\6\1\0\1\5\1\67"+
393 "\4\0\4\6\16\0\1\5\1\0\1\6\1\114\26\6"+
394 "\46\0\1\257\26\0\1\5\7\6\1\0\1\5\1\67"+
395 "\4\0\4\6\16\0\1\5\1\0\14\6\1\260\13\6"+
396 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
397 "\7\0\1\214\6\0\1\5\1\0\30\6\1\0\1\5"+
398 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
399 "\1\0\21\6\1\261\6\6\1\0\1\5\7\6\1\0"+
400 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\7\6"+
401 "\1\262\20\6\1\0\1\5\7\6\1\0\1\5\1\67"+
402 "\4\0\4\6\16\0\1\5\1\0\13\6\1\263\14\6"+
403 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
404 "\16\0\1\5\1\0\2\6\1\114\25\6\1\0\1\5"+
405 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
406 "\1\0\3\6\1\220\24\6\1\0\1\5\7\6\1\0"+
407 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\14\6"+
408 "\1\264\13\6\1\0\1\5\7\6\1\0\1\5\1\67"+
409 "\4\0\4\6\16\0\1\5\1\0\6\6\1\265\21\6"+
410 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
411 "\16\0\1\5\1\0\15\6\1\114\12\6\1\0\1\5"+
412 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
413 "\1\0\1\266\27\6\1\0\1\5\6\6\1\207\1\0"+
414 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\1\6"+
415 "\1\267\1\270\1\271\1\6\1\272\4\6\1\273\3\6"+
416 "\1\274\1\6\1\275\4\6\1\276\2\6\1\0\1\5"+
417 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
418 "\1\0\6\6\1\277\21\6\47\0\1\300\3\0\1\301"+
419 "\3\0\1\302\15\0\1\5\7\6\1\0\1\5\1\67"+
420 "\4\0\4\6\16\0\1\5\1\0\5\6\1\303\22\6"+
421 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
422 "\16\0\1\5\1\0\5\6\1\304\22\6\1\0\1\5"+
423 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
424 "\1\0\12\6\1\305\15\6\1\0\1\5\7\6\1\0"+
425 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\7\6"+
426 "\1\114\20\6\1\0\1\5\7\6\1\0\1\5\1\67"+
427 "\4\0\4\6\16\0\1\5\1\0\11\6\1\114\16\6"+
428 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
429 "\16\0\1\5\1\0\7\6\1\223\20\6\1\0\1\5"+
430 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
431 "\1\0\17\6\1\174\10\6\1\0\1\5\6\6\1\306"+
432 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
433 "\30\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
434 "\4\6\16\0\1\5\1\0\1\6\1\307\26\6\1\0"+
435 "\1\5\6\6\1\310\1\0\1\5\1\67\4\0\4\6"+
436 "\16\0\1\5\1\0\30\6\1\0\1\5\7\6\1\0"+
437 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\1\6"+
438 "\1\311\26\6\1\0\1\5\7\6\1\0\1\5\1\67"+
439 "\4\0\4\6\16\0\1\5\1\0\17\6\1\312\10\6"+
440 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
441 "\16\0\1\5\1\0\12\6\1\313\15\6\1\0\1\5"+
442 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
443 "\1\0\13\6\1\313\14\6\46\0\1\314\66\0\1\315"+
444 "\105\0\1\234\45\0\1\316\114\0\1\317\66\0\1\320"+
445 "\105\0\1\240\45\0\1\321\47\0\3\5\4\322\1\5"+
446 "\1\0\2\5\4\0\2\5\2\322\16\0\1\5\1\0"+
447 "\4\5\1\322\2\5\1\322\1\5\3\322\5\5\1\322"+
448 "\4\5\1\322\1\5\1\0\1\5\7\6\1\0\1\5"+
449 "\1\67\4\0\4\6\16\0\1\5\1\0\3\6\1\323"+
450 "\24\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
451 "\4\6\16\0\1\5\1\0\15\6\1\324\12\6\1\0"+
452 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
453 "\1\5\1\0\6\6\1\325\21\6\1\0\1\5\7\6"+
454 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
455 "\10\6\1\114\17\6\1\0\1\5\7\6\1\0\1\5"+
456 "\1\67\4\0\4\6\16\0\1\5\1\0\14\6\1\326"+
457 "\13\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
458 "\4\6\16\0\1\5\1\0\12\6\1\123\15\6\1\0"+
459 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
460 "\1\5\1\0\6\6\1\327\21\6\1\0\1\5\7\6"+
461 "\1\0\1\5\1\67\4\0\4\6\7\0\1\214\6\0"+
462 "\1\5\1\0\15\6\1\114\7\6\2\114\1\6\1\0"+
463 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
464 "\1\5\1\0\5\6\1\330\22\6\1\0\1\5\7\6"+
465 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
466 "\13\6\1\331\14\6\1\0\1\5\7\6\1\0\1\5"+
467 "\1\67\4\0\4\6\16\0\1\5\1\0\14\6\1\332"+
468 "\13\6\57\0\1\333\15\0\1\5\7\6\1\0\1\5"+
469 "\1\67\4\0\4\6\16\0\1\5\1\0\17\6\1\334"+
470 "\10\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
471 "\4\6\16\0\1\5\1\0\11\6\1\335\16\6\1\0"+
472 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
473 "\1\5\1\0\6\6\1\323\21\6\1\0\1\5\7\6"+
474 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
475 "\6\6\1\336\21\6\1\0\1\5\7\6\1\0\1\5"+
476 "\1\67\4\0\4\6\16\0\1\5\1\0\17\6\1\114"+
477 "\10\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
478 "\4\6\1\337\15\0\1\5\1\0\30\6\1\0\1\5"+
479 "\7\6\1\0\1\5\1\67\4\0\4\6\1\340\15\0"+
480 "\1\5\1\0\30\6\1\0\1\5\7\6\1\0\1\5"+
481 "\1\67\4\0\4\6\16\0\1\5\1\0\22\6\1\341"+
482 "\5\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
483 "\4\6\16\0\1\5\1\0\13\6\1\342\14\6\1\0"+
484 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
485 "\1\5\1\0\1\6\1\343\5\6\1\344\20\6\1\0"+
486 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
487 "\1\5\1\0\15\6\1\345\12\6\1\0\1\5\7\6"+
488 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
489 "\6\6\1\346\5\6\1\347\13\6\1\0\1\5\7\6"+
490 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
491 "\7\6\1\350\20\6\1\0\1\5\7\6\1\0\1\5"+
492 "\1\67\4\0\4\6\16\0\1\5\1\0\7\6\1\351"+
493 "\3\6\1\352\14\6\1\0\1\5\7\6\1\0\1\5"+
494 "\1\67\4\0\4\6\16\0\1\5\1\0\13\6\1\264"+
495 "\14\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
496 "\4\6\16\0\1\5\1\0\13\6\1\353\14\6\66\0"+
497 "\1\354\74\0\1\355\56\0\1\356\22\0\1\5\7\6"+
498 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
499 "\20\6\1\357\7\6\1\0\1\5\7\6\1\0\1\5"+
500 "\1\67\4\0\4\6\16\0\1\5\1\0\3\6\1\174"+
501 "\24\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
502 "\4\6\16\0\1\5\1\0\1\114\27\6\1\0\1\5"+
503 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
504 "\1\0\17\6\1\360\10\6\1\0\1\5\7\6\1\0"+
505 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\13\6"+
506 "\1\361\14\6\1\0\1\5\7\6\1\0\1\5\1\67"+
507 "\4\0\4\6\16\0\1\5\1\0\5\6\1\362\22\6"+
508 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
509 "\16\0\1\5\1\0\5\6\1\363\22\6\1\0\1\5"+
510 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
511 "\1\0\14\6\1\34\13\6\1\0\1\5\7\6\1\0"+
512 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\24\6"+
513 "\1\114\3\6\41\0\1\315\5\0\1\234\62\0\1\364"+
514 "\37\0\1\316\1\365\5\316\1\0\1\365\4\0\1\365"+
515 "\4\316\4\365\1\0\1\365\1\0\1\365\1\0\1\365"+
516 "\1\316\5\365\30\316\41\0\1\320\5\0\1\240\62\0"+
517 "\1\366\37\0\1\321\1\367\5\321\1\0\1\367\4\0"+
518 "\1\367\4\321\4\367\1\0\1\367\1\0\1\367\1\0"+
519 "\1\367\1\321\5\367\30\321\1\0\3\5\4\370\1\5"+
520 "\1\0\2\5\4\0\2\5\2\370\16\0\1\5\1\0"+
521 "\4\5\1\370\2\5\1\370\1\5\3\370\5\5\1\370"+
522 "\4\5\1\370\1\5\1\0\1\5\7\6\1\0\1\5"+
523 "\1\67\4\0\4\6\16\0\1\5\1\0\3\6\1\114"+
524 "\24\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
525 "\4\6\16\0\1\5\1\0\11\6\1\371\16\6\1\0"+
526 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
527 "\1\5\1\0\7\6\1\372\20\6\1\0\1\5\7\6"+
528 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
529 "\11\6\1\373\16\6\1\0\1\5\7\6\1\0\1\5"+
530 "\1\67\4\0\4\6\16\0\1\5\1\0\13\6\1\374"+
531 "\14\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
532 "\4\6\16\0\1\5\1\0\11\6\1\220\16\6\1\0"+
533 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
534 "\1\5\1\0\6\6\1\114\21\6\1\0\1\5\7\6"+
535 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
536 "\6\6\1\375\21\6\56\0\1\376\16\0\1\5\7\6"+
537 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
538 "\7\6\1\377\20\6\1\0\1\5\7\6\1\0\1\5"+
539 "\1\67\4\0\4\6\16\0\1\5\1\0\13\6\1\114"+
540 "\14\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
541 "\4\6\16\0\1\5\1\0\6\6\1\373\21\6\54\0"+
542 "\1\u0100\63\0\1\u0101\1\0\1\u0102\1\u0103\1\0\1\u0104"+
543 "\4\0\1\u0105\1\u0106\1\u0107\14\0\1\5\7\6\1\0"+
544 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\2\6"+
545 "\1\220\25\6\1\0\1\5\7\6\1\0\1\5\1\67"+
546 "\4\0\4\6\16\0\1\5\1\0\12\6\1\u0108\4\6"+
547 "\1\u0109\10\6\1\0\1\5\7\6\1\0\1\5\1\67"+
548 "\4\0\4\6\16\0\1\5\1\0\17\6\1\u010a\10\6"+
549 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
550 "\16\0\1\5\1\0\1\6\1\u010b\26\6\1\0\1\5"+
551 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
552 "\1\0\7\6\1\u010c\20\6\1\0\1\5\7\6\1\0"+
553 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\13\6"+
554 "\1\244\14\6\1\0\1\5\7\6\1\0\1\5\1\67"+
555 "\4\0\4\6\16\0\1\5\1\0\15\6\1\u010d\12\6"+
556 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
557 "\16\0\1\5\1\0\15\6\1\u010e\12\6\1\0\1\5"+
558 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
559 "\1\0\1\6\1\u010f\26\6\1\0\1\5\7\6\1\0"+
560 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\12\6"+
561 "\1\u0110\15\6\1\0\1\5\7\6\1\0\1\5\1\67"+
562 "\4\0\4\6\16\0\1\5\1\0\5\6\1\u0111\11\6"+
563 "\1\220\10\6\64\0\1\u0112\54\0\1\u0113\100\0\1\u0114"+
564 "\22\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
565 "\16\0\1\5\1\0\7\6\1\323\20\6\1\0\1\5"+
566 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
567 "\1\0\15\6\1\u0115\12\6\1\0\1\5\7\6\1\0"+
568 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\17\6"+
569 "\1\u0116\10\6\1\0\1\5\7\6\1\0\1\5\1\67"+
570 "\4\0\4\6\16\0\1\5\1\0\17\6\1\220\10\6"+
571 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
572 "\16\0\1\5\1\0\2\6\1\u0117\25\6\36\0\1\316"+
573 "\73\0\1\321\36\0\3\5\4\6\1\5\1\0\2\5"+
574 "\4\0\2\5\2\6\16\0\1\5\1\0\4\5\1\6"+
575 "\2\5\1\6\1\5\3\6\5\5\1\6\4\5\1\6"+
576 "\1\5\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
577 "\4\6\1\u0118\15\0\1\5\1\0\30\6\1\0\1\5"+
578 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
579 "\1\0\17\6\1\u0119\10\6\1\0\1\5\7\6\1\0"+
580 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\22\6"+
581 "\1\114\5\6\1\0\1\5\7\6\1\0\1\5\1\67"+
582 "\4\0\4\6\16\0\1\5\1\0\5\6\1\u0111\22\6"+
583 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
584 "\1\u011a\15\0\1\5\1\0\30\6\70\0\1\u011b\4\0"+
585 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\1\u011c"+
586 "\15\0\1\5\1\0\30\6\44\0\1\u011d\106\0\1\u011e"+
587 "\73\0\1\u011f\61\0\1\u0120\3\0\1\u0121\1\u0122\102\0"+
588 "\1\u0123\72\0\1\u0124\71\0\1\u0125\25\0\1\u0126\35\0"+
589 "\1\u0127\26\0\1\5\7\6\1\0\1\5\1\67\4\0"+
590 "\4\6\16\0\1\5\1\0\24\6\1\u0128\3\6\1\0"+
591 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
592 "\1\5\1\0\13\6\1\u0129\14\6\1\0\1\5\6\6"+
593 "\1\u012a\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
594 "\1\0\30\6\1\0\1\5\7\6\1\0\1\5\1\67"+
595 "\4\0\4\6\16\0\1\5\1\0\4\6\1\114\23\6"+
596 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
597 "\1\u012b\15\0\1\5\1\0\30\6\1\0\1\5\7\6"+
598 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
599 "\3\6\1\u012c\24\6\1\0\1\5\7\6\1\0\1\5"+
600 "\1\67\4\0\4\6\16\0\1\5\1\0\7\6\1\u012d"+
601 "\20\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
602 "\4\6\16\0\1\5\1\0\1\u012e\27\6\1\0\1\5"+
603 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
604 "\1\0\17\6\1\u012f\10\6\1\0\1\5\7\6\1\0"+
605 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\20\6"+
606 "\1\114\7\6\65\0\1\u0130\61\0\1\u0131\44\0\1\u0132"+
607 "\50\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
608 "\1\u0133\15\0\1\5\1\0\30\6\1\0\1\5\7\6"+
609 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
610 "\1\6\1\u0134\26\6\1\0\1\5\7\6\1\0\1\5"+
611 "\1\67\4\0\4\6\16\0\1\5\1\0\6\6\1\u0135"+
612 "\21\6\46\0\1\u0136\26\0\1\5\7\6\1\0\1\5"+
613 "\1\67\4\0\4\6\1\u0137\15\0\1\5\1\0\30\6"+
614 "\64\0\1\u0138\66\0\1\u0139\67\0\1\u013a\73\0\1\u013b"+
615 "\67\0\1\u013c\102\0\1\u013d\74\0\1\u013e\100\0\1\u013f"+
616 "\67\0\1\u0140\61\0\1\u0141\106\0\1\u0142\2\0\1\u0143"+
617 "\65\0\1\u0144\62\0\1\u0145\101\0\1\u0146\21\0\1\5"+
618 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
619 "\1\0\13\6\1\u0147\14\6\1\0\1\5\7\6\1\0"+
620 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\20\6"+
621 "\1\u0148\7\6\1\0\1\5\7\6\1\0\1\5\1\67"+
622 "\4\0\4\6\16\0\1\5\1\0\12\6\1\174\15\6"+
623 "\47\0\1\u0149\6\0\1\u014a\5\0\1\u014b\10\0\1\5"+
624 "\7\6\1\0\1\5\1\67\4\0\4\6\16\0\1\5"+
625 "\1\0\1\6\1\u014c\26\6\1\0\1\5\7\6\1\0"+
626 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\17\6"+
627 "\1\u014d\10\6\1\0\1\5\7\6\1\0\1\5\1\67"+
628 "\4\0\4\6\16\0\1\5\1\0\14\6\1\221\13\6"+
629 "\1\0\1\5\7\6\1\0\1\5\1\67\4\0\4\6"+
630 "\16\0\1\5\1\0\14\6\1\114\13\6\60\0\1\u014e"+
631 "\76\0\1\u014f\57\0\1\300\74\0\1\u0150\24\0\1\5"+
632 "\7\6\1\0\1\5\1\67\4\0\4\6\1\u0151\15\0"+
633 "\1\5\1\0\30\6\1\0\1\5\7\6\1\0\1\5"+
634 "\1\67\4\0\4\6\16\0\1\5\1\0\7\6\1\u0152"+
635 "\20\6\63\0\1\u0153\66\0\1\u0154\6\0\1\u0155\65\0"+
636 "\1\u0156\76\0\1\u0157\74\0\1\u0158\71\0\1\214\56\0"+
637 "\1\u0159\117\0\1\u015a\64\0\1\u015b\60\0\1\u015c\72\0"+
638 "\1\u015d\36\0\1\u015e\140\0\1\u015f\64\0\1\u0160\100\0"+
639 "\1\u0161\66\0\1\u0162\106\0\1\u0163\13\0\1\5\7\6"+
640 "\1\0\1\5\1\67\4\0\4\6\16\0\1\5\1\0"+
641 "\16\6\1\220\11\6\1\0\1\5\7\6\1\0\1\5"+
642 "\1\67\4\0\4\6\16\0\1\5\1\0\7\6\1\u0164"+
643 "\20\6\53\0\1\u0165\12\0\1\u0166\65\0\1\u0167\66\0"+
644 "\1\u0168\4\0\1\u0169\14\0\1\5\7\6\1\0\1\5"+
645 "\1\67\4\0\4\6\16\0\1\5\1\0\13\6\1\u016a"+
646 "\14\6\1\0\1\5\7\6\1\0\1\5\1\67\4\0"+
647 "\4\6\16\0\1\5\1\0\5\6\1\u016b\22\6\52\0"+
648 "\1\u015d\102\0\1\u016c\75\0\1\u016d\66\0\1\u0154\2\0"+
649 "\1\u016e\3\0\1\u0155\7\0\1\5\7\6\1\0\1\5"+
650 "\1\67\4\0\4\6\1\u016f\15\0\1\5\1\0\30\6"+
651 "\60\0\1\u0170\72\0\1\u0171\65\0\1\u0172\100\0\1\u0173"+
652 "\70\0\1\214\103\0\1\u0174\34\0\1\u0175\126\0\1\u0176"+
653 "\71\0\1\u0177\70\0\1\u0178\70\0\1\214\71\0\1\u0179"+
654 "\77\0\1\u017a\73\0\1\u017b\71\0\1\u017c\34\0\1\u017d"+
655 "\107\0\1\u017e\50\0\1\5\7\6\1\0\1\5\1\67"+
656 "\4\0\4\6\16\0\1\5\1\0\1\6\1\u017f\26\6"+
657 "\45\0\1\u0180\112\0\1\u0181\70\0\1\u0182\2\0\1\u0183"+
658 "\54\0\1\u0184\103\0\1\u0185\17\0\1\5\7\6\1\0"+
659 "\1\5\1\67\4\0\4\6\16\0\1\5\1\0\15\6"+
660 "\1\174\12\6\1\0\1\5\7\6\1\0\1\5\1\67"+
661 "\4\0\4\6\16\0\1\5\1\0\12\6\1\114\15\6"+
662 "\57\0\1\356\74\0\1\u0186\72\0\1\u0187\105\0\1\u0188"+
663 "\47\0\1\u0189\75\0\1\u0157\105\0\1\u018a\75\0\1\u018b"+
664 "\70\0\1\u018c\60\0\1\u018d\110\0\1\u018e\70\0\1\u018f"+
665 "\67\0\1\u0190\44\0\1\u0191\114\0\1\u0192\100\0\1\u0193"+
666 "\70\0\1\u0174\71\0\1\u0194\75\0\1\u0195\1\u0196\24\0"+
667 "\1\5\7\6\1\0\1\5\1\67\4\0\4\6\16\0"+
668 "\1\5\1\0\7\6\1\264\20\6\50\0\1\u0197\110\0"+
669 "\1\u0198\63\0\1\u0199\64\0\1\u019a\71\0\1\u019b\100\0"+
670 "\1\u019c\106\0\1\214\73\0\1\u0157\66\0\1\u019d\67\0"+
671 "\1\u019e\75\0\1\214\76\0\1\u019f\76\0\1\u015d\67\0"+
672 "\1\u01a0\67\0\1\u01a1\103\0\1\u01a2\34\0\1\u01a3\117\0"+
673 "\1\u01a4\74\0\1\u01a5\101\0\1\u01a6\40\0\1\u01a7\114\0"+
674 "\1\u01a8\77\0\1\u01a9\46\0\1\u01aa\127\0\1\u01ab\64\0"+
675 "\1\u01ac\73\0\1\u01ad\102\0\1\u01ae\63\0\1\u01af\75\0"+
676 "\1\u01b0\77\0\1\u01b1\67\0\1\u01b2\106\0\1\u01b3\32\0"+
677 "\1\u01b4\124\0\1\u01b5\101\0\1\u01b6\73\0\1\u01b7\70\0"+
678 "\1\u01b8\60\0\1\u01b9\73\0\1\u01ba\111\0\1\u01bb\62\0"+
679 "\1\u0157\74\0\1\u01bc\72\0\1\u01bd\66\0\1\u01be\100\0"+
680 "\1\u01bf\76\0\1\u01c0\104\0\1\u01bd\15\0\1\u01c1\130\0"+
681 "\1\214\101\0\1\u01b1\72\0\1\u018e\72\0\1\u01c2\46\0"+
682 "\1\u01c3\122\0\1\u01c4\100\0\1\u01c5\74\0\1\u01c6\63\0"+
683 "\1\u01c7\102\0\1\u01c8\66\0\1\u01c9\107\0\1\u01ca\30\0"+
684 "\1\u01cb\120\0\1\u01cc\75\0\1\u01cd\44\0\1\u01ce\122\0"+
685 "\1\u01cf\65\0\1\u01d0\77\0\1\u01d1\71\0\1\u01d2\110\0"+
686 "\1\u01c8\33\0\1\u01d3\127\0\1\u01d4\37\0\1\u01d5\126\0"+
687 "\1\u0186\62\0\1\u01d6\111\0\1\u01d7\67\0\1\u013b\76\0"+
688 "\1\u01bd\66\0\1\u01d8\41\0\1\u01d9\122\0\1\u01da\100\0"+
689 "\1\u01db\60\0\1\u01dc\111\0\1\u01dd\71\0\1\u01de\61\0"+
690 "\1\u01df\103\0\1\u01e0\73\0\1\u01e1\74\0\1\u01e2\100\0"+
691 "\1\u0155\71\0\1\u01e3\34\0\1\u01e4\126\0\1\u01e5\67\0"+
692 "\1\u01e6\44\0\1\u01e7\114\0\1\u01e8\107\0\1\u01e9\70\0"+
693 "\1\u01ea\101\0\1\u01eb\66\0\1\u01ec\63\0\1\u01ed\107\0"+
694 "\1\u01b1\57\0\1\u01ee\34\0\1\u01ef\146\0\1\u01f0\65\0"+
695 "\1\u01f1\101\0\1\u01f2\75\0\1\u01f3\53\0\1\u01f4\114\0"+
696 "\1\u01f5\52\0\1\u01f6\107\0\1\u01f7\63\0\1\u01f8\75\0"+
697 "\1\u01f9\100\0\1\214\64\0\1\u01fa\102\0\1\u01f9\74\0"+
698 "\1\u01fb\71\0\1\u01fc\65\0\1\u01b1\103\0\1\u01fd\75\0"+
699 "\1\214\71\0\1\u01fe\57\0\1\u01ff\111\0\1\u0140\72\0"+
700 "\1\214\70\0\1\u01ac\73\0\1\u0200\103\0\1\214\5\0";
701
702 private static int [] zzUnpackTrans() {
703 int [] result = new int[29520];
704 int offset = 0;
705 offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
706 return result;
707 }
708
709 private static int zzUnpackTrans(String packed, int offset, int [] result) {
710 int i = 0; /* index in packed string */
711 int j = offset; /* index in unpacked array */
712 int l = packed.length();
713 while (i < l) {
714 int count = packed.charAt(i++);
715 int value = packed.charAt(i++);
716 value--;
717 do result[j++] = value; while (--count > 0);
718 }
719 return j;
720 }
721
722
723 /* error codes */
724 private static final int ZZ_UNKNOWN_ERROR = 0;
725 private static final int ZZ_NO_MATCH = 1;
726 private static final int ZZ_PUSHBACK_2BIG = 2;
727
728 /* error messages for the codes above */
729 private static final String ZZ_ERROR_MSG[] = {
730 "Unkown internal scanner error",
731 "Error: could not match input",
732 "Error: pushback value was too large"
733 };
734
735 /**
736 * ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
737 */
738 private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();
739
740 private static final String ZZ_ATTRIBUTE_PACKED_0 =
741 "\4\0\5\1\1\11\1\1\1\11\2\1\1\11\2\1"+
742 "\1\11\3\1\1\11\20\1\1\11\2\1\2\11\1\1"+
743 "\1\11\5\1\1\11\15\1\1\11\1\0\41\1\2\11"+
744 "\10\0\2\1\1\0\14\1\1\0\15\1\1\0\1\11"+
745 "\16\1\10\0\14\1\1\0\20\1\3\0\11\1\2\0"+
746 "\1\1\2\0\12\1\1\0\3\1\2\0\13\1\3\0"+
747 "\5\1\4\0\6\1\1\0\1\1\10\0\12\1\3\0"+
748 "\3\1\1\0\1\1\16\0\3\1\1\0\4\1\4\0"+
749 "\2\1\21\0\2\1\3\0\2\1\4\0\1\1\21\0"+
750 "\1\1\5\0\2\1\23\0\1\1\201\0";
751
752 private static int [] zzUnpackAttribute() {
753 int [] result = new int[512];
754 int offset = 0;
755 offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
756 return result;
757 }
758
759 private static int zzUnpackAttribute(String packed, int offset, int [] result) {
760 int i = 0; /* index in packed string */
761 int j = offset; /* index in unpacked array */
762 int l = packed.length();
763 while (i < l) {
764 int count = packed.charAt(i++);
765 int value = packed.charAt(i++);
766 do result[j++] = value; while (--count > 0);
767 }
768 return j;
769 }
770
771 /** the input device */
772 private java.io.Reader zzReader;
773
774 /** the current state of the DFA */
775 private int zzState;
776
777 /** the current lexical state */
778 private int zzLexicalState = YYINITIAL;
779
780 /** this buffer contains the current text to be matched and is
781 the source of the yytext() string */
782 private char zzBuffer[] = new char[ZZ_BUFFERSIZE];
783
784 /** the textposition at the last accepting state */
785 private int zzMarkedPos;
786
787 /** the current text position in the buffer */
788 private int zzCurrentPos;
789
790 /** startRead marks the beginning of the yytext() string in the buffer */
791 private int zzStartRead;
792
793 /** endRead marks the last character in the buffer, that has been read
794 from input */
795 private int zzEndRead;
796
797 /** zzAtEOF == true <=> the scanner is at the EOF */
798 private boolean zzAtEOF;
799
800 /* user code: */
801
802
803 /**
804 * Constructor. This must be here because JFlex does not generate a
805 * no-parameter constructor.
806 */
807 public LispTokenMaker() {
808 }
809
810
811 /**
812 * Adds the token specified to the current linked list of tokens.
813 *
814 * @param tokenType The token's type.
815 * @see #addToken(int, int, int)
816 */
817 private void addHyperlinkToken(int start, int end, int tokenType) {
818 int so = start + offsetShift;
819 addToken(zzBuffer, start,end, tokenType, so, true);
820 }
821
822
823 /**
824 * Adds the token specified to the current linked list of tokens.
825 *
826 * @param tokenType The token's type.
827 */
828 private void addToken(int tokenType) {
829 addToken(zzStartRead, zzMarkedPos-1, tokenType);
830 }
831
832
833 /**
834 * Adds the token specified to the current linked list of tokens.
835 *
836 * @param tokenType The token's type.
837 * @see #addHyperlinkToken(int, int, int)
838 */
839 private void addToken(int start, int end, int tokenType) {
840 int so = start + offsetShift;
841 addToken(zzBuffer, start,end, tokenType, so, false);
842 }
843
844
845 /**
846 * Adds the token specified to the current linked list of tokens.
847 *
848 * @param array The character array.
849 * @param start The starting offset in the array.
850 * @param end The ending offset in the array.
851 * @param tokenType The token's type.
852 * @param startOffset The offset in the document at which this token
853 * occurs.
854 * @param hyperlink Whether this token is a hyperlink.
855 */
856 public void addToken(char[] array, int start, int end, int tokenType,
857 int startOffset, boolean hyperlink) {
858 super.addToken(array, start,end, tokenType, startOffset, hyperlink);
859 zzStartRead = zzMarkedPos;
860 }
861
862
863 /**
864 * Returns the text to place at the beginning and end of a
865 * line to "comment" it in a this programming language.
866 *
867 * @return The start and end strings to add to a line to "comment"
868 * it out.
869 */
870 public String[] getLineCommentStartAndEnd() {
871 return new String[] { ";", null };
872 }
873
874
875 /**
876 * Returns the first token in the linked list of tokens generated
877 * from <code>text</code>. This method must be implemented by
878 * subclasses so they can correctly implement syntax highlighting.
879 *
880 * @param text The text from which to get tokens.
881 * @param initialTokenType The token type we should start with.
882 * @param startOffset The offset into the document at which
883 * <code>text</code> starts.
884 * @return The first <code>Token</code> in a linked list representing
885 * the syntax highlighted text.
886 */
887 public Token getTokenList(Segment text, int initialTokenType, int startOffset) {
888
889 resetTokenList();
890 this.offsetShift = -text.offset + startOffset;
891
892 // Start off in the proper state.
893 int state = Token.NULL;
894 switch (initialTokenType) {
895 case Token.COMMENT_MULTILINE:
896 state = MLC;
897 start = text.offset;
898 break;
899 case Token.LITERAL_STRING_DOUBLE_QUOTE:
900 state = STRING;
901 start = text.offset;
902 break;
903 default:
904 state = Token.NULL;
905 }
906
907 s = text;
908 try {
909 yyreset(zzReader);
910 yybegin(state);
911 return yylex();
912 } catch (IOException ioe) {
913 ioe.printStackTrace();
914 return new DefaultToken();
915 }
916
917 }
918
919
920 /**
921 * Refills the input buffer.
922 *
923 * @return <code>true</code> if EOF was reached, otherwise
924 * <code>false</code>.
925 * @exception IOException if any I/O-Error occurs.
926 */
927 private boolean zzRefill() throws java.io.IOException {
928 return zzCurrentPos>=s.offset+s.count;
929 }
930
931
932 /**
933 * Resets the scanner to read from a new input stream.
934 * Does not close the old reader.
935 *
936 * All internal variables are reset, the old input stream
937 * <b>cannot</b> be reused (internal buffer is discarded and lost).
938 * Lexical state is set to <tt>YY_INITIAL</tt>.
939 *
940 * @param reader the new input stream
941 */
942 public final void yyreset(java.io.Reader reader) throws java.io.IOException {
943 // 's' has been updated.
944 zzBuffer = s.array;
945 /*
946 * We replaced the line below with the two below it because zzRefill
947 * no longer "refills" the buffer (since the way we do it, it's always
948 * "full" the first time through, since it points to the segment's
949 * array). So, we assign zzEndRead here.
950 */
951 //zzStartRead = zzEndRead = s.offset;
952 zzStartRead = s.offset;
953 zzEndRead = zzStartRead + s.count - 1;
954 zzCurrentPos = zzMarkedPos = s.offset;
955 zzLexicalState = YYINITIAL;
956 zzReader = reader;
957 zzAtEOF = false;
958 }
959
960
961
962
963 /**
964 * Creates a new scanner
965 * There is also a java.io.InputStream version of this constructor.
966 *
967 * @param in the java.io.Reader to read input from.
968 */
969 public LispTokenMaker(java.io.Reader in) {
970 this.zzReader = in;
971 }
972
973 /**
974 * Creates a new scanner.
975 * There is also java.io.Reader version of this constructor.
976 *
977 * @param in the java.io.Inputstream to read input from.
978 */
979 public LispTokenMaker(java.io.InputStream in) {
980 this(new java.io.InputStreamReader(in));
981 }
982
983 /**
984 * Unpacks the compressed character translation table.
985 *
986 * @param packed the packed character translation table
987 * @return the unpacked character translation table
988 */
989 private static char [] zzUnpackCMap(String packed) {
990 char [] map = new char[0x10000];
991 int i = 0; /* index in packed string */
992 int j = 0; /* index in unpacked array */
993 while (i < 160) {
994 int count = packed.charAt(i++);
995 char value = packed.charAt(i++);
996 do map[j++] = value; while (--count > 0);
997 }
998 return map;
999 }
1000
1001
1002 /**
1003 * Closes the input stream.
1004 */
1005 public final void yyclose() throws java.io.IOException {
1006 zzAtEOF = true; /* indicate end of file */
1007 zzEndRead = zzStartRead; /* invalidate buffer */
1008
1009 if (zzReader != null)
1010 zzReader.close();
1011 }
1012
1013
1014 /**
1015 * Returns the current lexical state.
1016 */
1017 public final int yystate() {
1018 return zzLexicalState;
1019 }
1020
1021
1022 /**
1023 * Enters a new lexical state
1024 *
1025 * @param newState the new lexical state
1026 */
1027 public final void yybegin(int newState) {
1028 zzLexicalState = newState;
1029 }
1030
1031
1032 /**
1033 * Returns the text matched by the current regular expression.
1034 */
1035 public final String yytext() {
1036 return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead );
1037 }
1038
1039
1040 /**
1041 * Returns the character at position <tt>pos</tt> from the
1042 * matched text.
1043 *
1044 * It is equivalent to yytext().charAt(pos), but faster
1045 *
1046 * @param pos the position of the character to fetch.
1047 * A value from 0 to yylength()-1.
1048 *
1049 * @return the character at position pos
1050 */
1051 public final char yycharat(int pos) {
1052 return zzBuffer[zzStartRead+pos];
1053 }
1054
1055
1056 /**
1057 * Returns the length of the matched text region.
1058 */
1059 public final int yylength() {
1060 return zzMarkedPos-zzStartRead;
1061 }
1062
1063
1064 /**
1065 * Reports an error that occured while scanning.
1066 *
1067 * In a wellformed scanner (no or only correct usage of
1068 * yypushback(int) and a match-all fallback rule) this method
1069 * will only be called with things that "Can't Possibly Happen".
1070 * If this method is called, something is seriously wrong
1071 * (e.g. a JFlex bug producing a faulty scanner etc.).
1072 *
1073 * Usual syntax/scanner level error handling should be done
1074 * in error fallback rules.
1075 *
1076 * @param errorCode the code of the errormessage to display
1077 */
1078 private void zzScanError(int errorCode) {
1079 String message;
1080 try {
1081 message = ZZ_ERROR_MSG[errorCode];
1082 }
1083 catch (ArrayIndexOutOfBoundsException e) {
1084 message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
1085 }
1086
1087 throw new Error(message);
1088 }
1089
1090
1091 /**
1092 * Pushes the specified amount of characters back into the input stream.
1093 *
1094 * They will be read again by then next call of the scanning method
1095 *
1096 * @param number the number of characters to be read again.
1097 * This number must not be greater than yylength()!
1098 */
1099 public void yypushback(int number) {
1100 if ( number > yylength() )
1101 zzScanError(ZZ_PUSHBACK_2BIG);
1102
1103 zzMarkedPos -= number;
1104 }
1105
1106
1107 /**
1108 * Resumes scanning until the next regular expression is matched,
1109 * the end of input is encountered or an I/O-Error occurs.
1110 *
1111 * @return the next token
1112 * @exception java.io.IOException if any I/O-Error occurs
1113 */
1114 public org.fife.ui.rsyntaxtextarea.Token yylex() throws java.io.IOException {
1115 int zzInput;
1116 int zzAction;
1117
1118 // cached fields:
1119 int zzCurrentPosL;
1120 int zzMarkedPosL;
1121 int zzEndReadL = zzEndRead;
1122 char [] zzBufferL = zzBuffer;
1123 char [] zzCMapL = ZZ_CMAP;
1124
1125 int [] zzTransL = ZZ_TRANS;
1126 int [] zzRowMapL = ZZ_ROWMAP;
1127 int [] zzAttrL = ZZ_ATTRIBUTE;
1128
1129 while (true) {
1130 zzMarkedPosL = zzMarkedPos;
1131
1132 zzAction = -1;
1133
1134 zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
1135
1136 zzState = zzLexicalState;
1137
1138
1139 zzForAction: {
1140 while (true) {
1141
1142 if (zzCurrentPosL < zzEndReadL)
1143 zzInput = zzBufferL[zzCurrentPosL++];
1144 else if (zzAtEOF) {
1145 zzInput = YYEOF;
1146 break zzForAction;
1147 }
1148 else {
1149 // store back cached positions
1150 zzCurrentPos = zzCurrentPosL;
1151 zzMarkedPos = zzMarkedPosL;
1152 boolean eof = zzRefill();
1153 // get translated positions and possibly new buffer
1154 zzCurrentPosL = zzCurrentPos;
1155 zzMarkedPosL = zzMarkedPos;
1156 zzBufferL = zzBuffer;
1157 zzEndReadL = zzEndRead;
1158 if (eof) {
1159 zzInput = YYEOF;
1160 break zzForAction;
1161 }
1162 else {
1163 zzInput = zzBufferL[zzCurrentPosL++];
1164 }
1165 }
1166 int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ];
1167 if (zzNext == -1) break zzForAction;
1168 zzState = zzNext;
1169
1170 int zzAttributes = zzAttrL[zzState];
1171 if ( (zzAttributes & 1) == 1 ) {
1172 zzAction = zzState;
1173 zzMarkedPosL = zzCurrentPosL;
1174 if ( (zzAttributes & 8) == 8 ) break zzForAction;
1175 }
1176
1177 }
1178 }
1179
1180 // store back cached position
1181 zzMarkedPos = zzMarkedPosL;
1182
1183 switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
1184 case 4:
1185 { addNullToken(); return firstToken;
1186 }
1187 case 24: break;
1188 case 21:
1189 { yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_MULTILINE);
1190 }
1191 case 25: break;
1192 case 19:
1193 { start = zzMarkedPos-2; yybegin(MLC);
1194 }
1195 case 26: break;
1196 case 5:
1197 { addToken(Token.WHITESPACE);
1198 }
1199 case 27: break;
1200 case 18:
1201 { addToken(Token.LITERAL_NUMBER_HEXADECIMAL);
1202 }
1203 case 28: break;
1204 case 17:
1205 { addToken(Token.LITERAL_NUMBER_FLOAT);
1206 }
1207 case 29: break;
1208 case 20:
1209 { addToken(Token.RESERVED_WORD);
1210 }
1211 case 30: break;
1212 case 8:
1213 { addToken(Token.SEPARATOR);
1214 }
1215 case 31: break;
1216 case 2:
1217 { addToken(Token.IDENTIFIER);
1218 }
1219 case 32: break;
1220 case 15:
1221 { addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
1222 }
1223 case 33: break;
1224 case 11:
1225 { /* Skip escaped chars. */
1226 }
1227 case 34: break;
1228 case 1:
1229 { addToken(Token.ERROR_IDENTIFIER);
1230 }
1231 case 35: break;
1232 case 12:
1233 { addToken(start,zzStartRead-1, Token.LITERAL_STRING_DOUBLE_QUOTE); return firstToken;
1234 }
1235 case 36: break;
1236 case 23:
1237 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_EOL); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_EOL); start = zzMarkedPos;
1238 }
1239 case 37: break;
1240 case 22:
1241 { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_MULTILINE); start = zzMarkedPos;
1242 }
1243 case 38: break;
1244 case 16:
1245 { addToken(Token.ERROR_NUMBER_FORMAT);
1246 }
1247 case 39: break;
1248 case 9:
1249 { start = zzMarkedPos-1; yybegin(STRING);
1250 }
1251 case 40: break;
1252 case 7:
1253 { start = zzMarkedPos-1; yybegin(EOL_COMMENT);
1254 }
1255 case 41: break;
1256 case 3:
1257 { addToken(Token.LITERAL_NUMBER_DECIMAL_INT);
1258 }
1259 case 42: break;
1260 case 6:
1261 { addToken(Token.OPERATOR);
1262 }
1263 case 43: break;
1264 case 13:
1265 { yybegin(YYINITIAL); addToken(start,zzStartRead, Token.LITERAL_STRING_DOUBLE_QUOTE);
1266 }
1267 case 44: break;
1268 case 10:
1269 {
1270 }
1271 case 45: break;
1272 case 14:
1273 { addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
1274 }
1275 case 46: break;
1276 default:
1277 if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
1278 zzAtEOF = true;
1279 switch (zzLexicalState) {
1280 case EOL_COMMENT: {
1281 addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
1282 }
1283 case 513: break;
1284 case STRING: {
1285 addToken(start,zzStartRead-1, Token.LITERAL_STRING_DOUBLE_QUOTE); return firstToken;
1286 }
1287 case 514: break;
1288 case YYINITIAL: {
1289 addNullToken(); return firstToken;
1290 }
1291 case 515: break;
1292 case MLC: {
1293 addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); return firstToken;
1294 }
1295 case 516: break;
1296 default:
1297 return null;
1298 }
1299 }
1300 else {
1301 zzScanError(ZZ_NO_MATCH);
1302 }
1303 }
1304 }
1305 }
1306
1307
1308}
Note: See TracBrowser for help on using the repository browser.