~ubuntu-branches/ubuntu/vivid/drmips/vivid-backports

« back to all changes in this revision

Viewing changes to src/pc/DrMIPS/src/org/fife/ui/rsyntaxtextarea/modes/JavaScriptTokenMaker.java

  • Committer: Package Import Robot
  • Author(s): Bruno Nova
  • Date: 2014-09-27 12:24:17 UTC
  • Revision ID: package-import@ubuntu.com-20140927122417-2gadkwt9k0u7j4zu
Tags: upstream-1.2.3
Import upstream version 1.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* The following code was generated by JFlex 1.4.1 on 4/22/13 10:43 PM */
 
2
 
 
3
/*
 
4
 * 02/05/2012
 
5
 *
 
6
 * JavaScriptTokenMaker.java - Parses a document into JavaScript tokens.
 
7
 * 
 
8
 * This library is distributed under a modified BSD license.  See the included
 
9
 * RSyntaxTextArea.License.txt file for details.
 
10
 */
 
11
package org.fife.ui.rsyntaxtextarea.modes;
 
12
 
 
13
import java.io.*;
 
14
import javax.swing.text.Segment;
 
15
 
 
16
import org.fife.ui.rsyntaxtextarea.*;
 
17
 
 
18
 
 
19
/**
 
20
 * Scanner for JavaScript files.  Its states could be simplified, but are
 
21
 * kept the way they are to keep a degree of similarity (i.e. copy/paste)
 
22
 * between it and HTML/JSP/PHPTokenMaker.  This should cause no difference in
 
23
 * performance.<p>
 
24
 *
 
25
 * This implementation was created using
 
26
 * <a href="http://www.jflex.de/">JFlex</a> 1.4.1; however, the generated file
 
27
 * was modified for performance.  Memory allocation needs to be almost
 
28
 * completely removed to be competitive with the handwritten lexers (subclasses
 
29
 * of <code>AbstractTokenMaker</code>, so this class has been modified so that
 
30
 * Strings are never allocated (via yytext()), and the scanner never has to
 
31
 * worry about refilling its buffer (needlessly copying chars around).
 
32
 * We can achieve this because RText always scans exactly 1 line of tokens at a
 
33
 * time, and hands the scanner this line as an array of characters (a Segment
 
34
 * really).  Since tokens contain pointers to char arrays instead of Strings
 
35
 * holding their contents, there is no need for allocating new memory for
 
36
 * Strings.<p>
 
37
 *
 
38
 * The actual algorithm generated for scanning has, of course, not been
 
39
 * modified.<p>
 
40
 *
 
41
 * If you wish to regenerate this file yourself, keep in mind the following:
 
42
 * <ul>
 
43
 *   <li>The generated JavaScriptTokenMaker.java</code> file will contain two
 
44
 *       definitions of both <code>zzRefill</code> and <code>yyreset</code>.
 
45
 *       You should hand-delete the second of each definition (the ones
 
46
 *       generated by the lexer), as these generated methods modify the input
 
47
 *       buffer, which we'll never have to do.</li>
 
48
 *   <li>You should also change the declaration/definition of zzBuffer to NOT
 
49
 *       be initialized.  This is a needless memory allocation for us since we
 
50
 *       will be pointing the array somewhere else anyway.</li>
 
51
 *   <li>You should NOT call <code>yylex()</code> on the generated scanner
 
52
 *       directly; rather, you should use <code>getTokenList</code> as you would
 
53
 *       with any other <code>TokenMaker</code> instance.</li>
 
54
 * </ul>
 
55
 *
 
56
 * @author Robert Futrell
 
57
 * @version 0.9
 
58
 */
 
59
 
 
60
public class JavaScriptTokenMaker extends AbstractJFlexCTokenMaker {
 
61
 
 
62
  /** This character denotes the end of file */
 
63
  public static final int YYEOF = -1;
 
64
 
 
65
  /** lexical states */
 
66
  public static final int JS_STRING = 1;
 
67
  public static final int E4X = 6;
 
68
  public static final int E4X_INTAG = 10;
 
69
  public static final int E4X_PI = 8;
 
70
  public static final int JS_MLC = 3;
 
71
  public static final int JS_CHAR = 2;
 
72
  public static final int JS_EOL_COMMENT = 5;
 
73
  public static final int E4X_COMMENT = 7;
 
74
  public static final int JS_DOCCOMMENT = 4;
 
75
  public static final int E4X_DTD = 9;
 
76
  public static final int E4X_INATTR_SINGLE = 12;
 
77
  public static final int E4X_INATTR_DOUBLE = 11;
 
78
  public static final int YYINITIAL = 0;
 
79
  public static final int E4X_CDATA = 13;
 
80
 
 
81
  /** 
 
82
   * Translates characters to character classes
 
83
   */
 
84
  private static final String ZZ_CMAP_PACKED = 
 
85
    "\11\0\1\73\1\2\1\0\1\1\1\11\22\0\1\73\1\36\1\75"+
 
86
    "\1\12\1\15\1\35\1\40\1\105\2\104\1\17\1\30\1\27\1\24"+
 
87
    "\1\25\1\16\1\5\7\7\2\4\1\41\1\74\1\31\1\32\1\34"+
 
88
    "\1\37\1\44\1\101\1\6\1\77\1\100\1\23\1\22\2\3\1\110"+
 
89
    "\2\3\1\21\1\3\1\107\5\3\1\102\3\3\1\20\2\3\1\76"+
 
90
    "\1\13\1\103\1\33\1\14\1\0\1\45\1\46\1\52\1\64\1\53"+
 
91
    "\1\67\1\56\1\60\1\55\1\3\1\63\1\54\1\43\1\57\1\61"+
 
92
    "\1\65\1\72\1\51\1\47\1\50\1\10\1\70\1\62\1\71\1\66"+
 
93
    "\1\106\1\111\1\33\1\26\1\42\uff81\0";
 
94
 
 
95
  /** 
 
96
   * Translates characters to character classes
 
97
   */
 
98
  private static final char [] ZZ_CMAP = zzUnpackCMap(ZZ_CMAP_PACKED);
 
99
 
 
100
  /** 
 
101
   * Translates DFA states to action switch labels.
 
102
   */
 
103
  private static final int [] ZZ_ACTION = zzUnpackAction();
 
104
 
 
105
  private static final String ZZ_ACTION_PACKED_0 =
 
106
    "\13\0\2\1\1\0\1\2\1\3\1\4\1\5\2\6"+
 
107
    "\1\5\1\2\3\7\1\5\1\10\1\5\6\7\1\2"+
 
108
    "\20\5\1\11\1\12\2\5\1\1\1\13\1\14\1\15"+
 
109
    "\1\1\1\16\1\17\1\20\1\1\1\21\5\1\1\22"+
 
110
    "\10\1\1\23\2\5\1\24\1\25\1\26\1\27\1\1"+
 
111
    "\1\30\5\1\1\31\2\1\1\32\1\1\1\33\1\34"+
 
112
    "\1\35\2\36\1\37\1\40\1\41\1\42\1\1\1\43"+
 
113
    "\3\1\1\2\1\44\1\6\1\45\1\44\1\45\1\44"+
 
114
    "\1\46\1\44\1\5\2\0\1\47\1\50\2\7\2\0"+
 
115
    "\1\51\1\7\1\52\33\5\2\53\7\5\1\53\13\5"+
 
116
    "\1\54\1\55\1\56\1\57\4\0\1\60\2\0\1\61"+
 
117
    "\26\0\1\62\1\25\1\63\1\64\1\26\5\0\1\65"+
 
118
    "\2\0\1\2\1\45\1\0\2\46\1\5\1\66\1\67"+
 
119
    "\32\5\1\70\5\5\1\71\25\5\60\0\1\72\2\0"+
 
120
    "\1\73\5\0\1\74\1\2\1\75\3\5\1\71\3\5"+
 
121
    "\1\76\6\5\1\77\1\5\1\100\24\5\1\0\1\1"+
 
122
    "\1\0\1\101\15\0\1\102\45\0\1\103\3\0\1\104"+
 
123
    "\2\0\1\105\1\0\1\106\1\2\5\5\1\53\17\5"+
 
124
    "\1\53\1\5\15\0\1\102\20\0\1\102\16\0\1\2"+
 
125
    "\4\5\1\107\13\5\33\0\10\5\1\102\4\0\1\102"+
 
126
    "\12\0\3\5\6\0\1\5\2\0\1\110\1\0";
 
127
 
 
128
  private static int [] zzUnpackAction() {
 
129
    int [] result = new int[603];
 
130
    int offset = 0;
 
131
    offset = zzUnpackAction(ZZ_ACTION_PACKED_0, offset, result);
 
132
    return result;
 
133
  }
 
134
 
 
135
  private static int zzUnpackAction(String packed, int offset, int [] result) {
 
136
    int i = 0;       /* index in packed string  */
 
137
    int j = offset;  /* index in unpacked array */
 
138
    int l = packed.length();
 
139
    while (i < l) {
 
140
      int count = packed.charAt(i++);
 
141
      int value = packed.charAt(i++);
 
142
      do result[j++] = value; while (--count > 0);
 
143
    }
 
144
    return j;
 
145
  }
 
146
 
 
147
 
 
148
  /** 
 
149
   * Translates a state to a row index in the transition table
 
150
   */
 
151
  private static final int [] ZZ_ROWMAP = zzUnpackRowMap();
 
152
 
 
153
  private static final String ZZ_ROWMAP_PACKED_0 =
 
154
    "\0\0\0\112\0\224\0\336\0\u0128\0\u0172\0\u01bc\0\u0206"+
 
155
    "\0\u0250\0\u029a\0\u02e4\0\u032e\0\u0378\0\u03c2\0\u040c\0\u0456"+
 
156
    "\0\u04a0\0\u04ea\0\u0534\0\u057e\0\u05c8\0\u04a0\0\u0612\0\u065c"+
 
157
    "\0\u06a6\0\u06f0\0\u04a0\0\u04a0\0\u073a\0\u0784\0\u07ce\0\u0818"+
 
158
    "\0\u04a0\0\u0862\0\u08ac\0\u08f6\0\u0940\0\u098a\0\u09d4\0\u0a1e"+
 
159
    "\0\u0a68\0\u0ab2\0\u0afc\0\u0b46\0\u0b90\0\u0bda\0\u0c24\0\u0c6e"+
 
160
    "\0\u0cb8\0\u0d02\0\u0d4c\0\u04a0\0\u04a0\0\u0d96\0\u0de0\0\u0e2a"+
 
161
    "\0\u04a0\0\u0e74\0\u04a0\0\u0ebe\0\u04a0\0\u0e74\0\u04a0\0\u0f08"+
 
162
    "\0\u04a0\0\u0f52\0\u0f9c\0\u0fe6\0\u1030\0\u107a\0\u04a0\0\u10c4"+
 
163
    "\0\u110e\0\u1158\0\u11a2\0\u11ec\0\u1236\0\u1280\0\u12ca\0\u04a0"+
 
164
    "\0\u1314\0\u135e\0\u04a0\0\u13a8\0\u13f2\0\u04a0\0\u143c\0\u04a0"+
 
165
    "\0\u1486\0\u14d0\0\u151a\0\u1564\0\u15ae\0\u04a0\0\u15f8\0\u1642"+
 
166
    "\0\u04a0\0\u168c\0\u04a0\0\u04a0\0\u04a0\0\u16d6\0\u1720\0\u176a"+
 
167
    "\0\u04a0\0\u04a0\0\u04a0\0\u17b4\0\u04a0\0\u17fe\0\u1848\0\u1892"+
 
168
    "\0\u18dc\0\u1926\0\u1926\0\u1926\0\u1970\0\u19ba\0\u1a04\0\u1a4e"+
 
169
    "\0\u1a98\0\u1ae2\0\u1b2c\0\u1b76\0\u04a0\0\u1bc0\0\u1b2c\0\u1c0a"+
 
170
    "\0\u065c\0\u1c0a\0\u04a0\0\u1c54\0\u1c9e\0\u1ce8\0\u1d32\0\u1d7c"+
 
171
    "\0\u1dc6\0\u1e10\0\u1e5a\0\u1ea4\0\u1eee\0\u1f38\0\u1f82\0\u1fcc"+
 
172
    "\0\u2016\0\u2060\0\u20aa\0\u20f4\0\u213e\0\u2188\0\u21d2\0\u221c"+
 
173
    "\0\u2266\0\u22b0\0\u22fa\0\u2344\0\u238e\0\u23d8\0\u2422\0\u246c"+
 
174
    "\0\u24b6\0\u04ea\0\u2500\0\u254a\0\u2594\0\u25de\0\u2628\0\u2672"+
 
175
    "\0\u26bc\0\u2706\0\u2750\0\u279a\0\u27e4\0\u282e\0\u2878\0\u28c2"+
 
176
    "\0\u290c\0\u2956\0\u29a0\0\u29ea\0\u2a34\0\u04a0\0\u2a7e\0\u2ac8"+
 
177
    "\0\u04a0\0\u2b12\0\u2b5c\0\u2ba6\0\u2bf0\0\u04a0\0\u2c3a\0\u2c84"+
 
178
    "\0\u04a0\0\u2cce\0\u2d18\0\u2d62\0\u2dac\0\u2df6\0\u2e40\0\u2e8a"+
 
179
    "\0\u2ed4\0\u2f1e\0\u2f68\0\u2fb2\0\u2ffc\0\u3046\0\u3090\0\u30da"+
 
180
    "\0\u3124\0\u316e\0\u31b8\0\u3202\0\u324c\0\u3296\0\u32e0\0\u332a"+
 
181
    "\0\u3374\0\u33be\0\u04a0\0\u04a0\0\u3408\0\u3452\0\u349c\0\u34e6"+
 
182
    "\0\u3530\0\u04a0\0\u357a\0\u35c4\0\u360e\0\u3658\0\u36a2\0\u1926"+
 
183
    "\0\u36ec\0\u3736\0\u3780\0\u37ca\0\u3814\0\u385e\0\u38a8\0\u38f2"+
 
184
    "\0\u393c\0\u3986\0\u39d0\0\u3a1a\0\u3a64\0\u3aae\0\u3af8\0\u3b42"+
 
185
    "\0\u3b8c\0\u3bd6\0\u3c20\0\u3c6a\0\u3cb4\0\u3cfe\0\u3d48\0\u3d92"+
 
186
    "\0\u3ddc\0\u3e26\0\u3e70\0\u3eba\0\u3f04\0\u3f4e\0\u04ea\0\u3f98"+
 
187
    "\0\u3fe2\0\u402c\0\u4076\0\u40c0\0\u410a\0\u4154\0\u419e\0\u41e8"+
 
188
    "\0\u4232\0\u427c\0\u42c6\0\u4310\0\u435a\0\u43a4\0\u43ee\0\u4438"+
 
189
    "\0\u4482\0\u44cc\0\u4516\0\u4560\0\u45aa\0\u45f4\0\u463e\0\u4688"+
 
190
    "\0\u46d2\0\u471c\0\u4766\0\u47b0\0\u47fa\0\u4844\0\u488e\0\u48d8"+
 
191
    "\0\u4922\0\u496c\0\u49b6\0\u4a00\0\u4a4a\0\u4a94\0\u4ade\0\u4b28"+
 
192
    "\0\u4b72\0\u4bbc\0\u4c06\0\u4c50\0\u4c9a\0\u4ce4\0\u4d2e\0\u4d78"+
 
193
    "\0\u4dc2\0\u4e0c\0\u4e56\0\u4ea0\0\u4eea\0\u4f34\0\u4f7e\0\u4fc8"+
 
194
    "\0\u5012\0\u505c\0\u50a6\0\u50f0\0\u513a\0\u5184\0\u51ce\0\u5218"+
 
195
    "\0\u5262\0\u52ac\0\u52f6\0\u5340\0\u538a\0\u53d4\0\u541e\0\u5468"+
 
196
    "\0\u54b2\0\u54fc\0\u5546\0\u5590\0\u55da\0\u04a0\0\u5624\0\u566e"+
 
197
    "\0\u56b8\0\u5702\0\u574c\0\u04a0\0\u5796\0\u04a0\0\u57e0\0\u582a"+
 
198
    "\0\u5874\0\u04ea\0\u58be\0\u5908\0\u5952\0\u04ea\0\u599c\0\u59e6"+
 
199
    "\0\u5a30\0\u5a7a\0\u5ac4\0\u5b0e\0\u04ea\0\u5b58\0\u04ea\0\u5ba2"+
 
200
    "\0\u5bec\0\u5c36\0\u5c80\0\u5cca\0\u5d14\0\u5d5e\0\u5da8\0\u5df2"+
 
201
    "\0\u5e3c\0\u5e86\0\u5ed0\0\u5f1a\0\u5f64\0\u5fae\0\u5ff8\0\u6042"+
 
202
    "\0\u608c\0\u60d6\0\u6120\0\u2ac8\0\u04a0\0\u616a\0\u61b4\0\u61fe"+
 
203
    "\0\u6248\0\u6292\0\u62dc\0\u6326\0\u6370\0\u63ba\0\u6404\0\u644e"+
 
204
    "\0\u6498\0\u64e2\0\u652c\0\u6576\0\u04a0\0\u65c0\0\u660a\0\u6654"+
 
205
    "\0\u669e\0\u66e8\0\u6732\0\u677c\0\u67c6\0\u6810\0\u685a\0\u68a4"+
 
206
    "\0\u68ee\0\u6938\0\u6982\0\u69cc\0\u6a16\0\u6a60\0\u6aaa\0\u6af4"+
 
207
    "\0\u6b3e\0\u6b88\0\u6bd2\0\u6c1c\0\u6c66\0\u6cb0\0\u6cfa\0\u6d44"+
 
208
    "\0\u6d8e\0\u6dd8\0\u6e22\0\u6e6c\0\u6eb6\0\u6f00\0\u6f4a\0\u6f94"+
 
209
    "\0\u6fde\0\u7028\0\u7072\0\u70bc\0\u7106\0\u7150\0\u04a0\0\u719a"+
 
210
    "\0\u71e4\0\u722e\0\u7278\0\u04a0\0\u72c2\0\u730c\0\u7356\0\u73a0"+
 
211
    "\0\u73ea\0\u7434\0\u3b8c\0\u747e\0\u74c8\0\u7512\0\u755c\0\u75a6"+
 
212
    "\0\u75f0\0\u763a\0\u7684\0\u76ce\0\u7718\0\u7762\0\u77ac\0\u77f6"+
 
213
    "\0\u7840\0\u788a\0\u78d4\0\u791e\0\u61b4\0\u7968\0\u79b2\0\u79fc"+
 
214
    "\0\u7a46\0\u7a90\0\u7ada\0\u7b24\0\u7b6e\0\u7bb8\0\u7c02\0\u7c4c"+
 
215
    "\0\u7c96\0\u7ce0\0\u7d2a\0\u7d74\0\u7dbe\0\u7e08\0\u7e52\0\u7e9c"+
 
216
    "\0\u7ee6\0\u7f30\0\u7f7a\0\u7fc4\0\u800e\0\u8058\0\u80a2\0\u80ec"+
 
217
    "\0\u8136\0\u8180\0\u81ca\0\u8214\0\u825e\0\u82a8\0\u82f2\0\u833c"+
 
218
    "\0\u8386\0\u83d0\0\u7072\0\u841a\0\u8464\0\u84ae\0\u84f8\0\u722e"+
 
219
    "\0\u8542\0\u858c\0\u85d6\0\u8620\0\u866a\0\u86b4\0\u04ea\0\u86fe"+
 
220
    "\0\u8748\0\u8792\0\u87dc\0\u8826\0\u8870\0\u88ba\0\u8904\0\u894e"+
 
221
    "\0\u8998\0\u89e2\0\u8a2c\0\u8a76\0\u8ac0\0\u8b0a\0\u8b54\0\u8b9e"+
 
222
    "\0\u8be8\0\u8c32\0\u8c7c\0\u8cc6\0\u8d10\0\u8d5a\0\u8da4\0\u8dee"+
 
223
    "\0\u8e38\0\u8e82\0\u8ecc\0\u8f16\0\u8f60\0\u8faa\0\u8ff4\0\u903e"+
 
224
    "\0\u9088\0\u90d2\0\u911c\0\u9166\0\u91b0\0\u91fa\0\u9244\0\u928e"+
 
225
    "\0\u92d8\0\u9322\0\u936c\0\u93b6\0\u9400\0\u944a\0\u9494\0\u94de"+
 
226
    "\0\u9528\0\u9572\0\u6654\0\u95bc\0\u9606\0\u9650\0\u969a\0\u96e4"+
 
227
    "\0\u972e\0\u9778\0\u97c2\0\u980c\0\u9856\0\u98a0\0\u98ea\0\u9934"+
 
228
    "\0\u997e\0\u99c8\0\u9a12\0\u9a5c\0\u9aa6\0\u9af0\0\u9b3a\0\u9b84"+
 
229
    "\0\u9bce\0\u04a0\0\u9c18";
 
230
 
 
231
  private static int [] zzUnpackRowMap() {
 
232
    int [] result = new int[603];
 
233
    int offset = 0;
 
234
    offset = zzUnpackRowMap(ZZ_ROWMAP_PACKED_0, offset, result);
 
235
    return result;
 
236
  }
 
237
 
 
238
  private static int zzUnpackRowMap(String packed, int offset, int [] result) {
 
239
    int i = 0;  /* index in packed string  */
 
240
    int j = offset;  /* index in unpacked array */
 
241
    int l = packed.length();
 
242
    while (i < l) {
 
243
      int high = packed.charAt(i++) << 16;
 
244
      result[j++] = high | packed.charAt(i++);
 
245
    }
 
246
    return j;
 
247
  }
 
248
 
 
249
  /** 
 
250
   * The transition table of the DFA
 
251
   */
 
252
  private static final int [] ZZ_TRANS = zzUnpackTrans();
 
253
 
 
254
  private static final String ZZ_TRANS_PACKED_0 =
 
255
    "\1\17\1\20\1\21\1\22\1\23\1\24\1\22\1\23"+
 
256
    "\1\25\1\26\2\17\2\22\1\27\1\30\4\22\1\31"+
 
257
    "\1\32\1\33\1\34\1\35\1\36\1\37\1\30\1\40"+
 
258
    "\2\30\1\41\1\42\2\41\1\22\1\43\1\44\1\45"+
 
259
    "\1\46\1\47\1\50\1\51\1\52\1\53\1\54\1\55"+
 
260
    "\1\56\2\22\1\57\1\22\1\60\1\61\1\22\1\62"+
 
261
    "\1\63\2\22\1\20\1\34\1\64\1\33\4\22\2\33"+
 
262
    "\1\65\1\22\1\66\1\67\1\33\2\70\1\71\10\70"+
 
263
    "\1\72\61\70\1\73\14\70\2\74\1\75\10\74\1\76"+
 
264
    "\71\74\1\77\4\74\2\100\1\101\14\100\1\102\40\100"+
 
265
    "\1\103\1\100\1\104\4\100\1\105\22\100\2\106\1\107"+
 
266
    "\14\106\1\110\11\106\1\111\12\106\1\112\13\106\1\113"+
 
267
    "\1\106\1\114\4\106\1\115\21\106\1\116\2\117\1\120"+
 
268
    "\55\117\1\103\1\117\1\104\4\117\1\105\22\117\1\121"+
 
269
    "\1\122\1\123\26\121\1\124\6\121\1\125\32\121\1\20"+
 
270
    "\1\126\15\121\2\127\1\130\21\127\1\131\33\127\1\132"+
 
271
    "\1\127\1\133\4\127\1\134\22\127\2\135\1\136\34\135"+
 
272
    "\1\137\52\135\2\140\1\141\26\140\1\142\2\140\1\143"+
 
273
    "\41\140\1\144\4\140\1\145\6\140\1\146\1\147\1\0"+
 
274
    "\13\146\1\150\13\146\1\41\1\146\1\151\36\146\1\20"+
 
275
    "\1\146\1\152\7\146\1\153\4\146\75\154\1\155\14\154"+
 
276
    "\105\156\1\155\4\156\103\157\1\160\6\157\1\17\2\0"+
 
277
    "\6\17\1\0\4\17\2\0\4\17\17\0\30\17\4\0"+
 
278
    "\4\17\3\0\3\17\2\0\1\20\71\0\1\20\130\0"+
 
279
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
280
    "\4\22\17\0\1\22\1\17\26\22\4\0\4\22\3\0"+
 
281
    "\3\22\1\0\1\162\2\0\1\162\2\23\1\162\1\23"+
 
282
    "\1\162\1\0\4\162\2\0\1\162\1\163\1\164\1\165"+
 
283
    "\1\0\1\166\15\0\10\162\1\165\1\163\7\162\1\164"+
 
284
    "\2\162\1\164\3\162\4\0\1\162\1\164\2\162\3\0"+
 
285
    "\3\162\1\0\1\162\2\0\1\162\1\167\1\170\1\162"+
 
286
    "\1\170\1\162\1\0\4\162\2\0\1\171\1\163\1\164"+
 
287
    "\1\165\1\0\1\166\15\0\10\162\1\165\1\163\7\162"+
 
288
    "\1\164\2\162\1\164\1\162\1\171\1\162\4\0\1\162"+
 
289
    "\1\164\2\162\3\0\3\162\1\0\1\17\2\0\6\22"+
 
290
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
291
    "\1\17\12\22\1\172\13\22\4\0\4\22\3\0\3\22"+
 
292
    "\1\0\13\173\1\174\2\173\1\175\1\176\12\173\1\177"+
 
293
    "\57\173\32\0\1\41\103\0\1\41\5\0\1\41\63\0"+
 
294
    "\2\166\1\0\1\166\132\0\1\41\1\0\1\200\110\0"+
 
295
    "\1\201\1\41\60\0\1\202\27\0\1\203\1\41\40\0"+
 
296
    "\1\202\50\0\1\41\1\0\1\204\107\0\1\41\5\0"+
 
297
    "\1\41\51\0\1\17\2\0\1\205\2\17\1\205\1\17"+
 
298
    "\1\205\1\0\4\17\2\0\4\205\17\0\1\205\1\17"+
 
299
    "\26\205\4\0\4\205\3\0\3\205\1\0\1\17\2\0"+
 
300
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
301
    "\1\22\1\17\1\22\1\206\24\22\4\0\4\22\3\0"+
 
302
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
303
    "\2\22\2\0\4\22\17\0\1\22\1\17\4\22\1\207"+
 
304
    "\7\22\1\210\4\22\1\211\4\22\4\0\4\22\3\0"+
 
305
    "\3\22\1\0\1\17\2\0\5\22\1\212\1\0\1\17"+
 
306
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\3\22"+
 
307
    "\1\213\7\22\1\214\1\22\1\215\3\22\1\216\4\22"+
 
308
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
309
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
310
    "\1\17\4\22\1\217\6\22\1\220\5\22\1\221\4\22"+
 
311
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
312
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
313
    "\1\17\6\22\1\222\17\22\4\0\4\22\3\0\3\22"+
 
314
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
315
    "\2\0\4\22\17\0\1\22\1\17\1\223\6\22\1\224"+
 
316
    "\3\22\1\225\1\226\11\22\4\0\4\22\3\0\3\22"+
 
317
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
318
    "\2\0\4\22\17\0\1\22\1\17\1\227\1\22\1\230"+
 
319
    "\4\22\1\231\2\22\1\232\10\22\1\233\1\234\1\22"+
 
320
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
321
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
322
    "\1\17\6\22\1\235\5\22\1\236\11\22\4\0\4\22"+
 
323
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
324
    "\1\161\2\22\2\0\4\22\17\0\1\237\1\17\2\22"+
 
325
    "\1\240\7\22\1\241\7\22\1\242\3\22\4\0\4\22"+
 
326
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
327
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\14\22"+
 
328
    "\1\243\11\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
329
    "\2\0\5\22\1\244\1\0\1\17\1\161\2\22\2\0"+
 
330
    "\4\22\17\0\1\22\1\17\1\245\5\22\1\246\17\22"+
 
331
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
332
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
333
    "\1\17\10\22\1\247\2\22\1\250\12\22\4\0\4\22"+
 
334
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
335
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\6\22"+
 
336
    "\1\251\5\22\1\252\11\22\4\0\4\22\3\0\3\22"+
 
337
    "\1\0\1\17\2\0\5\22\1\253\1\0\1\17\1\161"+
 
338
    "\2\22\2\0\4\22\17\0\1\22\1\17\1\254\3\22"+
 
339
    "\1\255\21\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
340
    "\2\0\5\22\1\256\1\0\1\17\1\161\2\22\2\0"+
 
341
    "\4\22\17\0\1\22\1\17\1\257\6\22\1\260\1\261"+
 
342
    "\3\22\1\262\11\22\4\0\4\22\3\0\3\22\1\0"+
 
343
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
344
    "\4\22\17\0\1\22\1\17\1\262\13\22\1\263\11\22"+
 
345
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
346
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
347
    "\1\17\1\264\25\22\4\0\4\22\3\0\3\22\1\0"+
 
348
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
349
    "\4\22\17\0\1\22\1\17\12\22\1\265\13\22\4\0"+
 
350
    "\4\22\3\0\3\22\1\0\2\70\1\0\10\70\1\0"+
 
351
    "\61\70\1\0\14\70\2\266\1\0\5\266\1\267\60\266"+
 
352
    "\1\270\20\266\2\74\1\0\10\74\1\0\71\74\1\0"+
 
353
    "\4\74\2\100\1\0\14\100\1\0\40\100\1\0\1\100"+
 
354
    "\1\0\4\100\1\0\22\100\16\0\1\271\143\0\1\272"+
 
355
    "\123\0\1\273\77\0\1\274\4\0\1\275\34\0\2\106"+
 
356
    "\1\0\14\106\1\0\11\106\1\0\12\106\1\0\13\106"+
 
357
    "\1\0\1\106\1\0\4\106\1\0\21\106\17\0\1\276"+
 
358
    "\76\0\1\277\2\0\1\277\1\0\1\277\5\0\1\300"+
 
359
    "\1\0\4\277\10\0\1\301\6\0\1\277\1\0\26\277"+
 
360
    "\4\0\4\277\3\0\3\277\44\0\1\302\1\0\1\303"+
 
361
    "\1\304\1\305\1\306\1\307\1\310\1\311\1\312\1\313"+
 
362
    "\1\314\1\315\3\0\1\316\1\317\1\320\1\0\1\321"+
 
363
    "\1\322\71\0\1\323\123\0\1\324\77\0\1\325\4\0"+
 
364
    "\1\326\100\0\1\327\45\0\2\117\1\0\55\117\1\0"+
 
365
    "\1\117\1\0\4\117\1\0\22\117\2\121\1\0\26\121"+
 
366
    "\1\0\6\121\1\0\32\121\2\0\16\121\1\122\1\0"+
 
367
    "\26\121\1\0\6\121\1\0\32\121\1\20\1\0\15\121"+
 
368
    "\3\0\1\330\2\0\1\330\1\0\1\330\3\0\1\330"+
 
369
    "\1\0\1\331\1\0\4\330\12\0\1\332\1\333\1\0"+
 
370
    "\1\330\1\0\1\330\1\0\26\330\4\0\4\330\3\0"+
 
371
    "\3\330\1\0\73\125\1\0\1\334\15\125\2\127\1\0"+
 
372
    "\21\127\1\0\33\127\1\0\1\127\1\0\4\127\1\0"+
 
373
    "\22\127\24\0\1\335\135\0\1\336\123\0\1\337\77\0"+
 
374
    "\1\340\4\0\1\341\34\0\2\135\1\0\34\135\1\0"+
 
375
    "\52\135\34\0\1\342\55\0\2\140\1\0\26\140\1\0"+
 
376
    "\2\140\1\0\41\140\1\0\4\140\1\0\6\140\36\0"+
 
377
    "\1\343\53\0\2\146\1\0\13\146\1\0\13\146\1\0"+
 
378
    "\1\146\1\0\36\146\1\0\1\146\1\0\7\146\1\0"+
 
379
    "\5\146\1\147\1\0\13\146\1\0\13\146\1\0\1\146"+
 
380
    "\1\0\36\146\1\20\1\146\1\0\7\146\1\0\4\146"+
 
381
    "\34\0\1\151\55\0\75\154\1\0\14\154\105\156\1\0"+
 
382
    "\4\156\103\157\1\0\6\157\103\0\1\344\6\0\1\17"+
 
383
    "\2\0\5\17\1\345\1\0\4\17\2\0\4\17\17\0"+
 
384
    "\30\17\4\0\4\17\3\0\3\17\1\0\1\162\2\0"+
 
385
    "\6\162\1\0\4\162\2\0\4\162\17\0\30\162\4\0"+
 
386
    "\4\162\3\0\3\162\1\0\1\162\2\0\1\162\2\346"+
 
387
    "\1\162\1\346\1\162\1\0\4\162\2\0\4\162\1\347"+
 
388
    "\3\0\1\347\12\0\30\162\4\0\4\162\3\0\3\162"+
 
389
    "\1\0\1\162\2\0\1\162\2\166\1\162\1\166\1\162"+
 
390
    "\1\0\4\162\2\0\2\162\1\164\1\165\17\0\10\162"+
 
391
    "\1\165\10\162\1\164\2\162\1\164\3\162\4\0\1\162"+
 
392
    "\1\164\2\162\3\0\3\162\1\0\1\162\2\0\1\162"+
 
393
    "\2\167\1\162\1\167\1\162\1\0\4\162\2\0\2\162"+
 
394
    "\1\164\1\165\1\0\1\166\15\0\10\162\1\165\10\162"+
 
395
    "\1\164\2\162\1\164\3\162\4\0\1\162\1\164\2\162"+
 
396
    "\3\0\3\162\1\0\1\162\2\0\1\162\1\167\1\170"+
 
397
    "\1\162\1\170\1\162\1\0\4\162\2\0\1\162\1\350"+
 
398
    "\1\164\1\165\1\0\1\166\15\0\10\162\1\165\1\350"+
 
399
    "\7\162\1\164\2\162\1\164\3\162\4\0\1\162\1\164"+
 
400
    "\2\162\3\0\3\162\1\0\1\162\2\0\1\162\4\351"+
 
401
    "\1\162\1\0\4\162\2\0\2\162\2\351\17\0\2\162"+
 
402
    "\2\351\3\162\2\351\10\162\1\351\2\162\1\351\3\162"+
 
403
    "\4\0\3\351\1\162\3\0\3\162\1\0\1\17\2\0"+
 
404
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
405
    "\1\22\1\17\6\22\1\352\17\22\4\0\4\22\3\0"+
 
406
    "\3\22\1\0\13\173\1\174\2\173\1\353\75\173\1\0"+
 
407
    "\107\173\17\0\1\354\73\0\1\202\27\0\1\203\41\0"+
 
408
    "\1\202\50\0\1\41\1\0\1\30\55\0\1\17\2\0"+
 
409
    "\6\205\1\0\4\17\2\0\4\205\17\0\1\205\1\17"+
 
410
    "\26\205\4\0\4\205\3\0\3\205\1\0\1\17\2\0"+
 
411
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
412
    "\1\22\1\17\2\22\1\355\23\22\4\0\4\22\3\0"+
 
413
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
414
    "\2\22\2\0\4\22\17\0\1\22\1\17\6\22\1\356"+
 
415
    "\17\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
416
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
417
    "\1\22\1\17\14\22\1\357\11\22\4\0\4\22\3\0"+
 
418
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
419
    "\2\22\2\0\4\22\17\0\1\22\1\17\3\22\1\360"+
 
420
    "\22\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
421
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
422
    "\1\22\1\17\20\22\1\361\5\22\4\0\4\22\3\0"+
 
423
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
424
    "\2\22\2\0\4\22\17\0\1\22\1\17\1\362\25\22"+
 
425
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
426
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
427
    "\1\17\14\22\1\363\11\22\4\0\4\22\3\0\3\22"+
 
428
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
429
    "\2\0\4\22\17\0\1\22\1\17\10\22\1\364\15\22"+
 
430
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
431
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
432
    "\1\17\12\22\1\365\13\22\4\0\4\22\3\0\3\22"+
 
433
    "\1\0\1\17\2\0\5\22\1\366\1\0\1\17\1\161"+
 
434
    "\2\22\2\0\4\22\17\0\1\22\1\17\1\367\20\22"+
 
435
    "\1\242\4\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
436
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
437
    "\17\0\1\22\1\17\4\22\1\370\3\22\1\371\15\22"+
 
438
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
439
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
440
    "\1\17\20\22\1\372\5\22\4\0\4\22\3\0\3\22"+
 
441
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
442
    "\2\0\4\22\17\0\1\22\1\17\3\22\1\373\22\22"+
 
443
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
444
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
445
    "\1\17\2\22\1\374\1\375\22\22\4\0\4\22\3\0"+
 
446
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
447
    "\2\22\2\0\4\22\17\0\1\22\1\17\1\376\25\22"+
 
448
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
449
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
450
    "\1\17\1\377\25\22\4\0\4\22\3\0\3\22\1\0"+
 
451
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
452
    "\4\22\17\0\1\22\1\17\12\22\1\u0100\13\22\4\0"+
 
453
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
454
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
455
    "\5\22\1\u0101\20\22\4\0\4\22\3\0\3\22\1\0"+
 
456
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
457
    "\4\22\17\0\1\22\1\17\5\22\1\u0102\20\22\4\0"+
 
458
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
459
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
460
    "\2\22\1\374\23\22\4\0\4\22\3\0\3\22\1\0"+
 
461
    "\1\17\2\0\5\22\1\u0103\1\0\1\17\1\161\2\22"+
 
462
    "\2\0\4\22\17\0\1\22\1\17\26\22\4\0\4\22"+
 
463
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
464
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\1\u0104"+
 
465
    "\25\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
466
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
467
    "\1\22\1\17\3\22\1\u0105\14\22\1\u0106\5\22\4\0"+
 
468
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
469
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
470
    "\3\22\1\u0107\22\22\4\0\4\22\3\0\3\22\1\0"+
 
471
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
472
    "\4\22\17\0\1\22\1\17\12\22\1\u0108\13\22\4\0"+
 
473
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
474
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
475
    "\20\22\1\u0109\5\22\4\0\4\22\3\0\3\22\1\0"+
 
476
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
477
    "\2\22\1\u010a\1\22\17\0\1\22\1\17\26\22\4\0"+
 
478
    "\4\22\3\0\1\22\1\u010b\1\22\1\0\1\17\2\0"+
 
479
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
480
    "\1\22\1\17\2\22\1\u010c\1\u010d\22\22\4\0\4\22"+
 
481
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
482
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\3\22"+
 
483
    "\1\u010e\22\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
484
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
485
    "\17\0\1\22\1\17\7\22\1\u010f\16\22\4\0\4\22"+
 
486
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
487
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\3\22"+
 
488
    "\1\u0110\22\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
489
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
490
    "\17\0\1\22\1\17\15\22\1\242\10\22\4\0\4\22"+
 
491
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
492
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\3\22"+
 
493
    "\1\u0111\22\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
494
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
495
    "\17\0\1\22\1\17\10\22\1\u0112\15\22\4\0\4\22"+
 
496
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
497
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\1\22"+
 
498
    "\1\u0113\5\22\1\u0114\12\22\1\u0115\3\22\4\0\4\22"+
 
499
    "\3\0\3\22\1\0\1\17\2\0\5\22\1\u0116\1\0"+
 
500
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
501
    "\26\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
502
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
503
    "\1\22\1\17\1\22\1\u0117\24\22\4\0\4\22\3\0"+
 
504
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
505
    "\2\22\2\0\4\22\17\0\1\22\1\17\4\22\1\u0118"+
 
506
    "\1\u0119\20\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
507
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
508
    "\17\0\1\22\1\17\10\22\1\u011a\3\22\1\u011b\11\22"+
 
509
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
510
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
511
    "\1\17\12\22\1\u011c\13\22\4\0\4\22\3\0\3\22"+
 
512
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
513
    "\2\0\4\22\17\0\1\22\1\17\7\22\1\u011d\16\22"+
 
514
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
515
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
516
    "\1\17\14\22\1\u011e\11\22\4\0\4\22\3\0\3\22"+
 
517
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
518
    "\2\0\4\22\17\0\1\22\1\17\12\22\1\u011f\13\22"+
 
519
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
520
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
521
    "\1\17\4\22\1\242\21\22\4\0\4\22\3\0\3\22"+
 
522
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
523
    "\2\0\4\22\17\0\1\22\1\17\7\22\1\u0120\1\u0121"+
 
524
    "\15\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
525
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
526
    "\1\22\1\17\26\22\4\0\4\22\3\0\1\22\1\242"+
 
527
    "\1\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
528
    "\2\22\2\0\4\22\17\0\1\22\1\17\22\22\1\u0122"+
 
529
    "\3\22\4\0\4\22\3\0\3\22\5\0\4\u0123\12\0"+
 
530
    "\2\u0123\21\0\2\u0123\3\0\2\u0123\10\0\1\u0123\2\0"+
 
531
    "\1\u0123\7\0\3\u0123\14\0\4\u0124\12\0\2\u0124\21\0"+
 
532
    "\2\u0124\3\0\2\u0124\10\0\1\u0124\2\0\1\u0124\7\0"+
 
533
    "\3\u0124\60\0\1\u0125\123\0\1\u0126\114\0\1\u0127\100\0"+
 
534
    "\1\u0128\35\0\34\277\1\301\55\277\3\0\1\277\2\0"+
 
535
    "\1\277\1\0\1\277\7\0\4\277\10\0\1\301\6\0"+
 
536
    "\1\277\1\0\26\277\4\0\4\277\3\0\3\277\54\0"+
 
537
    "\1\u0129\1\0\1\u012a\3\0\1\u012b\40\0\1\u012c\35\0"+
 
538
    "\1\u012d\3\0\1\u012e\1\0\1\u012f\116\0\1\u0130\40\0"+
 
539
    "\1\u0131\37\0\1\u0132\2\0\1\u0133\1\0\1\u0134\114\0"+
 
540
    "\1\u0135\1\u0136\4\0\1\u0137\76\0\1\u0138\103\0\1\u0139"+
 
541
    "\6\0\1\u013a\4\0\1\u013b\107\0\1\u013c\10\0\1\u013d"+
 
542
    "\1\u013e\73\0\1\u013f\1\0\1\u0140\112\0\1\u0141\1\u0142"+
 
543
    "\106\0\1\u0143\102\0\1\u0144\121\0\1\u0145\107\0\1\u0146"+
 
544
    "\46\0\1\u0147\34\0\1\u0148\3\0\1\u0149\115\0\1\u014a"+
 
545
    "\101\0\1\u014b\5\0\1\u014c\106\0\1\u014d\123\0\1\u014e"+
 
546
    "\114\0\1\u014f\100\0\1\u0150\105\0\1\u0151\3\0\1\u0152"+
 
547
    "\40\0\6\330\3\0\1\330\3\0\6\330\13\0\1\330"+
 
548
    "\1\0\1\330\1\0\26\330\4\0\4\330\3\0\3\330"+
 
549
    "\4\0\1\u0153\2\0\1\u0153\1\0\1\u0153\3\0\1\u0153"+
 
550
    "\3\0\4\u0153\15\0\1\u0153\1\0\1\u0153\1\0\26\u0153"+
 
551
    "\4\0\4\u0153\3\0\3\u0153\25\0\1\u0154\51\0\1\u0155"+
 
552
    "\47\0\1\u0156\125\0\1\u0157\123\0\1\u0158\114\0\1\u0159"+
 
553
    "\100\0\1\u015a\61\0\1\u015b\121\0\1\u015c\55\0\1\17"+
 
554
    "\2\0\1\17\4\u015d\1\17\1\0\4\17\2\0\2\17"+
 
555
    "\2\u015d\17\0\2\17\2\u015d\3\17\2\u015d\10\17\1\u015d"+
 
556
    "\2\17\1\u015d\3\17\4\0\3\u015d\1\17\3\0\3\17"+
 
557
    "\1\0\1\162\2\0\1\162\2\346\1\162\1\346\1\162"+
 
558
    "\1\0\4\162\2\0\2\162\1\164\1\162\17\0\21\162"+
 
559
    "\1\164\2\162\1\164\3\162\4\0\1\162\1\164\2\162"+
 
560
    "\3\0\3\162\5\0\2\346\1\0\1\346\102\0\1\162"+
 
561
    "\2\0\1\162\4\351\1\162\1\0\4\162\2\0\1\162"+
 
562
    "\1\350\2\351\17\0\2\162\2\351\3\162\2\351\1\350"+
 
563
    "\7\162\1\351\2\162\1\351\3\162\4\0\3\351\1\162"+
 
564
    "\3\0\3\162\1\0\1\17\2\0\6\22\1\0\1\17"+
 
565
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\2\22"+
 
566
    "\1\230\23\22\4\0\4\22\3\0\3\22\44\0\1\353"+
 
567
    "\11\0\2\353\51\0\1\u015e\73\0\1\17\2\0\6\22"+
 
568
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
569
    "\1\17\3\22\1\u015f\22\22\4\0\4\22\3\0\3\22"+
 
570
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
571
    "\2\0\4\22\17\0\1\22\1\17\1\u0160\25\22\4\0"+
 
572
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
573
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
574
    "\7\22\1\u0161\16\22\4\0\4\22\3\0\3\22\1\0"+
 
575
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
576
    "\4\22\17\0\1\22\1\17\6\22\1\u0162\17\22\4\0"+
 
577
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
578
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
579
    "\6\22\1\262\17\22\4\0\4\22\3\0\3\22\1\0"+
 
580
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
581
    "\4\22\17\0\1\22\1\17\3\22\1\u0163\22\22\4\0"+
 
582
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
583
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
584
    "\4\22\1\u0164\21\22\4\0\4\22\3\0\3\22\1\0"+
 
585
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
586
    "\4\22\17\0\1\22\1\17\3\22\1\375\22\22\4\0"+
 
587
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
588
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
589
    "\5\22\1\u0165\20\22\4\0\4\22\3\0\3\22\1\0"+
 
590
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
591
    "\4\22\17\0\1\22\1\17\6\22\1\u0166\17\22\4\0"+
 
592
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
593
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
594
    "\12\22\1\u0167\13\22\4\0\4\22\3\0\3\22\1\0"+
 
595
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
596
    "\4\22\17\0\1\22\1\17\14\22\1\u0168\11\22\4\0"+
 
597
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
598
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
599
    "\2\22\1\242\23\22\4\0\4\22\3\0\3\22\1\0"+
 
600
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
601
    "\4\22\17\0\1\22\1\17\6\22\1\u0169\17\22\4\0"+
 
602
    "\4\22\3\0\3\22\1\0\1\17\2\0\5\22\1\u016a"+
 
603
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
604
    "\1\17\26\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
605
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
606
    "\17\0\1\22\1\17\6\22\1\242\17\22\4\0\4\22"+
 
607
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
608
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\5\22"+
 
609
    "\1\u0111\20\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
610
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
611
    "\17\0\1\22\1\17\2\22\1\371\23\22\4\0\4\22"+
 
612
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
613
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\4\22"+
 
614
    "\1\u0162\21\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
615
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
616
    "\17\0\1\22\1\17\2\22\1\u016b\1\u016c\22\22\4\0"+
 
617
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
618
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
619
    "\13\22\1\u016d\12\22\4\0\4\22\3\0\3\22\1\0"+
 
620
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
621
    "\4\22\17\0\1\22\1\17\1\u016e\25\22\4\0\4\22"+
 
622
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
623
    "\1\161\2\22\2\0\4\22\17\0\1\242\1\17\26\22"+
 
624
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
625
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
626
    "\1\17\7\22\1\u016f\16\22\4\0\4\22\3\0\3\22"+
 
627
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
628
    "\2\0\4\22\17\0\1\22\1\17\6\22\1\u0170\17\22"+
 
629
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
630
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
631
    "\1\17\14\22\1\u0171\11\22\4\0\4\22\3\0\3\22"+
 
632
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
633
    "\2\0\4\22\17\0\1\22\1\17\11\22\1\u0162\14\22"+
 
634
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
635
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
636
    "\1\17\7\22\1\u0172\4\22\1\u0171\11\22\4\0\4\22"+
 
637
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
638
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\10\22"+
 
639
    "\1\u0173\15\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
640
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
641
    "\17\0\1\22\1\17\1\u0174\25\22\4\0\4\22\3\0"+
 
642
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
643
    "\2\22\2\0\4\22\17\0\1\22\1\17\3\22\1\u0175"+
 
644
    "\22\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
645
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
646
    "\1\22\1\17\6\22\1\u0176\17\22\4\0\4\22\3\0"+
 
647
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
648
    "\2\22\2\0\4\22\17\0\1\22\1\17\14\22\1\242"+
 
649
    "\11\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
650
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
651
    "\1\22\1\17\7\22\1\242\16\22\4\0\4\22\3\0"+
 
652
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
653
    "\2\22\2\0\4\22\17\0\1\22\1\17\10\22\1\u0177"+
 
654
    "\15\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
655
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
656
    "\1\22\1\17\13\22\1\242\12\22\4\0\4\22\3\0"+
 
657
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
658
    "\2\22\2\0\4\22\17\0\1\22\1\17\7\22\1\374"+
 
659
    "\16\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
660
    "\5\22\1\u0178\1\0\1\17\1\161\2\22\2\0\4\22"+
 
661
    "\17\0\1\22\1\17\26\22\4\0\4\22\3\0\3\22"+
 
662
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
663
    "\2\0\4\22\17\0\1\22\1\17\6\22\1\u0179\17\22"+
 
664
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
665
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
666
    "\1\17\1\u017a\25\22\4\0\4\22\3\0\3\22\1\0"+
 
667
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
668
    "\4\22\17\0\1\22\1\17\1\22\1\u017b\24\22\4\0"+
 
669
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
670
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
671
    "\7\22\1\u0163\16\22\4\0\4\22\3\0\3\22\1\0"+
 
672
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
673
    "\4\22\17\0\1\22\1\17\2\22\1\u017c\23\22\4\0"+
 
674
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
675
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
676
    "\16\22\1\u017d\7\22\4\0\4\22\3\0\3\22\1\0"+
 
677
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
678
    "\4\22\17\0\1\22\1\17\23\22\1\u017e\2\22\4\0"+
 
679
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
680
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
681
    "\3\22\1\u017f\22\22\4\0\4\22\3\0\3\22\1\0"+
 
682
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
683
    "\4\22\17\0\1\22\1\17\5\22\1\u0180\20\22\4\0"+
 
684
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
685
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
686
    "\2\22\1\366\23\22\4\0\4\22\3\0\3\22\1\0"+
 
687
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
688
    "\4\22\17\0\1\22\1\17\1\u0164\25\22\4\0\4\22"+
 
689
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
690
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\1\u0181"+
 
691
    "\25\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
692
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
693
    "\1\22\1\17\1\u0182\25\22\4\0\4\22\3\0\3\22"+
 
694
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
695
    "\2\0\4\22\17\0\1\22\1\17\17\22\1\242\6\22"+
 
696
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
697
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
698
    "\1\17\10\22\1\u0183\15\22\4\0\4\22\3\0\3\22"+
 
699
    "\5\0\4\u0184\12\0\2\u0184\21\0\2\u0184\3\0\2\u0184"+
 
700
    "\10\0\1\u0184\2\0\1\u0184\7\0\3\u0184\14\0\4\u0185"+
 
701
    "\12\0\2\u0185\21\0\2\u0185\3\0\2\u0185\10\0\1\u0185"+
 
702
    "\2\0\1\u0185\7\0\3\u0185\75\0\1\u0186\51\0\1\u0187"+
 
703
    "\125\0\1\u0188\123\0\1\u0127\101\0\1\u0189\4\0\1\u018a"+
 
704
    "\132\0\1\u018b\104\0\1\u018c\75\0\1\u018d\5\0\1\u018e"+
 
705
    "\102\0\1\u018f\114\0\1\u0190\114\0\1\u0191\105\0\1\u0192"+
 
706
    "\103\0\1\u0193\113\0\1\u0194\117\0\1\u0195\115\0\1\u0196"+
 
707
    "\103\0\1\u0197\3\0\1\u0198\120\0\1\u0199\112\0\1\u019a"+
 
708
    "\71\0\1\u019b\2\0\1\u019c\21\0\1\u019d\73\0\1\u019e"+
 
709
    "\102\0\1\u019f\123\0\1\u01a0\5\0\1\u01a1\34\0\1\u01a2"+
 
710
    "\154\0\1\u01a3\103\0\1\u01a4\2\0\1\u01a5\14\0\1\u01a6"+
 
711
    "\103\0\1\u01a7\104\0\1\u01a8\4\0\1\u01a9\111\0\1\u01aa"+
 
712
    "\101\0\1\u01ab\7\0\1\u01ac\113\0\1\u01ad\73\0\1\u01ae"+
 
713
    "\125\0\1\u01af\101\0\1\u01b0\15\0\1\u01b1\1\0\1\u01b2"+
 
714
    "\70\0\1\u01b3\114\0\1\u01b4\115\0\1\u01b5\3\0\1\u01b6"+
 
715
    "\101\0\1\u01b7\2\0\1\u0133\106\0\1\u01b8\111\0\1\u01b9"+
 
716
    "\125\0\1\u01ba\51\0\1\u01bb\125\0\1\u01bc\123\0\1\u014f"+
 
717
    "\46\0\1\u01bd\156\0\1\u01be\37\0\6\u0153\3\0\1\u0153"+
 
718
    "\3\0\6\u0153\13\0\1\u0153\1\0\1\u0153\1\0\26\u0153"+
 
719
    "\4\0\4\u0153\3\0\3\u0153\25\0\1\u01bf\164\0\1\u01c0"+
 
720
    "\77\0\1\u01c1\51\0\1\u01c2\125\0\1\u01c3\123\0\1\u0159"+
 
721
    "\62\0\1\u01c4\65\0\1\17\2\0\1\17\4\u01c5\1\17"+
 
722
    "\1\0\4\17\2\0\2\17\2\u01c5\17\0\2\17\2\u01c5"+
 
723
    "\3\17\2\u01c5\10\17\1\u01c5\2\17\1\u01c5\3\17\4\0"+
 
724
    "\3\u01c5\1\17\3\0\3\17\1\0\1\17\2\0\6\22"+
 
725
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
726
    "\1\17\4\22\1\u01c6\21\22\4\0\4\22\3\0\3\22"+
 
727
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
728
    "\2\0\4\22\17\0\1\22\1\17\16\22\1\242\7\22"+
 
729
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
730
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
731
    "\1\17\6\22\1\u01c7\17\22\4\0\4\22\3\0\3\22"+
 
732
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
733
    "\2\0\4\22\17\0\1\22\1\17\10\22\1\u01c8\15\22"+
 
734
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
735
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
736
    "\1\17\3\22\1\u0162\22\22\4\0\4\22\3\0\3\22"+
 
737
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
738
    "\2\0\4\22\17\0\1\22\1\17\13\22\1\u01c9\12\22"+
 
739
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
740
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
741
    "\1\17\2\22\1\u01ca\23\22\4\0\4\22\3\0\3\22"+
 
742
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
743
    "\2\0\4\22\17\0\1\22\1\17\15\22\1\u01cb\10\22"+
 
744
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
745
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
746
    "\1\17\14\22\1\u01cc\11\22\4\0\4\22\3\0\3\22"+
 
747
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
748
    "\2\0\4\22\17\0\1\22\1\17\4\22\1\u01cd\21\22"+
 
749
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
750
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
751
    "\1\17\3\22\1\242\22\22\4\0\4\22\3\0\3\22"+
 
752
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
753
    "\2\0\4\22\17\0\1\22\1\17\10\22\1\u01ce\15\22"+
 
754
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
755
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
756
    "\1\17\20\22\1\u01cf\5\22\4\0\4\22\3\0\3\22"+
 
757
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
758
    "\2\0\4\22\17\0\1\22\1\17\12\22\1\u01d0\13\22"+
 
759
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
760
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
761
    "\1\17\4\22\1\u016b\21\22\4\0\4\22\3\0\3\22"+
 
762
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
763
    "\2\0\4\22\17\0\1\22\1\17\6\22\1\u01d1\17\22"+
 
764
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
765
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
766
    "\1\17\12\22\1\u01d2\13\22\4\0\4\22\3\0\3\22"+
 
767
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
768
    "\2\0\4\22\17\0\1\22\1\17\26\22\4\0\4\22"+
 
769
    "\3\0\1\22\1\u016f\1\22\1\0\1\17\2\0\6\22"+
 
770
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
771
    "\1\17\1\u01d3\25\22\4\0\4\22\3\0\3\22\1\0"+
 
772
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
773
    "\4\22\17\0\1\22\1\17\4\22\1\u01d4\21\22\4\0"+
 
774
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
775
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
776
    "\23\22\1\374\2\22\4\0\4\22\3\0\3\22\1\0"+
 
777
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
778
    "\4\22\17\0\1\22\1\17\11\22\1\u01d5\14\22\4\0"+
 
779
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
780
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
781
    "\3\22\1\374\22\22\4\0\4\22\3\0\3\22\1\0"+
 
782
    "\1\17\2\0\5\22\1\u01d6\1\0\1\17\1\161\2\22"+
 
783
    "\2\0\4\22\17\0\1\22\1\17\26\22\4\0\4\22"+
 
784
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
785
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\7\22"+
 
786
    "\1\360\16\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
787
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
788
    "\17\0\1\22\1\17\6\22\1\u01d7\17\22\4\0\4\22"+
 
789
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
790
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\1\u01d8"+
 
791
    "\25\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
792
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
793
    "\1\22\1\17\1\u0179\25\22\4\0\4\22\3\0\3\22"+
 
794
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
795
    "\2\0\4\22\17\0\1\22\1\17\6\22\1\u01d9\17\22"+
 
796
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
797
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
798
    "\1\17\3\22\1\u01da\22\22\4\0\4\22\3\0\3\22"+
 
799
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
800
    "\2\0\4\22\17\0\1\22\1\17\7\22\1\u01db\16\22"+
 
801
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
802
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
803
    "\1\17\3\22\1\250\22\22\4\0\4\22\3\0\3\22"+
 
804
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
805
    "\2\0\4\22\17\0\1\22\1\17\12\22\1\u01dc\13\22"+
 
806
    "\4\0\4\22\3\0\3\22\42\0\1\u0188\5\0\1\u0127"+
 
807
    "\45\0\6\u0187\1\0\1\u01dd\1\0\1\u01dd\2\u0187\1\u01dd"+
 
808
    "\4\u0187\2\u01dd\1\0\2\u01dd\1\0\1\u01dd\2\0\6\u01dd"+
 
809
    "\1\u0187\1\u01dd\26\u0187\1\0\1\u01dd\1\0\1\u01dd\4\u0187"+
 
810
    "\3\u01dd\3\u0187\17\0\1\u01de\141\0\1\u01df\123\0\1\u01e0"+
 
811
    "\104\0\1\u0198\1\0\1\u01e1\44\0\1\u01e2\161\0\1\u01e3"+
 
812
    "\74\0\1\u01e4\116\0\1\u01e5\114\0\1\u01e6\103\0\1\u0198"+
 
813
    "\115\0\1\u0197\103\0\1\u01e7\116\0\1\u01e8\113\0\1\u0133"+
 
814
    "\120\0\1\u01e9\77\0\1\u0195\123\0\1\u0195\103\0\1\u01ea"+
 
815
    "\122\0\1\u01eb\35\0\1\u01ec\111\0\1\u01ed\155\0\1\u01ee"+
 
816
    "\104\0\1\u01ef\111\0\1\u01f0\130\0\1\u01f1\66\0\1\u0195"+
 
817
    "\125\0\1\u01f2\75\0\1\u01f3\121\0\1\u01f4\117\0\1\u01f5"+
 
818
    "\114\0\1\u0198\100\0\1\u01f6\121\0\1\u0195\107\0\1\u01f7"+
 
819
    "\100\0\1\u01f8\114\0\1\u01f9\104\0\1\u01fa\116\0\1\u01fb"+
 
820
    "\122\0\1\u0195\77\0\1\u0195\110\0\1\u01fc\105\0\1\u01fd"+
 
821
    "\120\0\1\u01e8\102\0\1\u01a2\134\0\1\u01fe\71\0\1\u01ff"+
 
822
    "\14\0\1\u0200\77\0\1\u0198\113\0\1\u0201\103\0\1\u0202"+
 
823
    "\103\0\1\u01bc\5\0\1\u014f\45\0\6\u01bb\1\0\1\u0203"+
 
824
    "\1\0\1\u0203\2\u01bb\1\u0203\4\u01bb\2\u0203\1\0\2\u0203"+
 
825
    "\1\0\1\u0203\2\0\6\u0203\1\u01bb\1\u0203\26\u01bb\1\0"+
 
826
    "\1\u0203\1\0\1\u0203\4\u01bb\3\u0203\3\u01bb\17\0\1\u0204"+
 
827
    "\143\0\1\u0205\120\0\1\u0206\132\0\1\u0207\52\0\1\u01c3"+
 
828
    "\5\0\1\u0159\45\0\6\u01c2\1\0\1\u0208\1\0\1\u0208"+
 
829
    "\2\u01c2\1\u0208\4\u01c2\2\u0208\1\0\2\u0208\1\0\1\u0208"+
 
830
    "\2\0\6\u0208\1\u01c2\1\u0208\26\u01c2\1\0\1\u0208\1\0"+
 
831
    "\1\u0208\4\u01c2\3\u0208\3\u01c2\17\0\1\u0209\73\0\1\17"+
 
832
    "\2\0\1\17\4\u020a\1\17\1\0\4\17\2\0\2\17"+
 
833
    "\2\u020a\17\0\2\17\2\u020a\3\17\2\u020a\10\17\1\u020a"+
 
834
    "\2\17\1\u020a\3\17\4\0\3\u020a\1\17\3\0\3\17"+
 
835
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
836
    "\2\0\4\22\17\0\1\22\1\17\1\u020b\25\22\4\0"+
 
837
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
838
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
839
    "\1\u020c\25\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
840
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
841
    "\17\0\1\22\1\17\5\22\1\242\20\22\4\0\4\22"+
 
842
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
843
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\4\22"+
 
844
    "\1\u020d\21\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
845
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
846
    "\17\0\1\22\1\17\10\22\1\u020e\15\22\4\0\4\22"+
 
847
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
848
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\22\22"+
 
849
    "\1\242\3\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
850
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
851
    "\17\0\1\22\1\17\12\22\1\u020f\13\22\4\0\4\22"+
 
852
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
853
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\12\22"+
 
854
    "\1\u0210\13\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
855
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
856
    "\17\0\1\22\1\17\6\22\1\u016f\17\22\4\0\4\22"+
 
857
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
858
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\17\22"+
 
859
    "\1\371\6\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
860
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
861
    "\17\0\1\u0211\1\17\26\22\4\0\4\22\3\0\3\22"+
 
862
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
863
    "\2\0\4\22\17\0\1\22\1\17\10\22\1\u0212\15\22"+
 
864
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
865
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
866
    "\1\17\12\22\1\u0213\13\22\4\0\4\22\3\0\3\22"+
 
867
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
868
    "\2\0\4\22\17\0\1\22\1\17\22\22\1\u0214\3\22"+
 
869
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
870
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
871
    "\1\17\11\22\1\361\14\22\4\0\4\22\3\0\3\22"+
 
872
    "\1\0\1\17\2\0\6\22\1\0\1\17\1\161\2\22"+
 
873
    "\2\0\4\22\17\0\1\22\1\17\7\22\1\u016b\16\22"+
 
874
    "\4\0\4\22\3\0\3\22\1\0\1\17\2\0\6\22"+
 
875
    "\1\0\1\17\1\161\2\22\2\0\2\22\1\u0215\1\22"+
 
876
    "\17\0\1\22\1\17\26\22\4\0\4\22\3\0\2\22"+
 
877
    "\1\u0216\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
878
    "\2\22\2\0\4\22\17\0\1\22\1\17\11\22\1\374"+
 
879
    "\14\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
880
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
881
    "\1\22\1\17\5\22\1\u0217\20\22\4\0\4\22\3\0"+
 
882
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
883
    "\2\22\2\0\4\22\17\0\1\22\1\17\10\22\1\u0218"+
 
884
    "\15\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
885
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
886
    "\1\22\1\17\7\22\1\u0219\16\22\4\0\4\22\3\0"+
 
887
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
888
    "\2\22\2\0\4\22\17\0\1\22\1\17\10\22\1\u021a"+
 
889
    "\15\22\4\0\4\22\3\0\3\22\17\0\1\u0187\146\0"+
 
890
    "\1\u021b\117\0\1\u01af\107\0\1\u0195\106\0\1\u0133\116\0"+
 
891
    "\1\u01f9\103\0\1\u021c\107\0\1\u021d\107\0\1\u0198\107\0"+
 
892
    "\1\u021e\121\0\1\u01b0\116\0\1\u0198\113\0\1\u021f\106\0"+
 
893
    "\1\u0220\101\0\1\u0221\115\0\1\u0222\102\0\1\u0223\112\0"+
 
894
    "\1\u0224\112\0\1\u0225\112\0\1\u0226\110\0\1\u0195\126\0"+
 
895
    "\1\u01e2\75\0\1\u0227\111\0\1\u0228\117\0\1\u0229\103\0"+
 
896
    "\1\u0133\105\0\1\u0134\115\0\1\u0195\105\0\1\u022a\113\0"+
 
897
    "\1\u022b\115\0\1\u022c\46\0\1\u022d\146\0\1\u022e\117\0"+
 
898
    "\1\u022f\111\0\1\u0230\103\0\1\u0231\121\0\1\u0232\52\0"+
 
899
    "\1\u01bb\154\0\1\u0233\113\0\1\u0234\127\0\1\u0235\26\0"+
 
900
    "\1\u01c2\73\0\1\17\2\0\1\17\4\22\1\17\1\0"+
 
901
    "\4\17\2\0\2\17\2\22\17\0\2\17\2\22\3\17"+
 
902
    "\2\22\10\17\1\22\2\17\1\22\3\17\4\0\3\22"+
 
903
    "\1\17\3\0\3\17\1\0\1\17\2\0\6\22\1\0"+
 
904
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
905
    "\5\22\1\u016b\20\22\4\0\4\22\3\0\3\22\1\0"+
 
906
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
907
    "\4\22\17\0\1\22\1\17\12\22\1\u0162\13\22\4\0"+
 
908
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
909
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
910
    "\14\22\1\u0236\11\22\4\0\4\22\3\0\3\22\1\0"+
 
911
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
912
    "\4\22\17\0\1\22\1\17\6\22\1\u0237\17\22\4\0"+
 
913
    "\4\22\3\0\3\22\1\0\1\17\2\0\5\22\1\374"+
 
914
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
915
    "\1\17\26\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
916
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
917
    "\17\0\1\22\1\17\6\22\1\u0238\17\22\4\0\4\22"+
 
918
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
919
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\3\22"+
 
920
    "\1\u01cf\22\22\4\0\4\22\3\0\3\22\1\0\1\17"+
 
921
    "\2\0\6\22\1\0\1\17\1\161\2\22\2\0\4\22"+
 
922
    "\17\0\1\22\1\17\5\22\1\372\20\22\4\0\4\22"+
 
923
    "\3\0\3\22\1\0\1\17\2\0\6\22\1\0\1\17"+
 
924
    "\1\161\2\22\2\0\4\22\17\0\1\22\1\17\1\u0239"+
 
925
    "\25\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
926
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
927
    "\1\22\1\17\7\22\1\u023a\16\22\4\0\4\22\3\0"+
 
928
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
929
    "\2\22\2\0\4\22\17\0\1\22\1\17\12\22\1\u023b"+
 
930
    "\13\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
931
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
932
    "\1\22\1\17\3\22\1\u023c\22\22\4\0\4\22\3\0"+
 
933
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
934
    "\2\22\2\0\4\22\17\0\1\22\1\17\14\22\1\u023d"+
 
935
    "\11\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
936
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
937
    "\1\22\1\17\21\22\1\242\4\22\4\0\4\22\3\0"+
 
938
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
939
    "\2\22\2\0\4\22\17\0\1\22\1\17\3\22\1\u0219"+
 
940
    "\22\22\4\0\4\22\3\0\3\22\52\0\1\u023e\117\0"+
 
941
    "\1\u0228\77\0\1\u023f\115\0\1\u0240\113\0\1\u0241\115\0"+
 
942
    "\1\u0242\111\0\1\u0243\103\0\1\u01b7\105\0\1\u0244\130\0"+
 
943
    "\1\u0245\72\0\1\u01a3\3\0\1\u0246\115\0\1\u0247\113\0"+
 
944
    "\1\u01fa\102\0\1\u0198\110\0\1\u0133\116\0\1\u0195\122\0"+
 
945
    "\1\u0248\76\0\1\u0249\113\0\1\u01f2\105\0\1\u0133\113\0"+
 
946
    "\1\u024a\110\0\1\u024b\110\0\1\u0202\122\0\1\u01e1\101\0"+
 
947
    "\1\u024c\40\0\26\u0234\1\u0195\63\u0234\102\0\1\u024d\7\0"+
 
948
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
949
    "\4\22\17\0\1\22\1\17\12\22\1\u024e\13\22\4\0"+
 
950
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
951
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
952
    "\12\22\1\u016b\13\22\4\0\4\22\3\0\3\22\1\0"+
 
953
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
954
    "\4\22\17\0\1\22\1\17\12\22\1\u024f\13\22\4\0"+
 
955
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
956
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
957
    "\5\22\1\374\20\22\4\0\4\22\3\0\3\22\1\0"+
 
958
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
959
    "\4\22\17\0\1\22\1\17\14\22\1\u0250\11\22\4\0"+
 
960
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
961
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
962
    "\3\22\1\u016f\22\22\4\0\4\22\3\0\3\22\1\0"+
 
963
    "\1\17\2\0\6\22\1\0\1\17\1\161\2\22\2\0"+
 
964
    "\4\22\17\0\1\22\1\17\6\22\1\u0121\17\22\4\0"+
 
965
    "\4\22\3\0\3\22\1\0\1\17\2\0\6\22\1\0"+
 
966
    "\1\17\1\161\2\22\2\0\4\22\17\0\1\22\1\17"+
 
967
    "\12\22\1\242\13\22\4\0\4\22\3\0\3\22\62\0"+
 
968
    "\1\u0241\102\0\1\u01f2\125\0\1\u0195\112\0\1\u0195\76\0"+
 
969
    "\1\u0240\107\0\1\u01a9\112\0\1\u0251\46\0\1\u0252\157\0"+
 
970
    "\1\u0253\100\0\1\u0196\111\0\1\u024a\114\0\1\u0254\111\0"+
 
971
    "\1\u0240\116\0\1\u0255\135\0\1\u0256\10\0\1\17\2\0"+
 
972
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
973
    "\1\22\1\17\10\22\1\u0257\15\22\4\0\4\22\3\0"+
 
974
    "\3\22\1\0\1\17\2\0\6\22\1\0\1\17\1\161"+
 
975
    "\2\22\2\0\4\22\17\0\1\22\1\17\3\22\1\371"+
 
976
    "\22\22\4\0\4\22\3\0\3\22\1\0\1\17\2\0"+
 
977
    "\6\22\1\0\1\17\1\161\2\22\2\0\4\22\17\0"+
 
978
    "\1\22\1\17\1\u023b\25\22\4\0\4\22\3\0\3\22"+
 
979
    "\50\0\1\u01b0\114\0\1\u0258\117\0\1\u01f2\104\0\1\u01af"+
 
980
    "\103\0\1\u0259\142\0\1\u025a\13\0\1\17\2\0\6\22"+
 
981
    "\1\0\1\17\1\161\2\22\2\0\4\22\17\0\1\22"+
 
982
    "\1\17\26\22\4\0\4\22\3\0\1\u023c\2\22\51\0"+
 
983
    "\1\u025b\115\0\1\u0234\104\0\1\u0195\11\0\1\u01f9\30\0";
 
984
 
 
985
  private static int [] zzUnpackTrans() {
 
986
    int [] result = new int[40034];
 
987
    int offset = 0;
 
988
    offset = zzUnpackTrans(ZZ_TRANS_PACKED_0, offset, result);
 
989
    return result;
 
990
  }
 
991
 
 
992
  private static int zzUnpackTrans(String packed, int offset, int [] result) {
 
993
    int i = 0;       /* index in packed string  */
 
994
    int j = offset;  /* index in unpacked array */
 
995
    int l = packed.length();
 
996
    while (i < l) {
 
997
      int count = packed.charAt(i++);
 
998
      int value = packed.charAt(i++);
 
999
      value--;
 
1000
      do result[j++] = value; while (--count > 0);
 
1001
    }
 
1002
    return j;
 
1003
  }
 
1004
 
 
1005
 
 
1006
  /* error codes */
 
1007
  private static final int ZZ_UNKNOWN_ERROR = 0;
 
1008
  private static final int ZZ_NO_MATCH = 1;
 
1009
  private static final int ZZ_PUSHBACK_2BIG = 2;
 
1010
 
 
1011
  /* error messages for the codes above */
 
1012
  private static final String ZZ_ERROR_MSG[] = {
 
1013
    "Unkown internal scanner error",
 
1014
    "Error: could not match input",
 
1015
    "Error: pushback value was too large"
 
1016
  };
 
1017
 
 
1018
  /**
 
1019
   * ZZ_ATTRIBUTE[aState] contains the attributes of state <code>aState</code>
 
1020
   */
 
1021
  private static final int [] ZZ_ATTRIBUTE = zzUnpackAttribute();
 
1022
 
 
1023
  private static final String ZZ_ATTRIBUTE_PACKED_0 =
 
1024
    "\13\0\2\1\1\0\2\1\1\11\4\1\1\11\4\1"+
 
1025
    "\2\11\4\1\1\11\22\1\2\11\3\1\1\11\1\1"+
 
1026
    "\1\11\1\1\1\11\1\1\1\11\1\1\1\11\5\1"+
 
1027
    "\1\11\10\1\1\11\2\1\1\11\2\1\1\11\1\1"+
 
1028
    "\1\11\5\1\1\11\2\1\1\11\1\1\3\11\3\1"+
 
1029
    "\3\11\1\1\1\11\15\1\2\0\1\11\3\1\2\0"+
 
1030
    "\1\11\62\1\1\11\2\1\1\11\4\0\1\11\2\0"+
 
1031
    "\1\11\26\0\3\1\2\11\5\0\1\11\2\0\2\1"+
 
1032
    "\1\0\73\1\60\0\1\1\2\0\1\11\5\0\1\11"+
 
1033
    "\1\1\1\11\45\1\1\0\1\11\1\0\1\1\15\0"+
 
1034
    "\1\11\45\0\1\1\3\0\1\11\2\0\1\1\1\0"+
 
1035
    "\1\11\30\1\15\0\1\1\20\0\1\1\16\0\21\1"+
 
1036
    "\33\0\11\1\4\0\1\1\12\0\3\1\6\0\1\1"+
 
1037
    "\2\0\1\11\1\0";
 
1038
 
 
1039
  private static int [] zzUnpackAttribute() {
 
1040
    int [] result = new int[603];
 
1041
    int offset = 0;
 
1042
    offset = zzUnpackAttribute(ZZ_ATTRIBUTE_PACKED_0, offset, result);
 
1043
    return result;
 
1044
  }
 
1045
 
 
1046
  private static int zzUnpackAttribute(String packed, int offset, int [] result) {
 
1047
    int i = 0;       /* index in packed string  */
 
1048
    int j = offset;  /* index in unpacked array */
 
1049
    int l = packed.length();
 
1050
    while (i < l) {
 
1051
      int count = packed.charAt(i++);
 
1052
      int value = packed.charAt(i++);
 
1053
      do result[j++] = value; while (--count > 0);
 
1054
    }
 
1055
    return j;
 
1056
  }
 
1057
 
 
1058
  /** the input device */
 
1059
  private java.io.Reader zzReader;
 
1060
 
 
1061
  /** the current state of the DFA */
 
1062
  private int zzState;
 
1063
 
 
1064
  /** the current lexical state */
 
1065
  private int zzLexicalState = YYINITIAL;
 
1066
 
 
1067
  /** this buffer contains the current text to be matched and is
 
1068
      the source of the yytext() string */
 
1069
  private char zzBuffer[];
 
1070
 
 
1071
  /** the textposition at the last accepting state */
 
1072
  private int zzMarkedPos;
 
1073
 
 
1074
  /** the current text position in the buffer */
 
1075
  private int zzCurrentPos;
 
1076
 
 
1077
  /** startRead marks the beginning of the yytext() string in the buffer */
 
1078
  private int zzStartRead;
 
1079
 
 
1080
  /** endRead marks the last character in the buffer, that has been read
 
1081
      from input */
 
1082
  private int zzEndRead;
 
1083
 
 
1084
  /** zzAtEOF == true <=> the scanner is at the EOF */
 
1085
  private boolean zzAtEOF;
 
1086
 
 
1087
  /* user code: */
 
1088
 
 
1089
        /**
 
1090
         * Token type specifying we're in a JavaScript multiline comment.
 
1091
         */
 
1092
        private static final int INTERNAL_IN_JS_MLC                             = -8;
 
1093
 
 
1094
        /**
 
1095
         * Token type specifying we're in a JavaScript documentation comment.
 
1096
         */
 
1097
        private static final int INTERNAL_IN_JS_COMMENT_DOCUMENTATION = -9;
 
1098
        
 
1099
        /**
 
1100
         * Token type specifying we're in an invalid multi-line JS string.
 
1101
         */
 
1102
        private static final int INTERNAL_IN_JS_STRING_INVALID  = -10;
 
1103
 
 
1104
        /**
 
1105
         * Token type specifying we're in a valid multi-line JS string.
 
1106
         */
 
1107
        private static final int INTERNAL_IN_JS_STRING_VALID            = -11;
 
1108
 
 
1109
        /**
 
1110
         * Token type specifying we're in an invalid multi-line JS single-quoted string.
 
1111
         */
 
1112
        private static final int INTERNAL_IN_JS_CHAR_INVALID    = -12;
 
1113
 
 
1114
        /**
 
1115
         * Token type specifying we're in a valid multi-line JS single-quoted string.
 
1116
         */
 
1117
        private static final int INTERNAL_IN_JS_CHAR_VALID              = -13;
 
1118
 
 
1119
        private static final int INTERNAL_E4X = -14;
 
1120
 
 
1121
        private static final int INTERNAL_E4X_INTAG = -15;
 
1122
 
 
1123
        private static final int INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION = -16;
 
1124
 
 
1125
        private static final int INTERNAL_IN_E4X_COMMENT = -17;
 
1126
 
 
1127
        private static final int INTERNAL_E4X_DTD = -18;
 
1128
 
 
1129
        private static final int INTERNAL_E4X_DTD_INTERNAL = -19;
 
1130
 
 
1131
        private static final int INTERNAL_E4X_ATTR_SINGLE = -20;
 
1132
 
 
1133
        private static final int INTERNAL_E4X_ATTR_DOUBLE = -21;
 
1134
 
 
1135
        private static final int INTERNAL_E4X_MARKUP_CDATA = -22;
 
1136
 
 
1137
        /**
 
1138
         * When in the JS_STRING state, whether the current string is valid.
 
1139
         */
 
1140
        private boolean validJSString;
 
1141
 
 
1142
        /**
 
1143
         * Whether we're in an internal DTD.  Only valid if in an e4x DTD.
 
1144
         */
 
1145
        private boolean e4x_inInternalDtd;
 
1146
 
 
1147
        /**
 
1148
         * The previous e4x state.  Only valid if in an e4x state.
 
1149
         */
 
1150
        private int e4x_prevState;
 
1151
 
 
1152
        /**
 
1153
         * The version of JavaScript being highlighted.
 
1154
         */
 
1155
        private static String jsVersion;
 
1156
 
 
1157
        /**
 
1158
         * Whether e4x is being highlighted.
 
1159
         */
 
1160
        private static boolean e4xSupported;
 
1161
 
 
1162
        /**
 
1163
         * Language state set on JS tokens.  Must be 0.
 
1164
         */
 
1165
        private static final int LANG_INDEX_DEFAULT     = 0;
 
1166
 
 
1167
        /**
 
1168
         * Language state set on E4X tokens.
 
1169
         */
 
1170
        private static final int LANG_INDEX_E4X = 1;
 
1171
 
 
1172
        /**
 
1173
         * Constructor.  This must be here because JFlex does not generate a
 
1174
         * no-parameter constructor.
 
1175
         */
 
1176
        public JavaScriptTokenMaker() {
 
1177
                super();
 
1178
        }
 
1179
 
 
1180
 
 
1181
        static {
 
1182
                jsVersion = "1.0";
 
1183
                e4xSupported = true;
 
1184
        }
 
1185
 
 
1186
 
 
1187
        /**
 
1188
         * Adds the token specified to the current linked list of tokens as an
 
1189
         * "end token;" that is, at <code>zzMarkedPos</code>.
 
1190
         *
 
1191
         * @param tokenType The token's type.
 
1192
         */
 
1193
        private void addEndToken(int tokenType) {
 
1194
                addToken(zzMarkedPos,zzMarkedPos, tokenType);
 
1195
        }
 
1196
 
 
1197
 
 
1198
        /**
 
1199
         * Adds the token specified to the current linked list of tokens.
 
1200
         *
 
1201
         * @param tokenType The token's type.
 
1202
         * @see #addToken(int, int, int)
 
1203
         */
 
1204
        private void addHyperlinkToken(int start, int end, int tokenType) {
 
1205
                int so = start + offsetShift;
 
1206
                addToken(zzBuffer, start,end, tokenType, so, true);
 
1207
        }
 
1208
 
 
1209
 
 
1210
        /**
 
1211
         * Adds the token specified to the current linked list of tokens.
 
1212
         *
 
1213
         * @param tokenType The token's type.
 
1214
         */
 
1215
        private void addToken(int tokenType) {
 
1216
                addToken(zzStartRead, zzMarkedPos-1, tokenType);
 
1217
        }
 
1218
 
 
1219
 
 
1220
        /**
 
1221
         * Adds the token specified to the current linked list of tokens.
 
1222
         *
 
1223
         * @param tokenType The token's type.
 
1224
         */
 
1225
        private void addToken(int start, int end, int tokenType) {
 
1226
                int so = start + offsetShift;
 
1227
                addToken(zzBuffer, start,end, tokenType, so);
 
1228
        }
 
1229
 
 
1230
 
 
1231
        /**
 
1232
         * Adds the token specified to the current linked list of tokens.
 
1233
         *
 
1234
         * @param array The character array.
 
1235
         * @param start The starting offset in the array.
 
1236
         * @param end The ending offset in the array.
 
1237
         * @param tokenType The token's type.
 
1238
         * @param startOffset The offset in the document at which this token
 
1239
         *                    occurs.
 
1240
         */
 
1241
        @Override
 
1242
        public void addToken(char[] array, int start, int end, int tokenType, int startOffset) {
 
1243
                super.addToken(array, start,end, tokenType, startOffset);
 
1244
                zzStartRead = zzMarkedPos;
 
1245
        }
 
1246
 
 
1247
 
 
1248
        /**
 
1249
         * Returns the closest {@link TokenTypes "standard" token type} for a given
 
1250
         * "internal" token type (e.g. one whose value is <code>&lt; 0</code>).
 
1251
         * 
 
1252
         */
 
1253
        @Override
 
1254
        public int getClosestStandardTokenTypeForInternalType(int type) {
 
1255
                switch (type) {
 
1256
                        case INTERNAL_IN_JS_MLC:
 
1257
                                return TokenTypes.COMMENT_MULTILINE;
 
1258
                        case INTERNAL_IN_JS_COMMENT_DOCUMENTATION:
 
1259
                                return TokenTypes.COMMENT_DOCUMENTATION;
 
1260
                        case INTERNAL_IN_JS_STRING_INVALID:
 
1261
                        case INTERNAL_IN_JS_STRING_VALID:
 
1262
                        case INTERNAL_IN_JS_CHAR_INVALID:
 
1263
                        case INTERNAL_IN_JS_CHAR_VALID:
 
1264
                                return TokenTypes.LITERAL_STRING_DOUBLE_QUOTE;
 
1265
                }
 
1266
                return type;
 
1267
        }
 
1268
 
 
1269
 
 
1270
        /**
 
1271
         * Returns the JavaScript version being highlighted.
 
1272
         *
 
1273
         * @return Supported JavaScript version.
 
1274
         * @see #isJavaScriptCompatible(String)
 
1275
         */
 
1276
        public static String getJavaScriptVersion() {
 
1277
                return jsVersion;
 
1278
        }
 
1279
 
 
1280
 
 
1281
        /**
 
1282
         * {@inheritDoc}
 
1283
         */
 
1284
        @Override
 
1285
        public String[] getLineCommentStartAndEnd() {
 
1286
                return new String[] { "//", null };
 
1287
        }
 
1288
 
 
1289
 
 
1290
        /**
 
1291
         * Returns the first token in the linked list of tokens generated
 
1292
         * from <code>text</code>.  This method must be implemented by
 
1293
         * subclasses so they can correctly implement syntax highlighting.
 
1294
         *
 
1295
         * @param text The text from which to get tokens.
 
1296
         * @param initialTokenType The token type we should start with.
 
1297
         * @param startOffset The offset into the document at which
 
1298
         *        <code>text</code> starts.
 
1299
         * @return The first <code>Token</code> in a linked list representing
 
1300
         *         the syntax highlighted text.
 
1301
         */
 
1302
        public Token getTokenList(Segment text, int initialTokenType, int startOffset) {
 
1303
 
 
1304
                resetTokenList();
 
1305
                this.offsetShift = -text.offset + startOffset;
 
1306
                validJSString = true;
 
1307
                e4x_prevState = YYINITIAL;
 
1308
                e4x_inInternalDtd = false;
 
1309
                int languageIndex = LANG_INDEX_DEFAULT;
 
1310
 
 
1311
                // Start off in the proper state.
 
1312
                int state = YYINITIAL;
 
1313
                switch (initialTokenType) {
 
1314
                        case INTERNAL_IN_JS_MLC:
 
1315
                                state = JS_MLC;
 
1316
                                break;
 
1317
                        case INTERNAL_IN_JS_COMMENT_DOCUMENTATION:
 
1318
                                state = JS_DOCCOMMENT;
 
1319
                                start = text.offset;
 
1320
                                break;
 
1321
                        case INTERNAL_IN_JS_STRING_INVALID:
 
1322
                                state = JS_STRING;
 
1323
                                validJSString = false;
 
1324
                                break;
 
1325
                        case INTERNAL_IN_JS_STRING_VALID:
 
1326
                                state = JS_STRING;
 
1327
                                break;
 
1328
                        case INTERNAL_IN_JS_CHAR_INVALID:
 
1329
                                state = JS_CHAR;
 
1330
                                validJSString = false;
 
1331
                                break;
 
1332
                        case INTERNAL_IN_JS_CHAR_VALID:
 
1333
                                state = JS_CHAR;
 
1334
                                break;
 
1335
                        case INTERNAL_E4X:
 
1336
                                state = E4X;
 
1337
                                languageIndex = LANG_INDEX_E4X;
 
1338
                                break;
 
1339
                        case INTERNAL_E4X_INTAG:
 
1340
                                state = E4X_INTAG;
 
1341
                                languageIndex = LANG_INDEX_E4X;
 
1342
                                break;
 
1343
                        case INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION:
 
1344
                                state = E4X_PI;
 
1345
                                languageIndex = LANG_INDEX_E4X;
 
1346
                                break;
 
1347
                        case INTERNAL_E4X_DTD:
 
1348
                                state = E4X_DTD;
 
1349
                                languageIndex = LANG_INDEX_E4X;
 
1350
                                break;
 
1351
                        case INTERNAL_E4X_DTD_INTERNAL:
 
1352
                                state = E4X_DTD;
 
1353
                                e4x_inInternalDtd = true;
 
1354
                                languageIndex = LANG_INDEX_E4X;
 
1355
                                break;
 
1356
                        case INTERNAL_E4X_ATTR_SINGLE:
 
1357
                                state = E4X_INATTR_SINGLE;
 
1358
                                languageIndex = LANG_INDEX_E4X;
 
1359
                                break;
 
1360
                        case INTERNAL_E4X_ATTR_DOUBLE:
 
1361
                                state = E4X_INATTR_DOUBLE;
 
1362
                                languageIndex = LANG_INDEX_E4X;
 
1363
                                break;
 
1364
                        case INTERNAL_E4X_MARKUP_CDATA:
 
1365
                                state = E4X_CDATA;
 
1366
                                languageIndex = LANG_INDEX_E4X;
 
1367
                                break;
 
1368
                        default:
 
1369
                                if (initialTokenType<-1024) { // INTERNAL_IN_E4X_COMMENT - prevState
 
1370
                                        int main = -(-initialTokenType & 0xffffff00);
 
1371
                                        switch (main) {
 
1372
                                                default: // Should never happen
 
1373
                                                case INTERNAL_IN_E4X_COMMENT:
 
1374
                                                        state = E4X_COMMENT;
 
1375
                                                        break;
 
1376
                                        }
 
1377
                                        e4x_prevState = -initialTokenType&0xff;
 
1378
                                        languageIndex = LANG_INDEX_E4X;
 
1379
                                }
 
1380
                                else { // Shouldn't happen
 
1381
                                        state = Token.NULL;
 
1382
                                }
 
1383
                }
 
1384
 
 
1385
                setLanguageIndex(languageIndex);
 
1386
                start = text.offset;
 
1387
                s = text;
 
1388
                try {
 
1389
                        yyreset(zzReader);
 
1390
                        yybegin(state);
 
1391
                        return yylex();
 
1392
                } catch (IOException ioe) {
 
1393
                        ioe.printStackTrace();
 
1394
                        return new TokenImpl();
 
1395
                }
 
1396
 
 
1397
        }
 
1398
 
 
1399
 
 
1400
        /**
 
1401
         * Returns whether e4x is being highlighted.
 
1402
         *
 
1403
         * @return Whether e4x is being highlighted.
 
1404
         * @see #setE4xSupported(boolean)
 
1405
         */
 
1406
        public static boolean isE4xSupported() {
 
1407
                return e4xSupported;
 
1408
        }
 
1409
 
 
1410
 
 
1411
        /**
 
1412
         * Returns whether features for a specific JS version should be honored
 
1413
         * while highlighting.
 
1414
         * 
 
1415
         * @param version JavaScript version required 
 
1416
         * @return Whether the JavaScript version is the same or greater than
 
1417
         *         version required. 
 
1418
         */
 
1419
        public static boolean isJavaScriptCompatible(String version) {
 
1420
                return jsVersion.compareTo(version) >= 0;
 
1421
        }
 
1422
 
 
1423
 
 
1424
        /**
 
1425
         * Sets whether e4x should be highlighted.  A repaint should be forced on
 
1426
         * all <code>RSyntaxTextArea</code>s editing JavaScript if this property
 
1427
         * is changed to see the difference.
 
1428
         *
 
1429
         * @param supported Whether e4x should be highlighted.
 
1430
         * @see #isE4xSupported()
 
1431
         */
 
1432
        public static void setE4xSupported(boolean supported) {
 
1433
                e4xSupported = supported;
 
1434
        }
 
1435
 
 
1436
 
 
1437
        /**
 
1438
         * Set the supported JavaScript version because some keywords were
 
1439
         * introduced on or after this version.
 
1440
         *
 
1441
         * @param javaScriptVersion The version of JavaScript to support, such as
 
1442
         *        "<code>1.5</code>" or "<code>1.6</code>".
 
1443
         * @see #isJavaScriptCompatible(String)
 
1444
         * @see #getJavaScriptVersion()
 
1445
         */
 
1446
        public static void setJavaScriptVersion(String javaScriptVersion) {
 
1447
                jsVersion = javaScriptVersion;
 
1448
        }
 
1449
 
 
1450
 
 
1451
        /**
 
1452
         * Refills the input buffer.
 
1453
         *
 
1454
         * @return      <code>true</code> if EOF was reached, otherwise
 
1455
         *              <code>false</code>.
 
1456
         */
 
1457
        private boolean zzRefill() {
 
1458
                return zzCurrentPos>=s.offset+s.count;
 
1459
        }
 
1460
 
 
1461
 
 
1462
        /**
 
1463
         * Resets the scanner to read from a new input stream.
 
1464
         * Does not close the old reader.
 
1465
         *
 
1466
         * All internal variables are reset, the old input stream 
 
1467
         * <b>cannot</b> be reused (internal buffer is discarded and lost).
 
1468
         * Lexical state is set to <tt>YY_INITIAL</tt>.
 
1469
         *
 
1470
         * @param reader   the new input stream 
 
1471
         */
 
1472
        public final void yyreset(java.io.Reader reader) {
 
1473
                // 's' has been updated.
 
1474
                zzBuffer = s.array;
 
1475
                /*
 
1476
                 * We replaced the line below with the two below it because zzRefill
 
1477
                 * no longer "refills" the buffer (since the way we do it, it's always
 
1478
                 * "full" the first time through, since it points to the segment's
 
1479
                 * array).  So, we assign zzEndRead here.
 
1480
                 */
 
1481
                //zzStartRead = zzEndRead = s.offset;
 
1482
                zzStartRead = s.offset;
 
1483
                zzEndRead = zzStartRead + s.count - 1;
 
1484
                zzCurrentPos = zzMarkedPos = s.offset;
 
1485
                zzLexicalState = YYINITIAL;
 
1486
                zzReader = reader;
 
1487
                zzAtEOF  = false;
 
1488
        }
 
1489
 
 
1490
 
 
1491
 
 
1492
 
 
1493
  /**
 
1494
   * Creates a new scanner
 
1495
   * There is also a java.io.InputStream version of this constructor.
 
1496
   *
 
1497
   * @param   in  the java.io.Reader to read input from.
 
1498
   */
 
1499
  public JavaScriptTokenMaker(java.io.Reader in) {
 
1500
    this.zzReader = in;
 
1501
  }
 
1502
 
 
1503
  /**
 
1504
   * Creates a new scanner.
 
1505
   * There is also java.io.Reader version of this constructor.
 
1506
   *
 
1507
   * @param   in  the java.io.Inputstream to read input from.
 
1508
   */
 
1509
  public JavaScriptTokenMaker(java.io.InputStream in) {
 
1510
    this(new java.io.InputStreamReader(in));
 
1511
  }
 
1512
 
 
1513
  /** 
 
1514
   * Unpacks the compressed character translation table.
 
1515
   *
 
1516
   * @param packed   the packed character translation table
 
1517
   * @return         the unpacked character translation table
 
1518
   */
 
1519
  private static char [] zzUnpackCMap(String packed) {
 
1520
    char [] map = new char[0x10000];
 
1521
    int i = 0;  /* index in packed string  */
 
1522
    int j = 0;  /* index in unpacked array */
 
1523
    while (i < 172) {
 
1524
      int  count = packed.charAt(i++);
 
1525
      char value = packed.charAt(i++);
 
1526
      do map[j++] = value; while (--count > 0);
 
1527
    }
 
1528
    return map;
 
1529
  }
 
1530
 
 
1531
 
 
1532
  /**
 
1533
   * Closes the input stream.
 
1534
   */
 
1535
  public final void yyclose() throws java.io.IOException {
 
1536
    zzAtEOF = true;            /* indicate end of file */
 
1537
    zzEndRead = zzStartRead;  /* invalidate buffer    */
 
1538
 
 
1539
    if (zzReader != null)
 
1540
      zzReader.close();
 
1541
  }
 
1542
 
 
1543
 
 
1544
  /**
 
1545
   * Returns the current lexical state.
 
1546
   */
 
1547
  public final int yystate() {
 
1548
    return zzLexicalState;
 
1549
  }
 
1550
 
 
1551
 
 
1552
  /**
 
1553
   * Enters a new lexical state
 
1554
   *
 
1555
   * @param newState the new lexical state
 
1556
   */
 
1557
  @Override
 
1558
public final void yybegin(int newState) {
 
1559
    zzLexicalState = newState;
 
1560
  }
 
1561
 
 
1562
 
 
1563
  /**
 
1564
   * Returns the text matched by the current regular expression.
 
1565
   */
 
1566
  public final String yytext() {
 
1567
    return new String( zzBuffer, zzStartRead, zzMarkedPos-zzStartRead );
 
1568
  }
 
1569
 
 
1570
 
 
1571
  /**
 
1572
   * Returns the character at position <tt>pos</tt> from the 
 
1573
   * matched text. 
 
1574
   * 
 
1575
   * It is equivalent to yytext().charAt(pos), but faster
 
1576
   *
 
1577
   * @param pos the position of the character to fetch. 
 
1578
   *            A value from 0 to yylength()-1.
 
1579
   *
 
1580
   * @return the character at position pos
 
1581
   */
 
1582
  public final char yycharat(int pos) {
 
1583
    return zzBuffer[zzStartRead+pos];
 
1584
  }
 
1585
 
 
1586
 
 
1587
  /**
 
1588
   * Returns the length of the matched text region.
 
1589
   */
 
1590
  public final int yylength() {
 
1591
    return zzMarkedPos-zzStartRead;
 
1592
  }
 
1593
 
 
1594
 
 
1595
  /**
 
1596
   * Reports an error that occured while scanning.
 
1597
   *
 
1598
   * In a wellformed scanner (no or only correct usage of 
 
1599
   * yypushback(int) and a match-all fallback rule) this method 
 
1600
   * will only be called with things that "Can't Possibly Happen".
 
1601
   * If this method is called, something is seriously wrong
 
1602
   * (e.g. a JFlex bug producing a faulty scanner etc.).
 
1603
   *
 
1604
   * Usual syntax/scanner level error handling should be done
 
1605
   * in error fallback rules.
 
1606
   *
 
1607
   * @param   errorCode  the code of the errormessage to display
 
1608
   */
 
1609
  private void zzScanError(int errorCode) {
 
1610
    String message;
 
1611
    try {
 
1612
      message = ZZ_ERROR_MSG[errorCode];
 
1613
    }
 
1614
    catch (ArrayIndexOutOfBoundsException e) {
 
1615
      message = ZZ_ERROR_MSG[ZZ_UNKNOWN_ERROR];
 
1616
    }
 
1617
 
 
1618
    throw new Error(message);
 
1619
  } 
 
1620
 
 
1621
 
 
1622
  /**
 
1623
   * Pushes the specified amount of characters back into the input stream.
 
1624
   *
 
1625
   * They will be read again by then next call of the scanning method
 
1626
   *
 
1627
   * @param number  the number of characters to be read again.
 
1628
   *                This number must not be greater than yylength()!
 
1629
   */
 
1630
  public void yypushback(int number)  {
 
1631
    if ( number > yylength() )
 
1632
      zzScanError(ZZ_PUSHBACK_2BIG);
 
1633
 
 
1634
    zzMarkedPos -= number;
 
1635
  }
 
1636
 
 
1637
 
 
1638
  /**
 
1639
   * Resumes scanning until the next regular expression is matched,
 
1640
   * the end of input is encountered or an I/O-Error occurs.
 
1641
   *
 
1642
   * @return      the next token
 
1643
   * @exception   java.io.IOException  if any I/O-Error occurs
 
1644
   */
 
1645
  public org.fife.ui.rsyntaxtextarea.Token yylex() throws java.io.IOException {
 
1646
    int zzInput;
 
1647
    int zzAction;
 
1648
 
 
1649
    // cached fields:
 
1650
    int zzCurrentPosL;
 
1651
    int zzMarkedPosL;
 
1652
    int zzEndReadL = zzEndRead;
 
1653
    char [] zzBufferL = zzBuffer;
 
1654
    char [] zzCMapL = ZZ_CMAP;
 
1655
 
 
1656
    int [] zzTransL = ZZ_TRANS;
 
1657
    int [] zzRowMapL = ZZ_ROWMAP;
 
1658
    int [] zzAttrL = ZZ_ATTRIBUTE;
 
1659
 
 
1660
    while (true) {
 
1661
      zzMarkedPosL = zzMarkedPos;
 
1662
 
 
1663
      zzAction = -1;
 
1664
 
 
1665
      zzCurrentPosL = zzCurrentPos = zzStartRead = zzMarkedPosL;
 
1666
  
 
1667
      zzState = zzLexicalState;
 
1668
 
 
1669
 
 
1670
      zzForAction: {
 
1671
        while (true) {
 
1672
    
 
1673
          if (zzCurrentPosL < zzEndReadL)
 
1674
            zzInput = zzBufferL[zzCurrentPosL++];
 
1675
          else if (zzAtEOF) {
 
1676
            zzInput = YYEOF;
 
1677
            break zzForAction;
 
1678
          }
 
1679
          else {
 
1680
            // store back cached positions
 
1681
            zzCurrentPos  = zzCurrentPosL;
 
1682
            zzMarkedPos   = zzMarkedPosL;
 
1683
            boolean eof = zzRefill();
 
1684
            // get translated positions and possibly new buffer
 
1685
            zzCurrentPosL  = zzCurrentPos;
 
1686
            zzMarkedPosL   = zzMarkedPos;
 
1687
            zzBufferL      = zzBuffer;
 
1688
            zzEndReadL     = zzEndRead;
 
1689
            if (eof) {
 
1690
              zzInput = YYEOF;
 
1691
              break zzForAction;
 
1692
            }
 
1693
            else {
 
1694
              zzInput = zzBufferL[zzCurrentPosL++];
 
1695
            }
 
1696
          }
 
1697
          int zzNext = zzTransL[ zzRowMapL[zzState] + zzCMapL[zzInput] ];
 
1698
          if (zzNext == -1) break zzForAction;
 
1699
          zzState = zzNext;
 
1700
 
 
1701
          int zzAttributes = zzAttrL[zzState];
 
1702
          if ( (zzAttributes & 1) == 1 ) {
 
1703
            zzAction = zzState;
 
1704
            zzMarkedPosL = zzCurrentPosL;
 
1705
            if ( (zzAttributes & 8) == 8 ) break zzForAction;
 
1706
          }
 
1707
 
 
1708
        }
 
1709
      }
 
1710
 
 
1711
      // store back cached position
 
1712
      zzMarkedPos = zzMarkedPosL;
 
1713
 
 
1714
      switch (zzAction < 0 ? zzAction : ZZ_ACTION[zzAction]) {
 
1715
        case 34: 
 
1716
          { start = zzMarkedPos-1; yybegin(E4X_INATTR_SINGLE);
 
1717
          }
 
1718
        case 73: break;
 
1719
        case 33: 
 
1720
          { start = zzMarkedPos-1; yybegin(E4X_INATTR_DOUBLE);
 
1721
          }
 
1722
        case 74: break;
 
1723
        case 36: 
 
1724
          { addToken(Token.ERROR_NUMBER_FORMAT);
 
1725
          }
 
1726
        case 75: break;
 
1727
        case 71: 
 
1728
          { addToken(Token.RESERVED_WORD_2);
 
1729
          }
 
1730
        case 76: break;
 
1731
        case 26: 
 
1732
          { addToken(start,zzStartRead-1, Token.MARKUP_DTD); addEndToken(e4x_inInternalDtd ? INTERNAL_E4X_DTD_INTERNAL : INTERNAL_E4X_DTD); return firstToken;
 
1733
          }
 
1734
        case 77: break;
 
1735
        case 15: 
 
1736
          { /* Line ending in '\' => continue to next line. */
 
1737
                                                                if (validJSString) {
 
1738
                                                                        addToken(start,zzStartRead, Token.LITERAL_CHAR);
 
1739
                                                                        addEndToken(INTERNAL_IN_JS_CHAR_VALID);
 
1740
                                                                }
 
1741
                                                                else {
 
1742
                                                                        addToken(start,zzStartRead, Token.ERROR_CHAR);
 
1743
                                                                        addEndToken(INTERNAL_IN_JS_CHAR_INVALID);
 
1744
                                                                }
 
1745
                                                                return firstToken;
 
1746
          }
 
1747
        case 78: break;
 
1748
        case 3: 
 
1749
          { addToken(Token.WHITESPACE);
 
1750
          }
 
1751
        case 79: break;
 
1752
        case 17: 
 
1753
          { addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addEndToken(INTERNAL_IN_JS_MLC); return firstToken;
 
1754
          }
 
1755
        case 80: break;
 
1756
        case 41: 
 
1757
          { int start = zzStartRead;
 
1758
                                                                                int operatorLen = yycharat(0)=='+' ? 2 : 1;
 
1759
                                                                                int yylen = yylength(); // Cache before first addToken() invalidates it
 
1760
                                                                                //System.out.println("'" + yytext() + "': " + yylength() + ", " + (operatorLen+1));
 
1761
                                                                                addToken(zzStartRead,zzStartRead+operatorLen-1, Token.OPERATOR);
 
1762
                                                                                if (yylen>operatorLen+1) {
 
1763
                                                                                        //System.out.println((start+operatorLen) + ", " + (zzMarkedPos-2));
 
1764
                                                                                        addToken(start+operatorLen,zzMarkedPos-2, Token.WHITESPACE);
 
1765
                                                                                }
 
1766
                                                                                zzStartRead = zzCurrentPos = zzMarkedPos = zzMarkedPos - 1;
 
1767
                                                                                if (isE4xSupported()) {
 
1768
                                                                                        // Scanning will continue with "<" as markup tag start
 
1769
                                                                                        yybegin(E4X, LANG_INDEX_E4X);
 
1770
                                                                                }
 
1771
                                                                                // Found e4x (or syntax error) but option not enabled;
 
1772
                                                                                // Scanning will continue at "<" as operator
 
1773
          }
 
1774
        case 81: break;
 
1775
        case 64: 
 
1776
          { addToken(Token.FUNCTION);
 
1777
          }
 
1778
        case 82: break;
 
1779
        case 49: 
 
1780
          { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzMarkedPos-1, Token.COMMENT_MARKUP); start = zzMarkedPos;
 
1781
          }
 
1782
        case 83: break;
 
1783
        case 44: 
 
1784
          { /* Skip all escaped chars. */
 
1785
          }
 
1786
        case 84: break;
 
1787
        case 11: 
 
1788
          { addToken(start,zzStartRead-1, Token.ERROR_STRING_DOUBLE); addNullToken(); return firstToken;
 
1789
          }
 
1790
        case 85: break;
 
1791
        case 68: 
 
1792
          { start = zzStartRead; e4x_prevState = zzLexicalState; yybegin(E4X_COMMENT);
 
1793
          }
 
1794
        case 86: break;
 
1795
        case 60: 
 
1796
          { int temp=zzStartRead; yybegin(E4X); addToken(start,zzStartRead-1, Token.MARKUP_CDATA); addToken(temp,zzMarkedPos-1, Token.MARKUP_CDATA_DELIMITER);
 
1797
          }
 
1798
        case 87: break;
 
1799
        case 58: 
 
1800
          { int count = yylength();
 
1801
                                                                        addToken(zzStartRead,zzStartRead+1, Token.MARKUP_TAG_DELIMITER);
 
1802
                                                                        addToken(zzMarkedPos-(count-2), zzMarkedPos-1, Token.MARKUP_TAG_NAME);
 
1803
                                                                        yybegin(E4X_INTAG);
 
1804
          }
 
1805
        case 88: break;
 
1806
        case 46: 
 
1807
          { /* Invalid latin-1 character \xXX */ validJSString = false;
 
1808
          }
 
1809
        case 89: break;
 
1810
        case 61: 
 
1811
          { addToken(Token.COMMENT_MULTILINE);
 
1812
          }
 
1813
        case 90: break;
 
1814
        case 52: 
 
1815
          { start = zzMarkedPos-2; yybegin(E4X_PI);
 
1816
          }
 
1817
        case 91: break;
 
1818
        case 35: 
 
1819
          { yybegin(E4X_INTAG); addToken(start,zzStartRead, Token.MARKUP_TAG_ATTRIBUTE_VALUE);
 
1820
          }
 
1821
        case 92: break;
 
1822
        case 13: 
 
1823
          { int type = validJSString ? Token.LITERAL_STRING_DOUBLE_QUOTE : Token.ERROR_STRING_DOUBLE; addToken(start,zzStartRead, type); yybegin(YYINITIAL);
 
1824
          }
 
1825
        case 93: break;
 
1826
        case 19: 
 
1827
          { addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
 
1828
          }
 
1829
        case 94: break;
 
1830
        case 23: 
 
1831
          { yybegin(YYINITIAL, LANG_INDEX_DEFAULT); addToken(Token.IDENTIFIER);
 
1832
          }
 
1833
        case 95: break;
 
1834
        case 45: 
 
1835
          { /* Invalid Unicode character \\uXXXX */ validJSString = false;
 
1836
          }
 
1837
        case 96: break;
 
1838
        case 70: 
 
1839
          { int temp = zzStartRead; addToken(start,zzStartRead-1, Token.MARKUP_DTD); start = temp; e4x_prevState = zzLexicalState; yybegin(E4X_COMMENT);
 
1840
          }
 
1841
        case 97: break;
 
1842
        case 63: 
 
1843
          { if(e4xSupported){ addToken(Token.RESERVED_WORD);} else {addToken(Token.IDENTIFIER);}
 
1844
          }
 
1845
        case 98: break;
 
1846
        case 59: 
 
1847
          { int temp = zzMarkedPos; addToken(start,zzStartRead+2, Token.MARKUP_COMMENT); start = temp; yybegin(e4x_prevState);
 
1848
          }
 
1849
        case 99: break;
 
1850
        case 7: 
 
1851
          { addToken(Token.OPERATOR);
 
1852
          }
 
1853
        case 100: break;
 
1854
        case 53: 
 
1855
          { yybegin(E4X); addToken(start,zzStartRead+1, Token.MARKUP_PROCESSING_INSTRUCTION);
 
1856
          }
 
1857
        case 101: break;
 
1858
        case 48: 
 
1859
          { yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_DOCUMENTATION);
 
1860
          }
 
1861
        case 102: break;
 
1862
        case 18: 
 
1863
          { addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addEndToken(INTERNAL_IN_JS_COMMENT_DOCUMENTATION); return firstToken;
 
1864
          }
 
1865
        case 103: break;
 
1866
        case 25: 
 
1867
          { addToken(start,zzStartRead-1, Token.MARKUP_PROCESSING_INSTRUCTION); addEndToken(INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION); return firstToken;
 
1868
          }
 
1869
        case 104: break;
 
1870
        case 5: 
 
1871
          { addToken(Token.IDENTIFIER);
 
1872
          }
 
1873
        case 105: break;
 
1874
        case 42: 
 
1875
          { addToken(isE4xSupported() ? Token.MARKUP_TAG_ATTRIBUTE : Token.ERROR_IDENTIFIER);
 
1876
          }
 
1877
        case 106: break;
 
1878
        case 65: 
 
1879
          { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_EOL); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_EOL); start = zzMarkedPos;
 
1880
          }
 
1881
        case 107: break;
 
1882
        case 55: 
 
1883
          { start = zzMarkedPos-3; yybegin(JS_DOCCOMMENT);
 
1884
          }
 
1885
        case 108: break;
 
1886
        case 9: 
 
1887
          { start = zzMarkedPos-1; validJSString = true; yybegin(JS_STRING);
 
1888
          }
 
1889
        case 109: break;
 
1890
        case 51: 
 
1891
          { start = zzMarkedPos-2; e4x_inInternalDtd = false; yybegin(E4X_DTD);
 
1892
          }
 
1893
        case 110: break;
 
1894
        case 24: 
 
1895
          { addToken(start,zzStartRead-1, Token.MARKUP_COMMENT); addEndToken(INTERNAL_IN_E4X_COMMENT - e4x_prevState); return firstToken;
 
1896
          }
 
1897
        case 111: break;
 
1898
        case 10: 
 
1899
          { start = zzMarkedPos-1; validJSString = true; yybegin(JS_CHAR);
 
1900
          }
 
1901
        case 112: break;
 
1902
        case 28: 
 
1903
          { e4x_inInternalDtd = true;
 
1904
          }
 
1905
        case 113: break;
 
1906
        case 67: 
 
1907
          { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addHyperlinkToken(temp,zzMarkedPos-1, Token.COMMENT_DOCUMENTATION); start = zzMarkedPos;
 
1908
          }
 
1909
        case 114: break;
 
1910
        case 40: 
 
1911
          { start = zzMarkedPos-2; yybegin(JS_MLC);
 
1912
          }
 
1913
        case 115: break;
 
1914
        case 38: 
 
1915
          { addToken(Token.LITERAL_NUMBER_HEXADECIMAL);
 
1916
          }
 
1917
        case 116: break;
 
1918
        case 72: 
 
1919
          { addToken(Token.MARKUP_CDATA_DELIMITER); start = zzMarkedPos; yybegin(E4X_CDATA);
 
1920
          }
 
1921
        case 117: break;
 
1922
        case 31: 
 
1923
          { addToken(Token.MARKUP_TAG_DELIMITER); /* Not valid but we'll still accept it */
 
1924
          }
 
1925
        case 118: break;
 
1926
        case 2: 
 
1927
          { addToken(Token.ERROR_IDENTIFIER);
 
1928
          }
 
1929
        case 119: break;
 
1930
        case 69: 
 
1931
          { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.MARKUP_COMMENT); addHyperlinkToken(temp,zzMarkedPos-1, Token.MARKUP_COMMENT); start = zzMarkedPos;
 
1932
          }
 
1933
        case 120: break;
 
1934
        case 32: 
 
1935
          { yybegin(E4X); addToken(Token.MARKUP_TAG_DELIMITER);
 
1936
          }
 
1937
        case 121: break;
 
1938
        case 22: 
 
1939
          { addToken(Token.MARKUP_ENTITY_REFERENCE);
 
1940
          }
 
1941
        case 122: break;
 
1942
        case 56: 
 
1943
          { if(isJavaScriptCompatible("1.7")){ addToken(Token.RESERVED_WORD);} else {addToken(Token.IDENTIFIER);}
 
1944
          }
 
1945
        case 123: break;
 
1946
        case 62: 
 
1947
          { addToken(Token.LITERAL_BOOLEAN);
 
1948
          }
 
1949
        case 124: break;
 
1950
        case 4: 
 
1951
          { addNullToken(); return firstToken;
 
1952
          }
 
1953
        case 125: break;
 
1954
        case 43: 
 
1955
          { addToken(Token.RESERVED_WORD);
 
1956
          }
 
1957
        case 126: break;
 
1958
        case 47: 
 
1959
          { yybegin(YYINITIAL); addToken(start,zzStartRead+1, Token.COMMENT_MULTILINE);
 
1960
          }
 
1961
        case 127: break;
 
1962
        case 57: 
 
1963
          { addToken(Token.DATA_TYPE);
 
1964
          }
 
1965
        case 128: break;
 
1966
        case 21: 
 
1967
          { addToken(Token.MARKUP_TAG_DELIMITER); yybegin(E4X_INTAG);
 
1968
          }
 
1969
        case 129: break;
 
1970
        case 8: 
 
1971
          { addToken(Token.SEPARATOR);
 
1972
          }
 
1973
        case 130: break;
 
1974
        case 30: 
 
1975
          { addToken(Token.MARKUP_TAG_ATTRIBUTE);
 
1976
          }
 
1977
        case 131: break;
 
1978
        case 66: 
 
1979
          { int temp=zzStartRead; addToken(start,zzStartRead-1, Token.COMMENT_DOCUMENTATION); addToken(temp,zzMarkedPos-1, Token.COMMENT_KEYWORD); start = zzMarkedPos;
 
1980
          }
 
1981
        case 132: break;
 
1982
        case 16: 
 
1983
          { int type = validJSString ? Token.LITERAL_CHAR : Token.ERROR_CHAR; addToken(start,zzStartRead, type); yybegin(YYINITIAL);
 
1984
          }
 
1985
        case 133: break;
 
1986
        case 39: 
 
1987
          { start = zzMarkedPos-2; yybegin(JS_EOL_COMMENT);
 
1988
          }
 
1989
        case 134: break;
 
1990
        case 20: 
 
1991
          { addEndToken(INTERNAL_E4X); return firstToken;
 
1992
          }
 
1993
        case 135: break;
 
1994
        case 12: 
 
1995
          { /* Line ending in '\' => continue to next line. */
 
1996
                                                                if (validJSString) {
 
1997
                                                                        addToken(start,zzStartRead, Token.LITERAL_STRING_DOUBLE_QUOTE);
 
1998
                                                                        addEndToken(INTERNAL_IN_JS_STRING_VALID);
 
1999
                                                                }
 
2000
                                                                else {
 
2001
                                                                        addToken(start,zzStartRead, Token.ERROR_STRING_DOUBLE);
 
2002
                                                                        addEndToken(INTERNAL_IN_JS_STRING_INVALID);
 
2003
                                                                }
 
2004
                                                                return firstToken;
 
2005
          }
 
2006
        case 136: break;
 
2007
        case 37: 
 
2008
          { addToken(Token.LITERAL_NUMBER_FLOAT);
 
2009
          }
 
2010
        case 137: break;
 
2011
        case 50: 
 
2012
          { int count = yylength();
 
2013
                                                                        addToken(zzStartRead,zzStartRead, Token.MARKUP_TAG_DELIMITER);
 
2014
                                                                        addToken(zzMarkedPos-(count-1), zzMarkedPos-1, Token.MARKUP_TAG_NAME);
 
2015
                                                                        yybegin(E4X_INTAG);
 
2016
          }
 
2017
        case 138: break;
 
2018
        case 54: 
 
2019
          { boolean highlightedAsRegex = false;
 
2020
                                                                                if (firstToken==null) {
 
2021
                                                                                        addToken(Token.REGEX);
 
2022
                                                                                        highlightedAsRegex = true;
 
2023
                                                                                }
 
2024
                                                                                else {
 
2025
                                                                                        // If this is *likely* to be a regex, based on
 
2026
                                                                                        // the previous token, highlight it as such.
 
2027
                                                                                        Token t = firstToken.getLastNonCommentNonWhitespaceToken();
 
2028
                                                                                        if (RSyntaxUtilities.regexCanFollowInJavaScript(t)) {
 
2029
                                                                                                addToken(Token.REGEX);
 
2030
                                                                                                highlightedAsRegex = true;
 
2031
                                                                                        }
 
2032
                                                                                }
 
2033
                                                                                // If it doesn't *appear* to be a regex, highlight it as
 
2034
                                                                                // individual tokens.
 
2035
                                                                                if (!highlightedAsRegex) {
 
2036
                                                                                        int temp = zzStartRead + 1;
 
2037
                                                                                        addToken(zzStartRead, zzStartRead, Token.OPERATOR);
 
2038
                                                                                        zzStartRead = zzCurrentPos = zzMarkedPos = temp;
 
2039
                                                                                }
 
2040
          }
 
2041
        case 139: break;
 
2042
        case 27: 
 
2043
          { if (!e4x_inInternalDtd) { yybegin(E4X); addToken(start,zzStartRead, Token.MARKUP_DTD); }
 
2044
          }
 
2045
        case 140: break;
 
2046
        case 6: 
 
2047
          { addToken(Token.LITERAL_NUMBER_DECIMAL_INT);
 
2048
          }
 
2049
        case 141: break;
 
2050
        case 29: 
 
2051
          { e4x_inInternalDtd = false;
 
2052
          }
 
2053
        case 142: break;
 
2054
        case 14: 
 
2055
          { addToken(start,zzStartRead-1, Token.ERROR_CHAR); addNullToken(); return firstToken;
 
2056
          }
 
2057
        case 143: break;
 
2058
        case 1: 
 
2059
          { 
 
2060
          }
 
2061
        case 144: break;
 
2062
        default: 
 
2063
          if (zzInput == YYEOF && zzStartRead == zzCurrentPos) {
 
2064
            zzAtEOF = true;
 
2065
            switch (zzLexicalState) {
 
2066
            case JS_STRING: {
 
2067
              addToken(start,zzStartRead-1, Token.ERROR_STRING_DOUBLE); addNullToken(); return firstToken;
 
2068
            }
 
2069
            case 604: break;
 
2070
            case E4X: {
 
2071
              addEndToken(INTERNAL_E4X); return firstToken;
 
2072
            }
 
2073
            case 605: break;
 
2074
            case E4X_INTAG: {
 
2075
              addToken(start,zzStartRead-1, INTERNAL_E4X_INTAG); return firstToken;
 
2076
            }
 
2077
            case 606: break;
 
2078
            case E4X_PI: {
 
2079
              addToken(start,zzStartRead-1, Token.MARKUP_PROCESSING_INSTRUCTION); addEndToken(INTERNAL_E4X_MARKUP_PROCESSING_INSTRUCTION); return firstToken;
 
2080
            }
 
2081
            case 607: break;
 
2082
            case JS_MLC: {
 
2083
              addToken(start,zzStartRead-1, Token.COMMENT_MULTILINE); addEndToken(INTERNAL_IN_JS_MLC); return firstToken;
 
2084
            }
 
2085
            case 608: break;
 
2086
            case JS_CHAR: {
 
2087
              addToken(start,zzStartRead-1, Token.ERROR_CHAR); addNullToken(); return firstToken;
 
2088
            }
 
2089
            case 609: break;
 
2090
            case JS_EOL_COMMENT: {
 
2091
              addToken(start,zzStartRead-1, Token.COMMENT_EOL); addNullToken(); return firstToken;
 
2092
            }
 
2093
            case 610: break;
 
2094
            case E4X_COMMENT: {
 
2095
              addToken(start,zzStartRead-1, Token.MARKUP_COMMENT); addEndToken(INTERNAL_IN_E4X_COMMENT - e4x_prevState); return firstToken;
 
2096
            }
 
2097
            case 611: break;
 
2098
            case JS_DOCCOMMENT: {
 
2099
              yybegin(YYINITIAL); addToken(start,zzEndRead, Token.COMMENT_DOCUMENTATION); addEndToken(INTERNAL_IN_JS_COMMENT_DOCUMENTATION); return firstToken;
 
2100
            }
 
2101
            case 612: break;
 
2102
            case E4X_DTD: {
 
2103
              addToken(start,zzStartRead-1, Token.MARKUP_DTD); addEndToken(e4x_inInternalDtd ? INTERNAL_E4X_DTD_INTERNAL : INTERNAL_E4X_DTD); return firstToken;
 
2104
            }
 
2105
            case 613: break;
 
2106
            case E4X_INATTR_SINGLE: {
 
2107
              addToken(start,zzStartRead-1, Token.MARKUP_TAG_ATTRIBUTE_VALUE); addEndToken(INTERNAL_E4X_ATTR_SINGLE); return firstToken;
 
2108
            }
 
2109
            case 614: break;
 
2110
            case E4X_INATTR_DOUBLE: {
 
2111
              addToken(start,zzStartRead-1, Token.MARKUP_TAG_ATTRIBUTE_VALUE); addEndToken(INTERNAL_E4X_ATTR_DOUBLE); return firstToken;
 
2112
            }
 
2113
            case 615: break;
 
2114
            case YYINITIAL: {
 
2115
              addNullToken(); return firstToken;
 
2116
            }
 
2117
            case 616: break;
 
2118
            case E4X_CDATA: {
 
2119
              addToken(start,zzStartRead-1, Token.MARKUP_CDATA); addEndToken(INTERNAL_E4X_MARKUP_CDATA); return firstToken;
 
2120
            }
 
2121
            case 617: break;
 
2122
            default:
 
2123
            return null;
 
2124
            }
 
2125
          } 
 
2126
          else {
 
2127
            zzScanError(ZZ_NO_MATCH);
 
2128
          }
 
2129
      }
 
2130
    }
 
2131
  }
 
2132
 
 
2133
 
 
2134
}