aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs18447
1 files changed, 0 insertions, 18447 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs
deleted file mode 100644
index 6020dc3..0000000
--- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs
+++ /dev/null
@@ -1,18447 +0,0 @@
1/*
2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the OpenSim Project nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28using System;using Tools;
29namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL {
30//%+STRING_CONSTANT+3
31public class STRING_CONSTANT : TOKEN{
32public override string yyname { get { return "STRING_CONSTANT"; }}
33public override int yynum { get { return 3; }}
34public STRING_CONSTANT(Lexer yyl):base(yyl){}}
35//%INCREMENT+4
36public class INCREMENT : TOKEN{ public override string yyname { get { return "INCREMENT";}}
37public override int yynum { get { return 4; }}
38 public INCREMENT(Lexer yyl):base(yyl) {}}
39//%DECREMENT+5
40public class DECREMENT : TOKEN{ public override string yyname { get { return "DECREMENT";}}
41public override int yynum { get { return 5; }}
42 public DECREMENT(Lexer yyl):base(yyl) {}}
43//%PLUS_EQUALS+6
44public class PLUS_EQUALS : TOKEN{ public override string yyname { get { return "PLUS_EQUALS";}}
45public override int yynum { get { return 6; }}
46 public PLUS_EQUALS(Lexer yyl):base(yyl) {}}
47//%MINUS_EQUALS+7
48public class MINUS_EQUALS : TOKEN{ public override string yyname { get { return "MINUS_EQUALS";}}
49public override int yynum { get { return 7; }}
50 public MINUS_EQUALS(Lexer yyl):base(yyl) {}}
51//%STAR_EQUALS+8
52public class STAR_EQUALS : TOKEN{ public override string yyname { get { return "STAR_EQUALS";}}
53public override int yynum { get { return 8; }}
54 public STAR_EQUALS(Lexer yyl):base(yyl) {}}
55//%SLASH_EQUALS+9
56public class SLASH_EQUALS : TOKEN{ public override string yyname { get { return "SLASH_EQUALS";}}
57public override int yynum { get { return 9; }}
58 public SLASH_EQUALS(Lexer yyl):base(yyl) {}}
59//%PERCENT_EQUALS+10
60public class PERCENT_EQUALS : TOKEN{ public override string yyname { get { return "PERCENT_EQUALS";}}
61public override int yynum { get { return 10; }}
62 public PERCENT_EQUALS(Lexer yyl):base(yyl) {}}
63//%SEMICOLON+11
64public class SEMICOLON : TOKEN{ public override string yyname { get { return "SEMICOLON";}}
65public override int yynum { get { return 11; }}
66 public SEMICOLON(Lexer yyl):base(yyl) {}}
67//%LEFT_BRACE+12
68public class LEFT_BRACE : TOKEN{ public override string yyname { get { return "LEFT_BRACE";}}
69public override int yynum { get { return 12; }}
70 public LEFT_BRACE(Lexer yyl):base(yyl) {}}
71//%RIGHT_BRACE+13
72public class RIGHT_BRACE : TOKEN{ public override string yyname { get { return "RIGHT_BRACE";}}
73public override int yynum { get { return 13; }}
74 public RIGHT_BRACE(Lexer yyl):base(yyl) {}}
75//%COMMA+14
76public class COMMA : TOKEN{ public override string yyname { get { return "COMMA";}}
77public override int yynum { get { return 14; }}
78 public COMMA(Lexer yyl):base(yyl) {}}
79//%EQUALS+15
80public class EQUALS : TOKEN{ public override string yyname { get { return "EQUALS";}}
81public override int yynum { get { return 15; }}
82 public EQUALS(Lexer yyl):base(yyl) {}}
83//%LEFT_PAREN+16
84public class LEFT_PAREN : TOKEN{ public override string yyname { get { return "LEFT_PAREN";}}
85public override int yynum { get { return 16; }}
86 public LEFT_PAREN(Lexer yyl):base(yyl) {}}
87//%RIGHT_PAREN+17
88public class RIGHT_PAREN : TOKEN{ public override string yyname { get { return "RIGHT_PAREN";}}
89public override int yynum { get { return 17; }}
90 public RIGHT_PAREN(Lexer yyl):base(yyl) {}}
91//%PLUS+18
92public class PLUS : TOKEN{ public override string yyname { get { return "PLUS";}}
93public override int yynum { get { return 18; }}
94 public PLUS(Lexer yyl):base(yyl) {}}
95//%MINUS+19
96public class MINUS : TOKEN{ public override string yyname { get { return "MINUS";}}
97public override int yynum { get { return 19; }}
98 public MINUS(Lexer yyl):base(yyl) {}}
99//%STAR+20
100public class STAR : TOKEN{ public override string yyname { get { return "STAR";}}
101public override int yynum { get { return 20; }}
102 public STAR(Lexer yyl):base(yyl) {}}
103//%SLASH+21
104public class SLASH : TOKEN{ public override string yyname { get { return "SLASH";}}
105public override int yynum { get { return 21; }}
106 public SLASH(Lexer yyl):base(yyl) {}}
107//%PERCENT+22
108public class PERCENT : TOKEN{ public override string yyname { get { return "PERCENT";}}
109public override int yynum { get { return 22; }}
110 public PERCENT(Lexer yyl):base(yyl) {}}
111//%AT+23
112public class AT : TOKEN{ public override string yyname { get { return "AT";}}
113public override int yynum { get { return 23; }}
114 public AT(Lexer yyl):base(yyl) {}}
115//%PERIOD+24
116public class PERIOD : TOKEN{ public override string yyname { get { return "PERIOD";}}
117public override int yynum { get { return 24; }}
118 public PERIOD(Lexer yyl):base(yyl) {}}
119//%LEFT_ANGLE+25
120public class LEFT_ANGLE : TOKEN{ public override string yyname { get { return "LEFT_ANGLE";}}
121public override int yynum { get { return 25; }}
122 public LEFT_ANGLE(Lexer yyl):base(yyl) {}}
123//%RIGHT_ANGLE+26
124public class RIGHT_ANGLE : TOKEN{ public override string yyname { get { return "RIGHT_ANGLE";}}
125public override int yynum { get { return 26; }}
126 public RIGHT_ANGLE(Lexer yyl):base(yyl) {}}
127//%LEFT_BRACKET+27
128public class LEFT_BRACKET : TOKEN{ public override string yyname { get { return "LEFT_BRACKET";}}
129public override int yynum { get { return 27; }}
130 public LEFT_BRACKET(Lexer yyl):base(yyl) {}}
131//%RIGHT_BRACKET+28
132public class RIGHT_BRACKET : TOKEN{ public override string yyname { get { return "RIGHT_BRACKET";}}
133public override int yynum { get { return 28; }}
134 public RIGHT_BRACKET(Lexer yyl):base(yyl) {}}
135//%EQUALS_EQUALS+29
136public class EQUALS_EQUALS : TOKEN{ public override string yyname { get { return "EQUALS_EQUALS";}}
137public override int yynum { get { return 29; }}
138 public EQUALS_EQUALS(Lexer yyl):base(yyl) {}}
139//%EXCLAMATION_EQUALS+30
140public class EXCLAMATION_EQUALS : TOKEN{ public override string yyname { get { return "EXCLAMATION_EQUALS";}}
141public override int yynum { get { return 30; }}
142 public EXCLAMATION_EQUALS(Lexer yyl):base(yyl) {}}
143//%LESS_EQUALS+31
144public class LESS_EQUALS : TOKEN{ public override string yyname { get { return "LESS_EQUALS";}}
145public override int yynum { get { return 31; }}
146 public LESS_EQUALS(Lexer yyl):base(yyl) {}}
147//%GREATER_EQUALS+32
148public class GREATER_EQUALS : TOKEN{ public override string yyname { get { return "GREATER_EQUALS";}}
149public override int yynum { get { return 32; }}
150 public GREATER_EQUALS(Lexer yyl):base(yyl) {}}
151//%AMP+33
152public class AMP : TOKEN{ public override string yyname { get { return "AMP";}}
153public override int yynum { get { return 33; }}
154 public AMP(Lexer yyl):base(yyl) {}}
155//%STROKE+34
156public class STROKE : TOKEN{ public override string yyname { get { return "STROKE";}}
157public override int yynum { get { return 34; }}
158 public STROKE(Lexer yyl):base(yyl) {}}
159//%CARET+35
160public class CARET : TOKEN{ public override string yyname { get { return "CARET";}}
161public override int yynum { get { return 35; }}
162 public CARET(Lexer yyl):base(yyl) {}}
163//%TILDE+36
164public class TILDE : TOKEN{ public override string yyname { get { return "TILDE";}}
165public override int yynum { get { return 36; }}
166 public TILDE(Lexer yyl):base(yyl) {}}
167//%EXCLAMATION+37
168public class EXCLAMATION : TOKEN{ public override string yyname { get { return "EXCLAMATION";}}
169public override int yynum { get { return 37; }}
170 public EXCLAMATION(Lexer yyl):base(yyl) {}}
171//%AMP_AMP+38
172public class AMP_AMP : TOKEN{ public override string yyname { get { return "AMP_AMP";}}
173public override int yynum { get { return 38; }}
174 public AMP_AMP(Lexer yyl):base(yyl) {}}
175//%STROKE_STROKE+39
176public class STROKE_STROKE : TOKEN{ public override string yyname { get { return "STROKE_STROKE";}}
177public override int yynum { get { return 39; }}
178 public STROKE_STROKE(Lexer yyl):base(yyl) {}}
179//%LEFT_SHIFT+40
180public class LEFT_SHIFT : TOKEN{ public override string yyname { get { return "LEFT_SHIFT";}}
181public override int yynum { get { return 40; }}
182 public LEFT_SHIFT(Lexer yyl):base(yyl) {}}
183//%RIGHT_SHIFT+41
184public class RIGHT_SHIFT : TOKEN{ public override string yyname { get { return "RIGHT_SHIFT";}}
185public override int yynum { get { return 41; }}
186 public RIGHT_SHIFT(Lexer yyl):base(yyl) {}}
187//%IF+42
188public class IF : TOKEN{ public override string yyname { get { return "IF";}}
189public override int yynum { get { return 42; }}
190 public IF(Lexer yyl):base(yyl) {}}
191//%ELSE+43
192public class ELSE : TOKEN{ public override string yyname { get { return "ELSE";}}
193public override int yynum { get { return 43; }}
194 public ELSE(Lexer yyl):base(yyl) {}}
195//%DO+44
196public class DO : TOKEN{ public override string yyname { get { return "DO";}}
197public override int yynum { get { return 44; }}
198 public DO(Lexer yyl):base(yyl) {}}
199//%WHILE+45
200public class WHILE : TOKEN{ public override string yyname { get { return "WHILE";}}
201public override int yynum { get { return 45; }}
202 public WHILE(Lexer yyl):base(yyl) {}}
203//%FOR+46
204public class FOR : TOKEN{ public override string yyname { get { return "FOR";}}
205public override int yynum { get { return 46; }}
206 public FOR(Lexer yyl):base(yyl) {}}
207//%DEFAULT_STATE+47
208public class DEFAULT_STATE : TOKEN{ public override string yyname { get { return "DEFAULT_STATE";}}
209public override int yynum { get { return 47; }}
210 public DEFAULT_STATE(Lexer yyl):base(yyl) {}}
211//%STATE+48
212public class STATE : TOKEN{ public override string yyname { get { return "STATE";}}
213public override int yynum { get { return 48; }}
214 public STATE(Lexer yyl):base(yyl) {}}
215//%JUMP+49
216public class JUMP : TOKEN{ public override string yyname { get { return "JUMP";}}
217public override int yynum { get { return 49; }}
218 public JUMP(Lexer yyl):base(yyl) {}}
219//%RETURN+50
220public class RETURN : TOKEN{ public override string yyname { get { return "RETURN";}}
221public override int yynum { get { return 50; }}
222 public RETURN(Lexer yyl):base(yyl) {}}
223//%INTEGER_TYPE+51
224public class INTEGER_TYPE : TOKEN{ public override string yyname { get { return "INTEGER_TYPE";}}
225public override int yynum { get { return 51; }}
226 public INTEGER_TYPE(Lexer yyl):base(yyl) {}}
227//%FLOAT_TYPE+52
228public class FLOAT_TYPE : TOKEN{ public override string yyname { get { return "FLOAT_TYPE";}}
229public override int yynum { get { return 52; }}
230 public FLOAT_TYPE(Lexer yyl):base(yyl) {}}
231//%STRING_TYPE+53
232public class STRING_TYPE : TOKEN{ public override string yyname { get { return "STRING_TYPE";}}
233public override int yynum { get { return 53; }}
234 public STRING_TYPE(Lexer yyl):base(yyl) {}}
235//%KEY_TYPE+54
236public class KEY_TYPE : TOKEN{ public override string yyname { get { return "KEY_TYPE";}}
237public override int yynum { get { return 54; }}
238 public KEY_TYPE(Lexer yyl):base(yyl) {}}
239//%VECTOR_TYPE+55
240public class VECTOR_TYPE : TOKEN{ public override string yyname { get { return "VECTOR_TYPE";}}
241public override int yynum { get { return 55; }}
242 public VECTOR_TYPE(Lexer yyl):base(yyl) {}}
243//%ROTATION_TYPE+56
244public class ROTATION_TYPE : TOKEN{ public override string yyname { get { return "ROTATION_TYPE";}}
245public override int yynum { get { return 56; }}
246 public ROTATION_TYPE(Lexer yyl):base(yyl) {}}
247//%LIST_TYPE+57
248public class LIST_TYPE : TOKEN{ public override string yyname { get { return "LIST_TYPE";}}
249public override int yynum { get { return 57; }}
250 public LIST_TYPE(Lexer yyl):base(yyl) {}}
251//%AT_ROT_TARGET_EVENT+58
252public class AT_ROT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "AT_ROT_TARGET_EVENT";}}
253public override int yynum { get { return 58; }}
254 public AT_ROT_TARGET_EVENT(Lexer yyl):base(yyl) {}}
255//%AT_TARGET_EVENT+59
256public class AT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "AT_TARGET_EVENT";}}
257public override int yynum { get { return 59; }}
258 public AT_TARGET_EVENT(Lexer yyl):base(yyl) {}}
259//%ATTACH_EVENT+60
260public class ATTACH_EVENT : TOKEN{ public override string yyname { get { return "ATTACH_EVENT";}}
261public override int yynum { get { return 60; }}
262 public ATTACH_EVENT(Lexer yyl):base(yyl) {}}
263//%CHANGED_EVENT+61
264public class CHANGED_EVENT : TOKEN{ public override string yyname { get { return "CHANGED_EVENT";}}
265public override int yynum { get { return 61; }}
266 public CHANGED_EVENT(Lexer yyl):base(yyl) {}}
267//%COLLISION_EVENT+62
268public class COLLISION_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_EVENT";}}
269public override int yynum { get { return 62; }}
270 public COLLISION_EVENT(Lexer yyl):base(yyl) {}}
271//%COLLISION_END_EVENT+63
272public class COLLISION_END_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_END_EVENT";}}
273public override int yynum { get { return 63; }}
274 public COLLISION_END_EVENT(Lexer yyl):base(yyl) {}}
275//%COLLISION_START_EVENT+64
276public class COLLISION_START_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_START_EVENT";}}
277public override int yynum { get { return 64; }}
278 public COLLISION_START_EVENT(Lexer yyl):base(yyl) {}}
279//%CONTROL_EVENT+65
280public class CONTROL_EVENT : TOKEN{ public override string yyname { get { return "CONTROL_EVENT";}}
281public override int yynum { get { return 65; }}
282 public CONTROL_EVENT(Lexer yyl):base(yyl) {}}
283//%DATASERVER_EVENT+66
284public class DATASERVER_EVENT : TOKEN{ public override string yyname { get { return "DATASERVER_EVENT";}}
285public override int yynum { get { return 66; }}
286 public DATASERVER_EVENT(Lexer yyl):base(yyl) {}}
287//%EMAIL_EVENT+67
288public class EMAIL_EVENT : TOKEN{ public override string yyname { get { return "EMAIL_EVENT";}}
289public override int yynum { get { return 67; }}
290 public EMAIL_EVENT(Lexer yyl):base(yyl) {}}
291//%HTTP_RESPONSE_EVENT+68
292public class HTTP_RESPONSE_EVENT : TOKEN{ public override string yyname { get { return "HTTP_RESPONSE_EVENT";}}
293public override int yynum { get { return 68; }}
294 public HTTP_RESPONSE_EVENT(Lexer yyl):base(yyl) {}}
295//%LAND_COLLISION_EVENT+69
296public class LAND_COLLISION_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_EVENT";}}
297public override int yynum { get { return 69; }}
298 public LAND_COLLISION_EVENT(Lexer yyl):base(yyl) {}}
299//%LAND_COLLISION_END_EVENT+70
300public class LAND_COLLISION_END_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_END_EVENT";}}
301public override int yynum { get { return 70; }}
302 public LAND_COLLISION_END_EVENT(Lexer yyl):base(yyl) {}}
303//%LAND_COLLISION_START_EVENT+71
304public class LAND_COLLISION_START_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_START_EVENT";}}
305public override int yynum { get { return 71; }}
306 public LAND_COLLISION_START_EVENT(Lexer yyl):base(yyl) {}}
307//%LINK_MESSAGE_EVENT+72
308public class LINK_MESSAGE_EVENT : TOKEN{ public override string yyname { get { return "LINK_MESSAGE_EVENT";}}
309public override int yynum { get { return 72; }}
310 public LINK_MESSAGE_EVENT(Lexer yyl):base(yyl) {}}
311//%LISTEN_EVENT+73
312public class LISTEN_EVENT : TOKEN{ public override string yyname { get { return "LISTEN_EVENT";}}
313public override int yynum { get { return 73; }}
314 public LISTEN_EVENT(Lexer yyl):base(yyl) {}}
315//%MONEY_EVENT+74
316public class MONEY_EVENT : TOKEN{ public override string yyname { get { return "MONEY_EVENT";}}
317public override int yynum { get { return 74; }}
318 public MONEY_EVENT(Lexer yyl):base(yyl) {}}
319//%MOVING_END_EVENT+75
320public class MOVING_END_EVENT : TOKEN{ public override string yyname { get { return "MOVING_END_EVENT";}}
321public override int yynum { get { return 75; }}
322 public MOVING_END_EVENT(Lexer yyl):base(yyl) {}}
323//%MOVING_START_EVENT+76
324public class MOVING_START_EVENT : TOKEN{ public override string yyname { get { return "MOVING_START_EVENT";}}
325public override int yynum { get { return 76; }}
326 public MOVING_START_EVENT(Lexer yyl):base(yyl) {}}
327//%NO_SENSOR_EVENT+77
328public class NO_SENSOR_EVENT : TOKEN{ public override string yyname { get { return "NO_SENSOR_EVENT";}}
329public override int yynum { get { return 77; }}
330 public NO_SENSOR_EVENT(Lexer yyl):base(yyl) {}}
331//%NOT_AT_ROT_TARGET_EVENT+78
332public class NOT_AT_ROT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "NOT_AT_ROT_TARGET_EVENT";}}
333public override int yynum { get { return 78; }}
334 public NOT_AT_ROT_TARGET_EVENT(Lexer yyl):base(yyl) {}}
335//%NOT_AT_TARGET_EVENT+79
336public class NOT_AT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "NOT_AT_TARGET_EVENT";}}
337public override int yynum { get { return 79; }}
338 public NOT_AT_TARGET_EVENT(Lexer yyl):base(yyl) {}}
339//%OBJECT_REZ_EVENT+80
340public class OBJECT_REZ_EVENT : TOKEN{ public override string yyname { get { return "OBJECT_REZ_EVENT";}}
341public override int yynum { get { return 80; }}
342 public OBJECT_REZ_EVENT(Lexer yyl):base(yyl) {}}
343//%ON_REZ_EVENT+81
344public class ON_REZ_EVENT : TOKEN{ public override string yyname { get { return "ON_REZ_EVENT";}}
345public override int yynum { get { return 81; }}
346 public ON_REZ_EVENT(Lexer yyl):base(yyl) {}}
347//%REMOTE_DATA_EVENT+82
348public class REMOTE_DATA_EVENT : TOKEN{ public override string yyname { get { return "REMOTE_DATA_EVENT";}}
349public override int yynum { get { return 82; }}
350 public REMOTE_DATA_EVENT(Lexer yyl):base(yyl) {}}
351//%RUN_TIME_PERMISSIONS_EVENT+83
352public class RUN_TIME_PERMISSIONS_EVENT : TOKEN{ public override string yyname { get { return "RUN_TIME_PERMISSIONS_EVENT";}}
353public override int yynum { get { return 83; }}
354 public RUN_TIME_PERMISSIONS_EVENT(Lexer yyl):base(yyl) {}}
355//%SENSOR_EVENT+84
356public class SENSOR_EVENT : TOKEN{ public override string yyname { get { return "SENSOR_EVENT";}}
357public override int yynum { get { return 84; }}
358 public SENSOR_EVENT(Lexer yyl):base(yyl) {}}
359//%STATE_ENTRY_EVENT+85
360public class STATE_ENTRY_EVENT : TOKEN{ public override string yyname { get { return "STATE_ENTRY_EVENT";}}
361public override int yynum { get { return 85; }}
362 public STATE_ENTRY_EVENT(Lexer yyl):base(yyl) {}}
363//%STATE_EXIT_EVENT+86
364public class STATE_EXIT_EVENT : TOKEN{ public override string yyname { get { return "STATE_EXIT_EVENT";}}
365public override int yynum { get { return 86; }}
366 public STATE_EXIT_EVENT(Lexer yyl):base(yyl) {}}
367//%TIMER_EVENT+87
368public class TIMER_EVENT : TOKEN{ public override string yyname { get { return "TIMER_EVENT";}}
369public override int yynum { get { return 87; }}
370 public TIMER_EVENT(Lexer yyl):base(yyl) {}}
371//%TOUCH_EVENT+88
372public class TOUCH_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_EVENT";}}
373public override int yynum { get { return 88; }}
374 public TOUCH_EVENT(Lexer yyl):base(yyl) {}}
375//%TOUCH_START_EVENT+89
376public class TOUCH_START_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_START_EVENT";}}
377public override int yynum { get { return 89; }}
378 public TOUCH_START_EVENT(Lexer yyl):base(yyl) {}}
379//%TOUCH_END_EVENT+90
380public class TOUCH_END_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_END_EVENT";}}
381public override int yynum { get { return 90; }}
382 public TOUCH_END_EVENT(Lexer yyl):base(yyl) {}}
383//%IDENT+91
384public class IDENT : TOKEN{ public override string yyname { get { return "IDENT";}}
385public override int yynum { get { return 91; }}
386 public IDENT(Lexer yyl):base(yyl) {}}
387//%INTEGER_CONSTANT+92
388public class INTEGER_CONSTANT : TOKEN{ public override string yyname { get { return "INTEGER_CONSTANT";}}
389public override int yynum { get { return 92; }}
390 public INTEGER_CONSTANT(Lexer yyl):base(yyl) {}}
391//%HEX_INTEGER_CONSTANT+93
392public class HEX_INTEGER_CONSTANT : TOKEN{ public override string yyname { get { return "HEX_INTEGER_CONSTANT";}}
393public override int yynum { get { return 93; }}
394 public HEX_INTEGER_CONSTANT(Lexer yyl):base(yyl) {}}
395//%FLOAT_CONSTANT+94
396public class FLOAT_CONSTANT : TOKEN{ public override string yyname { get { return "FLOAT_CONSTANT";}}
397public override int yynum { get { return 94; }}
398 public FLOAT_CONSTANT(Lexer yyl):base(yyl) {}}
399//%|LSLTokens
400public class yyLSLTokens : YyLexer {
401 public yyLSLTokens(ErrorHandler eh):base(eh) { arr = new int[] {
402101,4,6,52,0,
40346,0,53,0,6,
404102,4,16,117,0,
405115,0,45,0,97,
4060,115,0,99,0,
407105,0,105,0,2,
4080,103,5,27,7,
4090,104,9,1,0,
4103,192,0,105,5,
41127,3,65,0,2,
4121,3,66,0,2,
4131,3,67,0,2,
4141,3,68,0,2,
4151,3,69,0,2,
4161,3,70,0,2,
4171,3,71,0,2,
4181,3,72,0,2,
4191,3,73,0,2,
4201,3,74,0,2,
4211,3,75,0,2,
4221,3,76,0,2,
4231,3,77,0,2,
4241,3,78,0,2,
4251,3,79,0,2,
4261,3,80,0,2,
4271,3,81,0,2,
4281,3,82,0,2,
4291,3,83,0,2,
4301,3,84,0,2,
4311,3,85,0,2,
4321,3,86,0,2,
4331,3,87,0,2,
4341,3,88,0,2,
4351,3,89,0,2,
4361,3,90,0,2,
4371,3,192,0,2,
4381,7,1,106,9,
4391,1,3,170,0,
440107,5,27,3,109,
4410,2,1,3,110,
4420,2,1,3,111,
4430,2,1,3,112,
4440,2,1,3,113,
4450,2,1,3,114,
4460,2,1,3,115,
4470,2,1,3,116,
4480,2,1,3,117,
4490,2,1,3,118,
4500,2,1,3,119,
4510,2,1,3,120,
4520,2,1,3,121,
4530,2,1,3,122,
4540,2,1,3,170,
4550,2,1,3,97,
4560,2,1,3,98,
4570,2,1,3,99,
4580,2,1,3,100,
4590,2,1,3,101,
4600,2,1,3,102,
4610,2,1,3,103,
4620,2,1,3,104,
4630,2,1,3,105,
4640,2,1,3,106,
4650,2,1,3,107,
4660,2,1,3,108,
4670,2,1,7,2,
468108,9,1,2,3,
469197,1,109,5,1,
4703,197,1,2,1,
4717,3,110,9,1,
4723,3,176,2,111,
4735,1,3,176,2,
4742,1,7,4,112,
4759,1,4,3,187,
4761,113,5,1,3,
477187,1,2,1,7,
4785,114,9,1,5,
4793,0,3,115,5,
4801,3,0,3,2,
4811,7,6,116,9,
4821,6,3,3,9,
483117,5,1,3,3,
4849,2,1,7,7,
485118,9,1,7,3,
486136,4,119,5,1,
4873,136,4,2,1,
4887,8,120,9,1,
4898,3,96,6,121,
4905,11,3,96,6,
4912,1,3,48,0,
4922,1,3,49,0,
4932,1,3,50,0,
4942,1,3,51,0,
4952,1,3,52,0,
4962,1,3,53,0,
4972,1,3,54,0,
4982,1,3,55,0,
4992,1,3,56,0,
5002,1,3,57,0,
5012,1,7,9,122,
5029,1,9,3,96,
50333,123,5,1,3,
50496,33,2,1,7,
50510,124,9,1,10,
5063,178,0,125,5,
5071,3,178,0,2,
5081,7,11,126,9,
5091,11,3,160,0,
510127,5,2,3,160,
5110,2,1,3,32,
5120,2,1,7,12,
513128,9,1,12,3,
51440,32,129,5,1,
5153,40,32,2,1,
5167,13,130,9,1,
51713,3,41,32,131,
5185,1,3,41,32,
5192,1,7,14,132,
5209,1,14,3,1,
5210,133,5,5,3,
5220,0,2,1,3,
5231,0,2,1,3,
52413,0,2,1,3,
5259,0,2,1,3,
52610,0,2,1,7,
52715,134,9,1,15,
5283,15,7,135,5,
5291,3,15,7,2,
5301,7,17,136,9,
5311,17,3,0,224,
532137,5,1,3,0,
533224,2,1,7,18,
534138,9,1,18,3,
53563,32,139,5,2,
5363,63,32,2,1,
5373,95,0,2,1,
5387,19,140,9,1,
53919,3,173,0,141,
5405,2,3,45,0,
5412,1,3,173,0,
5422,1,7,20,142,
5439,1,20,3,58,
54415,143,5,4,3,
545123,0,2,1,3,
54691,0,2,1,3,
54758,15,2,1,3,
54840,0,2,1,7,
54921,144,9,1,21,
5503,59,15,145,5,
5514,3,59,15,2,
5521,3,125,0,2,
5531,3,93,0,2,
5541,3,41,0,2,
5551,7,22,146,9,
5561,22,3,171,0,
557147,5,1,3,171,
5580,2,1,7,23,
559148,9,1,23,3,
560187,0,149,5,1,
5613,187,0,2,1,
5627,24,150,9,1,
56324,3,35,0,151,
5645,12,3,37,0,
5652,1,3,38,0,
5662,1,3,42,0,
5672,1,3,44,0,
5682,1,3,46,0,
5692,1,3,47,0,
5702,1,3,92,0,
5712,1,3,59,0,
5722,1,3,64,0,
5732,1,3,33,0,
5742,1,3,34,0,
5752,1,3,35,0,
5762,1,7,25,152,
5779,1,25,3,172,
5780,153,5,7,3,
579172,0,2,1,3,
580124,0,2,1,3,
581126,0,2,1,3,
58260,0,2,1,3,
58361,0,2,1,3,
58462,0,2,1,3,
58543,0,2,1,7,
58626,154,9,1,26,
5873,36,0,155,5,
5881,3,36,0,2,
5891,7,27,156,9,
5901,27,3,96,0,
591157,5,2,3,94,
5920,2,1,3,96,
5930,2,1,7,27,
5942,0,158,5,2,
595159,4,18,89,0,
59689,0,73,0,78,
5970,73,0,84,0,
59873,0,65,0,76,
5990,160,12,1,1022,
600161,5,91,3,9,
6010,162,12,1,39257,
602163,5,0,164,11,
6031,999,0,165,4,
6040,1,-1,3,10,
6050,162,3,13,0,
606162,3,32,0,162,
6073,33,0,166,12,
6081,42170,167,5,1,
6093,61,0,168,12,
6101,42285,169,5,0,
611170,11,1,142,0,
612171,4,36,69,0,
61388,0,67,0,76,
6140,65,0,77,0,
61565,0,84,0,73,
6160,79,0,78,0,
61795,0,69,0,81,
6180,85,0,65,0,
61976,0,83,0,1,
620-1,172,11,1,180,
6210,173,4,22,69,
6220,88,0,67,0,
62376,0,65,0,77,
6240,65,0,84,0,
62573,0,79,0,78,
6260,1,-1,3,34,
6270,174,12,1,42411,
628175,5,0,176,11,
6291,925,0,165,1,
630-1,3,37,0,177,
63112,1,40481,178,5,
6321,3,61,0,179,
63312,1,40596,180,5,
6340,181,11,1,40,
6350,182,4,28,80,
6360,69,0,82,0,
63767,0,69,0,78,
6380,84,0,95,0,
63969,0,81,0,85,
6400,65,0,76,0,
64183,0,1,-1,183,
64211,1,101,0,184,
6434,14,80,0,69,
6440,82,0,67,0,
64569,0,78,0,84,
6460,1,-1,3,38,
6470,185,12,1,40722,
648186,5,1,3,38,
6490,187,12,1,40822,
650188,5,0,189,11,
6511,185,0,190,4,
65214,65,0,77,0,
65380,0,95,0,65,
6540,77,0,80,0,
6551,-1,191,11,1,
656160,0,192,4,6,
65765,0,77,0,80,
6580,1,-1,3,40,
6590,193,12,1,39994,
660194,5,0,195,11,
6611,71,0,196,4,
66220,76,0,69,0,
66370,0,84,0,95,
6640,80,0,65,0,
66582,0,69,0,78,
6660,1,-1,3,41,
6670,197,12,1,40358,
668198,5,0,199,11,
6691,76,0,200,4,
67022,82,0,73,0,
67171,0,72,0,84,
6720,95,0,80,0,
67365,0,82,0,69,
6740,78,0,1,-1,
6753,42,0,201,12,
6761,40963,202,5,1,
6773,61,0,203,12,
6781,41078,204,5,0,
679205,11,1,28,0,
680206,4,22,83,0,
68184,0,65,0,82,
6820,95,0,69,0,
68381,0,85,0,65,
6840,76,0,83,0,
6851,-1,207,11,1,
68691,0,208,4,8,
68783,0,84,0,65,
6880,82,0,1,-1,
6893,43,0,209,12,
6901,43859,210,5,2,
6913,61,0,211,12,
6921,43974,212,5,0,
693213,11,1,16,0,
694214,4,22,80,0,
69576,0,85,0,83,
6960,95,0,69,0,
69781,0,85,0,65,
6980,76,0,83,0,
6991,-1,3,43,0,
700215,12,1,44096,216,
7015,0,217,11,1,
7022,0,218,4,18,
70373,0,78,0,67,
7040,82,0,69,0,
70577,0,69,0,78,
7060,84,0,1,-1,
707219,11,1,81,0,
708220,4,8,80,0,
70976,0,85,0,83,
7100,1,-1,3,44,
7110,221,12,1,41204,
712222,5,0,223,11,
7131,61,0,224,4,
71410,67,0,79,0,
71577,0,77,0,65,
7160,1,-1,3,45,
7170,225,12,1,39389,
718226,5,2,3,45,
7190,227,12,1,39476,
720228,5,0,229,11,
7211,10,0,230,4,
72218,68,0,69,0,
72367,0,82,0,69,
7240,77,0,69,0,
72578,0,84,0,1,
726-1,3,61,0,231,
72712,1,39624,232,5,
7280,233,11,1,22,
7290,234,4,24,77,
7300,73,0,78,0,
73185,0,83,0,95,
7320,69,0,81,0,
73385,0,65,0,76,
7340,83,0,1,-1,
735235,11,1,86,0,
736236,4,10,77,0,
73773,0,78,0,85,
7380,83,0,1,-1,
7393,46,0,237,12,
7401,41325,238,5,14,
7413,48,0,239,12,
7421,38991,240,5,14,
7433,48,0,239,3,
74449,0,239,3,50,
7450,239,3,51,0,
746239,3,52,0,239,
7473,53,0,239,3,
74854,0,239,3,55,
7490,239,3,56,0,
750239,3,57,0,239,
7513,101,0,241,12,
7521,38454,242,5,12,
7533,43,0,243,12,
7541,38781,244,5,10,
7553,48,0,245,12,
7561,38516,246,5,12,
7573,48,0,245,3,
75849,0,245,3,50,
7590,245,3,51,0,
760245,3,52,0,245,
7613,53,0,245,3,
76254,0,245,3,55,
7630,245,3,56,0,
764245,3,57,0,245,
7653,102,0,247,12,
7661,38522,248,5,0,
767249,11,1,866,0,
768250,4,28,70,0,
76976,0,79,0,65,
7700,84,0,95,0,
77167,0,79,0,78,
7720,83,0,84,0,
77365,0,78,0,84,
7740,1,-1,3,70,
7750,247,251,11,1,
776866,0,250,1,-1,
7773,49,0,245,3,
77850,0,245,3,51,
7790,245,3,52,0,
780245,3,53,0,245,
7813,54,0,245,3,
78255,0,245,3,56,
7830,245,3,57,0,
784245,0,165,1,-1,
7853,45,0,243,3,
78648,0,245,3,49,
7870,245,3,50,0,
788245,3,51,0,245,
7893,52,0,245,3,
79053,0,245,3,54,
7910,245,3,55,0,
792245,3,56,0,245,
7933,57,0,245,0,
794165,1,-1,3,102,
7950,247,3,69,0,
796241,3,70,0,247,
797252,11,1,866,0,
798250,1,-1,3,49,
7990,239,3,50,0,
800239,3,51,0,239,
8013,52,0,239,3,
80253,0,239,3,54,
8030,239,3,55,0,
804239,3,56,0,239,
8053,57,0,239,3,
806101,0,241,3,102,
8070,247,3,69,0,
808241,3,70,0,247,
809253,11,1,111,0,
810254,4,12,80,0,
81169,0,82,0,73,
8120,79,0,68,0,
8131,-1,3,47,0,
814255,12,1,41446,256,
8155,2,3,47,0,
816257,12,1,41550,258,
8175,118,3,1,0,
818259,12,1,41551,260,
8195,118,3,1,0,
820259,3,9,0,259,
8213,96,33,259,3,
82213,0,259,3,0,
8233,259,3,32,0,
824259,3,33,0,259,
8253,34,0,259,3,
82635,0,259,3,36,
8270,259,3,37,0,
828259,3,38,0,259,
8293,40,0,259,3,
83041,0,259,3,42,
8310,259,3,43,0,
832259,3,44,0,259,
8333,45,0,259,3,
83446,0,259,3,47,
8350,259,3,3,9,
836259,3,49,0,259,
8373,50,0,259,3,
83848,0,259,3,52,
8390,259,3,53,0,
840259,3,51,0,259,
8413,55,0,259,3,
84256,0,259,3,54,
8430,259,3,59,0,
844259,3,57,0,259,
8453,61,0,259,3,
84662,0,259,3,60,
8470,259,3,64,0,
848259,3,65,0,259,
8493,66,0,259,3,
85067,0,259,3,68,
8510,259,3,69,0,
852259,3,70,0,259,
8533,71,0,259,3,
85472,0,259,3,73,
8550,259,3,74,0,
856259,3,75,0,259,
8573,76,0,259,3,
85877,0,259,3,78,
8590,259,3,79,0,
860259,3,80,0,259,
8613,81,0,259,3,
86282,0,259,3,83,
8630,259,3,84,0,
864259,3,85,0,259,
8653,86,0,259,3,
86687,0,259,3,88,
8670,259,3,89,0,
868259,3,90,0,259,
8693,91,0,259,3,
87092,0,259,3,93,
8710,259,3,94,0,
872259,3,95,0,259,
8733,96,0,259,3,
87497,0,259,3,98,
8750,259,3,99,0,
876259,3,100,0,259,
8773,101,0,259,3,
878102,0,259,3,103,
8790,259,3,104,0,
880259,3,105,0,259,
8813,106,0,259,3,
882107,0,259,3,15,
8837,259,3,109,0,
884259,3,110,0,259,
8853,111,0,259,3,
886112,0,259,3,113,
8870,259,3,114,0,
888259,3,115,0,259,
8893,116,0,259,3,
890117,0,259,3,118,
8910,259,3,119,0,
892259,3,120,0,259,
8933,121,0,259,3,
894122,0,259,3,108,
8950,259,3,124,0,
896259,3,125,0,259,
8973,96,6,259,3,
898123,0,259,3,126,
8990,259,3,58,15,
900259,3,59,15,259,
9013,136,4,259,3,
902160,0,259,3,170,
9030,259,3,171,0,
904259,3,172,0,259,
9053,173,0,259,3,
906178,0,259,3,176,
9072,259,3,187,0,
908259,3,187,1,259,
9093,192,0,259,3,
91041,32,259,3,197,
9111,259,3,0,224,
912259,3,40,32,259,
9133,63,32,259,261,
91411,1,1003,0,165,
9151,-1,3,9,0,
916259,3,96,33,259,
9173,13,0,259,3,
9180,3,259,3,32,
9190,259,3,33,0,
920259,3,34,0,259,
9213,35,0,259,3,
92236,0,259,3,37,
9230,259,3,38,0,
924259,3,40,0,259,
9253,41,0,259,3,
92642,0,259,3,43,
9270,259,3,44,0,
928259,3,45,0,259,
9293,46,0,259,3,
93047,0,259,3,3,
9319,259,3,49,0,
932259,3,50,0,259,
9333,48,0,259,3,
93452,0,259,3,53,
9350,259,3,51,0,
936259,3,55,0,259,
9373,56,0,259,3,
93854,0,259,3,59,
9390,259,3,57,0,
940259,3,61,0,259,
9413,62,0,259,3,
94260,0,259,3,64,
9430,259,3,65,0,
944259,3,66,0,259,
9453,67,0,259,3,
94668,0,259,3,69,
9470,259,3,70,0,
948259,3,71,0,259,
9493,72,0,259,3,
95073,0,259,3,74,
9510,259,3,75,0,
952259,3,76,0,259,
9533,77,0,259,3,
95478,0,259,3,79,
9550,259,3,80,0,
956259,3,81,0,259,
9573,82,0,259,3,
95883,0,259,3,84,
9590,259,3,85,0,
960259,3,86,0,259,
9613,87,0,259,3,
96288,0,259,3,89,
9630,259,3,90,0,
964259,3,91,0,259,
9653,92,0,259,3,
96693,0,259,3,94,
9670,259,3,95,0,
968259,3,96,0,259,
9693,97,0,259,3,
97098,0,259,3,99,
9710,259,3,100,0,
972259,3,101,0,259,
9733,102,0,259,3,
974103,0,259,3,104,
9750,259,3,105,0,
976259,3,106,0,259,
9773,107,0,259,3,
97815,7,259,3,109,
9790,259,3,110,0,
980259,3,111,0,259,
9813,112,0,259,3,
982113,0,259,3,114,
9830,259,3,115,0,
984259,3,116,0,259,
9853,117,0,259,3,
986118,0,259,3,119,
9870,259,3,120,0,
988259,3,121,0,259,
9893,122,0,259,3,
990108,0,259,3,124,
9910,259,3,125,0,
992259,3,96,6,259,
9933,123,0,259,3,
994126,0,259,3,58,
99515,259,3,59,15,
996259,3,136,4,259,
9973,160,0,259,3,
998170,0,259,3,171,
9990,259,3,172,0,
1000259,3,173,0,259,
10013,178,0,259,3,
1002176,2,259,3,187,
10030,259,3,187,1,
1004259,3,192,0,259,
10053,41,32,259,3,
1006197,1,259,3,0,
1007224,259,3,40,32,
1008259,3,63,32,259,
1009262,11,1,1003,0,
1010165,1,-1,3,61,
10110,263,12,1,41801,
1012264,5,0,265,11,
10131,34,0,266,4,
101424,83,0,76,0,
101565,0,83,0,72,
10160,95,0,69,0,
101781,0,85,0,65,
10180,76,0,83,0,
10191,-1,267,11,1,
102096,0,268,4,10,
102183,0,76,0,65,
10220,83,0,72,0,
10231,-1,3,48,0,
1024269,12,1,38044,270,
10255,13,3,120,0,
1026271,12,1,38068,272,
10275,22,3,102,0,
1028273,12,1,38069,274,
10295,22,3,102,0,
1030273,3,48,0,273,
10313,49,0,273,3,
103250,0,273,3,51,
10330,273,3,52,0,
1034273,3,53,0,273,
10353,54,0,273,3,
103655,0,273,3,56,
10370,273,3,57,0,
1038273,3,97,0,273,
10393,98,0,273,3,
104099,0,273,3,100,
10410,273,3,101,0,
1042273,3,65,0,273,
10433,66,0,273,3,
104467,0,273,3,68,
10450,273,3,69,0,
1046273,3,70,0,273,
1047275,11,1,847,0,
1048276,4,40,72,0,
104969,0,88,0,95,
10500,73,0,78,0,
105184,0,69,0,71,
10520,69,0,82,0,
105395,0,67,0,79,
10540,78,0,83,0,
105584,0,65,0,78,
10560,84,0,1,-1,
10573,48,0,273,3,
105849,0,273,3,50,
10590,273,3,51,0,
1060273,3,52,0,273,
10613,53,0,273,3,
106254,0,273,3,55,
10630,273,3,56,0,
1064273,3,57,0,273,
10653,97,0,273,3,
106698,0,273,3,99,
10670,273,3,100,0,
1068273,3,101,0,273,
10693,65,0,273,3,
107066,0,273,3,67,
10710,273,3,68,0,
1072273,3,69,0,273,
10733,70,0,273,0,
1074165,1,-1,3,48,
10750,277,12,1,38346,
1076278,5,11,3,46,
10770,279,12,1,38449,
1078280,5,14,3,48,
10790,239,3,49,0,
1080239,3,50,0,239,
10813,51,0,239,3,
108252,0,239,3,53,
10830,239,3,54,0,
1084239,3,55,0,239,
10853,56,0,239,3,
108657,0,239,3,101,
10870,241,3,102,0,
1088247,3,69,0,241,
10893,70,0,247,281,
109011,1,866,0,250,
10911,-1,3,48,0,
1092277,3,49,0,277,
10933,50,0,277,3,
109451,0,277,3,52,
10950,277,3,53,0,
1096277,3,54,0,277,
10973,55,0,277,3,
109856,0,277,3,57,
10990,277,282,11,1,
1100841,0,283,4,32,
110173,0,78,0,84,
11020,69,0,71,0,
110369,0,82,0,95,
11040,67,0,79,0,
110578,0,83,0,84,
11060,65,0,78,0,
110784,0,1,-1,3,
110849,0,277,3,50,
11090,277,3,88,0,
1110271,3,52,0,277,
11113,53,0,277,3,
111251,0,277,3,55,
11130,277,3,56,0,
1114277,3,54,0,277,
11153,46,0,279,3,
111657,0,277,284,11,
11171,841,0,283,1,
1118-1,3,49,0,277,
11193,50,0,277,3,
112051,0,277,3,52,
11210,277,3,53,0,
1122277,3,54,0,277,
11233,55,0,277,3,
112456,0,277,3,57,
11250,277,3,59,0,
1126285,12,1,41928,286,
11275,0,287,11,1,
112846,0,288,4,18,
112983,0,69,0,77,
11300,73,0,67,0,
113179,0,76,0,79,
11320,78,0,1,-1,
11333,60,0,289,12,
11341,42896,290,5,2,
11353,60,0,291,12,
11361,43010,292,5,0,
1137293,11,1,197,0,
1138294,4,20,76,0,
113969,0,70,0,84,
11400,95,0,83,0,
114172,0,73,0,70,
11420,84,0,1,-1,
11433,61,0,295,12,
11441,43131,296,5,0,
1145297,11,1,148,0,
1146298,4,22,76,0,
114769,0,83,0,83,
11480,95,0,69,0,
114981,0,85,0,65,
11500,76,0,83,0,
11511,-1,299,11,1,
1152116,0,300,4,20,
115376,0,69,0,70,
11540,84,0,95,0,
115565,0,78,0,71,
11560,76,0,69,0,
11571,-1,3,61,0,
1158301,12,1,43257,302,
11595,1,3,61,0,
1160303,12,1,43372,304,
11615,0,305,11,1,
1162136,0,306,4,26,
116369,0,81,0,85,
11640,65,0,76,0,
116583,0,95,0,69,
11660,81,0,85,0,
116765,0,76,0,83,
11680,1,-1,307,11,
11691,66,0,308,4,
117012,69,0,81,0,
117185,0,65,0,76,
11720,83,0,1,-1,
11733,62,0,309,12,
11741,43498,310,5,2,
11753,61,0,311,12,
11761,43613,312,5,0,
1177313,11,1,154,0,
1178314,4,28,71,0,
117982,0,69,0,65,
11800,84,0,69,0,
118182,0,95,0,69,
11820,81,0,85,0,
118365,0,76,0,83,
11840,1,-1,3,62,
11850,315,12,1,43734,
1186316,5,0,317,11,
11871,203,0,318,4,
118822,82,0,73,0,
118971,0,72,0,84,
11900,95,0,83,0,
119172,0,73,0,70,
11920,84,0,1,-1,
1193319,11,1,121,0,
1194320,4,22,82,0,
119573,0,71,0,72,
11960,84,0,95,0,
119765,0,78,0,71,
11980,76,0,69,0,
11991,-1,3,64,0,
1200321,12,1,42049,322,
12015,0,323,11,1,
1202106,0,324,4,4,
120365,0,84,0,1,
1204-1,3,65,0,325,
120512,1,1023,326,5,
120663,3,109,0,327,
120712,1,1024,328,5,
120863,3,109,0,327,
12093,110,0,327,3,
1210111,0,327,3,112,
12110,327,3,113,0,
1212327,3,114,0,327,
12133,115,0,327,3,
1214116,0,327,3,117,
12150,327,3,118,0,
1216327,3,119,0,327,
12173,120,0,327,3,
1218121,0,327,3,122,
12190,327,3,48,0,
1220327,3,49,0,327,
12213,50,0,327,3,
122251,0,327,3,52,
12230,327,3,53,0,
1224327,3,54,0,327,
12253,55,0,327,3,
122656,0,327,3,57,
12270,327,3,65,0,
1228327,3,66,0,327,
12293,67,0,327,3,
123068,0,327,3,69,
12310,327,3,70,0,
1232327,3,71,0,327,
12333,72,0,327,3,
123473,0,327,3,74,
12350,327,3,75,0,
1236327,3,76,0,327,
12373,77,0,327,3,
123878,0,327,3,79,
12390,327,3,80,0,
1240327,3,81,0,327,
12413,82,0,327,3,
124283,0,327,3,84,
12430,327,3,85,0,
1244327,3,86,0,327,
12453,87,0,327,3,
124688,0,327,3,89,
12470,327,3,90,0,
1248327,3,95,0,327,
12493,97,0,327,3,
125098,0,327,3,99,
12510,327,3,100,0,
1252327,3,101,0,327,
12533,102,0,327,3,
1254103,0,327,3,104,
12550,327,3,105,0,
1256327,3,106,0,327,
12573,107,0,327,3,
1258108,0,327,329,11,
12591,829,0,330,4,
126010,73,0,68,0,
126169,0,78,0,84,
12620,1,-1,3,110,
12630,327,3,111,0,
1264327,3,112,0,327,
12653,113,0,327,3,
1266114,0,327,3,115,
12670,327,3,116,0,
1268327,3,117,0,327,
12693,118,0,327,3,
1270119,0,327,3,120,
12710,327,3,121,0,
1272327,3,122,0,327,
12733,48,0,327,3,
127449,0,327,3,50,
12750,327,3,51,0,
1276327,3,52,0,327,
12773,53,0,327,3,
127854,0,327,3,55,
12790,327,3,56,0,
1280327,3,57,0,327,
12813,65,0,327,3,
128266,0,327,3,67,
12830,327,3,68,0,
1284327,3,69,0,327,
12853,70,0,327,3,
128671,0,327,3,72,
12870,327,3,73,0,
1288327,3,74,0,327,
12893,75,0,327,3,
129076,0,327,3,77,
12910,327,3,78,0,
1292327,3,79,0,327,
12933,80,0,327,3,
129481,0,327,3,82,
12950,327,3,83,0,
1296327,3,84,0,327,
12973,85,0,327,3,
129886,0,327,3,87,
12990,327,3,88,0,
1300327,3,89,0,327,
13013,90,0,327,3,
130295,0,327,3,97,
13030,327,3,98,0,
1304327,3,99,0,327,
13053,100,0,327,3,
1306101,0,327,3,102,
13070,327,3,103,0,
1308327,3,104,0,327,
13093,105,0,327,3,
1310106,0,327,3,107,
13110,327,3,108,0,
1312327,331,11,1,829,
13130,330,1,-1,3,
131466,0,325,3,67,
13150,325,3,68,0,
1316325,3,69,0,325,
13173,70,0,325,3,
131871,0,325,3,72,
13190,325,3,73,0,
1320325,3,74,0,325,
13213,75,0,325,3,
132276,0,325,3,77,
13230,325,3,78,0,
1324325,3,79,0,325,
13253,80,0,325,3,
132681,0,325,3,82,
13270,325,3,83,0,
1328325,3,84,0,325,
13293,85,0,325,3,
133086,0,325,3,87,
13310,325,3,88,0,
1332325,3,89,0,325,
13333,90,0,325,3,
133491,0,332,12,1,
133539872,333,5,0,334,
133611,1,126,0,335,
13374,24,76,0,69,
13380,70,0,84,0,
133995,0,66,0,82,
13400,65,0,67,0,
134175,0,69,0,84,
13420,1,-1,3,93,
13430,336,12,1,40237,
1344337,5,0,338,11,
13451,131,0,339,4,
134626,82,0,73,0,
134771,0,72,0,84,
13480,95,0,66,0,
134982,0,65,0,67,
13500,75,0,69,0,
135184,0,1,-1,3,
135294,0,340,12,1,
135344221,341,5,0,342,
135411,1,170,0,343,
13554,10,67,0,65,
13560,82,0,69,0,
135784,0,1,-1,3,
135895,0,325,3,97,
13590,344,12,1,20025,
1360345,5,63,3,109,
13610,327,3,110,0,
1362327,3,111,0,327,
13633,112,0,327,3,
1364113,0,327,3,114,
13650,327,3,115,0,
1366327,3,116,0,346,
136712,1,20060,347,5,
136863,3,109,0,327,
13693,110,0,327,3,
1370111,0,327,3,112,
13710,327,3,113,0,
1372327,3,114,0,327,
13733,115,0,327,3,
1374116,0,348,12,1,
137520095,349,5,63,3,
1376109,0,327,3,110,
13770,327,3,111,0,
1378327,3,112,0,327,
13793,113,0,327,3,
1380114,0,327,3,115,
13810,327,3,116,0,
1382327,3,117,0,327,
13833,118,0,327,3,
1384119,0,327,3,120,
13850,327,3,121,0,
1386327,3,122,0,327,
13873,48,0,327,3,
138849,0,327,3,50,
13890,327,3,51,0,
1390327,3,52,0,327,
13913,53,0,327,3,
139254,0,327,3,55,
13930,327,3,56,0,
1394327,3,57,0,327,
13953,65,0,327,3,
139666,0,327,3,67,
13970,327,3,68,0,
1398327,3,69,0,327,
13993,70,0,327,3,
140071,0,327,3,72,
14010,327,3,73,0,
1402327,3,74,0,327,
14033,75,0,327,3,
140476,0,327,3,77,
14050,327,3,78,0,
1406327,3,79,0,327,
14073,80,0,327,3,
140881,0,327,3,82,
14090,327,3,83,0,
1410327,3,84,0,327,
14113,85,0,327,3,
141286,0,327,3,87,
14130,327,3,88,0,
1414327,3,89,0,327,
14153,90,0,327,3,
141695,0,327,3,97,
14170,350,12,1,20138,
1418351,5,63,3,109,
14190,327,3,110,0,
1420327,3,111,0,327,
14213,112,0,327,3,
1422113,0,327,3,114,
14230,327,3,115,0,
1424327,3,116,0,327,
14253,117,0,327,3,
1426118,0,327,3,119,
14270,327,3,120,0,
1428327,3,121,0,327,
14293,122,0,327,3,
143048,0,327,3,49,
14310,327,3,50,0,
1432327,3,51,0,327,
14333,52,0,327,3,
143453,0,327,3,54,
14350,327,3,55,0,
1436327,3,56,0,327,
14373,57,0,327,3,
143865,0,327,3,66,
14390,327,3,67,0,
1440327,3,68,0,327,
14413,69,0,327,3,
144270,0,327,3,71,
14430,327,3,72,0,
1444327,3,73,0,327,
14453,74,0,327,3,
144675,0,327,3,76,
14470,327,3,77,0,
1448327,3,78,0,327,
14493,79,0,327,3,
145080,0,327,3,81,
14510,327,3,82,0,
1452327,3,83,0,327,
14533,84,0,327,3,
145485,0,327,3,86,
14550,327,3,87,0,
1456327,3,88,0,327,
14573,89,0,327,3,
145890,0,327,3,95,
14590,327,3,97,0,
1460327,3,98,0,327,
14613,99,0,352,12,
14621,20183,353,5,63,
14633,109,0,327,3,
1464110,0,327,3,111,
14650,327,3,112,0,
1466327,3,113,0,327,
14673,114,0,327,3,
1468115,0,327,3,116,
14690,327,3,117,0,
1470327,3,118,0,327,
14713,119,0,327,3,
1472120,0,327,3,121,
14730,327,3,122,0,
1474327,3,48,0,327,
14753,49,0,327,3,
147650,0,327,3,51,
14770,327,3,52,0,
1478327,3,53,0,327,
14793,54,0,327,3,
148055,0,327,3,56,
14810,327,3,57,0,
1482327,3,65,0,327,
14833,66,0,327,3,
148467,0,327,3,68,
14850,327,3,69,0,
1486327,3,70,0,327,
14873,71,0,327,3,
148872,0,327,3,73,
14890,327,3,74,0,
1490327,3,75,0,327,
14913,76,0,327,3,
149277,0,327,3,78,
14930,327,3,79,0,
1494327,3,80,0,327,
14953,81,0,327,3,
149682,0,327,3,83,
14970,327,3,84,0,
1498327,3,85,0,327,
14993,86,0,327,3,
150087,0,327,3,88,
15010,327,3,89,0,
1502327,3,90,0,327,
15033,95,0,327,3,
150497,0,327,3,98,
15050,327,3,99,0,
1506327,3,100,0,327,
15073,101,0,327,3,
1508102,0,327,3,103,
15090,327,3,104,0,
1510354,12,1,20233,355,
15115,63,3,109,0,
1512327,3,110,0,327,
15133,111,0,327,3,
1514112,0,327,3,113,
15150,327,3,114,0,
1516327,3,115,0,327,
15173,116,0,327,3,
1518117,0,327,3,118,
15190,327,3,119,0,
1520327,3,120,0,327,
15213,121,0,327,3,
1522122,0,327,3,48,
15230,327,3,49,0,
1524327,3,50,0,327,
15253,51,0,327,3,
152652,0,327,3,53,
15270,327,3,54,0,
1528327,3,55,0,327,
15293,56,0,327,3,
153057,0,327,3,65,
15310,327,3,66,0,
1532327,3,67,0,327,
15333,68,0,327,3,
153469,0,327,3,70,
15350,327,3,71,0,
1536327,3,72,0,327,
15373,73,0,327,3,
153874,0,327,3,75,
15390,327,3,76,0,
1540327,3,77,0,327,
15413,78,0,327,3,
154279,0,327,3,80,
15430,327,3,81,0,
1544327,3,82,0,327,
15453,83,0,327,3,
154684,0,327,3,85,
15470,327,3,86,0,
1548327,3,87,0,327,
15493,88,0,327,3,
155089,0,327,3,90,
15510,327,3,95,0,
1552327,3,97,0,327,
15533,98,0,327,3,
155499,0,327,3,100,
15550,327,3,101,0,
1556327,3,102,0,327,
15573,103,0,327,3,
1558104,0,327,3,105,
15590,327,3,106,0,
1560327,3,107,0,327,
15613,108,0,327,356,
156211,1,380,0,357,
15634,24,65,0,84,
15640,84,0,65,0,
156567,0,72,0,95,
15660,69,0,86,0,
156769,0,78,0,84,
15680,1,-1,3,105,
15690,327,3,106,0,
1570327,3,107,0,327,
15713,108,0,327,358,
157211,1,829,0,330,
15731,-1,3,100,0,
1574327,3,101,0,327,
15753,102,0,327,3,
1576103,0,327,3,104,
15770,327,3,105,0,
1578327,3,106,0,327,
15793,107,0,327,3,
1580108,0,327,359,11,
15811,829,0,330,1,
1582-1,3,98,0,327,
15833,99,0,327,3,
1584100,0,327,3,101,
15850,327,3,102,0,
1586327,3,103,0,327,
15873,104,0,327,3,
1588105,0,327,3,106,
15890,327,3,107,0,
1590327,3,108,0,327,
1591360,11,1,829,0,
1592330,1,-1,3,117,
15930,327,3,118,0,
1594327,3,119,0,327,
15953,120,0,327,3,
1596121,0,327,3,122,
15970,327,3,48,0,
1598327,3,49,0,327,
15993,50,0,327,3,
160051,0,327,3,52,
16010,327,3,53,0,
1602327,3,54,0,327,
16033,55,0,327,3,
160456,0,327,3,57,
16050,327,3,65,0,
1606327,3,66,0,327,
16073,67,0,327,3,
160868,0,327,3,69,
16090,327,3,70,0,
1610327,3,71,0,327,
16113,72,0,327,3,
161273,0,327,3,74,
16130,327,3,75,0,
1614327,3,76,0,327,
16153,77,0,327,3,
161678,0,327,3,79,
16170,327,3,80,0,
1618327,3,81,0,327,
16193,82,0,327,3,
162083,0,327,3,84,
16210,327,3,85,0,
1622327,3,86,0,327,
16233,87,0,327,3,
162488,0,327,3,89,
16250,327,3,90,0,
1626327,3,95,0,361,
162712,1,20626,362,5,
162863,3,109,0,327,
16293,110,0,327,3,
1630111,0,327,3,112,
16310,327,3,113,0,
1632327,3,114,0,363,
163312,1,20659,364,5,
163463,3,109,0,327,
16353,110,0,327,3,
1636111,0,365,12,1,
163720689,366,5,63,3,
1638109,0,327,3,110,
16390,327,3,111,0,
1640327,3,112,0,327,
16413,113,0,327,3,
1642114,0,327,3,115,
16430,327,3,116,0,
1644367,12,1,20724,368,
16455,63,3,109,0,
1646327,3,110,0,327,
16473,111,0,327,3,
1648112,0,327,3,113,
16490,327,3,114,0,
1650327,3,115,0,327,
16513,116,0,327,3,
1652117,0,327,3,118,
16530,327,3,119,0,
1654327,3,120,0,327,
16553,121,0,327,3,
1656122,0,327,3,48,
16570,327,3,49,0,
1658327,3,50,0,327,
16593,51,0,327,3,
166052,0,327,3,53,
16610,327,3,54,0,
1662327,3,55,0,327,
16633,56,0,327,3,
166457,0,327,3,65,
16650,327,3,66,0,
1666327,3,67,0,327,
16673,68,0,327,3,
166869,0,327,3,70,
16690,327,3,71,0,
1670327,3,72,0,327,
16713,73,0,327,3,
167274,0,327,3,75,
16730,327,3,76,0,
1674327,3,77,0,327,
16753,78,0,327,3,
167679,0,327,3,80,
16770,327,3,81,0,
1678327,3,82,0,327,
16793,83,0,327,3,
168084,0,327,3,85,
16810,327,3,86,0,
1682327,3,87,0,327,
16833,88,0,327,3,
168489,0,327,3,90,
16850,327,3,95,0,
1686369,12,1,20810,370,
16875,63,3,109,0,
1688327,3,110,0,327,
16893,111,0,327,3,
1690112,0,327,3,113,
16910,327,3,114,0,
1692327,3,115,0,327,
16933,116,0,371,12,
16941,20845,372,5,63,
16953,109,0,327,3,
1696110,0,327,3,111,
16970,327,3,112,0,
1698327,3,113,0,327,
16993,114,0,327,3,
1700115,0,327,3,116,
17010,327,3,117,0,
1702327,3,118,0,327,
17033,119,0,327,3,
1704120,0,327,3,121,
17050,327,3,122,0,
1706327,3,48,0,327,
17073,49,0,327,3,
170850,0,327,3,51,
17090,327,3,52,0,
1710327,3,53,0,327,
17113,54,0,327,3,
171255,0,327,3,56,
17130,327,3,57,0,
1714327,3,65,0,327,
17153,66,0,327,3,
171667,0,327,3,68,
17170,327,3,69,0,
1718327,3,70,0,327,
17193,71,0,327,3,
172072,0,327,3,73,
17210,327,3,74,0,
1722327,3,75,0,327,
17233,76,0,327,3,
172477,0,327,3,78,
17250,327,3,79,0,
1726327,3,80,0,327,
17273,81,0,327,3,
172882,0,327,3,83,
17290,327,3,84,0,
1730327,3,85,0,327,
17313,86,0,327,3,
173287,0,327,3,88,
17330,327,3,89,0,
1734327,3,90,0,327,
17353,95,0,327,3,
173697,0,373,12,1,
173720888,374,5,63,3,
1738109,0,327,3,110,
17390,327,3,111,0,
1740327,3,112,0,327,
17413,113,0,327,3,
1742114,0,375,12,1,
174320921,376,5,63,3,
1744109,0,327,3,110,
17450,327,3,111,0,
1746327,3,112,0,327,
17473,113,0,327,3,
1748114,0,327,3,115,
17490,327,3,116,0,
1750327,3,117,0,327,
17513,118,0,327,3,
1752119,0,327,3,120,
17530,327,3,121,0,
1754327,3,122,0,327,
17553,48,0,327,3,
175649,0,327,3,50,
17570,327,3,51,0,
1758327,3,52,0,327,
17593,53,0,327,3,
176054,0,327,3,55,
17610,327,3,56,0,
1762327,3,57,0,327,
17633,65,0,327,3,
176466,0,327,3,67,
17650,327,3,68,0,
1766327,3,69,0,327,
17673,70,0,327,3,
176871,0,327,3,72,
17690,327,3,73,0,
1770327,3,74,0,327,
17713,75,0,327,3,
177276,0,327,3,77,
17730,327,3,78,0,
1774327,3,79,0,327,
17753,80,0,327,3,
177681,0,327,3,82,
17770,327,3,83,0,
1778327,3,84,0,327,
17793,85,0,327,3,
178086,0,327,3,87,
17810,327,3,88,0,
1782327,3,89,0,327,
17833,90,0,327,3,
178495,0,327,3,97,
17850,327,3,98,0,
1786327,3,99,0,327,
17873,100,0,327,3,
1788101,0,327,3,102,
17890,327,3,103,0,
1790377,12,1,20970,378,
17915,63,3,109,0,
1792327,3,110,0,327,
17933,111,0,327,3,
1794112,0,327,3,113,
17950,327,3,114,0,
1796327,3,115,0,327,
17973,116,0,327,3,
1798117,0,327,3,118,
17990,327,3,119,0,
1800327,3,120,0,327,
18013,121,0,327,3,
1802122,0,327,3,48,
18030,327,3,49,0,
1804327,3,50,0,327,
18053,51,0,327,3,
180652,0,327,3,53,
18070,327,3,54,0,
1808327,3,55,0,327,
18093,56,0,327,3,
181057,0,327,3,65,
18110,327,3,66,0,
1812327,3,67,0,327,
18133,68,0,327,3,
181469,0,327,3,70,
18150,327,3,71,0,
1816327,3,72,0,327,
18173,73,0,327,3,
181874,0,327,3,75,
18190,327,3,76,0,
1820327,3,77,0,327,
18213,78,0,327,3,
182279,0,327,3,80,
18230,327,3,81,0,
1824327,3,82,0,327,
18253,83,0,327,3,
182684,0,327,3,85,
18270,327,3,86,0,
1828327,3,87,0,327,
18293,88,0,327,3,
183089,0,327,3,90,
18310,327,3,95,0,
1832327,3,97,0,327,
18333,98,0,327,3,
183499,0,327,3,100,
18350,327,3,101,0,
1836379,12,1,21017,380,
18375,63,3,109,0,
1838327,3,110,0,327,
18393,111,0,327,3,
1840112,0,327,3,113,
18410,327,3,114,0,
1842327,3,115,0,327,
18433,116,0,381,12,
18441,21052,382,5,63,
18453,109,0,327,3,
1846110,0,327,3,111,
18470,327,3,112,0,
1848327,3,113,0,327,
18493,114,0,327,3,
1850115,0,327,3,116,
18510,327,3,117,0,
1852327,3,118,0,327,
18533,119,0,327,3,
1854120,0,327,3,121,
18550,327,3,122,0,
1856327,3,48,0,327,
18573,49,0,327,3,
185850,0,327,3,51,
18590,327,3,52,0,
1860327,3,53,0,327,
18613,54,0,327,3,
186255,0,327,3,56,
18630,327,3,57,0,
1864327,3,65,0,327,
18653,66,0,327,3,
186667,0,327,3,68,
18670,327,3,69,0,
1868327,3,70,0,327,
18693,71,0,327,3,
187072,0,327,3,73,
18710,327,3,74,0,
1872327,3,75,0,327,
18733,76,0,327,3,
187477,0,327,3,78,
18750,327,3,79,0,
1876327,3,80,0,327,
18773,81,0,327,3,
187882,0,327,3,83,
18790,327,3,84,0,
1880327,3,85,0,327,
18813,86,0,327,3,
188287,0,327,3,88,
18830,327,3,89,0,
1884327,3,90,0,327,
18853,95,0,327,3,
188697,0,327,3,98,
18870,327,3,99,0,
1888327,3,100,0,327,
18893,101,0,327,3,
1890102,0,327,3,103,
18910,327,3,104,0,
1892327,3,105,0,327,
18933,106,0,327,3,
1894107,0,327,3,108,
18950,327,383,11,1,
1896350,0,384,4,38,
189765,0,84,0,95,
18980,82,0,79,0,
189984,0,95,0,84,
19000,65,0,82,0,
190171,0,69,0,84,
19020,95,0,69,0,
190386,0,69,0,78,
19040,84,0,1,-1,
19053,117,0,327,3,
1906118,0,327,3,119,
19070,327,3,120,0,
1908327,3,121,0,327,
19093,122,0,327,3,
191048,0,327,3,49,
19110,327,3,50,0,
1912327,3,51,0,327,
19133,52,0,327,3,
191453,0,327,3,54,
19150,327,3,55,0,
1916327,3,56,0,327,
19173,57,0,327,3,
191865,0,327,3,66,
19190,327,3,67,0,
1920327,3,68,0,327,
19213,69,0,327,3,
192270,0,327,3,71,
19230,327,3,72,0,
1924327,3,73,0,327,
19253,74,0,327,3,
192675,0,327,3,76,
19270,327,3,77,0,
1928327,3,78,0,327,
19293,79,0,327,3,
193080,0,327,3,81,
19310,327,3,82,0,
1932327,3,83,0,327,
19333,84,0,327,3,
193485,0,327,3,86,
19350,327,3,87,0,
1936327,3,88,0,327,
19373,89,0,327,3,
193890,0,327,3,95,
19390,327,3,97,0,
1940327,3,98,0,327,
19413,99,0,327,3,
1942100,0,327,3,101,
19430,327,3,102,0,
1944327,3,103,0,327,
19453,104,0,327,3,
1946105,0,327,3,106,
19470,327,3,107,0,
1948327,3,108,0,327,
1949385,11,1,829,0,
1950330,1,-1,3,102,
19510,327,3,103,0,
1952327,3,104,0,327,
19533,105,0,327,3,
1954106,0,327,3,107,
19550,327,3,108,0,
1956327,386,11,1,829,
19570,330,1,-1,3,
1958104,0,327,3,105,
19590,327,3,106,0,
1960327,3,107,0,327,
19613,108,0,327,387,
196211,1,829,0,330,
19631,-1,3,115,0,
1964327,3,116,0,327,
19653,117,0,327,3,
1966118,0,327,3,119,
19670,327,3,120,0,
1968327,3,121,0,327,
19693,122,0,327,3,
197048,0,327,3,49,
19710,327,3,50,0,
1972327,3,51,0,327,
19733,52,0,327,3,
197453,0,327,3,54,
19750,327,3,55,0,
1976327,3,56,0,327,
19773,57,0,327,3,
197865,0,327,3,66,
19790,327,3,67,0,
1980327,3,68,0,327,
19813,69,0,327,3,
198270,0,327,3,71,
19830,327,3,72,0,
1984327,3,73,0,327,
19853,74,0,327,3,
198675,0,327,3,76,
19870,327,3,77,0,
1988327,3,78,0,327,
19893,79,0,327,3,
199080,0,327,3,81,
19910,327,3,82,0,
1992327,3,83,0,327,
19933,84,0,327,3,
199485,0,327,3,86,
19950,327,3,87,0,
1996327,3,88,0,327,
19973,89,0,327,3,
199890,0,327,3,95,
19990,327,3,97,0,
2000327,3,98,0,327,
20013,99,0,327,3,
2002100,0,327,3,101,
20030,327,3,102,0,
2004327,3,103,0,327,
20053,104,0,327,3,
2006105,0,327,3,106,
20070,327,3,107,0,
2008327,3,108,0,327,
2009388,11,1,829,0,
2010330,1,-1,3,98,
20110,327,3,99,0,
2012327,3,100,0,327,
20133,101,0,327,3,
2014102,0,327,3,103,
20150,327,3,104,0,
2016327,3,105,0,327,
20173,106,0,327,3,
2018107,0,327,3,108,
20190,327,389,11,1,
2020829,0,330,1,-1,
20213,117,0,327,3,
2022118,0,327,3,119,
20230,327,3,120,0,
2024327,3,121,0,327,
20253,122,0,327,3,
202648,0,327,3,49,
20270,327,3,50,0,
2028327,3,51,0,327,
20293,52,0,327,3,
203053,0,327,3,54,
20310,327,3,55,0,
2032327,3,56,0,327,
20333,57,0,327,3,
203465,0,327,3,66,
20350,327,3,67,0,
2036327,3,68,0,327,
20373,69,0,327,3,
203870,0,327,3,71,
20390,327,3,72,0,
2040327,3,73,0,327,
20413,74,0,327,3,
204275,0,327,3,76,
20430,327,3,77,0,
2044327,3,78,0,327,
20453,79,0,327,3,
204680,0,327,3,81,
20470,327,3,82,0,
2048327,3,83,0,327,
20493,84,0,327,3,
205085,0,327,3,86,
20510,327,3,87,0,
2052327,3,88,0,327,
20533,89,0,327,3,
205490,0,327,3,95,
20550,327,3,97,0,
2056327,3,98,0,327,
20573,99,0,327,3,
2058100,0,327,3,101,
20590,327,3,102,0,
2060327,3,103,0,327,
20613,104,0,327,3,
2062105,0,327,3,106,
20630,327,3,107,0,
2064327,3,108,0,327,
2065390,11,1,829,0,
2066330,1,-1,3,97,
20670,327,3,98,0,
2068327,3,99,0,327,
20693,100,0,327,3,
2070101,0,327,3,102,
20710,327,3,103,0,
2072327,3,104,0,327,
20733,105,0,327,3,
2074106,0,327,3,107,
20750,327,3,108,0,
2076327,391,11,1,829,
20770,330,1,-1,3,
2078117,0,327,3,118,
20790,327,3,119,0,
2080327,3,120,0,327,
20813,121,0,327,3,
2082122,0,327,3,48,
20830,327,3,49,0,
2084327,3,50,0,327,
20853,51,0,327,3,
208652,0,327,3,53,
20870,327,3,54,0,
2088327,3,55,0,327,
20893,56,0,327,3,
209057,0,327,3,65,
20910,327,3,66,0,
2092327,3,67,0,327,
20933,68,0,327,3,
209469,0,327,3,70,
20950,327,3,71,0,
2096327,3,72,0,327,
20973,73,0,327,3,
209874,0,327,3,75,
20990,327,3,76,0,
2100327,3,77,0,327,
21013,78,0,327,3,
210279,0,327,3,80,
21030,327,3,81,0,
2104327,3,82,0,327,
21053,83,0,327,3,
210684,0,327,3,85,
21070,327,3,86,0,
2108327,3,87,0,327,
21093,88,0,327,3,
211089,0,327,3,90,
21110,327,3,95,0,
2112327,3,97,0,327,
21133,98,0,327,3,
211499,0,327,3,100,
21150,327,3,101,0,
2116327,3,102,0,327,
21173,103,0,327,3,
2118104,0,327,3,105,
21190,327,3,106,0,
2120327,3,107,0,327,
21213,108,0,327,392,
212211,1,829,0,330,
21231,-1,3,112,0,
2124327,3,113,0,327,
21253,114,0,327,3,
2126115,0,327,3,116,
21270,327,3,117,0,
2128327,3,118,0,327,
21293,119,0,327,3,
2130120,0,327,3,121,
21310,327,3,122,0,
2132327,3,48,0,327,
21333,49,0,327,3,
213450,0,327,3,51,
21350,327,3,52,0,
2136327,3,53,0,327,
21373,54,0,327,3,
213855,0,327,3,56,
21390,327,3,57,0,
2140327,3,65,0,327,
21413,66,0,327,3,
214267,0,327,3,68,
21430,327,3,69,0,
2144327,3,70,0,327,
21453,71,0,327,3,
214672,0,327,3,73,
21470,327,3,74,0,
2148327,3,75,0,327,
21493,76,0,327,3,
215077,0,327,3,78,
21510,327,3,79,0,
2152327,3,80,0,327,
21533,81,0,327,3,
215482,0,327,3,83,
21550,327,3,84,0,
2156327,3,85,0,327,
21573,86,0,327,3,
215887,0,327,3,88,
21590,327,3,89,0,
2160327,3,90,0,327,
21613,95,0,327,3,
216297,0,327,3,98,
21630,327,3,99,0,
2164327,3,100,0,327,
21653,101,0,327,3,
2166102,0,327,3,103,
21670,327,3,104,0,
2168327,3,105,0,327,
21693,106,0,327,3,
2170107,0,327,3,108,
21710,327,393,11,1,
2172829,0,330,1,-1,
21733,115,0,327,3,
2174116,0,394,12,1,
217521861,395,5,63,3,
2176109,0,327,3,110,
21770,327,3,111,0,
2178327,3,112,0,327,
21793,113,0,327,3,
2180114,0,327,3,115,
21810,327,3,116,0,
2182327,3,117,0,327,
21833,118,0,327,3,
2184119,0,327,3,120,
21850,327,3,121,0,
2186327,3,122,0,327,
21873,48,0,327,3,
218849,0,327,3,50,
21890,327,3,51,0,
2190327,3,52,0,327,
21913,53,0,327,3,
219254,0,327,3,55,
21930,327,3,56,0,
2194327,3,57,0,327,
21953,65,0,327,3,
219666,0,327,3,67,
21970,327,3,68,0,
2198327,3,69,0,327,
21993,70,0,327,3,
220071,0,327,3,72,
22010,327,3,73,0,
2202327,3,74,0,327,
22033,75,0,327,3,
220476,0,327,3,77,
22050,327,3,78,0,
2206327,3,79,0,327,
22073,80,0,327,3,
220881,0,327,3,82,
22090,327,3,83,0,
2210327,3,84,0,327,
22113,85,0,327,3,
221286,0,327,3,87,
22130,327,3,88,0,
2214327,3,89,0,327,
22153,90,0,327,3,
221695,0,327,3,97,
22170,396,12,1,21904,
2218397,5,63,3,109,
22190,327,3,110,0,
2220327,3,111,0,327,
22213,112,0,327,3,
2222113,0,327,3,114,
22230,398,12,1,21937,
2224399,5,63,3,109,
22250,327,3,110,0,
2226327,3,111,0,327,
22273,112,0,327,3,
2228113,0,327,3,114,
22290,327,3,115,0,
2230327,3,116,0,327,
22313,117,0,327,3,
2232118,0,327,3,119,
22330,327,3,120,0,
2234327,3,121,0,327,
22353,122,0,327,3,
223648,0,327,3,49,
22370,327,3,50,0,
2238327,3,51,0,327,
22393,52,0,327,3,
224053,0,327,3,54,
22410,327,3,55,0,
2242327,3,56,0,327,
22433,57,0,327,3,
224465,0,327,3,66,
22450,327,3,67,0,
2246327,3,68,0,327,
22473,69,0,327,3,
224870,0,327,3,71,
22490,327,3,72,0,
2250327,3,73,0,327,
22513,74,0,327,3,
225275,0,327,3,76,
22530,327,3,77,0,
2254327,3,78,0,327,
22553,79,0,327,3,
225680,0,327,3,81,
22570,327,3,82,0,
2258327,3,83,0,327,
22593,84,0,327,3,
226085,0,327,3,86,
22610,327,3,87,0,
2262327,3,88,0,327,
22633,89,0,327,3,
226490,0,327,3,95,
22650,327,3,97,0,
2266327,3,98,0,327,
22673,99,0,327,3,
2268100,0,327,3,101,
22690,327,3,102,0,
2270327,3,103,0,400,
227112,1,21986,401,5,
227263,3,109,0,327,
22733,110,0,327,3,
2274111,0,327,3,112,
22750,327,3,113,0,
2276327,3,114,0,327,
22773,115,0,327,3,
2278116,0,327,3,117,
22790,327,3,118,0,
2280327,3,119,0,327,
22813,120,0,327,3,
2282121,0,327,3,122,
22830,327,3,48,0,
2284327,3,49,0,327,
22853,50,0,327,3,
228651,0,327,3,52,
22870,327,3,53,0,
2288327,3,54,0,327,
22893,55,0,327,3,
229056,0,327,3,57,
22910,327,3,65,0,
2292327,3,66,0,327,
22933,67,0,327,3,
229468,0,327,3,69,
22950,327,3,70,0,
2296327,3,71,0,327,
22973,72,0,327,3,
229873,0,327,3,74,
22990,327,3,75,0,
2300327,3,76,0,327,
23013,77,0,327,3,
230278,0,327,3,79,
23030,327,3,80,0,
2304327,3,81,0,327,
23053,82,0,327,3,
230683,0,327,3,84,
23070,327,3,85,0,
2308327,3,86,0,327,
23093,87,0,327,3,
231088,0,327,3,89,
23110,327,3,90,0,
2312327,3,95,0,327,
23133,97,0,327,3,
231498,0,327,3,99,
23150,327,3,100,0,
2316327,3,101,0,402,
231712,1,22033,403,5,
231863,3,109,0,327,
23193,110,0,327,3,
2320111,0,327,3,112,
23210,327,3,113,0,
2322327,3,114,0,327,
23233,115,0,327,3,
2324116,0,404,12,1,
232522068,405,5,63,3,
2326109,0,327,3,110,
23270,327,3,111,0,
2328327,3,112,0,327,
23293,113,0,327,3,
2330114,0,327,3,115,
23310,327,3,116,0,
2332327,3,117,0,327,
23333,118,0,327,3,
2334119,0,327,3,120,
23350,327,3,121,0,
2336327,3,122,0,327,
23373,48,0,327,3,
233849,0,327,3,50,
23390,327,3,51,0,
2340327,3,52,0,327,
23413,53,0,327,3,
234254,0,327,3,55,
23430,327,3,56,0,
2344327,3,57,0,327,
23453,65,0,327,3,
234666,0,327,3,67,
23470,327,3,68,0,
2348327,3,69,0,327,
23493,70,0,327,3,
235071,0,327,3,72,
23510,327,3,73,0,
2352327,3,74,0,327,
23533,75,0,327,3,
235476,0,327,3,77,
23550,327,3,78,0,
2356327,3,79,0,327,
23573,80,0,327,3,
235881,0,327,3,82,
23590,327,3,83,0,
2360327,3,84,0,327,
23613,85,0,327,3,
236286,0,327,3,87,
23630,327,3,88,0,
2364327,3,89,0,327,
23653,90,0,327,3,
236695,0,327,3,97,
23670,327,3,98,0,
2368327,3,99,0,327,
23693,100,0,327,3,
2370101,0,327,3,102,
23710,327,3,103,0,
2372327,3,104,0,327,
23733,105,0,327,3,
2374106,0,327,3,107,
23750,327,3,108,0,
2376327,406,11,1,367,
23770,407,4,30,65,
23780,84,0,95,0,
237984,0,65,0,82,
23800,71,0,69,0,
238184,0,95,0,69,
23820,86,0,69,0,
238378,0,84,0,1,
2384-1,3,117,0,327,
23853,118,0,327,3,
2386119,0,327,3,120,
23870,327,3,121,0,
2388327,3,122,0,327,
23893,48,0,327,3,
239049,0,327,3,50,
23910,327,3,51,0,
2392327,3,52,0,327,
23933,53,0,327,3,
239454,0,327,3,55,
23950,327,3,56,0,
2396327,3,57,0,327,
23973,65,0,327,3,
239866,0,327,3,67,
23990,327,3,68,0,
2400327,3,69,0,327,
24013,70,0,327,3,
240271,0,327,3,72,
24030,327,3,73,0,
2404327,3,74,0,327,
24053,75,0,327,3,
240676,0,327,3,77,
24070,327,3,78,0,
2408327,3,79,0,327,
24093,80,0,327,3,
241081,0,327,3,82,
24110,327,3,83,0,
2412327,3,84,0,327,
24133,85,0,327,3,
241486,0,327,3,87,
24150,327,3,88,0,
2416327,3,89,0,327,
24173,90,0,327,3,
241895,0,327,3,97,
24190,327,3,98,0,
2420327,3,99,0,327,
24213,100,0,327,3,
2422101,0,327,3,102,
24230,327,3,103,0,
2424327,3,104,0,327,
24253,105,0,327,3,
2426106,0,327,3,107,
24270,327,3,108,0,
2428327,408,11,1,829,
24290,330,1,-1,3,
2430102,0,327,3,103,
24310,327,3,104,0,
2432327,3,105,0,327,
24333,106,0,327,3,
2434107,0,327,3,108,
24350,327,409,11,1,
2436829,0,330,1,-1,
24373,104,0,327,3,
2438105,0,327,3,106,
24390,327,3,107,0,
2440327,3,108,0,327,
2441410,11,1,829,0,
2442330,1,-1,3,115,
24430,327,3,116,0,
2444327,3,117,0,327,
24453,118,0,327,3,
2446119,0,327,3,120,
24470,327,3,121,0,
2448327,3,122,0,327,
24493,48,0,327,3,
245049,0,327,3,50,
24510,327,3,51,0,
2452327,3,52,0,327,
24533,53,0,327,3,
245454,0,327,3,55,
24550,327,3,56,0,
2456327,3,57,0,327,
24573,65,0,327,3,
245866,0,327,3,67,
24590,327,3,68,0,
2460327,3,69,0,327,
24613,70,0,327,3,
246271,0,327,3,72,
24630,327,3,73,0,
2464327,3,74,0,327,
24653,75,0,327,3,
246676,0,327,3,77,
24670,327,3,78,0,
2468327,3,79,0,327,
24693,80,0,327,3,
247081,0,327,3,82,
24710,327,3,83,0,
2472327,3,84,0,327,
24733,85,0,327,3,
247486,0,327,3,87,
24750,327,3,88,0,
2476327,3,89,0,327,
24773,90,0,327,3,
247895,0,327,3,97,
24790,327,3,98,0,
2480327,3,99,0,327,
24813,100,0,327,3,
2482101,0,327,3,102,
24830,327,3,103,0,
2484327,3,104,0,327,
24853,105,0,327,3,
2486106,0,327,3,107,
24870,327,3,108,0,
2488327,411,11,1,829,
24890,330,1,-1,3,
249098,0,327,3,99,
24910,327,3,100,0,
2492327,3,101,0,327,
24933,102,0,327,3,
2494103,0,327,3,104,
24950,327,3,105,0,
2496327,3,106,0,327,
24973,107,0,327,3,
2498108,0,327,412,11,
24991,829,0,330,1,
2500-1,3,117,0,327,
25013,118,0,327,3,
2502119,0,327,3,120,
25030,327,3,121,0,
2504327,3,122,0,327,
25053,48,0,327,3,
250649,0,327,3,50,
25070,327,3,51,0,
2508327,3,52,0,327,
25093,53,0,327,3,
251054,0,327,3,55,
25110,327,3,56,0,
2512327,3,57,0,327,
25133,65,0,327,3,
251466,0,327,3,67,
25150,327,3,68,0,
2516327,3,69,0,327,
25173,70,0,327,3,
251871,0,327,3,72,
25190,327,3,73,0,
2520327,3,74,0,327,
25213,75,0,327,3,
252276,0,327,3,77,
25230,327,3,78,0,
2524327,3,79,0,327,
25253,80,0,327,3,
252681,0,327,3,82,
25270,327,3,83,0,
2528327,3,84,0,327,
25293,85,0,327,3,
253086,0,327,3,87,
25310,327,3,88,0,
2532327,3,89,0,327,
25333,90,0,327,3,
253495,0,327,3,97,
25350,327,3,98,0,
2536327,3,99,0,327,
25373,100,0,327,3,
2538101,0,327,3,102,
25390,327,3,103,0,
2540327,3,104,0,327,
25413,105,0,327,3,
2542106,0,327,3,107,
25430,327,3,108,0,
2544327,413,11,1,829,
25450,330,1,-1,3,
254697,0,327,3,98,
25470,327,3,99,0,
2548327,3,100,0,327,
25493,101,0,327,3,
2550102,0,327,3,103,
25510,327,3,104,0,
2552327,3,105,0,327,
25533,106,0,327,3,
2554107,0,327,3,108,
25550,327,414,11,1,
2556829,0,330,1,-1,
25573,117,0,327,3,
2558118,0,327,3,119,
25590,327,3,120,0,
2560327,3,121,0,327,
25613,122,0,327,3,
256248,0,327,3,49,
25630,327,3,50,0,
2564327,3,51,0,327,
25653,52,0,327,3,
256653,0,327,3,54,
25670,327,3,55,0,
2568327,3,56,0,327,
25693,57,0,327,3,
257065,0,327,3,66,
25710,327,3,67,0,
2572327,3,68,0,327,
25733,69,0,327,3,
257470,0,327,3,71,
25750,327,3,72,0,
2576327,3,73,0,327,
25773,74,0,327,3,
257875,0,327,3,76,
25790,327,3,77,0,
2580327,3,78,0,327,
25813,79,0,327,3,
258280,0,327,3,81,
25830,327,3,82,0,
2584327,3,83,0,327,
25853,84,0,327,3,
258685,0,327,3,86,
25870,327,3,87,0,
2588327,3,88,0,327,
25893,89,0,327,3,
259090,0,327,3,95,
25910,327,3,97,0,
2592327,3,98,0,327,
25933,99,0,327,3,
2594100,0,327,3,101,
25950,327,3,102,0,
2596327,3,103,0,327,
25973,104,0,327,3,
2598105,0,327,3,106,
25990,327,3,107,0,
2600327,3,108,0,327,
2601415,11,1,829,0,
2602330,1,-1,3,98,
26030,325,3,99,0,
2604416,12,1,22787,417,
26055,63,3,109,0,
2606327,3,110,0,327,
26073,111,0,418,12,
26081,22817,419,5,63,
26093,109,0,327,3,
2610110,0,420,12,1,
261122846,421,5,63,3,
2612109,0,327,3,110,
26130,327,3,111,0,
2614327,3,112,0,327,
26153,113,0,327,3,
2616114,0,327,3,115,
26170,327,3,116,0,
2618422,12,1,22881,423,
26195,63,3,109,0,
2620327,3,110,0,327,
26213,111,0,327,3,
2622112,0,327,3,113,
26230,327,3,114,0,
2624424,12,1,22914,425,
26255,63,3,109,0,
2626327,3,110,0,327,
26273,111,0,426,12,
26281,22944,427,5,63,
26293,109,0,327,3,
2630110,0,327,3,111,
26310,327,3,112,0,
2632327,3,113,0,327,
26333,114,0,327,3,
2634115,0,327,3,116,
26350,327,3,117,0,
2636327,3,118,0,327,
26373,119,0,327,3,
2638120,0,327,3,121,
26390,327,3,122,0,
2640327,3,48,0,327,
26413,49,0,327,3,
264250,0,327,3,51,
26430,327,3,52,0,
2644327,3,53,0,327,
26453,54,0,327,3,
264655,0,327,3,56,
26470,327,3,57,0,
2648327,3,65,0,327,
26493,66,0,327,3,
265067,0,327,3,68,
26510,327,3,69,0,
2652327,3,70,0,327,
26533,71,0,327,3,
265472,0,327,3,73,
26550,327,3,74,0,
2656327,3,75,0,327,
26573,76,0,327,3,
265877,0,327,3,78,
26590,327,3,79,0,
2660327,3,80,0,327,
26613,81,0,327,3,
266282,0,327,3,83,
26630,327,3,84,0,
2664327,3,85,0,327,
26653,86,0,327,3,
266687,0,327,3,88,
26670,327,3,89,0,
2668327,3,90,0,327,
26693,95,0,327,3,
267097,0,327,3,98,
26710,327,3,99,0,
2672327,3,100,0,327,
26733,101,0,327,3,
2674102,0,327,3,103,
26750,327,3,104,0,
2676327,3,105,0,327,
26773,106,0,327,3,
2678107,0,327,3,108,
26790,428,12,1,22998,
2680429,5,63,3,109,
26810,327,3,110,0,
2682327,3,111,0,327,
26833,112,0,327,3,
2684113,0,327,3,114,
26850,327,3,115,0,
2686327,3,116,0,327,
26873,117,0,327,3,
2688118,0,327,3,119,
26890,327,3,120,0,
2690327,3,121,0,327,
26913,122,0,327,3,
269248,0,327,3,49,
26930,327,3,50,0,
2694327,3,51,0,327,
26953,52,0,327,3,
269653,0,327,3,54,
26970,327,3,55,0,
2698327,3,56,0,327,
26993,57,0,327,3,
270065,0,327,3,66,
27010,327,3,67,0,
2702327,3,68,0,327,
27033,69,0,327,3,
270470,0,327,3,71,
27050,327,3,72,0,
2706327,3,73,0,327,
27073,74,0,327,3,
270875,0,327,3,76,
27090,327,3,77,0,
2710327,3,78,0,327,
27113,79,0,327,3,
271280,0,327,3,81,
27130,327,3,82,0,
2714327,3,83,0,327,
27153,84,0,327,3,
271685,0,327,3,86,
27170,327,3,87,0,
2718327,3,88,0,327,
27193,89,0,327,3,
272090,0,327,3,95,
27210,327,3,97,0,
2722327,3,98,0,327,
27233,99,0,327,3,
2724100,0,327,3,101,
27250,327,3,102,0,
2726327,3,103,0,327,
27273,104,0,327,3,
2728105,0,327,3,106,
27290,327,3,107,0,
2730327,3,108,0,327,
2731430,11,1,450,0,
2732431,4,26,67,0,
273379,0,78,0,84,
27340,82,0,79,0,
273576,0,95,0,69,
27360,86,0,69,0,
273778,0,84,0,1,
2738-1,432,11,1,829,
27390,330,1,-1,3,
2740112,0,327,3,113,
27410,327,3,114,0,
2742327,3,115,0,327,
27433,116,0,327,3,
2744117,0,327,3,118,
27450,327,3,119,0,
2746327,3,120,0,327,
27473,121,0,327,3,
2748122,0,327,3,48,
27490,327,3,49,0,
2750327,3,50,0,327,
27513,51,0,327,3,
275252,0,327,3,53,
27530,327,3,54,0,
2754327,3,55,0,327,
27553,56,0,327,3,
275657,0,327,3,65,
27570,327,3,66,0,
2758327,3,67,0,327,
27593,68,0,327,3,
276069,0,327,3,70,
27610,327,3,71,0,
2762327,3,72,0,327,
27633,73,0,327,3,
276474,0,327,3,75,
27650,327,3,76,0,
2766327,3,77,0,327,
27673,78,0,327,3,
276879,0,327,3,80,
27690,327,3,81,0,
2770327,3,82,0,327,
27713,83,0,327,3,
277284,0,327,3,85,
27730,327,3,86,0,
2774327,3,87,0,327,
27753,88,0,327,3,
277689,0,327,3,90,
27770,327,3,95,0,
2778327,3,97,0,327,
27793,98,0,327,3,
278099,0,327,3,100,
27810,327,3,101,0,
2782327,3,102,0,327,
27833,103,0,327,3,
2784104,0,327,3,105,
27850,327,3,106,0,
2786327,3,107,0,327,
27873,108,0,327,433,
278811,1,829,0,330,
27891,-1,3,115,0,
2790327,3,116,0,327,
27913,117,0,327,3,
2792118,0,327,3,119,
27930,327,3,120,0,
2794327,3,121,0,327,
27953,122,0,327,3,
279648,0,327,3,49,
27970,327,3,50,0,
2798327,3,51,0,327,
27993,52,0,327,3,
280053,0,327,3,54,
28010,327,3,55,0,
2802327,3,56,0,327,
28033,57,0,327,3,
280465,0,327,3,66,
28050,327,3,67,0,
2806327,3,68,0,327,
28073,69,0,327,3,
280870,0,327,3,71,
28090,327,3,72,0,
2810327,3,73,0,327,
28113,74,0,327,3,
281275,0,327,3,76,
28130,327,3,77,0,
2814327,3,78,0,327,
28153,79,0,327,3,
281680,0,327,3,81,
28170,327,3,82,0,
2818327,3,83,0,327,
28193,84,0,327,3,
282085,0,327,3,86,
28210,327,3,87,0,
2822327,3,88,0,327,
28233,89,0,327,3,
282490,0,327,3,95,
28250,327,3,97,0,
2826327,3,98,0,327,
28273,99,0,327,3,
2828100,0,327,3,101,
28290,327,3,102,0,
2830327,3,103,0,327,
28313,104,0,327,3,
2832105,0,327,3,106,
28330,327,3,107,0,
2834327,3,108,0,327,
2835434,11,1,829,0,
2836330,1,-1,3,117,
28370,327,3,118,0,
2838327,3,119,0,327,
28393,120,0,327,3,
2840121,0,327,3,122,
28410,327,3,48,0,
2842327,3,49,0,327,
28433,50,0,327,3,
284451,0,327,3,52,
28450,327,3,53,0,
2846327,3,54,0,327,
28473,55,0,327,3,
284856,0,327,3,57,
28490,327,3,65,0,
2850327,3,66,0,327,
28513,67,0,327,3,
285268,0,327,3,69,
28530,327,3,70,0,
2854327,3,71,0,327,
28553,72,0,327,3,
285673,0,327,3,74,
28570,327,3,75,0,
2858327,3,76,0,327,
28593,77,0,327,3,
286078,0,327,3,79,
28610,327,3,80,0,
2862327,3,81,0,327,
28633,82,0,327,3,
286483,0,327,3,84,
28650,327,3,85,0,
2866327,3,86,0,327,
28673,87,0,327,3,
286888,0,327,3,89,
28690,327,3,90,0,
2870327,3,95,0,327,
28713,97,0,327,3,
287298,0,327,3,99,
28730,327,3,100,0,
2874327,3,101,0,327,
28753,102,0,327,3,
2876103,0,327,3,104,
28770,327,3,105,0,
2878327,3,106,0,327,
28793,107,0,327,3,
2880108,0,327,435,11,
28811,829,0,330,1,
2882-1,3,111,0,327,
28833,112,0,327,3,
2884113,0,327,3,114,
28850,327,3,115,0,
2886327,3,116,0,327,
28873,117,0,327,3,
2888118,0,327,3,119,
28890,327,3,120,0,
2890327,3,121,0,327,
28913,122,0,327,3,
289248,0,327,3,49,
28930,327,3,50,0,
2894327,3,51,0,327,
28953,52,0,327,3,
289653,0,327,3,54,
28970,327,3,55,0,
2898327,3,56,0,327,
28993,57,0,327,3,
290065,0,327,3,66,
29010,327,3,67,0,
2902327,3,68,0,327,
29033,69,0,327,3,
290470,0,327,3,71,
29050,327,3,72,0,
2906327,3,73,0,327,
29073,74,0,327,3,
290875,0,327,3,76,
29090,327,3,77,0,
2910327,3,78,0,327,
29113,79,0,327,3,
291280,0,327,3,81,
29130,327,3,82,0,
2914327,3,83,0,327,
29153,84,0,327,3,
291685,0,327,3,86,
29170,327,3,87,0,
2918327,3,88,0,327,
29193,89,0,327,3,
292090,0,327,3,95,
29210,327,3,97,0,
2922327,3,98,0,327,
29233,99,0,327,3,
2924100,0,327,3,101,
29250,327,3,102,0,
2926327,3,103,0,327,
29273,104,0,327,3,
2928105,0,327,3,106,
29290,327,3,107,0,
2930327,3,108,0,436,
293112,1,23471,437,5,
293263,3,109,0,327,
29333,110,0,327,3,
2934111,0,327,3,112,
29350,327,3,113,0,
2936327,3,114,0,327,
29373,115,0,327,3,
2938116,0,327,3,117,
29390,327,3,118,0,
2940327,3,119,0,327,
29413,120,0,327,3,
2942121,0,327,3,122,
29430,327,3,48,0,
2944327,3,49,0,327,
29453,50,0,327,3,
294651,0,327,3,52,
29470,327,3,53,0,
2948327,3,54,0,327,
29493,55,0,327,3,
295056,0,327,3,57,
29510,327,3,65,0,
2952327,3,66,0,327,
29533,67,0,327,3,
295468,0,327,3,69,
29550,327,3,70,0,
2956327,3,71,0,327,
29573,72,0,327,3,
295873,0,327,3,74,
29590,327,3,75,0,
2960327,3,76,0,327,
29613,77,0,327,3,
296278,0,327,3,79,
29630,327,3,80,0,
2964327,3,81,0,327,
29653,82,0,327,3,
296683,0,327,3,84,
29670,327,3,85,0,
2968327,3,86,0,327,
29693,87,0,327,3,
297088,0,327,3,89,
29710,327,3,90,0,
2972327,3,95,0,327,
29733,97,0,327,3,
297498,0,327,3,99,
29750,327,3,100,0,
2976327,3,101,0,327,
29773,102,0,327,3,
2978103,0,327,3,104,
29790,327,3,105,0,
2980327,3,106,0,327,
29813,107,0,327,3,
2982108,0,438,12,1,
298323525,439,5,63,3,
2984109,0,327,3,110,
29850,327,3,111,0,
2986327,3,112,0,327,
29873,113,0,327,3,
2988114,0,327,3,115,
29890,327,3,116,0,
2990327,3,117,0,327,
29913,118,0,327,3,
2992119,0,327,3,120,
29930,327,3,121,0,
2994327,3,122,0,327,
29953,48,0,327,3,
299649,0,327,3,50,
29970,327,3,51,0,
2998327,3,52,0,327,
29993,53,0,327,3,
300054,0,327,3,55,
30010,327,3,56,0,
3002327,3,57,0,327,
30033,65,0,327,3,
300466,0,327,3,67,
30050,327,3,68,0,
3006327,3,69,0,327,
30073,70,0,327,3,
300871,0,327,3,72,
30090,327,3,73,0,
3010327,3,74,0,327,
30113,75,0,327,3,
301276,0,327,3,77,
30130,327,3,78,0,
3014327,3,79,0,327,
30153,80,0,327,3,
301681,0,327,3,82,
30170,327,3,83,0,
3018327,3,84,0,327,
30193,85,0,327,3,
302086,0,327,3,87,
30210,327,3,88,0,
3022327,3,89,0,327,
30233,90,0,327,3,
302495,0,327,3,97,
30250,327,3,98,0,
3026327,3,99,0,327,
30273,100,0,327,3,
3028101,0,327,3,102,
30290,327,3,103,0,
3030327,3,104,0,327,
30313,105,0,440,12,
30321,23576,441,5,63,
30333,109,0,327,3,
3034110,0,327,3,111,
30350,327,3,112,0,
3036327,3,113,0,327,
30373,114,0,327,3,
3038115,0,442,12,1,
303923610,443,5,63,3,
3040109,0,327,3,110,
30410,327,3,111,0,
3042327,3,112,0,327,
30433,113,0,327,3,
3044114,0,327,3,115,
30450,327,3,116,0,
3046327,3,117,0,327,
30473,118,0,327,3,
3048119,0,327,3,120,
30490,327,3,121,0,
3050327,3,122,0,327,
30513,48,0,327,3,
305249,0,327,3,50,
30530,327,3,51,0,
3054327,3,52,0,327,
30553,53,0,327,3,
305654,0,327,3,55,
30570,327,3,56,0,
3058327,3,57,0,327,
30593,65,0,327,3,
306066,0,327,3,67,
30610,327,3,68,0,
3062327,3,69,0,327,
30633,70,0,327,3,
306471,0,327,3,72,
30650,327,3,73,0,
3066327,3,74,0,327,
30673,75,0,327,3,
306876,0,327,3,77,
30690,327,3,78,0,
3070327,3,79,0,327,
30713,80,0,327,3,
307281,0,327,3,82,
30730,327,3,83,0,
3074327,3,84,0,327,
30753,85,0,327,3,
307686,0,327,3,87,
30770,327,3,88,0,
3078327,3,89,0,327,
30793,90,0,327,3,
308095,0,327,3,97,
30810,327,3,98,0,
3082327,3,99,0,327,
30833,100,0,327,3,
3084101,0,327,3,102,
30850,327,3,103,0,
3086327,3,104,0,327,
30873,105,0,444,12,
30881,23661,445,5,63,
30893,109,0,327,3,
3090110,0,327,3,111,
30910,446,12,1,23691,
3092447,5,63,3,109,
30930,327,3,110,0,
3094448,12,1,23720,449,
30955,63,3,109,0,
3096327,3,110,0,327,
30973,111,0,327,3,
3098112,0,327,3,113,
30990,327,3,114,0,
3100327,3,115,0,327,
31013,116,0,327,3,
3102117,0,327,3,118,
31030,327,3,119,0,
3104327,3,120,0,327,
31053,121,0,327,3,
3106122,0,327,3,48,
31070,327,3,49,0,
3108327,3,50,0,327,
31093,51,0,327,3,
311052,0,327,3,53,
31110,327,3,54,0,
3112327,3,55,0,327,
31133,56,0,327,3,
311457,0,327,3,65,
31150,327,3,66,0,
3116327,3,67,0,327,
31173,68,0,327,3,
311869,0,327,3,70,
31190,327,3,71,0,
3120327,3,72,0,327,
31213,73,0,327,3,
312274,0,327,3,75,
31230,327,3,76,0,
3124327,3,77,0,327,
31253,78,0,327,3,
312679,0,327,3,80,
31270,327,3,81,0,
3128327,3,82,0,327,
31293,83,0,327,3,
313084,0,327,3,85,
31310,327,3,86,0,
3132327,3,87,0,327,
31333,88,0,327,3,
313489,0,327,3,90,
31350,327,3,95,0,
3136450,12,1,23806,451,
31375,63,3,109,0,
3138327,3,110,0,327,
31393,111,0,327,3,
3140112,0,327,3,113,
31410,327,3,114,0,
3142327,3,115,0,452,
314312,1,23840,453,5,
314463,3,109,0,327,
31453,110,0,327,3,
3146111,0,327,3,112,
31470,327,3,113,0,
3148327,3,114,0,327,
31493,115,0,327,3,
3150116,0,454,12,1,
315123875,455,5,63,3,
3152109,0,327,3,110,
31530,327,3,111,0,
3154327,3,112,0,327,
31553,113,0,327,3,
3156114,0,327,3,115,
31570,327,3,116,0,
3158327,3,117,0,327,
31593,118,0,327,3,
3160119,0,327,3,120,
31610,327,3,121,0,
3162327,3,122,0,327,
31633,48,0,327,3,
316449,0,327,3,50,
31650,327,3,51,0,
3166327,3,52,0,327,
31673,53,0,327,3,
316854,0,327,3,55,
31690,327,3,56,0,
3170327,3,57,0,327,
31713,65,0,327,3,
317266,0,327,3,67,
31730,327,3,68,0,
3174327,3,69,0,327,
31753,70,0,327,3,
317671,0,327,3,72,
31770,327,3,73,0,
3178327,3,74,0,327,
31793,75,0,327,3,
318076,0,327,3,77,
31810,327,3,78,0,
3182327,3,79,0,327,
31833,80,0,327,3,
318481,0,327,3,82,
31850,327,3,83,0,
3186327,3,84,0,327,
31873,85,0,327,3,
318886,0,327,3,87,
31890,327,3,88,0,
3190327,3,89,0,327,
31913,90,0,327,3,
319295,0,327,3,97,
31930,456,12,1,23918,
3194457,5,63,3,109,
31950,327,3,110,0,
3196327,3,111,0,327,
31973,112,0,327,3,
3198113,0,327,3,114,
31990,458,12,1,23951,
3200459,5,63,3,109,
32010,327,3,110,0,
3202327,3,111,0,327,
32033,112,0,327,3,
3204113,0,327,3,114,
32050,327,3,115,0,
3206327,3,116,0,460,
320712,1,23986,461,5,
320863,3,109,0,327,
32093,110,0,327,3,
3210111,0,327,3,112,
32110,327,3,113,0,
3212327,3,114,0,327,
32133,115,0,327,3,
3214116,0,327,3,117,
32150,327,3,118,0,
3216327,3,119,0,327,
32173,120,0,327,3,
3218121,0,327,3,122,
32190,327,3,48,0,
3220327,3,49,0,327,
32213,50,0,327,3,
322251,0,327,3,52,
32230,327,3,53,0,
3224327,3,54,0,327,
32253,55,0,327,3,
322656,0,327,3,57,
32270,327,3,65,0,
3228327,3,66,0,327,
32293,67,0,327,3,
323068,0,327,3,69,
32310,327,3,70,0,
3232327,3,71,0,327,
32333,72,0,327,3,
323473,0,327,3,74,
32350,327,3,75,0,
3236327,3,76,0,327,
32373,77,0,327,3,
323878,0,327,3,79,
32390,327,3,80,0,
3240327,3,81,0,327,
32413,82,0,327,3,
324283,0,327,3,84,
32430,327,3,85,0,
3244327,3,86,0,327,
32453,87,0,327,3,
324688,0,327,3,89,
32470,327,3,90,0,
3248327,3,95,0,327,
32493,97,0,327,3,
325098,0,327,3,99,
32510,327,3,100,0,
3252327,3,101,0,327,
32533,102,0,327,3,
3254103,0,327,3,104,
32550,327,3,105,0,
3256327,3,106,0,327,
32573,107,0,327,3,
3258108,0,327,462,11,
32591,431,0,463,4,
326042,67,0,79,0,
326176,0,76,0,73,
32620,83,0,73,0,
326379,0,78,0,95,
32640,83,0,84,0,
326565,0,82,0,84,
32660,95,0,69,0,
326786,0,69,0,78,
32680,84,0,1,-1,
32693,117,0,327,3,
3270118,0,327,3,119,
32710,327,3,120,0,
3272327,3,121,0,327,
32733,122,0,327,3,
327448,0,327,3,49,
32750,327,3,50,0,
3276327,3,51,0,327,
32773,52,0,327,3,
327853,0,327,3,54,
32790,327,3,55,0,
3280327,3,56,0,327,
32813,57,0,327,3,
328265,0,327,3,66,
32830,327,3,67,0,
3284327,3,68,0,327,
32853,69,0,327,3,
328670,0,327,3,71,
32870,327,3,72,0,
3288327,3,73,0,327,
32893,74,0,327,3,
329075,0,327,3,76,
32910,327,3,77,0,
3292327,3,78,0,327,
32933,79,0,327,3,
329480,0,327,3,81,
32950,327,3,82,0,
3296327,3,83,0,327,
32973,84,0,327,3,
329885,0,327,3,86,
32990,327,3,87,0,
3300327,3,88,0,327,
33013,89,0,327,3,
330290,0,327,3,95,
33030,327,3,97,0,
3304327,3,98,0,327,
33053,99,0,327,3,
3306100,0,327,3,101,
33070,327,3,102,0,
3308327,3,103,0,327,
33093,104,0,327,3,
3310105,0,327,3,106,
33110,327,3,107,0,
3312327,3,108,0,327,
3313464,11,1,829,0,
3314330,1,-1,3,115,
33150,327,3,116,0,
3316327,3,117,0,327,
33173,118,0,327,3,
3318119,0,327,3,120,
33190,327,3,121,0,
3320327,3,122,0,327,
33213,48,0,327,3,
332249,0,327,3,50,
33230,327,3,51,0,
3324327,3,52,0,327,
33253,53,0,327,3,
332654,0,327,3,55,
33270,327,3,56,0,
3328327,3,57,0,327,
33293,65,0,327,3,
333066,0,327,3,67,
33310,327,3,68,0,
3332327,3,69,0,327,
33333,70,0,327,3,
333471,0,327,3,72,
33350,327,3,73,0,
3336327,3,74,0,327,
33373,75,0,327,3,
333876,0,327,3,77,
33390,327,3,78,0,
3340327,3,79,0,327,
33413,80,0,327,3,
334281,0,327,3,82,
33430,327,3,83,0,
3344327,3,84,0,327,
33453,85,0,327,3,
334686,0,327,3,87,
33470,327,3,88,0,
3348327,3,89,0,327,
33493,90,0,327,3,
335095,0,327,3,97,
33510,327,3,98,0,
3352327,3,99,0,327,
33533,100,0,327,3,
3354101,0,327,3,102,
33550,327,3,103,0,
3356327,3,104,0,327,
33573,105,0,327,3,
3358106,0,327,3,107,
33590,327,3,108,0,
3360327,465,11,1,829,
33610,330,1,-1,3,
336298,0,327,3,99,
33630,327,3,100,0,
3364327,3,101,0,327,
33653,102,0,327,3,
3366103,0,327,3,104,
33670,327,3,105,0,
3368327,3,106,0,327,
33693,107,0,327,3,
3370108,0,327,466,11,
33711,829,0,330,1,
3372-1,3,117,0,327,
33733,118,0,327,3,
3374119,0,327,3,120,
33750,327,3,121,0,
3376327,3,122,0,327,
33773,48,0,327,3,
337849,0,327,3,50,
33790,327,3,51,0,
3380327,3,52,0,327,
33813,53,0,327,3,
338254,0,327,3,55,
33830,327,3,56,0,
3384327,3,57,0,327,
33853,65,0,327,3,
338666,0,327,3,67,
33870,327,3,68,0,
3388327,3,69,0,327,
33893,70,0,327,3,
339071,0,327,3,72,
33910,327,3,73,0,
3392327,3,74,0,327,
33933,75,0,327,3,
339476,0,327,3,77,
33950,327,3,78,0,
3396327,3,79,0,327,
33973,80,0,327,3,
339881,0,327,3,82,
33990,327,3,83,0,
3400327,3,84,0,327,
34013,85,0,327,3,
340286,0,327,3,87,
34030,327,3,88,0,
3404327,3,89,0,327,
34053,90,0,327,3,
340695,0,327,3,97,
34070,327,3,98,0,
3408327,3,99,0,327,
34093,100,0,327,3,
3410101,0,327,3,102,
34110,327,3,103,0,
3412327,3,104,0,327,
34133,105,0,327,3,
3414106,0,327,3,107,
34150,327,3,108,0,
3416327,467,11,1,829,
34170,330,1,-1,3,
3418116,0,327,3,117,
34190,327,3,118,0,
3420327,3,119,0,327,
34213,120,0,327,3,
3422121,0,327,3,122,
34230,327,3,48,0,
3424327,3,49,0,327,
34253,50,0,327,3,
342651,0,327,3,52,
34270,327,3,53,0,
3428327,3,54,0,327,
34293,55,0,327,3,
343056,0,327,3,57,
34310,327,3,65,0,
3432327,3,66,0,327,
34333,67,0,327,3,
343468,0,327,3,69,
34350,327,3,70,0,
3436327,3,71,0,327,
34373,72,0,327,3,
343873,0,327,3,74,
34390,327,3,75,0,
3440327,3,76,0,327,
34413,77,0,327,3,
344278,0,327,3,79,
34430,327,3,80,0,
3444327,3,81,0,327,
34453,82,0,327,3,
344683,0,327,3,84,
34470,327,3,85,0,
3448327,3,86,0,327,
34493,87,0,327,3,
345088,0,327,3,89,
34510,327,3,90,0,
3452327,3,95,0,327,
34533,97,0,327,3,
345498,0,327,3,99,
34550,327,3,100,0,
3456327,3,101,0,468,
345712,1,24453,469,5,
345863,3,109,0,327,
34593,110,0,470,12,
34601,24482,471,5,63,
34613,109,0,327,3,
3462110,0,327,3,111,
34630,327,3,112,0,
3464327,3,113,0,327,
34653,114,0,327,3,
3466115,0,327,3,116,
34670,327,3,117,0,
3468327,3,118,0,327,
34693,119,0,327,3,
3470120,0,327,3,121,
34710,327,3,122,0,
3472327,3,48,0,327,
34733,49,0,327,3,
347450,0,327,3,51,
34750,327,3,52,0,
3476327,3,53,0,327,
34773,54,0,327,3,
347855,0,327,3,56,
34790,327,3,57,0,
3480327,3,65,0,327,
34813,66,0,327,3,
348267,0,327,3,68,
34830,327,3,69,0,
3484327,3,70,0,327,
34853,71,0,327,3,
348672,0,327,3,73,
34870,327,3,74,0,
3488327,3,75,0,327,
34893,76,0,327,3,
349077,0,327,3,78,
34910,327,3,79,0,
3492327,3,80,0,327,
34933,81,0,327,3,
349482,0,327,3,83,
34950,327,3,84,0,
3496327,3,85,0,327,
34973,86,0,327,3,
349887,0,327,3,88,
34990,327,3,89,0,
3500327,3,90,0,327,
35013,95,0,327,3,
350297,0,327,3,98,
35030,327,3,99,0,
3504327,3,100,0,472,
350512,1,24528,473,5,
350663,3,109,0,327,
35073,110,0,327,3,
3508111,0,327,3,112,
35090,327,3,113,0,
3510327,3,114,0,327,
35113,115,0,327,3,
3512116,0,327,3,117,
35130,327,3,118,0,
3514327,3,119,0,327,
35153,120,0,327,3,
3516121,0,327,3,122,
35170,327,3,48,0,
3518327,3,49,0,327,
35193,50,0,327,3,
352051,0,327,3,52,
35210,327,3,53,0,
3522327,3,54,0,327,
35233,55,0,327,3,
352456,0,327,3,57,
35250,327,3,65,0,
3526327,3,66,0,327,
35273,67,0,327,3,
352868,0,327,3,69,
35290,327,3,70,0,
3530327,3,71,0,327,
35313,72,0,327,3,
353273,0,327,3,74,
35330,327,3,75,0,
3534327,3,76,0,327,
35353,77,0,327,3,
353678,0,327,3,79,
35370,327,3,80,0,
3538327,3,81,0,327,
35393,82,0,327,3,
354083,0,327,3,84,
35410,327,3,85,0,
3542327,3,86,0,327,
35433,87,0,327,3,
354488,0,327,3,89,
35450,327,3,90,0,
3546327,3,95,0,327,
35473,97,0,327,3,
354898,0,327,3,99,
35490,327,3,100,0,
3550327,3,101,0,327,
35513,102,0,327,3,
3552103,0,327,3,104,
35530,327,3,105,0,
3554327,3,106,0,327,
35553,107,0,327,3,
3556108,0,327,474,11,
35571,414,0,475,4,
355838,67,0,79,0,
355976,0,76,0,73,
35600,83,0,73,0,
356179,0,78,0,95,
35620,69,0,78,0,
356368,0,95,0,69,
35640,86,0,69,0,
356578,0,84,0,1,
3566-1,3,101,0,327,
35673,102,0,327,3,
3568103,0,327,3,104,
35690,327,3,105,0,
3570327,3,106,0,327,
35713,107,0,327,3,
3572108,0,327,476,11,
35731,829,0,330,1,
3574-1,3,111,0,327,
35753,112,0,327,3,
3576113,0,327,3,114,
35770,327,3,115,0,
3578327,3,116,0,327,
35793,117,0,327,3,
3580118,0,327,3,119,
35810,327,3,120,0,
3582327,3,121,0,327,
35833,122,0,327,3,
358448,0,327,3,49,
35850,327,3,50,0,
3586327,3,51,0,327,
35873,52,0,327,3,
358853,0,327,3,54,
35890,327,3,55,0,
3590327,3,56,0,327,
35913,57,0,327,3,
359265,0,327,3,66,
35930,327,3,67,0,
3594327,3,68,0,327,
35953,69,0,327,3,
359670,0,327,3,71,
35970,327,3,72,0,
3598327,3,73,0,327,
35993,74,0,327,3,
360075,0,327,3,76,
36010,327,3,77,0,
3602327,3,78,0,327,
36033,79,0,327,3,
360480,0,327,3,81,
36050,327,3,82,0,
3606327,3,83,0,327,
36073,84,0,327,3,
360885,0,327,3,86,
36090,327,3,87,0,
3610327,3,88,0,327,
36113,89,0,327,3,
361290,0,327,3,95,
36130,327,3,97,0,
3614327,3,98,0,327,
36153,99,0,327,3,
3616100,0,327,3,101,
36170,327,3,102,0,
3618327,3,103,0,327,
36193,104,0,327,3,
3620105,0,327,3,106,
36210,327,3,107,0,
3622327,3,108,0,327,
3623477,11,1,829,0,
3624330,1,-1,3,102,
36250,327,3,103,0,
3626327,3,104,0,327,
36273,105,0,327,3,
3628106,0,327,3,107,
36290,327,3,108,0,
3630327,478,11,1,829,
36310,330,1,-1,3,
363297,0,327,3,98,
36330,327,3,99,0,
3634327,3,100,0,327,
36353,101,0,327,3,
3636102,0,327,3,103,
36370,327,3,104,0,
3638327,3,105,0,327,
36393,106,0,327,3,
3640107,0,327,3,108,
36410,327,479,11,1,
3642401,0,480,4,30,
364367,0,79,0,76,
36440,76,0,73,0,
364583,0,73,0,79,
36460,78,0,95,0,
364769,0,86,0,69,
36480,78,0,84,0,
36491,-1,3,111,0,
3650327,3,112,0,327,
36513,113,0,327,3,
3652114,0,327,3,115,
36530,327,3,116,0,
3654327,3,117,0,327,
36553,118,0,327,3,
3656119,0,327,3,120,
36570,327,3,121,0,
3658327,3,122,0,327,
36593,48,0,327,3,
366049,0,327,3,50,
36610,327,3,51,0,
3662327,3,52,0,327,
36633,53,0,327,3,
366454,0,327,3,55,
36650,327,3,56,0,
3666327,3,57,0,327,
36673,65,0,327,3,
366866,0,327,3,67,
36690,327,3,68,0,
3670327,3,69,0,327,
36713,70,0,327,3,
367271,0,327,3,72,
36730,327,3,73,0,
3674327,3,74,0,327,
36753,75,0,327,3,
367676,0,327,3,77,
36770,327,3,78,0,
3678327,3,79,0,327,
36793,80,0,327,3,
368081,0,327,3,82,
36810,327,3,83,0,
3682327,3,84,0,327,
36833,85,0,327,3,
368486,0,327,3,87,
36850,327,3,88,0,
3686327,3,89,0,327,
36873,90,0,327,3,
368895,0,327,3,97,
36890,327,3,98,0,
3690327,3,99,0,327,
36913,100,0,327,3,
3692101,0,327,3,102,
36930,327,3,103,0,
3694327,3,104,0,327,
36953,105,0,327,3,
3696106,0,327,3,107,
36970,327,3,108,0,
3698327,481,11,1,829,
36990,330,1,-1,3,
3700112,0,327,3,113,
37010,327,3,114,0,
3702327,3,115,0,327,
37033,116,0,327,3,
3704117,0,327,3,118,
37050,327,3,119,0,
3706327,3,120,0,327,
37073,121,0,327,3,
3708122,0,327,3,48,
37090,327,3,49,0,
3710327,3,50,0,327,
37113,51,0,327,3,
371252,0,327,3,53,
37130,327,3,54,0,
3714327,3,55,0,327,
37153,56,0,327,3,
371657,0,327,3,65,
37170,327,3,66,0,
3718327,3,67,0,327,
37193,68,0,327,3,
372069,0,327,3,70,
37210,327,3,71,0,
3722327,3,72,0,327,
37233,73,0,327,3,
372474,0,327,3,75,
37250,327,3,76,0,
3726327,3,77,0,327,
37273,78,0,327,3,
372879,0,327,3,80,
37290,327,3,81,0,
3730327,3,82,0,327,
37313,83,0,327,3,
373284,0,327,3,85,
37330,327,3,86,0,
3734327,3,87,0,327,
37353,88,0,327,3,
373689,0,327,3,90,
37370,327,3,95,0,
3738327,3,97,0,327,
37393,98,0,327,3,
374099,0,327,3,100,
37410,327,3,101,0,
3742327,3,102,0,327,
37433,103,0,327,3,
3744104,0,327,3,105,
37450,327,3,106,0,
3746327,3,107,0,327,
37473,108,0,327,482,
374811,1,829,0,330,
37491,-1,3,106,0,
3750327,3,107,0,327,
37513,108,0,327,483,
375211,1,829,0,330,
37531,-1,3,116,0,
3754327,3,117,0,327,
37553,118,0,327,3,
3756119,0,327,3,120,
37570,327,3,121,0,
3758327,3,122,0,327,
37593,48,0,327,3,
376049,0,327,3,50,
37610,327,3,51,0,
3762327,3,52,0,327,
37633,53,0,327,3,
376454,0,327,3,55,
37650,327,3,56,0,
3766327,3,57,0,327,
37673,65,0,327,3,
376866,0,327,3,67,
37690,327,3,68,0,
3770327,3,69,0,327,
37713,70,0,327,3,
377271,0,327,3,72,
37730,327,3,73,0,
3774327,3,74,0,327,
37753,75,0,327,3,
377676,0,327,3,77,
37770,327,3,78,0,
3778327,3,79,0,327,
37793,80,0,327,3,
378081,0,327,3,82,
37810,327,3,83,0,
3782327,3,84,0,327,
37833,85,0,327,3,
378486,0,327,3,87,
37850,327,3,88,0,
3786327,3,89,0,327,
37873,90,0,327,3,
378895,0,327,3,97,
37890,327,3,98,0,
3790327,3,99,0,327,
37913,100,0,327,3,
3792101,0,327,3,102,
37930,327,3,103,0,
3794327,3,104,0,327,
37953,105,0,327,3,
3796106,0,327,3,107,
37970,327,3,108,0,
3798327,484,11,1,829,
37990,330,1,-1,3,
3800106,0,327,3,107,
38010,327,3,108,0,
3802327,485,11,1,829,
38030,330,1,-1,486,
380411,1,829,0,330,
38051,-1,487,11,1,
3806829,0,330,1,-1,
38073,112,0,327,3,
3808113,0,327,3,114,
38090,327,3,115,0,
3810327,3,116,0,327,
38113,117,0,327,3,
3812118,0,327,3,119,
38130,327,3,120,0,
3814327,3,121,0,327,
38153,122,0,327,3,
381648,0,327,3,49,
38170,327,3,50,0,
3818327,3,51,0,327,
38193,52,0,327,3,
382053,0,327,3,54,
38210,327,3,55,0,
3822327,3,56,0,327,
38233,57,0,327,3,
382465,0,327,3,66,
38250,327,3,67,0,
3826327,3,68,0,327,
38273,69,0,327,3,
382870,0,327,3,71,
38290,327,3,72,0,
3830327,3,73,0,327,
38313,74,0,327,3,
383275,0,327,3,76,
38330,327,3,77,0,
3834327,3,78,0,327,
38353,79,0,327,3,
383680,0,327,3,81,
38370,327,3,82,0,
3838327,3,83,0,327,
38393,84,0,327,3,
384085,0,327,3,86,
38410,327,3,87,0,
3842327,3,88,0,327,
38433,89,0,327,3,
384490,0,327,3,95,
38450,327,3,97,0,
3846327,3,98,0,327,
38473,99,0,327,3,
3848100,0,327,3,101,
38490,327,3,102,0,
3850327,3,103,0,327,
38513,104,0,488,12,
38521,25477,489,5,63,
38533,109,0,327,3,
3854110,0,327,3,111,
38550,327,3,112,0,
3856327,3,113,0,327,
38573,114,0,327,3,
3858115,0,327,3,116,
38590,327,3,117,0,
3860327,3,118,0,327,
38613,119,0,327,3,
3862120,0,327,3,121,
38630,327,3,122,0,
3864327,3,48,0,327,
38653,49,0,327,3,
386650,0,327,3,51,
38670,327,3,52,0,
3868327,3,53,0,327,
38693,54,0,327,3,
387055,0,327,3,56,
38710,327,3,57,0,
3872327,3,65,0,327,
38733,66,0,327,3,
387467,0,327,3,68,
38750,327,3,69,0,
3876327,3,70,0,327,
38773,71,0,327,3,
387872,0,327,3,73,
38790,327,3,74,0,
3880327,3,75,0,327,
38813,76,0,327,3,
388277,0,327,3,78,
38830,327,3,79,0,
3884327,3,80,0,327,
38853,81,0,327,3,
388682,0,327,3,83,
38870,327,3,84,0,
3888327,3,85,0,327,
38893,86,0,327,3,
389087,0,327,3,88,
38910,327,3,89,0,
3892327,3,90,0,327,
38933,95,0,327,3,
389497,0,490,12,1,
389525520,491,5,63,3,
3896109,0,327,3,110,
38970,492,12,1,25549,
3898493,5,63,3,109,
38990,327,3,110,0,
3900327,3,111,0,327,
39013,112,0,327,3,
3902113,0,327,3,114,
39030,327,3,115,0,
3904327,3,116,0,327,
39053,117,0,327,3,
3906118,0,327,3,119,
39070,327,3,120,0,
3908327,3,121,0,327,
39093,122,0,327,3,
391048,0,327,3,49,
39110,327,3,50,0,
3912327,3,51,0,327,
39133,52,0,327,3,
391453,0,327,3,54,
39150,327,3,55,0,
3916327,3,56,0,327,
39173,57,0,327,3,
391865,0,327,3,66,
39190,327,3,67,0,
3920327,3,68,0,327,
39213,69,0,327,3,
392270,0,327,3,71,
39230,327,3,72,0,
3924327,3,73,0,327,
39253,74,0,327,3,
392675,0,327,3,76,
39270,327,3,77,0,
3928327,3,78,0,327,
39293,79,0,327,3,
393080,0,327,3,81,
39310,327,3,82,0,
3932327,3,83,0,327,
39333,84,0,327,3,
393485,0,327,3,86,
39350,327,3,87,0,
3936327,3,88,0,327,
39373,89,0,327,3,
393890,0,327,3,95,
39390,327,3,97,0,
3940327,3,98,0,327,
39413,99,0,327,3,
3942100,0,327,3,101,
39430,327,3,102,0,
3944327,3,103,0,494,
394512,1,25598,495,5,
394663,3,109,0,327,
39473,110,0,327,3,
3948111,0,327,3,112,
39490,327,3,113,0,
3950327,3,114,0,327,
39513,115,0,327,3,
3952116,0,327,3,117,
39530,327,3,118,0,
3954327,3,119,0,327,
39553,120,0,327,3,
3956121,0,327,3,122,
39570,327,3,48,0,
3958327,3,49,0,327,
39593,50,0,327,3,
396051,0,327,3,52,
39610,327,3,53,0,
3962327,3,54,0,327,
39633,55,0,327,3,
396456,0,327,3,57,
39650,327,3,65,0,
3966327,3,66,0,327,
39673,67,0,327,3,
396868,0,327,3,69,
39690,327,3,70,0,
3970327,3,71,0,327,
39713,72,0,327,3,
397273,0,327,3,74,
39730,327,3,75,0,
3974327,3,76,0,327,
39753,77,0,327,3,
397678,0,327,3,79,
39770,327,3,80,0,
3978327,3,81,0,327,
39793,82,0,327,3,
398083,0,327,3,84,
39810,327,3,85,0,
3982327,3,86,0,327,
39833,87,0,327,3,
398488,0,327,3,89,
39850,327,3,90,0,
3986327,3,95,0,327,
39873,97,0,327,3,
398898,0,327,3,99,
39890,327,3,100,0,
3990327,3,101,0,496,
399112,1,25645,497,5,
399263,3,109,0,327,
39933,110,0,327,3,
3994111,0,327,3,112,
39950,327,3,113,0,
3996327,3,114,0,327,
39973,115,0,327,3,
3998116,0,327,3,117,
39990,327,3,118,0,
4000327,3,119,0,327,
40013,120,0,327,3,
4002121,0,327,3,122,
40030,327,3,48,0,
4004327,3,49,0,327,
40053,50,0,327,3,
400651,0,327,3,52,
40070,327,3,53,0,
4008327,3,54,0,327,
40093,55,0,327,3,
401056,0,327,3,57,
40110,327,3,65,0,
4012327,3,66,0,327,
40133,67,0,327,3,
401468,0,327,3,69,
40150,327,3,70,0,
4016327,3,71,0,327,
40173,72,0,327,3,
401873,0,327,3,74,
40190,327,3,75,0,
4020327,3,76,0,327,
40213,77,0,327,3,
402278,0,327,3,79,
40230,327,3,80,0,
4024327,3,81,0,327,
40253,82,0,327,3,
402683,0,327,3,84,
40270,327,3,85,0,
4028327,3,86,0,327,
40293,87,0,327,3,
403088,0,327,3,89,
40310,327,3,90,0,
4032327,3,95,0,327,
40333,97,0,327,3,
403498,0,327,3,99,
40350,327,3,100,0,
4036498,12,1,25691,499,
40375,63,3,109,0,
4038327,3,110,0,327,
40393,111,0,327,3,
4040112,0,327,3,113,
40410,327,3,114,0,
4042327,3,115,0,327,
40433,116,0,327,3,
4044117,0,327,3,118,
40450,327,3,119,0,
4046327,3,120,0,327,
40473,121,0,327,3,
4048122,0,327,3,48,
40490,327,3,49,0,
4050327,3,50,0,327,
40513,51,0,327,3,
405252,0,327,3,53,
40530,327,3,54,0,
4054327,3,55,0,327,
40553,56,0,327,3,
405657,0,327,3,65,
40570,327,3,66,0,
4058327,3,67,0,327,
40593,68,0,327,3,
406069,0,327,3,70,
40610,327,3,71,0,
4062327,3,72,0,327,
40633,73,0,327,3,
406474,0,327,3,75,
40650,327,3,76,0,
4066327,3,77,0,327,
40673,78,0,327,3,
406879,0,327,3,80,
40690,327,3,81,0,
4070327,3,82,0,327,
40713,83,0,327,3,
407284,0,327,3,85,
40730,327,3,86,0,
4074327,3,87,0,327,
40753,88,0,327,3,
407689,0,327,3,90,
40770,327,3,95,0,
4078327,3,97,0,327,
40793,98,0,327,3,
408099,0,327,3,100,
40810,327,3,101,0,
4082327,3,102,0,327,
40833,103,0,327,3,
4084104,0,327,3,105,
40850,327,3,106,0,
4086327,3,107,0,327,
40873,108,0,327,500,
408811,1,390,0,501,
40894,26,67,0,72,
40900,65,0,78,0,
409171,0,69,0,68,
40920,95,0,69,0,
409386,0,69,0,78,
40940,84,0,1,-1,
40953,101,0,327,3,
4096102,0,327,3,103,
40970,327,3,104,0,
4098327,3,105,0,327,
40993,106,0,327,3,
4100107,0,327,3,108,
41010,327,502,11,1,
4102829,0,330,1,-1,
41033,102,0,327,3,
4104103,0,327,3,104,
41050,327,3,105,0,
4106327,3,106,0,327,
41073,107,0,327,3,
4108108,0,327,503,11,
41091,829,0,330,1,
4110-1,3,104,0,327,
41113,105,0,327,3,
4112106,0,327,3,107,
41130,327,3,108,0,
4114327,504,11,1,829,
41150,330,1,-1,3,
4116111,0,327,3,112,
41170,327,3,113,0,
4118327,3,114,0,327,
41193,115,0,327,3,
4120116,0,327,3,117,
41210,327,3,118,0,
4122327,3,119,0,327,
41233,120,0,327,3,
4124121,0,327,3,122,
41250,327,3,48,0,
4126327,3,49,0,327,
41273,50,0,327,3,
412851,0,327,3,52,
41290,327,3,53,0,
4130327,3,54,0,327,
41313,55,0,327,3,
413256,0,327,3,57,
41330,327,3,65,0,
4134327,3,66,0,327,
41353,67,0,327,3,
413668,0,327,3,69,
41370,327,3,70,0,
4138327,3,71,0,327,
41393,72,0,327,3,
414073,0,327,3,74,
41410,327,3,75,0,
4142327,3,76,0,327,
41433,77,0,327,3,
414478,0,327,3,79,
41450,327,3,80,0,
4146327,3,81,0,327,
41473,82,0,327,3,
414883,0,327,3,84,
41490,327,3,85,0,
4150327,3,86,0,327,
41513,87,0,327,3,
415288,0,327,3,89,
41530,327,3,90,0,
4154327,3,95,0,327,
41553,97,0,327,3,
415698,0,327,3,99,
41570,327,3,100,0,
4158327,3,101,0,327,
41593,102,0,327,3,
4160103,0,327,3,104,
41610,327,3,105,0,
4162327,3,106,0,327,
41633,107,0,327,3,
4164108,0,327,505,11,
41651,829,0,330,1,
4166-1,3,98,0,327,
41673,99,0,327,3,
4168100,0,327,3,101,
41690,327,3,102,0,
4170327,3,103,0,327,
41713,104,0,327,3,
4172105,0,327,3,106,
41730,327,3,107,0,
4174327,3,108,0,327,
4175506,11,1,829,0,
4176330,1,-1,3,105,
41770,327,3,106,0,
4178327,3,107,0,327,
41793,108,0,327,507,
418011,1,829,0,330,
41811,-1,3,100,0,
4182508,12,1,26268,509,
41835,63,3,109,0,
4184327,3,110,0,327,
41853,111,0,510,12,
41861,26298,511,5,63,
41873,109,0,327,3,
4188110,0,327,3,111,
41890,327,3,112,0,
4190327,3,113,0,327,
41913,114,0,327,3,
4192115,0,327,3,116,
41930,327,3,117,0,
4194327,3,118,0,327,
41953,119,0,327,3,
4196120,0,327,3,121,
41970,327,3,122,0,
4198327,3,48,0,327,
41993,49,0,327,3,
420050,0,327,3,51,
42010,327,3,52,0,
4202327,3,53,0,327,
42033,54,0,327,3,
420455,0,327,3,56,
42050,327,3,57,0,
4206327,3,65,0,327,
42073,66,0,327,3,
420867,0,327,3,68,
42090,327,3,69,0,
4210327,3,70,0,327,
42113,71,0,327,3,
421272,0,327,3,73,
42130,327,3,74,0,
4214327,3,75,0,327,
42153,76,0,327,3,
421677,0,327,3,78,
42170,327,3,79,0,
4218327,3,80,0,327,
42193,81,0,327,3,
422082,0,327,3,83,
42210,327,3,84,0,
4222327,3,85,0,327,
42233,86,0,327,3,
422487,0,327,3,88,
42250,327,3,89,0,
4226327,3,90,0,327,
42273,95,0,327,3,
422897,0,327,3,98,
42290,327,3,99,0,
4230327,3,100,0,327,
42313,101,0,327,3,
4232102,0,327,3,103,
42330,327,3,104,0,
4234327,3,105,0,327,
42353,106,0,327,3,
4236107,0,327,3,108,
42370,327,512,11,1,
4238223,0,513,4,4,
423968,0,79,0,1,
4240-1,3,112,0,327,
42413,113,0,327,3,
4242114,0,327,3,115,
42430,327,3,116,0,
4244327,3,117,0,327,
42453,118,0,327,3,
4246119,0,327,3,120,
42470,327,3,121,0,
4248327,3,122,0,327,
42493,48,0,327,3,
425049,0,327,3,50,
42510,327,3,51,0,
4252327,3,52,0,327,
42533,53,0,327,3,
425454,0,327,3,55,
42550,327,3,56,0,
4256327,3,57,0,327,
42573,65,0,327,3,
425866,0,327,3,67,
42590,327,3,68,0,
4260327,3,69,0,327,
42613,70,0,327,3,
426271,0,327,3,72,
42630,327,3,73,0,
4264327,3,74,0,327,
42653,75,0,327,3,
426676,0,327,3,77,
42670,327,3,78,0,
4268327,3,79,0,327,
42693,80,0,327,3,
427081,0,327,3,82,
42710,327,3,83,0,
4272327,3,84,0,327,
42733,85,0,327,3,
427486,0,327,3,87,
42750,327,3,88,0,
4276327,3,89,0,327,
42773,90,0,327,3,
427895,0,327,3,97,
42790,514,12,1,26431,
4280515,5,63,3,109,
42810,327,3,110,0,
4282327,3,111,0,327,
42833,112,0,327,3,
4284113,0,327,3,114,
42850,327,3,115,0,
4286327,3,116,0,516,
428712,1,26466,517,5,
428863,3,109,0,327,
42893,110,0,327,3,
4290111,0,327,3,112,
42910,327,3,113,0,
4292327,3,114,0,327,
42933,115,0,327,3,
4294116,0,327,3,117,
42950,327,3,118,0,
4296327,3,119,0,327,
42973,120,0,327,3,
4298121,0,327,3,122,
42990,327,3,48,0,
4300327,3,49,0,327,
43013,50,0,327,3,
430251,0,327,3,52,
43030,327,3,53,0,
4304327,3,54,0,327,
43053,55,0,327,3,
430656,0,327,3,57,
43070,327,3,65,0,
4308327,3,66,0,327,
43093,67,0,327,3,
431068,0,327,3,69,
43110,327,3,70,0,
4312327,3,71,0,327,
43133,72,0,327,3,
431473,0,327,3,74,
43150,327,3,75,0,
4316327,3,76,0,327,
43173,77,0,327,3,
431878,0,327,3,79,
43190,327,3,80,0,
4320327,3,81,0,327,
43213,82,0,327,3,
432283,0,327,3,84,
43230,327,3,85,0,
4324327,3,86,0,327,
43253,87,0,327,3,
432688,0,327,3,89,
43270,327,3,90,0,
4328327,3,95,0,327,
43293,97,0,518,12,
43301,26509,519,5,63,
43313,109,0,327,3,
4332110,0,327,3,111,
43330,327,3,112,0,
4334327,3,113,0,327,
43353,114,0,327,3,
4336115,0,520,12,1,
433726543,521,5,63,3,
4338109,0,327,3,110,
43390,327,3,111,0,
4340327,3,112,0,327,
43413,113,0,327,3,
4342114,0,327,3,115,
43430,327,3,116,0,
4344327,3,117,0,327,
43453,118,0,327,3,
4346119,0,327,3,120,
43470,327,3,121,0,
4348327,3,122,0,327,
43493,48,0,327,3,
435049,0,327,3,50,
43510,327,3,51,0,
4352327,3,52,0,327,
43533,53,0,327,3,
435454,0,327,3,55,
43550,327,3,56,0,
4356327,3,57,0,327,
43573,65,0,327,3,
435866,0,327,3,67,
43590,327,3,68,0,
4360327,3,69,0,327,
43613,70,0,327,3,
436271,0,327,3,72,
43630,327,3,73,0,
4364327,3,74,0,327,
43653,75,0,327,3,
436676,0,327,3,77,
43670,327,3,78,0,
4368327,3,79,0,327,
43693,80,0,327,3,
437081,0,327,3,82,
43710,327,3,83,0,
4372327,3,84,0,327,
43733,85,0,327,3,
437486,0,327,3,87,
43750,327,3,88,0,
4376327,3,89,0,327,
43773,90,0,327,3,
437895,0,327,3,97,
43790,327,3,98,0,
4380327,3,99,0,327,
43813,100,0,327,3,
4382101,0,522,12,1,
438326590,523,5,63,3,
4384109,0,327,3,110,
43850,327,3,111,0,
4386327,3,112,0,327,
43873,113,0,327,3,
4388114,0,524,12,1,
438926623,525,5,63,3,
4390109,0,327,3,110,
43910,327,3,111,0,
4392327,3,112,0,327,
43933,113,0,327,3,
4394114,0,327,3,115,
43950,327,3,116,0,
4396327,3,117,0,327,
43973,118,0,526,12,
43981,26660,527,5,63,
43993,109,0,327,3,
4400110,0,327,3,111,
44010,327,3,112,0,
4402327,3,113,0,327,
44033,114,0,327,3,
4404115,0,327,3,116,
44050,327,3,117,0,
4406327,3,118,0,327,
44073,119,0,327,3,
4408120,0,327,3,121,
44090,327,3,122,0,
4410327,3,48,0,327,
44113,49,0,327,3,
441250,0,327,3,51,
44130,327,3,52,0,
4414327,3,53,0,327,
44153,54,0,327,3,
441655,0,327,3,56,
44170,327,3,57,0,
4418327,3,65,0,327,
44193,66,0,327,3,
442067,0,327,3,68,
44210,327,3,69,0,
4422327,3,70,0,327,
44233,71,0,327,3,
442472,0,327,3,73,
44250,327,3,74,0,
4426327,3,75,0,327,
44273,76,0,327,3,
442877,0,327,3,78,
44290,327,3,79,0,
4430327,3,80,0,327,
44313,81,0,327,3,
443282,0,327,3,83,
44330,327,3,84,0,
4434327,3,85,0,327,
44353,86,0,327,3,
443687,0,327,3,88,
44370,327,3,89,0,
4438327,3,90,0,327,
44393,95,0,327,3,
444097,0,327,3,98,
44410,327,3,99,0,
4442327,3,100,0,327,
44433,101,0,528,12,
44441,26707,529,5,63,
44453,109,0,327,3,
4446110,0,327,3,111,
44470,327,3,112,0,
4448327,3,113,0,327,
44493,114,0,530,12,
44501,26740,531,5,63,
44513,109,0,327,3,
4452110,0,327,3,111,
44530,327,3,112,0,
4454327,3,113,0,327,
44553,114,0,327,3,
4456115,0,327,3,116,
44570,327,3,117,0,
4458327,3,118,0,327,
44593,119,0,327,3,
4460120,0,327,3,121,
44610,327,3,122,0,
4462327,3,48,0,327,
44633,49,0,327,3,
446450,0,327,3,51,
44650,327,3,52,0,
4466327,3,53,0,327,
44673,54,0,327,3,
446855,0,327,3,56,
44690,327,3,57,0,
4470327,3,65,0,327,
44713,66,0,327,3,
447267,0,327,3,68,
44730,327,3,69,0,
4474327,3,70,0,327,
44753,71,0,327,3,
447672,0,327,3,73,
44770,327,3,74,0,
4478327,3,75,0,327,
44793,76,0,327,3,
448077,0,327,3,78,
44810,327,3,79,0,
4482327,3,80,0,327,
44833,81,0,327,3,
448482,0,327,3,83,
44850,327,3,84,0,
4486327,3,85,0,327,
44873,86,0,327,3,
448887,0,327,3,88,
44890,327,3,89,0,
4490327,3,90,0,327,
44913,95,0,327,3,
449297,0,327,3,98,
44930,327,3,99,0,
4494327,3,100,0,327,
44953,101,0,327,3,
4496102,0,327,3,103,
44970,327,3,104,0,
4498327,3,105,0,327,
44993,106,0,327,3,
4500107,0,327,3,108,
45010,327,532,11,1,
4502461,0,533,4,32,
450368,0,65,0,84,
45040,65,0,83,0,
450569,0,82,0,86,
45060,69,0,82,0,
450795,0,69,0,86,
45080,69,0,78,0,
450984,0,1,-1,3,
4510115,0,327,3,116,
45110,327,3,117,0,
4512327,3,118,0,327,
45133,119,0,327,3,
4514120,0,327,3,121,
45150,327,3,122,0,
4516327,3,48,0,327,
45173,49,0,327,3,
451850,0,327,3,51,
45190,327,3,52,0,
4520327,3,53,0,327,
45213,54,0,327,3,
452255,0,327,3,56,
45230,327,3,57,0,
4524327,3,65,0,327,
45253,66,0,327,3,
452667,0,327,3,68,
45270,327,3,69,0,
4528327,3,70,0,327,
45293,71,0,327,3,
453072,0,327,3,73,
45310,327,3,74,0,
4532327,3,75,0,327,
45333,76,0,327,3,
453477,0,327,3,78,
45350,327,3,79,0,
4536327,3,80,0,327,
45373,81,0,327,3,
453882,0,327,3,83,
45390,327,3,84,0,
4540327,3,85,0,327,
45413,86,0,327,3,
454287,0,327,3,88,
45430,327,3,89,0,
4544327,3,90,0,327,
45453,95,0,327,3,
454697,0,327,3,98,
45470,327,3,99,0,
4548327,3,100,0,327,
45493,101,0,327,3,
4550102,0,327,3,103,
45510,327,3,104,0,
4552327,3,105,0,327,
45533,106,0,327,3,
4554107,0,327,3,108,
45550,327,534,11,1,
4556829,0,330,1,-1,
45573,102,0,327,3,
4558103,0,327,3,104,
45590,327,3,105,0,
4560327,3,106,0,327,
45613,107,0,327,3,
4562108,0,327,535,11,
45631,829,0,330,1,
4564-1,3,119,0,327,
45653,120,0,327,3,
4566121,0,327,3,122,
45670,327,3,48,0,
4568327,3,49,0,327,
45693,50,0,327,3,
457051,0,327,3,52,
45710,327,3,53,0,
4572327,3,54,0,327,
45733,55,0,327,3,
457456,0,327,3,57,
45750,327,3,65,0,
4576327,3,66,0,327,
45773,67,0,327,3,
457868,0,327,3,69,
45790,327,3,70,0,
4580327,3,71,0,327,
45813,72,0,327,3,
458273,0,327,3,74,
45830,327,3,75,0,
4584327,3,76,0,327,
45853,77,0,327,3,
458678,0,327,3,79,
45870,327,3,80,0,
4588327,3,81,0,327,
45893,82,0,327,3,
459083,0,327,3,84,
45910,327,3,85,0,
4592327,3,86,0,327,
45933,87,0,327,3,
459488,0,327,3,89,
45950,327,3,90,0,
4596327,3,95,0,327,
45973,97,0,327,3,
459898,0,327,3,99,
45990,327,3,100,0,
4600327,3,101,0,327,
46013,102,0,327,3,
4602103,0,327,3,104,
46030,327,3,105,0,
4604327,3,106,0,327,
46053,107,0,327,3,
4606108,0,327,536,11,
46071,829,0,330,1,
4608-1,3,115,0,327,
46093,116,0,327,3,
4610117,0,327,3,118,
46110,327,3,119,0,
4612327,3,120,0,327,
46133,121,0,327,3,
4614122,0,327,3,48,
46150,327,3,49,0,
4616327,3,50,0,327,
46173,51,0,327,3,
461852,0,327,3,53,
46190,327,3,54,0,
4620327,3,55,0,327,
46213,56,0,327,3,
462257,0,327,3,65,
46230,327,3,66,0,
4624327,3,67,0,327,
46253,68,0,327,3,
462669,0,327,3,70,
46270,327,3,71,0,
4628327,3,72,0,327,
46293,73,0,327,3,
463074,0,327,3,75,
46310,327,3,76,0,
4632327,3,77,0,327,
46333,78,0,327,3,
463479,0,327,3,80,
46350,327,3,81,0,
4636327,3,82,0,327,
46373,83,0,327,3,
463884,0,327,3,85,
46390,327,3,86,0,
4640327,3,87,0,327,
46413,88,0,327,3,
464289,0,327,3,90,
46430,327,3,95,0,
4644327,3,97,0,327,
46453,98,0,327,3,
464699,0,327,3,100,
46470,327,3,101,0,
4648327,3,102,0,327,
46493,103,0,327,3,
4650104,0,327,3,105,
46510,327,3,106,0,
4652327,3,107,0,327,
46533,108,0,327,537,
465411,1,829,0,330,
46551,-1,3,102,0,
4656327,3,103,0,327,
46573,104,0,327,3,
4658105,0,327,3,106,
46590,327,3,107,0,
4660327,3,108,0,327,
4661538,11,1,829,0,
4662330,1,-1,3,116,
46630,327,3,117,0,
4664327,3,118,0,327,
46653,119,0,327,3,
4666120,0,327,3,121,
46670,327,3,122,0,
4668327,3,48,0,327,
46693,49,0,327,3,
467050,0,327,3,51,
46710,327,3,52,0,
4672327,3,53,0,327,
46733,54,0,327,3,
467455,0,327,3,56,
46750,327,3,57,0,
4676327,3,65,0,327,
46773,66,0,327,3,
467867,0,327,3,68,
46790,327,3,69,0,
4680327,3,70,0,327,
46813,71,0,327,3,
468272,0,327,3,73,
46830,327,3,74,0,
4684327,3,75,0,327,
46853,76,0,327,3,
468677,0,327,3,78,
46870,327,3,79,0,
4688327,3,80,0,327,
46893,81,0,327,3,
469082,0,327,3,83,
46910,327,3,84,0,
4692327,3,85,0,327,
46933,86,0,327,3,
469487,0,327,3,88,
46950,327,3,89,0,
4696327,3,90,0,327,
46973,95,0,327,3,
469897,0,327,3,98,
46990,327,3,99,0,
4700327,3,100,0,327,
47013,101,0,327,3,
4702102,0,327,3,103,
47030,327,3,104,0,
4704327,3,105,0,327,
47053,106,0,327,3,
4706107,0,327,3,108,
47070,327,539,11,1,
4708829,0,330,1,-1,
47093,98,0,327,3,
471099,0,327,3,100,
47110,327,3,101,0,
4712327,3,102,0,327,
47133,103,0,327,3,
4714104,0,327,3,105,
47150,327,3,106,0,
4716327,3,107,0,327,
47173,108,0,327,540,
471811,1,829,0,330,
47191,-1,3,117,0,
4720327,3,118,0,327,
47213,119,0,327,3,
4722120,0,327,3,121,
47230,327,3,122,0,
4724327,3,48,0,327,
47253,49,0,327,3,
472650,0,327,3,51,
47270,327,3,52,0,
4728327,3,53,0,327,
47293,54,0,327,3,
473055,0,327,3,56,
47310,327,3,57,0,
4732327,3,65,0,327,
47333,66,0,327,3,
473467,0,327,3,68,
47350,327,3,69,0,
4736327,3,70,0,327,
47373,71,0,327,3,
473872,0,327,3,73,
47390,327,3,74,0,
4740327,3,75,0,327,
47413,76,0,327,3,
474277,0,327,3,78,
47430,327,3,79,0,
4744327,3,80,0,327,
47453,81,0,327,3,
474682,0,327,3,83,
47470,327,3,84,0,
4748327,3,85,0,327,
47493,86,0,327,3,
475087,0,327,3,88,
47510,327,3,89,0,
4752327,3,90,0,327,
47533,95,0,327,3,
475497,0,327,3,98,
47550,327,3,99,0,
4756327,3,100,0,327,
47573,101,0,327,3,
4758102,0,327,3,103,
47590,327,3,104,0,
4760327,3,105,0,327,
47613,106,0,327,3,
4762107,0,327,3,108,
47630,327,541,11,1,
4764829,0,330,1,-1,
47653,98,0,327,3,
476699,0,327,3,100,
47670,327,3,101,0,
4768542,12,1,27515,543,
47695,63,3,109,0,
4770327,3,110,0,327,
47713,111,0,327,3,
4772112,0,327,3,113,
47730,327,3,114,0,
4774327,3,115,0,327,
47753,116,0,327,3,
4776117,0,327,3,118,
47770,327,3,119,0,
4778327,3,120,0,327,
47793,121,0,327,3,
4780122,0,327,3,48,
47810,327,3,49,0,
4782327,3,50,0,327,
47833,51,0,327,3,
478452,0,327,3,53,
47850,327,3,54,0,
4786327,3,55,0,327,
47873,56,0,327,3,
478857,0,327,3,65,
47890,327,3,66,0,
4790327,3,67,0,327,
47913,68,0,327,3,
479269,0,327,3,70,
47930,327,3,71,0,
4794327,3,72,0,327,
47953,73,0,327,3,
479674,0,327,3,75,
47970,327,3,76,0,
4798327,3,77,0,327,
47993,78,0,327,3,
480079,0,327,3,80,
48010,327,3,81,0,
4802327,3,82,0,327,
48033,83,0,327,3,
480484,0,327,3,85,
48050,327,3,86,0,
4806327,3,87,0,327,
48073,88,0,327,3,
480889,0,327,3,90,
48090,327,3,95,0,
4810327,3,97,0,327,
48113,98,0,327,3,
481299,0,327,3,100,
48130,327,3,101,0,
4814327,3,102,0,544,
481512,1,27563,545,5,
481663,3,109,0,327,
48173,110,0,327,3,
4818111,0,327,3,112,
48190,327,3,113,0,
4820327,3,114,0,327,
48213,115,0,327,3,
4822116,0,327,3,117,
48230,327,3,118,0,
4824327,3,119,0,327,
48253,120,0,327,3,
4826121,0,327,3,122,
48270,327,3,48,0,
4828327,3,49,0,327,
48293,50,0,327,3,
483051,0,327,3,52,
48310,327,3,53,0,
4832327,3,54,0,327,
48333,55,0,327,3,
483456,0,327,3,57,
48350,327,3,65,0,
4836327,3,66,0,327,
48373,67,0,327,3,
483868,0,327,3,69,
48390,327,3,70,0,
4840327,3,71,0,327,
48413,72,0,327,3,
484273,0,327,3,74,
48430,327,3,75,0,
4844327,3,76,0,327,
48453,77,0,327,3,
484678,0,327,3,79,
48470,327,3,80,0,
4848327,3,81,0,327,
48493,82,0,327,3,
485083,0,327,3,84,
48510,327,3,85,0,
4852327,3,86,0,327,
48533,87,0,327,3,
485488,0,327,3,89,
48550,327,3,90,0,
4856327,3,95,0,327,
48573,97,0,546,12,
48581,27606,547,5,63,
48593,109,0,327,3,
4860110,0,327,3,111,
48610,327,3,112,0,
4862327,3,113,0,327,
48633,114,0,327,3,
4864115,0,327,3,116,
48650,327,3,117,0,
4866548,12,1,27642,549,
48675,63,3,109,0,
4868327,3,110,0,327,
48693,111,0,327,3,
4870112,0,327,3,113,
48710,327,3,114,0,
4872327,3,115,0,327,
48733,116,0,327,3,
4874117,0,327,3,118,
48750,327,3,119,0,
4876327,3,120,0,327,
48773,121,0,327,3,
4878122,0,327,3,48,
48790,327,3,49,0,
4880327,3,50,0,327,
48813,51,0,327,3,
488252,0,327,3,53,
48830,327,3,54,0,
4884327,3,55,0,327,
48853,56,0,327,3,
488657,0,327,3,65,
48870,327,3,66,0,
4888327,3,67,0,327,
48893,68,0,327,3,
489069,0,327,3,70,
48910,327,3,71,0,
4892327,3,72,0,327,
48933,73,0,327,3,
489474,0,327,3,75,
48950,327,3,76,0,
4896327,3,77,0,327,
48973,78,0,327,3,
489879,0,327,3,80,
48990,327,3,81,0,
4900327,3,82,0,327,
49013,83,0,327,3,
490284,0,327,3,85,
49030,327,3,86,0,
4904327,3,87,0,327,
49053,88,0,327,3,
490689,0,327,3,90,
49070,327,3,95,0,
4908327,3,97,0,327,
49093,98,0,327,3,
491099,0,327,3,100,
49110,327,3,101,0,
4912327,3,102,0,327,
49133,103,0,327,3,
4914104,0,327,3,105,
49150,327,3,106,0,
4916327,3,107,0,327,
49173,108,0,550,12,
49181,27696,551,5,63,
49193,109,0,327,3,
4920110,0,327,3,111,
49210,327,3,112,0,
4922327,3,113,0,327,
49233,114,0,327,3,
4924115,0,327,3,116,
49250,552,12,1,27731,
4926553,5,63,3,109,
49270,327,3,110,0,
4928327,3,111,0,327,
49293,112,0,327,3,
4930113,0,327,3,114,
49310,327,3,115,0,
4932327,3,116,0,327,
49333,117,0,327,3,
4934118,0,327,3,119,
49350,327,3,120,0,
4936327,3,121,0,327,
49373,122,0,327,3,
493848,0,327,3,49,
49390,327,3,50,0,
4940327,3,51,0,327,
49413,52,0,327,3,
494253,0,327,3,54,
49430,327,3,55,0,
4944327,3,56,0,327,
49453,57,0,327,3,
494665,0,327,3,66,
49470,327,3,67,0,
4948327,3,68,0,327,
49493,69,0,327,3,
495070,0,327,3,71,
49510,327,3,72,0,
4952327,3,73,0,327,
49533,74,0,327,3,
495475,0,327,3,76,
49550,327,3,77,0,
4956327,3,78,0,327,
49573,79,0,327,3,
495880,0,327,3,81,
49590,327,3,82,0,
4960327,3,83,0,327,
49613,84,0,327,3,
496285,0,327,3,86,
49630,327,3,87,0,
4964327,3,88,0,327,
49653,89,0,327,3,
496690,0,327,3,95,
49670,327,3,97,0,
4968327,3,98,0,327,
49693,99,0,327,3,
4970100,0,327,3,101,
49710,327,3,102,0,
4972327,3,103,0,327,
49733,104,0,327,3,
4974105,0,327,3,106,
49750,327,3,107,0,
4976327,3,108,0,327,
4977554,11,1,245,0,
4978555,4,26,68,0,
497969,0,70,0,65,
49800,85,0,76,0,
498184,0,95,0,83,
49820,84,0,65,0,
498384,0,69,0,1,
4984-1,3,117,0,327,
49853,118,0,327,3,
4986119,0,327,3,120,
49870,327,3,121,0,
4988327,3,122,0,327,
49893,48,0,327,3,
499049,0,327,3,50,
49910,327,3,51,0,
4992327,3,52,0,327,
49933,53,0,327,3,
499454,0,327,3,55,
49950,327,3,56,0,
4996327,3,57,0,327,
49973,65,0,327,3,
499866,0,327,3,67,
49990,327,3,68,0,
5000327,3,69,0,327,
50013,70,0,327,3,
500271,0,327,3,72,
50030,327,3,73,0,
5004327,3,74,0,327,
50053,75,0,327,3,
500676,0,327,3,77,
50070,327,3,78,0,
5008327,3,79,0,327,
50093,80,0,327,3,
501081,0,327,3,82,
50110,327,3,83,0,
5012327,3,84,0,327,
50133,85,0,327,3,
501486,0,327,3,87,
50150,327,3,88,0,
5016327,3,89,0,327,
50173,90,0,327,3,
501895,0,327,3,97,
50190,327,3,98,0,
5020327,3,99,0,327,
50213,100,0,327,3,
5022101,0,327,3,102,
50230,327,3,103,0,
5024327,3,104,0,327,
50253,105,0,327,3,
5026106,0,327,3,107,
50270,327,3,108,0,
5028327,556,11,1,829,
50290,330,1,-1,557,
503011,1,829,0,330,
50311,-1,3,118,0,
5032327,3,119,0,327,
50333,120,0,327,3,
5034121,0,327,3,122,
50350,327,3,48,0,
5036327,3,49,0,327,
50373,50,0,327,3,
503851,0,327,3,52,
50390,327,3,53,0,
5040327,3,54,0,327,
50413,55,0,327,3,
504256,0,327,3,57,
50430,327,3,65,0,
5044327,3,66,0,327,
50453,67,0,327,3,
504668,0,327,3,69,
50470,327,3,70,0,
5048327,3,71,0,327,
50493,72,0,327,3,
505073,0,327,3,74,
50510,327,3,75,0,
5052327,3,76,0,327,
50533,77,0,327,3,
505478,0,327,3,79,
50550,327,3,80,0,
5056327,3,81,0,327,
50573,82,0,327,3,
505883,0,327,3,84,
50590,327,3,85,0,
5060327,3,86,0,327,
50613,87,0,327,3,
506288,0,327,3,89,
50630,327,3,90,0,
5064327,3,95,0,327,
50653,97,0,327,3,
506698,0,327,3,99,
50670,327,3,100,0,
5068327,3,101,0,327,
50693,102,0,327,3,
5070103,0,327,3,104,
50710,327,3,105,0,
5072327,3,106,0,327,
50733,107,0,327,3,
5074108,0,327,558,11,
50751,829,0,330,1,
5076-1,3,98,0,327,
50773,99,0,327,3,
5078100,0,327,3,101,
50790,327,3,102,0,
5080327,3,103,0,327,
50813,104,0,327,3,
5082105,0,327,3,106,
50830,327,3,107,0,
5084327,3,108,0,327,
5085559,11,1,829,0,
5086330,1,-1,3,103,
50870,327,3,104,0,
5088327,3,105,0,327,
50893,106,0,327,3,
5090107,0,327,3,108,
50910,327,560,11,1,
5092829,0,330,1,-1,
50933,102,0,327,3,
5094103,0,327,3,104,
50950,327,3,105,0,
5096327,3,106,0,327,
50973,107,0,327,3,
5098108,0,327,561,11,
50991,829,0,330,1,
5100-1,3,101,0,562,
510112,1,28309,563,5,
510263,3,109,0,564,
510312,1,28337,565,5,
510463,3,109,0,327,
51053,110,0,327,3,
5106111,0,327,3,112,
51070,327,3,113,0,
5108327,3,114,0,327,
51093,115,0,327,3,
5110116,0,327,3,117,
51110,327,3,118,0,
5112327,3,119,0,327,
51133,120,0,327,3,
5114121,0,327,3,122,
51150,327,3,48,0,
5116327,3,49,0,327,
51173,50,0,327,3,
511851,0,327,3,52,
51190,327,3,53,0,
5120327,3,54,0,327,
51213,55,0,327,3,
512256,0,327,3,57,
51230,327,3,65,0,
5124327,3,66,0,327,
51253,67,0,327,3,
512668,0,327,3,69,
51270,327,3,70,0,
5128327,3,71,0,327,
51293,72,0,327,3,
513073,0,327,3,74,
51310,327,3,75,0,
5132327,3,76,0,327,
51333,77,0,327,3,
513478,0,327,3,79,
51350,327,3,80,0,
5136327,3,81,0,327,
51373,82,0,327,3,
513883,0,327,3,84,
51390,327,3,85,0,
5140327,3,86,0,327,
51413,87,0,327,3,
514288,0,327,3,89,
51430,327,3,90,0,
5144327,3,95,0,327,
51453,97,0,566,12,
51461,28380,567,5,63,
51473,109,0,327,3,
5148110,0,327,3,111,
51490,327,3,112,0,
5150327,3,113,0,327,
51513,114,0,327,3,
5152115,0,327,3,116,
51530,327,3,117,0,
5154327,3,118,0,327,
51553,119,0,327,3,
5156120,0,327,3,121,
51570,327,3,122,0,
5158327,3,48,0,327,
51593,49,0,327,3,
516050,0,327,3,51,
51610,327,3,52,0,
5162327,3,53,0,327,
51633,54,0,327,3,
516455,0,327,3,56,
51650,327,3,57,0,
5166327,3,65,0,327,
51673,66,0,327,3,
516867,0,327,3,68,
51690,327,3,69,0,
5170327,3,70,0,327,
51713,71,0,327,3,
517272,0,327,3,73,
51730,327,3,74,0,
5174327,3,75,0,327,
51753,76,0,327,3,
517677,0,327,3,78,
51770,327,3,79,0,
5178327,3,80,0,327,
51793,81,0,327,3,
518082,0,327,3,83,
51810,327,3,84,0,
5182327,3,85,0,327,
51833,86,0,327,3,
518487,0,327,3,88,
51850,327,3,89,0,
5186327,3,90,0,327,
51873,95,0,327,3,
518897,0,327,3,98,
51890,327,3,99,0,
5190327,3,100,0,327,
51913,101,0,327,3,
5192102,0,327,3,103,
51930,327,3,104,0,
5194327,3,105,0,568,
519512,1,28431,569,5,
519663,3,109,0,327,
51973,110,0,327,3,
5198111,0,327,3,112,
51990,327,3,113,0,
5200327,3,114,0,327,
52013,115,0,327,3,
5202116,0,327,3,117,
52030,327,3,118,0,
5204327,3,119,0,327,
52053,120,0,327,3,
5206121,0,327,3,122,
52070,327,3,48,0,
5208327,3,49,0,327,
52093,50,0,327,3,
521051,0,327,3,52,
52110,327,3,53,0,
5212327,3,54,0,327,
52133,55,0,327,3,
521456,0,327,3,57,
52150,327,3,65,0,
5216327,3,66,0,327,
52173,67,0,327,3,
521868,0,327,3,69,
52190,327,3,70,0,
5220327,3,71,0,327,
52213,72,0,327,3,
522273,0,327,3,74,
52230,327,3,75,0,
5224327,3,76,0,327,
52253,77,0,327,3,
522678,0,327,3,79,
52270,327,3,80,0,
5228327,3,81,0,327,
52293,82,0,327,3,
523083,0,327,3,84,
52310,327,3,85,0,
5232327,3,86,0,327,
52333,87,0,327,3,
523488,0,327,3,89,
52350,327,3,90,0,
5236327,3,95,0,327,
52373,97,0,327,3,
523898,0,327,3,99,
52390,327,3,100,0,
5240327,3,101,0,327,
52413,102,0,327,3,
5242103,0,327,3,104,
52430,327,3,105,0,
5244327,3,106,0,327,
52453,107,0,327,3,
5246108,0,570,12,1,
524728485,571,5,63,3,
5248109,0,327,3,110,
52490,327,3,111,0,
5250327,3,112,0,327,
52513,113,0,327,3,
5252114,0,327,3,115,
52530,327,3,116,0,
5254327,3,117,0,327,
52553,118,0,327,3,
5256119,0,327,3,120,
52570,327,3,121,0,
5258327,3,122,0,327,
52593,48,0,327,3,
526049,0,327,3,50,
52610,327,3,51,0,
5262327,3,52,0,327,
52633,53,0,327,3,
526454,0,327,3,55,
52650,327,3,56,0,
5266327,3,57,0,327,
52673,65,0,327,3,
526866,0,327,3,67,
52690,327,3,68,0,
5270327,3,69,0,327,
52713,70,0,327,3,
527271,0,327,3,72,
52730,327,3,73,0,
5274327,3,74,0,327,
52753,75,0,327,3,
527676,0,327,3,77,
52770,327,3,78,0,
5278327,3,79,0,327,
52793,80,0,327,3,
528081,0,327,3,82,
52810,327,3,83,0,
5282327,3,84,0,327,
52833,85,0,327,3,
528486,0,327,3,87,
52850,327,3,88,0,
5286327,3,89,0,327,
52873,90,0,327,3,
528895,0,327,3,97,
52890,327,3,98,0,
5290327,3,99,0,327,
52913,100,0,327,3,
5292101,0,327,3,102,
52930,327,3,103,0,
5294327,3,104,0,327,
52953,105,0,327,3,
5296106,0,327,3,107,
52970,327,3,108,0,
5298327,572,11,1,475,
52990,573,4,22,69,
53000,77,0,65,0,
530173,0,76,0,95,
53020,69,0,86,0,
530369,0,78,0,84,
53040,1,-1,574,11,
53051,829,0,330,1,
5306-1,3,106,0,327,
53073,107,0,327,3,
5308108,0,327,575,11,
53091,829,0,330,1,
5310-1,3,98,0,327,
53113,99,0,327,3,
5312100,0,327,3,101,
53130,327,3,102,0,
5314327,3,103,0,327,
53153,104,0,327,3,
5316105,0,327,3,106,
53170,327,3,107,0,
5318327,3,108,0,327,
5319576,11,1,829,0,
5320330,1,-1,3,110,
53210,327,3,111,0,
5322327,3,112,0,327,
53233,113,0,327,3,
5324114,0,327,3,115,
53250,327,3,116,0,
5326327,3,117,0,327,
53273,118,0,327,3,
5328119,0,327,3,120,
53290,327,3,121,0,
5330327,3,122,0,327,
53313,48,0,327,3,
533249,0,327,3,50,
53330,327,3,51,0,
5334327,3,52,0,327,
53353,53,0,327,3,
533654,0,327,3,55,
53370,327,3,56,0,
5338327,3,57,0,327,
53393,65,0,327,3,
534066,0,327,3,67,
53410,327,3,68,0,
5342327,3,69,0,327,
53433,70,0,327,3,
534471,0,327,3,72,
53450,327,3,73,0,
5346327,3,74,0,327,
53473,75,0,327,3,
534876,0,327,3,77,
53490,327,3,78,0,
5350327,3,79,0,327,
53513,80,0,327,3,
535281,0,327,3,82,
53530,327,3,83,0,
5354327,3,84,0,327,
53553,85,0,327,3,
535686,0,327,3,87,
53570,327,3,88,0,
5358327,3,89,0,327,
53593,90,0,327,3,
536095,0,327,3,97,
53610,327,3,98,0,
5362327,3,99,0,327,
53633,100,0,327,3,
5364101,0,327,3,102,
53650,327,3,103,0,
5366327,3,104,0,327,
53673,105,0,327,3,
5368106,0,327,3,107,
53690,327,3,108,0,
5370577,12,1,28843,578,
53715,63,3,109,0,
5372327,3,110,0,327,
53733,111,0,327,3,
5374112,0,327,3,113,
53750,327,3,114,0,
5376327,3,115,0,579,
537712,1,28877,580,5,
537863,3,109,0,327,
53793,110,0,327,3,
5380111,0,327,3,112,
53810,327,3,113,0,
5382327,3,114,0,327,
53833,115,0,327,3,
5384116,0,327,3,117,
53850,327,3,118,0,
5386327,3,119,0,327,
53873,120,0,327,3,
5388121,0,327,3,122,
53890,327,3,48,0,
5390327,3,49,0,327,
53913,50,0,327,3,
539251,0,327,3,52,
53930,327,3,53,0,
5394327,3,54,0,327,
53953,55,0,327,3,
539656,0,327,3,57,
53970,327,3,65,0,
5398327,3,66,0,327,
53993,67,0,327,3,
540068,0,327,3,69,
54010,327,3,70,0,
5402327,3,71,0,327,
54033,72,0,327,3,
540473,0,327,3,74,
54050,327,3,75,0,
5406327,3,76,0,327,
54073,77,0,327,3,
540878,0,327,3,79,
54090,327,3,80,0,
5410327,3,81,0,327,
54113,82,0,327,3,
541283,0,327,3,84,
54130,327,3,85,0,
5414327,3,86,0,327,
54153,87,0,327,3,
541688,0,327,3,89,
54170,327,3,90,0,
5418327,3,95,0,327,
54193,97,0,327,3,
542098,0,327,3,99,
54210,327,3,100,0,
5422327,3,101,0,581,
542312,1,28924,582,5,
542463,3,109,0,327,
54253,110,0,327,3,
5426111,0,327,3,112,
54270,327,3,113,0,
5428327,3,114,0,327,
54293,115,0,327,3,
5430116,0,327,3,117,
54310,327,3,118,0,
5432327,3,119,0,327,
54333,120,0,327,3,
5434121,0,327,3,122,
54350,327,3,48,0,
5436327,3,49,0,327,
54373,50,0,327,3,
543851,0,327,3,52,
54390,327,3,53,0,
5440327,3,54,0,327,
54413,55,0,327,3,
544256,0,327,3,57,
54430,327,3,65,0,
5444327,3,66,0,327,
54453,67,0,327,3,
544668,0,327,3,69,
54470,327,3,70,0,
5448327,3,71,0,327,
54493,72,0,327,3,
545073,0,327,3,74,
54510,327,3,75,0,
5452327,3,76,0,327,
54533,77,0,327,3,
545478,0,327,3,79,
54550,327,3,80,0,
5456327,3,81,0,327,
54573,82,0,327,3,
545883,0,327,3,84,
54590,327,3,85,0,
5460327,3,86,0,327,
54613,87,0,327,3,
546288,0,327,3,89,
54630,327,3,90,0,
5464327,3,95,0,327,
54653,97,0,327,3,
546698,0,327,3,99,
54670,327,3,100,0,
5468327,3,101,0,327,
54693,102,0,327,3,
5470103,0,327,3,104,
54710,327,3,105,0,
5472327,3,106,0,327,
54733,107,0,327,3,
5474108,0,327,583,11,
54751,215,0,584,4,
54768,69,0,76,0,
547783,0,69,0,1,
5478-1,3,102,0,327,
54793,103,0,327,3,
5480104,0,327,3,105,
54810,327,3,106,0,
5482327,3,107,0,327,
54833,108,0,327,585,
548411,1,829,0,330,
54851,-1,3,116,0,
5486327,3,117,0,327,
54873,118,0,327,3,
5488119,0,327,3,120,
54890,327,3,121,0,
5490327,3,122,0,327,
54913,48,0,327,3,
549249,0,327,3,50,
54930,327,3,51,0,
5494327,3,52,0,327,
54953,53,0,327,3,
549654,0,327,3,55,
54970,327,3,56,0,
5498327,3,57,0,327,
54993,65,0,327,3,
550066,0,327,3,67,
55010,327,3,68,0,
5502327,3,69,0,327,
55033,70,0,327,3,
550471,0,327,3,72,
55050,327,3,73,0,
5506327,3,74,0,327,
55073,75,0,327,3,
550876,0,327,3,77,
55090,327,3,78,0,
5510327,3,79,0,327,
55113,80,0,327,3,
551281,0,327,3,82,
55130,327,3,83,0,
5514327,3,84,0,327,
55153,85,0,327,3,
551686,0,327,3,87,
55170,327,3,88,0,
5518327,3,89,0,327,
55193,90,0,327,3,
552095,0,327,3,97,
55210,327,3,98,0,
5522327,3,99,0,327,
55233,100,0,327,3,
5524101,0,327,3,102,
55250,327,3,103,0,
5526327,3,104,0,327,
55273,105,0,327,3,
5528106,0,327,3,107,
55290,327,3,108,0,
5530327,586,11,1,829,
55310,330,1,-1,587,
553211,1,829,0,330,
55331,-1,3,102,0,
5534588,12,1,29270,589,
55355,63,3,109,0,
5536327,3,110,0,327,
55373,111,0,590,12,
55381,29300,591,5,63,
55393,109,0,327,3,
5540110,0,327,3,111,
55410,327,3,112,0,
5542327,3,113,0,327,
55433,114,0,592,12,
55441,29333,593,5,63,
55453,109,0,327,3,
5546110,0,327,3,111,
55470,327,3,112,0,
5548327,3,113,0,327,
55493,114,0,327,3,
5550115,0,327,3,116,
55510,327,3,117,0,
5552327,3,118,0,327,
55533,119,0,327,3,
5554120,0,327,3,121,
55550,327,3,122,0,
5556327,3,48,0,327,
55573,49,0,327,3,
555850,0,327,3,51,
55590,327,3,52,0,
5560327,3,53,0,327,
55613,54,0,327,3,
556255,0,327,3,56,
55630,327,3,57,0,
5564327,3,65,0,327,
55653,66,0,327,3,
556667,0,327,3,68,
55670,327,3,69,0,
5568327,3,70,0,327,
55693,71,0,327,3,
557072,0,327,3,73,
55710,327,3,74,0,
5572327,3,75,0,327,
55733,76,0,327,3,
557477,0,327,3,78,
55750,327,3,79,0,
5576327,3,80,0,327,
55773,81,0,327,3,
557882,0,327,3,83,
55790,327,3,84,0,
5580327,3,85,0,327,
55813,86,0,327,3,
558287,0,327,3,88,
55830,327,3,89,0,
5584327,3,90,0,327,
55853,95,0,327,3,
558697,0,327,3,98,
55870,327,3,99,0,
5588327,3,100,0,327,
55893,101,0,327,3,
5590102,0,327,3,103,
55910,327,3,104,0,
5592327,3,105,0,327,
55933,106,0,327,3,
5594107,0,327,3,108,
55950,327,594,11,1,
5596238,0,595,4,6,
559770,0,79,0,82,
55980,1,-1,3,115,
55990,327,3,116,0,
5600327,3,117,0,327,
56013,118,0,327,3,
5602119,0,327,3,120,
56030,327,3,121,0,
5604327,3,122,0,327,
56053,48,0,327,3,
560649,0,327,3,50,
56070,327,3,51,0,
5608327,3,52,0,327,
56093,53,0,327,3,
561054,0,327,3,55,
56110,327,3,56,0,
5612327,3,57,0,327,
56133,65,0,327,3,
561466,0,327,3,67,
56150,327,3,68,0,
5616327,3,69,0,327,
56173,70,0,327,3,
561871,0,327,3,72,
56190,327,3,73,0,
5620327,3,74,0,327,
56213,75,0,327,3,
562276,0,327,3,77,
56230,327,3,78,0,
5624327,3,79,0,327,
56253,80,0,327,3,
562681,0,327,3,82,
56270,327,3,83,0,
5628327,3,84,0,327,
56293,85,0,327,3,
563086,0,327,3,87,
56310,327,3,88,0,
5632327,3,89,0,327,
56333,90,0,327,3,
563495,0,327,3,97,
56350,327,3,98,0,
5636327,3,99,0,327,
56373,100,0,327,3,
5638101,0,327,3,102,
56390,327,3,103,0,
5640327,3,104,0,327,
56413,105,0,327,3,
5642106,0,327,3,107,
56430,327,3,108,0,
5644327,596,11,1,829,
56450,330,1,-1,3,
5646112,0,327,3,113,
56470,327,3,114,0,
5648327,3,115,0,327,
56493,116,0,327,3,
5650117,0,327,3,118,
56510,327,3,119,0,
5652327,3,120,0,327,
56533,121,0,327,3,
5654122,0,327,3,48,
56550,327,3,49,0,
5656327,3,50,0,327,
56573,51,0,327,3,
565852,0,327,3,53,
56590,327,3,54,0,
5660327,3,55,0,327,
56613,56,0,327,3,
566257,0,327,3,65,
56630,327,3,66,0,
5664327,3,67,0,327,
56653,68,0,327,3,
566669,0,327,3,70,
56670,327,3,71,0,
5668327,3,72,0,327,
56693,73,0,327,3,
567074,0,327,3,75,
56710,327,3,76,0,
5672327,3,77,0,327,
56733,78,0,327,3,
567479,0,327,3,80,
56750,327,3,81,0,
5676327,3,82,0,327,
56773,83,0,327,3,
567884,0,327,3,85,
56790,327,3,86,0,
5680327,3,87,0,327,
56813,88,0,327,3,
568289,0,327,3,90,
56830,327,3,95,0,
5684327,3,97,0,327,
56853,98,0,327,3,
568699,0,327,3,100,
56870,327,3,101,0,
5688327,3,102,0,327,
56893,103,0,327,3,
5690104,0,327,3,105,
56910,327,3,106,0,
5692327,3,107,0,327,
56933,108,0,597,12,
56941,29564,598,5,63,
56953,109,0,327,3,
5696110,0,327,3,111,
56970,599,12,1,29594,
5698600,5,63,3,109,
56990,327,3,110,0,
5700327,3,111,0,327,
57013,112,0,327,3,
5702113,0,327,3,114,
57030,327,3,115,0,
5704327,3,116,0,327,
57053,117,0,327,3,
5706118,0,327,3,119,
57070,327,3,120,0,
5708327,3,121,0,327,
57093,122,0,327,3,
571048,0,327,3,49,
57110,327,3,50,0,
5712327,3,51,0,327,
57133,52,0,327,3,
571453,0,327,3,54,
57150,327,3,55,0,
5716327,3,56,0,327,
57173,57,0,327,3,
571865,0,327,3,66,
57190,327,3,67,0,
5720327,3,68,0,327,
57213,69,0,327,3,
572270,0,327,3,71,
57230,327,3,72,0,
5724327,3,73,0,327,
57253,74,0,327,3,
572675,0,327,3,76,
57270,327,3,77,0,
5728327,3,78,0,327,
57293,79,0,327,3,
573080,0,327,3,81,
57310,327,3,82,0,
5732327,3,83,0,327,
57333,84,0,327,3,
573485,0,327,3,86,
57350,327,3,87,0,
5736327,3,88,0,327,
57373,89,0,327,3,
573890,0,327,3,95,
57390,327,3,97,0,
5740601,12,1,29637,602,
57415,63,3,109,0,
5742327,3,110,0,327,
57433,111,0,327,3,
5744112,0,327,3,113,
57450,327,3,114,0,
5746327,3,115,0,327,
57473,116,0,603,12,
57481,29672,604,5,63,
57493,109,0,327,3,
5750110,0,327,3,111,
57510,327,3,112,0,
5752327,3,113,0,327,
57533,114,0,327,3,
5754115,0,327,3,116,
57550,327,3,117,0,
5756327,3,118,0,327,
57573,119,0,327,3,
5758120,0,327,3,121,
57590,327,3,122,0,
5760327,3,48,0,327,
57613,49,0,327,3,
576250,0,327,3,51,
57630,327,3,52,0,
5764327,3,53,0,327,
57653,54,0,327,3,
576655,0,327,3,56,
57670,327,3,57,0,
5768327,3,65,0,327,
57693,66,0,327,3,
577067,0,327,3,68,
57710,327,3,69,0,
5772327,3,70,0,327,
57733,71,0,327,3,
577472,0,327,3,73,
57750,327,3,74,0,
5776327,3,75,0,327,
57773,76,0,327,3,
577877,0,327,3,78,
57790,327,3,79,0,
5780327,3,80,0,327,
57813,81,0,327,3,
578282,0,327,3,83,
57830,327,3,84,0,
5784327,3,85,0,327,
57853,86,0,327,3,
578687,0,327,3,88,
57870,327,3,89,0,
5788327,3,90,0,327,
57893,95,0,327,3,
579097,0,327,3,98,
57910,327,3,99,0,
5792327,3,100,0,327,
57933,101,0,327,3,
5794102,0,327,3,103,
57950,327,3,104,0,
5796327,3,105,0,327,
57973,106,0,327,3,
5798107,0,327,3,108,
57990,327,605,11,1,
5800294,0,606,4,20,
580170,0,76,0,79,
58020,65,0,84,0,
580395,0,84,0,89,
58040,80,0,69,0,
58051,-1,3,117,0,
5806327,3,118,0,327,
58073,119,0,327,3,
5808120,0,327,3,121,
58090,327,3,122,0,
5810327,3,48,0,327,
58113,49,0,327,3,
581250,0,327,3,51,
58130,327,3,52,0,
5814327,3,53,0,327,
58153,54,0,327,3,
581655,0,327,3,56,
58170,327,3,57,0,
5818327,3,65,0,327,
58193,66,0,327,3,
582067,0,327,3,68,
58210,327,3,69,0,
5822327,3,70,0,327,
58233,71,0,327,3,
582472,0,327,3,73,
58250,327,3,74,0,
5826327,3,75,0,327,
58273,76,0,327,3,
582877,0,327,3,78,
58290,327,3,79,0,
5830327,3,80,0,327,
58313,81,0,327,3,
583282,0,327,3,83,
58330,327,3,84,0,
5834327,3,85,0,327,
58353,86,0,327,3,
583687,0,327,3,88,
58370,327,3,89,0,
5838327,3,90,0,327,
58393,95,0,327,3,
584097,0,327,3,98,
58410,327,3,99,0,
5842327,3,100,0,327,
58433,101,0,327,3,
5844102,0,327,3,103,
58450,327,3,104,0,
5846327,3,105,0,327,
58473,106,0,327,3,
5848107,0,327,3,108,
58490,327,607,11,1,
5850829,0,330,1,-1,
58513,98,0,327,3,
585299,0,327,3,100,
58530,327,3,101,0,
5854327,3,102,0,327,
58553,103,0,327,3,
5856104,0,327,3,105,
58570,327,3,106,0,
5858327,3,107,0,327,
58593,108,0,327,608,
586011,1,829,0,330,
58611,-1,3,112,0,
5862327,3,113,0,327,
58633,114,0,327,3,
5864115,0,327,3,116,
58650,327,3,117,0,
5866327,3,118,0,327,
58673,119,0,327,3,
5868120,0,327,3,121,
58690,327,3,122,0,
5870327,3,48,0,327,
58713,49,0,327,3,
587250,0,327,3,51,
58730,327,3,52,0,
5874327,3,53,0,327,
58753,54,0,327,3,
587655,0,327,3,56,
58770,327,3,57,0,
5878327,3,65,0,327,
58793,66,0,327,3,
588067,0,327,3,68,
58810,327,3,69,0,
5882327,3,70,0,327,
58833,71,0,327,3,
588472,0,327,3,73,
58850,327,3,74,0,
5886327,3,75,0,327,
58873,76,0,327,3,
588877,0,327,3,78,
58890,327,3,79,0,
5890327,3,80,0,327,
58913,81,0,327,3,
589282,0,327,3,83,
58930,327,3,84,0,
5894327,3,85,0,327,
58953,86,0,327,3,
589687,0,327,3,88,
58970,327,3,89,0,
5898327,3,90,0,327,
58993,95,0,327,3,
590097,0,327,3,98,
59010,327,3,99,0,
5902327,3,100,0,327,
59033,101,0,327,3,
5904102,0,327,3,103,
59050,327,3,104,0,
5906327,3,105,0,327,
59073,106,0,327,3,
5908107,0,327,3,108,
59090,327,609,11,1,
5910829,0,330,1,-1,
5911610,11,1,829,0,
5912330,1,-1,3,103,
59130,325,3,104,0,
5914611,12,1,30112,612,
59155,63,3,109,0,
5916327,3,110,0,327,
59173,111,0,327,3,
5918112,0,327,3,113,
59190,327,3,114,0,
5920327,3,115,0,327,
59213,116,0,613,12,
59221,30147,614,5,63,
59233,109,0,327,3,
5924110,0,327,3,111,
59250,327,3,112,0,
5926327,3,113,0,327,
59273,114,0,327,3,
5928115,0,327,3,116,
59290,615,12,1,30182,
5930616,5,63,3,109,
59310,327,3,110,0,
5932327,3,111,0,327,
59333,112,0,617,12,
59341,30213,618,5,63,
59353,109,0,327,3,
5936110,0,327,3,111,
59370,327,3,112,0,
5938327,3,113,0,327,
59393,114,0,327,3,
5940115,0,327,3,116,
59410,327,3,117,0,
5942327,3,118,0,327,
59433,119,0,327,3,
5944120,0,327,3,121,
59450,327,3,122,0,
5946327,3,48,0,327,
59473,49,0,327,3,
594850,0,327,3,51,
59490,327,3,52,0,
5950327,3,53,0,327,
59513,54,0,327,3,
595255,0,327,3,56,
59530,327,3,57,0,
5954327,3,65,0,327,
59553,66,0,327,3,
595667,0,327,3,68,
59570,327,3,69,0,
5958327,3,70,0,327,
59593,71,0,327,3,
596072,0,327,3,73,
59610,327,3,74,0,
5962327,3,75,0,327,
59633,76,0,327,3,
596477,0,327,3,78,
59650,327,3,79,0,
5966327,3,80,0,327,
59673,81,0,327,3,
596882,0,327,3,83,
59690,327,3,84,0,
5970327,3,85,0,327,
59713,86,0,327,3,
597287,0,327,3,88,
59730,327,3,89,0,
5974327,3,90,0,327,
59753,95,0,619,12,
59761,30299,620,5,63,
59773,109,0,327,3,
5978110,0,327,3,111,
59790,327,3,112,0,
5980327,3,113,0,327,
59813,114,0,621,12,
59821,30332,622,5,63,
59833,109,0,327,3,
5984110,0,327,3,111,
59850,327,3,112,0,
5986327,3,113,0,327,
59873,114,0,327,3,
5988115,0,327,3,116,
59890,327,3,117,0,
5990327,3,118,0,327,
59913,119,0,327,3,
5992120,0,327,3,121,
59930,327,3,122,0,
5994327,3,48,0,327,
59953,49,0,327,3,
599650,0,327,3,51,
59970,327,3,52,0,
5998327,3,53,0,327,
59993,54,0,327,3,
600055,0,327,3,56,
60010,327,3,57,0,
6002327,3,65,0,327,
60033,66,0,327,3,
600467,0,327,3,68,
60050,327,3,69,0,
6006327,3,70,0,327,
60073,71,0,327,3,
600872,0,327,3,73,
60090,327,3,74,0,
6010327,3,75,0,327,
60113,76,0,327,3,
601277,0,327,3,78,
60130,327,3,79,0,
6014327,3,80,0,327,
60153,81,0,327,3,
601682,0,327,3,83,
60170,327,3,84,0,
6018327,3,85,0,327,
60193,86,0,327,3,
602087,0,327,3,88,
60210,327,3,89,0,
6022327,3,90,0,327,
60233,95,0,327,3,
602497,0,327,3,98,
60250,327,3,99,0,
6026327,3,100,0,327,
60273,101,0,623,12,
60281,30379,624,5,63,
60293,109,0,327,3,
6030110,0,327,3,111,
60310,327,3,112,0,
6032327,3,113,0,327,
60333,114,0,327,3,
6034115,0,625,12,1,
603530413,626,5,63,3,
6036109,0,327,3,110,
60370,327,3,111,0,
6038327,3,112,0,627,
603912,1,30444,628,5,
604063,3,109,0,327,
60413,110,0,327,3,
6042111,0,629,12,1,
604330474,630,5,63,3,
6044109,0,327,3,110,
60450,631,12,1,30503,
6046632,5,63,3,109,
60470,327,3,110,0,
6048327,3,111,0,327,
60493,112,0,327,3,
6050113,0,327,3,114,
60510,327,3,115,0,
6052633,12,1,30537,634,
60535,63,3,109,0,
6054327,3,110,0,327,
60553,111,0,327,3,
6056112,0,327,3,113,
60570,327,3,114,0,
6058327,3,115,0,327,
60593,116,0,327,3,
6060117,0,327,3,118,
60610,327,3,119,0,
6062327,3,120,0,327,
60633,121,0,327,3,
6064122,0,327,3,48,
60650,327,3,49,0,
6066327,3,50,0,327,
60673,51,0,327,3,
606852,0,327,3,53,
60690,327,3,54,0,
6070327,3,55,0,327,
60713,56,0,327,3,
607257,0,327,3,65,
60730,327,3,66,0,
6074327,3,67,0,327,
60753,68,0,327,3,
607669,0,327,3,70,
60770,327,3,71,0,
6078327,3,72,0,327,
60793,73,0,327,3,
608074,0,327,3,75,
60810,327,3,76,0,
6082327,3,77,0,327,
60833,78,0,327,3,
608479,0,327,3,80,
60850,327,3,81,0,
6086327,3,82,0,327,
60873,83,0,327,3,
608884,0,327,3,85,
60890,327,3,86,0,
6090327,3,87,0,327,
60913,88,0,327,3,
609289,0,327,3,90,
60930,327,3,95,0,
6094327,3,97,0,327,
60953,98,0,327,3,
609699,0,327,3,100,
60970,327,3,101,0,
6098635,12,1,30584,636,
60995,63,3,109,0,
6100327,3,110,0,327,
61013,111,0,327,3,
6102112,0,327,3,113,
61030,327,3,114,0,
6104327,3,115,0,327,
61053,116,0,327,3,
6106117,0,327,3,118,
61070,327,3,119,0,
6108327,3,120,0,327,
61093,121,0,327,3,
6110122,0,327,3,48,
61110,327,3,49,0,
6112327,3,50,0,327,
61133,51,0,327,3,
611452,0,327,3,53,
61150,327,3,54,0,
6116327,3,55,0,327,
61173,56,0,327,3,
611857,0,327,3,65,
61190,327,3,66,0,
6120327,3,67,0,327,
61213,68,0,327,3,
612269,0,327,3,70,
61230,327,3,71,0,
6124327,3,72,0,327,
61253,73,0,327,3,
612674,0,327,3,75,
61270,327,3,76,0,
6128327,3,77,0,327,
61293,78,0,327,3,
613079,0,327,3,80,
61310,327,3,81,0,
6132327,3,82,0,327,
61333,83,0,327,3,
613484,0,327,3,85,
61350,327,3,86,0,
6136327,3,87,0,327,
61373,88,0,327,3,
613889,0,327,3,90,
61390,327,3,95,0,
6140327,3,97,0,327,
61413,98,0,327,3,
614299,0,327,3,100,
61430,327,3,101,0,
6144327,3,102,0,327,
61453,103,0,327,3,
6146104,0,327,3,105,
61470,327,3,106,0,
6148327,3,107,0,327,
61493,108,0,327,637,
615011,1,484,0,638,
61514,38,72,0,84,
61520,84,0,80,0,
615395,0,82,0,69,
61540,83,0,80,0,
615579,0,78,0,83,
61560,69,0,95,0,
615769,0,86,0,69,
61580,78,0,84,0,
61591,-1,3,102,0,
6160327,3,103,0,327,
61613,104,0,327,3,
6162105,0,327,3,106,
61630,327,3,107,0,
6164327,3,108,0,327,
6165639,11,1,829,0,
6166330,1,-1,3,116,
61670,327,3,117,0,
6168327,3,118,0,327,
61693,119,0,327,3,
6170120,0,327,3,121,
61710,327,3,122,0,
6172327,3,48,0,327,
61733,49,0,327,3,
617450,0,327,3,51,
61750,327,3,52,0,
6176327,3,53,0,327,
61773,54,0,327,3,
617855,0,327,3,56,
61790,327,3,57,0,
6180327,3,65,0,327,
61813,66,0,327,3,
618267,0,327,3,68,
61830,327,3,69,0,
6184327,3,70,0,327,
61853,71,0,327,3,
618672,0,327,3,73,
61870,327,3,74,0,
6188327,3,75,0,327,
61893,76,0,327,3,
619077,0,327,3,78,
61910,327,3,79,0,
6192327,3,80,0,327,
61933,81,0,327,3,
619482,0,327,3,83,
61950,327,3,84,0,
6196327,3,85,0,327,
61973,86,0,327,3,
619887,0,327,3,88,
61990,327,3,89,0,
6200327,3,90,0,327,
62013,95,0,327,3,
620297,0,327,3,98,
62030,327,3,99,0,
6204327,3,100,0,327,
62053,101,0,327,3,
6206102,0,327,3,103,
62070,327,3,104,0,
6208327,3,105,0,327,
62093,106,0,327,3,
6210107,0,327,3,108,
62110,327,640,11,1,
6212829,0,330,1,-1,
62133,111,0,327,3,
6214112,0,327,3,113,
62150,327,3,114,0,
6216327,3,115,0,327,
62173,116,0,327,3,
6218117,0,327,3,118,
62190,327,3,119,0,
6220327,3,120,0,327,
62213,121,0,327,3,
6222122,0,327,3,48,
62230,327,3,49,0,
6224327,3,50,0,327,
62253,51,0,327,3,
622652,0,327,3,53,
62270,327,3,54,0,
6228327,3,55,0,327,
62293,56,0,327,3,
623057,0,327,3,65,
62310,327,3,66,0,
6232327,3,67,0,327,
62333,68,0,327,3,
623469,0,327,3,70,
62350,327,3,71,0,
6236327,3,72,0,327,
62373,73,0,327,3,
623874,0,327,3,75,
62390,327,3,76,0,
6240327,3,77,0,327,
62413,78,0,327,3,
624279,0,327,3,80,
62430,327,3,81,0,
6244327,3,82,0,327,
62453,83,0,327,3,
624684,0,327,3,85,
62470,327,3,86,0,
6248327,3,87,0,327,
62493,88,0,327,3,
625089,0,327,3,90,
62510,327,3,95,0,
6252327,3,97,0,327,
62533,98,0,327,3,
625499,0,327,3,100,
62550,327,3,101,0,
6256327,3,102,0,327,
62573,103,0,327,3,
6258104,0,327,3,105,
62590,327,3,106,0,
6260327,3,107,0,327,
62613,108,0,327,641,
626211,1,829,0,330,
62631,-1,3,112,0,
6264327,3,113,0,327,
62653,114,0,327,3,
6266115,0,327,3,116,
62670,327,3,117,0,
6268327,3,118,0,327,
62693,119,0,327,3,
6270120,0,327,3,121,
62710,327,3,122,0,
6272327,3,48,0,327,
62733,49,0,327,3,
627450,0,327,3,51,
62750,327,3,52,0,
6276327,3,53,0,327,
62773,54,0,327,3,
627855,0,327,3,56,
62790,327,3,57,0,
6280327,3,65,0,327,
62813,66,0,327,3,
628267,0,327,3,68,
62830,327,3,69,0,
6284327,3,70,0,327,
62853,71,0,327,3,
628672,0,327,3,73,
62870,327,3,74,0,
6288327,3,75,0,327,
62893,76,0,327,3,
629077,0,327,3,78,
62910,327,3,79,0,
6292327,3,80,0,327,
62933,81,0,327,3,
629482,0,327,3,83,
62950,327,3,84,0,
6296327,3,85,0,327,
62973,86,0,327,3,
629887,0,327,3,88,
62990,327,3,89,0,
6300327,3,90,0,327,
63013,95,0,327,3,
630297,0,327,3,98,
63030,327,3,99,0,
6304327,3,100,0,327,
63053,101,0,327,3,
6306102,0,327,3,103,
63070,327,3,104,0,
6308327,3,105,0,327,
63093,106,0,327,3,
6310107,0,327,3,108,
63110,327,642,11,1,
6312829,0,330,1,-1,
63133,113,0,327,3,
6314114,0,327,3,115,
63150,327,3,116,0,
6316327,3,117,0,327,
63173,118,0,327,3,
6318119,0,327,3,120,
63190,327,3,121,0,
6320327,3,122,0,327,
63213,48,0,327,3,
632249,0,327,3,50,
63230,327,3,51,0,
6324327,3,52,0,327,
63253,53,0,327,3,
632654,0,327,3,55,
63270,327,3,56,0,
6328327,3,57,0,327,
63293,65,0,327,3,
633066,0,327,3,67,
63310,327,3,68,0,
6332327,3,69,0,327,
63333,70,0,327,3,
633471,0,327,3,72,
63350,327,3,73,0,
6336327,3,74,0,327,
63373,75,0,327,3,
633876,0,327,3,77,
63390,327,3,78,0,
6340327,3,79,0,327,
63413,80,0,327,3,
634281,0,327,3,82,
63430,327,3,83,0,
6344327,3,84,0,327,
63453,85,0,327,3,
634686,0,327,3,87,
63470,327,3,88,0,
6348327,3,89,0,327,
63493,90,0,327,3,
635095,0,327,3,97,
63510,327,3,98,0,
6352327,3,99,0,327,
63533,100,0,327,3,
6354101,0,327,3,102,
63550,327,3,103,0,
6356327,3,104,0,327,
63573,105,0,327,3,
6358106,0,327,3,107,
63590,327,3,108,0,
6360327,643,11,1,829,
63610,330,1,-1,3,
6362116,0,327,3,117,
63630,327,3,118,0,
6364327,3,119,0,327,
63653,120,0,327,3,
6366121,0,327,3,122,
63670,327,3,48,0,
6368327,3,49,0,327,
63693,50,0,327,3,
637051,0,327,3,52,
63710,327,3,53,0,
6372327,3,54,0,327,
63733,55,0,327,3,
637456,0,327,3,57,
63750,327,3,65,0,
6376327,3,66,0,327,
63773,67,0,327,3,
637868,0,327,3,69,
63790,327,3,70,0,
6380327,3,71,0,327,
63813,72,0,327,3,
638273,0,327,3,74,
63830,327,3,75,0,
6384327,3,76,0,327,
63853,77,0,327,3,
638678,0,327,3,79,
63870,327,3,80,0,
6388327,3,81,0,327,
63893,82,0,327,3,
639083,0,327,3,84,
63910,327,3,85,0,
6392327,3,86,0,327,
63933,87,0,327,3,
639488,0,327,3,89,
63950,327,3,90,0,
6396327,3,95,0,327,
63973,97,0,327,3,
639898,0,327,3,99,
63990,327,3,100,0,
6400327,3,101,0,327,
64013,102,0,327,3,
6402103,0,327,3,104,
64030,327,3,105,0,
6404327,3,106,0,327,
64053,107,0,327,3,
6406108,0,327,644,11,
64071,829,0,330,1,
6408-1,3,102,0,327,
64093,103,0,327,3,
6410104,0,327,3,105,
64110,327,3,106,0,
6412327,3,107,0,327,
64133,108,0,327,645,
641411,1,829,0,330,
64151,-1,3,115,0,
6416327,3,116,0,327,
64173,117,0,327,3,
6418118,0,327,3,119,
64190,327,3,120,0,
6420327,3,121,0,327,
64213,122,0,327,3,
642248,0,327,3,49,
64230,327,3,50,0,
6424327,3,51,0,327,
64253,52,0,327,3,
642653,0,327,3,54,
64270,327,3,55,0,
6428327,3,56,0,327,
64293,57,0,327,3,
643065,0,327,3,66,
64310,327,3,67,0,
6432327,3,68,0,327,
64333,69,0,327,3,
643470,0,327,3,71,
64350,327,3,72,0,
6436327,3,73,0,327,
64373,74,0,327,3,
643875,0,327,3,76,
64390,327,3,77,0,
6440327,3,78,0,327,
64413,79,0,327,3,
644280,0,327,3,81,
64430,327,3,82,0,
6444327,3,83,0,327,
64453,84,0,327,3,
644685,0,327,3,86,
64470,327,3,87,0,
6448327,3,88,0,327,
64493,89,0,327,3,
645090,0,327,3,95,
64510,327,3,97,0,
6452327,3,98,0,327,
64533,99,0,327,3,
6454100,0,327,3,101,
64550,327,3,102,0,
6456327,3,103,0,327,
64573,104,0,327,3,
6458105,0,327,3,106,
64590,327,3,107,0,
6460327,3,108,0,327,
6461646,11,1,829,0,
6462330,1,-1,3,97,
64630,327,3,98,0,
6464327,3,99,0,327,
64653,100,0,327,3,
6466101,0,327,3,102,
64670,327,3,103,0,
6468327,3,104,0,327,
64693,105,0,327,3,
6470106,0,327,3,107,
64710,327,3,108,0,
6472327,647,11,1,829,
64730,330,1,-1,3,
6474113,0,327,3,114,
64750,327,3,115,0,
6476327,3,116,0,327,
64773,117,0,327,3,
6478118,0,327,3,119,
64790,327,3,120,0,
6480327,3,121,0,327,
64813,122,0,327,3,
648248,0,327,3,49,
64830,327,3,50,0,
6484327,3,51,0,327,
64853,52,0,327,3,
648653,0,327,3,54,
64870,327,3,55,0,
6488327,3,56,0,327,
64893,57,0,327,3,
649065,0,327,3,66,
64910,327,3,67,0,
6492327,3,68,0,327,
64933,69,0,327,3,
649470,0,327,3,71,
64950,327,3,72,0,
6496327,3,73,0,327,
64973,74,0,327,3,
649875,0,327,3,76,
64990,327,3,77,0,
6500327,3,78,0,327,
65013,79,0,327,3,
650280,0,327,3,81,
65030,327,3,82,0,
6504327,3,83,0,327,
65053,84,0,327,3,
650685,0,327,3,86,
65070,327,3,87,0,
6508327,3,88,0,327,
65093,89,0,327,3,
651090,0,327,3,95,
65110,327,3,97,0,
6512327,3,98,0,327,
65133,99,0,327,3,
6514100,0,327,3,101,
65150,327,3,102,0,
6516327,3,103,0,327,
65173,104,0,327,3,
6518105,0,327,3,106,
65190,327,3,107,0,
6520327,3,108,0,327,
6521648,11,1,829,0,
6522330,1,-1,3,117,
65230,327,3,118,0,
6524327,3,119,0,327,
65253,120,0,327,3,
6526121,0,327,3,122,
65270,327,3,48,0,
6528327,3,49,0,327,
65293,50,0,327,3,
653051,0,327,3,52,
65310,327,3,53,0,
6532327,3,54,0,327,
65333,55,0,327,3,
653456,0,327,3,57,
65350,327,3,65,0,
6536327,3,66,0,327,
65373,67,0,327,3,
653868,0,327,3,69,
65390,327,3,70,0,
6540327,3,71,0,327,
65413,72,0,327,3,
654273,0,327,3,74,
65430,327,3,75,0,
6544327,3,76,0,327,
65453,77,0,327,3,
654678,0,327,3,79,
65470,327,3,80,0,
6548327,3,81,0,327,
65493,82,0,327,3,
655083,0,327,3,84,
65510,327,3,85,0,
6552327,3,86,0,327,
65533,87,0,327,3,
655488,0,327,3,89,
65550,327,3,90,0,
6556327,3,95,0,327,
65573,97,0,327,3,
655898,0,327,3,99,
65590,327,3,100,0,
6560327,3,101,0,327,
65613,102,0,327,3,
6562103,0,327,3,104,
65630,327,3,105,0,
6564327,3,106,0,327,
65653,107,0,327,3,
6566108,0,327,649,11,
65671,829,0,330,1,
6568-1,3,117,0,327,
65693,118,0,327,3,
6570119,0,327,3,120,
65710,327,3,121,0,
6572327,3,122,0,327,
65733,48,0,327,3,
657449,0,327,3,50,
65750,327,3,51,0,
6576327,3,52,0,327,
65773,53,0,327,3,
657854,0,327,3,55,
65790,327,3,56,0,
6580327,3,57,0,327,
65813,65,0,327,3,
658266,0,327,3,67,
65830,327,3,68,0,
6584327,3,69,0,327,
65853,70,0,327,3,
658671,0,327,3,72,
65870,327,3,73,0,
6588327,3,74,0,327,
65893,75,0,327,3,
659076,0,327,3,77,
65910,327,3,78,0,
6592327,3,79,0,327,
65933,80,0,327,3,
659481,0,327,3,82,
65950,327,3,83,0,
6596327,3,84,0,327,
65973,85,0,327,3,
659886,0,327,3,87,
65990,327,3,88,0,
6600327,3,89,0,327,
66013,90,0,327,3,
660295,0,327,3,97,
66030,327,3,98,0,
6604327,3,99,0,327,
66053,100,0,327,3,
6606101,0,327,3,102,
66070,327,3,103,0,
6608327,3,104,0,327,
66093,105,0,327,3,
6610106,0,327,3,107,
66110,327,3,108,0,
6612327,650,11,1,829,
66130,330,1,-1,3,
6614105,0,651,12,1,
661531673,652,5,63,3,
6616109,0,327,3,110,
66170,653,12,1,31702,
6618654,5,63,3,109,
66190,327,3,110,0,
6620327,3,111,0,327,
66213,112,0,327,3,
6622113,0,327,3,114,
66230,327,3,115,0,
6624327,3,116,0,655,
662512,1,31737,656,5,
662663,3,109,0,327,
66273,110,0,327,3,
6628111,0,327,3,112,
66290,327,3,113,0,
6630327,3,114,0,327,
66313,115,0,327,3,
6632116,0,327,3,117,
66330,327,3,118,0,
6634327,3,119,0,327,
66353,120,0,327,3,
6636121,0,327,3,122,
66370,327,3,48,0,
6638327,3,49,0,327,
66393,50,0,327,3,
664051,0,327,3,52,
66410,327,3,53,0,
6642327,3,54,0,327,
66433,55,0,327,3,
664456,0,327,3,57,
66450,327,3,65,0,
6646327,3,66,0,327,
66473,67,0,327,3,
664868,0,327,3,69,
66490,327,3,70,0,
6650327,3,71,0,327,
66513,72,0,327,3,
665273,0,327,3,74,
66530,327,3,75,0,
6654327,3,76,0,327,
66553,77,0,327,3,
665678,0,327,3,79,
66570,327,3,80,0,
6658327,3,81,0,327,
66593,82,0,327,3,
666083,0,327,3,84,
66610,327,3,85,0,
6662327,3,86,0,327,
66633,87,0,327,3,
666488,0,327,3,89,
66650,327,3,90,0,
6666327,3,95,0,327,
66673,97,0,327,3,
666898,0,327,3,99,
66690,327,3,100,0,
6670327,3,101,0,657,
667112,1,31784,658,5,
667263,3,109,0,327,
66733,110,0,327,3,
6674111,0,327,3,112,
66750,327,3,113,0,
6676327,3,114,0,327,
66773,115,0,327,3,
6678116,0,327,3,117,
66790,327,3,118,0,
6680327,3,119,0,327,
66813,120,0,327,3,
6682121,0,327,3,122,
66830,327,3,48,0,
6684327,3,49,0,327,
66853,50,0,327,3,
668651,0,327,3,52,
66870,327,3,53,0,
6688327,3,54,0,327,
66893,55,0,327,3,
669056,0,327,3,57,
66910,327,3,65,0,
6692327,3,66,0,327,
66933,67,0,327,3,
669468,0,327,3,69,
66950,327,3,70,0,
6696327,3,71,0,327,
66973,72,0,327,3,
669873,0,327,3,74,
66990,327,3,75,0,
6700327,3,76,0,327,
67013,77,0,327,3,
670278,0,327,3,79,
67030,327,3,80,0,
6704327,3,81,0,327,
67053,82,0,327,3,
670683,0,327,3,84,
67070,327,3,85,0,
6708327,3,86,0,327,
67093,87,0,327,3,
671088,0,327,3,89,
67110,327,3,90,0,
6712327,3,95,0,327,
67133,97,0,327,3,
671498,0,327,3,99,
67150,327,3,100,0,
6716327,3,101,0,327,
67173,102,0,327,3,
6718103,0,659,12,1,
671931833,660,5,63,3,
6720109,0,327,3,110,
67210,327,3,111,0,
6722327,3,112,0,327,
67233,113,0,327,3,
6724114,0,327,3,115,
67250,327,3,116,0,
6726327,3,117,0,327,
67273,118,0,327,3,
6728119,0,327,3,120,
67290,327,3,121,0,
6730327,3,122,0,327,
67313,48,0,327,3,
673249,0,327,3,50,
67330,327,3,51,0,
6734327,3,52,0,327,
67353,53,0,327,3,
673654,0,327,3,55,
67370,327,3,56,0,
6738327,3,57,0,327,
67393,65,0,327,3,
674066,0,327,3,67,
67410,327,3,68,0,
6742327,3,69,0,327,
67433,70,0,327,3,
674471,0,327,3,72,
67450,327,3,73,0,
6746327,3,74,0,327,
67473,75,0,327,3,
674876,0,327,3,77,
67490,327,3,78,0,
6750327,3,79,0,327,
67513,80,0,327,3,
675281,0,327,3,82,
67530,327,3,83,0,
6754327,3,84,0,327,
67553,85,0,327,3,
675686,0,327,3,87,
67570,327,3,88,0,
6758327,3,89,0,327,
67593,90,0,327,3,
676095,0,327,3,97,
67610,327,3,98,0,
6762327,3,99,0,327,
67633,100,0,327,3,
6764101,0,661,12,1,
676531880,662,5,63,3,
6766109,0,327,3,110,
67670,327,3,111,0,
6768327,3,112,0,327,
67693,113,0,327,3,
6770114,0,663,12,1,
677131913,664,5,63,3,
6772109,0,327,3,110,
67730,327,3,111,0,
6774327,3,112,0,327,
67753,113,0,327,3,
6776114,0,327,3,115,
67770,327,3,116,0,
6778327,3,117,0,327,
67793,118,0,327,3,
6780119,0,327,3,120,
67810,327,3,121,0,
6782327,3,122,0,327,
67833,48,0,327,3,
678449,0,327,3,50,
67850,327,3,51,0,
6786327,3,52,0,327,
67873,53,0,327,3,
678854,0,327,3,55,
67890,327,3,56,0,
6790327,3,57,0,327,
67913,65,0,327,3,
679266,0,327,3,67,
67930,327,3,68,0,
6794327,3,69,0,327,
67953,70,0,327,3,
679671,0,327,3,72,
67970,327,3,73,0,
6798327,3,74,0,327,
67993,75,0,327,3,
680076,0,327,3,77,
68010,327,3,78,0,
6802327,3,79,0,327,
68033,80,0,327,3,
680481,0,327,3,82,
68050,327,3,83,0,
6806327,3,84,0,327,
68073,85,0,327,3,
680886,0,327,3,87,
68090,327,3,88,0,
6810327,3,89,0,327,
68113,90,0,327,3,
681295,0,327,3,97,
68130,327,3,98,0,
6814327,3,99,0,327,
68153,100,0,327,3,
6816101,0,327,3,102,
68170,327,3,103,0,
6818327,3,104,0,327,
68193,105,0,327,3,
6820106,0,327,3,107,
68210,327,3,108,0,
6822327,665,11,1,283,
68230,666,4,24,73,
68240,78,0,84,0,
682569,0,71,0,69,
68260,82,0,95,0,
682784,0,89,0,80,
68280,69,0,1,-1,
68293,115,0,327,3,
6830116,0,327,3,117,
68310,327,3,118,0,
6832327,3,119,0,327,
68333,120,0,327,3,
6834121,0,327,3,122,
68350,327,3,48,0,
6836327,3,49,0,327,
68373,50,0,327,3,
683851,0,327,3,52,
68390,327,3,53,0,
6840327,3,54,0,327,
68413,55,0,327,3,
684256,0,327,3,57,
68430,327,3,65,0,
6844327,3,66,0,327,
68453,67,0,327,3,
684668,0,327,3,69,
68470,327,3,70,0,
6848327,3,71,0,327,
68493,72,0,327,3,
685073,0,327,3,74,
68510,327,3,75,0,
6852327,3,76,0,327,
68533,77,0,327,3,
685478,0,327,3,79,
68550,327,3,80,0,
6856327,3,81,0,327,
68573,82,0,327,3,
685883,0,327,3,84,
68590,327,3,85,0,
6860327,3,86,0,327,
68613,87,0,327,3,
686288,0,327,3,89,
68630,327,3,90,0,
6864327,3,95,0,327,
68653,97,0,327,3,
686698,0,327,3,99,
68670,327,3,100,0,
6868327,3,101,0,327,
68693,102,0,327,3,
6870103,0,327,3,104,
68710,327,3,105,0,
6872327,3,106,0,327,
68733,107,0,327,3,
6874108,0,327,667,11,
68751,829,0,330,1,
6876-1,3,102,0,327,
68773,103,0,327,3,
6878104,0,327,3,105,
68790,327,3,106,0,
6880327,3,107,0,327,
68813,108,0,327,668,
688211,1,829,0,330,
68831,-1,3,104,0,
6884327,3,105,0,327,
68853,106,0,327,3,
6886107,0,327,3,108,
68870,327,669,11,1,
6888829,0,330,1,-1,
68893,102,0,327,3,
6890103,0,327,3,104,
68910,327,3,105,0,
6892327,3,106,0,327,
68933,107,0,327,3,
6894108,0,327,670,11,
68951,829,0,330,1,
6896-1,3,117,0,327,
68973,118,0,327,3,
6898119,0,327,3,120,
68990,327,3,121,0,
6900327,3,122,0,327,
69013,48,0,327,3,
690249,0,327,3,50,
69030,327,3,51,0,
6904327,3,52,0,327,
69053,53,0,327,3,
690654,0,327,3,55,
69070,327,3,56,0,
6908327,3,57,0,327,
69093,65,0,327,3,
691066,0,327,3,67,
69110,327,3,68,0,
6912327,3,69,0,327,
69133,70,0,327,3,
691471,0,327,3,72,
69150,327,3,73,0,
6916327,3,74,0,327,
69173,75,0,327,3,
691876,0,327,3,77,
69190,327,3,78,0,
6920327,3,79,0,327,
69213,80,0,327,3,
692281,0,327,3,82,
69230,327,3,83,0,
6924327,3,84,0,327,
69253,85,0,327,3,
692686,0,327,3,87,
69270,327,3,88,0,
6928327,3,89,0,327,
69293,90,0,327,3,
693095,0,327,3,97,
69310,327,3,98,0,
6932327,3,99,0,327,
69333,100,0,327,3,
6934101,0,327,3,102,
69350,327,3,103,0,
6936327,3,104,0,327,
69373,105,0,327,3,
6938106,0,327,3,107,
69390,327,3,108,0,
6940327,671,11,1,829,
69410,330,1,-1,3,
6942111,0,327,3,112,
69430,327,3,113,0,
6944327,3,114,0,327,
69453,115,0,327,3,
6946116,0,327,3,117,
69470,327,3,118,0,
6948327,3,119,0,327,
69493,120,0,327,3,
6950121,0,327,3,122,
69510,327,3,48,0,
6952327,3,49,0,327,
69533,50,0,327,3,
695451,0,327,3,52,
69550,327,3,53,0,
6956327,3,54,0,327,
69573,55,0,327,3,
695856,0,327,3,57,
69590,327,3,65,0,
6960327,3,66,0,327,
69613,67,0,327,3,
696268,0,327,3,69,
69630,327,3,70,0,
6964327,3,71,0,327,
69653,72,0,327,3,
696673,0,327,3,74,
69670,327,3,75,0,
6968327,3,76,0,327,
69693,77,0,327,3,
697078,0,327,3,79,
69710,327,3,80,0,
6972327,3,81,0,327,
69733,82,0,327,3,
697483,0,327,3,84,
69750,327,3,85,0,
6976327,3,86,0,327,
69773,87,0,327,3,
697888,0,327,3,89,
69790,327,3,90,0,
6980327,3,95,0,327,
69813,97,0,327,3,
698298,0,327,3,99,
69830,327,3,100,0,
6984327,3,101,0,327,
69853,102,0,672,12,
69861,32441,673,5,63,
69873,109,0,327,3,
6988110,0,327,3,111,
69890,327,3,112,0,
6990327,3,113,0,327,
69913,114,0,327,3,
6992115,0,327,3,116,
69930,327,3,117,0,
6994327,3,118,0,327,
69953,119,0,327,3,
6996120,0,327,3,121,
69970,327,3,122,0,
6998327,3,48,0,327,
69993,49,0,327,3,
700050,0,327,3,51,
70010,327,3,52,0,
7002327,3,53,0,327,
70033,54,0,327,3,
700455,0,327,3,56,
70050,327,3,57,0,
7006327,3,65,0,327,
70073,66,0,327,3,
700867,0,327,3,68,
70090,327,3,69,0,
7010327,3,70,0,327,
70113,71,0,327,3,
701272,0,327,3,73,
70130,327,3,74,0,
7014327,3,75,0,327,
70153,76,0,327,3,
701677,0,327,3,78,
70170,327,3,79,0,
7018327,3,80,0,327,
70193,81,0,327,3,
702082,0,327,3,83,
70210,327,3,84,0,
7022327,3,85,0,327,
70233,86,0,327,3,
702487,0,327,3,88,
70250,327,3,89,0,
7026327,3,90,0,327,
70273,95,0,327,3,
702897,0,327,3,98,
70290,327,3,99,0,
7030327,3,100,0,327,
70313,101,0,327,3,
7032102,0,327,3,103,
70330,327,3,104,0,
7034327,3,105,0,327,
70353,106,0,327,3,
7036107,0,327,3,108,
70370,327,674,11,1,
7038209,0,675,4,4,
703973,0,70,0,1,
7040-1,3,103,0,327,
70413,104,0,327,3,
7042105,0,327,3,106,
70430,327,3,107,0,
7044327,3,108,0,327,
7045676,11,1,829,0,
7046330,1,-1,3,106,
70470,677,12,1,32634,
7048678,5,63,3,109,
70490,327,3,110,0,
7050327,3,111,0,327,
70513,112,0,327,3,
7052113,0,327,3,114,
70530,327,3,115,0,
7054327,3,116,0,327,
70553,117,0,679,12,
70561,32670,680,5,63,
70573,109,0,681,12,
70581,32698,682,5,63,
70593,109,0,327,3,
7060110,0,327,3,111,
70610,327,3,112,0,
7062683,12,1,32729,684,
70635,63,3,109,0,
7064327,3,110,0,327,
70653,111,0,327,3,
7066112,0,327,3,113,
70670,327,3,114,0,
7068327,3,115,0,327,
70693,116,0,327,3,
7070117,0,327,3,118,
70710,327,3,119,0,
7072327,3,120,0,327,
70733,121,0,327,3,
7074122,0,327,3,48,
70750,327,3,49,0,
7076327,3,50,0,327,
70773,51,0,327,3,
707852,0,327,3,53,
70790,327,3,54,0,
7080327,3,55,0,327,
70813,56,0,327,3,
708257,0,327,3,65,
70830,327,3,66,0,
7084327,3,67,0,327,
70853,68,0,327,3,
708669,0,327,3,70,
70870,327,3,71,0,
7088327,3,72,0,327,
70893,73,0,327,3,
709074,0,327,3,75,
70910,327,3,76,0,
7092327,3,77,0,327,
70933,78,0,327,3,
709479,0,327,3,80,
70950,327,3,81,0,
7096327,3,82,0,327,
70973,83,0,327,3,
709884,0,327,3,85,
70990,327,3,86,0,
7100327,3,87,0,327,
71013,88,0,327,3,
710289,0,327,3,90,
71030,327,3,95,0,
7104327,3,97,0,327,
71053,98,0,327,3,
710699,0,327,3,100,
71070,327,3,101,0,
7108327,3,102,0,327,
71093,103,0,327,3,
7110104,0,327,3,105,
71110,327,3,106,0,
7112327,3,107,0,327,
71133,108,0,327,685,
711411,1,265,0,686,
71154,8,74,0,85,
71160,77,0,80,0,
71171,-1,3,113,0,
7118327,3,114,0,327,
71193,115,0,327,3,
7120116,0,327,3,117,
71210,327,3,118,0,
7122327,3,119,0,327,
71233,120,0,327,3,
7124121,0,327,3,122,
71250,327,3,48,0,
7126327,3,49,0,327,
71273,50,0,327,3,
712851,0,327,3,52,
71290,327,3,53,0,
7130327,3,54,0,327,
71313,55,0,327,3,
713256,0,327,3,57,
71330,327,3,65,0,
7134327,3,66,0,327,
71353,67,0,327,3,
713668,0,327,3,69,
71370,327,3,70,0,
7138327,3,71,0,327,
71393,72,0,327,3,
714073,0,327,3,74,
71410,327,3,75,0,
7142327,3,76,0,327,
71433,77,0,327,3,
714478,0,327,3,79,
71450,327,3,80,0,
7146327,3,81,0,327,
71473,82,0,327,3,
714883,0,327,3,84,
71490,327,3,85,0,
7150327,3,86,0,327,
71513,87,0,327,3,
715288,0,327,3,89,
71530,327,3,90,0,
7154327,3,95,0,327,
71553,97,0,327,3,
715698,0,327,3,99,
71570,327,3,100,0,
7158327,3,101,0,327,
71593,102,0,327,3,
7160103,0,327,3,104,
71610,327,3,105,0,
7162327,3,106,0,327,
71633,107,0,327,3,
7164108,0,327,687,11,
71651,829,0,330,1,
7166-1,3,110,0,327,
71673,111,0,327,3,
7168112,0,327,3,113,
71690,327,3,114,0,
7170327,3,115,0,327,
71713,116,0,327,3,
7172117,0,327,3,118,
71730,327,3,119,0,
7174327,3,120,0,327,
71753,121,0,327,3,
7176122,0,327,3,48,
71770,327,3,49,0,
7178327,3,50,0,327,
71793,51,0,327,3,
718052,0,327,3,53,
71810,327,3,54,0,
7182327,3,55,0,327,
71833,56,0,327,3,
718457,0,327,3,65,
71850,327,3,66,0,
7186327,3,67,0,327,
71873,68,0,327,3,
718869,0,327,3,70,
71890,327,3,71,0,
7190327,3,72,0,327,
71913,73,0,327,3,
719274,0,327,3,75,
71930,327,3,76,0,
7194327,3,77,0,327,
71953,78,0,327,3,
719679,0,327,3,80,
71970,327,3,81,0,
7198327,3,82,0,327,
71993,83,0,327,3,
720084,0,327,3,85,
72010,327,3,86,0,
7202327,3,87,0,327,
72033,88,0,327,3,
720489,0,327,3,90,
72050,327,3,95,0,
7206327,3,97,0,327,
72073,98,0,327,3,
720899,0,327,3,100,
72090,327,3,101,0,
7210327,3,102,0,327,
72113,103,0,327,3,
7212104,0,327,3,105,
72130,327,3,106,0,
7214327,3,107,0,327,
72153,108,0,327,688,
721611,1,829,0,330,
72171,-1,3,118,0,
7218327,3,119,0,327,
72193,120,0,327,3,
7220121,0,327,3,122,
72210,327,3,48,0,
7222327,3,49,0,327,
72233,50,0,327,3,
722451,0,327,3,52,
72250,327,3,53,0,
7226327,3,54,0,327,
72273,55,0,327,3,
722856,0,327,3,57,
72290,327,3,65,0,
7230327,3,66,0,327,
72313,67,0,327,3,
723268,0,327,3,69,
72330,327,3,70,0,
7234327,3,71,0,327,
72353,72,0,327,3,
723673,0,327,3,74,
72370,327,3,75,0,
7238327,3,76,0,327,
72393,77,0,327,3,
724078,0,327,3,79,
72410,327,3,80,0,
7242327,3,81,0,327,
72433,82,0,327,3,
724483,0,327,3,84,
72450,327,3,85,0,
7246327,3,86,0,327,
72473,87,0,327,3,
724888,0,327,3,89,
72490,327,3,90,0,
7250327,3,95,0,327,
72513,97,0,327,3,
725298,0,327,3,99,
72530,327,3,100,0,
7254327,3,101,0,327,
72553,102,0,327,3,
7256103,0,327,3,104,
72570,327,3,105,0,
7258327,3,106,0,327,
72593,107,0,327,3,
7260108,0,327,689,11,
72611,829,0,330,1,
7262-1,3,107,0,690,
726312,1,33115,691,5,
726463,3,109,0,327,
72653,110,0,327,3,
7266111,0,327,3,112,
72670,327,3,113,0,
7268327,3,114,0,327,
72693,115,0,327,3,
7270116,0,327,3,117,
72710,327,3,118,0,
7272327,3,119,0,327,
72733,120,0,327,3,
7274121,0,327,3,122,
72750,327,3,48,0,
7276327,3,49,0,327,
72773,50,0,327,3,
727851,0,327,3,52,
72790,327,3,53,0,
7280327,3,54,0,327,
72813,55,0,327,3,
728256,0,327,3,57,
72830,327,3,65,0,
7284327,3,66,0,327,
72853,67,0,327,3,
728668,0,327,3,69,
72870,327,3,70,0,
7288327,3,71,0,327,
72893,72,0,327,3,
729073,0,327,3,74,
72910,327,3,75,0,
7292327,3,76,0,327,
72933,77,0,327,3,
729478,0,327,3,79,
72950,327,3,80,0,
7296327,3,81,0,327,
72973,82,0,327,3,
729883,0,327,3,84,
72990,327,3,85,0,
7300327,3,86,0,327,
73013,87,0,327,3,
730288,0,327,3,89,
73030,327,3,90,0,
7304327,3,95,0,327,
73053,97,0,327,3,
730698,0,327,3,99,
73070,327,3,100,0,
7308327,3,101,0,692,
730912,1,33162,693,5,
731063,3,109,0,327,
73113,110,0,327,3,
7312111,0,327,3,112,
73130,327,3,113,0,
7314327,3,114,0,327,
73153,115,0,327,3,
7316116,0,327,3,117,
73170,327,3,118,0,
7318327,3,119,0,327,
73193,120,0,327,3,
7320121,0,694,12,1,
732133202,695,5,63,3,
7322109,0,327,3,110,
73230,327,3,111,0,
7324327,3,112,0,327,
73253,113,0,327,3,
7326114,0,327,3,115,
73270,327,3,116,0,
7328327,3,117,0,327,
73293,118,0,327,3,
7330119,0,327,3,120,
73310,327,3,121,0,
7332327,3,122,0,327,
73333,48,0,327,3,
733449,0,327,3,50,
73350,327,3,51,0,
7336327,3,52,0,327,
73373,53,0,327,3,
733854,0,327,3,55,
73390,327,3,56,0,
7340327,3,57,0,327,
73413,65,0,327,3,
734266,0,327,3,67,
73430,327,3,68,0,
7344327,3,69,0,327,
73453,70,0,327,3,
734671,0,327,3,72,
73470,327,3,73,0,
7348327,3,74,0,327,
73493,75,0,327,3,
735076,0,327,3,77,
73510,327,3,78,0,
7352327,3,79,0,327,
73533,80,0,327,3,
735481,0,327,3,82,
73550,327,3,83,0,
7356327,3,84,0,327,
73573,85,0,327,3,
735886,0,327,3,87,
73590,327,3,88,0,
7360327,3,89,0,327,
73613,90,0,327,3,
736295,0,327,3,97,
73630,327,3,98,0,
7364327,3,99,0,327,
73653,100,0,327,3,
7366101,0,327,3,102,
73670,327,3,103,0,
7368327,3,104,0,327,
73693,105,0,327,3,
7370106,0,327,3,107,
73710,327,3,108,0,
7372327,696,11,1,313,
73730,697,4,16,75,
73740,69,0,89,0,
737595,0,84,0,89,
73760,80,0,69,0,
73771,-1,3,122,0,
7378327,3,48,0,327,
73793,49,0,327,3,
738050,0,327,3,51,
73810,327,3,52,0,
7382327,3,53,0,327,
73833,54,0,327,3,
738455,0,327,3,56,
73850,327,3,57,0,
7386327,3,65,0,327,
73873,66,0,327,3,
738867,0,327,3,68,
73890,327,3,69,0,
7390327,3,70,0,327,
73913,71,0,327,3,
739272,0,327,3,73,
73930,327,3,74,0,
7394327,3,75,0,327,
73953,76,0,327,3,
739677,0,327,3,78,
73970,327,3,79,0,
7398327,3,80,0,327,
73993,81,0,327,3,
740082,0,327,3,83,
74010,327,3,84,0,
7402327,3,85,0,327,
74033,86,0,327,3,
740487,0,327,3,88,
74050,327,3,89,0,
7406327,3,90,0,327,
74073,95,0,327,3,
740897,0,327,3,98,
74090,327,3,99,0,
7410327,3,100,0,327,
74113,101,0,327,3,
7412102,0,327,3,103,
74130,327,3,104,0,
7414327,3,105,0,327,
74153,106,0,327,3,
7416107,0,327,3,108,
74170,327,698,11,1,
7418829,0,330,1,-1,
74193,102,0,327,3,
7420103,0,327,3,104,
74210,327,3,105,0,
7422327,3,106,0,327,
74233,107,0,327,3,
7424108,0,327,699,11,
74251,829,0,330,1,
7426-1,3,108,0,700,
742712,1,33476,701,5,
742863,3,109,0,327,
74293,110,0,327,3,
7430111,0,327,3,112,
74310,327,3,113,0,
7432327,3,114,0,327,
74333,115,0,327,3,
7434116,0,327,3,117,
74350,327,3,118,0,
7436327,3,119,0,327,
74373,120,0,327,3,
7438121,0,327,3,122,
74390,327,3,48,0,
7440327,3,49,0,327,
74413,50,0,327,3,
744251,0,327,3,52,
74430,327,3,53,0,
7444327,3,54,0,327,
74453,55,0,327,3,
744656,0,327,3,57,
74470,327,3,65,0,
7448327,3,66,0,327,
74493,67,0,327,3,
745068,0,327,3,69,
74510,327,3,70,0,
7452327,3,71,0,327,
74533,72,0,327,3,
745473,0,327,3,74,
74550,327,3,75,0,
7456327,3,76,0,327,
74573,77,0,327,3,
745878,0,327,3,79,
74590,327,3,80,0,
7460327,3,81,0,327,
74613,82,0,327,3,
746283,0,327,3,84,
74630,327,3,85,0,
7464327,3,86,0,327,
74653,87,0,327,3,
746688,0,327,3,89,
74670,327,3,90,0,
7468327,3,95,0,327,
74693,97,0,702,12,
74701,33519,703,5,63,
74713,109,0,327,3,
7472110,0,704,12,1,
747333548,705,5,63,3,
7474109,0,327,3,110,
74750,327,3,111,0,
7476327,3,112,0,327,
74773,113,0,327,3,
7478114,0,327,3,115,
74790,327,3,116,0,
7480327,3,117,0,327,
74813,118,0,327,3,
7482119,0,327,3,120,
74830,327,3,121,0,
7484327,3,122,0,327,
74853,48,0,327,3,
748649,0,327,3,50,
74870,327,3,51,0,
7488327,3,52,0,327,
74893,53,0,327,3,
749054,0,327,3,55,
74910,327,3,56,0,
7492327,3,57,0,327,
74933,65,0,327,3,
749466,0,327,3,67,
74950,327,3,68,0,
7496327,3,69,0,327,
74973,70,0,327,3,
749871,0,327,3,72,
74990,327,3,73,0,
7500327,3,74,0,327,
75013,75,0,327,3,
750276,0,327,3,77,
75030,327,3,78,0,
7504327,3,79,0,327,
75053,80,0,327,3,
750681,0,327,3,82,
75070,327,3,83,0,
7508327,3,84,0,327,
75093,85,0,327,3,
751086,0,327,3,87,
75110,327,3,88,0,
7512327,3,89,0,327,
75133,90,0,327,3,
751495,0,327,3,97,
75150,327,3,98,0,
7516327,3,99,0,327,
75173,100,0,706,12,
75181,33594,707,5,63,
75193,109,0,327,3,
7520110,0,327,3,111,
75210,327,3,112,0,
7522327,3,113,0,327,
75233,114,0,327,3,
7524115,0,327,3,116,
75250,327,3,117,0,
7526327,3,118,0,327,
75273,119,0,327,3,
7528120,0,327,3,121,
75290,327,3,122,0,
7530327,3,48,0,327,
75313,49,0,327,3,
753250,0,327,3,51,
75330,327,3,52,0,
7534327,3,53,0,327,
75353,54,0,327,3,
753655,0,327,3,56,
75370,327,3,57,0,
7538327,3,65,0,327,
75393,66,0,327,3,
754067,0,327,3,68,
75410,327,3,69,0,
7542327,3,70,0,327,
75433,71,0,327,3,
754472,0,327,3,73,
75450,327,3,74,0,
7546327,3,75,0,327,
75473,76,0,327,3,
754877,0,327,3,78,
75490,327,3,79,0,
7550327,3,80,0,327,
75513,81,0,327,3,
755282,0,327,3,83,
75530,327,3,84,0,
7554327,3,85,0,327,
75553,86,0,327,3,
755687,0,327,3,88,
75570,327,3,89,0,
7558327,3,90,0,327,
75593,95,0,708,12,
75601,33680,709,5,63,
75613,109,0,327,3,
7562110,0,327,3,111,
75630,327,3,112,0,
7564327,3,113,0,327,
75653,114,0,327,3,
7566115,0,327,3,116,
75670,327,3,117,0,
7568327,3,118,0,327,
75693,119,0,327,3,
7570120,0,327,3,121,
75710,327,3,122,0,
7572327,3,48,0,327,
75733,49,0,327,3,
757450,0,327,3,51,
75750,327,3,52,0,
7576327,3,53,0,327,
75773,54,0,327,3,
757855,0,327,3,56,
75790,327,3,57,0,
7580327,3,65,0,327,
75813,66,0,327,3,
758267,0,327,3,68,
75830,327,3,69,0,
7584327,3,70,0,327,
75853,71,0,327,3,
758672,0,327,3,73,
75870,327,3,74,0,
7588327,3,75,0,327,
75893,76,0,327,3,
759077,0,327,3,78,
75910,327,3,79,0,
7592327,3,80,0,327,
75933,81,0,327,3,
759482,0,327,3,83,
75950,327,3,84,0,
7596327,3,85,0,327,
75973,86,0,327,3,
759887,0,327,3,88,
75990,327,3,89,0,
7600327,3,90,0,327,
76013,95,0,327,3,
760297,0,327,3,98,
76030,327,3,99,0,
7604710,12,1,33725,711,
76055,63,3,109,0,
7606327,3,110,0,327,
76073,111,0,712,12,
76081,33755,713,5,63,
76093,109,0,327,3,
7610110,0,327,3,111,
76110,327,3,112,0,
7612327,3,113,0,327,
76133,114,0,327,3,
7614115,0,327,3,116,
76150,327,3,117,0,
7616327,3,118,0,327,
76173,119,0,327,3,
7618120,0,327,3,121,
76190,327,3,122,0,
7620327,3,48,0,327,
76213,49,0,327,3,
762250,0,327,3,51,
76230,327,3,52,0,
7624327,3,53,0,327,
76253,54,0,327,3,
762655,0,327,3,56,
76270,327,3,57,0,
7628327,3,65,0,327,
76293,66,0,327,3,
763067,0,327,3,68,
76310,327,3,69,0,
7632327,3,70,0,327,
76333,71,0,327,3,
763472,0,327,3,73,
76350,327,3,74,0,
7636327,3,75,0,327,
76373,76,0,327,3,
763877,0,327,3,78,
76390,327,3,79,0,
7640327,3,80,0,327,
76413,81,0,327,3,
764282,0,327,3,83,
76430,327,3,84,0,
7644327,3,85,0,327,
76453,86,0,327,3,
764687,0,327,3,88,
76470,327,3,89,0,
7648327,3,90,0,327,
76493,95,0,327,3,
765097,0,327,3,98,
76510,327,3,99,0,
7652327,3,100,0,327,
76533,101,0,327,3,
7654102,0,327,3,103,
76550,327,3,104,0,
7656327,3,105,0,327,
76573,106,0,327,3,
7658107,0,327,3,108,
76590,714,12,1,33809,
7660715,5,63,3,109,
76610,327,3,110,0,
7662327,3,111,0,327,
76633,112,0,327,3,
7664113,0,327,3,114,
76650,327,3,115,0,
7666327,3,116,0,327,
76673,117,0,327,3,
7668118,0,327,3,119,
76690,327,3,120,0,
7670327,3,121,0,327,
76713,122,0,327,3,
767248,0,327,3,49,
76730,327,3,50,0,
7674327,3,51,0,327,
76753,52,0,327,3,
767653,0,327,3,54,
76770,327,3,55,0,
7678327,3,56,0,327,
76793,57,0,327,3,
768065,0,327,3,66,
76810,327,3,67,0,
7682327,3,68,0,327,
76833,69,0,327,3,
768470,0,327,3,71,
76850,327,3,72,0,
7686327,3,73,0,327,
76873,74,0,327,3,
768875,0,327,3,76,
76890,327,3,77,0,
7690327,3,78,0,327,
76913,79,0,327,3,
769280,0,327,3,81,
76930,327,3,82,0,
7694327,3,83,0,327,
76953,84,0,327,3,
769685,0,327,3,86,
76970,327,3,87,0,
7698327,3,88,0,327,
76993,89,0,327,3,
770090,0,327,3,95,
77010,327,3,97,0,
7702327,3,98,0,327,
77033,99,0,327,3,
7704100,0,327,3,101,
77050,327,3,102,0,
7706327,3,103,0,327,
77073,104,0,327,3,
7708105,0,327,3,106,
77090,327,3,107,0,
7710327,3,108,0,716,
771112,1,33863,717,5,
771263,3,109,0,327,
77133,110,0,327,3,
7714111,0,327,3,112,
77150,327,3,113,0,
7716327,3,114,0,327,
77173,115,0,327,3,
7718116,0,327,3,117,
77190,327,3,118,0,
7720327,3,119,0,327,
77213,120,0,327,3,
7722121,0,327,3,122,
77230,327,3,48,0,
7724327,3,49,0,327,
77253,50,0,327,3,
772651,0,327,3,52,
77270,327,3,53,0,
7728327,3,54,0,327,
77293,55,0,327,3,
773056,0,327,3,57,
77310,327,3,65,0,
7732327,3,66,0,327,
77333,67,0,327,3,
773468,0,327,3,69,
77350,327,3,70,0,
7736327,3,71,0,327,
77373,72,0,327,3,
773873,0,327,3,74,
77390,327,3,75,0,
7740327,3,76,0,327,
77413,77,0,327,3,
774278,0,327,3,79,
77430,327,3,80,0,
7744327,3,81,0,327,
77453,82,0,327,3,
774683,0,327,3,84,
77470,327,3,85,0,
7748327,3,86,0,327,
77493,87,0,327,3,
775088,0,327,3,89,
77510,327,3,90,0,
7752327,3,95,0,327,
77533,97,0,327,3,
775498,0,327,3,99,
77550,327,3,100,0,
7756327,3,101,0,327,
77573,102,0,327,3,
7758103,0,327,3,104,
77590,327,3,105,0,
7760718,12,1,33914,719,
77615,63,3,109,0,
7762327,3,110,0,327,
77633,111,0,327,3,
7764112,0,327,3,113,
77650,327,3,114,0,
7766327,3,115,0,720,
776712,1,33948,721,5,
776863,3,109,0,327,
77693,110,0,327,3,
7770111,0,327,3,112,
77710,327,3,113,0,
7772327,3,114,0,327,
77733,115,0,327,3,
7774116,0,327,3,117,
77750,327,3,118,0,
7776327,3,119,0,327,
77773,120,0,327,3,
7778121,0,327,3,122,
77790,327,3,48,0,
7780327,3,49,0,327,
77813,50,0,327,3,
778251,0,327,3,52,
77830,327,3,53,0,
7784327,3,54,0,327,
77853,55,0,327,3,
778656,0,327,3,57,
77870,327,3,65,0,
7788327,3,66,0,327,
77893,67,0,327,3,
779068,0,327,3,69,
77910,327,3,70,0,
7792327,3,71,0,327,
77933,72,0,327,3,
779473,0,327,3,74,
77950,327,3,75,0,
7796327,3,76,0,327,
77973,77,0,327,3,
779878,0,327,3,79,
77990,327,3,80,0,
7800327,3,81,0,327,
78013,82,0,327,3,
780283,0,327,3,84,
78030,327,3,85,0,
7804327,3,86,0,327,
78053,87,0,327,3,
780688,0,327,3,89,
78070,327,3,90,0,
7808327,3,95,0,327,
78093,97,0,327,3,
781098,0,327,3,99,
78110,327,3,100,0,
7812327,3,101,0,327,
78133,102,0,327,3,
7814103,0,327,3,104,
78150,327,3,105,0,
7816722,12,1,33999,723,
78175,63,3,109,0,
7818327,3,110,0,327,
78193,111,0,724,12,
78201,34029,725,5,63,
78213,109,0,327,3,
7822110,0,726,12,1,
782334058,727,5,63,3,
7824109,0,327,3,110,
78250,327,3,111,0,
7826327,3,112,0,327,
78273,113,0,327,3,
7828114,0,327,3,115,
78290,327,3,116,0,
7830327,3,117,0,327,
78313,118,0,327,3,
7832119,0,327,3,120,
78330,327,3,121,0,
7834327,3,122,0,327,
78353,48,0,327,3,
783649,0,327,3,50,
78370,327,3,51,0,
7838327,3,52,0,327,
78393,53,0,327,3,
784054,0,327,3,55,
78410,327,3,56,0,
7842327,3,57,0,327,
78433,65,0,327,3,
784466,0,327,3,67,
78450,327,3,68,0,
7846327,3,69,0,327,
78473,70,0,327,3,
784871,0,327,3,72,
78490,327,3,73,0,
7850327,3,74,0,327,
78513,75,0,327,3,
785276,0,327,3,77,
78530,327,3,78,0,
7854327,3,79,0,327,
78553,80,0,327,3,
785681,0,327,3,82,
78570,327,3,83,0,
7858327,3,84,0,327,
78593,85,0,327,3,
786086,0,327,3,87,
78610,327,3,88,0,
7862327,3,89,0,327,
78633,90,0,327,3,
786495,0,728,12,1,
786534144,729,5,63,3,
7866109,0,327,3,110,
78670,327,3,111,0,
7868327,3,112,0,327,
78693,113,0,327,3,
7870114,0,327,3,115,
78710,730,12,1,34178,
7872731,5,63,3,109,
78730,327,3,110,0,
7874327,3,111,0,327,
78753,112,0,327,3,
7876113,0,327,3,114,
78770,327,3,115,0,
7878327,3,116,0,732,
787912,1,34213,733,5,
788063,3,109,0,327,
78813,110,0,327,3,
7882111,0,327,3,112,
78830,327,3,113,0,
7884327,3,114,0,327,
78853,115,0,327,3,
7886116,0,327,3,117,
78870,327,3,118,0,
7888327,3,119,0,327,
78893,120,0,327,3,
7890121,0,327,3,122,
78910,327,3,48,0,
7892327,3,49,0,327,
78933,50,0,327,3,
789451,0,327,3,52,
78950,327,3,53,0,
7896327,3,54,0,327,
78973,55,0,327,3,
789856,0,327,3,57,
78990,327,3,65,0,
7900327,3,66,0,327,
79013,67,0,327,3,
790268,0,327,3,69,
79030,327,3,70,0,
7904327,3,71,0,327,
79053,72,0,327,3,
790673,0,327,3,74,
79070,327,3,75,0,
7908327,3,76,0,327,
79093,77,0,327,3,
791078,0,327,3,79,
79110,327,3,80,0,
7912327,3,81,0,327,
79133,82,0,327,3,
791483,0,327,3,84,
79150,327,3,85,0,
7916327,3,86,0,327,
79173,87,0,327,3,
791888,0,327,3,89,
79190,327,3,90,0,
7920327,3,95,0,327,
79213,97,0,734,12,
79221,34256,735,5,63,
79233,109,0,327,3,
7924110,0,327,3,111,
79250,327,3,112,0,
7926327,3,113,0,327,
79273,114,0,736,12,
79281,34289,737,5,63,
79293,109,0,327,3,
7930110,0,327,3,111,
79310,327,3,112,0,
7932327,3,113,0,327,
79333,114,0,327,3,
7934115,0,327,3,116,
79350,738,12,1,34324,
7936739,5,63,3,109,
79370,327,3,110,0,
7938327,3,111,0,327,
79393,112,0,327,3,
7940113,0,327,3,114,
79410,327,3,115,0,
7942327,3,116,0,327,
79433,117,0,327,3,
7944118,0,327,3,119,
79450,327,3,120,0,
7946327,3,121,0,327,
79473,122,0,327,3,
794848,0,327,3,49,
79490,327,3,50,0,
7950327,3,51,0,327,
79513,52,0,327,3,
795253,0,327,3,54,
79530,327,3,55,0,
7954327,3,56,0,327,
79553,57,0,327,3,
795665,0,327,3,66,
79570,327,3,67,0,
7958327,3,68,0,327,
79593,69,0,327,3,
796070,0,327,3,71,
79610,327,3,72,0,
7962327,3,73,0,327,
79633,74,0,327,3,
796475,0,327,3,76,
79650,327,3,77,0,
7966327,3,78,0,327,
79673,79,0,327,3,
796880,0,327,3,81,
79690,327,3,82,0,
7970327,3,83,0,327,
79713,84,0,327,3,
797285,0,327,3,86,
79730,327,3,87,0,
7974327,3,88,0,327,
79753,89,0,327,3,
797690,0,327,3,95,
79770,327,3,97,0,
7978327,3,98,0,327,
79793,99,0,327,3,
7980100,0,327,3,101,
79810,327,3,102,0,
7982327,3,103,0,327,
79833,104,0,327,3,
7984105,0,327,3,106,
79850,327,3,107,0,
7986327,3,108,0,327,
7987740,11,1,541,0,
7988741,4,52,76,0,
798965,0,78,0,68,
79900,95,0,67,0,
799179,0,76,0,76,
79920,73,0,83,0,
799373,0,79,0,78,
79940,95,0,83,0,
799584,0,65,0,82,
79960,84,0,95,0,
799769,0,86,0,69,
79980,78,0,84,0,
79991,-1,3,117,0,
8000327,3,118,0,327,
80013,119,0,327,3,
8002120,0,327,3,121,
80030,327,3,122,0,
8004327,3,48,0,327,
80053,49,0,327,3,
800650,0,327,3,51,
80070,327,3,52,0,
8008327,3,53,0,327,
80093,54,0,327,3,
801055,0,327,3,56,
80110,327,3,57,0,
8012327,3,65,0,327,
80133,66,0,327,3,
801467,0,327,3,68,
80150,327,3,69,0,
8016327,3,70,0,327,
80173,71,0,327,3,
801872,0,327,3,73,
80190,327,3,74,0,
8020327,3,75,0,327,
80213,76,0,327,3,
802277,0,327,3,78,
80230,327,3,79,0,
8024327,3,80,0,327,
80253,81,0,327,3,
802682,0,327,3,83,
80270,327,3,84,0,
8028327,3,85,0,327,
80293,86,0,327,3,
803087,0,327,3,88,
80310,327,3,89,0,
8032327,3,90,0,327,
80333,95,0,327,3,
803497,0,327,3,98,
80350,327,3,99,0,
8036327,3,100,0,327,
80373,101,0,327,3,
8038102,0,327,3,103,
80390,327,3,104,0,
8040327,3,105,0,327,
80413,106,0,327,3,
8042107,0,327,3,108,
80430,327,742,11,1,
8044829,0,330,1,-1,
80453,115,0,327,3,
8046116,0,327,3,117,
80470,327,3,118,0,
8048327,3,119,0,327,
80493,120,0,327,3,
8050121,0,327,3,122,
80510,327,3,48,0,
8052327,3,49,0,327,
80533,50,0,327,3,
805451,0,327,3,52,
80550,327,3,53,0,
8056327,3,54,0,327,
80573,55,0,327,3,
805856,0,327,3,57,
80590,327,3,65,0,
8060327,3,66,0,327,
80613,67,0,327,3,
806268,0,327,3,69,
80630,327,3,70,0,
8064327,3,71,0,327,
80653,72,0,327,3,
806673,0,327,3,74,
80670,327,3,75,0,
8068327,3,76,0,327,
80693,77,0,327,3,
807078,0,327,3,79,
80710,327,3,80,0,
8072327,3,81,0,327,
80733,82,0,327,3,
807483,0,327,3,84,
80750,327,3,85,0,
8076327,3,86,0,327,
80773,87,0,327,3,
807888,0,327,3,89,
80790,327,3,90,0,
8080327,3,95,0,327,
80813,97,0,327,3,
808298,0,327,3,99,
80830,327,3,100,0,
8084327,3,101,0,327,
80853,102,0,327,3,
8086103,0,327,3,104,
80870,327,3,105,0,
8088327,3,106,0,327,
80893,107,0,327,3,
8090108,0,327,743,11,
80911,829,0,330,1,
8092-1,3,98,0,327,
80933,99,0,327,3,
8094100,0,327,3,101,
80950,327,3,102,0,
8096327,3,103,0,327,
80973,104,0,327,3,
8098105,0,327,3,106,
80990,327,3,107,0,
8100327,3,108,0,327,
8101744,11,1,829,0,
8102330,1,-1,3,117,
81030,327,3,118,0,
8104327,3,119,0,327,
81053,120,0,327,3,
8106121,0,327,3,122,
81070,327,3,48,0,
8108327,3,49,0,327,
81093,50,0,327,3,
811051,0,327,3,52,
81110,327,3,53,0,
8112327,3,54,0,327,
81133,55,0,327,3,
811456,0,327,3,57,
81150,327,3,65,0,
8116327,3,66,0,327,
81173,67,0,327,3,
811868,0,327,3,69,
81190,327,3,70,0,
8120327,3,71,0,327,
81213,72,0,327,3,
812273,0,327,3,74,
81230,327,3,75,0,
8124327,3,76,0,327,
81253,77,0,327,3,
812678,0,327,3,79,
81270,327,3,80,0,
8128327,3,81,0,327,
81293,82,0,327,3,
813083,0,327,3,84,
81310,327,3,85,0,
8132327,3,86,0,327,
81333,87,0,327,3,
813488,0,327,3,89,
81350,327,3,90,0,
8136327,3,95,0,327,
81373,97,0,327,3,
813898,0,327,3,99,
81390,327,3,100,0,
8140327,3,101,0,327,
81413,102,0,327,3,
8142103,0,327,3,104,
81430,327,3,105,0,
8144327,3,106,0,327,
81453,107,0,327,3,
8146108,0,327,745,11,
81471,829,0,330,1,
8148-1,3,116,0,327,
81493,117,0,327,3,
8150118,0,327,3,119,
81510,327,3,120,0,
8152327,3,121,0,327,
81533,122,0,327,3,
815448,0,327,3,49,
81550,327,3,50,0,
8156327,3,51,0,327,
81573,52,0,327,3,
815853,0,327,3,54,
81590,327,3,55,0,
8160327,3,56,0,327,
81613,57,0,327,3,
816265,0,327,3,66,
81630,327,3,67,0,
8164327,3,68,0,327,
81653,69,0,327,3,
816670,0,327,3,71,
81670,327,3,72,0,
8168327,3,73,0,327,
81693,74,0,327,3,
817075,0,327,3,76,
81710,327,3,77,0,
8172327,3,78,0,327,
81733,79,0,327,3,
817480,0,327,3,81,
81750,327,3,82,0,
8176327,3,83,0,327,
81773,84,0,327,3,
817885,0,327,3,86,
81790,327,3,87,0,
8180327,3,88,0,327,
81813,89,0,327,3,
818290,0,327,3,95,
81830,327,3,97,0,
8184327,3,98,0,327,
81853,99,0,327,3,
8186100,0,327,3,101,
81870,746,12,1,34791,
8188747,5,63,3,109,
81890,327,3,110,0,
8190748,12,1,34820,749,
81915,63,3,109,0,
8192327,3,110,0,327,
81933,111,0,327,3,
8194112,0,327,3,113,
81950,327,3,114,0,
8196327,3,115,0,327,
81973,116,0,327,3,
8198117,0,327,3,118,
81990,327,3,119,0,
8200327,3,120,0,327,
82013,121,0,327,3,
8202122,0,327,3,48,
82030,327,3,49,0,
8204327,3,50,0,327,
82053,51,0,327,3,
820652,0,327,3,53,
82070,327,3,54,0,
8208327,3,55,0,327,
82093,56,0,327,3,
821057,0,327,3,65,
82110,327,3,66,0,
8212327,3,67,0,327,
82133,68,0,327,3,
821469,0,327,3,70,
82150,327,3,71,0,
8216327,3,72,0,327,
82173,73,0,327,3,
821874,0,327,3,75,
82190,327,3,76,0,
8220327,3,77,0,327,
82213,78,0,327,3,
822279,0,327,3,80,
82230,327,3,81,0,
8224327,3,82,0,327,
82253,83,0,327,3,
822684,0,327,3,85,
82270,327,3,86,0,
8228327,3,87,0,327,
82293,88,0,327,3,
823089,0,327,3,90,
82310,327,3,95,0,
8232327,3,97,0,327,
82333,98,0,327,3,
823499,0,327,3,100,
82350,750,12,1,34866,
8236751,5,63,3,109,
82370,327,3,110,0,
8238327,3,111,0,327,
82393,112,0,327,3,
8240113,0,327,3,114,
82410,327,3,115,0,
8242327,3,116,0,327,
82433,117,0,327,3,
8244118,0,327,3,119,
82450,327,3,120,0,
8246327,3,121,0,327,
82473,122,0,327,3,
824848,0,327,3,49,
82490,327,3,50,0,
8250327,3,51,0,327,
82513,52,0,327,3,
825253,0,327,3,54,
82530,327,3,55,0,
8254327,3,56,0,327,
82553,57,0,327,3,
825665,0,327,3,66,
82570,327,3,67,0,
8258327,3,68,0,327,
82593,69,0,327,3,
826070,0,327,3,71,
82610,327,3,72,0,
8262327,3,73,0,327,
82633,74,0,327,3,
826475,0,327,3,76,
82650,327,3,77,0,
8266327,3,78,0,327,
82673,79,0,327,3,
826880,0,327,3,81,
82690,327,3,82,0,
8270327,3,83,0,327,
82713,84,0,327,3,
827285,0,327,3,86,
82730,327,3,87,0,
8274327,3,88,0,327,
82753,89,0,327,3,
827690,0,327,3,95,
82770,327,3,97,0,
8278327,3,98,0,327,
82793,99,0,327,3,
8280100,0,327,3,101,
82810,327,3,102,0,
8282327,3,103,0,327,
82833,104,0,327,3,
8284105,0,327,3,106,
82850,327,3,107,0,
8286327,3,108,0,327,
8287752,11,1,519,0,
8288753,4,48,76,0,
828965,0,78,0,68,
82900,95,0,67,0,
829179,0,76,0,76,
82920,73,0,83,0,
829373,0,79,0,78,
82940,95,0,69,0,
829578,0,68,0,95,
82960,69,0,86,0,
829769,0,78,0,84,
82980,1,-1,3,101,
82990,327,3,102,0,
8300327,3,103,0,327,
83013,104,0,327,3,
8302105,0,327,3,106,
83030,327,3,107,0,
8304327,3,108,0,327,
8305754,11,1,829,0,
8306330,1,-1,3,111,
83070,327,3,112,0,
8308327,3,113,0,327,
83093,114,0,327,3,
8310115,0,327,3,116,
83110,327,3,117,0,
8312327,3,118,0,327,
83133,119,0,327,3,
8314120,0,327,3,121,
83150,327,3,122,0,
8316327,3,48,0,327,
83173,49,0,327,3,
831850,0,327,3,51,
83190,327,3,52,0,
8320327,3,53,0,327,
83213,54,0,327,3,
832255,0,327,3,56,
83230,327,3,57,0,
8324327,3,65,0,327,
83253,66,0,327,3,
832667,0,327,3,68,
83270,327,3,69,0,
8328327,3,70,0,327,
83293,71,0,327,3,
833072,0,327,3,73,
83310,327,3,74,0,
8332327,3,75,0,327,
83333,76,0,327,3,
833477,0,327,3,78,
83350,327,3,79,0,
8336327,3,80,0,327,
83373,81,0,327,3,
833882,0,327,3,83,
83390,327,3,84,0,
8340327,3,85,0,327,
83413,86,0,327,3,
834287,0,327,3,88,
83430,327,3,89,0,
8344327,3,90,0,327,
83453,95,0,327,3,
834697,0,327,3,98,
83470,327,3,99,0,
8348327,3,100,0,327,
83493,101,0,327,3,
8350102,0,327,3,103,
83510,327,3,104,0,
8352327,3,105,0,327,
83533,106,0,327,3,
8354107,0,327,3,108,
83550,327,755,11,1,
8356829,0,330,1,-1,
83573,102,0,327,3,
8358103,0,327,3,104,
83590,327,3,105,0,
8360327,3,106,0,327,
83613,107,0,327,3,
8362108,0,327,756,11,
83631,829,0,330,1,
8364-1,3,97,0,327,
83653,98,0,327,3,
836699,0,327,3,100,
83670,327,3,101,0,
8368327,3,102,0,327,
83693,103,0,327,3,
8370104,0,327,3,105,
83710,327,3,106,0,
8372327,3,107,0,327,
83733,108,0,327,757,
837411,1,501,0,758,
83754,40,76,0,65,
83760,78,0,68,0,
837795,0,67,0,79,
83780,76,0,76,0,
837973,0,83,0,73,
83800,79,0,78,0,
838195,0,69,0,86,
83820,69,0,78,0,
838384,0,1,-1,3,
8384111,0,327,3,112,
83850,327,3,113,0,
8386327,3,114,0,327,
83873,115,0,327,3,
8388116,0,327,3,117,
83890,327,3,118,0,
8390327,3,119,0,327,
83913,120,0,327,3,
8392121,0,327,3,122,
83930,327,3,48,0,
8394327,3,49,0,327,
83953,50,0,327,3,
839651,0,327,3,52,
83970,327,3,53,0,
8398327,3,54,0,327,
83993,55,0,327,3,
840056,0,327,3,57,
84010,327,3,65,0,
8402327,3,66,0,327,
84033,67,0,327,3,
840468,0,327,3,69,
84050,327,3,70,0,
8406327,3,71,0,327,
84073,72,0,327,3,
840873,0,327,3,74,
84090,327,3,75,0,
8410327,3,76,0,327,
84113,77,0,327,3,
841278,0,327,3,79,
84130,327,3,80,0,
8414327,3,81,0,327,
84153,82,0,327,3,
841683,0,327,3,84,
84170,327,3,85,0,
8418327,3,86,0,327,
84193,87,0,327,3,
842088,0,327,3,89,
84210,327,3,90,0,
8422327,3,95,0,327,
84233,97,0,327,3,
842498,0,327,3,99,
84250,327,3,100,0,
8426327,3,101,0,327,
84273,102,0,327,3,
8428103,0,327,3,104,
84290,327,3,105,0,
8430327,3,106,0,327,
84313,107,0,327,3,
8432108,0,327,759,11,
84331,829,0,330,1,
8434-1,3,112,0,327,
84353,113,0,327,3,
8436114,0,327,3,115,
84370,327,3,116,0,
8438327,3,117,0,327,
84393,118,0,327,3,
8440119,0,327,3,120,
84410,327,3,121,0,
8442327,3,122,0,327,
84433,48,0,327,3,
844449,0,327,3,50,
84450,327,3,51,0,
8446327,3,52,0,327,
84473,53,0,327,3,
844854,0,327,3,55,
84490,327,3,56,0,
8450327,3,57,0,327,
84513,65,0,327,3,
845266,0,327,3,67,
84530,327,3,68,0,
8454327,3,69,0,327,
84553,70,0,327,3,
845671,0,327,3,72,
84570,327,3,73,0,
8458327,3,74,0,327,
84593,75,0,327,3,
846076,0,327,3,77,
84610,327,3,78,0,
8462327,3,79,0,327,
84633,80,0,327,3,
846481,0,327,3,82,
84650,327,3,83,0,
8466327,3,84,0,327,
84673,85,0,327,3,
846886,0,327,3,87,
84690,327,3,88,0,
8470327,3,89,0,327,
84713,90,0,327,3,
847295,0,327,3,97,
84730,327,3,98,0,
8474327,3,99,0,327,
84753,100,0,327,3,
8476101,0,327,3,102,
84770,327,3,103,0,
8478327,3,104,0,327,
84793,105,0,327,3,
8480106,0,327,3,107,
84810,327,3,108,0,
8482327,760,11,1,829,
84830,330,1,-1,3,
8484106,0,327,3,107,
84850,327,3,108,0,
8486327,761,11,1,829,
84870,330,1,-1,3,
8488116,0,327,3,117,
84890,327,3,118,0,
8490327,3,119,0,327,
84913,120,0,327,3,
8492121,0,327,3,122,
84930,327,3,48,0,
8494327,3,49,0,327,
84953,50,0,327,3,
849651,0,327,3,52,
84970,327,3,53,0,
8498327,3,54,0,327,
84993,55,0,327,3,
850056,0,327,3,57,
85010,327,3,65,0,
8502327,3,66,0,327,
85033,67,0,327,3,
850468,0,327,3,69,
85050,327,3,70,0,
8506327,3,71,0,327,
85073,72,0,327,3,
850873,0,327,3,74,
85090,327,3,75,0,
8510327,3,76,0,327,
85113,77,0,327,3,
851278,0,327,3,79,
85130,327,3,80,0,
8514327,3,81,0,327,
85153,82,0,327,3,
851683,0,327,3,84,
85170,327,3,85,0,
8518327,3,86,0,327,
85193,87,0,327,3,
852088,0,327,3,89,
85210,327,3,90,0,
8522327,3,95,0,327,
85233,97,0,327,3,
852498,0,327,3,99,
85250,327,3,100,0,
8526327,3,101,0,327,
85273,102,0,327,3,
8528103,0,327,3,104,
85290,327,3,105,0,
8530327,3,106,0,327,
85313,107,0,327,3,
8532108,0,327,762,11,
85331,829,0,330,1,
8534-1,3,106,0,327,
85353,107,0,327,3,
8536108,0,327,763,11,
85371,829,0,330,1,
8538-1,764,11,1,829,
85390,330,1,-1,765,
854011,1,829,0,330,
85411,-1,3,112,0,
8542327,3,113,0,327,
85433,114,0,327,3,
8544115,0,327,3,116,
85450,327,3,117,0,
8546327,3,118,0,327,
85473,119,0,327,3,
8548120,0,327,3,121,
85490,327,3,122,0,
8550327,3,48,0,327,
85513,49,0,327,3,
855250,0,327,3,51,
85530,327,3,52,0,
8554327,3,53,0,327,
85553,54,0,327,3,
855655,0,327,3,56,
85570,327,3,57,0,
8558327,3,65,0,327,
85593,66,0,327,3,
856067,0,327,3,68,
85610,327,3,69,0,
8562327,3,70,0,327,
85633,71,0,327,3,
856472,0,327,3,73,
85650,327,3,74,0,
8566327,3,75,0,327,
85673,76,0,327,3,
856877,0,327,3,78,
85690,327,3,79,0,
8570327,3,80,0,327,
85713,81,0,327,3,
857282,0,327,3,83,
85730,327,3,84,0,
8574327,3,85,0,327,
85753,86,0,327,3,
857687,0,327,3,88,
85770,327,3,89,0,
8578327,3,90,0,327,
85793,95,0,327,3,
858097,0,327,3,98,
85810,327,3,99,0,
8582327,3,100,0,327,
85833,101,0,327,3,
8584102,0,327,3,103,
85850,327,3,104,0,
8586327,3,105,0,327,
85873,106,0,327,3,
8588107,0,327,3,108,
85890,327,766,11,1,
8590829,0,330,1,-1,
85913,100,0,327,3,
8592101,0,327,3,102,
85930,327,3,103,0,
8594327,3,104,0,327,
85953,105,0,327,3,
8596106,0,327,3,107,
85970,327,3,108,0,
8598327,767,11,1,829,
85990,330,1,-1,3,
860097,0,327,3,98,
86010,327,3,99,0,
8602327,3,100,0,327,
86033,101,0,327,3,
8604102,0,327,3,103,
86050,327,3,104,0,
8606327,3,105,0,327,
86073,106,0,327,3,
8608107,0,327,3,108,
86090,327,768,11,1,
8610829,0,330,1,-1,
86113,101,0,327,3,
8612102,0,327,3,103,
86130,327,3,104,0,
8614327,3,105,0,327,
86153,106,0,327,3,
8616107,0,327,3,108,
86170,327,769,11,1,
8618829,0,330,1,-1,
86193,111,0,327,3,
8620112,0,327,3,113,
86210,327,3,114,0,
8622327,3,115,0,327,
86233,116,0,327,3,
8624117,0,327,3,118,
86250,327,3,119,0,
8626327,3,120,0,327,
86273,121,0,327,3,
8628122,0,327,3,48,
86290,327,3,49,0,
8630327,3,50,0,327,
86313,51,0,327,3,
863252,0,327,3,53,
86330,327,3,54,0,
8634327,3,55,0,327,
86353,56,0,327,3,
863657,0,327,3,65,
86370,327,3,66,0,
8638327,3,67,0,327,
86393,68,0,327,3,
864069,0,327,3,70,
86410,327,3,71,0,
8642327,3,72,0,327,
86433,73,0,327,3,
864474,0,327,3,75,
86450,327,3,76,0,
8646327,3,77,0,327,
86473,78,0,327,3,
864879,0,327,3,80,
86490,327,3,81,0,
8650327,3,82,0,327,
86513,83,0,327,3,
865284,0,327,3,85,
86530,327,3,86,0,
8654327,3,87,0,327,
86553,88,0,327,3,
865689,0,327,3,90,
86570,327,3,95,0,
8658327,3,97,0,327,
86593,98,0,327,3,
866099,0,327,3,100,
86610,327,3,101,0,
8662327,3,102,0,327,
86633,103,0,327,3,
8664104,0,327,3,105,
86650,327,3,106,0,
8666327,3,107,0,327,
86673,108,0,327,770,
866811,1,829,0,330,
86691,-1,3,98,0,
8670327,3,99,0,327,
86713,100,0,327,3,
8672101,0,327,3,102,
86730,327,3,103,0,
8674327,3,104,0,327,
86753,105,0,771,12,
86761,36167,772,5,63,
86773,109,0,327,3,
8678110,0,773,12,1,
867936196,774,5,63,3,
8680109,0,327,3,110,
86810,327,3,111,0,
8682327,3,112,0,327,
86833,113,0,327,3,
8684114,0,327,3,115,
86850,327,3,116,0,
8686327,3,117,0,327,
86873,118,0,327,3,
8688119,0,327,3,120,
86890,327,3,121,0,
8690327,3,122,0,327,
86913,48,0,327,3,
869249,0,327,3,50,
86930,327,3,51,0,
8694327,3,52,0,327,
86953,53,0,327,3,
869654,0,327,3,55,
86970,327,3,56,0,
8698327,3,57,0,327,
86993,65,0,327,3,
870066,0,327,3,67,
87010,327,3,68,0,
8702327,3,69,0,327,
87033,70,0,327,3,
870471,0,327,3,72,
87050,327,3,73,0,
8706327,3,74,0,327,
87073,75,0,327,3,
870876,0,327,3,77,
87090,327,3,78,0,
8710327,3,79,0,327,
87113,80,0,327,3,
871281,0,327,3,82,
87130,327,3,83,0,
8714327,3,84,0,327,
87153,85,0,327,3,
871686,0,327,3,87,
87170,327,3,88,0,
8718327,3,89,0,327,
87193,90,0,327,3,
872095,0,327,3,97,
87210,327,3,98,0,
8722327,3,99,0,327,
87233,100,0,327,3,
8724101,0,327,3,102,
87250,327,3,103,0,
8726327,3,104,0,327,
87273,105,0,327,3,
8728106,0,327,3,107,
87290,775,12,1,36249,
8730776,5,63,3,109,
87310,327,3,110,0,
8732327,3,111,0,327,
87333,112,0,327,3,
8734113,0,327,3,114,
87350,327,3,115,0,
8736327,3,116,0,327,
87373,117,0,327,3,
8738118,0,327,3,119,
87390,327,3,120,0,
8740327,3,121,0,327,
87413,122,0,327,3,
874248,0,327,3,49,
87430,327,3,50,0,
8744327,3,51,0,327,
87453,52,0,327,3,
874653,0,327,3,54,
87470,327,3,55,0,
8748327,3,56,0,327,
87493,57,0,327,3,
875065,0,327,3,66,
87510,327,3,67,0,
8752327,3,68,0,327,
87533,69,0,327,3,
875470,0,327,3,71,
87550,327,3,72,0,
8756327,3,73,0,327,
87573,74,0,327,3,
875875,0,327,3,76,
87590,327,3,77,0,
8760327,3,78,0,327,
87613,79,0,327,3,
876280,0,327,3,81,
87630,327,3,82,0,
8764327,3,83,0,327,
87653,84,0,327,3,
876685,0,327,3,86,
87670,327,3,87,0,
8768327,3,88,0,327,
87693,89,0,327,3,
877090,0,327,3,95,
87710,777,12,1,36335,
8772778,5,63,3,109,
87730,779,12,1,36363,
8774780,5,63,3,109,
87750,327,3,110,0,
8776327,3,111,0,327,
87773,112,0,327,3,
8778113,0,327,3,114,
87790,327,3,115,0,
8780327,3,116,0,327,
87813,117,0,327,3,
8782118,0,327,3,119,
87830,327,3,120,0,
8784327,3,121,0,327,
87853,122,0,327,3,
878648,0,327,3,49,
87870,327,3,50,0,
8788327,3,51,0,327,
87893,52,0,327,3,
879053,0,327,3,54,
87910,327,3,55,0,
8792327,3,56,0,327,
87933,57,0,327,3,
879465,0,327,3,66,
87950,327,3,67,0,
8796327,3,68,0,327,
87973,69,0,327,3,
879870,0,327,3,71,
87990,327,3,72,0,
8800327,3,73,0,327,
88013,74,0,327,3,
880275,0,327,3,76,
88030,327,3,77,0,
8804327,3,78,0,327,
88053,79,0,327,3,
880680,0,327,3,81,
88070,327,3,82,0,
8808327,3,83,0,327,
88093,84,0,327,3,
881085,0,327,3,86,
88110,327,3,87,0,
8812327,3,88,0,327,
88133,89,0,327,3,
881490,0,327,3,95,
88150,327,3,97,0,
8816327,3,98,0,327,
88173,99,0,327,3,
8818100,0,327,3,101,
88190,781,12,1,36410,
8820782,5,63,3,109,
88210,327,3,110,0,
8822327,3,111,0,327,
88233,112,0,327,3,
8824113,0,327,3,114,
88250,327,3,115,0,
8826783,12,1,36444,784,
88275,63,3,109,0,
8828327,3,110,0,327,
88293,111,0,327,3,
8830112,0,327,3,113,
88310,327,3,114,0,
8832327,3,115,0,785,
883312,1,36478,786,5,
883463,3,109,0,327,
88353,110,0,327,3,
8836111,0,327,3,112,
88370,327,3,113,0,
8838327,3,114,0,327,
88393,115,0,327,3,
8840116,0,327,3,117,
88410,327,3,118,0,
8842327,3,119,0,327,
88433,120,0,327,3,
8844121,0,327,3,122,
88450,327,3,48,0,
8846327,3,49,0,327,
88473,50,0,327,3,
884851,0,327,3,52,
88490,327,3,53,0,
8850327,3,54,0,327,
88513,55,0,327,3,
885256,0,327,3,57,
88530,327,3,65,0,
8854327,3,66,0,327,
88553,67,0,327,3,
885668,0,327,3,69,
88570,327,3,70,0,
8858327,3,71,0,327,
88593,72,0,327,3,
886073,0,327,3,74,
88610,327,3,75,0,
8862327,3,76,0,327,
88633,77,0,327,3,
886478,0,327,3,79,
88650,327,3,80,0,
8866327,3,81,0,327,
88673,82,0,327,3,
886883,0,327,3,84,
88690,327,3,85,0,
8870327,3,86,0,327,
88713,87,0,327,3,
887288,0,327,3,89,
88730,327,3,90,0,
8874327,3,95,0,327,
88753,97,0,787,12,
88761,36521,788,5,63,
88773,109,0,327,3,
8878110,0,327,3,111,
88790,327,3,112,0,
8880327,3,113,0,327,
88813,114,0,327,3,
8882115,0,327,3,116,
88830,327,3,117,0,
8884327,3,118,0,327,
88853,119,0,327,3,
8886120,0,327,3,121,
88870,327,3,122,0,
8888327,3,48,0,327,
88893,49,0,327,3,
889050,0,327,3,51,
88910,327,3,52,0,
8892327,3,53,0,327,
88933,54,0,327,3,
889455,0,327,3,56,
88950,327,3,57,0,
8896327,3,65,0,327,
88973,66,0,327,3,
889867,0,327,3,68,
88990,327,3,69,0,
8900327,3,70,0,327,
89013,71,0,327,3,
890272,0,327,3,73,
89030,327,3,74,0,
8904327,3,75,0,327,
89053,76,0,327,3,
890677,0,327,3,78,
89070,327,3,79,0,
8908327,3,80,0,327,
89093,81,0,327,3,
891082,0,327,3,83,
89110,327,3,84,0,
8912327,3,85,0,327,
89133,86,0,327,3,
891487,0,327,3,88,
89150,327,3,89,0,
8916327,3,90,0,327,
89173,95,0,327,3,
891897,0,327,3,98,
89190,327,3,99,0,
8920327,3,100,0,327,
89213,101,0,327,3,
8922102,0,327,3,103,
89230,789,12,1,36570,
8924790,5,63,3,109,
89250,327,3,110,0,
8926327,3,111,0,327,
89273,112,0,327,3,
8928113,0,327,3,114,
89290,327,3,115,0,
8930327,3,116,0,327,
89313,117,0,327,3,
8932118,0,327,3,119,
89330,327,3,120,0,
8934327,3,121,0,327,
89353,122,0,327,3,
893648,0,327,3,49,
89370,327,3,50,0,
8938327,3,51,0,327,
89393,52,0,327,3,
894053,0,327,3,54,
89410,327,3,55,0,
8942327,3,56,0,327,
89433,57,0,327,3,
894465,0,327,3,66,
89450,327,3,67,0,
8946327,3,68,0,327,
89473,69,0,327,3,
894870,0,327,3,71,
89490,327,3,72,0,
8950327,3,73,0,327,
89513,74,0,327,3,
895275,0,327,3,76,
89530,327,3,77,0,
8954327,3,78,0,327,
89553,79,0,327,3,
895680,0,327,3,81,
89570,327,3,82,0,
8958327,3,83,0,327,
89593,84,0,327,3,
896085,0,327,3,86,
89610,327,3,87,0,
8962327,3,88,0,327,
89633,89,0,327,3,
896490,0,327,3,95,
89650,327,3,97,0,
8966327,3,98,0,327,
89673,99,0,327,3,
8968100,0,327,3,101,
89690,791,12,1,36617,
8970792,5,63,3,109,
89710,327,3,110,0,
8972327,3,111,0,327,
89733,112,0,327,3,
8974113,0,327,3,114,
89750,327,3,115,0,
8976327,3,116,0,327,
89773,117,0,327,3,
8978118,0,327,3,119,
89790,327,3,120,0,
8980327,3,121,0,327,
89813,122,0,327,3,
898248,0,327,3,49,
89830,327,3,50,0,
8984327,3,51,0,327,
89853,52,0,327,3,
898653,0,327,3,54,
89870,327,3,55,0,
8988327,3,56,0,327,
89893,57,0,327,3,
899065,0,327,3,66,
89910,327,3,67,0,
8992327,3,68,0,327,
89933,69,0,327,3,
899470,0,327,3,71,
89950,327,3,72,0,
8996327,3,73,0,327,
89973,74,0,327,3,
899875,0,327,3,76,
89990,327,3,77,0,
9000327,3,78,0,327,
90013,79,0,327,3,
900280,0,327,3,81,
90030,327,3,82,0,
9004327,3,83,0,327,
90053,84,0,327,3,
900685,0,327,3,86,
90070,327,3,87,0,
9008327,3,88,0,327,
90093,89,0,327,3,
901090,0,327,3,95,
90110,327,3,97,0,
9012327,3,98,0,327,
90133,99,0,327,3,
9014100,0,327,3,101,
90150,327,3,102,0,
9016327,3,103,0,327,
90173,104,0,327,3,
9018105,0,327,3,106,
90190,327,3,107,0,
9020327,3,108,0,327,
9021793,11,1,565,0,
9022794,4,36,76,0,
902373,0,78,0,75,
90240,95,0,77,0,
902569,0,83,0,83,
90260,65,0,71,0,
902769,0,95,0,69,
90280,86,0,69,0,
902978,0,84,0,1,
9030-1,3,102,0,327,
90313,103,0,327,3,
9032104,0,327,3,105,
90330,327,3,106,0,
9034327,3,107,0,327,
90353,108,0,327,795,
903611,1,829,0,330,
90371,-1,3,104,0,
9038327,3,105,0,327,
90393,106,0,327,3,
9040107,0,327,3,108,
90410,327,796,11,1,
9042829,0,330,1,-1,
90433,98,0,327,3,
904499,0,327,3,100,
90450,327,3,101,0,
9046327,3,102,0,327,
90473,103,0,327,3,
9048104,0,327,3,105,
90490,327,3,106,0,
9050327,3,107,0,327,
90513,108,0,327,797,
905211,1,829,0,330,
90531,-1,3,116,0,
9054327,3,117,0,327,
90553,118,0,327,3,
9056119,0,327,3,120,
90570,327,3,121,0,
9058327,3,122,0,327,
90593,48,0,327,3,
906049,0,327,3,50,
90610,327,3,51,0,
9062327,3,52,0,327,
90633,53,0,327,3,
906454,0,327,3,55,
90650,327,3,56,0,
9066327,3,57,0,327,
90673,65,0,327,3,
906866,0,327,3,67,
90690,327,3,68,0,
9070327,3,69,0,327,
90713,70,0,327,3,
907271,0,327,3,72,
90730,327,3,73,0,
9074327,3,74,0,327,
90753,75,0,327,3,
907676,0,327,3,77,
90770,327,3,78,0,
9078327,3,79,0,327,
90793,80,0,327,3,
908081,0,327,3,82,
90810,327,3,83,0,
9082327,3,84,0,327,
90833,85,0,327,3,
908486,0,327,3,87,
90850,327,3,88,0,
9086327,3,89,0,327,
90873,90,0,327,3,
908895,0,327,3,97,
90890,327,3,98,0,
9090327,3,99,0,327,
90913,100,0,327,3,
9092101,0,327,3,102,
90930,327,3,103,0,
9094327,3,104,0,327,
90953,105,0,327,3,
9096106,0,327,3,107,
90970,327,3,108,0,
9098327,798,11,1,829,
90990,330,1,-1,3,
9100116,0,327,3,117,
91010,327,3,118,0,
9102327,3,119,0,327,
91033,120,0,327,3,
9104121,0,327,3,122,
91050,327,3,48,0,
9106327,3,49,0,327,
91073,50,0,327,3,
910851,0,327,3,52,
91090,327,3,53,0,
9110327,3,54,0,327,
91113,55,0,327,3,
911256,0,327,3,57,
91130,327,3,65,0,
9114327,3,66,0,327,
91153,67,0,327,3,
911668,0,327,3,69,
91170,327,3,70,0,
9118327,3,71,0,327,
91193,72,0,327,3,
912073,0,327,3,74,
91210,327,3,75,0,
9122327,3,76,0,327,
91233,77,0,327,3,
912478,0,327,3,79,
91250,327,3,80,0,
9126327,3,81,0,327,
91273,82,0,327,3,
912883,0,327,3,84,
91290,327,3,85,0,
9130327,3,86,0,327,
91313,87,0,327,3,
913288,0,327,3,89,
91330,327,3,90,0,
9134327,3,95,0,327,
91353,97,0,327,3,
913698,0,327,3,99,
91370,327,3,100,0,
9138327,3,101,0,327,
91393,102,0,327,3,
9140103,0,327,3,104,
91410,327,3,105,0,
9142327,3,106,0,327,
91433,107,0,327,3,
9144108,0,327,799,11,
91451,829,0,330,1,
9146-1,3,102,0,327,
91473,103,0,327,3,
9148104,0,327,3,105,
91490,327,3,106,0,
9150327,3,107,0,327,
91513,108,0,327,800,
915211,1,829,0,330,
91531,-1,3,110,0,
9154327,3,111,0,327,
91553,112,0,327,3,
9156113,0,327,3,114,
91570,327,3,115,0,
9158327,3,116,0,327,
91593,117,0,327,3,
9160118,0,327,3,119,
91610,327,3,120,0,
9162327,3,121,0,327,
91633,122,0,327,3,
916448,0,327,3,49,
91650,327,3,50,0,
9166327,3,51,0,327,
91673,52,0,327,3,
916853,0,327,3,54,
91690,327,3,55,0,
9170327,3,56,0,327,
91713,57,0,327,3,
917265,0,327,3,66,
91730,327,3,67,0,
9174327,3,68,0,327,
91753,69,0,327,3,
917670,0,327,3,71,
91770,327,3,72,0,
9178327,3,73,0,327,
91793,74,0,327,3,
918075,0,327,3,76,
91810,327,3,77,0,
9182327,3,78,0,327,
91833,79,0,327,3,
918480,0,327,3,81,
91850,327,3,82,0,
9186327,3,83,0,327,
91873,84,0,327,3,
918885,0,327,3,86,
91890,327,3,87,0,
9190327,3,88,0,327,
91913,89,0,327,3,
919290,0,327,3,95,
91930,327,3,97,0,
9194327,3,98,0,327,
91953,99,0,327,3,
9196100,0,327,3,101,
91970,327,3,102,0,
9198327,3,103,0,327,
91993,104,0,327,3,
9200105,0,327,3,106,
92010,327,3,107,0,
9202327,3,108,0,327,
9203801,11,1,829,0,
9204330,1,-1,3,97,
92050,327,3,98,0,
9206327,3,99,0,327,
92073,100,0,327,3,
9208101,0,327,3,102,
92090,327,3,103,0,
9210327,3,104,0,327,
92113,105,0,327,3,
9212106,0,327,3,107,
92130,327,3,108,0,
9214327,802,11,1,829,
92150,330,1,-1,3,
9216108,0,327,803,11,
92171,829,0,330,1,
9218-1,3,111,0,327,
92193,112,0,327,3,
9220113,0,327,3,114,
92210,327,3,115,0,
9222804,12,1,37401,805,
92235,63,3,109,0,
9224327,3,110,0,327,
92253,111,0,327,3,
9226112,0,327,3,113,
92270,327,3,114,0,
9228327,3,115,0,327,
92293,116,0,806,12,
92301,37436,807,5,63,
92313,109,0,327,3,
9232110,0,327,3,111,
92330,327,3,112,0,
9234327,3,113,0,327,
92353,114,0,327,3,
9236115,0,327,3,116,
92370,327,3,117,0,
9238327,3,118,0,327,
92393,119,0,327,3,
9240120,0,327,3,121,
92410,327,3,122,0,
9242327,3,48,0,327,
92433,49,0,327,3,
924450,0,327,3,51,
92450,327,3,52,0,
9246327,3,53,0,327,
92473,54,0,327,3,
924855,0,327,3,56,
92490,327,3,57,0,
9250327,3,65,0,327,
92513,66,0,327,3,
925267,0,327,3,68,
92530,327,3,69,0,
9254327,3,70,0,327,
92553,71,0,327,3,
925672,0,327,3,73,
92570,327,3,74,0,
9258327,3,75,0,327,
92593,76,0,327,3,
926077,0,327,3,78,
92610,327,3,79,0,
9262327,3,80,0,327,
92633,81,0,327,3,
926482,0,327,3,83,
92650,327,3,84,0,
9266327,3,85,0,327,
92673,86,0,327,3,
926887,0,327,3,88,
92690,327,3,89,0,
9270327,3,90,0,327,
92713,95,0,327,3,
927297,0,327,3,98,
92730,327,3,99,0,
9274327,3,100,0,327,
92753,101,0,808,12,
92761,37483,809,5,63,
92773,109,0,327,3,
9278110,0,810,12,1,
927937512,811,5,63,3,
9280109,0,327,3,110,
92810,327,3,111,0,
9282327,3,112,0,327,
92833,113,0,327,3,
9284114,0,327,3,115,
92850,327,3,116,0,
9286327,3,117,0,327,
92873,118,0,327,3,
9288119,0,327,3,120,
92890,327,3,121,0,
9290327,3,122,0,327,
92913,48,0,327,3,
929249,0,327,3,50,
92930,327,3,51,0,
9294327,3,52,0,327,
92953,53,0,327,3,
929654,0,327,3,55,
92970,327,3,56,0,
9298327,3,57,0,327,
92993,65,0,327,3,
930066,0,327,3,67,
93010,327,3,68,0,
9302327,3,69,0,327,
93033,70,0,327,3,
930471,0,327,3,72,
93050,327,3,73,0,
9306327,3,74,0,327,
93073,75,0,327,3,
930876,0,327,3,77,
93090,327,3,78,0,
9310327,3,79,0,327,
93113,80,0,327,3,
931281,0,327,3,82,
93130,327,3,83,0,
9314327,3,84,0,327,
93153,85,0,327,3,
931686,0,327,3,87,
93170,327,3,88,0,
9318327,3,89,0,327,
93193,90,0,327,3,
932095,0,327,3,97,
93210,327,3,98,0,
9322327,3,99,0,327,
93233,100,0,327,3,
9324101,0,327,3,102,
93250,327,3,103,0,
9326327,3,104,0,327,
93273,105,0,327,3,
9328106,0,327,3,107,
93290,327,3,108,0,
9330327,812,11,1,581,
93310,813,4,24,76,
93320,73,0,83,0,
933384,0,69,0,78,
93340,95,0,69,0,
933586,0,69,0,78,
93360,84,0,1,-1,
93373,111,0,327,3,
9338112,0,327,3,113,
93390,327,3,114,0,
9340327,3,115,0,327,
93413,116,0,327,3,
9342117,0,327,3,118,
93430,327,3,119,0,
9344327,3,120,0,327,
93453,121,0,327,3,
9346122,0,327,3,48,
93470,327,3,49,0,
9348327,3,50,0,327,
93493,51,0,327,3,
935052,0,327,3,53,
93510,327,3,54,0,
9352327,3,55,0,327,
93533,56,0,327,3,
935457,0,327,3,65,
93550,327,3,66,0,
9356327,3,67,0,327,
93573,68,0,327,3,
935869,0,327,3,70,
93590,327,3,71,0,
9360327,3,72,0,327,
93613,73,0,327,3,
936274,0,327,3,75,
93630,327,3,76,0,
9364327,3,77,0,327,
93653,78,0,327,3,
936679,0,327,3,80,
93670,327,3,81,0,
9368327,3,82,0,327,
93693,83,0,327,3,
937084,0,327,3,85,
93710,327,3,86,0,
9372327,3,87,0,327,
93733,88,0,327,3,
937489,0,327,3,90,
93750,327,3,95,0,
9376327,3,97,0,327,
93773,98,0,327,3,
937899,0,327,3,100,
93790,327,3,101,0,
9380327,3,102,0,327,
93813,103,0,327,3,
9382104,0,327,3,105,
93830,327,3,106,0,
9384327,3,107,0,327,
93853,108,0,327,814,
938611,1,829,0,330,
93871,-1,3,102,0,
9388327,3,103,0,327,
93893,104,0,327,3,
9390105,0,327,3,106,
93910,327,3,107,0,
9392327,3,108,0,327,
9393815,11,1,342,0,
9394816,4,18,76,0,
939573,0,83,0,84,
93960,95,0,84,0,
939789,0,80,0,69,
93980,1,-1,3,117,
93990,327,3,118,0,
9400327,3,119,0,327,
94013,120,0,327,3,
9402121,0,327,3,122,
94030,327,3,48,0,
9404327,3,49,0,327,
94053,50,0,327,3,
940651,0,327,3,52,
94070,327,3,53,0,
9408327,3,54,0,327,
94093,55,0,327,3,
941056,0,327,3,57,
94110,327,3,65,0,
9412327,3,66,0,327,
94133,67,0,327,3,
941468,0,327,3,69,
94150,327,3,70,0,
9416327,3,71,0,327,
94173,72,0,327,3,
941873,0,327,3,74,
94190,327,3,75,0,
9420327,3,76,0,327,
94213,77,0,327,3,
942278,0,327,3,79,
94230,327,3,80,0,
9424327,3,81,0,327,
94253,82,0,327,3,
942683,0,327,3,84,
94270,327,3,85,0,
9428327,3,86,0,327,
94293,87,0,327,3,
943088,0,327,3,89,
94310,327,3,90,0,
9432327,3,95,0,327,
94333,97,0,327,3,
943498,0,327,3,99,
94350,327,3,100,0,
9436327,3,101,0,327,
94373,102,0,327,3,
9438103,0,327,3,104,
94390,327,3,105,0,
9440327,3,106,0,327,
94413,107,0,327,3,
9442108,0,327,817,11,
94431,829,0,330,1,
9444-1,3,116,0,327,
94453,117,0,327,3,
9446118,0,327,3,119,
94470,327,3,120,0,
9448327,3,121,0,327,
94493,122,0,327,3,
945048,0,327,3,49,
94510,327,3,50,0,
9452327,3,51,0,327,
94533,52,0,327,3,
945453,0,327,3,54,
94550,327,3,55,0,
9456327,3,56,0,327,
94573,57,0,327,3,
945865,0,327,3,66,
94590,327,3,67,0,
9460327,3,68,0,327,
94613,69,0,327,3,
946270,0,327,3,71,
94630,327,3,72,0,
9464327,3,73,0,327,
94653,74,0,327,3,
946675,0,327,3,76,
94670,327,3,77,0,
9468327,3,78,0,327,
94693,79,0,327,3,
947080,0,327,3,81,
94710,327,3,82,0,
9472327,3,83,0,327,
94733,84,0,327,3,
947485,0,327,3,86,
94750,327,3,87,0,
9476327,3,88,0,327,
94773,89,0,327,3,
947890,0,327,3,95,
94790,327,3,97,0,
9480327,3,98,0,327,
94813,99,0,327,3,
9482100,0,327,3,101,
94830,327,3,102,0,
9484327,3,103,0,327,
94853,104,0,327,3,
9486105,0,327,3,106,
94870,327,3,107,0,
9488327,3,108,0,327,
9489818,11,1,829,0,
9490330,1,-1,3,106,
94910,327,3,107,0,
9492327,3,108,0,327,
9493819,11,1,829,0,
9494330,1,-1,3,109,
94950,820,12,1,1290,
9496821,5,63,3,109,
94970,327,3,110,0,
9498327,3,111,0,822,
949912,1,1320,823,5,
950063,3,109,0,327,
95013,110,0,824,12,
95021,1349,825,5,63,
95033,109,0,327,3,
9504110,0,327,3,111,
95050,327,3,112,0,
9506327,3,113,0,327,
95073,114,0,327,3,
9508115,0,327,3,116,
95090,327,3,117,0,
9510327,3,118,0,327,
95113,119,0,327,3,
9512120,0,327,3,121,
95130,327,3,122,0,
9514327,3,48,0,327,
95153,49,0,327,3,
951650,0,327,3,51,
95170,327,3,52,0,
9518327,3,53,0,327,
95193,54,0,327,3,
952055,0,327,3,56,
95210,327,3,57,0,
9522327,3,65,0,327,
95233,66,0,327,3,
952467,0,327,3,68,
95250,327,3,69,0,
9526327,3,70,0,327,
95273,71,0,327,3,
952872,0,327,3,73,
95290,327,3,74,0,
9530327,3,75,0,327,
95313,76,0,327,3,
953277,0,327,3,78,
95330,327,3,79,0,
9534327,3,80,0,327,
95353,81,0,327,3,
953682,0,327,3,83,
95370,327,3,84,0,
9538327,3,85,0,327,
95393,86,0,327,3,
954087,0,327,3,88,
95410,327,3,89,0,
9542327,3,90,0,327,
95433,95,0,327,3,
954497,0,327,3,98,
95450,327,3,99,0,
9546327,3,100,0,327,
95473,101,0,826,12,
95481,1396,827,5,63,
95493,109,0,327,3,
9550110,0,327,3,111,
95510,327,3,112,0,
9552327,3,113,0,327,
95533,114,0,327,3,
9554115,0,327,3,116,
95550,327,3,117,0,
9556327,3,118,0,327,
95573,119,0,327,3,
9558120,0,327,3,121,
95590,828,12,1,1436,
9560829,5,63,3,109,
95610,327,3,110,0,
9562327,3,111,0,327,
95633,112,0,327,3,
9564113,0,327,3,114,
95650,327,3,115,0,
9566327,3,116,0,327,
95673,117,0,327,3,
9568118,0,327,3,119,
95690,327,3,120,0,
9570327,3,121,0,327,
95713,122,0,327,3,
957248,0,327,3,49,
95730,327,3,50,0,
9574327,3,51,0,327,
95753,52,0,327,3,
957653,0,327,3,54,
95770,327,3,55,0,
9578327,3,56,0,327,
95793,57,0,327,3,
958065,0,327,3,66,
95810,327,3,67,0,
9582327,3,68,0,327,
95833,69,0,327,3,
958470,0,327,3,71,
95850,327,3,72,0,
9586327,3,73,0,327,
95873,74,0,327,3,
958875,0,327,3,76,
95890,327,3,77,0,
9590327,3,78,0,327,
95913,79,0,327,3,
959280,0,327,3,81,
95930,327,3,82,0,
9594327,3,83,0,327,
95953,84,0,327,3,
959685,0,327,3,86,
95970,327,3,87,0,
9598327,3,88,0,327,
95993,89,0,327,3,
960090,0,327,3,95,
96010,327,3,97,0,
9602327,3,98,0,327,
96033,99,0,327,3,
9604100,0,327,3,101,
96050,327,3,102,0,
9606327,3,103,0,327,
96073,104,0,327,3,
9608105,0,327,3,106,
96090,327,3,107,0,
9610327,3,108,0,327,
9611830,11,1,591,0,
9612831,4,22,77,0,
961379,0,78,0,69,
96140,89,0,95,0,
961569,0,86,0,69,
96160,78,0,84,0,
96171,-1,3,122,0,
9618327,3,48,0,327,
96193,49,0,327,3,
962050,0,327,3,51,
96210,327,3,52,0,
9622327,3,53,0,327,
96233,54,0,327,3,
962455,0,327,3,56,
96250,327,3,57,0,
9626327,3,65,0,327,
96273,66,0,327,3,
962867,0,327,3,68,
96290,327,3,69,0,
9630327,3,70,0,327,
96313,71,0,327,3,
963272,0,327,3,73,
96330,327,3,74,0,
9634327,3,75,0,327,
96353,76,0,327,3,
963677,0,327,3,78,
96370,327,3,79,0,
9638327,3,80,0,327,
96393,81,0,327,3,
964082,0,327,3,83,
96410,327,3,84,0,
9642327,3,85,0,327,
96433,86,0,327,3,
964487,0,327,3,88,
96450,327,3,89,0,
9646327,3,90,0,327,
96473,95,0,327,3,
964897,0,327,3,98,
96490,327,3,99,0,
9650327,3,100,0,327,
96513,101,0,327,3,
9652102,0,327,3,103,
96530,327,3,104,0,
9654327,3,105,0,327,
96553,106,0,327,3,
9656107,0,327,3,108,
96570,327,832,11,1,
9658829,0,330,1,-1,
96593,102,0,327,3,
9660103,0,327,3,104,
96610,327,3,105,0,
9662327,3,106,0,327,
96633,107,0,327,3,
9664108,0,327,833,11,
96651,829,0,330,1,
9666-1,3,111,0,327,
96673,112,0,327,3,
9668113,0,327,3,114,
96690,327,3,115,0,
9670327,3,116,0,327,
96713,117,0,327,3,
9672118,0,834,12,1,
96731717,835,5,63,3,
9674109,0,327,3,110,
96750,327,3,111,0,
9676327,3,112,0,327,
96773,113,0,327,3,
9678114,0,327,3,115,
96790,327,3,116,0,
9680327,3,117,0,327,
96813,118,0,327,3,
9682119,0,327,3,120,
96830,327,3,121,0,
9684327,3,122,0,327,
96853,48,0,327,3,
968649,0,327,3,50,
96870,327,3,51,0,
9688327,3,52,0,327,
96893,53,0,327,3,
969054,0,327,3,55,
96910,327,3,56,0,
9692327,3,57,0,327,
96933,65,0,327,3,
969466,0,327,3,67,
96950,327,3,68,0,
9696327,3,69,0,327,
96973,70,0,327,3,
969871,0,327,3,72,
96990,327,3,73,0,
9700327,3,74,0,327,
97013,75,0,327,3,
970276,0,327,3,77,
97030,327,3,78,0,
9704327,3,79,0,327,
97053,80,0,327,3,
970681,0,327,3,82,
97070,327,3,83,0,
9708327,3,84,0,327,
97093,85,0,327,3,
971086,0,327,3,87,
97110,327,3,88,0,
9712327,3,89,0,327,
97133,90,0,327,3,
971495,0,327,3,97,
97150,327,3,98,0,
9716327,3,99,0,327,
97173,100,0,327,3,
9718101,0,327,3,102,
97190,327,3,103,0,
9720327,3,104,0,327,
97213,105,0,836,12,
97221,1768,837,5,63,
97233,109,0,327,3,
9724110,0,838,12,1,
97251797,839,5,63,3,
9726109,0,327,3,110,
97270,327,3,111,0,
9728327,3,112,0,327,
97293,113,0,327,3,
9730114,0,327,3,115,
97310,327,3,116,0,
9732327,3,117,0,327,
97333,118,0,327,3,
9734119,0,327,3,120,
97350,327,3,121,0,
9736327,3,122,0,327,
97373,48,0,327,3,
973849,0,327,3,50,
97390,327,3,51,0,
9740327,3,52,0,327,
97413,53,0,327,3,
974254,0,327,3,55,
97430,327,3,56,0,
9744327,3,57,0,327,
97453,65,0,327,3,
974666,0,327,3,67,
97470,327,3,68,0,
9748327,3,69,0,327,
97493,70,0,327,3,
975071,0,327,3,72,
97510,327,3,73,0,
9752327,3,74,0,327,
97533,75,0,327,3,
975476,0,327,3,77,
97550,327,3,78,0,
9756327,3,79,0,327,
97573,80,0,327,3,
975881,0,327,3,82,
97590,327,3,83,0,
9760327,3,84,0,327,
97613,85,0,327,3,
976286,0,327,3,87,
97630,327,3,88,0,
9764327,3,89,0,327,
97653,90,0,327,3,
976695,0,327,3,97,
97670,327,3,98,0,
9768327,3,99,0,327,
97693,100,0,327,3,
9770101,0,327,3,102,
97710,327,3,103,0,
9772840,12,1,1846,841,
97735,63,3,109,0,
9774327,3,110,0,327,
97753,111,0,327,3,
9776112,0,327,3,113,
97770,327,3,114,0,
9778327,3,115,0,327,
97793,116,0,327,3,
9780117,0,327,3,118,
97810,327,3,119,0,
9782327,3,120,0,327,
97833,121,0,327,3,
9784122,0,327,3,48,
97850,327,3,49,0,
9786327,3,50,0,327,
97873,51,0,327,3,
978852,0,327,3,53,
97890,327,3,54,0,
9790327,3,55,0,327,
97913,56,0,327,3,
979257,0,327,3,65,
97930,327,3,66,0,
9794327,3,67,0,327,
97953,68,0,327,3,
979669,0,327,3,70,
97970,327,3,71,0,
9798327,3,72,0,327,
97993,73,0,327,3,
980074,0,327,3,75,
98010,327,3,76,0,
9802327,3,77,0,327,
98033,78,0,327,3,
980479,0,327,3,80,
98050,327,3,81,0,
9806327,3,82,0,327,
98073,83,0,327,3,
980884,0,327,3,85,
98090,327,3,86,0,
9810327,3,87,0,327,
98113,88,0,327,3,
981289,0,327,3,90,
98130,327,3,95,0,
9814842,12,1,1932,843,
98155,63,3,109,0,
9816327,3,110,0,327,
98173,111,0,327,3,
9818112,0,327,3,113,
98190,327,3,114,0,
9820327,3,115,0,844,
982112,1,1966,845,5,
982263,3,109,0,327,
98233,110,0,327,3,
9824111,0,327,3,112,
98250,327,3,113,0,
9826327,3,114,0,327,
98273,115,0,327,3,
9828116,0,846,12,1,
98292001,847,5,63,3,
9830109,0,327,3,110,
98310,327,3,111,0,
9832327,3,112,0,327,
98333,113,0,327,3,
9834114,0,327,3,115,
98350,327,3,116,0,
9836327,3,117,0,327,
98373,118,0,327,3,
9838119,0,327,3,120,
98390,327,3,121,0,
9840327,3,122,0,327,
98413,48,0,327,3,
984249,0,327,3,50,
98430,327,3,51,0,
9844327,3,52,0,327,
98453,53,0,327,3,
984654,0,327,3,55,
98470,327,3,56,0,
9848327,3,57,0,327,
98493,65,0,327,3,
985066,0,327,3,67,
98510,327,3,68,0,
9852327,3,69,0,327,
98533,70,0,327,3,
985471,0,327,3,72,
98550,327,3,73,0,
9856327,3,74,0,327,
98573,75,0,327,3,
985876,0,327,3,77,
98590,327,3,78,0,
9860327,3,79,0,327,
98613,80,0,327,3,
986281,0,327,3,82,
98630,327,3,83,0,
9864327,3,84,0,327,
98653,85,0,327,3,
986686,0,327,3,87,
98670,327,3,88,0,
9868327,3,89,0,327,
98693,90,0,327,3,
987095,0,327,3,97,
98710,848,12,1,2044,
9872849,5,63,3,109,
98730,327,3,110,0,
9874327,3,111,0,327,
98753,112,0,327,3,
9876113,0,327,3,114,
98770,850,12,1,2077,
9878851,5,63,3,109,
98790,327,3,110,0,
9880327,3,111,0,327,
98813,112,0,327,3,
9882113,0,327,3,114,
98830,327,3,115,0,
9884327,3,116,0,852,
988512,1,2112,853,5,
988663,3,109,0,327,
98873,110,0,327,3,
9888111,0,327,3,112,
98890,327,3,113,0,
9890327,3,114,0,327,
98913,115,0,327,3,
9892116,0,327,3,117,
98930,327,3,118,0,
9894327,3,119,0,327,
98953,120,0,327,3,
9896121,0,327,3,122,
98970,327,3,48,0,
9898327,3,49,0,327,
98993,50,0,327,3,
990051,0,327,3,52,
99010,327,3,53,0,
9902327,3,54,0,327,
99033,55,0,327,3,
990456,0,327,3,57,
99050,327,3,65,0,
9906327,3,66,0,327,
99073,67,0,327,3,
990868,0,327,3,69,
99090,327,3,70,0,
9910327,3,71,0,327,
99113,72,0,327,3,
991273,0,327,3,74,
99130,327,3,75,0,
9914327,3,76,0,327,
99153,77,0,327,3,
991678,0,327,3,79,
99170,327,3,80,0,
9918327,3,81,0,327,
99193,82,0,327,3,
992083,0,327,3,84,
99210,327,3,85,0,
9922327,3,86,0,327,
99233,87,0,327,3,
992488,0,327,3,89,
99250,327,3,90,0,
9926327,3,95,0,327,
99273,97,0,327,3,
992898,0,327,3,99,
99290,327,3,100,0,
9930327,3,101,0,327,
99313,102,0,327,3,
9932103,0,327,3,104,
99330,327,3,105,0,
9934327,3,106,0,327,
99353,107,0,327,3,
9936108,0,327,854,11,
99371,614,0,855,4,
993836,77,0,79,0,
993986,0,73,0,78,
99400,71,0,95,0,
994183,0,84,0,65,
99420,82,0,84,0,
994395,0,69,0,86,
99440,69,0,78,0,
994584,0,1,-1,3,
9946117,0,327,3,118,
99470,327,3,119,0,
9948327,3,120,0,327,
99493,121,0,327,3,
9950122,0,327,3,48,
99510,327,3,49,0,
9952327,3,50,0,327,
99533,51,0,327,3,
995452,0,327,3,53,
99550,327,3,54,0,
9956327,3,55,0,327,
99573,56,0,327,3,
995857,0,327,3,65,
99590,327,3,66,0,
9960327,3,67,0,327,
99613,68,0,327,3,
996269,0,327,3,70,
99630,327,3,71,0,
9964327,3,72,0,327,
99653,73,0,327,3,
996674,0,327,3,75,
99670,327,3,76,0,
9968327,3,77,0,327,
99693,78,0,327,3,
997079,0,327,3,80,
99710,327,3,81,0,
9972327,3,82,0,327,
99733,83,0,327,3,
997484,0,327,3,85,
99750,327,3,86,0,
9976327,3,87,0,327,
99773,88,0,327,3,
997889,0,327,3,90,
99790,327,3,95,0,
9980327,3,97,0,327,
99813,98,0,327,3,
998299,0,327,3,100,
99830,327,3,101,0,
9984327,3,102,0,327,
99853,103,0,327,3,
9986104,0,327,3,105,
99870,327,3,106,0,
9988327,3,107,0,327,
99893,108,0,327,856,
999011,1,829,0,330,
99911,-1,3,115,0,
9992327,3,116,0,327,
99933,117,0,327,3,
9994118,0,327,3,119,
99950,327,3,120,0,
9996327,3,121,0,327,
99973,122,0,327,3,
999848,0,327,3,49,
99990,327,3,50,0,
10000327,3,51,0,327,
100013,52,0,327,3,
1000253,0,327,3,54,
100030,327,3,55,0,
10004327,3,56,0,327,
100053,57,0,327,3,
1000665,0,327,3,66,
100070,327,3,67,0,
10008327,3,68,0,327,
100093,69,0,327,3,
1001070,0,327,3,71,
100110,327,3,72,0,
10012327,3,73,0,327,
100133,74,0,327,3,
1001475,0,327,3,76,
100150,327,3,77,0,
10016327,3,78,0,327,
100173,79,0,327,3,
1001880,0,327,3,81,
100190,327,3,82,0,
10020327,3,83,0,327,
100213,84,0,327,3,
1002285,0,327,3,86,
100230,327,3,87,0,
10024327,3,88,0,327,
100253,89,0,327,3,
1002690,0,327,3,95,
100270,327,3,97,0,
10028327,3,98,0,327,
100293,99,0,327,3,
10030100,0,327,3,101,
100310,327,3,102,0,
10032327,3,103,0,327,
100333,104,0,327,3,
10034105,0,327,3,106,
100350,327,3,107,0,
10036327,3,108,0,327,
10037857,11,1,829,0,
10038330,1,-1,3,98,
100390,327,3,99,0,
10040327,3,100,0,327,
100413,101,0,327,3,
10042102,0,327,3,103,
100430,327,3,104,0,
10044327,3,105,0,327,
100453,106,0,327,3,
10046107,0,327,3,108,
100470,327,858,11,1,
10048829,0,330,1,-1,
100493,117,0,327,3,
10050118,0,327,3,119,
100510,327,3,120,0,
10052327,3,121,0,327,
100533,122,0,327,3,
1005448,0,327,3,49,
100550,327,3,50,0,
10056327,3,51,0,327,
100573,52,0,327,3,
1005853,0,327,3,54,
100590,327,3,55,0,
10060327,3,56,0,327,
100613,57,0,327,3,
1006265,0,327,3,66,
100630,327,3,67,0,
10064327,3,68,0,327,
100653,69,0,327,3,
1006670,0,327,3,71,
100670,327,3,72,0,
10068327,3,73,0,327,
100693,74,0,327,3,
1007075,0,327,3,76,
100710,327,3,77,0,
10072327,3,78,0,327,
100733,79,0,327,3,
1007480,0,327,3,81,
100750,327,3,82,0,
10076327,3,83,0,327,
100773,84,0,327,3,
1007885,0,327,3,86,
100790,327,3,87,0,
10080327,3,88,0,327,
100813,89,0,327,3,
1008290,0,327,3,95,
100830,327,3,97,0,
10084327,3,98,0,327,
100853,99,0,327,3,
10086100,0,327,3,101,
100870,327,3,102,0,
10088327,3,103,0,327,
100893,104,0,327,3,
10090105,0,327,3,106,
100910,327,3,107,0,
10092327,3,108,0,327,
10093859,11,1,829,0,
10094330,1,-1,3,116,
100950,327,3,117,0,
10096327,3,118,0,327,
100973,119,0,327,3,
10098120,0,327,3,121,
100990,327,3,122,0,
10100327,3,48,0,327,
101013,49,0,327,3,
1010250,0,327,3,51,
101030,327,3,52,0,
10104327,3,53,0,327,
101053,54,0,327,3,
1010655,0,327,3,56,
101070,327,3,57,0,
10108327,3,65,0,327,
101093,66,0,327,3,
1011067,0,327,3,68,
101110,327,3,69,0,
10112327,3,70,0,327,
101133,71,0,327,3,
1011472,0,327,3,73,
101150,327,3,74,0,
10116327,3,75,0,327,
101173,76,0,327,3,
1011877,0,327,3,78,
101190,327,3,79,0,
10120327,3,80,0,327,
101213,81,0,327,3,
1012282,0,327,3,83,
101230,327,3,84,0,
10124327,3,85,0,327,
101253,86,0,327,3,
1012687,0,327,3,88,
101270,327,3,89,0,
10128327,3,90,0,327,
101293,95,0,327,3,
1013097,0,327,3,98,
101310,327,3,99,0,
10132327,3,100,0,327,
101333,101,0,860,12,
101341,2579,861,5,63,
101353,109,0,327,3,
10136110,0,862,12,1,
101372608,863,5,63,3,
10138109,0,327,3,110,
101390,327,3,111,0,
10140327,3,112,0,327,
101413,113,0,327,3,
10142114,0,327,3,115,
101430,327,3,116,0,
10144327,3,117,0,327,
101453,118,0,327,3,
10146119,0,327,3,120,
101470,327,3,121,0,
10148327,3,122,0,327,
101493,48,0,327,3,
1015049,0,327,3,50,
101510,327,3,51,0,
10152327,3,52,0,327,
101533,53,0,327,3,
1015454,0,327,3,55,
101550,327,3,56,0,
10156327,3,57,0,327,
101573,65,0,327,3,
1015866,0,327,3,67,
101590,327,3,68,0,
10160327,3,69,0,327,
101613,70,0,327,3,
1016271,0,327,3,72,
101630,327,3,73,0,
10164327,3,74,0,327,
101653,75,0,327,3,
1016676,0,327,3,77,
101670,327,3,78,0,
10168327,3,79,0,327,
101693,80,0,327,3,
1017081,0,327,3,82,
101710,327,3,83,0,
10172327,3,84,0,327,
101733,85,0,327,3,
1017486,0,327,3,87,
101750,327,3,88,0,
10176327,3,89,0,327,
101773,90,0,327,3,
1017895,0,327,3,97,
101790,327,3,98,0,
10180327,3,99,0,327,
101813,100,0,864,12,
101821,2654,865,5,63,
101833,109,0,327,3,
10184110,0,327,3,111,
101850,327,3,112,0,
10186327,3,113,0,327,
101873,114,0,327,3,
10188115,0,327,3,116,
101890,327,3,117,0,
10190327,3,118,0,327,
101913,119,0,327,3,
10192120,0,327,3,121,
101930,327,3,122,0,
10194327,3,48,0,327,
101953,49,0,327,3,
1019650,0,327,3,51,
101970,327,3,52,0,
10198327,3,53,0,327,
101993,54,0,327,3,
1020055,0,327,3,56,
102010,327,3,57,0,
10202327,3,65,0,327,
102033,66,0,327,3,
1020467,0,327,3,68,
102050,327,3,69,0,
10206327,3,70,0,327,
102073,71,0,327,3,
1020872,0,327,3,73,
102090,327,3,74,0,
10210327,3,75,0,327,
102113,76,0,327,3,
1021277,0,327,3,78,
102130,327,3,79,0,
10214327,3,80,0,327,
102153,81,0,327,3,
1021682,0,327,3,83,
102170,327,3,84,0,
10218327,3,85,0,327,
102193,86,0,327,3,
1022087,0,327,3,88,
102210,327,3,89,0,
10222327,3,90,0,327,
102233,95,0,327,3,
1022497,0,327,3,98,
102250,327,3,99,0,
10226327,3,100,0,327,
102273,101,0,327,3,
10228102,0,327,3,103,
102290,327,3,104,0,
10230327,3,105,0,327,
102313,106,0,327,3,
10232107,0,327,3,108,
102330,327,866,11,1,
10234600,0,867,4,32,
1023577,0,79,0,86,
102360,73,0,78,0,
1023771,0,95,0,69,
102380,78,0,68,0,
1023995,0,69,0,86,
102400,69,0,78,0,
1024184,0,1,-1,3,
10242101,0,327,3,102,
102430,327,3,103,0,
10244327,3,104,0,327,
102453,105,0,327,3,
10246106,0,327,3,107,
102470,327,3,108,0,
10248327,868,11,1,829,
102490,330,1,-1,3,
10250111,0,327,3,112,
102510,327,3,113,0,
10252327,3,114,0,327,
102533,115,0,327,3,
10254116,0,327,3,117,
102550,327,3,118,0,
10256327,3,119,0,327,
102573,120,0,327,3,
10258121,0,327,3,122,
102590,327,3,48,0,
10260327,3,49,0,327,
102613,50,0,327,3,
1026251,0,327,3,52,
102630,327,3,53,0,
10264327,3,54,0,327,
102653,55,0,327,3,
1026656,0,327,3,57,
102670,327,3,65,0,
10268327,3,66,0,327,
102693,67,0,327,3,
1027068,0,327,3,69,
102710,327,3,70,0,
10272327,3,71,0,327,
102733,72,0,327,3,
1027473,0,327,3,74,
102750,327,3,75,0,
10276327,3,76,0,327,
102773,77,0,327,3,
1027878,0,327,3,79,
102790,327,3,80,0,
10280327,3,81,0,327,
102813,82,0,327,3,
1028283,0,327,3,84,
102830,327,3,85,0,
10284327,3,86,0,327,
102853,87,0,327,3,
1028688,0,327,3,89,
102870,327,3,90,0,
10288327,3,95,0,327,
102893,97,0,327,3,
1029098,0,327,3,99,
102910,327,3,100,0,
10292327,3,101,0,327,
102933,102,0,327,3,
10294103,0,327,3,104,
102950,327,3,105,0,
10296327,3,106,0,327,
102973,107,0,327,3,
10298108,0,327,869,11,
102991,829,0,330,1,
10300-1,3,102,0,327,
103013,103,0,327,3,
10302104,0,327,3,105,
103030,327,3,106,0,
10304327,3,107,0,327,
103053,108,0,327,870,
1030611,1,829,0,330,
103071,-1,3,97,0,
10308327,3,98,0,327,
103093,99,0,327,3,
10310100,0,327,3,101,
103110,327,3,102,0,
10312327,3,103,0,327,
103133,104,0,327,3,
10314105,0,327,3,106,
103150,327,3,107,0,
10316327,3,108,0,327,
10317871,11,1,829,0,
10318330,1,-1,3,104,
103190,327,3,105,0,
10320327,3,106,0,327,
103213,107,0,327,3,
10322108,0,327,872,11,
103231,829,0,330,1,
10324-1,3,111,0,327,
103253,112,0,327,3,
10326113,0,327,3,114,
103270,327,3,115,0,
10328327,3,116,0,327,
103293,117,0,327,3,
10330118,0,327,3,119,
103310,327,3,120,0,
10332327,3,121,0,327,
103333,122,0,327,3,
1033448,0,327,3,49,
103350,327,3,50,0,
10336327,3,51,0,327,
103373,52,0,327,3,
1033853,0,327,3,54,
103390,327,3,55,0,
10340327,3,56,0,327,
103413,57,0,327,3,
1034265,0,327,3,66,
103430,327,3,67,0,
10344327,3,68,0,327,
103453,69,0,327,3,
1034670,0,327,3,71,
103470,327,3,72,0,
10348327,3,73,0,327,
103493,74,0,327,3,
1035075,0,327,3,76,
103510,327,3,77,0,
10352327,3,78,0,327,
103533,79,0,327,3,
1035480,0,327,3,81,
103550,327,3,82,0,
10356327,3,83,0,327,
103573,84,0,327,3,
1035885,0,327,3,86,
103590,327,3,87,0,
10360327,3,88,0,327,
103613,89,0,327,3,
1036290,0,327,3,95,
103630,327,3,97,0,
10364327,3,98,0,327,
103653,99,0,327,3,
10366100,0,327,3,101,
103670,327,3,102,0,
10368327,3,103,0,327,
103693,104,0,327,3,
10370105,0,327,3,106,
103710,327,3,107,0,
10372327,3,108,0,327,
10373873,11,1,829,0,
10374330,1,-1,3,106,
103750,327,3,107,0,
10376327,3,108,0,327,
10377874,11,1,829,0,
10378330,1,-1,3,119,
103790,327,3,120,0,
10380327,3,121,0,327,
103813,122,0,327,3,
1038248,0,327,3,49,
103830,327,3,50,0,
10384327,3,51,0,327,
103853,52,0,327,3,
1038653,0,327,3,54,
103870,327,3,55,0,
10388327,3,56,0,327,
103893,57,0,327,3,
1039065,0,327,3,66,
103910,327,3,67,0,
10392327,3,68,0,327,
103933,69,0,327,3,
1039470,0,327,3,71,
103950,327,3,72,0,
10396327,3,73,0,327,
103973,74,0,327,3,
1039875,0,327,3,76,
103990,327,3,77,0,
10400327,3,78,0,327,
104013,79,0,327,3,
1040280,0,327,3,81,
104030,327,3,82,0,
10404327,3,83,0,327,
104053,84,0,327,3,
1040685,0,327,3,86,
104070,327,3,87,0,
10408327,3,88,0,327,
104093,89,0,327,3,
1041090,0,327,3,95,
104110,327,3,97,0,
10412327,3,98,0,327,
104133,99,0,327,3,
10414100,0,327,3,101,
104150,327,3,102,0,
10416327,3,103,0,327,
104173,104,0,327,3,
10418105,0,327,3,106,
104190,327,3,107,0,
10420327,3,108,0,327,
10421875,11,1,829,0,
10422330,1,-1,3,112,
104230,327,3,113,0,
10424327,3,114,0,327,
104253,115,0,327,3,
10426116,0,327,3,117,
104270,327,3,118,0,
10428327,3,119,0,327,
104293,120,0,327,3,
10430121,0,327,3,122,
104310,327,3,48,0,
10432327,3,49,0,327,
104333,50,0,327,3,
1043451,0,327,3,52,
104350,327,3,53,0,
10436327,3,54,0,327,
104373,55,0,327,3,
1043856,0,327,3,57,
104390,327,3,65,0,
10440327,3,66,0,327,
104413,67,0,327,3,
1044268,0,327,3,69,
104430,327,3,70,0,
10444327,3,71,0,327,
104453,72,0,327,3,
1044673,0,327,3,74,
104470,327,3,75,0,
10448327,3,76,0,327,
104493,77,0,327,3,
1045078,0,327,3,79,
104510,327,3,80,0,
10452327,3,81,0,327,
104533,82,0,327,3,
1045483,0,327,3,84,
104550,327,3,85,0,
10456327,3,86,0,327,
104573,87,0,327,3,
1045888,0,327,3,89,
104590,327,3,90,0,
10460327,3,95,0,327,
104613,97,0,327,3,
1046298,0,327,3,99,
104630,327,3,100,0,
10464327,3,101,0,327,
104653,102,0,327,3,
10466103,0,327,3,104,
104670,327,3,105,0,
10468327,3,106,0,327,
104693,107,0,327,3,
10470108,0,327,876,11,
104711,829,0,330,1,
10472-1,3,110,0,877,
1047312,1,3451,878,5,
1047463,3,109,0,327,
104753,110,0,327,3,
10476111,0,879,12,1,
104773481,880,5,63,3,
10478109,0,327,3,110,
104790,327,3,111,0,
10480327,3,112,0,327,
104813,113,0,327,3,
10482114,0,327,3,115,
104830,327,3,116,0,
10484881,12,1,3516,882,
104855,63,3,109,0,
10486327,3,110,0,327,
104873,111,0,327,3,
10488112,0,327,3,113,
104890,327,3,114,0,
10490327,3,115,0,327,
104913,116,0,327,3,
10492117,0,327,3,118,
104930,327,3,119,0,
10494327,3,120,0,327,
104953,121,0,327,3,
10496122,0,327,3,48,
104970,327,3,49,0,
10498327,3,50,0,327,
104993,51,0,327,3,
1050052,0,327,3,53,
105010,327,3,54,0,
10502327,3,55,0,327,
105033,56,0,327,3,
1050457,0,327,3,65,
105050,327,3,66,0,
10506327,3,67,0,327,
105073,68,0,327,3,
1050869,0,327,3,70,
105090,327,3,71,0,
10510327,3,72,0,327,
105113,73,0,327,3,
1051274,0,327,3,75,
105130,327,3,76,0,
10514327,3,77,0,327,
105153,78,0,327,3,
1051679,0,327,3,80,
105170,327,3,81,0,
10518327,3,82,0,327,
105193,83,0,327,3,
1052084,0,327,3,85,
105210,327,3,86,0,
10522327,3,87,0,327,
105233,88,0,327,3,
1052489,0,327,3,90,
105250,327,3,95,0,
10526883,12,1,3602,884,
105275,63,3,109,0,
10528327,3,110,0,327,
105293,111,0,327,3,
10530112,0,327,3,113,
105310,327,3,114,0,
10532327,3,115,0,327,
105333,116,0,327,3,
10534117,0,327,3,118,
105350,327,3,119,0,
10536327,3,120,0,327,
105373,121,0,327,3,
10538122,0,327,3,48,
105390,327,3,49,0,
10540327,3,50,0,327,
105413,51,0,327,3,
1054252,0,327,3,53,
105430,327,3,54,0,
10544327,3,55,0,327,
105453,56,0,327,3,
1054657,0,327,3,65,
105470,327,3,66,0,
10548327,3,67,0,327,
105493,68,0,327,3,
1055069,0,327,3,70,
105510,327,3,71,0,
10552327,3,72,0,327,
105533,73,0,327,3,
1055474,0,327,3,75,
105550,327,3,76,0,
10556327,3,77,0,327,
105573,78,0,327,3,
1055879,0,327,3,80,
105590,327,3,81,0,
10560327,3,82,0,327,
105613,83,0,327,3,
1056284,0,327,3,85,
105630,327,3,86,0,
10564327,3,87,0,327,
105653,88,0,327,3,
1056689,0,327,3,90,
105670,327,3,95,0,
10568327,3,97,0,885,
1056912,1,3645,886,5,
1057063,3,109,0,327,
105713,110,0,327,3,
10572111,0,327,3,112,
105730,327,3,113,0,
10574327,3,114,0,327,
105753,115,0,327,3,
10576116,0,887,12,1,
105773680,888,5,63,3,
10578109,0,327,3,110,
105790,327,3,111,0,
10580327,3,112,0,327,
105813,113,0,327,3,
10582114,0,327,3,115,
105830,327,3,116,0,
10584327,3,117,0,327,
105853,118,0,327,3,
10586119,0,327,3,120,
105870,327,3,121,0,
10588327,3,122,0,327,
105893,48,0,327,3,
1059049,0,327,3,50,
105910,327,3,51,0,
10592327,3,52,0,327,
105933,53,0,327,3,
1059454,0,327,3,55,
105950,327,3,56,0,
10596327,3,57,0,327,
105973,65,0,327,3,
1059866,0,327,3,67,
105990,327,3,68,0,
10600327,3,69,0,327,
106013,70,0,327,3,
1060271,0,327,3,72,
106030,327,3,73,0,
10604327,3,74,0,327,
106053,75,0,327,3,
1060676,0,327,3,77,
106070,327,3,78,0,
10608327,3,79,0,327,
106093,80,0,327,3,
1061081,0,327,3,82,
106110,327,3,83,0,
10612327,3,84,0,327,
106133,85,0,327,3,
1061486,0,327,3,87,
106150,327,3,88,0,
10616327,3,89,0,327,
106173,90,0,327,3,
1061895,0,889,12,1,
106193766,890,5,63,3,
10620109,0,327,3,110,
106210,327,3,111,0,
10622327,3,112,0,327,
106233,113,0,327,3,
10624114,0,891,12,1,
106253799,892,5,63,3,
10626109,0,327,3,110,
106270,327,3,111,0,
10628893,12,1,3829,894,
106295,63,3,109,0,
10630327,3,110,0,327,
106313,111,0,327,3,
10632112,0,327,3,113,
106330,327,3,114,0,
10634327,3,115,0,327,
106353,116,0,895,12,
106361,3864,896,5,63,
106373,109,0,327,3,
10638110,0,327,3,111,
106390,327,3,112,0,
10640327,3,113,0,327,
106413,114,0,327,3,
10642115,0,327,3,116,
106430,327,3,117,0,
10644327,3,118,0,327,
106453,119,0,327,3,
10646120,0,327,3,121,
106470,327,3,122,0,
10648327,3,48,0,327,
106493,49,0,327,3,
1065050,0,327,3,51,
106510,327,3,52,0,
10652327,3,53,0,327,
106533,54,0,327,3,
1065455,0,327,3,56,
106550,327,3,57,0,
10656327,3,65,0,327,
106573,66,0,327,3,
1065867,0,327,3,68,
106590,327,3,69,0,
10660327,3,70,0,327,
106613,71,0,327,3,
1066272,0,327,3,73,
106630,327,3,74,0,
10664327,3,75,0,327,
106653,76,0,327,3,
1066677,0,327,3,78,
106670,327,3,79,0,
10668327,3,80,0,327,
106693,81,0,327,3,
1067082,0,327,3,83,
106710,327,3,84,0,
10672327,3,85,0,327,
106733,86,0,327,3,
1067487,0,327,3,88,
106750,327,3,89,0,
10676327,3,90,0,327,
106773,95,0,897,12,
106781,3950,898,5,63,
106793,109,0,327,3,
10680110,0,327,3,111,
106810,327,3,112,0,
10682327,3,113,0,327,
106833,114,0,327,3,
10684115,0,327,3,116,
106850,899,12,1,3985,
10686900,5,63,3,109,
106870,327,3,110,0,
10688327,3,111,0,327,
106893,112,0,327,3,
10690113,0,327,3,114,
106910,327,3,115,0,
10692327,3,116,0,327,
106933,117,0,327,3,
10694118,0,327,3,119,
106950,327,3,120,0,
10696327,3,121,0,327,
106973,122,0,327,3,
1069848,0,327,3,49,
106990,327,3,50,0,
10700327,3,51,0,327,
107013,52,0,327,3,
1070253,0,327,3,54,
107030,327,3,55,0,
10704327,3,56,0,327,
107053,57,0,327,3,
1070665,0,327,3,66,
107070,327,3,67,0,
10708327,3,68,0,327,
107093,69,0,327,3,
1071070,0,327,3,71,
107110,327,3,72,0,
10712327,3,73,0,327,
107133,74,0,327,3,
1071475,0,327,3,76,
107150,327,3,77,0,
10716327,3,78,0,327,
107173,79,0,327,3,
1071880,0,327,3,81,
107190,327,3,82,0,
10720327,3,83,0,327,
107213,84,0,327,3,
1072285,0,327,3,86,
107230,327,3,87,0,
10724327,3,88,0,327,
107253,89,0,327,3,
1072690,0,327,3,95,
107270,327,3,97,0,
10728901,12,1,4028,902,
107295,63,3,109,0,
10730327,3,110,0,327,
107313,111,0,327,3,
10732112,0,327,3,113,
107330,327,3,114,0,
10734903,12,1,4061,904,
107355,63,3,109,0,
10736327,3,110,0,327,
107373,111,0,327,3,
10738112,0,327,3,113,
107390,327,3,114,0,
10740327,3,115,0,327,
107413,116,0,327,3,
10742117,0,327,3,118,
107430,327,3,119,0,
10744327,3,120,0,327,
107453,121,0,327,3,
10746122,0,327,3,48,
107470,327,3,49,0,
10748327,3,50,0,327,
107493,51,0,327,3,
1075052,0,327,3,53,
107510,327,3,54,0,
10752327,3,55,0,327,
107533,56,0,327,3,
1075457,0,327,3,65,
107550,327,3,66,0,
10756327,3,67,0,327,
107573,68,0,327,3,
1075869,0,327,3,70,
107590,327,3,71,0,
10760327,3,72,0,327,
107613,73,0,327,3,
1076274,0,327,3,75,
107630,327,3,76,0,
10764327,3,77,0,327,
107653,78,0,327,3,
1076679,0,327,3,80,
107670,327,3,81,0,
10768327,3,82,0,327,
107693,83,0,327,3,
1077084,0,327,3,85,
107710,327,3,86,0,
10772327,3,87,0,327,
107733,88,0,327,3,
1077489,0,327,3,90,
107750,327,3,95,0,
10776327,3,97,0,327,
107773,98,0,327,3,
1077899,0,327,3,100,
107790,327,3,101,0,
10780327,3,102,0,327,
107813,103,0,905,12,
107821,4110,906,5,63,
107833,109,0,327,3,
10784110,0,327,3,111,
107850,327,3,112,0,
10786327,3,113,0,327,
107873,114,0,327,3,
10788115,0,327,3,116,
107890,327,3,117,0,
10790327,3,118,0,327,
107913,119,0,327,3,
10792120,0,327,3,121,
107930,327,3,122,0,
10794327,3,48,0,327,
107953,49,0,327,3,
1079650,0,327,3,51,
107970,327,3,52,0,
10798327,3,53,0,327,
107993,54,0,327,3,
1080055,0,327,3,56,
108010,327,3,57,0,
10802327,3,65,0,327,
108033,66,0,327,3,
1080467,0,327,3,68,
108050,327,3,69,0,
10806327,3,70,0,327,
108073,71,0,327,3,
1080872,0,327,3,73,
108090,327,3,74,0,
10810327,3,75,0,327,
108113,76,0,327,3,
1081277,0,327,3,78,
108130,327,3,79,0,
10814327,3,80,0,327,
108153,81,0,327,3,
1081682,0,327,3,83,
108170,327,3,84,0,
10818327,3,85,0,327,
108193,86,0,327,3,
1082087,0,327,3,88,
108210,327,3,89,0,
10822327,3,90,0,327,
108233,95,0,327,3,
1082497,0,327,3,98,
108250,327,3,99,0,
10826327,3,100,0,327,
108273,101,0,907,12,
108281,4157,908,5,63,
108293,109,0,327,3,
10830110,0,327,3,111,
108310,327,3,112,0,
10832327,3,113,0,327,
108333,114,0,327,3,
10834115,0,327,3,116,
108350,909,12,1,4192,
10836910,5,63,3,109,
108370,327,3,110,0,
10838327,3,111,0,327,
108393,112,0,327,3,
10840113,0,327,3,114,
108410,327,3,115,0,
10842327,3,116,0,327,
108433,117,0,327,3,
10844118,0,327,3,119,
108450,327,3,120,0,
10846327,3,121,0,327,
108473,122,0,327,3,
1084848,0,327,3,49,
108490,327,3,50,0,
10850327,3,51,0,327,
108513,52,0,327,3,
1085253,0,327,3,54,
108530,327,3,55,0,
10854327,3,56,0,327,
108553,57,0,327,3,
1085665,0,327,3,66,
108570,327,3,67,0,
10858327,3,68,0,327,
108593,69,0,327,3,
1086070,0,327,3,71,
108610,327,3,72,0,
10862327,3,73,0,327,
108633,74,0,327,3,
1086475,0,327,3,76,
108650,327,3,77,0,
10866327,3,78,0,327,
108673,79,0,327,3,
1086880,0,327,3,81,
108690,327,3,82,0,
10870327,3,83,0,327,
108713,84,0,327,3,
1087285,0,327,3,86,
108730,327,3,87,0,
10874327,3,88,0,327,
108753,89,0,327,3,
1087690,0,327,3,95,
108770,327,3,97,0,
10878327,3,98,0,327,
108793,99,0,327,3,
10880100,0,327,3,101,
108810,327,3,102,0,
10882327,3,103,0,327,
108833,104,0,327,3,
10884105,0,327,3,106,
108850,327,3,107,0,
10886327,3,108,0,327,
10887911,11,1,643,0,
10888912,4,46,78,0,
1088979,0,84,0,95,
108900,65,0,84,0,
1089195,0,82,0,79,
108920,84,0,95,0,
1089384,0,65,0,82,
108940,71,0,69,0,
1089584,0,95,0,69,
108960,86,0,69,0,
1089778,0,84,0,1,
10898-1,3,117,0,327,
108993,118,0,327,3,
10900119,0,327,3,120,
109010,327,3,121,0,
10902327,3,122,0,327,
109033,48,0,327,3,
1090449,0,327,3,50,
109050,327,3,51,0,
10906327,3,52,0,327,
109073,53,0,327,3,
1090854,0,327,3,55,
109090,327,3,56,0,
10910327,3,57,0,327,
109113,65,0,327,3,
1091266,0,327,3,67,
109130,327,3,68,0,
10914327,3,69,0,327,
109153,70,0,327,3,
1091671,0,327,3,72,
109170,327,3,73,0,
10918327,3,74,0,327,
109193,75,0,327,3,
1092076,0,327,3,77,
109210,327,3,78,0,
10922327,3,79,0,327,
109233,80,0,327,3,
1092481,0,327,3,82,
109250,327,3,83,0,
10926327,3,84,0,327,
109273,85,0,327,3,
1092886,0,327,3,87,
109290,327,3,88,0,
10930327,3,89,0,327,
109313,90,0,327,3,
1093295,0,327,3,97,
109330,327,3,98,0,
10934327,3,99,0,327,
109353,100,0,327,3,
10936101,0,327,3,102,
109370,327,3,103,0,
10938327,3,104,0,327,
109393,105,0,327,3,
10940106,0,327,3,107,
109410,327,3,108,0,
10942327,913,11,1,829,
109430,330,1,-1,3,
10944102,0,327,3,103,
109450,327,3,104,0,
10946327,3,105,0,327,
109473,106,0,327,3,
10948107,0,327,3,108,
109490,327,914,11,1,
10950829,0,330,1,-1,
109513,104,0,327,3,
10952105,0,327,3,106,
109530,327,3,107,0,
10954327,3,108,0,327,
10955915,11,1,829,0,
10956330,1,-1,3,115,
109570,327,3,116,0,
10958327,3,117,0,327,
109593,118,0,327,3,
10960119,0,327,3,120,
109610,327,3,121,0,
10962327,3,122,0,327,
109633,48,0,327,3,
1096449,0,327,3,50,
109650,327,3,51,0,
10966327,3,52,0,327,
109673,53,0,327,3,
1096854,0,327,3,55,
109690,327,3,56,0,
10970327,3,57,0,327,
109713,65,0,327,3,
1097266,0,327,3,67,
109730,327,3,68,0,
10974327,3,69,0,327,
109753,70,0,327,3,
1097671,0,327,3,72,
109770,327,3,73,0,
10978327,3,74,0,327,
109793,75,0,327,3,
1098076,0,327,3,77,
109810,327,3,78,0,
10982327,3,79,0,327,
109833,80,0,327,3,
1098481,0,327,3,82,
109850,327,3,83,0,
10986327,3,84,0,327,
109873,85,0,327,3,
1098886,0,327,3,87,
109890,327,3,88,0,
10990327,3,89,0,327,
109913,90,0,327,3,
1099295,0,327,3,97,
109930,327,3,98,0,
10994327,3,99,0,327,
109953,100,0,327,3,
10996101,0,327,3,102,
109970,327,3,103,0,
10998327,3,104,0,327,
109993,105,0,327,3,
11000106,0,327,3,107,
110010,327,3,108,0,
11002327,916,11,1,829,
110030,330,1,-1,3,
1100498,0,327,3,99,
110050,327,3,100,0,
11006327,3,101,0,327,
110073,102,0,327,3,
11008103,0,327,3,104,
110090,327,3,105,0,
11010327,3,106,0,327,
110113,107,0,327,3,
11012108,0,327,917,11,
110131,829,0,330,1,
11014-1,3,117,0,327,
110153,118,0,327,3,
11016119,0,327,3,120,
110170,327,3,121,0,
11018327,3,122,0,327,
110193,48,0,327,3,
1102049,0,327,3,50,
110210,327,3,51,0,
11022327,3,52,0,327,
110233,53,0,327,3,
1102454,0,327,3,55,
110250,327,3,56,0,
11026327,3,57,0,327,
110273,65,0,327,3,
1102866,0,327,3,67,
110290,327,3,68,0,
11030327,3,69,0,327,
110313,70,0,327,3,
1103271,0,327,3,72,
110330,327,3,73,0,
11034327,3,74,0,327,
110353,75,0,327,3,
1103676,0,327,3,77,
110370,327,3,78,0,
11038327,3,79,0,327,
110393,80,0,327,3,
1104081,0,327,3,82,
110410,327,3,83,0,
11042327,3,84,0,327,
110433,85,0,327,3,
1104486,0,327,3,87,
110450,327,3,88,0,
11046327,3,89,0,327,
110473,90,0,327,3,
1104895,0,327,3,97,
110490,327,3,98,0,
11050327,3,99,0,327,
110513,100,0,327,3,
11052101,0,327,3,102,
110530,327,3,103,0,
11054327,3,104,0,327,
110553,105,0,327,3,
11056106,0,327,3,107,
110570,327,3,108,0,
11058327,918,11,1,829,
110590,330,1,-1,3,
1106097,0,327,3,98,
110610,327,3,99,0,
11062327,3,100,0,327,
110633,101,0,327,3,
11064102,0,327,3,103,
110650,327,3,104,0,
11066327,3,105,0,327,
110673,106,0,327,3,
11068107,0,327,3,108,
110690,327,919,11,1,
11070829,0,330,1,-1,
110713,117,0,327,3,
11072118,0,327,3,119,
110730,327,3,120,0,
11074327,3,121,0,327,
110753,122,0,327,3,
1107648,0,327,3,49,
110770,327,3,50,0,
11078327,3,51,0,327,
110793,52,0,327,3,
1108053,0,327,3,54,
110810,327,3,55,0,
11082327,3,56,0,327,
110833,57,0,327,3,
1108465,0,327,3,66,
110850,327,3,67,0,
11086327,3,68,0,327,
110873,69,0,327,3,
1108870,0,327,3,71,
110890,327,3,72,0,
11090327,3,73,0,327,
110913,74,0,327,3,
1109275,0,327,3,76,
110930,327,3,77,0,
11094327,3,78,0,327,
110953,79,0,327,3,
1109680,0,327,3,81,
110970,327,3,82,0,
11098327,3,83,0,327,
110993,84,0,327,3,
1110085,0,327,3,86,
111010,327,3,87,0,
11102327,3,88,0,327,
111033,89,0,327,3,
1110490,0,327,3,95,
111050,327,3,97,0,
11106327,3,98,0,327,
111073,99,0,327,3,
11108100,0,327,3,101,
111090,327,3,102,0,
11110327,3,103,0,327,
111113,104,0,327,3,
11112105,0,327,3,106,
111130,327,3,107,0,
11114327,3,108,0,327,
11115920,11,1,829,0,
11116330,1,-1,3,112,
111170,327,3,113,0,
11118327,3,114,0,327,
111193,115,0,327,3,
11120116,0,327,3,117,
111210,327,3,118,0,
11122327,3,119,0,327,
111233,120,0,327,3,
11124121,0,327,3,122,
111250,327,3,48,0,
11126327,3,49,0,327,
111273,50,0,327,3,
1112851,0,327,3,52,
111290,327,3,53,0,
11130327,3,54,0,327,
111313,55,0,327,3,
1113256,0,327,3,57,
111330,327,3,65,0,
11134327,3,66,0,327,
111353,67,0,327,3,
1113668,0,327,3,69,
111370,327,3,70,0,
11138327,3,71,0,327,
111393,72,0,327,3,
1114073,0,327,3,74,
111410,327,3,75,0,
11142327,3,76,0,327,
111433,77,0,327,3,
1114478,0,327,3,79,
111450,327,3,80,0,
11146327,3,81,0,327,
111473,82,0,327,3,
1114883,0,327,3,84,
111490,327,3,85,0,
11150327,3,86,0,327,
111513,87,0,327,3,
1115288,0,327,3,89,
111530,327,3,90,0,
11154327,3,95,0,327,
111553,97,0,327,3,
1115698,0,327,3,99,
111570,327,3,100,0,
11158327,3,101,0,327,
111593,102,0,327,3,
11160103,0,327,3,104,
111610,327,3,105,0,
11162327,3,106,0,327,
111633,107,0,327,3,
11164108,0,327,921,11,
111651,829,0,330,1,
11166-1,3,115,0,327,
111673,116,0,922,12,
111681,5001,923,5,63,
111693,109,0,327,3,
11170110,0,327,3,111,
111710,327,3,112,0,
11172327,3,113,0,327,
111733,114,0,327,3,
11174115,0,327,3,116,
111750,327,3,117,0,
11176327,3,118,0,327,
111773,119,0,327,3,
11178120,0,327,3,121,
111790,327,3,122,0,
11180327,3,48,0,327,
111813,49,0,327,3,
1118250,0,327,3,51,
111830,327,3,52,0,
11184327,3,53,0,327,
111853,54,0,327,3,
1118655,0,327,3,56,
111870,327,3,57,0,
11188327,3,65,0,327,
111893,66,0,327,3,
1119067,0,327,3,68,
111910,327,3,69,0,
11192327,3,70,0,327,
111933,71,0,327,3,
1119472,0,327,3,73,
111950,327,3,74,0,
11196327,3,75,0,327,
111973,76,0,327,3,
1119877,0,327,3,78,
111990,327,3,79,0,
11200327,3,80,0,327,
112013,81,0,327,3,
1120282,0,327,3,83,
112030,327,3,84,0,
11204327,3,85,0,327,
112053,86,0,327,3,
1120687,0,327,3,88,
112070,327,3,89,0,
11208327,3,90,0,327,
112093,95,0,327,3,
1121097,0,924,12,1,
112115044,925,5,63,3,
11212109,0,327,3,110,
112130,327,3,111,0,
11214327,3,112,0,327,
112153,113,0,327,3,
11216114,0,926,12,1,
112175077,927,5,63,3,
11218109,0,327,3,110,
112190,327,3,111,0,
11220327,3,112,0,327,
112213,113,0,327,3,
11222114,0,327,3,115,
112230,327,3,116,0,
11224327,3,117,0,327,
112253,118,0,327,3,
11226119,0,327,3,120,
112270,327,3,121,0,
11228327,3,122,0,327,
112293,48,0,327,3,
1123049,0,327,3,50,
112310,327,3,51,0,
11232327,3,52,0,327,
112333,53,0,327,3,
1123454,0,327,3,55,
112350,327,3,56,0,
11236327,3,57,0,327,
112373,65,0,327,3,
1123866,0,327,3,67,
112390,327,3,68,0,
11240327,3,69,0,327,
112413,70,0,327,3,
1124271,0,327,3,72,
112430,327,3,73,0,
11244327,3,74,0,327,
112453,75,0,327,3,
1124676,0,327,3,77,
112470,327,3,78,0,
11248327,3,79,0,327,
112493,80,0,327,3,
1125081,0,327,3,82,
112510,327,3,83,0,
11252327,3,84,0,327,
112533,85,0,327,3,
1125486,0,327,3,87,
112550,327,3,88,0,
11256327,3,89,0,327,
112573,90,0,327,3,
1125895,0,327,3,97,
112590,327,3,98,0,
11260327,3,99,0,327,
112613,100,0,327,3,
11262101,0,327,3,102,
112630,327,3,103,0,
11264928,12,1,5126,929,
112655,63,3,109,0,
11266327,3,110,0,327,
112673,111,0,327,3,
11268112,0,327,3,113,
112690,327,3,114,0,
11270327,3,115,0,327,
112713,116,0,327,3,
11272117,0,327,3,118,
112730,327,3,119,0,
11274327,3,120,0,327,
112753,121,0,327,3,
11276122,0,327,3,48,
112770,327,3,49,0,
11278327,3,50,0,327,
112793,51,0,327,3,
1128052,0,327,3,53,
112810,327,3,54,0,
11282327,3,55,0,327,
112833,56,0,327,3,
1128457,0,327,3,65,
112850,327,3,66,0,
11286327,3,67,0,327,
112873,68,0,327,3,
1128869,0,327,3,70,
112890,327,3,71,0,
11290327,3,72,0,327,
112913,73,0,327,3,
1129274,0,327,3,75,
112930,327,3,76,0,
11294327,3,77,0,327,
112953,78,0,327,3,
1129679,0,327,3,80,
112970,327,3,81,0,
11298327,3,82,0,327,
112993,83,0,327,3,
1130084,0,327,3,85,
113010,327,3,86,0,
11302327,3,87,0,327,
113033,88,0,327,3,
1130489,0,327,3,90,
113050,327,3,95,0,
11306327,3,97,0,327,
113073,98,0,327,3,
1130899,0,327,3,100,
113090,327,3,101,0,
11310930,12,1,5173,931,
113115,63,3,109,0,
11312327,3,110,0,327,
113133,111,0,327,3,
11314112,0,327,3,113,
113150,327,3,114,0,
11316327,3,115,0,327,
113173,116,0,932,12,
113181,5208,933,5,63,
113193,109,0,327,3,
11320110,0,327,3,111,
113210,327,3,112,0,
11322327,3,113,0,327,
113233,114,0,327,3,
11324115,0,327,3,116,
113250,327,3,117,0,
11326327,3,118,0,327,
113273,119,0,327,3,
11328120,0,327,3,121,
113290,327,3,122,0,
11330327,3,48,0,327,
113313,49,0,327,3,
1133250,0,327,3,51,
113330,327,3,52,0,
11334327,3,53,0,327,
113353,54,0,327,3,
1133655,0,327,3,56,
113370,327,3,57,0,
11338327,3,65,0,327,
113393,66,0,327,3,
1134067,0,327,3,68,
113410,327,3,69,0,
11342327,3,70,0,327,
113433,71,0,327,3,
1134472,0,327,3,73,
113450,327,3,74,0,
11346327,3,75,0,327,
113473,76,0,327,3,
1134877,0,327,3,78,
113490,327,3,79,0,
11350327,3,80,0,327,
113513,81,0,327,3,
1135282,0,327,3,83,
113530,327,3,84,0,
11354327,3,85,0,327,
113553,86,0,327,3,
1135687,0,327,3,88,
113570,327,3,89,0,
11358327,3,90,0,327,
113593,95,0,327,3,
1136097,0,327,3,98,
113610,327,3,99,0,
11362327,3,100,0,327,
113633,101,0,327,3,
11364102,0,327,3,103,
113650,327,3,104,0,
11366327,3,105,0,327,
113673,106,0,327,3,
11368107,0,327,3,108,
113690,327,934,11,1,
11370664,0,935,4,38,
1137178,0,79,0,84,
113720,95,0,65,0,
1137384,0,95,0,84,
113740,65,0,82,0,
1137571,0,69,0,84,
113760,95,0,69,0,
1137786,0,69,0,78,
113780,84,0,1,-1,
113793,117,0,327,3,
11380118,0,327,3,119,
113810,327,3,120,0,
11382327,3,121,0,327,
113833,122,0,327,3,
1138448,0,327,3,49,
113850,327,3,50,0,
11386327,3,51,0,327,
113873,52,0,327,3,
1138853,0,327,3,54,
113890,327,3,55,0,
11390327,3,56,0,327,
113913,57,0,327,3,
1139265,0,327,3,66,
113930,327,3,67,0,
11394327,3,68,0,327,
113953,69,0,327,3,
1139670,0,327,3,71,
113970,327,3,72,0,
11398327,3,73,0,327,
113993,74,0,327,3,
1140075,0,327,3,76,
114010,327,3,77,0,
11402327,3,78,0,327,
114033,79,0,327,3,
1140480,0,327,3,81,
114050,327,3,82,0,
11406327,3,83,0,327,
114073,84,0,327,3,
1140885,0,327,3,86,
114090,327,3,87,0,
11410327,3,88,0,327,
114113,89,0,327,3,
1141290,0,327,3,95,
114130,327,3,97,0,
11414327,3,98,0,327,
114153,99,0,327,3,
11416100,0,327,3,101,
114170,327,3,102,0,
11418327,3,103,0,327,
114193,104,0,327,3,
11420105,0,327,3,106,
114210,327,3,107,0,
11422327,3,108,0,327,
11423936,11,1,829,0,
11424330,1,-1,3,102,
114250,327,3,103,0,
11426327,3,104,0,327,
114273,105,0,327,3,
11428106,0,327,3,107,
114290,327,3,108,0,
11430327,937,11,1,829,
114310,330,1,-1,3,
11432104,0,327,3,105,
114330,327,3,106,0,
11434327,3,107,0,327,
114353,108,0,327,938,
1143611,1,829,0,330,
114371,-1,3,115,0,
11438327,3,116,0,327,
114393,117,0,327,3,
11440118,0,327,3,119,
114410,327,3,120,0,
11442327,3,121,0,327,
114433,122,0,327,3,
1144448,0,327,3,49,
114450,327,3,50,0,
11446327,3,51,0,327,
114473,52,0,327,3,
1144853,0,327,3,54,
114490,327,3,55,0,
11450327,3,56,0,327,
114513,57,0,327,3,
1145265,0,327,3,66,
114530,327,3,67,0,
11454327,3,68,0,327,
114553,69,0,327,3,
1145670,0,327,3,71,
114570,327,3,72,0,
11458327,3,73,0,327,
114593,74,0,327,3,
1146075,0,327,3,76,
114610,327,3,77,0,
11462327,3,78,0,327,
114633,79,0,327,3,
1146480,0,327,3,81,
114650,327,3,82,0,
11466327,3,83,0,327,
114673,84,0,327,3,
1146885,0,327,3,86,
114690,327,3,87,0,
11470327,3,88,0,327,
114713,89,0,327,3,
1147290,0,327,3,95,
114730,327,3,97,0,
11474327,3,98,0,327,
114753,99,0,327,3,
11476100,0,327,3,101,
114770,327,3,102,0,
11478327,3,103,0,327,
114793,104,0,327,3,
11480105,0,327,3,106,
114810,327,3,107,0,
11482327,3,108,0,327,
11483939,11,1,829,0,
11484330,1,-1,3,98,
114850,327,3,99,0,
11486327,3,100,0,327,
114873,101,0,327,3,
11488102,0,327,3,103,
114890,327,3,104,0,
11490327,3,105,0,327,
114913,106,0,327,3,
11492107,0,327,3,108,
114930,327,940,11,1,
11494829,0,330,1,-1,
114953,117,0,327,3,
11496118,0,327,3,119,
114970,327,3,120,0,
11498327,3,121,0,327,
114993,122,0,327,3,
1150048,0,327,3,49,
115010,327,3,50,0,
11502327,3,51,0,327,
115033,52,0,327,3,
1150453,0,327,3,54,
115050,327,3,55,0,
11506327,3,56,0,327,
115073,57,0,327,3,
1150865,0,327,3,66,
115090,327,3,67,0,
11510327,3,68,0,327,
115113,69,0,327,3,
1151270,0,327,3,71,
115130,327,3,72,0,
11514327,3,73,0,327,
115153,74,0,327,3,
1151675,0,327,3,76,
115170,327,3,77,0,
11518327,3,78,0,327,
115193,79,0,327,3,
1152080,0,327,3,81,
115210,327,3,82,0,
11522327,3,83,0,327,
115233,84,0,327,3,
1152485,0,327,3,86,
115250,327,3,87,0,
11526327,3,88,0,327,
115273,89,0,327,3,
1152890,0,327,3,95,
115290,327,3,97,0,
11530327,3,98,0,327,
115313,99,0,327,3,
11532100,0,327,3,101,
115330,327,3,102,0,
11534327,3,103,0,327,
115353,104,0,327,3,
11536105,0,327,3,106,
115370,327,3,107,0,
11538327,3,108,0,327,
11539941,11,1,829,0,
11540330,1,-1,3,97,
115410,327,3,98,0,
11542327,3,99,0,327,
115433,100,0,327,3,
11544101,0,327,3,102,
115450,327,3,103,0,
11546327,3,104,0,327,
115473,105,0,327,3,
11548106,0,327,3,107,
115490,327,3,108,0,
11550327,942,11,1,829,
115510,330,1,-1,3,
11552117,0,327,3,118,
115530,327,3,119,0,
11554327,3,120,0,327,
115553,121,0,327,3,
11556122,0,327,3,48,
115570,327,3,49,0,
11558327,3,50,0,327,
115593,51,0,327,3,
1156052,0,327,3,53,
115610,327,3,54,0,
11562327,3,55,0,327,
115633,56,0,327,3,
1156457,0,327,3,65,
115650,327,3,66,0,
11566327,3,67,0,327,
115673,68,0,327,3,
1156869,0,327,3,70,
115690,327,3,71,0,
11570327,3,72,0,327,
115713,73,0,327,3,
1157274,0,327,3,75,
115730,327,3,76,0,
11574327,3,77,0,327,
115753,78,0,327,3,
1157679,0,327,3,80,
115770,327,3,81,0,
11578327,3,82,0,327,
115793,83,0,327,3,
1158084,0,327,3,85,
115810,327,3,86,0,
11582327,3,87,0,327,
115833,88,0,327,3,
1158489,0,327,3,90,
115850,327,3,95,0,
11586327,3,97,0,327,
115873,98,0,327,3,
1158899,0,327,3,100,
115890,327,3,101,0,
11590327,3,102,0,327,
115913,103,0,327,3,
11592104,0,327,3,105,
115930,327,3,106,0,
11594327,3,107,0,327,
115953,108,0,327,943,
1159611,1,829,0,330,
115971,-1,3,98,0,
11598327,3,99,0,327,
115993,100,0,327,3,
11600101,0,327,3,102,
116010,327,3,103,0,
11602327,3,104,0,327,
116033,105,0,327,3,
11604106,0,327,3,107,
116050,327,3,108,0,
11606327,944,11,1,829,
116070,330,1,-1,3,
1160897,0,327,3,98,
116090,327,3,99,0,
11610327,3,100,0,327,
116113,101,0,327,3,
11612102,0,327,3,103,
116130,327,3,104,0,
11614327,3,105,0,327,
116153,106,0,327,3,
11616107,0,327,3,108,
116170,327,945,11,1,
11618829,0,330,1,-1,
116193,117,0,327,3,
11620118,0,327,3,119,
116210,327,3,120,0,
11622327,3,121,0,327,
116233,122,0,327,3,
1162448,0,327,3,49,
116250,327,3,50,0,
11626327,3,51,0,327,
116273,52,0,327,3,
1162853,0,327,3,54,
116290,327,3,55,0,
11630327,3,56,0,327,
116313,57,0,327,3,
1163265,0,327,3,66,
116330,327,3,67,0,
11634327,3,68,0,327,
116353,69,0,327,3,
1163670,0,327,3,71,
116370,327,3,72,0,
11638327,3,73,0,327,
116393,74,0,327,3,
1164075,0,327,3,76,
116410,327,3,77,0,
11642327,3,78,0,327,
116433,79,0,327,3,
1164480,0,327,3,81,
116450,327,3,82,0,
11646327,3,83,0,327,
116473,84,0,327,3,
1164885,0,327,3,86,
116490,327,3,87,0,
11650327,3,88,0,327,
116513,89,0,327,3,
1165290,0,327,3,95,
116530,946,12,1,6087,
11654947,5,63,3,109,
116550,327,3,110,0,
11656327,3,111,0,327,
116573,112,0,327,3,
11658113,0,327,3,114,
116590,327,3,115,0,
11660948,12,1,6121,949,
116615,63,3,109,0,
11662327,3,110,0,327,
116633,111,0,327,3,
11664112,0,327,3,113,
116650,327,3,114,0,
11666327,3,115,0,327,
116673,116,0,327,3,
11668117,0,327,3,118,
116690,327,3,119,0,
11670327,3,120,0,327,
116713,121,0,327,3,
11672122,0,327,3,48,
116730,327,3,49,0,
11674327,3,50,0,327,
116753,51,0,327,3,
1167652,0,327,3,53,
116770,327,3,54,0,
11678327,3,55,0,327,
116793,56,0,327,3,
1168057,0,327,3,65,
116810,327,3,66,0,
11682327,3,67,0,327,
116833,68,0,327,3,
1168469,0,327,3,70,
116850,327,3,71,0,
11686327,3,72,0,327,
116873,73,0,327,3,
1168874,0,327,3,75,
116890,327,3,76,0,
11690327,3,77,0,327,
116913,78,0,327,3,
1169279,0,327,3,80,
116930,327,3,81,0,
11694327,3,82,0,327,
116953,83,0,327,3,
1169684,0,327,3,85,
116970,327,3,86,0,
11698327,3,87,0,327,
116993,88,0,327,3,
1170089,0,327,3,90,
117010,327,3,95,0,
11702327,3,97,0,327,
117033,98,0,327,3,
1170499,0,327,3,100,
117050,327,3,101,0,
11706950,12,1,6168,951,
117075,63,3,109,0,
11708327,3,110,0,952,
1170912,1,6197,953,5,
1171063,3,109,0,327,
117113,110,0,327,3,
11712111,0,327,3,112,
117130,327,3,113,0,
11714327,3,114,0,327,
117153,115,0,954,12,
117161,6231,955,5,63,
117173,109,0,327,3,
11718110,0,327,3,111,
117190,956,12,1,6261,
11720957,5,63,3,109,
117210,327,3,110,0,
11722327,3,111,0,327,
117233,112,0,327,3,
11724113,0,327,3,114,
117250,958,12,1,6294,
11726959,5,63,3,109,
117270,327,3,110,0,
11728327,3,111,0,327,
117293,112,0,327,3,
11730113,0,327,3,114,
117310,327,3,115,0,
11732327,3,116,0,327,
117333,117,0,327,3,
11734118,0,327,3,119,
117350,327,3,120,0,
11736327,3,121,0,327,
117373,122,0,327,3,
1173848,0,327,3,49,
117390,327,3,50,0,
11740327,3,51,0,327,
117413,52,0,327,3,
1174253,0,327,3,54,
117430,327,3,55,0,
11744327,3,56,0,327,
117453,57,0,327,3,
1174665,0,327,3,66,
117470,327,3,67,0,
11748327,3,68,0,327,
117493,69,0,327,3,
1175070,0,327,3,71,
117510,327,3,72,0,
11752327,3,73,0,327,
117533,74,0,327,3,
1175475,0,327,3,76,
117550,327,3,77,0,
11756327,3,78,0,327,
117573,79,0,327,3,
1175880,0,327,3,81,
117590,327,3,82,0,
11760327,3,83,0,327,
117613,84,0,327,3,
1176285,0,327,3,86,
117630,327,3,87,0,
11764327,3,88,0,327,
117653,89,0,327,3,
1176690,0,327,3,95,
117670,327,3,97,0,
11768327,3,98,0,327,
117693,99,0,327,3,
11770100,0,327,3,101,
117710,327,3,102,0,
11772327,3,103,0,327,
117733,104,0,327,3,
11774105,0,327,3,106,
117750,327,3,107,0,
11776327,3,108,0,327,
11777960,11,1,630,0,
11778961,4,30,78,0,
1177979,0,95,0,83,
117800,69,0,78,0,
1178183,0,79,0,82,
117820,95,0,69,0,
1178386,0,69,0,78,
117840,84,0,1,-1,
117853,115,0,327,3,
11786116,0,327,3,117,
117870,327,3,118,0,
11788327,3,119,0,327,
117893,120,0,327,3,
11790121,0,327,3,122,
117910,327,3,48,0,
11792327,3,49,0,327,
117933,50,0,327,3,
1179451,0,327,3,52,
117950,327,3,53,0,
11796327,3,54,0,327,
117973,55,0,327,3,
1179856,0,327,3,57,
117990,327,3,65,0,
11800327,3,66,0,327,
118013,67,0,327,3,
1180268,0,327,3,69,
118030,327,3,70,0,
11804327,3,71,0,327,
118053,72,0,327,3,
1180673,0,327,3,74,
118070,327,3,75,0,
11808327,3,76,0,327,
118093,77,0,327,3,
1181078,0,327,3,79,
118110,327,3,80,0,
11812327,3,81,0,327,
118133,82,0,327,3,
1181483,0,327,3,84,
118150,327,3,85,0,
11816327,3,86,0,327,
118173,87,0,327,3,
1181888,0,327,3,89,
118190,327,3,90,0,
11820327,3,95,0,327,
118213,97,0,327,3,
1182298,0,327,3,99,
118230,327,3,100,0,
11824327,3,101,0,327,
118253,102,0,327,3,
11826103,0,327,3,104,
118270,327,3,105,0,
11828327,3,106,0,327,
118293,107,0,327,3,
11830108,0,327,962,11,
118311,829,0,330,1,
11832-1,3,112,0,327,
118333,113,0,327,3,
11834114,0,327,3,115,
118350,327,3,116,0,
11836327,3,117,0,327,
118373,118,0,327,3,
11838119,0,327,3,120,
118390,327,3,121,0,
11840327,3,122,0,327,
118413,48,0,327,3,
1184249,0,327,3,50,
118430,327,3,51,0,
11844327,3,52,0,327,
118453,53,0,327,3,
1184654,0,327,3,55,
118470,327,3,56,0,
11848327,3,57,0,327,
118493,65,0,327,3,
1185066,0,327,3,67,
118510,327,3,68,0,
11852327,3,69,0,327,
118533,70,0,327,3,
1185471,0,327,3,72,
118550,327,3,73,0,
11856327,3,74,0,327,
118573,75,0,327,3,
1185876,0,327,3,77,
118590,327,3,78,0,
11860327,3,79,0,327,
118613,80,0,327,3,
1186281,0,327,3,82,
118630,327,3,83,0,
11864327,3,84,0,327,
118653,85,0,327,3,
1186686,0,327,3,87,
118670,327,3,88,0,
11868327,3,89,0,327,
118693,90,0,327,3,
1187095,0,327,3,97,
118710,327,3,98,0,
11872327,3,99,0,327,
118733,100,0,327,3,
11874101,0,327,3,102,
118750,327,3,103,0,
11876327,3,104,0,327,
118773,105,0,327,3,
11878106,0,327,3,107,
118790,327,3,108,0,
11880327,963,11,1,829,
118810,330,1,-1,3,
11882116,0,327,3,117,
118830,327,3,118,0,
11884327,3,119,0,327,
118853,120,0,327,3,
11886121,0,327,3,122,
118870,327,3,48,0,
11888327,3,49,0,327,
118893,50,0,327,3,
1189051,0,327,3,52,
118910,327,3,53,0,
11892327,3,54,0,327,
118933,55,0,327,3,
1189456,0,327,3,57,
118950,327,3,65,0,
11896327,3,66,0,327,
118973,67,0,327,3,
1189868,0,327,3,69,
118990,327,3,70,0,
11900327,3,71,0,327,
119013,72,0,327,3,
1190273,0,327,3,74,
119030,327,3,75,0,
11904327,3,76,0,327,
119053,77,0,327,3,
1190678,0,327,3,79,
119070,327,3,80,0,
11908327,3,81,0,327,
119093,82,0,327,3,
1191083,0,327,3,84,
119110,327,3,85,0,
11912327,3,86,0,327,
119133,87,0,327,3,
1191488,0,327,3,89,
119150,327,3,90,0,
11916327,3,95,0,327,
119173,97,0,327,3,
1191898,0,327,3,99,
119190,327,3,100,0,
11920327,3,101,0,327,
119213,102,0,327,3,
11922103,0,327,3,104,
119230,327,3,105,0,
11924327,3,106,0,327,
119253,107,0,327,3,
11926108,0,327,964,11,
119271,829,0,330,1,
11928-1,3,111,0,327,
119293,112,0,327,3,
11930113,0,327,3,114,
119310,327,3,115,0,
11932327,3,116,0,327,
119333,117,0,327,3,
11934118,0,327,3,119,
119350,327,3,120,0,
11936327,3,121,0,327,
119373,122,0,327,3,
1193848,0,327,3,49,
119390,327,3,50,0,
11940327,3,51,0,327,
119413,52,0,327,3,
1194253,0,327,3,54,
119430,327,3,55,0,
11944327,3,56,0,327,
119453,57,0,327,3,
1194665,0,327,3,66,
119470,327,3,67,0,
11948327,3,68,0,327,
119493,69,0,327,3,
1195070,0,327,3,71,
119510,327,3,72,0,
11952327,3,73,0,327,
119533,74,0,327,3,
1195475,0,327,3,76,
119550,327,3,77,0,
11956327,3,78,0,327,
119573,79,0,327,3,
1195880,0,327,3,81,
119590,327,3,82,0,
11960327,3,83,0,327,
119613,84,0,327,3,
1196285,0,327,3,86,
119630,327,3,87,0,
11964327,3,88,0,327,
119653,89,0,327,3,
1196690,0,327,3,95,
119670,327,3,97,0,
11968327,3,98,0,327,
119693,99,0,327,3,
11970100,0,327,3,101,
119710,327,3,102,0,
11972327,3,103,0,327,
119733,104,0,327,3,
11974105,0,327,3,106,
119750,327,3,107,0,
11976327,3,108,0,327,
11977965,11,1,829,0,
11978330,1,-1,3,102,
119790,327,3,103,0,
11980327,3,104,0,327,
119813,105,0,327,3,
11982106,0,327,3,107,
119830,327,3,108,0,
11984327,966,11,1,829,
119850,330,1,-1,3,
11986116,0,327,3,117,
119870,327,3,118,0,
11988327,3,119,0,327,
119893,120,0,327,3,
11990121,0,327,3,122,
119910,327,3,48,0,
11992327,3,49,0,327,
119933,50,0,327,3,
1199451,0,327,3,52,
119950,327,3,53,0,
11996327,3,54,0,327,
119973,55,0,327,3,
1199856,0,327,3,57,
119990,327,3,65,0,
12000327,3,66,0,327,
120013,67,0,327,3,
1200268,0,327,3,69,
120030,327,3,70,0,
12004327,3,71,0,327,
120053,72,0,327,3,
1200673,0,327,3,74,
120070,327,3,75,0,
12008327,3,76,0,327,
120093,77,0,327,3,
1201078,0,327,3,79,
120110,327,3,80,0,
12012327,3,81,0,327,
120133,82,0,327,3,
1201483,0,327,3,84,
120150,327,3,85,0,
12016327,3,86,0,327,
120173,87,0,327,3,
1201888,0,327,3,89,
120190,327,3,90,0,
12020327,3,95,0,327,
120213,97,0,327,3,
1202298,0,327,3,99,
120230,327,3,100,0,
12024327,3,101,0,327,
120253,102,0,327,3,
12026103,0,327,3,104,
120270,327,3,105,0,
12028327,3,106,0,327,
120293,107,0,327,3,
12030108,0,327,967,11,
120311,829,0,330,1,
12032-1,3,97,0,327,
120333,98,0,327,3,
1203499,0,327,3,100,
120350,327,3,101,0,
12036327,3,102,0,327,
120373,103,0,327,3,
12038104,0,327,3,105,
120390,327,3,106,0,
12040327,3,107,0,327,
120413,108,0,327,968,
1204211,1,829,0,330,
120431,-1,3,112,0,
12044327,3,113,0,327,
120453,114,0,327,3,
12046115,0,327,3,116,
120470,327,3,117,0,
12048327,3,118,0,327,
120493,119,0,327,3,
12050120,0,327,3,121,
120510,327,3,122,0,
12052327,3,48,0,327,
120533,49,0,327,3,
1205450,0,327,3,51,
120550,327,3,52,0,
12056327,3,53,0,327,
120573,54,0,327,3,
1205855,0,327,3,56,
120590,327,3,57,0,
12060327,3,65,0,327,
120613,66,0,327,3,
1206267,0,327,3,68,
120630,327,3,69,0,
12064327,3,70,0,327,
120653,71,0,327,3,
1206672,0,327,3,73,
120670,327,3,74,0,
12068327,3,75,0,327,
120693,76,0,327,3,
1207077,0,327,3,78,
120710,327,3,79,0,
12072327,3,80,0,327,
120733,81,0,327,3,
1207482,0,327,3,83,
120750,327,3,84,0,
12076327,3,85,0,327,
120773,86,0,327,3,
1207887,0,327,3,88,
120790,327,3,89,0,
12080327,3,90,0,327,
120813,95,0,327,3,
1208297,0,327,3,98,
120830,327,3,99,0,
12084327,3,100,0,327,
120853,101,0,327,3,
12086102,0,327,3,103,
120870,327,3,104,0,
12088327,3,105,0,327,
120893,106,0,327,3,
12090107,0,327,3,108,
120910,327,969,11,1,
12092829,0,330,1,-1,
120933,111,0,970,12,
120941,7052,971,5,63,
120953,109,0,327,3,
12096110,0,972,12,1,
120977081,973,5,63,3,
12098109,0,327,3,110,
120990,327,3,111,0,
12100327,3,112,0,327,
121013,113,0,327,3,
12102114,0,327,3,115,
121030,327,3,116,0,
12104327,3,117,0,327,
121053,118,0,327,3,
12106119,0,327,3,120,
121070,327,3,121,0,
12108327,3,122,0,327,
121093,48,0,327,3,
1211049,0,327,3,50,
121110,327,3,51,0,
12112327,3,52,0,327,
121133,53,0,327,3,
1211454,0,327,3,55,
121150,327,3,56,0,
12116327,3,57,0,327,
121173,65,0,327,3,
1211866,0,327,3,67,
121190,327,3,68,0,
12120327,3,69,0,327,
121213,70,0,327,3,
1212271,0,327,3,72,
121230,327,3,73,0,
12124327,3,74,0,327,
121253,75,0,327,3,
1212676,0,327,3,77,
121270,327,3,78,0,
12128327,3,79,0,327,
121293,80,0,327,3,
1213081,0,327,3,82,
121310,327,3,83,0,
12132327,3,84,0,327,
121333,85,0,327,3,
1213486,0,327,3,87,
121350,327,3,88,0,
12136327,3,89,0,327,
121373,90,0,327,3,
1213895,0,974,12,1,
121397167,975,5,63,3,
12140109,0,327,3,110,
121410,327,3,111,0,
12142327,3,112,0,327,
121433,113,0,327,3,
12144114,0,976,12,1,
121457200,977,5,63,3,
12146109,0,327,3,110,
121470,327,3,111,0,
12148327,3,112,0,327,
121493,113,0,327,3,
12150114,0,327,3,115,
121510,327,3,116,0,
12152327,3,117,0,327,
121533,118,0,327,3,
12154119,0,327,3,120,
121550,327,3,121,0,
12156327,3,122,0,327,
121573,48,0,327,3,
1215849,0,327,3,50,
121590,327,3,51,0,
12160327,3,52,0,327,
121613,53,0,327,3,
1216254,0,327,3,55,
121630,327,3,56,0,
12164327,3,57,0,327,
121653,65,0,327,3,
1216666,0,327,3,67,
121670,327,3,68,0,
12168327,3,69,0,327,
121693,70,0,327,3,
1217071,0,327,3,72,
121710,327,3,73,0,
12172327,3,74,0,327,
121733,75,0,327,3,
1217476,0,327,3,77,
121750,327,3,78,0,
12176327,3,79,0,327,
121773,80,0,327,3,
1217881,0,327,3,82,
121790,327,3,83,0,
12180327,3,84,0,327,
121813,85,0,327,3,
1218286,0,327,3,87,
121830,327,3,88,0,
12184327,3,89,0,327,
121853,90,0,327,3,
1218695,0,327,3,97,
121870,327,3,98,0,
12188327,3,99,0,327,
121893,100,0,327,3,
12190101,0,978,12,1,
121917247,979,5,63,3,
12192109,0,327,3,110,
121930,327,3,111,0,
12194327,3,112,0,327,
121953,113,0,327,3,
12196114,0,327,3,115,
121970,327,3,116,0,
12198327,3,117,0,327,
121993,118,0,327,3,
12200119,0,327,3,120,
122010,327,3,121,0,
12202327,3,122,0,980,
1220312,1,7288,981,5,
1220463,3,109,0,327,
122053,110,0,327,3,
12206111,0,327,3,112,
122070,327,3,113,0,
12208327,3,114,0,327,
122093,115,0,327,3,
12210116,0,327,3,117,
122110,327,3,118,0,
12212327,3,119,0,327,
122133,120,0,327,3,
12214121,0,327,3,122,
122150,327,3,48,0,
12216327,3,49,0,327,
122173,50,0,327,3,
1221851,0,327,3,52,
122190,327,3,53,0,
12220327,3,54,0,327,
122213,55,0,327,3,
1222256,0,327,3,57,
122230,327,3,65,0,
12224327,3,66,0,327,
122253,67,0,327,3,
1222668,0,327,3,69,
122270,327,3,70,0,
12228327,3,71,0,327,
122293,72,0,327,3,
1223073,0,327,3,74,
122310,327,3,75,0,
12232327,3,76,0,327,
122333,77,0,327,3,
1223478,0,327,3,79,
122350,327,3,80,0,
12236327,3,81,0,327,
122373,82,0,327,3,
1223883,0,327,3,84,
122390,327,3,85,0,
12240327,3,86,0,327,
122413,87,0,327,3,
1224288,0,327,3,89,
122430,327,3,90,0,
12244327,3,95,0,327,
122453,97,0,327,3,
1224698,0,327,3,99,
122470,327,3,100,0,
12248327,3,101,0,327,
122493,102,0,327,3,
12250103,0,327,3,104,
122510,327,3,105,0,
12252327,3,106,0,327,
122533,107,0,327,3,
12254108,0,327,982,11,
122551,695,0,983,4,
1225624,79,0,78,0,
1225795,0,82,0,69,
122580,90,0,95,0,
1225969,0,86,0,69,
122600,78,0,84,0,
122611,-1,3,48,0,
12262327,3,49,0,327,
122633,50,0,327,3,
1226451,0,327,3,52,
122650,327,3,53,0,
12266327,3,54,0,327,
122673,55,0,327,3,
1226856,0,327,3,57,
122690,327,3,65,0,
12270327,3,66,0,327,
122713,67,0,327,3,
1227268,0,327,3,69,
122730,327,3,70,0,
12274327,3,71,0,327,
122753,72,0,327,3,
1227673,0,327,3,74,
122770,327,3,75,0,
12278327,3,76,0,327,
122793,77,0,327,3,
1228078,0,327,3,79,
122810,327,3,80,0,
12282327,3,81,0,327,
122833,82,0,327,3,
1228483,0,327,3,84,
122850,327,3,85,0,
12286327,3,86,0,327,
122873,87,0,327,3,
1228888,0,327,3,89,
122890,327,3,90,0,
12290327,3,95,0,327,
122913,97,0,327,3,
1229298,0,327,3,99,
122930,327,3,100,0,
12294327,3,101,0,327,
122953,102,0,327,3,
12296103,0,327,3,104,
122970,327,3,105,0,
12298327,3,106,0,327,
122993,107,0,327,3,
12300108,0,327,984,11,
123011,829,0,330,1,
12302-1,3,102,0,327,
123033,103,0,327,3,
12304104,0,327,3,105,
123050,327,3,106,0,
12306327,3,107,0,327,
123073,108,0,327,985,
1230811,1,829,0,330,
123091,-1,3,115,0,
12310327,3,116,0,327,
123113,117,0,327,3,
12312118,0,327,3,119,
123130,327,3,120,0,
12314327,3,121,0,327,
123153,122,0,327,3,
1231648,0,327,3,49,
123170,327,3,50,0,
12318327,3,51,0,327,
123193,52,0,327,3,
1232053,0,327,3,54,
123210,327,3,55,0,
12322327,3,56,0,327,
123233,57,0,327,3,
1232465,0,327,3,66,
123250,327,3,67,0,
12326327,3,68,0,327,
123273,69,0,327,3,
1232870,0,327,3,71,
123290,327,3,72,0,
12330327,3,73,0,327,
123313,74,0,327,3,
1233275,0,327,3,76,
123330,327,3,77,0,
12334327,3,78,0,327,
123353,79,0,327,3,
1233680,0,327,3,81,
123370,327,3,82,0,
12338327,3,83,0,327,
123393,84,0,327,3,
1234085,0,327,3,86,
123410,327,3,87,0,
12342327,3,88,0,327,
123433,89,0,327,3,
1234490,0,327,3,95,
123450,327,3,97,0,
12346327,3,98,0,327,
123473,99,0,327,3,
12348100,0,327,3,101,
123490,327,3,102,0,
12350327,3,103,0,327,
123513,104,0,327,3,
12352105,0,327,3,106,
123530,327,3,107,0,
12354327,3,108,0,327,
12355986,11,1,829,0,
12356330,1,-1,3,97,
123570,327,3,98,0,
12358327,3,99,0,327,
123593,100,0,327,3,
12360101,0,327,3,102,
123610,327,3,103,0,
12362327,3,104,0,327,
123633,105,0,327,3,
12364106,0,327,3,107,
123650,327,3,108,0,
12366327,987,11,1,829,
123670,330,1,-1,3,
12368111,0,327,3,112,
123690,327,3,113,0,
12370327,3,114,0,327,
123713,115,0,327,3,
12372116,0,327,3,117,
123730,327,3,118,0,
12374327,3,119,0,327,
123753,120,0,327,3,
12376121,0,327,3,122,
123770,327,3,48,0,
12378327,3,49,0,327,
123793,50,0,327,3,
1238051,0,327,3,52,
123810,327,3,53,0,
12382327,3,54,0,327,
123833,55,0,327,3,
1238456,0,327,3,57,
123850,327,3,65,0,
12386327,3,66,0,327,
123873,67,0,327,3,
1238868,0,327,3,69,
123890,327,3,70,0,
12390327,3,71,0,327,
123913,72,0,327,3,
1239273,0,327,3,74,
123930,327,3,75,0,
12394327,3,76,0,327,
123953,77,0,327,3,
1239678,0,327,3,79,
123970,327,3,80,0,
12398327,3,81,0,327,
123993,82,0,327,3,
1240083,0,327,3,84,
124010,327,3,85,0,
12402327,3,86,0,327,
124033,87,0,327,3,
1240488,0,327,3,89,
124050,327,3,90,0,
12406327,3,95,0,327,
124073,97,0,327,3,
1240898,0,988,12,1,
124097696,989,5,63,3,
12410109,0,327,3,110,
124110,327,3,111,0,
12412327,3,112,0,327,
124133,113,0,327,3,
12414114,0,327,3,115,
124150,327,3,116,0,
12416327,3,117,0,327,
124173,118,0,327,3,
12418119,0,327,3,120,
124190,327,3,121,0,
12420327,3,122,0,327,
124213,48,0,327,3,
1242249,0,327,3,50,
124230,327,3,51,0,
12424327,3,52,0,327,
124253,53,0,327,3,
1242654,0,327,3,55,
124270,327,3,56,0,
12428327,3,57,0,327,
124293,65,0,327,3,
1243066,0,327,3,67,
124310,327,3,68,0,
12432327,3,69,0,327,
124333,70,0,327,3,
1243471,0,327,3,72,
124350,327,3,73,0,
12436327,3,74,0,327,
124373,75,0,327,3,
1243876,0,327,3,77,
124390,327,3,78,0,
12440327,3,79,0,327,
124413,80,0,327,3,
1244281,0,327,3,82,
124430,327,3,83,0,
12444327,3,84,0,327,
124453,85,0,327,3,
1244686,0,327,3,87,
124470,327,3,88,0,
12448327,3,89,0,327,
124493,90,0,327,3,
1245095,0,327,3,97,
124510,327,3,98,0,
12452327,3,99,0,327,
124533,100,0,327,3,
12454101,0,327,3,102,
124550,327,3,103,0,
12456327,3,104,0,327,
124573,105,0,327,3,
12458106,0,990,12,1,
124597748,991,5,63,3,
12460109,0,327,3,110,
124610,327,3,111,0,
12462327,3,112,0,327,
124633,113,0,327,3,
12464114,0,327,3,115,
124650,327,3,116,0,
12466327,3,117,0,327,
124673,118,0,327,3,
12468119,0,327,3,120,
124690,327,3,121,0,
12470327,3,122,0,327,
124713,48,0,327,3,
1247249,0,327,3,50,
124730,327,3,51,0,
12474327,3,52,0,327,
124753,53,0,327,3,
1247654,0,327,3,55,
124770,327,3,56,0,
12478327,3,57,0,327,
124793,65,0,327,3,
1248066,0,327,3,67,
124810,327,3,68,0,
12482327,3,69,0,327,
124833,70,0,327,3,
1248471,0,327,3,72,
124850,327,3,73,0,
12486327,3,74,0,327,
124873,75,0,327,3,
1248876,0,327,3,77,
124890,327,3,78,0,
12490327,3,79,0,327,
124913,80,0,327,3,
1249281,0,327,3,82,
124930,327,3,83,0,
12494327,3,84,0,327,
124953,85,0,327,3,
1249686,0,327,3,87,
124970,327,3,88,0,
12498327,3,89,0,327,
124993,90,0,327,3,
1250095,0,327,3,97,
125010,327,3,98,0,
12502327,3,99,0,327,
125033,100,0,327,3,
12504101,0,992,12,1,
125057795,993,5,63,3,
12506109,0,327,3,110,
125070,327,3,111,0,
12508327,3,112,0,327,
125093,113,0,327,3,
12510114,0,327,3,115,
125110,327,3,116,0,
12512327,3,117,0,327,
125133,118,0,327,3,
12514119,0,327,3,120,
125150,327,3,121,0,
12516327,3,122,0,327,
125173,48,0,327,3,
1251849,0,327,3,50,
125190,327,3,51,0,
12520327,3,52,0,327,
125213,53,0,327,3,
1252254,0,327,3,55,
125230,327,3,56,0,
12524327,3,57,0,327,
125253,65,0,327,3,
1252666,0,327,3,67,
125270,327,3,68,0,
12528327,3,69,0,327,
125293,70,0,327,3,
1253071,0,327,3,72,
125310,327,3,73,0,
12532327,3,74,0,327,
125333,75,0,327,3,
1253476,0,327,3,77,
125350,327,3,78,0,
12536327,3,79,0,327,
125373,80,0,327,3,
1253881,0,327,3,82,
125390,327,3,83,0,
12540327,3,84,0,327,
125413,85,0,327,3,
1254286,0,327,3,87,
125430,327,3,88,0,
12544327,3,89,0,327,
125453,90,0,327,3,
1254695,0,327,3,97,
125470,327,3,98,0,
12548327,3,99,0,994,
1254912,1,7840,995,5,
1255063,3,109,0,327,
125513,110,0,327,3,
12552111,0,327,3,112,
125530,327,3,113,0,
12554327,3,114,0,327,
125553,115,0,327,3,
12556116,0,996,12,1,
125577875,997,5,63,3,
12558109,0,327,3,110,
125590,327,3,111,0,
12560327,3,112,0,327,
125613,113,0,327,3,
12562114,0,327,3,115,
125630,327,3,116,0,
12564327,3,117,0,327,
125653,118,0,327,3,
12566119,0,327,3,120,
125670,327,3,121,0,
12568327,3,122,0,327,
125693,48,0,327,3,
1257049,0,327,3,50,
125710,327,3,51,0,
12572327,3,52,0,327,
125733,53,0,327,3,
1257454,0,327,3,55,
125750,327,3,56,0,
12576327,3,57,0,327,
125773,65,0,327,3,
1257866,0,327,3,67,
125790,327,3,68,0,
12580327,3,69,0,327,
125813,70,0,327,3,
1258271,0,327,3,72,
125830,327,3,73,0,
12584327,3,74,0,327,
125853,75,0,327,3,
1258676,0,327,3,77,
125870,327,3,78,0,
12588327,3,79,0,327,
125893,80,0,327,3,
1259081,0,327,3,82,
125910,327,3,83,0,
12592327,3,84,0,327,
125933,85,0,327,3,
1259486,0,327,3,87,
125950,327,3,88,0,
12596327,3,89,0,327,
125973,90,0,327,3,
1259895,0,998,12,1,
125997961,999,5,63,3,
12600109,0,327,3,110,
126010,327,3,111,0,
12602327,3,112,0,327,
126033,113,0,327,3,
12604114,0,1000,12,1,
126057994,1001,5,63,3,
12606109,0,327,3,110,
126070,327,3,111,0,
12608327,3,112,0,327,
126093,113,0,327,3,
12610114,0,327,3,115,
126110,327,3,116,0,
12612327,3,117,0,327,
126133,118,0,327,3,
12614119,0,327,3,120,
126150,327,3,121,0,
12616327,3,122,0,327,
126173,48,0,327,3,
1261849,0,327,3,50,
126190,327,3,51,0,
12620327,3,52,0,327,
126213,53,0,327,3,
1262254,0,327,3,55,
126230,327,3,56,0,
12624327,3,57,0,327,
126253,65,0,327,3,
1262666,0,327,3,67,
126270,327,3,68,0,
12628327,3,69,0,327,
126293,70,0,327,3,
1263071,0,327,3,72,
126310,327,3,73,0,
12632327,3,74,0,327,
126333,75,0,327,3,
1263476,0,327,3,77,
126350,327,3,78,0,
12636327,3,79,0,327,
126373,80,0,327,3,
1263881,0,327,3,82,
126390,327,3,83,0,
12640327,3,84,0,327,
126413,85,0,327,3,
1264286,0,327,3,87,
126430,327,3,88,0,
12644327,3,89,0,327,
126453,90,0,327,3,
1264695,0,327,3,97,
126470,327,3,98,0,
12648327,3,99,0,327,
126493,100,0,327,3,
12650101,0,1002,12,1,
126518041,1003,5,63,3,
12652109,0,327,3,110,
126530,327,3,111,0,
12654327,3,112,0,327,
126553,113,0,327,3,
12656114,0,327,3,115,
126570,327,3,116,0,
12658327,3,117,0,327,
126593,118,0,327,3,
12660119,0,327,3,120,
126610,327,3,121,0,
12662327,3,122,0,1004,
1266312,1,8082,1005,5,
1266463,3,109,0,327,
126653,110,0,327,3,
12666111,0,327,3,112,
126670,327,3,113,0,
12668327,3,114,0,327,
126693,115,0,327,3,
12670116,0,327,3,117,
126710,327,3,118,0,
12672327,3,119,0,327,
126733,120,0,327,3,
12674121,0,327,3,122,
126750,327,3,48,0,
12676327,3,49,0,327,
126773,50,0,327,3,
1267851,0,327,3,52,
126790,327,3,53,0,
12680327,3,54,0,327,
126813,55,0,327,3,
1268256,0,327,3,57,
126830,327,3,65,0,
12684327,3,66,0,327,
126853,67,0,327,3,
1268668,0,327,3,69,
126870,327,3,70,0,
12688327,3,71,0,327,
126893,72,0,327,3,
1269073,0,327,3,74,
126910,327,3,75,0,
12692327,3,76,0,327,
126933,77,0,327,3,
1269478,0,327,3,79,
126950,327,3,80,0,
12696327,3,81,0,327,
126973,82,0,327,3,
1269883,0,327,3,84,
126990,327,3,85,0,
12700327,3,86,0,327,
127013,87,0,327,3,
1270288,0,327,3,89,
127030,327,3,90,0,
12704327,3,95,0,327,
127053,97,0,327,3,
1270698,0,327,3,99,
127070,327,3,100,0,
12708327,3,101,0,327,
127093,102,0,327,3,
12710103,0,327,3,104,
127110,327,3,105,0,
12712327,3,106,0,327,
127133,107,0,327,3,
12714108,0,327,1006,11,
127151,681,0,1007,4,
1271632,79,0,66,0,
1271774,0,69,0,67,
127180,84,0,95,0,
1271982,0,69,0,90,
127200,95,0,69,0,
1272186,0,69,0,78,
127220,84,0,1,-1,
127233,48,0,327,3,
1272449,0,327,3,50,
127250,327,3,51,0,
12726327,3,52,0,327,
127273,53,0,327,3,
1272854,0,327,3,55,
127290,327,3,56,0,
12730327,3,57,0,327,
127313,65,0,327,3,
1273266,0,327,3,67,
127330,327,3,68,0,
12734327,3,69,0,327,
127353,70,0,327,3,
1273671,0,327,3,72,
127370,327,3,73,0,
12738327,3,74,0,327,
127393,75,0,327,3,
1274076,0,327,3,77,
127410,327,3,78,0,
12742327,3,79,0,327,
127433,80,0,327,3,
1274481,0,327,3,82,
127450,327,3,83,0,
12746327,3,84,0,327,
127473,85,0,327,3,
1274886,0,327,3,87,
127490,327,3,88,0,
12750327,3,89,0,327,
127513,90,0,327,3,
1275295,0,327,3,97,
127530,327,3,98,0,
12754327,3,99,0,327,
127553,100,0,327,3,
12756101,0,327,3,102,
127570,327,3,103,0,
12758327,3,104,0,327,
127593,105,0,327,3,
12760106,0,327,3,107,
127610,327,3,108,0,
12762327,1008,11,1,829,
127630,330,1,-1,3,
12764102,0,327,3,103,
127650,327,3,104,0,
12766327,3,105,0,327,
127673,106,0,327,3,
12768107,0,327,3,108,
127690,327,1009,11,1,
12770829,0,330,1,-1,
127713,115,0,327,3,
12772116,0,327,3,117,
127730,327,3,118,0,
12774327,3,119,0,327,
127753,120,0,327,3,
12776121,0,327,3,122,
127770,327,3,48,0,
12778327,3,49,0,327,
127793,50,0,327,3,
1278051,0,327,3,52,
127810,327,3,53,0,
12782327,3,54,0,327,
127833,55,0,327,3,
1278456,0,327,3,57,
127850,327,3,65,0,
12786327,3,66,0,327,
127873,67,0,327,3,
1278868,0,327,3,69,
127890,327,3,70,0,
12790327,3,71,0,327,
127913,72,0,327,3,
1279273,0,327,3,74,
127930,327,3,75,0,
12794327,3,76,0,327,
127953,77,0,327,3,
1279678,0,327,3,79,
127970,327,3,80,0,
12798327,3,81,0,327,
127993,82,0,327,3,
1280083,0,327,3,84,
128010,327,3,85,0,
12802327,3,86,0,327,
128033,87,0,327,3,
1280488,0,327,3,89,
128050,327,3,90,0,
12806327,3,95,0,327,
128073,97,0,327,3,
1280898,0,327,3,99,
128090,327,3,100,0,
12810327,3,101,0,327,
128113,102,0,327,3,
12812103,0,327,3,104,
128130,327,3,105,0,
12814327,3,106,0,327,
128153,107,0,327,3,
12816108,0,327,1010,11,
128171,829,0,330,1,
12818-1,3,97,0,327,
128193,98,0,327,3,
1282099,0,327,3,100,
128210,327,3,101,0,
12822327,3,102,0,327,
128233,103,0,327,3,
12824104,0,327,3,105,
128250,327,3,106,0,
12826327,3,107,0,327,
128273,108,0,327,1011,
1282811,1,829,0,330,
128291,-1,3,117,0,
12830327,3,118,0,327,
128313,119,0,327,3,
12832120,0,327,3,121,
128330,327,3,122,0,
12834327,3,48,0,327,
128353,49,0,327,3,
1283650,0,327,3,51,
128370,327,3,52,0,
12838327,3,53,0,327,
128393,54,0,327,3,
1284055,0,327,3,56,
128410,327,3,57,0,
12842327,3,65,0,327,
128433,66,0,327,3,
1284467,0,327,3,68,
128450,327,3,69,0,
12846327,3,70,0,327,
128473,71,0,327,3,
1284872,0,327,3,73,
128490,327,3,74,0,
12850327,3,75,0,327,
128513,76,0,327,3,
1285277,0,327,3,78,
128530,327,3,79,0,
12854327,3,80,0,327,
128553,81,0,327,3,
1285682,0,327,3,83,
128570,327,3,84,0,
12858327,3,85,0,327,
128593,86,0,327,3,
1286087,0,327,3,88,
128610,327,3,89,0,
12862327,3,90,0,327,
128633,95,0,327,3,
1286497,0,327,3,98,
128650,327,3,99,0,
12866327,3,100,0,327,
128673,101,0,327,3,
12868102,0,327,3,103,
128690,327,3,104,0,
12870327,3,105,0,327,
128713,106,0,327,3,
12872107,0,327,3,108,
128730,327,1012,11,1,
12874829,0,330,1,-1,
128753,100,0,327,3,
12876101,0,327,3,102,
128770,327,3,103,0,
12878327,3,104,0,327,
128793,105,0,327,3,
12880106,0,327,3,107,
128810,327,3,108,0,
12882327,1013,11,1,829,
128830,330,1,-1,3,
12884102,0,327,3,103,
128850,327,3,104,0,
12886327,3,105,0,327,
128873,106,0,327,3,
12888107,0,327,3,108,
128890,327,1014,11,1,
12890829,0,330,1,-1,
128913,107,0,327,3,
12892108,0,327,1015,11,
128931,829,0,330,1,
12894-1,3,99,0,327,
128953,100,0,327,3,
12896101,0,327,3,102,
128970,327,3,103,0,
12898327,3,104,0,327,
128993,105,0,327,3,
12900106,0,327,3,107,
129010,327,3,108,0,
12902327,1016,11,1,829,
129030,330,1,-1,3,
12904112,0,325,3,113,
129050,325,3,114,0,
129061017,12,1,8855,1018,
129075,63,3,109,0,
12908327,3,110,0,327,
129093,111,0,1019,12,
129101,8885,1020,5,63,
129113,109,0,327,3,
12912110,0,327,3,111,
129130,327,3,112,0,
12914327,3,113,0,327,
129153,114,0,327,3,
12916115,0,327,3,116,
129170,1021,12,1,8920,
129181022,5,63,3,109,
129190,327,3,110,0,
12920327,3,111,0,327,
129213,112,0,327,3,
12922113,0,327,3,114,
129230,327,3,115,0,
12924327,3,116,0,327,
129253,117,0,327,3,
12926118,0,327,3,119,
129270,327,3,120,0,
12928327,3,121,0,327,
129293,122,0,327,3,
1293048,0,327,3,49,
129310,327,3,50,0,
12932327,3,51,0,327,
129333,52,0,327,3,
1293453,0,327,3,54,
129350,327,3,55,0,
12936327,3,56,0,327,
129373,57,0,327,3,
1293865,0,327,3,66,
129390,327,3,67,0,
12940327,3,68,0,327,
129413,69,0,327,3,
1294270,0,327,3,71,
129430,327,3,72,0,
12944327,3,73,0,327,
129453,74,0,327,3,
1294675,0,327,3,76,
129470,327,3,77,0,
12948327,3,78,0,327,
129493,79,0,327,3,
1295080,0,327,3,81,
129510,327,3,82,0,
12952327,3,83,0,327,
129533,84,0,327,3,
1295485,0,327,3,86,
129550,327,3,87,0,
12956327,3,88,0,327,
129573,89,0,327,3,
1295890,0,327,3,95,
129590,327,3,97,0,
129601023,12,1,8963,1024,
129615,63,3,109,0,
12962327,3,110,0,327,
129633,111,0,327,3,
12964112,0,327,3,113,
129650,327,3,114,0,
12966327,3,115,0,327,
129673,116,0,1025,12,
129681,8998,1026,5,63,
129693,109,0,327,3,
12970110,0,327,3,111,
129710,327,3,112,0,
12972327,3,113,0,327,
129733,114,0,327,3,
12974115,0,327,3,116,
129750,327,3,117,0,
12976327,3,118,0,327,
129773,119,0,327,3,
12978120,0,327,3,121,
129790,327,3,122,0,
12980327,3,48,0,327,
129813,49,0,327,3,
1298250,0,327,3,51,
129830,327,3,52,0,
12984327,3,53,0,327,
129853,54,0,327,3,
1298655,0,327,3,56,
129870,327,3,57,0,
12988327,3,65,0,327,
129893,66,0,327,3,
1299067,0,327,3,68,
129910,327,3,69,0,
12992327,3,70,0,327,
129933,71,0,327,3,
1299472,0,327,3,73,
129950,327,3,74,0,
12996327,3,75,0,327,
129973,76,0,327,3,
1299877,0,327,3,78,
129990,327,3,79,0,
13000327,3,80,0,327,
130013,81,0,327,3,
1300282,0,327,3,83,
130030,327,3,84,0,
13004327,3,85,0,327,
130053,86,0,327,3,
1300687,0,327,3,88,
130070,327,3,89,0,
13008327,3,90,0,327,
130093,95,0,327,3,
1301097,0,327,3,98,
130110,327,3,99,0,
13012327,3,100,0,327,
130133,101,0,327,3,
13014102,0,327,3,103,
130150,327,3,104,0,
13016327,3,105,0,1027,
1301712,1,9049,1028,5,
1301863,3,109,0,327,
130193,110,0,327,3,
13020111,0,1029,12,1,
130219079,1030,5,63,3,
13022109,0,327,3,110,
130230,1031,12,1,9108,
130241032,5,63,3,109,
130250,327,3,110,0,
13026327,3,111,0,327,
130273,112,0,327,3,
13028113,0,327,3,114,
130290,327,3,115,0,
13030327,3,116,0,327,
130313,117,0,327,3,
13032118,0,327,3,119,
130330,327,3,120,0,
13034327,3,121,0,327,
130353,122,0,327,3,
1303648,0,327,3,49,
130370,327,3,50,0,
13038327,3,51,0,327,
130393,52,0,327,3,
1304053,0,327,3,54,
130410,327,3,55,0,
13042327,3,56,0,327,
130433,57,0,327,3,
1304465,0,327,3,66,
130450,327,3,67,0,
13046327,3,68,0,327,
130473,69,0,327,3,
1304870,0,327,3,71,
130490,327,3,72,0,
13050327,3,73,0,327,
130513,74,0,327,3,
1305275,0,327,3,76,
130530,327,3,77,0,
13054327,3,78,0,327,
130553,79,0,327,3,
1305680,0,327,3,81,
130570,327,3,82,0,
13058327,3,83,0,327,
130593,84,0,327,3,
1306085,0,327,3,86,
130610,327,3,87,0,
13062327,3,88,0,327,
130633,89,0,327,3,
1306490,0,327,3,95,
130650,327,3,97,0,
13066327,3,98,0,327,
130673,99,0,327,3,
13068100,0,327,3,101,
130690,327,3,102,0,
13070327,3,103,0,327,
130713,104,0,327,3,
13072105,0,327,3,106,
130730,327,3,107,0,
13074327,3,108,0,327,
130751033,11,1,330,0,
130761034,4,26,82,0,
1307779,0,84,0,65,
130780,84,0,73,0,
1307979,0,78,0,95,
130800,84,0,89,0,
1308180,0,69,0,1,
13082-1,3,111,0,327,
130833,112,0,327,3,
13084113,0,327,3,114,
130850,327,3,115,0,
13086327,3,116,0,327,
130873,117,0,327,3,
13088118,0,327,3,119,
130890,327,3,120,0,
13090327,3,121,0,327,
130913,122,0,327,3,
1309248,0,327,3,49,
130930,327,3,50,0,
13094327,3,51,0,327,
130953,52,0,327,3,
1309653,0,327,3,54,
130970,327,3,55,0,
13098327,3,56,0,327,
130993,57,0,327,3,
1310065,0,327,3,66,
131010,327,3,67,0,
13102327,3,68,0,327,
131033,69,0,327,3,
1310470,0,327,3,71,
131050,327,3,72,0,
13106327,3,73,0,327,
131073,74,0,327,3,
1310875,0,327,3,76,
131090,327,3,77,0,
13110327,3,78,0,327,
131113,79,0,327,3,
1311280,0,327,3,81,
131130,327,3,82,0,
13114327,3,83,0,327,
131153,84,0,327,3,
1311685,0,327,3,86,
131170,327,3,87,0,
13118327,3,88,0,327,
131193,89,0,327,3,
1312090,0,327,3,95,
131210,327,3,97,0,
13122327,3,98,0,327,
131233,99,0,327,3,
13124100,0,327,3,101,
131250,327,3,102,0,
13126327,3,103,0,327,
131273,104,0,327,3,
13128105,0,327,3,106,
131290,327,3,107,0,
13130327,3,108,0,327,
131311035,11,1,829,0,
13132330,1,-1,3,112,
131330,327,3,113,0,
13134327,3,114,0,327,
131353,115,0,327,3,
13136116,0,327,3,117,
131370,327,3,118,0,
13138327,3,119,0,327,
131393,120,0,327,3,
13140121,0,327,3,122,
131410,327,3,48,0,
13142327,3,49,0,327,
131433,50,0,327,3,
1314451,0,327,3,52,
131450,327,3,53,0,
13146327,3,54,0,327,
131473,55,0,327,3,
1314856,0,327,3,57,
131490,327,3,65,0,
13150327,3,66,0,327,
131513,67,0,327,3,
1315268,0,327,3,69,
131530,327,3,70,0,
13154327,3,71,0,327,
131553,72,0,327,3,
1315673,0,327,3,74,
131570,327,3,75,0,
13158327,3,76,0,327,
131593,77,0,327,3,
1316078,0,327,3,79,
131610,327,3,80,0,
13162327,3,81,0,327,
131633,82,0,327,3,
1316483,0,327,3,84,
131650,327,3,85,0,
13166327,3,86,0,327,
131673,87,0,327,3,
1316888,0,327,3,89,
131690,327,3,90,0,
13170327,3,95,0,327,
131713,97,0,327,3,
1317298,0,327,3,99,
131730,327,3,100,0,
13174327,3,101,0,327,
131753,102,0,327,3,
13176103,0,327,3,104,
131770,327,3,105,0,
13178327,3,106,0,327,
131793,107,0,327,3,
13180108,0,327,1036,11,
131811,829,0,330,1,
13182-1,3,106,0,327,
131833,107,0,327,3,
13184108,0,327,1037,11,
131851,829,0,330,1,
13186-1,3,117,0,327,
131873,118,0,327,3,
13188119,0,327,3,120,
131890,327,3,121,0,
13190327,3,122,0,327,
131913,48,0,327,3,
1319249,0,327,3,50,
131930,327,3,51,0,
13194327,3,52,0,327,
131953,53,0,327,3,
1319654,0,327,3,55,
131970,327,3,56,0,
13198327,3,57,0,327,
131993,65,0,327,3,
1320066,0,327,3,67,
132010,327,3,68,0,
13202327,3,69,0,327,
132033,70,0,327,3,
1320471,0,327,3,72,
132050,327,3,73,0,
13206327,3,74,0,327,
132073,75,0,327,3,
1320876,0,327,3,77,
132090,327,3,78,0,
13210327,3,79,0,327,
132113,80,0,327,3,
1321281,0,327,3,82,
132130,327,3,83,0,
13214327,3,84,0,327,
132153,85,0,327,3,
1321686,0,327,3,87,
132170,327,3,88,0,
13218327,3,89,0,327,
132193,90,0,327,3,
1322095,0,327,3,97,
132210,327,3,98,0,
13222327,3,99,0,327,
132233,100,0,327,3,
13224101,0,327,3,102,
132250,327,3,103,0,
13226327,3,104,0,327,
132273,105,0,327,3,
13228106,0,327,3,107,
132290,327,3,108,0,
13230327,1038,11,1,829,
132310,330,1,-1,3,
1323298,0,327,3,99,
132330,327,3,100,0,
13234327,3,101,0,327,
132353,102,0,327,3,
13236103,0,327,3,104,
132370,327,3,105,0,
13238327,3,106,0,327,
132393,107,0,327,3,
13240108,0,327,1039,11,
132411,829,0,330,1,
13242-1,3,117,0,327,
132433,118,0,327,3,
13244119,0,327,3,120,
132450,327,3,121,0,
13246327,3,122,0,327,
132473,48,0,327,3,
1324849,0,327,3,50,
132490,327,3,51,0,
13250327,3,52,0,327,
132513,53,0,327,3,
1325254,0,327,3,55,
132530,327,3,56,0,
13254327,3,57,0,327,
132553,65,0,327,3,
1325666,0,327,3,67,
132570,327,3,68,0,
13258327,3,69,0,327,
132593,70,0,327,3,
1326071,0,327,3,72,
132610,327,3,73,0,
13262327,3,74,0,327,
132633,75,0,327,3,
1326476,0,327,3,77,
132650,327,3,78,0,
13266327,3,79,0,327,
132673,80,0,327,3,
1326881,0,327,3,82,
132690,327,3,83,0,
13270327,3,84,0,327,
132713,85,0,327,3,
1327286,0,327,3,87,
132730,327,3,88,0,
13274327,3,89,0,327,
132753,90,0,327,3,
1327695,0,327,3,97,
132770,327,3,98,0,
13278327,3,99,0,327,
132793,100,0,327,3,
13280101,0,327,3,102,
132810,327,3,103,0,
13282327,3,104,0,327,
132833,105,0,327,3,
13284106,0,327,3,107,
132850,327,3,108,0,
13286327,1040,11,1,829,
132870,330,1,-1,3,
13288112,0,327,3,113,
132890,327,3,114,0,
13290327,3,115,0,327,
132913,116,0,327,3,
13292117,0,1041,12,1,
132939731,1042,5,63,3,
13294109,0,327,3,110,
132950,1043,12,1,9760,
132961044,5,63,3,109,
132970,327,3,110,0,
13298327,3,111,0,327,
132993,112,0,327,3,
13300113,0,327,3,114,
133010,327,3,115,0,
13302327,3,116,0,327,
133033,117,0,327,3,
13304118,0,327,3,119,
133050,327,3,120,0,
13306327,3,121,0,327,
133073,122,0,327,3,
1330848,0,327,3,49,
133090,327,3,50,0,
13310327,3,51,0,327,
133113,52,0,327,3,
1331253,0,327,3,54,
133130,327,3,55,0,
13314327,3,56,0,327,
133153,57,0,327,3,
1331665,0,327,3,66,
133170,327,3,67,0,
13318327,3,68,0,327,
133193,69,0,327,3,
1332070,0,327,3,71,
133210,327,3,72,0,
13322327,3,73,0,327,
133233,74,0,327,3,
1332475,0,327,3,76,
133250,327,3,77,0,
13326327,3,78,0,327,
133273,79,0,327,3,
1332880,0,327,3,81,
133290,327,3,82,0,
13330327,3,83,0,327,
133313,84,0,327,3,
1333285,0,327,3,86,
133330,327,3,87,0,
13334327,3,88,0,327,
133353,89,0,327,3,
1333690,0,327,3,95,
133370,1045,12,1,9846,
133381046,5,63,3,109,
133390,327,3,110,0,
13340327,3,111,0,327,
133413,112,0,327,3,
13342113,0,327,3,114,
133430,327,3,115,0,
13344327,3,116,0,1047,
1334512,1,9881,1048,5,
1334663,3,109,0,327,
133473,110,0,327,3,
13348111,0,327,3,112,
133490,327,3,113,0,
13350327,3,114,0,327,
133513,115,0,327,3,
13352116,0,327,3,117,
133530,327,3,118,0,
13354327,3,119,0,327,
133553,120,0,327,3,
13356121,0,327,3,122,
133570,327,3,48,0,
13358327,3,49,0,327,
133593,50,0,327,3,
1336051,0,327,3,52,
133610,327,3,53,0,
13362327,3,54,0,327,
133633,55,0,327,3,
1336456,0,327,3,57,
133650,327,3,65,0,
13366327,3,66,0,327,
133673,67,0,327,3,
1336868,0,327,3,69,
133690,327,3,70,0,
13370327,3,71,0,327,
133713,72,0,327,3,
1337273,0,327,3,74,
133730,327,3,75,0,
13374327,3,76,0,327,
133753,77,0,327,3,
1337678,0,327,3,79,
133770,327,3,80,0,
13378327,3,81,0,327,
133793,82,0,327,3,
1338083,0,327,3,84,
133810,327,3,85,0,
13382327,3,86,0,327,
133833,87,0,327,3,
1338488,0,327,3,89,
133850,327,3,90,0,
13386327,3,95,0,327,
133873,97,0,327,3,
1338898,0,327,3,99,
133890,327,3,100,0,
13390327,3,101,0,327,
133913,102,0,327,3,
13392103,0,327,3,104,
133930,327,3,105,0,
133941049,12,1,9932,1050,
133955,63,3,109,0,
133961051,12,1,9960,1052,
133975,63,3,109,0,
13398327,3,110,0,327,
133993,111,0,327,3,
13400112,0,327,3,113,
134010,327,3,114,0,
13402327,3,115,0,327,
134033,116,0,327,3,
13404117,0,327,3,118,
134050,327,3,119,0,
13406327,3,120,0,327,
134073,121,0,327,3,
13408122,0,327,3,48,
134090,327,3,49,0,
13410327,3,50,0,327,
134113,51,0,327,3,
1341252,0,327,3,53,
134130,327,3,54,0,
13414327,3,55,0,327,
134153,56,0,327,3,
1341657,0,327,3,65,
134170,327,3,66,0,
13418327,3,67,0,327,
134193,68,0,327,3,
1342069,0,327,3,70,
134210,327,3,71,0,
13422327,3,72,0,327,
134233,73,0,327,3,
1342474,0,327,3,75,
134250,327,3,76,0,
13426327,3,77,0,327,
134273,78,0,327,3,
1342879,0,327,3,80,
134290,327,3,81,0,
13430327,3,82,0,327,
134313,83,0,327,3,
1343284,0,327,3,85,
134330,327,3,86,0,
13434327,3,87,0,327,
134353,88,0,327,3,
1343689,0,327,3,90,
134370,327,3,95,0,
13438327,3,97,0,327,
134393,98,0,327,3,
1344099,0,327,3,100,
134410,327,3,101,0,
134421053,12,1,10007,1054,
134435,63,3,109,0,
13444327,3,110,0,327,
134453,111,0,327,3,
13446112,0,327,3,113,
134470,327,3,114,0,
13448327,3,115,0,327,
134493,116,0,327,3,
13450117,0,327,3,118,
134510,327,3,119,0,
13452327,3,120,0,327,
134533,121,0,327,3,
13454122,0,327,3,48,
134550,327,3,49,0,
13456327,3,50,0,327,
134573,51,0,327,3,
1345852,0,327,3,53,
134590,327,3,54,0,
13460327,3,55,0,327,
134613,56,0,327,3,
1346257,0,327,3,65,
134630,327,3,66,0,
13464327,3,67,0,327,
134653,68,0,327,3,
1346669,0,327,3,70,
134670,327,3,71,0,
13468327,3,72,0,327,
134693,73,0,327,3,
1347074,0,327,3,75,
134710,327,3,76,0,
13472327,3,77,0,327,
134733,78,0,327,3,
1347479,0,327,3,80,
134750,327,3,81,0,
13476327,3,82,0,327,
134773,83,0,327,3,
1347884,0,327,3,85,
134790,327,3,86,0,
13480327,3,87,0,327,
134813,88,0,327,3,
1348289,0,327,3,90,
134830,327,3,95,0,
134841055,12,1,10093,1056,
134855,63,3,109,0,
13486327,3,110,0,327,
134873,111,0,327,3,
13488112,0,1057,12,1,
1348910124,1058,5,63,3,
13490109,0,327,3,110,
134910,327,3,111,0,
13492327,3,112,0,327,
134933,113,0,327,3,
13494114,0,327,3,115,
134950,327,3,116,0,
13496327,3,117,0,327,
134973,118,0,327,3,
13498119,0,327,3,120,
134990,327,3,121,0,
13500327,3,122,0,327,
135013,48,0,327,3,
1350249,0,327,3,50,
135030,327,3,51,0,
13504327,3,52,0,327,
135053,53,0,327,3,
1350654,0,327,3,55,
135070,327,3,56,0,
13508327,3,57,0,327,
135093,65,0,327,3,
1351066,0,327,3,67,
135110,327,3,68,0,
13512327,3,69,0,327,
135133,70,0,327,3,
1351471,0,327,3,72,
135150,327,3,73,0,
13516327,3,74,0,327,
135173,75,0,327,3,
1351876,0,327,3,77,
135190,327,3,78,0,
13520327,3,79,0,327,
135213,80,0,327,3,
1352281,0,327,3,82,
135230,327,3,83,0,
13524327,3,84,0,327,
135253,85,0,327,3,
1352686,0,327,3,87,
135270,327,3,88,0,
13528327,3,89,0,327,
135293,90,0,327,3,
1353095,0,327,3,97,
135310,327,3,98,0,
13532327,3,99,0,327,
135333,100,0,327,3,
13534101,0,1059,12,1,
1353510171,1060,5,63,3,
13536109,0,327,3,110,
135370,327,3,111,0,
13538327,3,112,0,327,
135393,113,0,327,3,
13540114,0,1061,12,1,
1354110204,1062,5,63,3,
13542109,0,1063,12,1,
1354310232,1064,5,63,3,
13544109,0,327,3,110,
135450,327,3,111,0,
13546327,3,112,0,327,
135473,113,0,327,3,
13548114,0,327,3,115,
135490,327,3,116,0,
13550327,3,117,0,327,
135513,118,0,327,3,
13552119,0,327,3,120,
135530,327,3,121,0,
13554327,3,122,0,327,
135553,48,0,327,3,
1355649,0,327,3,50,
135570,327,3,51,0,
13558327,3,52,0,327,
135593,53,0,327,3,
1356054,0,327,3,55,
135610,327,3,56,0,
13562327,3,57,0,327,
135633,65,0,327,3,
1356466,0,327,3,67,
135650,327,3,68,0,
13566327,3,69,0,327,
135673,70,0,327,3,
1356871,0,327,3,72,
135690,327,3,73,0,
13570327,3,74,0,327,
135713,75,0,327,3,
1357276,0,327,3,77,
135730,327,3,78,0,
13574327,3,79,0,327,
135753,80,0,327,3,
1357681,0,327,3,82,
135770,327,3,83,0,
13578327,3,84,0,327,
135793,85,0,327,3,
1358086,0,327,3,87,
135810,327,3,88,0,
13582327,3,89,0,327,
135833,90,0,327,3,
1358495,0,327,3,97,
135850,327,3,98,0,
13586327,3,99,0,327,
135873,100,0,327,3,
13588101,0,327,3,102,
135890,327,3,103,0,
13590327,3,104,0,327,
135913,105,0,1065,12,
135921,10283,1066,5,63,
135933,109,0,327,3,
13594110,0,327,3,111,
135950,327,3,112,0,
13596327,3,113,0,327,
135973,114,0,327,3,
13598115,0,1067,12,1,
1359910317,1068,5,63,3,
13600109,0,327,3,110,
136010,327,3,111,0,
13602327,3,112,0,327,
136033,113,0,327,3,
13604114,0,327,3,115,
136050,1069,12,1,10351,
136061070,5,63,3,109,
136070,327,3,110,0,
13608327,3,111,0,327,
136093,112,0,327,3,
13610113,0,327,3,114,
136110,327,3,115,0,
13612327,3,116,0,327,
136133,117,0,327,3,
13614118,0,327,3,119,
136150,327,3,120,0,
13616327,3,121,0,327,
136173,122,0,327,3,
1361848,0,327,3,49,
136190,327,3,50,0,
13620327,3,51,0,327,
136213,52,0,327,3,
1362253,0,327,3,54,
136230,327,3,55,0,
13624327,3,56,0,327,
136253,57,0,327,3,
1362665,0,327,3,66,
136270,327,3,67,0,
13628327,3,68,0,327,
136293,69,0,327,3,
1363070,0,327,3,71,
136310,327,3,72,0,
13632327,3,73,0,327,
136333,74,0,327,3,
1363475,0,327,3,76,
136350,327,3,77,0,
13636327,3,78,0,327,
136373,79,0,327,3,
1363880,0,327,3,81,
136390,327,3,82,0,
13640327,3,83,0,327,
136413,84,0,327,3,
1364285,0,327,3,86,
136430,327,3,87,0,
13644327,3,88,0,327,
136453,89,0,327,3,
1364690,0,327,3,95,
136470,327,3,97,0,
13648327,3,98,0,327,
136493,99,0,327,3,
13650100,0,327,3,101,
136510,327,3,102,0,
13652327,3,103,0,327,
136533,104,0,327,3,
13654105,0,1071,12,1,
1365510402,1072,5,63,3,
13656109,0,327,3,110,
136570,327,3,111,0,
136581073,12,1,10432,1074,
136595,63,3,109,0,
13660327,3,110,0,1075,
1366112,1,10461,1076,5,
1366263,3,109,0,327,
136633,110,0,327,3,
13664111,0,327,3,112,
136650,327,3,113,0,
13666327,3,114,0,327,
136673,115,0,1077,12,
136681,10495,1078,5,63,
136693,109,0,327,3,
13670110,0,327,3,111,
136710,327,3,112,0,
13672327,3,113,0,327,
136733,114,0,327,3,
13674115,0,327,3,116,
136750,327,3,117,0,
13676327,3,118,0,327,
136773,119,0,327,3,
13678120,0,327,3,121,
136790,327,3,122,0,
13680327,3,48,0,327,
136813,49,0,327,3,
1368250,0,327,3,51,
136830,327,3,52,0,
13684327,3,53,0,327,
136853,54,0,327,3,
1368655,0,327,3,56,
136870,327,3,57,0,
13688327,3,65,0,327,
136893,66,0,327,3,
1369067,0,327,3,68,
136910,327,3,69,0,
13692327,3,70,0,327,
136933,71,0,327,3,
1369472,0,327,3,73,
136950,327,3,74,0,
13696327,3,75,0,327,
136973,76,0,327,3,
1369877,0,327,3,78,
136990,327,3,79,0,
13700327,3,80,0,327,
137013,81,0,327,3,
1370282,0,327,3,83,
137030,327,3,84,0,
13704327,3,85,0,327,
137053,86,0,327,3,
1370687,0,327,3,88,
137070,327,3,89,0,
13708327,3,90,0,327,
137093,95,0,327,3,
1371097,0,327,3,98,
137110,327,3,99,0,
13712327,3,100,0,327,
137133,101,0,327,3,
13714102,0,327,3,103,
137150,327,3,104,0,
13716327,3,105,0,327,
137173,106,0,327,3,
13718107,0,327,3,108,
137190,327,1079,11,1,
13720720,0,1080,4,52,
1372182,0,85,0,78,
137220,95,0,84,0,
1372373,0,77,0,69,
137240,95,0,80,0,
1372569,0,82,0,77,
137260,73,0,83,0,
1372783,0,73,0,79,
137280,78,0,83,0,
1372995,0,69,0,86,
137300,69,0,78,0,
1373184,0,1,-1,3,
13732116,0,327,3,117,
137330,327,3,118,0,
13734327,3,119,0,327,
137353,120,0,327,3,
13736121,0,327,3,122,
137370,327,3,48,0,
13738327,3,49,0,327,
137393,50,0,327,3,
1374051,0,327,3,52,
137410,327,3,53,0,
13742327,3,54,0,327,
137433,55,0,327,3,
1374456,0,327,3,57,
137450,327,3,65,0,
13746327,3,66,0,327,
137473,67,0,327,3,
1374868,0,327,3,69,
137490,327,3,70,0,
13750327,3,71,0,327,
137513,72,0,327,3,
1375273,0,327,3,74,
137530,327,3,75,0,
13754327,3,76,0,327,
137553,77,0,327,3,
1375678,0,327,3,79,
137570,327,3,80,0,
13758327,3,81,0,327,
137593,82,0,327,3,
1376083,0,327,3,84,
137610,327,3,85,0,
13762327,3,86,0,327,
137633,87,0,327,3,
1376488,0,327,3,89,
137650,327,3,90,0,
13766327,3,95,0,327,
137673,97,0,327,3,
1376898,0,327,3,99,
137690,327,3,100,0,
13770327,3,101,0,327,
137713,102,0,327,3,
13772103,0,327,3,104,
137730,327,3,105,0,
13774327,3,106,0,327,
137753,107,0,327,3,
13776108,0,327,1081,11,
137771,829,0,330,1,
13778-1,3,111,0,327,
137793,112,0,327,3,
13780113,0,327,3,114,
137810,327,3,115,0,
13782327,3,116,0,327,
137833,117,0,327,3,
13784118,0,327,3,119,
137850,327,3,120,0,
13786327,3,121,0,327,
137873,122,0,327,3,
1378848,0,327,3,49,
137890,327,3,50,0,
13790327,3,51,0,327,
137913,52,0,327,3,
1379253,0,327,3,54,
137930,327,3,55,0,
13794327,3,56,0,327,
137953,57,0,327,3,
1379665,0,327,3,66,
137970,327,3,67,0,
13798327,3,68,0,327,
137993,69,0,327,3,
1380070,0,327,3,71,
138010,327,3,72,0,
13802327,3,73,0,327,
138033,74,0,327,3,
1380475,0,327,3,76,
138050,327,3,77,0,
13806327,3,78,0,327,
138073,79,0,327,3,
1380880,0,327,3,81,
138090,327,3,82,0,
13810327,3,83,0,327,
138113,84,0,327,3,
1381285,0,327,3,86,
138130,327,3,87,0,
13814327,3,88,0,327,
138153,89,0,327,3,
1381690,0,327,3,95,
138170,327,3,97,0,
13818327,3,98,0,327,
138193,99,0,327,3,
13820100,0,327,3,101,
138210,327,3,102,0,
13822327,3,103,0,327,
138233,104,0,327,3,
13824105,0,327,3,106,
138250,327,3,107,0,
13826327,3,108,0,327,
138271082,11,1,829,0,
13828330,1,-1,3,112,
138290,327,3,113,0,
13830327,3,114,0,327,
138313,115,0,327,3,
13832116,0,327,3,117,
138330,327,3,118,0,
13834327,3,119,0,327,
138353,120,0,327,3,
13836121,0,327,3,122,
138370,327,3,48,0,
13838327,3,49,0,327,
138393,50,0,327,3,
1384051,0,327,3,52,
138410,327,3,53,0,
13842327,3,54,0,327,
138433,55,0,327,3,
1384456,0,327,3,57,
138450,327,3,65,0,
13846327,3,66,0,327,
138473,67,0,327,3,
1384868,0,327,3,69,
138490,327,3,70,0,
13850327,3,71,0,327,
138513,72,0,327,3,
1385273,0,327,3,74,
138530,327,3,75,0,
13854327,3,76,0,327,
138553,77,0,327,3,
1385678,0,327,3,79,
138570,327,3,80,0,
13858327,3,81,0,327,
138593,82,0,327,3,
1386083,0,327,3,84,
138610,327,3,85,0,
13862327,3,86,0,327,
138633,87,0,327,3,
1386488,0,327,3,89,
138650,327,3,90,0,
13866327,3,95,0,327,
138673,97,0,327,3,
1386898,0,327,3,99,
138690,327,3,100,0,
13870327,3,101,0,327,
138713,102,0,327,3,
13872103,0,327,3,104,
138730,327,3,105,0,
13874327,3,106,0,327,
138753,107,0,327,3,
13876108,0,327,1083,11,
138771,829,0,330,1,
13878-1,3,106,0,327,
138793,107,0,327,3,
13880108,0,327,1084,11,
138811,829,0,330,1,
13882-1,3,116,0,327,
138833,117,0,327,3,
13884118,0,327,3,119,
138850,327,3,120,0,
13886327,3,121,0,327,
138873,122,0,327,3,
1388848,0,327,3,49,
138890,327,3,50,0,
13890327,3,51,0,327,
138913,52,0,327,3,
1389253,0,327,3,54,
138930,327,3,55,0,
13894327,3,56,0,327,
138953,57,0,327,3,
1389665,0,327,3,66,
138970,327,3,67,0,
13898327,3,68,0,327,
138993,69,0,327,3,
1390070,0,327,3,71,
139010,327,3,72,0,
13902327,3,73,0,327,
139033,74,0,327,3,
1390475,0,327,3,76,
139050,327,3,77,0,
13906327,3,78,0,327,
139073,79,0,327,3,
1390880,0,327,3,81,
139090,327,3,82,0,
13910327,3,83,0,327,
139113,84,0,327,3,
1391285,0,327,3,86,
139130,327,3,87,0,
13914327,3,88,0,327,
139153,89,0,327,3,
1391690,0,327,3,95,
139170,327,3,97,0,
13918327,3,98,0,327,
139193,99,0,327,3,
13920100,0,327,3,101,
139210,327,3,102,0,
13922327,3,103,0,327,
139233,104,0,327,3,
13924105,0,327,3,106,
139250,327,3,107,0,
13926327,3,108,0,327,
139271085,11,1,829,0,
13928330,1,-1,3,116,
139290,327,3,117,0,
13930327,3,118,0,327,
139313,119,0,327,3,
13932120,0,327,3,121,
139330,327,3,122,0,
13934327,3,48,0,327,
139353,49,0,327,3,
1393650,0,327,3,51,
139370,327,3,52,0,
13938327,3,53,0,327,
139393,54,0,327,3,
1394055,0,327,3,56,
139410,327,3,57,0,
13942327,3,65,0,327,
139433,66,0,327,3,
1394467,0,327,3,68,
139450,327,3,69,0,
13946327,3,70,0,327,
139473,71,0,327,3,
1394872,0,327,3,73,
139490,327,3,74,0,
13950327,3,75,0,327,
139513,76,0,327,3,
1395277,0,327,3,78,
139530,327,3,79,0,
13954327,3,80,0,327,
139553,81,0,327,3,
1395682,0,327,3,83,
139570,327,3,84,0,
13958327,3,85,0,327,
139593,86,0,327,3,
1396087,0,327,3,88,
139610,327,3,89,0,
13962327,3,90,0,327,
139633,95,0,327,3,
1396497,0,327,3,98,
139650,327,3,99,0,
13966327,3,100,0,327,
139673,101,0,327,3,
13968102,0,327,3,103,
139690,327,3,104,0,
13970327,3,105,0,327,
139713,106,0,327,3,
13972107,0,327,3,108,
139730,327,1086,11,1,
13974829,0,330,1,-1,
139753,106,0,327,3,
13976107,0,327,3,108,
139770,327,1087,11,1,
13978829,0,330,1,-1,
139793,110,0,327,3,
13980111,0,327,3,112,
139810,327,3,113,0,
13982327,3,114,0,327,
139833,115,0,327,3,
13984116,0,327,3,117,
139850,327,3,118,0,
13986327,3,119,0,327,
139873,120,0,327,3,
13988121,0,327,3,122,
139890,327,3,48,0,
13990327,3,49,0,327,
139913,50,0,327,3,
1399251,0,327,3,52,
139930,327,3,53,0,
13994327,3,54,0,327,
139953,55,0,327,3,
1399656,0,327,3,57,
139970,327,3,65,0,
13998327,3,66,0,327,
139993,67,0,327,3,
1400068,0,327,3,69,
140010,327,3,70,0,
14002327,3,71,0,327,
140033,72,0,327,3,
1400473,0,327,3,74,
140050,327,3,75,0,
14006327,3,76,0,327,
140073,77,0,327,3,
1400878,0,327,3,79,
140090,327,3,80,0,
14010327,3,81,0,327,
140113,82,0,327,3,
1401283,0,327,3,84,
140130,327,3,85,0,
14014327,3,86,0,327,
140153,87,0,327,3,
1401688,0,327,3,89,
140170,327,3,90,0,
14018327,3,95,0,327,
140193,97,0,327,3,
1402098,0,327,3,99,
140210,327,3,100,0,
14022327,3,101,0,327,
140233,102,0,327,3,
14024103,0,327,3,104,
140250,327,3,105,0,
14026327,3,106,0,327,
140273,107,0,327,3,
14028108,0,327,1088,11,
140291,829,0,330,1,
14030-1,3,115,0,327,
140313,116,0,327,3,
14032117,0,327,3,118,
140330,327,3,119,0,
14034327,3,120,0,327,
140353,121,0,327,3,
14036122,0,327,3,48,
140370,327,3,49,0,
14038327,3,50,0,327,
140393,51,0,327,3,
1404052,0,327,3,53,
140410,327,3,54,0,
14042327,3,55,0,327,
140433,56,0,327,3,
1404457,0,327,3,65,
140450,327,3,66,0,
14046327,3,67,0,327,
140473,68,0,327,3,
1404869,0,327,3,70,
140490,327,3,71,0,
14050327,3,72,0,327,
140513,73,0,327,3,
1405274,0,327,3,75,
140530,327,3,76,0,
14054327,3,77,0,327,
140553,78,0,327,3,
1405679,0,327,3,80,
140570,327,3,81,0,
14058327,3,82,0,327,
140593,83,0,327,3,
1406084,0,327,3,85,
140610,327,3,86,0,
14062327,3,87,0,327,
140633,88,0,327,3,
1406489,0,327,3,90,
140650,327,3,95,0,
14066327,3,97,0,327,
140673,98,0,327,3,
1406899,0,327,3,100,
140690,327,3,101,0,
14070327,3,102,0,327,
140713,103,0,327,3,
14072104,0,327,3,105,
140730,327,3,106,0,
14074327,3,107,0,327,
140753,108,0,327,1089,
1407611,1,829,0,330,
140771,-1,3,102,0,
14078327,3,103,0,327,
140793,104,0,327,3,
14080105,0,327,3,106,
140810,327,3,107,0,
14082327,3,108,0,327,
140831090,11,1,829,0,
14084330,1,-1,3,113,
140850,327,3,114,0,
14086327,3,115,0,327,
140873,116,0,327,3,
14088117,0,327,3,118,
140890,327,3,119,0,
14090327,3,120,0,327,
140913,121,0,327,3,
14092122,0,327,3,48,
140930,327,3,49,0,
14094327,3,50,0,327,
140953,51,0,327,3,
1409652,0,327,3,53,
140970,327,3,54,0,
14098327,3,55,0,327,
140993,56,0,327,3,
1410057,0,327,3,65,
141010,327,3,66,0,
14102327,3,67,0,327,
141033,68,0,327,3,
1410469,0,327,3,70,
141050,327,3,71,0,
14106327,3,72,0,327,
141073,73,0,327,3,
1410874,0,327,3,75,
141090,327,3,76,0,
14110327,3,77,0,327,
141113,78,0,327,3,
1411279,0,327,3,80,
141130,327,3,81,0,
14114327,3,82,0,327,
141153,83,0,327,3,
1411684,0,327,3,85,
141170,327,3,86,0,
14118327,3,87,0,327,
141193,88,0,327,3,
1412089,0,327,3,90,
141210,327,3,95,0,
14122327,3,97,0,327,
141233,98,0,327,3,
1412499,0,327,3,100,
141250,327,3,101,0,
14126327,3,102,0,327,
141273,103,0,327,3,
14128104,0,327,3,105,
141290,327,3,106,0,
14130327,3,107,0,327,
141313,108,0,327,1091,
1413211,1,829,0,330,
141331,-1,3,97,0,
14134327,3,98,0,327,
141353,99,0,327,3,
14136100,0,327,3,101,
141370,327,3,102,0,
14138327,3,103,0,327,
141393,104,0,327,3,
14140105,0,327,3,106,
141410,327,3,107,0,
14142327,3,108,0,327,
141431092,11,1,829,0,
14144330,1,-1,3,102,
141450,327,3,103,0,
14146327,3,104,0,327,
141473,105,0,327,3,
14148106,0,327,3,107,
141490,327,3,108,0,
14150327,1093,11,1,829,
141510,330,1,-1,3,
14152110,0,327,3,111,
141530,327,3,112,0,
14154327,3,113,0,327,
141553,114,0,327,3,
14156115,0,327,3,116,
141570,327,3,117,0,
14158327,3,118,0,327,
141593,119,0,327,3,
14160120,0,327,3,121,
141610,327,3,122,0,
14162327,3,48,0,327,
141633,49,0,327,3,
1416450,0,327,3,51,
141650,327,3,52,0,
14166327,3,53,0,327,
141673,54,0,327,3,
1416855,0,327,3,56,
141690,327,3,57,0,
14170327,3,65,0,327,
141713,66,0,327,3,
1417267,0,327,3,68,
141730,327,3,69,0,
14174327,3,70,0,327,
141753,71,0,327,3,
1417672,0,327,3,73,
141770,327,3,74,0,
14178327,3,75,0,327,
141793,76,0,327,3,
1418077,0,327,3,78,
141810,327,3,79,0,
14182327,3,80,0,327,
141833,81,0,327,3,
1418482,0,327,3,83,
141850,327,3,84,0,
14186327,3,85,0,327,
141873,86,0,327,3,
1418887,0,327,3,88,
141890,327,3,89,0,
14190327,3,90,0,327,
141913,95,0,327,3,
1419297,0,327,3,98,
141930,327,3,99,0,
14194327,3,100,0,327,
141953,101,0,327,3,
14196102,0,327,3,103,
141970,327,3,104,0,
14198327,3,105,0,327,
141993,106,0,327,3,
14200107,0,327,3,108,
142010,327,1094,11,1,
14202829,0,330,1,-1,
142033,106,0,327,3,
14204107,0,327,3,108,
142050,327,1095,11,1,
14206829,0,330,1,-1,
142073,117,0,327,3,
14208118,0,327,3,119,
142090,327,3,120,0,
14210327,3,121,0,327,
142113,122,0,327,3,
1421248,0,327,3,49,
142130,327,3,50,0,
14214327,3,51,0,327,
142153,52,0,327,3,
1421653,0,327,3,54,
142170,327,3,55,0,
14218327,3,56,0,327,
142193,57,0,327,3,
1422065,0,327,3,66,
142210,327,3,67,0,
14222327,3,68,0,327,
142233,69,0,327,3,
1422470,0,327,3,71,
142250,327,3,72,0,
14226327,3,73,0,327,
142273,74,0,327,3,
1422875,0,327,3,76,
142290,327,3,77,0,
14230327,3,78,0,327,
142313,79,0,327,3,
1423280,0,327,3,81,
142330,327,3,82,0,
14234327,3,83,0,327,
142353,84,0,327,3,
1423685,0,327,3,86,
142370,327,3,87,0,
14238327,3,88,0,327,
142393,89,0,327,3,
1424090,0,327,3,95,
142410,327,3,97,0,
14242327,3,98,0,327,
142433,99,0,327,3,
14244100,0,327,3,101,
142450,327,3,102,0,
14246327,3,103,0,327,
142473,104,0,327,3,
14248105,0,327,3,106,
142490,327,3,107,0,
14250327,3,108,0,327,
142511096,11,1,829,0,
14252330,1,-1,3,97,
142530,327,3,98,0,
14254327,3,99,0,327,
142553,100,0,327,3,
14256101,0,327,3,102,
142570,327,3,103,0,
14258327,3,104,0,327,
142593,105,0,327,3,
14260106,0,327,3,107,
142610,327,3,108,0,
14262327,1097,11,1,829,
142630,330,1,-1,3,
14264111,0,327,3,112,
142650,327,3,113,0,
14266327,3,114,0,327,
142673,115,0,327,3,
14268116,0,327,3,117,
142690,327,3,118,0,
14270327,3,119,0,327,
142713,120,0,327,3,
14272121,0,327,3,122,
142730,327,3,48,0,
14274327,3,49,0,327,
142753,50,0,327,3,
1427651,0,327,3,52,
142770,327,3,53,0,
14278327,3,54,0,327,
142793,55,0,327,3,
1428056,0,327,3,57,
142810,327,3,65,0,
14282327,3,66,0,327,
142833,67,0,327,3,
1428468,0,327,3,69,
142850,327,3,70,0,
14286327,3,71,0,327,
142873,72,0,327,3,
1428873,0,327,3,74,
142890,327,3,75,0,
14290327,3,76,0,327,
142913,77,0,327,3,
1429278,0,327,3,79,
142930,327,3,80,0,
14294327,3,81,0,327,
142953,82,0,327,3,
1429683,0,327,3,84,
142970,327,3,85,0,
14298327,3,86,0,327,
142993,87,0,327,3,
1430088,0,327,3,89,
143010,327,3,90,0,
14302327,3,95,0,327,
143033,97,0,327,3,
1430498,0,327,3,99,
143050,327,3,100,0,
14306327,3,101,0,327,
143073,102,0,327,3,
14308103,0,327,3,104,
143090,327,3,105,0,
14310327,3,106,0,327,
143113,107,0,327,3,
14312108,0,327,1098,11,
143131,829,0,330,1,
14314-1,3,118,0,327,
143153,119,0,327,3,
14316120,0,327,3,121,
143170,327,3,122,0,
14318327,3,48,0,327,
143193,49,0,327,3,
1432050,0,327,3,51,
143210,327,3,52,0,
14322327,3,53,0,327,
143233,54,0,327,3,
1432455,0,327,3,56,
143250,327,3,57,0,
14326327,3,65,0,327,
143273,66,0,327,3,
1432867,0,327,3,68,
143290,327,3,69,0,
14330327,3,70,0,327,
143313,71,0,327,3,
1433272,0,327,3,73,
143330,327,3,74,0,
14334327,3,75,0,327,
143353,76,0,327,3,
1433677,0,327,3,78,
143370,327,3,79,0,
14338327,3,80,0,327,
143393,81,0,327,3,
1434082,0,327,3,83,
143410,327,3,84,0,
14342327,3,85,0,327,
143433,86,0,327,3,
1434487,0,327,3,88,
143450,327,3,89,0,
14346327,3,90,0,327,
143473,95,0,327,3,
1434897,0,327,3,98,
143490,327,3,99,0,
14350327,3,100,0,327,
143513,101,0,1099,12,
143521,12022,1100,5,63,
143533,109,0,1101,12,
143541,12050,1102,5,63,
143553,109,0,327,3,
14356110,0,327,3,111,
143570,1103,12,1,12080,
143581104,5,63,3,109,
143590,327,3,110,0,
14360327,3,111,0,327,
143613,112,0,327,3,
14362113,0,327,3,114,
143630,327,3,115,0,
14364327,3,116,0,1105,
1436512,1,12115,1106,5,
1436663,3,109,0,327,
143673,110,0,327,3,
14368111,0,327,3,112,
143690,327,3,113,0,
14370327,3,114,0,327,
143713,115,0,327,3,
14372116,0,327,3,117,
143730,327,3,118,0,
14374327,3,119,0,327,
143753,120,0,327,3,
14376121,0,327,3,122,
143770,327,3,48,0,
14378327,3,49,0,327,
143793,50,0,327,3,
1438051,0,327,3,52,
143810,327,3,53,0,
14382327,3,54,0,327,
143833,55,0,327,3,
1438456,0,327,3,57,
143850,327,3,65,0,
14386327,3,66,0,327,
143873,67,0,327,3,
1438868,0,327,3,69,
143890,327,3,70,0,
14390327,3,71,0,327,
143913,72,0,327,3,
1439273,0,327,3,74,
143930,327,3,75,0,
14394327,3,76,0,327,
143953,77,0,327,3,
1439678,0,327,3,79,
143970,327,3,80,0,
14398327,3,81,0,327,
143993,82,0,327,3,
1440083,0,327,3,84,
144010,327,3,85,0,
14402327,3,86,0,327,
144033,87,0,327,3,
1440488,0,327,3,89,
144050,327,3,90,0,
14406327,3,95,0,327,
144073,97,0,327,3,
1440898,0,327,3,99,
144090,327,3,100,0,
14410327,3,101,0,1107,
1441112,1,12162,1108,5,
1441263,3,109,0,327,
144133,110,0,327,3,
14414111,0,327,3,112,
144150,327,3,113,0,
14416327,3,114,0,327,
144173,115,0,327,3,
14418116,0,327,3,117,
144190,327,3,118,0,
14420327,3,119,0,327,
144213,120,0,327,3,
14422121,0,327,3,122,
144230,327,3,48,0,
14424327,3,49,0,327,
144253,50,0,327,3,
1442651,0,327,3,52,
144270,327,3,53,0,
14428327,3,54,0,327,
144293,55,0,327,3,
1443056,0,327,3,57,
144310,327,3,65,0,
14432327,3,66,0,327,
144333,67,0,327,3,
1443468,0,327,3,69,
144350,327,3,70,0,
14436327,3,71,0,327,
144373,72,0,327,3,
1443873,0,327,3,74,
144390,327,3,75,0,
14440327,3,76,0,327,
144413,77,0,327,3,
1444278,0,327,3,79,
144430,327,3,80,0,
14444327,3,81,0,327,
144453,82,0,327,3,
1444683,0,327,3,84,
144470,327,3,85,0,
14448327,3,86,0,327,
144493,87,0,327,3,
1445088,0,327,3,89,
144510,327,3,90,0,
14452327,3,95,0,1109,
1445312,1,12248,1110,5,
1445463,3,109,0,327,
144553,110,0,327,3,
14456111,0,327,3,112,
144570,327,3,113,0,
14458327,3,114,0,327,
144593,115,0,327,3,
14460116,0,327,3,117,
144610,327,3,118,0,
14462327,3,119,0,327,
144633,120,0,327,3,
14464121,0,327,3,122,
144650,327,3,48,0,
14466327,3,49,0,327,
144673,50,0,327,3,
1446851,0,327,3,52,
144690,327,3,53,0,
14470327,3,54,0,327,
144713,55,0,327,3,
1447256,0,327,3,57,
144730,327,3,65,0,
14474327,3,66,0,327,
144753,67,0,327,3,
1447668,0,327,3,69,
144770,327,3,70,0,
14478327,3,71,0,327,
144793,72,0,327,3,
1448073,0,327,3,74,
144810,327,3,75,0,
14482327,3,76,0,327,
144833,77,0,327,3,
1448478,0,327,3,79,
144850,327,3,80,0,
14486327,3,81,0,327,
144873,82,0,327,3,
1448883,0,327,3,84,
144890,327,3,85,0,
14490327,3,86,0,327,
144913,87,0,327,3,
1449288,0,327,3,89,
144930,327,3,90,0,
14494327,3,95,0,327,
144953,97,0,327,3,
1449698,0,327,3,99,
144970,327,3,100,0,
144981111,12,1,12294,1112,
144995,63,3,109,0,
14500327,3,110,0,327,
145013,111,0,327,3,
14502112,0,327,3,113,
145030,327,3,114,0,
14504327,3,115,0,327,
145053,116,0,327,3,
14506117,0,327,3,118,
145070,327,3,119,0,
14508327,3,120,0,327,
145093,121,0,327,3,
14510122,0,327,3,48,
145110,327,3,49,0,
14512327,3,50,0,327,
145133,51,0,327,3,
1451452,0,327,3,53,
145150,327,3,54,0,
14516327,3,55,0,327,
145173,56,0,327,3,
1451857,0,327,3,65,
145190,327,3,66,0,
14520327,3,67,0,327,
145213,68,0,327,3,
1452269,0,327,3,70,
145230,327,3,71,0,
14524327,3,72,0,327,
145253,73,0,327,3,
1452674,0,327,3,75,
145270,327,3,76,0,
14528327,3,77,0,327,
145293,78,0,327,3,
1453079,0,327,3,80,
145310,327,3,81,0,
14532327,3,82,0,327,
145333,83,0,327,3,
1453484,0,327,3,85,
145350,327,3,86,0,
14536327,3,87,0,327,
145373,88,0,327,3,
1453889,0,327,3,90,
145390,327,3,95,0,
14540327,3,97,0,1113,
1454112,1,12337,1114,5,
1454263,3,109,0,327,
145433,110,0,327,3,
14544111,0,327,3,112,
145450,327,3,113,0,
14546327,3,114,0,327,
145473,115,0,327,3,
14548116,0,1115,12,1,
1454912372,1116,5,63,3,
14550109,0,327,3,110,
145510,327,3,111,0,
14552327,3,112,0,327,
145533,113,0,327,3,
14554114,0,327,3,115,
145550,327,3,116,0,
14556327,3,117,0,327,
145573,118,0,327,3,
14558119,0,327,3,120,
145590,327,3,121,0,
14560327,3,122,0,327,
145613,48,0,327,3,
1456249,0,327,3,50,
145630,327,3,51,0,
14564327,3,52,0,327,
145653,53,0,327,3,
1456654,0,327,3,55,
145670,327,3,56,0,
14568327,3,57,0,327,
145693,65,0,327,3,
1457066,0,327,3,67,
145710,327,3,68,0,
14572327,3,69,0,327,
145733,70,0,327,3,
1457471,0,327,3,72,
145750,327,3,73,0,
14576327,3,74,0,327,
145773,75,0,327,3,
1457876,0,327,3,77,
145790,327,3,78,0,
14580327,3,79,0,327,
145813,80,0,327,3,
1458281,0,327,3,82,
145830,327,3,83,0,
14584327,3,84,0,327,
145853,85,0,327,3,
1458686,0,327,3,87,
145870,327,3,88,0,
14588327,3,89,0,327,
145893,90,0,327,3,
1459095,0,327,3,97,
145910,1117,12,1,12415,
145921118,5,63,3,109,
145930,327,3,110,0,
14594327,3,111,0,327,
145953,112,0,327,3,
14596113,0,327,3,114,
145970,327,3,115,0,
14598327,3,116,0,327,
145993,117,0,327,3,
14600118,0,327,3,119,
146010,327,3,120,0,
14602327,3,121,0,327,
146033,122,0,327,3,
1460448,0,327,3,49,
146050,327,3,50,0,
14606327,3,51,0,327,
146073,52,0,327,3,
1460853,0,327,3,54,
146090,327,3,55,0,
14610327,3,56,0,327,
146113,57,0,327,3,
1461265,0,327,3,66,
146130,327,3,67,0,
14614327,3,68,0,327,
146153,69,0,327,3,
1461670,0,327,3,71,
146170,327,3,72,0,
14618327,3,73,0,327,
146193,74,0,327,3,
1462075,0,327,3,76,
146210,327,3,77,0,
14622327,3,78,0,327,
146233,79,0,327,3,
1462480,0,327,3,81,
146250,327,3,82,0,
14626327,3,83,0,327,
146273,84,0,327,3,
1462885,0,327,3,86,
146290,327,3,87,0,
14630327,3,88,0,327,
146313,89,0,327,3,
1463290,0,327,3,95,
146330,327,3,97,0,
14634327,3,98,0,327,
146353,99,0,327,3,
14636100,0,327,3,101,
146370,327,3,102,0,
14638327,3,103,0,327,
146393,104,0,327,3,
14640105,0,327,3,106,
146410,327,3,107,0,
14642327,3,108,0,327,
146431119,11,1,705,0,
146441120,4,34,82,0,
1464569,0,77,0,79,
146460,84,0,69,0,
1464795,0,68,0,65,
146480,84,0,65,0,
1464995,0,69,0,86,
146500,69,0,78,0,
1465184,0,1,-1,3,
1465298,0,327,3,99,
146530,327,3,100,0,
14654327,3,101,0,327,
146553,102,0,327,3,
14656103,0,327,3,104,
146570,327,3,105,0,
14658327,3,106,0,327,
146593,107,0,327,3,
14660108,0,327,1121,11,
146611,829,0,330,1,
14662-1,3,117,0,327,
146633,118,0,327,3,
14664119,0,327,3,120,
146650,327,3,121,0,
14666327,3,122,0,327,
146673,48,0,327,3,
1466849,0,327,3,50,
146690,327,3,51,0,
14670327,3,52,0,327,
146713,53,0,327,3,
1467254,0,327,3,55,
146730,327,3,56,0,
14674327,3,57,0,327,
146753,65,0,327,3,
1467666,0,327,3,67,
146770,327,3,68,0,
14678327,3,69,0,327,
146793,70,0,327,3,
1468071,0,327,3,72,
146810,327,3,73,0,
14682327,3,74,0,327,
146833,75,0,327,3,
1468476,0,327,3,77,
146850,327,3,78,0,
14686327,3,79,0,327,
146873,80,0,327,3,
1468881,0,327,3,82,
146890,327,3,83,0,
14690327,3,84,0,327,
146913,85,0,327,3,
1469286,0,327,3,87,
146930,327,3,88,0,
14694327,3,89,0,327,
146953,90,0,327,3,
1469695,0,327,3,97,
146970,327,3,98,0,
14698327,3,99,0,327,
146993,100,0,327,3,
14700101,0,327,3,102,
147010,327,3,103,0,
14702327,3,104,0,327,
147033,105,0,327,3,
14704106,0,327,3,107,
147050,327,3,108,0,
14706327,1122,11,1,829,
147070,330,1,-1,3,
1470898,0,327,3,99,
147090,327,3,100,0,
14710327,3,101,0,327,
147113,102,0,327,3,
14712103,0,327,3,104,
147130,327,3,105,0,
14714327,3,106,0,327,
147153,107,0,327,3,
14716108,0,327,1123,11,
147171,829,0,330,1,
14718-1,3,101,0,327,
147193,102,0,327,3,
14720103,0,327,3,104,
147210,327,3,105,0,
14722327,3,106,0,327,
147233,107,0,327,3,
14724108,0,327,1124,11,
147251,829,0,330,1,
14726-1,3,97,0,327,
147273,98,0,327,3,
1472899,0,327,3,100,
147290,327,3,101,0,
14730327,3,102,0,327,
147313,103,0,327,3,
14732104,0,327,3,105,
147330,327,3,106,0,
14734327,3,107,0,327,
147353,108,0,327,1125,
1473611,1,829,0,330,
147371,-1,3,102,0,
14738327,3,103,0,327,
147393,104,0,327,3,
14740105,0,327,3,106,
147410,327,3,107,0,
14742327,3,108,0,327,
147431126,11,1,829,0,
14744330,1,-1,3,117,
147450,327,3,118,0,
14746327,3,119,0,327,
147473,120,0,327,3,
14748121,0,327,3,122,
147490,327,3,48,0,
14750327,3,49,0,327,
147513,50,0,327,3,
1475251,0,327,3,52,
147530,327,3,53,0,
14754327,3,54,0,327,
147553,55,0,327,3,
1475656,0,327,3,57,
147570,327,3,65,0,
14758327,3,66,0,327,
147593,67,0,327,3,
1476068,0,327,3,69,
147610,327,3,70,0,
14762327,3,71,0,327,
147633,72,0,327,3,
1476473,0,327,3,74,
147650,327,3,75,0,
14766327,3,76,0,327,
147673,77,0,327,3,
1476878,0,327,3,79,
147690,327,3,80,0,
14770327,3,81,0,327,
147713,82,0,327,3,
1477283,0,327,3,84,
147730,327,3,85,0,
14774327,3,86,0,327,
147753,87,0,327,3,
1477688,0,327,3,89,
147770,327,3,90,0,
14778327,3,95,0,327,
147793,97,0,327,3,
1478098,0,327,3,99,
147810,327,3,100,0,
14782327,3,101,0,327,
147833,102,0,327,3,
14784103,0,327,3,104,
147850,327,3,105,0,
14786327,3,106,0,327,
147873,107,0,327,3,
14788108,0,327,1127,11,
147891,829,0,330,1,
14790-1,3,112,0,327,
147913,113,0,327,3,
14792114,0,327,3,115,
147930,327,3,116,0,
14794327,3,117,0,327,
147953,118,0,327,3,
14796119,0,327,3,120,
147970,327,3,121,0,
14798327,3,122,0,327,
147993,48,0,327,3,
1480049,0,327,3,50,
148010,327,3,51,0,
14802327,3,52,0,327,
148033,53,0,327,3,
1480454,0,327,3,55,
148050,327,3,56,0,
14806327,3,57,0,327,
148073,65,0,327,3,
1480866,0,327,3,67,
148090,327,3,68,0,
14810327,3,69,0,327,
148113,70,0,327,3,
1481271,0,327,3,72,
148130,327,3,73,0,
14814327,3,74,0,327,
148153,75,0,327,3,
1481676,0,327,3,77,
148170,327,3,78,0,
14818327,3,79,0,327,
148193,80,0,327,3,
1482081,0,327,3,82,
148210,327,3,83,0,
14822327,3,84,0,327,
148233,85,0,327,3,
1482486,0,327,3,87,
148250,327,3,88,0,
14826327,3,89,0,327,
148273,90,0,327,3,
1482895,0,327,3,97,
148290,327,3,98,0,
14830327,3,99,0,327,
148313,100,0,327,3,
14832101,0,327,3,102,
148330,327,3,103,0,
14834327,3,104,0,327,
148353,105,0,327,3,
14836106,0,327,3,107,
148370,327,3,108,0,
14838327,1128,11,1,829,
148390,330,1,-1,3,
14840110,0,327,3,111,
148410,327,3,112,0,
14842327,3,113,0,327,
148433,114,0,327,3,
14844115,0,327,3,116,
148450,1129,12,1,13137,
148461130,5,63,3,109,
148470,327,3,110,0,
14848327,3,111,0,327,
148493,112,0,327,3,
14850113,0,327,3,114,
148510,327,3,115,0,
14852327,3,116,0,327,
148533,117,0,1131,12,
148541,13173,1132,5,63,
148553,109,0,327,3,
14856110,0,327,3,111,
148570,327,3,112,0,
14858327,3,113,0,327,
148593,114,0,1133,12,
148601,13206,1134,5,63,
148613,109,0,327,3,
14862110,0,1135,12,1,
1486313235,1136,5,63,3,
14864109,0,327,3,110,
148650,327,3,111,0,
14866327,3,112,0,327,
148673,113,0,327,3,
14868114,0,327,3,115,
148690,327,3,116,0,
14870327,3,117,0,327,
148713,118,0,327,3,
14872119,0,327,3,120,
148730,327,3,121,0,
14874327,3,122,0,327,
148753,48,0,327,3,
1487649,0,327,3,50,
148770,327,3,51,0,
14878327,3,52,0,327,
148793,53,0,327,3,
1488054,0,327,3,55,
148810,327,3,56,0,
14882327,3,57,0,327,
148833,65,0,327,3,
1488466,0,327,3,67,
148850,327,3,68,0,
14886327,3,69,0,327,
148873,70,0,327,3,
1488871,0,327,3,72,
148890,327,3,73,0,
14890327,3,74,0,327,
148913,75,0,327,3,
1489276,0,327,3,77,
148930,327,3,78,0,
14894327,3,79,0,327,
148953,80,0,327,3,
1489681,0,327,3,82,
148970,327,3,83,0,
14898327,3,84,0,327,
148993,85,0,327,3,
1490086,0,327,3,87,
149010,327,3,88,0,
14902327,3,89,0,327,
149033,90,0,327,3,
1490495,0,327,3,97,
149050,327,3,98,0,
14906327,3,99,0,327,
149073,100,0,327,3,
14908101,0,327,3,102,
149090,327,3,103,0,
14910327,3,104,0,327,
149113,105,0,327,3,
14912106,0,327,3,107,
149130,327,3,108,0,
14914327,1137,11,1,273,
149150,1138,4,12,82,
149160,69,0,84,0,
1491785,0,82,0,78,
149180,1,-1,3,111,
149190,327,3,112,0,
14920327,3,113,0,327,
149213,114,0,327,3,
14922115,0,327,3,116,
149230,327,3,117,0,
14924327,3,118,0,327,
149253,119,0,327,3,
14926120,0,327,3,121,
149270,327,3,122,0,
14928327,3,48,0,327,
149293,49,0,327,3,
1493050,0,327,3,51,
149310,327,3,52,0,
14932327,3,53,0,327,
149333,54,0,327,3,
1493455,0,327,3,56,
149350,327,3,57,0,
14936327,3,65,0,327,
149373,66,0,327,3,
1493867,0,327,3,68,
149390,327,3,69,0,
14940327,3,70,0,327,
149413,71,0,327,3,
1494272,0,327,3,73,
149430,327,3,74,0,
14944327,3,75,0,327,
149453,76,0,327,3,
1494677,0,327,3,78,
149470,327,3,79,0,
14948327,3,80,0,327,
149493,81,0,327,3,
1495082,0,327,3,83,
149510,327,3,84,0,
14952327,3,85,0,327,
149533,86,0,327,3,
1495487,0,327,3,88,
149550,327,3,89,0,
14956327,3,90,0,327,
149573,95,0,327,3,
1495897,0,327,3,98,
149590,327,3,99,0,
14960327,3,100,0,327,
149613,101,0,327,3,
14962102,0,327,3,103,
149630,327,3,104,0,
14964327,3,105,0,327,
149653,106,0,327,3,
14966107,0,327,3,108,
149670,327,1139,11,1,
14968829,0,330,1,-1,
149693,115,0,327,3,
14970116,0,327,3,117,
149710,327,3,118,0,
14972327,3,119,0,327,
149733,120,0,327,3,
14974121,0,327,3,122,
149750,327,3,48,0,
14976327,3,49,0,327,
149773,50,0,327,3,
1497851,0,327,3,52,
149790,327,3,53,0,
14980327,3,54,0,327,
149813,55,0,327,3,
1498256,0,327,3,57,
149830,327,3,65,0,
14984327,3,66,0,327,
149853,67,0,327,3,
1498668,0,327,3,69,
149870,327,3,70,0,
14988327,3,71,0,327,
149893,72,0,327,3,
1499073,0,327,3,74,
149910,327,3,75,0,
14992327,3,76,0,327,
149933,77,0,327,3,
1499478,0,327,3,79,
149950,327,3,80,0,
14996327,3,81,0,327,
149973,82,0,327,3,
1499883,0,327,3,84,
149990,327,3,85,0,
15000327,3,86,0,327,
150013,87,0,327,3,
1500288,0,327,3,89,
150030,327,3,90,0,
15004327,3,95,0,327,
150053,97,0,327,3,
1500698,0,327,3,99,
150070,327,3,100,0,
15008327,3,101,0,327,
150093,102,0,327,3,
15010103,0,327,3,104,
150110,327,3,105,0,
15012327,3,106,0,327,
150133,107,0,327,3,
15014108,0,327,1140,11,
150151,829,0,330,1,
15016-1,3,118,0,327,
150173,119,0,327,3,
15018120,0,327,3,121,
150190,327,3,122,0,
15020327,3,48,0,327,
150213,49,0,327,3,
1502250,0,327,3,51,
150230,327,3,52,0,
15024327,3,53,0,327,
150253,54,0,327,3,
1502655,0,327,3,56,
150270,327,3,57,0,
15028327,3,65,0,327,
150293,66,0,327,3,
1503067,0,327,3,68,
150310,327,3,69,0,
15032327,3,70,0,327,
150333,71,0,327,3,
1503472,0,327,3,73,
150350,327,3,74,0,
15036327,3,75,0,327,
150373,76,0,327,3,
1503877,0,327,3,78,
150390,327,3,79,0,
15040327,3,80,0,327,
150413,81,0,327,3,
1504282,0,327,3,83,
150430,327,3,84,0,
15044327,3,85,0,327,
150453,86,0,327,3,
1504687,0,327,3,88,
150470,327,3,89,0,
15048327,3,90,0,327,
150493,95,0,327,3,
1505097,0,327,3,98,
150510,327,3,99,0,
15052327,3,100,0,327,
150533,101,0,327,3,
15054102,0,327,3,103,
150550,327,3,104,0,
15056327,3,105,0,327,
150573,106,0,327,3,
15058107,0,327,3,108,
150590,327,1141,11,1,
15060829,0,330,1,-1,
150613,117,0,327,3,
15062118,0,327,3,119,
150630,327,3,120,0,
15064327,3,121,0,327,
150653,122,0,327,3,
1506648,0,327,3,49,
150670,327,3,50,0,
15068327,3,51,0,327,
150693,52,0,327,3,
1507053,0,327,3,54,
150710,327,3,55,0,
15072327,3,56,0,327,
150733,57,0,327,3,
1507465,0,327,3,66,
150750,327,3,67,0,
15076327,3,68,0,327,
150773,69,0,327,3,
1507870,0,327,3,71,
150790,327,3,72,0,
15080327,3,73,0,327,
150813,74,0,327,3,
1508275,0,327,3,76,
150830,327,3,77,0,
15084327,3,78,0,327,
150853,79,0,327,3,
1508680,0,327,3,81,
150870,327,3,82,0,
15088327,3,83,0,327,
150893,84,0,327,3,
1509085,0,327,3,86,
150910,327,3,87,0,
15092327,3,88,0,327,
150933,89,0,327,3,
1509490,0,327,3,95,
150950,327,3,97,0,
15096327,3,98,0,327,
150973,99,0,327,3,
15098100,0,327,3,101,
150990,327,3,102,0,
15100327,3,103,0,327,
151013,104,0,327,3,
15102105,0,327,3,106,
151030,327,3,107,0,
15104327,3,108,0,327,
151051142,11,1,829,0,
15106330,1,-1,3,102,
151070,327,3,103,0,
15108327,3,104,0,327,
151093,105,0,327,3,
15110106,0,327,3,107,
151110,327,3,108,0,
15112327,1143,11,1,829,
151130,330,1,-1,3,
15114115,0,1144,12,1,
1511513776,1145,5,63,3,
15116109,0,327,3,110,
151170,327,3,111,0,
15118327,3,112,0,327,
151193,113,0,327,3,
15120114,0,327,3,115,
151210,327,3,116,0,
151221146,12,1,13811,1147,
151235,63,3,109,0,
15124327,3,110,0,327,
151253,111,0,327,3,
15126112,0,327,3,113,
151270,327,3,114,0,
151281148,12,1,13844,1149,
151295,63,3,109,0,
15130327,3,110,0,327,
151313,111,0,327,3,
15132112,0,327,3,113,
151330,327,3,114,0,
15134327,3,115,0,327,
151353,116,0,327,3,
15136117,0,327,3,118,
151370,327,3,119,0,
15138327,3,120,0,327,
151393,121,0,327,3,
15140122,0,327,3,48,
151410,327,3,49,0,
15142327,3,50,0,327,
151433,51,0,327,3,
1514452,0,327,3,53,
151450,327,3,54,0,
15146327,3,55,0,327,
151473,56,0,327,3,
1514857,0,327,3,65,
151490,327,3,66,0,
15150327,3,67,0,327,
151513,68,0,327,3,
1515269,0,327,3,70,
151530,327,3,71,0,
15154327,3,72,0,327,
151553,73,0,327,3,
1515674,0,327,3,75,
151570,327,3,76,0,
15158327,3,77,0,327,
151593,78,0,327,3,
1516079,0,327,3,80,
151610,327,3,81,0,
15162327,3,82,0,327,
151633,83,0,327,3,
1516484,0,327,3,85,
151650,327,3,86,0,
15166327,3,87,0,327,
151673,88,0,327,3,
1516889,0,327,3,90,
151690,327,3,95,0,
15170327,3,97,0,327,
151713,98,0,327,3,
1517299,0,327,3,100,
151730,327,3,101,0,
15174327,3,102,0,327,
151753,103,0,327,3,
15176104,0,327,3,105,
151770,1150,12,1,13895,
151781151,5,63,3,109,
151790,327,3,110,0,
151801152,12,1,13924,1153,
151815,63,3,109,0,
15182327,3,110,0,327,
151833,111,0,327,3,
15184112,0,327,3,113,
151850,327,3,114,0,
15186327,3,115,0,327,
151873,116,0,327,3,
15188117,0,327,3,118,
151890,327,3,119,0,
15190327,3,120,0,327,
151913,121,0,327,3,
15192122,0,327,3,48,
151930,327,3,49,0,
15194327,3,50,0,327,
151953,51,0,327,3,
1519652,0,327,3,53,
151970,327,3,54,0,
15198327,3,55,0,327,
151993,56,0,327,3,
1520057,0,327,3,65,
152010,327,3,66,0,
15202327,3,67,0,327,
152033,68,0,327,3,
1520469,0,327,3,70,
152050,327,3,71,0,
15206327,3,72,0,327,
152073,73,0,327,3,
1520874,0,327,3,75,
152090,327,3,76,0,
15210327,3,77,0,327,
152113,78,0,327,3,
1521279,0,327,3,80,
152130,327,3,81,0,
15214327,3,82,0,327,
152153,83,0,327,3,
1521684,0,327,3,85,
152170,327,3,86,0,
15218327,3,87,0,327,
152193,88,0,327,3,
1522089,0,327,3,90,
152210,327,3,95,0,
15222327,3,97,0,327,
152233,98,0,327,3,
1522499,0,327,3,100,
152250,327,3,101,0,
15226327,3,102,0,327,
152273,103,0,1154,12,
152281,13973,1155,5,63,
152293,109,0,327,3,
15230110,0,327,3,111,
152310,327,3,112,0,
15232327,3,113,0,327,
152333,114,0,327,3,
15234115,0,327,3,116,
152350,327,3,117,0,
15236327,3,118,0,327,
152373,119,0,327,3,
15238120,0,327,3,121,
152390,327,3,122,0,
15240327,3,48,0,327,
152413,49,0,327,3,
1524250,0,327,3,51,
152430,327,3,52,0,
15244327,3,53,0,327,
152453,54,0,327,3,
1524655,0,327,3,56,
152470,327,3,57,0,
15248327,3,65,0,327,
152493,66,0,327,3,
1525067,0,327,3,68,
152510,327,3,69,0,
15252327,3,70,0,327,
152533,71,0,327,3,
1525472,0,327,3,73,
152550,327,3,74,0,
15256327,3,75,0,327,
152573,76,0,327,3,
1525877,0,327,3,78,
152590,327,3,79,0,
15260327,3,80,0,327,
152613,81,0,327,3,
1526282,0,327,3,83,
152630,327,3,84,0,
15264327,3,85,0,327,
152653,86,0,327,3,
1526687,0,327,3,88,
152670,327,3,89,0,
15268327,3,90,0,327,
152693,95,0,327,3,
1527097,0,327,3,98,
152710,327,3,99,0,
15272327,3,100,0,327,
152733,101,0,327,3,
15274102,0,327,3,103,
152750,327,3,104,0,
15276327,3,105,0,327,
152773,106,0,327,3,
15278107,0,327,3,108,
152790,327,1156,11,1,
15280303,0,1157,4,22,
1528183,0,84,0,82,
152820,73,0,78,0,
1528371,0,95,0,84,
152840,89,0,80,0,
1528569,0,1,-1,3,
15286104,0,327,3,105,
152870,327,3,106,0,
15288327,3,107,0,327,
152893,108,0,327,1158,
1529011,1,829,0,330,
152911,-1,3,111,0,
15292327,3,112,0,327,
152933,113,0,327,3,
15294114,0,327,3,115,
152950,327,3,116,0,
15296327,3,117,0,327,
152973,118,0,327,3,
15298119,0,327,3,120,
152990,327,3,121,0,
15300327,3,122,0,327,
153013,48,0,327,3,
1530249,0,327,3,50,
153030,327,3,51,0,
15304327,3,52,0,327,
153053,53,0,327,3,
1530654,0,327,3,55,
153070,327,3,56,0,
15308327,3,57,0,327,
153093,65,0,327,3,
1531066,0,327,3,67,
153110,327,3,68,0,
15312327,3,69,0,327,
153133,70,0,327,3,
1531471,0,327,3,72,
153150,327,3,73,0,
15316327,3,74,0,327,
153173,75,0,327,3,
1531876,0,327,3,77,
153190,327,3,78,0,
15320327,3,79,0,327,
153213,80,0,327,3,
1532281,0,327,3,82,
153230,327,3,83,0,
15324327,3,84,0,327,
153253,85,0,327,3,
1532686,0,327,3,87,
153270,327,3,88,0,
15328327,3,89,0,327,
153293,90,0,327,3,
1533095,0,327,3,97,
153310,327,3,98,0,
15332327,3,99,0,327,
153333,100,0,327,3,
15334101,0,327,3,102,
153350,327,3,103,0,
15336327,3,104,0,327,
153373,105,0,327,3,
15338106,0,327,3,107,
153390,327,3,108,0,
15340327,1159,11,1,829,
153410,330,1,-1,3,
15342106,0,327,3,107,
153430,327,3,108,0,
15344327,1160,11,1,829,
153450,330,1,-1,3,
15346115,0,327,3,116,
153470,327,3,117,0,
15348327,3,118,0,327,
153493,119,0,327,3,
15350120,0,327,3,121,
153510,327,3,122,0,
15352327,3,48,0,327,
153533,49,0,327,3,
1535450,0,327,3,51,
153550,327,3,52,0,
15356327,3,53,0,327,
153573,54,0,327,3,
1535855,0,327,3,56,
153590,327,3,57,0,
15360327,3,65,0,327,
153613,66,0,327,3,
1536267,0,327,3,68,
153630,327,3,69,0,
15364327,3,70,0,327,
153653,71,0,327,3,
1536672,0,327,3,73,
153670,327,3,74,0,
15368327,3,75,0,327,
153693,76,0,327,3,
1537077,0,327,3,78,
153710,327,3,79,0,
15372327,3,80,0,327,
153733,81,0,327,3,
1537482,0,327,3,83,
153750,327,3,84,0,
15376327,3,85,0,327,
153773,86,0,327,3,
1537887,0,327,3,88,
153790,327,3,89,0,
15380327,3,90,0,327,
153813,95,0,327,3,
1538297,0,1161,12,1,
1538314334,1162,5,63,3,
15384109,0,327,3,110,
153850,327,3,111,0,
15386327,3,112,0,327,
153873,113,0,327,3,
15388114,0,327,3,115,
153890,327,3,116,0,
153901163,12,1,14369,1164,
153915,63,3,109,0,
15392327,3,110,0,327,
153933,111,0,327,3,
15394112,0,327,3,113,
153950,327,3,114,0,
15396327,3,115,0,327,
153973,116,0,327,3,
15398117,0,327,3,118,
153990,327,3,119,0,
15400327,3,120,0,327,
154013,121,0,327,3,
15402122,0,327,3,48,
154030,327,3,49,0,
15404327,3,50,0,327,
154053,51,0,327,3,
1540652,0,327,3,53,
154070,327,3,54,0,
15408327,3,55,0,327,
154093,56,0,327,3,
1541057,0,327,3,65,
154110,327,3,66,0,
15412327,3,67,0,327,
154133,68,0,327,3,
1541469,0,327,3,70,
154150,327,3,71,0,
15416327,3,72,0,327,
154173,73,0,327,3,
1541874,0,327,3,75,
154190,327,3,76,0,
15420327,3,77,0,327,
154213,78,0,327,3,
1542279,0,327,3,80,
154230,327,3,81,0,
15424327,3,82,0,327,
154253,83,0,327,3,
1542684,0,327,3,85,
154270,327,3,86,0,
15428327,3,87,0,327,
154293,88,0,327,3,
1543089,0,327,3,90,
154310,327,3,95,0,
15432327,3,97,0,327,
154333,98,0,327,3,
1543499,0,327,3,100,
154350,327,3,101,0,
154361165,12,1,14416,1166,
154375,63,3,109,0,
15438327,3,110,0,327,
154393,111,0,327,3,
15440112,0,327,3,113,
154410,327,3,114,0,
15442327,3,115,0,327,
154433,116,0,327,3,
15444117,0,327,3,118,
154450,327,3,119,0,
15446327,3,120,0,327,
154473,121,0,327,3,
15448122,0,327,3,48,
154490,327,3,49,0,
15450327,3,50,0,327,
154513,51,0,327,3,
1545252,0,327,3,53,
154530,327,3,54,0,
15454327,3,55,0,327,
154553,56,0,327,3,
1545657,0,327,3,65,
154570,327,3,66,0,
15458327,3,67,0,327,
154593,68,0,327,3,
1546069,0,327,3,70,
154610,327,3,71,0,
15462327,3,72,0,327,
154633,73,0,327,3,
1546474,0,327,3,75,
154650,327,3,76,0,
15466327,3,77,0,327,
154673,78,0,327,3,
1546879,0,327,3,80,
154690,327,3,81,0,
15470327,3,82,0,327,
154713,83,0,327,3,
1547284,0,327,3,85,
154730,327,3,86,0,
15474327,3,87,0,327,
154753,88,0,327,3,
1547689,0,327,3,90,
154770,327,3,95,0,
154781167,12,1,14502,1168,
154795,63,3,109,0,
15480327,3,110,0,327,
154813,111,0,327,3,
15482112,0,327,3,113,
154830,327,3,114,0,
15484327,3,115,0,327,
154853,116,0,327,3,
15486117,0,327,3,118,
154870,327,3,119,0,
15488327,3,120,0,327,
154893,121,0,327,3,
15490122,0,327,3,48,
154910,327,3,49,0,
15492327,3,50,0,327,
154933,51,0,327,3,
1549452,0,327,3,53,
154950,327,3,54,0,
15496327,3,55,0,327,
154973,56,0,327,3,
1549857,0,327,3,65,
154990,327,3,66,0,
15500327,3,67,0,327,
155013,68,0,327,3,
1550269,0,327,3,70,
155030,327,3,71,0,
15504327,3,72,0,327,
155053,73,0,327,3,
1550674,0,327,3,75,
155070,327,3,76,0,
15508327,3,77,0,327,
155093,78,0,327,3,
1551079,0,327,3,80,
155110,327,3,81,0,
15512327,3,82,0,327,
155133,83,0,327,3,
1551484,0,327,3,85,
155150,327,3,86,0,
15516327,3,87,0,327,
155173,88,0,327,3,
1551889,0,327,3,90,
155190,327,3,95,0,
15520327,3,97,0,327,
155213,98,0,327,3,
1552299,0,327,3,100,
155230,327,3,101,0,
155241169,12,1,14549,1170,
155255,63,3,109,0,
15526327,3,110,0,1171,
1552712,1,14578,1172,5,
1552863,3,109,0,327,
155293,110,0,327,3,
15530111,0,327,3,112,
155310,327,3,113,0,
15532327,3,114,0,327,
155333,115,0,327,3,
15534116,0,1173,12,1,
1553514613,1174,5,63,3,
15536109,0,327,3,110,
155370,327,3,111,0,
15538327,3,112,0,327,
155393,113,0,327,3,
15540114,0,1175,12,1,
1554114646,1176,5,63,3,
15542109,0,327,3,110,
155430,327,3,111,0,
15544327,3,112,0,327,
155453,113,0,327,3,
15546114,0,327,3,115,
155470,327,3,116,0,
15548327,3,117,0,327,
155493,118,0,327,3,
15550119,0,327,3,120,
155510,327,3,121,0,
155521177,12,1,14686,1178,
155535,63,3,109,0,
15554327,3,110,0,327,
155553,111,0,327,3,
15556112,0,327,3,113,
155570,327,3,114,0,
15558327,3,115,0,327,
155593,116,0,327,3,
15560117,0,327,3,118,
155610,327,3,119,0,
15562327,3,120,0,327,
155633,121,0,327,3,
15564122,0,327,3,48,
155650,327,3,49,0,
15566327,3,50,0,327,
155673,51,0,327,3,
1556852,0,327,3,53,
155690,327,3,54,0,
15570327,3,55,0,327,
155713,56,0,327,3,
1557257,0,327,3,65,
155730,327,3,66,0,
15574327,3,67,0,327,
155753,68,0,327,3,
1557669,0,327,3,70,
155770,327,3,71,0,
15578327,3,72,0,327,
155793,73,0,327,3,
1558074,0,327,3,75,
155810,327,3,76,0,
15582327,3,77,0,327,
155833,78,0,327,3,
1558479,0,327,3,80,
155850,327,3,81,0,
15586327,3,82,0,327,
155873,83,0,327,3,
1558884,0,327,3,85,
155890,327,3,86,0,
15590327,3,87,0,327,
155913,88,0,327,3,
1559289,0,327,3,90,
155930,327,3,95,0,
15594327,3,97,0,327,
155953,98,0,327,3,
1559699,0,327,3,100,
155970,327,3,101,0,
15598327,3,102,0,327,
155993,103,0,327,3,
15600104,0,327,3,105,
156010,327,3,106,0,
15602327,3,107,0,327,
156033,108,0,327,1179,
1560411,1,754,0,1180,
156054,34,83,0,84,
156060,65,0,84,0,
1560769,0,95,0,69,
156080,78,0,84,0,
1560982,0,89,0,95,
156100,69,0,86,0,
1561169,0,78,0,84,
156120,1,-1,3,122,
156130,327,3,48,0,
15614327,3,49,0,327,
156153,50,0,327,3,
1561651,0,327,3,52,
156170,327,3,53,0,
15618327,3,54,0,327,
156193,55,0,327,3,
1562056,0,327,3,57,
156210,327,3,65,0,
15622327,3,66,0,327,
156233,67,0,327,3,
1562468,0,327,3,69,
156250,327,3,70,0,
15626327,3,71,0,327,
156273,72,0,327,3,
1562873,0,327,3,74,
156290,327,3,75,0,
15630327,3,76,0,327,
156313,77,0,327,3,
1563278,0,327,3,79,
156330,327,3,80,0,
15634327,3,81,0,327,
156353,82,0,327,3,
1563683,0,327,3,84,
156370,327,3,85,0,
15638327,3,86,0,327,
156393,87,0,327,3,
1564088,0,327,3,89,
156410,327,3,90,0,
15642327,3,95,0,327,
156433,97,0,327,3,
1564498,0,327,3,99,
156450,327,3,100,0,
15646327,3,101,0,327,
156473,102,0,327,3,
15648103,0,327,3,104,
156490,327,3,105,0,
15650327,3,106,0,327,
156513,107,0,327,3,
15652108,0,327,1181,11,
156531,829,0,330,1,
15654-1,3,115,0,327,
156553,116,0,327,3,
15656117,0,327,3,118,
156570,327,3,119,0,
15658327,3,120,0,327,
156593,121,0,327,3,
15660122,0,327,3,48,
156610,327,3,49,0,
15662327,3,50,0,327,
156633,51,0,327,3,
1566452,0,327,3,53,
156650,327,3,54,0,
15666327,3,55,0,327,
156673,56,0,327,3,
1566857,0,327,3,65,
156690,327,3,66,0,
15670327,3,67,0,327,
156713,68,0,327,3,
1567269,0,327,3,70,
156730,327,3,71,0,
15674327,3,72,0,327,
156753,73,0,327,3,
1567674,0,327,3,75,
156770,327,3,76,0,
15678327,3,77,0,327,
156793,78,0,327,3,
1568079,0,327,3,80,
156810,327,3,81,0,
15682327,3,82,0,327,
156833,83,0,327,3,
1568484,0,327,3,85,
156850,327,3,86,0,
15686327,3,87,0,327,
156873,88,0,327,3,
1568889,0,327,3,90,
156890,327,3,95,0,
15690327,3,97,0,327,
156913,98,0,327,3,
1569299,0,327,3,100,
156930,327,3,101,0,
15694327,3,102,0,327,
156953,103,0,327,3,
15696104,0,327,3,105,
156970,327,3,106,0,
15698327,3,107,0,327,
156993,108,0,327,1182,
1570011,1,829,0,330,
157011,-1,3,117,0,
15702327,3,118,0,327,
157033,119,0,327,3,
15704120,0,327,3,121,
157050,327,3,122,0,
15706327,3,48,0,327,
157073,49,0,327,3,
1570850,0,327,3,51,
157090,327,3,52,0,
15710327,3,53,0,327,
157113,54,0,327,3,
1571255,0,327,3,56,
157130,327,3,57,0,
15714327,3,65,0,327,
157153,66,0,327,3,
1571667,0,327,3,68,
157170,327,3,69,0,
15718327,3,70,0,327,
157193,71,0,327,3,
1572072,0,327,3,73,
157210,327,3,74,0,
15722327,3,75,0,327,
157233,76,0,327,3,
1572477,0,327,3,78,
157250,327,3,79,0,
15726327,3,80,0,327,
157273,81,0,327,3,
1572882,0,327,3,83,
157290,327,3,84,0,
15730327,3,85,0,327,
157313,86,0,327,3,
1573287,0,327,3,88,
157330,327,3,89,0,
15734327,3,90,0,327,
157353,95,0,327,3,
1573697,0,327,3,98,
157370,327,3,99,0,
15738327,3,100,0,327,
157393,101,0,327,3,
15740102,0,327,3,103,
157410,327,3,104,0,
15742327,3,105,0,327,
157433,106,0,327,3,
15744107,0,327,3,108,
157450,327,1183,11,1,
15746829,0,330,1,-1,
157473,111,0,327,3,
15748112,0,327,3,113,
157490,327,3,114,0,
15750327,3,115,0,327,
157513,116,0,327,3,
15752117,0,327,3,118,
157530,327,3,119,0,
15754327,3,120,0,1184,
1575512,1,15068,1185,5,
1575663,3,109,0,327,
157573,110,0,327,3,
15758111,0,327,3,112,
157590,327,3,113,0,
15760327,3,114,0,327,
157613,115,0,327,3,
15762116,0,327,3,117,
157630,327,3,118,0,
15764327,3,119,0,327,
157653,120,0,327,3,
15766121,0,327,3,122,
157670,327,3,48,0,
15768327,3,49,0,327,
157693,50,0,327,3,
1577051,0,327,3,52,
157710,327,3,53,0,
15772327,3,54,0,327,
157733,55,0,327,3,
1577456,0,327,3,57,
157750,327,3,65,0,
15776327,3,66,0,327,
157773,67,0,327,3,
1577868,0,327,3,69,
157790,327,3,70,0,
15780327,3,71,0,327,
157813,72,0,327,3,
1578273,0,327,3,74,
157830,327,3,75,0,
15784327,3,76,0,327,
157853,77,0,327,3,
1578678,0,327,3,79,
157870,327,3,80,0,
15788327,3,81,0,327,
157893,82,0,327,3,
1579083,0,327,3,84,
157910,327,3,85,0,
15792327,3,86,0,327,
157933,87,0,327,3,
1579488,0,327,3,89,
157950,327,3,90,0,
15796327,3,95,0,327,
157973,97,0,327,3,
1579898,0,327,3,99,
157990,327,3,100,0,
15800327,3,101,0,327,
158013,102,0,327,3,
15802103,0,327,3,104,
158030,327,3,105,0,
158041186,12,1,15119,1187,
158055,63,3,109,0,
15806327,3,110,0,327,
158073,111,0,327,3,
15808112,0,327,3,113,
158090,327,3,114,0,
15810327,3,115,0,327,
158113,116,0,1188,12,
158121,15154,1189,5,63,
158133,109,0,327,3,
15814110,0,327,3,111,
158150,327,3,112,0,
15816327,3,113,0,327,
158173,114,0,327,3,
15818115,0,327,3,116,
158190,327,3,117,0,
15820327,3,118,0,327,
158213,119,0,327,3,
15822120,0,327,3,121,
158230,327,3,122,0,
15824327,3,48,0,327,
158253,49,0,327,3,
1582650,0,327,3,51,
158270,327,3,52,0,
15828327,3,53,0,327,
158293,54,0,327,3,
1583055,0,327,3,56,
158310,327,3,57,0,
15832327,3,65,0,327,
158333,66,0,327,3,
1583467,0,327,3,68,
158350,327,3,69,0,
15836327,3,70,0,327,
158373,71,0,327,3,
1583872,0,327,3,73,
158390,327,3,74,0,
15840327,3,75,0,327,
158413,76,0,327,3,
1584277,0,327,3,78,
158430,327,3,79,0,
15844327,3,80,0,327,
158453,81,0,327,3,
1584682,0,327,3,83,
158470,327,3,84,0,
15848327,3,85,0,327,
158493,86,0,327,3,
1585087,0,327,3,88,
158510,327,3,89,0,
15852327,3,90,0,327,
158533,95,0,327,3,
1585497,0,327,3,98,
158550,327,3,99,0,
15856327,3,100,0,327,
158573,101,0,327,3,
15858102,0,327,3,103,
158590,327,3,104,0,
15860327,3,105,0,327,
158613,106,0,327,3,
15862107,0,327,3,108,
158630,327,1190,11,1,
15864769,0,1191,4,32,
1586583,0,84,0,65,
158660,84,0,69,0,
1586795,0,69,0,88,
158680,73,0,84,0,
1586995,0,69,0,86,
158700,69,0,78,0,
1587184,0,1,-1,3,
15872117,0,327,3,118,
158730,327,3,119,0,
15874327,3,120,0,327,
158753,121,0,327,3,
15876122,0,327,3,48,
158770,327,3,49,0,
15878327,3,50,0,327,
158793,51,0,327,3,
1588052,0,327,3,53,
158810,327,3,54,0,
15882327,3,55,0,327,
158833,56,0,327,3,
1588457,0,327,3,65,
158850,327,3,66,0,
15886327,3,67,0,327,
158873,68,0,327,3,
1588869,0,327,3,70,
158890,327,3,71,0,
15890327,3,72,0,327,
158913,73,0,327,3,
1589274,0,327,3,75,
158930,327,3,76,0,
15894327,3,77,0,327,
158953,78,0,327,3,
1589679,0,327,3,80,
158970,327,3,81,0,
15898327,3,82,0,327,
158993,83,0,327,3,
1590084,0,327,3,85,
159010,327,3,86,0,
15902327,3,87,0,327,
159033,88,0,327,3,
1590489,0,327,3,90,
159050,327,3,95,0,
15906327,3,97,0,327,
159073,98,0,327,3,
1590899,0,327,3,100,
159090,327,3,101,0,
15910327,3,102,0,327,
159113,103,0,327,3,
15912104,0,327,3,105,
159130,327,3,106,0,
15914327,3,107,0,327,
159153,108,0,327,1192,
1591611,1,829,0,330,
159171,-1,3,106,0,
15918327,3,107,0,327,
159193,108,0,327,1193,
1592011,1,829,0,330,
159211,-1,3,121,0,
15922327,3,122,0,327,
159233,48,0,327,3,
1592449,0,327,3,50,
159250,327,3,51,0,
15926327,3,52,0,327,
159273,53,0,327,3,
1592854,0,327,3,55,
159290,327,3,56,0,
15930327,3,57,0,327,
159313,65,0,327,3,
1593266,0,327,3,67,
159330,327,3,68,0,
15934327,3,69,0,327,
159353,70,0,327,3,
1593671,0,327,3,72,
159370,327,3,73,0,
15938327,3,74,0,327,
159393,75,0,327,3,
1594076,0,327,3,77,
159410,327,3,78,0,
15942327,3,79,0,327,
159433,80,0,327,3,
1594481,0,327,3,82,
159450,327,3,83,0,
15946327,3,84,0,327,
159473,85,0,327,3,
1594886,0,327,3,87,
159490,327,3,88,0,
15950327,3,89,0,327,
159513,90,0,327,3,
1595295,0,327,3,97,
159530,327,3,98,0,
15954327,3,99,0,327,
159553,100,0,327,3,
15956101,0,327,3,102,
159570,327,3,103,0,
15958327,3,104,0,327,
159593,105,0,327,3,
15960106,0,327,3,107,
159610,327,3,108,0,
15962327,1194,11,1,829,
159630,330,1,-1,3,
15964102,0,327,3,103,
159650,327,3,104,0,
15966327,3,105,0,327,
159673,106,0,327,3,
15968107,0,327,3,108,
159690,327,1195,11,1,
15970829,0,330,1,-1,
159713,97,0,327,3,
1597298,0,327,3,99,
159730,327,3,100,0,
15974327,3,101,0,327,
159753,102,0,327,3,
15976103,0,327,3,104,
159770,327,3,105,0,
15978327,3,106,0,327,
159793,107,0,327,3,
15980108,0,327,1196,11,
159811,256,0,1197,4,
1598210,83,0,84,0,
1598365,0,84,0,69,
159840,1,-1,3,102,
159850,327,3,103,0,
15986327,3,104,0,327,
159873,105,0,327,3,
15988106,0,327,3,107,
159890,327,3,108,0,
15990327,1198,11,1,829,
159910,330,1,-1,3,
15992117,0,327,3,118,
159930,327,3,119,0,
15994327,3,120,0,327,
159953,121,0,327,3,
15996122,0,327,3,48,
159970,327,3,49,0,
15998327,3,50,0,327,
159993,51,0,327,3,
1600052,0,327,3,53,
160010,327,3,54,0,
16002327,3,55,0,327,
160033,56,0,327,3,
1600457,0,327,3,65,
160050,327,3,66,0,
16006327,3,67,0,327,
160073,68,0,327,3,
1600869,0,327,3,70,
160090,327,3,71,0,
16010327,3,72,0,327,
160113,73,0,327,3,
1601274,0,327,3,75,
160130,327,3,76,0,
16014327,3,77,0,327,
160153,78,0,327,3,
1601679,0,327,3,80,
160170,327,3,81,0,
16018327,3,82,0,327,
160193,83,0,327,3,
1602084,0,327,3,85,
160210,327,3,86,0,
16022327,3,87,0,327,
160233,88,0,327,3,
1602489,0,327,3,90,
160250,327,3,95,0,
16026327,3,97,0,327,
160273,98,0,327,3,
1602899,0,327,3,100,
160290,327,3,101,0,
16030327,3,102,0,327,
160313,103,0,327,3,
16032104,0,327,3,105,
160330,327,3,106,0,
16034327,3,107,0,327,
160353,108,0,327,1199,
1603611,1,829,0,330,
160371,-1,3,98,0,
16038327,3,99,0,327,
160393,100,0,327,3,
16040101,0,327,3,102,
160410,327,3,103,0,
16042327,3,104,0,327,
160433,105,0,327,3,
16044106,0,327,3,107,
160450,327,3,108,0,
16046327,1200,11,1,829,
160470,330,1,-1,3,
16048117,0,327,3,118,
160490,327,3,119,0,
16050327,3,120,0,327,
160513,121,0,327,3,
16052122,0,327,3,48,
160530,327,3,49,0,
16054327,3,50,0,327,
160553,51,0,327,3,
1605652,0,327,3,53,
160570,327,3,54,0,
16058327,3,55,0,327,
160593,56,0,327,3,
1606057,0,327,3,65,
160610,327,3,66,0,
16062327,3,67,0,327,
160633,68,0,327,3,
1606469,0,327,3,70,
160650,327,3,71,0,
16066327,3,72,0,327,
160673,73,0,327,3,
1606874,0,327,3,75,
160690,327,3,76,0,
16070327,3,77,0,327,
160713,78,0,327,3,
1607279,0,327,3,80,
160730,327,3,81,0,
16074327,3,82,0,327,
160753,83,0,327,3,
1607684,0,327,3,85,
160770,327,3,86,0,
16078327,3,87,0,327,
160793,88,0,327,3,
1608089,0,327,3,90,
160810,327,3,95,0,
16082327,3,97,0,327,
160833,98,0,327,3,
1608499,0,327,3,100,
160850,327,3,101,0,
160861201,12,1,15863,1202,
160875,63,3,109,0,
16088327,3,110,0,1203,
1608912,1,15892,1204,5,
1609063,3,109,0,327,
160913,110,0,327,3,
16092111,0,327,3,112,
160930,327,3,113,0,
16094327,3,114,0,327,
160953,115,0,1205,12,
160961,15926,1206,5,63,
160973,109,0,327,3,
16098110,0,327,3,111,
160990,1207,12,1,15956,
161001208,5,63,3,109,
161010,327,3,110,0,
16102327,3,111,0,327,
161033,112,0,327,3,
16104113,0,327,3,114,
161050,1209,12,1,15989,
161061210,5,63,3,109,
161070,327,3,110,0,
16108327,3,111,0,327,
161093,112,0,327,3,
16110113,0,327,3,114,
161110,327,3,115,0,
16112327,3,116,0,327,
161133,117,0,327,3,
16114118,0,327,3,119,
161150,327,3,120,0,
16116327,3,121,0,327,
161173,122,0,327,3,
1611848,0,327,3,49,
161190,327,3,50,0,
16120327,3,51,0,327,
161213,52,0,327,3,
1612253,0,327,3,54,
161230,327,3,55,0,
16124327,3,56,0,327,
161253,57,0,327,3,
1612665,0,327,3,66,
161270,327,3,67,0,
16128327,3,68,0,327,
161293,69,0,327,3,
1613070,0,327,3,71,
161310,327,3,72,0,
16132327,3,73,0,327,
161333,74,0,327,3,
1613475,0,327,3,76,
161350,327,3,77,0,
16136327,3,78,0,327,
161373,79,0,327,3,
1613880,0,327,3,81,
161390,327,3,82,0,
16140327,3,83,0,327,
161413,84,0,327,3,
1614285,0,327,3,86,
161430,327,3,87,0,
16144327,3,88,0,327,
161453,89,0,327,3,
1614690,0,327,3,95,
161470,327,3,97,0,
16148327,3,98,0,327,
161493,99,0,327,3,
16150100,0,327,3,101,
161510,327,3,102,0,
16152327,3,103,0,327,
161533,104,0,327,3,
16154105,0,327,3,106,
161550,327,3,107,0,
16156327,3,108,0,327,
161571211,11,1,744,0,
161581212,4,24,83,0,
1615969,0,78,0,83,
161600,79,0,82,0,
1616195,0,69,0,86,
161620,69,0,78,0,
1616384,0,1,-1,3,
16164115,0,327,3,116,
161650,327,3,117,0,
16166327,3,118,0,327,
161673,119,0,327,3,
16168120,0,327,3,121,
161690,327,3,122,0,
16170327,3,48,0,327,
161713,49,0,327,3,
1617250,0,327,3,51,
161730,327,3,52,0,
16174327,3,53,0,327,
161753,54,0,327,3,
1617655,0,327,3,56,
161770,327,3,57,0,
16178327,3,65,0,327,
161793,66,0,327,3,
1618067,0,327,3,68,
161810,327,3,69,0,
16182327,3,70,0,327,
161833,71,0,327,3,
1618472,0,327,3,73,
161850,327,3,74,0,
16186327,3,75,0,327,
161873,76,0,327,3,
1618877,0,327,3,78,
161890,327,3,79,0,
16190327,3,80,0,327,
161913,81,0,327,3,
1619282,0,327,3,83,
161930,327,3,84,0,
16194327,3,85,0,327,
161953,86,0,327,3,
1619687,0,327,3,88,
161970,327,3,89,0,
16198327,3,90,0,327,
161993,95,0,327,3,
1620097,0,327,3,98,
162010,327,3,99,0,
16202327,3,100,0,327,
162033,101,0,327,3,
16204102,0,327,3,103,
162050,327,3,104,0,
16206327,3,105,0,327,
162073,106,0,327,3,
16208107,0,327,3,108,
162090,327,1213,11,1,
16210829,0,330,1,-1,
162113,112,0,327,3,
16212113,0,327,3,114,
162130,327,3,115,0,
16214327,3,116,0,327,
162153,117,0,327,3,
16216118,0,327,3,119,
162170,327,3,120,0,
16218327,3,121,0,327,
162193,122,0,327,3,
1622048,0,327,3,49,
162210,327,3,50,0,
16222327,3,51,0,327,
162233,52,0,327,3,
1622453,0,327,3,54,
162250,327,3,55,0,
16226327,3,56,0,327,
162273,57,0,327,3,
1622865,0,327,3,66,
162290,327,3,67,0,
16230327,3,68,0,327,
162313,69,0,327,3,
1623270,0,327,3,71,
162330,327,3,72,0,
16234327,3,73,0,327,
162353,74,0,327,3,
1623675,0,327,3,76,
162370,327,3,77,0,
16238327,3,78,0,327,
162393,79,0,327,3,
1624080,0,327,3,81,
162410,327,3,82,0,
16242327,3,83,0,327,
162433,84,0,327,3,
1624485,0,327,3,86,
162450,327,3,87,0,
16246327,3,88,0,327,
162473,89,0,327,3,
1624890,0,327,3,95,
162490,327,3,97,0,
16250327,3,98,0,327,
162513,99,0,327,3,
16252100,0,327,3,101,
162530,327,3,102,0,
16254327,3,103,0,327,
162553,104,0,327,3,
16256105,0,327,3,106,
162570,327,3,107,0,
16258327,3,108,0,327,
162591214,11,1,829,0,
16260330,1,-1,3,116,
162610,327,3,117,0,
16262327,3,118,0,327,
162633,119,0,327,3,
16264120,0,327,3,121,
162650,327,3,122,0,
16266327,3,48,0,327,
162673,49,0,327,3,
1626850,0,327,3,51,
162690,327,3,52,0,
16270327,3,53,0,327,
162713,54,0,327,3,
1627255,0,327,3,56,
162730,327,3,57,0,
16274327,3,65,0,327,
162753,66,0,327,3,
1627667,0,327,3,68,
162770,327,3,69,0,
16278327,3,70,0,327,
162793,71,0,327,3,
1628072,0,327,3,73,
162810,327,3,74,0,
16282327,3,75,0,327,
162833,76,0,327,3,
1628477,0,327,3,78,
162850,327,3,79,0,
16286327,3,80,0,327,
162873,81,0,327,3,
1628882,0,327,3,83,
162890,327,3,84,0,
16290327,3,85,0,327,
162913,86,0,327,3,
1629287,0,327,3,88,
162930,327,3,89,0,
16294327,3,90,0,327,
162953,95,0,327,3,
1629697,0,327,3,98,
162970,327,3,99,0,
16298327,3,100,0,327,
162993,101,0,327,3,
16300102,0,327,3,103,
163010,327,3,104,0,
16302327,3,105,0,327,
163033,106,0,327,3,
16304107,0,327,3,108,
163050,327,1215,11,1,
16306829,0,330,1,-1,
163073,111,0,327,3,
16308112,0,327,3,113,
163090,327,3,114,0,
16310327,3,115,0,327,
163113,116,0,327,3,
16312117,0,327,3,118,
163130,327,3,119,0,
16314327,3,120,0,327,
163153,121,0,327,3,
16316122,0,327,3,48,
163170,327,3,49,0,
16318327,3,50,0,327,
163193,51,0,327,3,
1632052,0,327,3,53,
163210,327,3,54,0,
16322327,3,55,0,327,
163233,56,0,327,3,
1632457,0,327,3,65,
163250,327,3,66,0,
16326327,3,67,0,327,
163273,68,0,327,3,
1632869,0,327,3,70,
163290,327,3,71,0,
16330327,3,72,0,327,
163313,73,0,327,3,
1633274,0,327,3,75,
163330,327,3,76,0,
16334327,3,77,0,327,
163353,78,0,327,3,
1633679,0,327,3,80,
163370,327,3,81,0,
16338327,3,82,0,327,
163393,83,0,327,3,
1634084,0,327,3,85,
163410,327,3,86,0,
16342327,3,87,0,327,
163433,88,0,327,3,
1634489,0,327,3,90,
163450,327,3,95,0,
16346327,3,97,0,327,
163473,98,0,327,3,
1634899,0,327,3,100,
163490,327,3,101,0,
16350327,3,102,0,327,
163513,103,0,327,3,
16352104,0,327,3,105,
163530,327,3,106,0,
16354327,3,107,0,327,
163553,108,0,327,1216,
1635611,1,829,0,330,
163571,-1,3,102,0,
16358327,3,103,0,327,
163593,104,0,327,3,
16360105,0,327,3,106,
163610,327,3,107,0,
16362327,3,108,0,327,
163631217,11,1,829,0,
16364330,1,-1,3,116,
163650,1218,12,1,16537,
163661219,5,63,3,109,
163670,327,3,110,0,
16368327,3,111,0,1220,
1636912,1,16567,1221,5,
1637063,3,109,0,327,
163713,110,0,327,3,
16372111,0,327,3,112,
163730,327,3,113,0,
16374327,3,114,0,327,
163753,115,0,327,3,
16376116,0,327,3,117,
163770,1222,12,1,16603,
163781223,5,63,3,109,
163790,327,3,110,0,
16380327,3,111,0,327,
163813,112,0,327,3,
16382113,0,327,3,114,
163830,327,3,115,0,
16384327,3,116,0,327,
163853,117,0,327,3,
16386118,0,327,3,119,
163870,327,3,120,0,
16388327,3,121,0,327,
163893,122,0,327,3,
1639048,0,327,3,49,
163910,327,3,50,0,
16392327,3,51,0,327,
163933,52,0,327,3,
1639453,0,327,3,54,
163950,327,3,55,0,
16396327,3,56,0,327,
163973,57,0,327,3,
1639865,0,327,3,66,
163990,327,3,67,0,
16400327,3,68,0,327,
164013,69,0,327,3,
1640270,0,327,3,71,
164030,327,3,72,0,
16404327,3,73,0,327,
164053,74,0,327,3,
1640675,0,327,3,76,
164070,327,3,77,0,
16408327,3,78,0,327,
164093,79,0,327,3,
1641080,0,327,3,81,
164110,327,3,82,0,
16412327,3,83,0,327,
164133,84,0,327,3,
1641485,0,327,3,86,
164150,327,3,87,0,
16416327,3,88,0,327,
164173,89,0,327,3,
1641890,0,327,3,95,
164190,327,3,97,0,
16420327,3,98,0,327,
164213,99,0,1224,12,
164221,16648,1225,5,63,
164233,109,0,327,3,
16424110,0,327,3,111,
164250,327,3,112,0,
16426327,3,113,0,327,
164273,114,0,327,3,
16428115,0,327,3,116,
164290,327,3,117,0,
16430327,3,118,0,327,
164313,119,0,327,3,
16432120,0,327,3,121,
164330,327,3,122,0,
16434327,3,48,0,327,
164353,49,0,327,3,
1643650,0,327,3,51,
164370,327,3,52,0,
16438327,3,53,0,327,
164393,54,0,327,3,
1644055,0,327,3,56,
164410,327,3,57,0,
16442327,3,65,0,327,
164433,66,0,327,3,
1644467,0,327,3,68,
164450,327,3,69,0,
16446327,3,70,0,327,
164473,71,0,327,3,
1644872,0,327,3,73,
164490,327,3,74,0,
16450327,3,75,0,327,
164513,76,0,327,3,
1645277,0,327,3,78,
164530,327,3,79,0,
16454327,3,80,0,327,
164553,81,0,327,3,
1645682,0,327,3,83,
164570,327,3,84,0,
16458327,3,85,0,327,
164593,86,0,327,3,
1646087,0,327,3,88,
164610,327,3,89,0,
16462327,3,90,0,327,
164633,95,0,327,3,
1646497,0,327,3,98,
164650,327,3,99,0,
16466327,3,100,0,327,
164673,101,0,327,3,
16468102,0,327,3,103,
164690,327,3,104,0,
164701226,12,1,16698,1227,
164715,63,3,109,0,
16472327,3,110,0,327,
164733,111,0,327,3,
16474112,0,327,3,113,
164750,327,3,114,0,
16476327,3,115,0,327,
164773,116,0,327,3,
16478117,0,327,3,118,
164790,327,3,119,0,
16480327,3,120,0,327,
164813,121,0,327,3,
16482122,0,327,3,48,
164830,327,3,49,0,
16484327,3,50,0,327,
164853,51,0,327,3,
1648652,0,327,3,53,
164870,327,3,54,0,
16488327,3,55,0,327,
164893,56,0,327,3,
1649057,0,327,3,65,
164910,327,3,66,0,
16492327,3,67,0,327,
164933,68,0,327,3,
1649469,0,327,3,70,
164950,327,3,71,0,
16496327,3,72,0,327,
164973,73,0,327,3,
1649874,0,327,3,75,
164990,327,3,76,0,
16500327,3,77,0,327,
165013,78,0,327,3,
1650279,0,327,3,80,
165030,327,3,81,0,
16504327,3,82,0,327,
165053,83,0,327,3,
1650684,0,327,3,85,
165070,327,3,86,0,
16508327,3,87,0,327,
165093,88,0,327,3,
1651089,0,327,3,90,
165110,327,3,95,0,
165121228,12,1,16784,1229,
165135,63,3,109,0,
16514327,3,110,0,327,
165153,111,0,327,3,
16516112,0,327,3,113,
165170,327,3,114,0,
16518327,3,115,0,1230,
1651912,1,16818,1231,5,
1652063,3,109,0,327,
165213,110,0,327,3,
16522111,0,327,3,112,
165230,327,3,113,0,
16524327,3,114,0,327,
165253,115,0,327,3,
16526116,0,1232,12,1,
1652716853,1233,5,63,3,
16528109,0,327,3,110,
165290,327,3,111,0,
16530327,3,112,0,327,
165313,113,0,327,3,
16532114,0,327,3,115,
165330,327,3,116,0,
16534327,3,117,0,327,
165353,118,0,327,3,
16536119,0,327,3,120,
165370,327,3,121,0,
16538327,3,122,0,327,
165393,48,0,327,3,
1654049,0,327,3,50,
165410,327,3,51,0,
16542327,3,52,0,327,
165433,53,0,327,3,
1654454,0,327,3,55,
165450,327,3,56,0,
16546327,3,57,0,327,
165473,65,0,327,3,
1654866,0,327,3,67,
165490,327,3,68,0,
16550327,3,69,0,327,
165513,70,0,327,3,
1655271,0,327,3,72,
165530,327,3,73,0,
16554327,3,74,0,327,
165553,75,0,327,3,
1655676,0,327,3,77,
165570,327,3,78,0,
16558327,3,79,0,327,
165593,80,0,327,3,
1656081,0,327,3,82,
165610,327,3,83,0,
16562327,3,84,0,327,
165633,85,0,327,3,
1656486,0,327,3,87,
165650,327,3,88,0,
16566327,3,89,0,327,
165673,90,0,327,3,
1656895,0,327,3,97,
165690,1234,12,1,16896,
165701235,5,63,3,109,
165710,327,3,110,0,
16572327,3,111,0,327,
165733,112,0,327,3,
16574113,0,327,3,114,
165750,1236,12,1,16929,
165761237,5,63,3,109,
165770,327,3,110,0,
16578327,3,111,0,327,
165793,112,0,327,3,
16580113,0,327,3,114,
165810,327,3,115,0,
16582327,3,116,0,1238,
1658312,1,16964,1239,5,
1658463,3,109,0,327,
165853,110,0,327,3,
16586111,0,327,3,112,
165870,327,3,113,0,
16588327,3,114,0,327,
165893,115,0,327,3,
16590116,0,327,3,117,
165910,327,3,118,0,
16592327,3,119,0,327,
165933,120,0,327,3,
16594121,0,327,3,122,
165950,327,3,48,0,
16596327,3,49,0,327,
165973,50,0,327,3,
1659851,0,327,3,52,
165990,327,3,53,0,
16600327,3,54,0,327,
166013,55,0,327,3,
1660256,0,327,3,57,
166030,327,3,65,0,
16604327,3,66,0,327,
166053,67,0,327,3,
1660668,0,327,3,69,
166070,327,3,70,0,
16608327,3,71,0,327,
166093,72,0,327,3,
1661073,0,327,3,74,
166110,327,3,75,0,
16612327,3,76,0,327,
166133,77,0,327,3,
1661478,0,327,3,79,
166150,327,3,80,0,
16616327,3,81,0,327,
166173,82,0,327,3,
1661883,0,327,3,84,
166190,327,3,85,0,
16620327,3,86,0,327,
166213,87,0,327,3,
1662288,0,327,3,89,
166230,327,3,90,0,
16624327,3,95,0,327,
166253,97,0,327,3,
1662698,0,327,3,99,
166270,327,3,100,0,
16628327,3,101,0,327,
166293,102,0,327,3,
16630103,0,327,3,104,
166310,327,3,105,0,
16632327,3,106,0,327,
166333,107,0,327,3,
16634108,0,327,1240,11,
166351,801,0,1241,4,
1663634,84,0,79,0,
1663785,0,67,0,72,
166380,95,0,83,0,
1663984,0,65,0,82,
166400,84,0,95,0,
1664169,0,86,0,69,
166420,78,0,84,0,
166431,-1,3,117,0,
16644327,3,118,0,327,
166453,119,0,327,3,
16646120,0,327,3,121,
166470,327,3,122,0,
16648327,3,48,0,327,
166493,49,0,327,3,
1665050,0,327,3,51,
166510,327,3,52,0,
16652327,3,53,0,327,
166533,54,0,327,3,
1665455,0,327,3,56,
166550,327,3,57,0,
16656327,3,65,0,327,
166573,66,0,327,3,
1665867,0,327,3,68,
166590,327,3,69,0,
16660327,3,70,0,327,
166613,71,0,327,3,
1666272,0,327,3,73,
166630,327,3,74,0,
16664327,3,75,0,327,
166653,76,0,327,3,
1666677,0,327,3,78,
166670,327,3,79,0,
16668327,3,80,0,327,
166693,81,0,327,3,
1667082,0,327,3,83,
166710,327,3,84,0,
16672327,3,85,0,327,
166733,86,0,327,3,
1667487,0,327,3,88,
166750,327,3,89,0,
16676327,3,90,0,327,
166773,95,0,327,3,
1667897,0,327,3,98,
166790,327,3,99,0,
16680327,3,100,0,327,
166813,101,0,327,3,
16682102,0,327,3,103,
166830,327,3,104,0,
16684327,3,105,0,327,
166853,106,0,327,3,
16686107,0,327,3,108,
166870,327,1242,11,1,
16688829,0,330,1,-1,
166893,115,0,327,3,
16690116,0,327,3,117,
166910,327,3,118,0,
16692327,3,119,0,327,
166933,120,0,327,3,
16694121,0,327,3,122,
166950,327,3,48,0,
16696327,3,49,0,327,
166973,50,0,327,3,
1669851,0,327,3,52,
166990,327,3,53,0,
16700327,3,54,0,327,
167013,55,0,327,3,
1670256,0,327,3,57,
167030,327,3,65,0,
16704327,3,66,0,327,
167053,67,0,327,3,
1670668,0,327,3,69,
167070,327,3,70,0,
16708327,3,71,0,327,
167093,72,0,327,3,
1671073,0,327,3,74,
167110,327,3,75,0,
16712327,3,76,0,327,
167133,77,0,327,3,
1671478,0,327,3,79,
167150,327,3,80,0,
16716327,3,81,0,327,
167173,82,0,327,3,
1671883,0,327,3,84,
167190,327,3,85,0,
16720327,3,86,0,327,
167213,87,0,327,3,
1672288,0,327,3,89,
167230,327,3,90,0,
16724327,3,95,0,327,
167253,97,0,327,3,
1672698,0,327,3,99,
167270,327,3,100,0,
16728327,3,101,0,327,
167293,102,0,327,3,
16730103,0,327,3,104,
167310,327,3,105,0,
16732327,3,106,0,327,
167333,107,0,327,3,
16734108,0,327,1243,11,
167351,829,0,330,1,
16736-1,3,98,0,327,
167373,99,0,327,3,
16738100,0,327,3,101,
167390,327,3,102,0,
16740327,3,103,0,327,
167413,104,0,327,3,
16742105,0,327,3,106,
167430,327,3,107,0,
16744327,3,108,0,327,
167451244,11,1,829,0,
16746330,1,-1,3,117,
167470,327,3,118,0,
16748327,3,119,0,327,
167493,120,0,327,3,
16750121,0,327,3,122,
167510,327,3,48,0,
16752327,3,49,0,327,
167533,50,0,327,3,
1675451,0,327,3,52,
167550,327,3,53,0,
16756327,3,54,0,327,
167573,55,0,327,3,
1675856,0,327,3,57,
167590,327,3,65,0,
16760327,3,66,0,327,
167613,67,0,327,3,
1676268,0,327,3,69,
167630,327,3,70,0,
16764327,3,71,0,327,
167653,72,0,327,3,
1676673,0,327,3,74,
167670,327,3,75,0,
16768327,3,76,0,327,
167693,77,0,327,3,
1677078,0,327,3,79,
167710,327,3,80,0,
16772327,3,81,0,327,
167733,82,0,327,3,
1677483,0,327,3,84,
167750,327,3,85,0,
16776327,3,86,0,327,
167773,87,0,327,3,
1677888,0,327,3,89,
167790,327,3,90,0,
16780327,3,95,0,327,
167813,97,0,327,3,
1678298,0,327,3,99,
167830,327,3,100,0,
16784327,3,101,0,327,
167853,102,0,327,3,
16786103,0,327,3,104,
167870,327,3,105,0,
16788327,3,106,0,327,
167893,107,0,327,3,
16790108,0,327,1245,11,
167911,829,0,330,1,
16792-1,3,116,0,327,
167933,117,0,327,3,
16794118,0,327,3,119,
167950,327,3,120,0,
16796327,3,121,0,327,
167973,122,0,327,3,
1679848,0,327,3,49,
167990,327,3,50,0,
16800327,3,51,0,327,
168013,52,0,327,3,
1680253,0,327,3,54,
168030,327,3,55,0,
16804327,3,56,0,327,
168053,57,0,327,3,
1680665,0,327,3,66,
168070,327,3,67,0,
16808327,3,68,0,327,
168093,69,0,327,3,
1681070,0,327,3,71,
168110,327,3,72,0,
16812327,3,73,0,327,
168133,74,0,327,3,
1681475,0,327,3,76,
168150,327,3,77,0,
16816327,3,78,0,327,
168173,79,0,327,3,
1681880,0,327,3,81,
168190,327,3,82,0,
16820327,3,83,0,327,
168213,84,0,327,3,
1682285,0,327,3,86,
168230,327,3,87,0,
16824327,3,88,0,327,
168253,89,0,327,3,
1682690,0,327,3,95,
168270,327,3,97,0,
16828327,3,98,0,327,
168293,99,0,327,3,
16830100,0,327,3,101,
168310,1246,12,1,17431,
168321247,5,63,3,109,
168330,327,3,110,0,
168341248,12,1,17460,1249,
168355,63,3,109,0,
16836327,3,110,0,327,
168373,111,0,327,3,
16838112,0,327,3,113,
168390,327,3,114,0,
16840327,3,115,0,327,
168413,116,0,327,3,
16842117,0,327,3,118,
168430,327,3,119,0,
16844327,3,120,0,327,
168453,121,0,327,3,
16846122,0,327,3,48,
168470,327,3,49,0,
16848327,3,50,0,327,
168493,51,0,327,3,
1685052,0,327,3,53,
168510,327,3,54,0,
16852327,3,55,0,327,
168533,56,0,327,3,
1685457,0,327,3,65,
168550,327,3,66,0,
16856327,3,67,0,327,
168573,68,0,327,3,
1685869,0,327,3,70,
168590,327,3,71,0,
16860327,3,72,0,327,
168613,73,0,327,3,
1686274,0,327,3,75,
168630,327,3,76,0,
16864327,3,77,0,327,
168653,78,0,327,3,
1686679,0,327,3,80,
168670,327,3,81,0,
16868327,3,82,0,327,
168693,83,0,327,3,
1687084,0,327,3,85,
168710,327,3,86,0,
16872327,3,87,0,327,
168733,88,0,327,3,
1687489,0,327,3,90,
168750,327,3,95,0,
16876327,3,97,0,327,
168773,98,0,327,3,
1687899,0,327,3,100,
168790,1250,12,1,17506,
168801251,5,63,3,109,
168810,327,3,110,0,
16882327,3,111,0,327,
168833,112,0,327,3,
16884113,0,327,3,114,
168850,327,3,115,0,
16886327,3,116,0,327,
168873,117,0,327,3,
16888118,0,327,3,119,
168890,327,3,120,0,
16890327,3,121,0,327,
168913,122,0,327,3,
1689248,0,327,3,49,
168930,327,3,50,0,
16894327,3,51,0,327,
168953,52,0,327,3,
1689653,0,327,3,54,
168970,327,3,55,0,
16898327,3,56,0,327,
168993,57,0,327,3,
1690065,0,327,3,66,
169010,327,3,67,0,
16902327,3,68,0,327,
169033,69,0,327,3,
1690470,0,327,3,71,
169050,327,3,72,0,
16906327,3,73,0,327,
169073,74,0,327,3,
1690875,0,327,3,76,
169090,327,3,77,0,
16910327,3,78,0,327,
169113,79,0,327,3,
1691280,0,327,3,81,
169130,327,3,82,0,
16914327,3,83,0,327,
169153,84,0,327,3,
1691685,0,327,3,86,
169170,327,3,87,0,
16918327,3,88,0,327,
169193,89,0,327,3,
1692090,0,327,3,95,
169210,327,3,97,0,
16922327,3,98,0,327,
169233,99,0,327,3,
16924100,0,327,3,101,
169250,327,3,102,0,
16926327,3,103,0,327,
169273,104,0,327,3,
16928105,0,327,3,106,
169290,327,3,107,0,
16930327,3,108,0,327,
169311252,11,1,816,0,
169321253,4,30,84,0,
1693379,0,85,0,67,
169340,72,0,95,0,
1693569,0,78,0,68,
169360,95,0,69,0,
1693786,0,69,0,78,
169380,84,0,1,-1,
169393,101,0,327,3,
16940102,0,327,3,103,
169410,327,3,104,0,
16942327,3,105,0,327,
169433,106,0,327,3,
16944107,0,327,3,108,
169450,327,1254,11,1,
16946829,0,330,1,-1,
169473,111,0,327,3,
16948112,0,327,3,113,
169490,327,3,114,0,
16950327,3,115,0,327,
169513,116,0,327,3,
16952117,0,327,3,118,
169530,327,3,119,0,
16954327,3,120,0,327,
169553,121,0,327,3,
16956122,0,327,3,48,
169570,327,3,49,0,
16958327,3,50,0,327,
169593,51,0,327,3,
1696052,0,327,3,53,
169610,327,3,54,0,
16962327,3,55,0,327,
169633,56,0,327,3,
1696457,0,327,3,65,
169650,327,3,66,0,
16966327,3,67,0,327,
169673,68,0,327,3,
1696869,0,327,3,70,
169690,327,3,71,0,
16970327,3,72,0,327,
169713,73,0,327,3,
1697274,0,327,3,75,
169730,327,3,76,0,
16974327,3,77,0,327,
169753,78,0,327,3,
1697679,0,327,3,80,
169770,327,3,81,0,
16978327,3,82,0,327,
169793,83,0,327,3,
1698084,0,327,3,85,
169810,327,3,86,0,
16982327,3,87,0,327,
169833,88,0,327,3,
1698489,0,327,3,90,
169850,327,3,95,0,
16986327,3,97,0,327,
169873,98,0,327,3,
1698899,0,327,3,100,
169890,327,3,101,0,
16990327,3,102,0,327,
169913,103,0,327,3,
16992104,0,327,3,105,
169930,327,3,106,0,
16994327,3,107,0,327,
169953,108,0,327,1255,
1699611,1,829,0,330,
169971,-1,3,102,0,
16998327,3,103,0,327,
169993,104,0,327,3,
17000105,0,327,3,106,
170010,327,3,107,0,
17002327,3,108,0,327,
170031256,11,1,829,0,
17004330,1,-1,3,97,
170050,327,3,98,0,
17006327,3,99,0,327,
170073,100,0,327,3,
17008101,0,327,3,102,
170090,327,3,103,0,
17010327,3,104,0,327,
170113,105,0,327,3,
17012106,0,327,3,107,
170130,327,3,108,0,
17014327,1257,11,1,792,
170150,1258,4,22,84,
170160,79,0,85,0,
1701767,0,72,0,95,
170180,69,0,86,0,
1701969,0,78,0,84,
170200,1,-1,3,105,
170210,327,3,106,0,
17022327,3,107,0,327,
170233,108,0,327,1259,
1702411,1,829,0,330,
170251,-1,3,100,0,
17026327,3,101,0,327,
170273,102,0,327,3,
17028103,0,327,3,104,
170290,327,3,105,0,
17030327,3,106,0,327,
170313,107,0,327,3,
17032108,0,327,1260,11,
170331,829,0,330,1,
17034-1,3,118,0,327,
170353,119,0,327,3,
17036120,0,327,3,121,
170370,327,3,122,0,
17038327,3,48,0,327,
170393,49,0,327,3,
1704050,0,327,3,51,
170410,327,3,52,0,
17042327,3,53,0,327,
170433,54,0,327,3,
1704455,0,327,3,56,
170450,327,3,57,0,
17046327,3,65,0,327,
170473,66,0,327,3,
1704867,0,327,3,68,
170490,327,3,69,0,
17050327,3,70,0,327,
170513,71,0,327,3,
1705272,0,327,3,73,
170530,327,3,74,0,
17054327,3,75,0,327,
170553,76,0,327,3,
1705677,0,327,3,78,
170570,327,3,79,0,
17058327,3,80,0,327,
170593,81,0,327,3,
1706082,0,327,3,83,
170610,327,3,84,0,
17062327,3,85,0,327,
170633,86,0,327,3,
1706487,0,327,3,88,
170650,327,3,89,0,
17066327,3,90,0,327,
170673,95,0,327,3,
1706897,0,327,3,98,
170690,327,3,99,0,
17070327,3,100,0,327,
170713,101,0,327,3,
17072102,0,327,3,103,
170730,327,3,104,0,
17074327,3,105,0,327,
170753,106,0,327,3,
17076107,0,327,3,108,
170770,327,1261,11,1,
17078829,0,330,1,-1,
170793,112,0,327,3,
17080113,0,327,3,114,
170810,327,3,115,0,
17082327,3,116,0,327,
170833,117,0,327,3,
17084118,0,327,3,119,
170850,327,3,120,0,
17086327,3,121,0,327,
170873,122,0,327,3,
1708848,0,327,3,49,
170890,327,3,50,0,
17090327,3,51,0,327,
170913,52,0,327,3,
1709253,0,327,3,54,
170930,327,3,55,0,
17094327,3,56,0,327,
170953,57,0,327,3,
1709665,0,327,3,66,
170970,327,3,67,0,
17098327,3,68,0,327,
170993,69,0,327,3,
1710070,0,327,3,71,
171010,327,3,72,0,
17102327,3,73,0,327,
171033,74,0,327,3,
1710475,0,327,3,76,
171050,327,3,77,0,
17106327,3,78,0,327,
171073,79,0,327,3,
1710880,0,327,3,81,
171090,327,3,82,0,
17110327,3,83,0,327,
171113,84,0,327,3,
1711285,0,327,3,86,
171130,327,3,87,0,
17114327,3,88,0,327,
171153,89,0,327,3,
1711690,0,327,3,95,
171170,327,3,97,0,
17118327,3,98,0,327,
171193,99,0,327,3,
17120100,0,327,3,101,
171210,327,3,102,0,
17122327,3,103,0,327,
171233,104,0,327,3,
17124105,0,1262,12,1,
1712518148,1263,5,63,3,
17126109,0,1264,12,1,
1712718176,1265,5,63,3,
17128109,0,327,3,110,
171290,327,3,111,0,
17130327,3,112,0,327,
171313,113,0,327,3,
17132114,0,327,3,115,
171330,327,3,116,0,
17134327,3,117,0,327,
171353,118,0,327,3,
17136119,0,327,3,120,
171370,327,3,121,0,
17138327,3,122,0,327,
171393,48,0,327,3,
1714049,0,327,3,50,
171410,327,3,51,0,
17142327,3,52,0,327,
171433,53,0,327,3,
1714454,0,327,3,55,
171450,327,3,56,0,
17146327,3,57,0,327,
171473,65,0,327,3,
1714866,0,327,3,67,
171490,327,3,68,0,
17150327,3,69,0,327,
171513,70,0,327,3,
1715271,0,327,3,72,
171530,327,3,73,0,
17154327,3,74,0,327,
171553,75,0,327,3,
1715676,0,327,3,77,
171570,327,3,78,0,
17158327,3,79,0,327,
171593,80,0,327,3,
1716081,0,327,3,82,
171610,327,3,83,0,
17162327,3,84,0,327,
171633,85,0,327,3,
1716486,0,327,3,87,
171650,327,3,88,0,
17166327,3,89,0,327,
171673,90,0,327,3,
1716895,0,327,3,97,
171690,327,3,98,0,
17170327,3,99,0,327,
171713,100,0,327,3,
17172101,0,1266,12,1,
1717318223,1267,5,63,3,
17174109,0,327,3,110,
171750,327,3,111,0,
17176327,3,112,0,327,
171773,113,0,327,3,
17178114,0,1268,12,1,
1717918256,1269,5,63,3,
17180109,0,327,3,110,
171810,327,3,111,0,
17182327,3,112,0,327,
171833,113,0,327,3,
17184114,0,327,3,115,
171850,327,3,116,0,
17186327,3,117,0,327,
171873,118,0,327,3,
17188119,0,327,3,120,
171890,327,3,121,0,
17190327,3,122,0,327,
171913,48,0,327,3,
1719249,0,327,3,50,
171930,327,3,51,0,
17194327,3,52,0,327,
171953,53,0,327,3,
1719654,0,327,3,55,
171970,327,3,56,0,
17198327,3,57,0,327,
171993,65,0,327,3,
1720066,0,327,3,67,
172010,327,3,68,0,
17202327,3,69,0,327,
172033,70,0,327,3,
1720471,0,327,3,72,
172050,327,3,73,0,
17206327,3,74,0,327,
172073,75,0,327,3,
1720876,0,327,3,77,
172090,327,3,78,0,
17210327,3,79,0,327,
172113,80,0,327,3,
1721281,0,327,3,82,
172130,327,3,83,0,
17214327,3,84,0,327,
172153,85,0,327,3,
1721686,0,327,3,87,
172170,327,3,88,0,
17218327,3,89,0,327,
172193,90,0,327,3,
1722095,0,327,3,97,
172210,327,3,98,0,
17222327,3,99,0,327,
172233,100,0,327,3,
17224101,0,327,3,102,
172250,327,3,103,0,
17226327,3,104,0,327,
172273,105,0,327,3,
17228106,0,327,3,107,
172290,327,3,108,0,
17230327,1270,11,1,783,
172310,1271,4,22,84,
172320,73,0,77,0,
1723369,0,82,0,95,
172340,69,0,86,0,
1723569,0,78,0,84,
172360,1,-1,3,115,
172370,327,3,116,0,
17238327,3,117,0,327,
172393,118,0,327,3,
17240119,0,327,3,120,
172410,327,3,121,0,
17242327,3,122,0,327,
172433,48,0,327,3,
1724449,0,327,3,50,
172450,327,3,51,0,
17246327,3,52,0,327,
172473,53,0,327,3,
1724854,0,327,3,55,
172490,327,3,56,0,
17250327,3,57,0,327,
172513,65,0,327,3,
1725266,0,327,3,67,
172530,327,3,68,0,
17254327,3,69,0,327,
172553,70,0,327,3,
1725671,0,327,3,72,
172570,327,3,73,0,
17258327,3,74,0,327,
172593,75,0,327,3,
1726076,0,327,3,77,
172610,327,3,78,0,
17262327,3,79,0,327,
172633,80,0,327,3,
1726481,0,327,3,82,
172650,327,3,83,0,
17266327,3,84,0,327,
172673,85,0,327,3,
1726886,0,327,3,87,
172690,327,3,88,0,
17270327,3,89,0,327,
172713,90,0,327,3,
1727295,0,327,3,97,
172730,327,3,98,0,
17274327,3,99,0,327,
172753,100,0,327,3,
17276101,0,327,3,102,
172770,327,3,103,0,
17278327,3,104,0,327,
172793,105,0,327,3,
17280106,0,327,3,107,
172810,327,3,108,0,
17282327,1272,11,1,829,
172830,330,1,-1,3,
17284102,0,327,3,103,
172850,327,3,104,0,
17286327,3,105,0,327,
172873,106,0,327,3,
17288107,0,327,3,108,
172890,327,1273,11,1,
17290829,0,330,1,-1,
172913,110,0,327,3,
17292111,0,327,3,112,
172930,327,3,113,0,
17294327,3,114,0,327,
172953,115,0,327,3,
17296116,0,327,3,117,
172970,327,3,118,0,
17298327,3,119,0,327,
172993,120,0,327,3,
17300121,0,327,3,122,
173010,327,3,48,0,
17302327,3,49,0,327,
173033,50,0,327,3,
1730451,0,327,3,52,
173050,327,3,53,0,
17306327,3,54,0,327,
173073,55,0,327,3,
1730856,0,327,3,57,
173090,327,3,65,0,
17310327,3,66,0,327,
173113,67,0,327,3,
1731268,0,327,3,69,
173130,327,3,70,0,
17314327,3,71,0,327,
173153,72,0,327,3,
1731673,0,327,3,74,
173170,327,3,75,0,
17318327,3,76,0,327,
173193,77,0,327,3,
1732078,0,327,3,79,
173210,327,3,80,0,
17322327,3,81,0,327,
173233,82,0,327,3,
1732483,0,327,3,84,
173250,327,3,85,0,
17326327,3,86,0,327,
173273,87,0,327,3,
1732888,0,327,3,89,
173290,327,3,90,0,
17330327,3,95,0,327,
173313,97,0,327,3,
1733298,0,327,3,99,
173330,327,3,100,0,
17334327,3,101,0,327,
173353,102,0,327,3,
17336103,0,327,3,104,
173370,327,3,105,0,
17338327,3,106,0,327,
173393,107,0,327,3,
17340108,0,327,1274,11,
173411,829,0,330,1,
17342-1,3,106,0,327,
173433,107,0,327,3,
17344108,0,327,1275,11,
173451,829,0,330,1,
17346-1,3,117,0,325,
173473,118,0,1276,12,
173481,18699,1277,5,63,
173493,109,0,327,3,
17350110,0,327,3,111,
173510,327,3,112,0,
17352327,3,113,0,327,
173533,114,0,327,3,
17354115,0,327,3,116,
173550,327,3,117,0,
17356327,3,118,0,327,
173573,119,0,327,3,
17358120,0,327,3,121,
173590,327,3,122,0,
17360327,3,48,0,327,
173613,49,0,327,3,
1736250,0,327,3,51,
173630,327,3,52,0,
17364327,3,53,0,327,
173653,54,0,327,3,
1736655,0,327,3,56,
173670,327,3,57,0,
17368327,3,65,0,327,
173693,66,0,327,3,
1737067,0,327,3,68,
173710,327,3,69,0,
17372327,3,70,0,327,
173733,71,0,327,3,
1737472,0,327,3,73,
173750,327,3,74,0,
17376327,3,75,0,327,
173773,76,0,327,3,
1737877,0,327,3,78,
173790,327,3,79,0,
17380327,3,80,0,327,
173813,81,0,327,3,
1738282,0,327,3,83,
173830,327,3,84,0,
17384327,3,85,0,327,
173853,86,0,327,3,
1738687,0,327,3,88,
173870,327,3,89,0,
17388327,3,90,0,327,
173893,95,0,327,3,
1739097,0,327,3,98,
173910,327,3,99,0,
17392327,3,100,0,327,
173933,101,0,1278,12,
173941,18746,1279,5,63,
173953,109,0,327,3,
17396110,0,327,3,111,
173970,327,3,112,0,
17398327,3,113,0,327,
173993,114,0,327,3,
17400115,0,327,3,116,
174010,327,3,117,0,
17402327,3,118,0,327,
174033,119,0,327,3,
17404120,0,327,3,121,
174050,327,3,122,0,
17406327,3,48,0,327,
174073,49,0,327,3,
1740850,0,327,3,51,
174090,327,3,52,0,
17410327,3,53,0,327,
174113,54,0,327,3,
1741255,0,327,3,56,
174130,327,3,57,0,
17414327,3,65,0,327,
174153,66,0,327,3,
1741667,0,327,3,68,
174170,327,3,69,0,
17418327,3,70,0,327,
174193,71,0,327,3,
1742072,0,327,3,73,
174210,327,3,74,0,
17422327,3,75,0,327,
174233,76,0,327,3,
1742477,0,327,3,78,
174250,327,3,79,0,
17426327,3,80,0,327,
174273,81,0,327,3,
1742882,0,327,3,83,
174290,327,3,84,0,
17430327,3,85,0,327,
174313,86,0,327,3,
1743287,0,327,3,88,
174330,327,3,89,0,
17434327,3,90,0,327,
174353,95,0,327,3,
1743697,0,327,3,98,
174370,327,3,99,0,
174381280,12,1,18791,1281,
174395,63,3,109,0,
17440327,3,110,0,327,
174413,111,0,327,3,
17442112,0,327,3,113,
174430,327,3,114,0,
17444327,3,115,0,327,
174453,116,0,1282,12,
174461,18826,1283,5,63,
174473,109,0,327,3,
17448110,0,327,3,111,
174490,1284,12,1,18856,
174501285,5,63,3,109,
174510,327,3,110,0,
17452327,3,111,0,327,
174533,112,0,327,3,
17454113,0,327,3,114,
174550,1286,12,1,18889,
174561287,5,63,3,109,
174570,327,3,110,0,
17458327,3,111,0,327,
174593,112,0,327,3,
17460113,0,327,3,114,
174610,327,3,115,0,
17462327,3,116,0,327,
174633,117,0,327,3,
17464118,0,327,3,119,
174650,327,3,120,0,
17466327,3,121,0,327,
174673,122,0,327,3,
1746848,0,327,3,49,
174690,327,3,50,0,
17470327,3,51,0,327,
174713,52,0,327,3,
1747253,0,327,3,54,
174730,327,3,55,0,
17474327,3,56,0,327,
174753,57,0,327,3,
1747665,0,327,3,66,
174770,327,3,67,0,
17478327,3,68,0,327,
174793,69,0,327,3,
1748070,0,327,3,71,
174810,327,3,72,0,
17482327,3,73,0,327,
174833,74,0,327,3,
1748475,0,327,3,76,
174850,327,3,77,0,
17486327,3,78,0,327,
174873,79,0,327,3,
1748880,0,327,3,81,
174890,327,3,82,0,
17490327,3,83,0,327,
174913,84,0,327,3,
1749285,0,327,3,86,
174930,327,3,87,0,
17494327,3,88,0,327,
174953,89,0,327,3,
1749690,0,327,3,95,
174970,327,3,97,0,
17498327,3,98,0,327,
174993,99,0,327,3,
17500100,0,327,3,101,
175010,327,3,102,0,
17502327,3,103,0,327,
175033,104,0,327,3,
17504105,0,327,3,106,
175050,327,3,107,0,
17506327,3,108,0,327,
175071288,11,1,320,0,
175081289,4,22,86,0,
1750969,0,67,0,84,
175100,79,0,82,0,
1751195,0,84,0,89,
175120,80,0,69,0,
175131,-1,3,115,0,
17514327,3,116,0,327,
175153,117,0,327,3,
17516118,0,327,3,119,
175170,327,3,120,0,
17518327,3,121,0,327,
175193,122,0,327,3,
1752048,0,327,3,49,
175210,327,3,50,0,
17522327,3,51,0,327,
175233,52,0,327,3,
1752453,0,327,3,54,
175250,327,3,55,0,
17526327,3,56,0,327,
175273,57,0,327,3,
1752865,0,327,3,66,
175290,327,3,67,0,
17530327,3,68,0,327,
175313,69,0,327,3,
1753270,0,327,3,71,
175330,327,3,72,0,
17534327,3,73,0,327,
175353,74,0,327,3,
1753675,0,327,3,76,
175370,327,3,77,0,
17538327,3,78,0,327,
175393,79,0,327,3,
1754080,0,327,3,81,
175410,327,3,82,0,
17542327,3,83,0,327,
175433,84,0,327,3,
1754485,0,327,3,86,
175450,327,3,87,0,
17546327,3,88,0,327,
175473,89,0,327,3,
1754890,0,327,3,95,
175490,327,3,97,0,
17550327,3,98,0,327,
175513,99,0,327,3,
17552100,0,327,3,101,
175530,327,3,102,0,
17554327,3,103,0,327,
175553,104,0,327,3,
17556105,0,327,3,106,
175570,327,3,107,0,
17558327,3,108,0,327,
175591290,11,1,829,0,
17560330,1,-1,3,112,
175610,327,3,113,0,
17562327,3,114,0,327,
175633,115,0,327,3,
17564116,0,327,3,117,
175650,327,3,118,0,
17566327,3,119,0,327,
175673,120,0,327,3,
17568121,0,327,3,122,
175690,327,3,48,0,
17570327,3,49,0,327,
175713,50,0,327,3,
1757251,0,327,3,52,
175730,327,3,53,0,
17574327,3,54,0,327,
175753,55,0,327,3,
1757656,0,327,3,57,
175770,327,3,65,0,
17578327,3,66,0,327,
175793,67,0,327,3,
1758068,0,327,3,69,
175810,327,3,70,0,
17582327,3,71,0,327,
175833,72,0,327,3,
1758473,0,327,3,74,
175850,327,3,75,0,
17586327,3,76,0,327,
175873,77,0,327,3,
1758878,0,327,3,79,
175890,327,3,80,0,
17590327,3,81,0,327,
175913,82,0,327,3,
1759283,0,327,3,84,
175930,327,3,85,0,
17594327,3,86,0,327,
175953,87,0,327,3,
1759688,0,327,3,89,
175970,327,3,90,0,
17598327,3,95,0,327,
175993,97,0,327,3,
1760098,0,327,3,99,
176010,327,3,100,0,
17602327,3,101,0,327,
176033,102,0,327,3,
17604103,0,327,3,104,
176050,327,3,105,0,
17606327,3,106,0,327,
176073,107,0,327,3,
17608108,0,327,1291,11,
176091,829,0,330,1,
17610-1,3,117,0,327,
176113,118,0,327,3,
17612119,0,327,3,120,
176130,327,3,121,0,
17614327,3,122,0,327,
176153,48,0,327,3,
1761649,0,327,3,50,
176170,327,3,51,0,
17618327,3,52,0,327,
176193,53,0,327,3,
1762054,0,327,3,55,
176210,327,3,56,0,
17622327,3,57,0,327,
176233,65,0,327,3,
1762466,0,327,3,67,
176250,327,3,68,0,
17626327,3,69,0,327,
176273,70,0,327,3,
1762871,0,327,3,72,
176290,327,3,73,0,
17630327,3,74,0,327,
176313,75,0,327,3,
1763276,0,327,3,77,
176330,327,3,78,0,
17634327,3,79,0,327,
176353,80,0,327,3,
1763681,0,327,3,82,
176370,327,3,83,0,
17638327,3,84,0,327,
176393,85,0,327,3,
1764086,0,327,3,87,
176410,327,3,88,0,
17642327,3,89,0,327,
176433,90,0,327,3,
1764495,0,327,3,97,
176450,327,3,98,0,
17646327,3,99,0,327,
176473,100,0,327,3,
17648101,0,327,3,102,
176490,327,3,103,0,
17650327,3,104,0,327,
176513,105,0,327,3,
17652106,0,327,3,107,
176530,327,3,108,0,
17654327,1292,11,1,829,
176550,330,1,-1,3,
17656100,0,327,3,101,
176570,327,3,102,0,
17658327,3,103,0,327,
176593,104,0,327,3,
17660105,0,327,3,106,
176610,327,3,107,0,
17662327,3,108,0,327,
176631293,11,1,829,0,
17664330,1,-1,3,102,
176650,327,3,103,0,
17666327,3,104,0,327,
176673,105,0,327,3,
17668106,0,327,3,107,
176690,327,3,108,0,
17670327,1294,11,1,829,
176710,330,1,-1,3,
17672119,0,1295,12,1,
1767319420,1296,5,63,3,
17674109,0,327,3,110,
176750,327,3,111,0,
17676327,3,112,0,327,
176773,113,0,327,3,
17678114,0,327,3,115,
176790,327,3,116,0,
17680327,3,117,0,327,
176813,118,0,327,3,
17682119,0,327,3,120,
176830,327,3,121,0,
17684327,3,122,0,327,
176853,48,0,327,3,
1768649,0,327,3,50,
176870,327,3,51,0,
17688327,3,52,0,327,
176893,53,0,327,3,
1769054,0,327,3,55,
176910,327,3,56,0,
17692327,3,57,0,327,
176933,65,0,327,3,
1769466,0,327,3,67,
176950,327,3,68,0,
17696327,3,69,0,327,
176973,70,0,327,3,
1769871,0,327,3,72,
176990,327,3,73,0,
17700327,3,74,0,327,
177013,75,0,327,3,
1770276,0,327,3,77,
177030,327,3,78,0,
17704327,3,79,0,327,
177053,80,0,327,3,
1770681,0,327,3,82,
177070,327,3,83,0,
17708327,3,84,0,327,
177093,85,0,327,3,
1771086,0,327,3,87,
177110,327,3,88,0,
17712327,3,89,0,327,
177133,90,0,327,3,
1771495,0,327,3,97,
177150,327,3,98,0,
17716327,3,99,0,327,
177173,100,0,327,3,
17718101,0,327,3,102,
177190,327,3,103,0,
17720327,3,104,0,1297,
1772112,1,19470,1298,5,
1772263,3,109,0,327,
177233,110,0,327,3,
17724111,0,327,3,112,
177250,327,3,113,0,
17726327,3,114,0,327,
177273,115,0,327,3,
17728116,0,327,3,117,
177290,327,3,118,0,
17730327,3,119,0,327,
177313,120,0,327,3,
17732121,0,327,3,122,
177330,327,3,48,0,
17734327,3,49,0,327,
177353,50,0,327,3,
1773651,0,327,3,52,
177370,327,3,53,0,
17738327,3,54,0,327,
177393,55,0,327,3,
1774056,0,327,3,57,
177410,327,3,65,0,
17742327,3,66,0,327,
177433,67,0,327,3,
1774468,0,327,3,69,
177450,327,3,70,0,
17746327,3,71,0,327,
177473,72,0,327,3,
1774873,0,327,3,74,
177490,327,3,75,0,
17750327,3,76,0,327,
177513,77,0,327,3,
1775278,0,327,3,79,
177530,327,3,80,0,
17754327,3,81,0,327,
177553,82,0,327,3,
1775683,0,327,3,84,
177570,327,3,85,0,
17758327,3,86,0,327,
177593,87,0,327,3,
1776088,0,327,3,89,
177610,327,3,90,0,
17762327,3,95,0,327,
177633,97,0,327,3,
1776498,0,327,3,99,
177650,327,3,100,0,
17766327,3,101,0,327,
177673,102,0,327,3,
17768103,0,327,3,104,
177690,327,3,105,0,
177701299,12,1,19521,1300,
177715,63,3,109,0,
17772327,3,110,0,327,
177733,111,0,327,3,
17774112,0,327,3,113,
177750,327,3,114,0,
17776327,3,115,0,327,
177773,116,0,327,3,
17778117,0,327,3,118,
177790,327,3,119,0,
17780327,3,120,0,327,
177813,121,0,327,3,
17782122,0,327,3,48,
177830,327,3,49,0,
17784327,3,50,0,327,
177853,51,0,327,3,
1778652,0,327,3,53,
177870,327,3,54,0,
17788327,3,55,0,327,
177893,56,0,327,3,
1779057,0,327,3,65,
177910,327,3,66,0,
17792327,3,67,0,327,
177933,68,0,327,3,
1779469,0,327,3,70,
177950,327,3,71,0,
17796327,3,72,0,327,
177973,73,0,327,3,
1779874,0,327,3,75,
177990,327,3,76,0,
17800327,3,77,0,327,
178013,78,0,327,3,
1780279,0,327,3,80,
178030,327,3,81,0,
17804327,3,82,0,327,
178053,83,0,327,3,
1780684,0,327,3,85,
178070,327,3,86,0,
17808327,3,87,0,327,
178093,88,0,327,3,
1781089,0,327,3,90,
178110,327,3,95,0,
17812327,3,97,0,327,
178133,98,0,327,3,
1781499,0,327,3,100,
178150,327,3,101,0,
17816327,3,102,0,327,
178173,103,0,327,3,
17818104,0,327,3,105,
178190,327,3,106,0,
17820327,3,107,0,327,
178213,108,0,1301,12,
178221,19575,1302,5,63,
178233,109,0,327,3,
17824110,0,327,3,111,
178250,327,3,112,0,
17826327,3,113,0,327,
178273,114,0,327,3,
17828115,0,327,3,116,
178290,327,3,117,0,
17830327,3,118,0,327,
178313,119,0,327,3,
17832120,0,327,3,121,
178330,327,3,122,0,
17834327,3,48,0,327,
178353,49,0,327,3,
1783650,0,327,3,51,
178370,327,3,52,0,
17838327,3,53,0,327,
178393,54,0,327,3,
1784055,0,327,3,56,
178410,327,3,57,0,
17842327,3,65,0,327,
178433,66,0,327,3,
1784467,0,327,3,68,
178450,327,3,69,0,
17846327,3,70,0,327,
178473,71,0,327,3,
1784872,0,327,3,73,
178490,327,3,74,0,
17850327,3,75,0,327,
178513,76,0,327,3,
1785277,0,327,3,78,
178530,327,3,79,0,
17854327,3,80,0,327,
178553,81,0,327,3,
1785682,0,327,3,83,
178570,327,3,84,0,
17858327,3,85,0,327,
178593,86,0,327,3,
1786087,0,327,3,88,
178610,327,3,89,0,
17862327,3,90,0,327,
178633,95,0,327,3,
1786497,0,327,3,98,
178650,327,3,99,0,
17866327,3,100,0,327,
178673,101,0,1303,12,
178681,19622,1304,5,63,
178693,109,0,327,3,
17870110,0,327,3,111,
178710,327,3,112,0,
17872327,3,113,0,327,
178733,114,0,327,3,
17874115,0,327,3,116,
178750,327,3,117,0,
17876327,3,118,0,327,
178773,119,0,327,3,
17878120,0,327,3,121,
178790,327,3,122,0,
17880327,3,48,0,327,
178813,49,0,327,3,
1788250,0,327,3,51,
178830,327,3,52,0,
17884327,3,53,0,327,
178853,54,0,327,3,
1788655,0,327,3,56,
178870,327,3,57,0,
17888327,3,65,0,327,
178893,66,0,327,3,
1789067,0,327,3,68,
178910,327,3,69,0,
17892327,3,70,0,327,
178933,71,0,327,3,
1789472,0,327,3,73,
178950,327,3,74,0,
17896327,3,75,0,327,
178973,76,0,327,3,
1789877,0,327,3,78,
178990,327,3,79,0,
17900327,3,80,0,327,
179013,81,0,327,3,
1790282,0,327,3,83,
179030,327,3,84,0,
17904327,3,85,0,327,
179053,86,0,327,3,
1790687,0,327,3,88,
179070,327,3,89,0,
17908327,3,90,0,327,
179093,95,0,327,3,
1791097,0,327,3,98,
179110,327,3,99,0,
17912327,3,100,0,327,
179133,101,0,327,3,
17914102,0,327,3,103,
179150,327,3,104,0,
17916327,3,105,0,327,
179173,106,0,327,3,
17918107,0,327,3,108,
179190,327,1305,11,1,
17920229,0,1306,4,10,
1792187,0,72,0,73,
179220,76,0,69,0,
179231,-1,3,102,0,
17924327,3,103,0,327,
179253,104,0,327,3,
17926105,0,327,3,106,
179270,327,3,107,0,
17928327,3,108,0,327,
179291307,11,1,829,0,
17930330,1,-1,1308,11,
179311,829,0,330,1,
17932-1,3,106,0,327,
179333,107,0,327,3,
17934108,0,327,1309,11,
179351,829,0,330,1,
17936-1,3,105,0,327,
179373,106,0,327,3,
17938107,0,327,3,108,
179390,327,1310,11,1,
17940829,0,330,1,-1,
179413,120,0,325,3,
17942121,0,325,3,122,
179430,325,3,123,0,
179441311,12,1,39751,1312,
179455,0,1313,11,1,
1794651,0,1314,4,20,
1794776,0,69,0,70,
179480,84,0,95,0,
1794966,0,82,0,65,
179500,67,0,69,0,
179511,-1,3,124,0,
179521315,12,1,42534,1316,
179535,1,3,124,0,
179541317,12,1,42646,1318,
179555,0,1319,11,1,
17956191,0,1320,4,26,
1795783,0,84,0,82,
179580,79,0,75,0,
1795969,0,95,0,83,
179600,84,0,82,0,
1796179,0,75,0,69,
179620,1,-1,1321,11,
179631,165,0,1322,4,
1796412,83,0,84,0,
1796582,0,79,0,75,
179660,69,0,1,-1,
179673,125,0,1323,12,
179681,40116,1324,5,0,
179691325,11,1,56,0,
179701326,4,22,82,0,
1797173,0,71,0,72,
179720,84,0,95,0,
1797366,0,82,0,65,
179740,67,0,69,0,
179751,-1,3,126,0,
179761327,12,1,42775,1328,
179775,0,1329,11,1,
17978175,0,1330,4,10,
1797984,0,73,0,76,
179800,68,0,69,0,
179811,-1,0,165,1,
17982-1,1331,4,12,83,
179830,84,0,82,0,
1798473,0,78,0,71,
179850,1332,12,1,44343,
179861333,5,119,3,1,
179870,1334,12,1,44344,
179881335,5,0,1336,11,
179891,930,0,165,1,
17990-1,3,9,0,1334,
179913,10,0,1337,12,
179921,44545,1338,5,0,
179931339,11,1,936,0,
17994165,1,-1,3,13,
179950,1334,3,0,3,
179961334,3,96,33,1334,
179973,32,0,1334,3,
1799833,0,1334,3,34,
179990,1340,12,1,45292,
180001341,5,0,1342,11,
180011,994,0,165,1,
18002-1,3,35,0,1334,
180033,36,0,1334,3,
1800437,0,1334,3,38,
180050,1334,3,40,0,
180061334,3,41,0,1334,
180073,42,0,1334,3,
1800843,0,1334,3,44,
180090,1334,3,45,0,
180101334,3,46,0,1334,
180113,47,0,1334,3,
180123,9,1334,3,49,
180130,1334,3,50,0,
180141334,3,48,0,1334,
180153,52,0,1334,3,
1801653,0,1334,3,51,
180170,1334,3,55,0,
180181334,3,56,0,1334,
180193,54,0,1334,3,
1802059,0,1334,3,57,
180210,1334,3,61,0,
180221334,3,62,0,1334,
180233,60,0,1334,3,
1802464,0,1334,3,65,
180250,1334,3,66,0,
180261334,3,67,0,1334,
180273,68,0,1334,3,
1802869,0,1334,3,70,
180290,1334,3,71,0,
180301334,3,72,0,1334,
180313,73,0,1334,3,
1803274,0,1334,3,75,
180330,1334,3,76,0,
180341334,3,77,0,1334,
180353,78,0,1334,3,
1803679,0,1334,3,80,
180370,1334,3,81,0,
180381334,3,82,0,1334,
180393,83,0,1334,3,
1804084,0,1334,3,85,
180410,1334,3,86,0,
180421334,3,87,0,1334,
180433,88,0,1334,3,
1804489,0,1334,3,90,
180450,1334,3,91,0,
180461334,3,92,0,1343,
1804712,1,44688,1344,5,
180484,3,110,0,1345,
1804912,1,44717,1346,5,
180500,1347,11,1,941,
180510,165,1,-1,3,
1805234,0,1348,12,1,
1805345157,1349,5,0,1350,
1805411,1,965,0,165,
180551,-1,3,92,0,
180561351,12,1,45033,1352,
180575,0,1353,11,1,
18058977,0,165,1,-1,
180593,116,0,1354,12,
180601,44843,1355,5,0,
180611356,11,1,953,0,
18062165,1,-1,1357,11,
180631,989,0,165,1,
18064-1,3,93,0,1334,
180653,94,0,1334,3,
1806695,0,1334,3,96,
180670,1334,3,97,0,
180681334,3,98,0,1334,
180693,99,0,1334,3,
18070100,0,1334,3,101,
180710,1334,3,102,0,
180721334,3,103,0,1334,
180733,104,0,1334,3,
18074105,0,1334,3,106,
180750,1334,3,107,0,
180761334,3,108,0,1334,
180773,109,0,1334,3,
18078110,0,1334,3,111,
180790,1334,3,112,0,
180801334,3,113,0,1334,
180813,114,0,1334,3,
18082115,0,1334,3,116,
180830,1334,3,117,0,
180841334,3,118,0,1334,
180853,119,0,1334,3,
18086120,0,1334,3,121,
180870,1334,3,122,0,
180881334,3,123,0,1334,
180893,124,0,1334,3,
18090125,0,1334,3,96,
180916,1334,3,126,0,
180921334,3,58,15,1334,
180933,59,15,1334,3,
18094136,4,1334,3,160,
180950,1334,3,15,7,
180961334,3,170,0,1334,
180973,171,0,1334,3,
18098172,0,1334,3,173,
180990,1334,3,178,0,
181001334,3,176,2,1334,
181013,187,0,1334,3,
18102187,1,1334,3,192,
181030,1334,3,41,32,
181041334,3,197,1,1334,
181053,0,224,1334,3,
1810640,32,1334,3,63,
1810732,1334,0,165,1,
18108-1,1358,5,92,236,
181091359,10,236,1,19,
18110555,1360,10,555,1,
1811147,283,1361,10,283,
181121,92,1138,1362,10,
181131138,1,50,1007,1363,
1811410,1007,1,80,1157,
181151364,10,1157,1,53,
18116173,1365,10,173,1,
1811737,584,1366,10,584,
181181,43,666,1367,10,
18119666,1,51,595,1368,
1812010,595,1,46,196,
181211369,10,196,1,16,
18122200,1370,10,200,1,
1812317,638,1371,10,638,
181241,68,867,1372,10,
18125867,1,75,343,1373,
1812610,343,1,35,208,
181271374,10,208,1,20,
18128214,1375,10,214,1,
181296,184,1376,10,184,
181301,22,268,1377,10,
18131268,1,21,250,1378,
1813210,250,1,94,1258,
181331379,10,1258,1,88,
18134463,1380,10,463,1,
1813564,686,1381,10,686,
181361,49,339,1382,10,
18137339,1,28,300,1383,
1813810,300,1,25,675,
181391384,10,675,1,42,
18140758,1385,10,758,1,
1814169,1197,1386,10,1197,
181421,48,318,1387,10,
18143318,1,41,816,1388,
1814410,816,1,57,218,
181451389,10,218,1,4,
18146324,1390,10,324,1,
1814723,475,1391,10,475,
181481,63,1212,1392,10,
181491212,1,84,306,1393,
1815010,306,1,29,230,
181511394,10,230,1,5,
18152298,1395,10,298,1,
1815331,606,1396,10,606,
181541,52,855,1397,10,
18155855,1,76,1080,1398,
1815610,1080,1,83,983,
181571399,10,983,1,81,
18158961,1400,10,961,1,
1815977,171,1401,10,171,
181601,30,234,1402,10,
18161234,1,7,813,1403,
1816210,813,1,73,182,
181631404,10,182,1,10,
18164335,1405,10,335,1,
1816527,276,1406,10,276,
181661,93,224,1407,10,
18167224,1,14,254,1408,
1816810,254,1,24,697,
181691409,10,697,1,54,
18170266,1410,10,266,1,
181719,1191,1411,10,1191,
181721,86,480,1412,10,
18173480,1,62,1413,4,
1817430,83,0,84,0,
1817582,0,73,0,78,
181760,71,0,95,0,
1817767,0,79,0,78,
181780,83,0,84,0,
1817965,0,78,0,84,
181800,1414,10,1413,1,
181813,1306,1415,10,1306,
181821,45,330,1416,10,
18183330,1,91,533,1417,
1818410,533,1,66,1034,
181851418,10,1034,1,56,
18186384,1419,10,384,1,
1818758,1314,1420,10,1314,
181881,12,513,1421,10,
18189513,1,44,294,1422,
1819010,294,1,40,1120,
181911423,10,1120,1,82,
18192573,1424,10,573,1,
1819367,912,1425,10,912,
181941,78,1330,1426,10,
181951330,1,36,1322,1427,
1819610,1322,1,34,753,
181971428,10,753,1,70,
181981271,1429,10,1271,1,
1819987,831,1430,10,831,
182001,74,320,1431,10,
18201320,1,26,407,1432,
1820210,407,1,59,192,
182031433,10,192,1,33,
18204288,1434,10,288,1,
1820511,190,1435,10,190,
182061,38,501,1436,10,
18207501,1,61,794,1437,
1820810,794,1,72,1253,
182091438,10,1253,1,90,
18210308,1439,10,308,1,
1821115,935,1440,10,935,
182121,79,1320,1441,10,
182131320,1,39,314,1442,
1821410,314,1,32,1241,
182151443,10,1241,1,89,
18216357,1444,10,357,1,
1821760,1289,1445,10,1289,
182181,55,1326,1446,10,
182191326,1,13,1180,1447,
1822010,1180,1,85,220,
182211448,10,220,1,18,
18222206,1449,10,206,1,
182238,741,1450,10,741,
182241,71,431,1451,10,
18225431,1,65,1452,5,
182260,0};
18227 new Tfactory(this,"MINUS",new TCreator(MINUS_factory));
18228 new Tfactory(this,"DEFAULT_STATE",new TCreator(DEFAULT_STATE_factory));
18229 new Tfactory(this,"INTEGER_CONSTANT",new TCreator(INTEGER_CONSTANT_factory));
18230 new Tfactory(this,"RETURN",new TCreator(RETURN_factory));
18231 new Tfactory(this,"OBJECT_REZ_EVENT",new TCreator(OBJECT_REZ_EVENT_factory));
18232 new Tfactory(this,"STRING_TYPE",new TCreator(STRING_TYPE_factory));
18233 new Tfactory(this,"EXCLAMATION",new TCreator(EXCLAMATION_factory));
18234 new Tfactory(this,"ELSE",new TCreator(ELSE_factory));
18235 new Tfactory(this,"INTEGER_TYPE",new TCreator(INTEGER_TYPE_factory));
18236 new Tfactory(this,"FOR",new TCreator(FOR_factory));
18237 new Tfactory(this,"LEFT_PAREN",new TCreator(LEFT_PAREN_factory));
18238 new Tfactory(this,"RIGHT_PAREN",new TCreator(RIGHT_PAREN_factory));
18239 new Tfactory(this,"HTTP_RESPONSE_EVENT",new TCreator(HTTP_RESPONSE_EVENT_factory));
18240 new Tfactory(this,"MOVING_END_EVENT",new TCreator(MOVING_END_EVENT_factory));
18241 new Tfactory(this,"CARET",new TCreator(CARET_factory));
18242 new Tfactory(this,"STAR",new TCreator(STAR_factory));
18243 new Tfactory(this,"PLUS_EQUALS",new TCreator(PLUS_EQUALS_factory));
18244 new Tfactory(this,"PERCENT",new TCreator(PERCENT_factory));
18245 new Tfactory(this,"SLASH",new TCreator(SLASH_factory));
18246 new Tfactory(this,"FLOAT_CONSTANT",new TCreator(FLOAT_CONSTANT_factory));
18247 new Tfactory(this,"TOUCH_EVENT",new TCreator(TOUCH_EVENT_factory));
18248 new Tfactory(this,"COLLISION_START_EVENT",new TCreator(COLLISION_START_EVENT_factory));
18249 new Tfactory(this,"JUMP",new TCreator(JUMP_factory));
18250 new Tfactory(this,"RIGHT_BRACKET",new TCreator(RIGHT_BRACKET_factory));
18251 new Tfactory(this,"LEFT_ANGLE",new TCreator(LEFT_ANGLE_factory));
18252 new Tfactory(this,"IF",new TCreator(IF_factory));
18253 new Tfactory(this,"LAND_COLLISION_EVENT",new TCreator(LAND_COLLISION_EVENT_factory));
18254 new Tfactory(this,"STATE",new TCreator(STATE_factory));
18255 new Tfactory(this,"RIGHT_SHIFT",new TCreator(RIGHT_SHIFT_factory));
18256 new Tfactory(this,"LIST_TYPE",new TCreator(LIST_TYPE_factory));
18257 new Tfactory(this,"INCREMENT",new TCreator(INCREMENT_factory));
18258 new Tfactory(this,"AT",new TCreator(AT_factory));
18259 new Tfactory(this,"COLLISION_END_EVENT",new TCreator(COLLISION_END_EVENT_factory));
18260 new Tfactory(this,"SENSOR_EVENT",new TCreator(SENSOR_EVENT_factory));
18261 new Tfactory(this,"EQUALS_EQUALS",new TCreator(EQUALS_EQUALS_factory));
18262 new Tfactory(this,"DECREMENT",new TCreator(DECREMENT_factory));
18263 new Tfactory(this,"LESS_EQUALS",new TCreator(LESS_EQUALS_factory));
18264 new Tfactory(this,"FLOAT_TYPE",new TCreator(FLOAT_TYPE_factory));
18265 new Tfactory(this,"MOVING_START_EVENT",new TCreator(MOVING_START_EVENT_factory));
18266 new Tfactory(this,"RUN_TIME_PERMISSIONS_EVENT",new TCreator(RUN_TIME_PERMISSIONS_EVENT_factory));
18267 new Tfactory(this,"ON_REZ_EVENT",new TCreator(ON_REZ_EVENT_factory));
18268 new Tfactory(this,"NO_SENSOR_EVENT",new TCreator(NO_SENSOR_EVENT_factory));
18269 new Tfactory(this,"EXCLAMATION_EQUALS",new TCreator(EXCLAMATION_EQUALS_factory));
18270 new Tfactory(this,"MINUS_EQUALS",new TCreator(MINUS_EQUALS_factory));
18271 new Tfactory(this,"LISTEN_EVENT",new TCreator(LISTEN_EVENT_factory));
18272 new Tfactory(this,"PERCENT_EQUALS",new TCreator(PERCENT_EQUALS_factory));
18273 new Tfactory(this,"LEFT_BRACKET",new TCreator(LEFT_BRACKET_factory));
18274 new Tfactory(this,"HEX_INTEGER_CONSTANT",new TCreator(HEX_INTEGER_CONSTANT_factory));
18275 new Tfactory(this,"COMMA",new TCreator(COMMA_factory));
18276 new Tfactory(this,"PERIOD",new TCreator(PERIOD_factory));
18277 new Tfactory(this,"KEY_TYPE",new TCreator(KEY_TYPE_factory));
18278 new Tfactory(this,"SLASH_EQUALS",new TCreator(SLASH_EQUALS_factory));
18279 new Tfactory(this,"STATE_EXIT_EVENT",new TCreator(STATE_EXIT_EVENT_factory));
18280 new Tfactory(this,"COLLISION_EVENT",new TCreator(COLLISION_EVENT_factory));
18281 new Tfactory(this,"STRING_CONSTANT",new TCreator(STRING_CONSTANT_factory));
18282 new Tfactory(this,"WHILE",new TCreator(WHILE_factory));
18283 new Tfactory(this,"IDENT",new TCreator(IDENT_factory));
18284 new Tfactory(this,"DATASERVER_EVENT",new TCreator(DATASERVER_EVENT_factory));
18285 new Tfactory(this,"ROTATION_TYPE",new TCreator(ROTATION_TYPE_factory));
18286 new Tfactory(this,"AT_ROT_TARGET_EVENT",new TCreator(AT_ROT_TARGET_EVENT_factory));
18287 new Tfactory(this,"LEFT_BRACE",new TCreator(LEFT_BRACE_factory));
18288 new Tfactory(this,"DO",new TCreator(DO_factory));
18289 new Tfactory(this,"LEFT_SHIFT",new TCreator(LEFT_SHIFT_factory));
18290 new Tfactory(this,"REMOTE_DATA_EVENT",new TCreator(REMOTE_DATA_EVENT_factory));
18291 new Tfactory(this,"EMAIL_EVENT",new TCreator(EMAIL_EVENT_factory));
18292 new Tfactory(this,"NOT_AT_ROT_TARGET_EVENT",new TCreator(NOT_AT_ROT_TARGET_EVENT_factory));
18293 new Tfactory(this,"TILDE",new TCreator(TILDE_factory));
18294 new Tfactory(this,"STROKE",new TCreator(STROKE_factory));
18295 new Tfactory(this,"LAND_COLLISION_END_EVENT",new TCreator(LAND_COLLISION_END_EVENT_factory));
18296 new Tfactory(this,"TIMER_EVENT",new TCreator(TIMER_EVENT_factory));
18297 new Tfactory(this,"MONEY_EVENT",new TCreator(MONEY_EVENT_factory));
18298 new Tfactory(this,"RIGHT_ANGLE",new TCreator(RIGHT_ANGLE_factory));
18299 new Tfactory(this,"AT_TARGET_EVENT",new TCreator(AT_TARGET_EVENT_factory));
18300 new Tfactory(this,"AMP",new TCreator(AMP_factory));
18301 new Tfactory(this,"SEMICOLON",new TCreator(SEMICOLON_factory));
18302 new Tfactory(this,"AMP_AMP",new TCreator(AMP_AMP_factory));
18303 new Tfactory(this,"CHANGED_EVENT",new TCreator(CHANGED_EVENT_factory));
18304 new Tfactory(this,"LINK_MESSAGE_EVENT",new TCreator(LINK_MESSAGE_EVENT_factory));
18305 new Tfactory(this,"TOUCH_END_EVENT",new TCreator(TOUCH_END_EVENT_factory));
18306 new Tfactory(this,"EQUALS",new TCreator(EQUALS_factory));
18307 new Tfactory(this,"NOT_AT_TARGET_EVENT",new TCreator(NOT_AT_TARGET_EVENT_factory));
18308 new Tfactory(this,"STROKE_STROKE",new TCreator(STROKE_STROKE_factory));
18309 new Tfactory(this,"GREATER_EQUALS",new TCreator(GREATER_EQUALS_factory));
18310 new Tfactory(this,"TOUCH_START_EVENT",new TCreator(TOUCH_START_EVENT_factory));
18311 new Tfactory(this,"ATTACH_EVENT",new TCreator(ATTACH_EVENT_factory));
18312 new Tfactory(this,"VECTOR_TYPE",new TCreator(VECTOR_TYPE_factory));
18313 new Tfactory(this,"RIGHT_BRACE",new TCreator(RIGHT_BRACE_factory));
18314 new Tfactory(this,"STATE_ENTRY_EVENT",new TCreator(STATE_ENTRY_EVENT_factory));
18315 new Tfactory(this,"PLUS",new TCreator(PLUS_factory));
18316 new Tfactory(this,"STAR_EQUALS",new TCreator(STAR_EQUALS_factory));
18317 new Tfactory(this,"LAND_COLLISION_START_EVENT",new TCreator(LAND_COLLISION_START_EVENT_factory));
18318 new Tfactory(this,"CONTROL_EVENT",new TCreator(CONTROL_EVENT_factory));
18319}
18320public static object MINUS_factory(Lexer yyl) { return new MINUS(yyl);}
18321public static object DEFAULT_STATE_factory(Lexer yyl) { return new DEFAULT_STATE(yyl);}
18322public static object INTEGER_CONSTANT_factory(Lexer yyl) { return new INTEGER_CONSTANT(yyl);}
18323public static object RETURN_factory(Lexer yyl) { return new RETURN(yyl);}
18324public static object OBJECT_REZ_EVENT_factory(Lexer yyl) { return new OBJECT_REZ_EVENT(yyl);}
18325public static object STRING_TYPE_factory(Lexer yyl) { return new STRING_TYPE(yyl);}
18326public static object EXCLAMATION_factory(Lexer yyl) { return new EXCLAMATION(yyl);}
18327public static object ELSE_factory(Lexer yyl) { return new ELSE(yyl);}
18328public static object INTEGER_TYPE_factory(Lexer yyl) { return new INTEGER_TYPE(yyl);}
18329public static object FOR_factory(Lexer yyl) { return new FOR(yyl);}
18330public static object LEFT_PAREN_factory(Lexer yyl) { return new LEFT_PAREN(yyl);}
18331public static object RIGHT_PAREN_factory(Lexer yyl) { return new RIGHT_PAREN(yyl);}
18332public static object HTTP_RESPONSE_EVENT_factory(Lexer yyl) { return new HTTP_RESPONSE_EVENT(yyl);}
18333public static object MOVING_END_EVENT_factory(Lexer yyl) { return new MOVING_END_EVENT(yyl);}
18334public static object CARET_factory(Lexer yyl) { return new CARET(yyl);}
18335public static object STAR_factory(Lexer yyl) { return new STAR(yyl);}
18336public static object PLUS_EQUALS_factory(Lexer yyl) { return new PLUS_EQUALS(yyl);}
18337public static object PERCENT_factory(Lexer yyl) { return new PERCENT(yyl);}
18338public static object SLASH_factory(Lexer yyl) { return new SLASH(yyl);}
18339public static object FLOAT_CONSTANT_factory(Lexer yyl) { return new FLOAT_CONSTANT(yyl);}
18340public static object TOUCH_EVENT_factory(Lexer yyl) { return new TOUCH_EVENT(yyl);}
18341public static object COLLISION_START_EVENT_factory(Lexer yyl) { return new COLLISION_START_EVENT(yyl);}
18342public static object JUMP_factory(Lexer yyl) { return new JUMP(yyl);}
18343public static object RIGHT_BRACKET_factory(Lexer yyl) { return new RIGHT_BRACKET(yyl);}
18344public static object LEFT_ANGLE_factory(Lexer yyl) { return new LEFT_ANGLE(yyl);}
18345public static object IF_factory(Lexer yyl) { return new IF(yyl);}
18346public static object LAND_COLLISION_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_EVENT(yyl);}
18347public static object STATE_factory(Lexer yyl) { return new STATE(yyl);}
18348public static object RIGHT_SHIFT_factory(Lexer yyl) { return new RIGHT_SHIFT(yyl);}
18349public static object LIST_TYPE_factory(Lexer yyl) { return new LIST_TYPE(yyl);}
18350public static object INCREMENT_factory(Lexer yyl) { return new INCREMENT(yyl);}
18351public static object AT_factory(Lexer yyl) { return new AT(yyl);}
18352public static object COLLISION_END_EVENT_factory(Lexer yyl) { return new COLLISION_END_EVENT(yyl);}
18353public static object SENSOR_EVENT_factory(Lexer yyl) { return new SENSOR_EVENT(yyl);}
18354public static object EQUALS_EQUALS_factory(Lexer yyl) { return new EQUALS_EQUALS(yyl);}
18355public static object DECREMENT_factory(Lexer yyl) { return new DECREMENT(yyl);}
18356public static object LESS_EQUALS_factory(Lexer yyl) { return new LESS_EQUALS(yyl);}
18357public static object FLOAT_TYPE_factory(Lexer yyl) { return new FLOAT_TYPE(yyl);}
18358public static object MOVING_START_EVENT_factory(Lexer yyl) { return new MOVING_START_EVENT(yyl);}
18359public static object RUN_TIME_PERMISSIONS_EVENT_factory(Lexer yyl) { return new RUN_TIME_PERMISSIONS_EVENT(yyl);}
18360public static object ON_REZ_EVENT_factory(Lexer yyl) { return new ON_REZ_EVENT(yyl);}
18361public static object NO_SENSOR_EVENT_factory(Lexer yyl) { return new NO_SENSOR_EVENT(yyl);}
18362public static object EXCLAMATION_EQUALS_factory(Lexer yyl) { return new EXCLAMATION_EQUALS(yyl);}
18363public static object MINUS_EQUALS_factory(Lexer yyl) { return new MINUS_EQUALS(yyl);}
18364public static object LISTEN_EVENT_factory(Lexer yyl) { return new LISTEN_EVENT(yyl);}
18365public static object PERCENT_EQUALS_factory(Lexer yyl) { return new PERCENT_EQUALS(yyl);}
18366public static object LEFT_BRACKET_factory(Lexer yyl) { return new LEFT_BRACKET(yyl);}
18367public static object HEX_INTEGER_CONSTANT_factory(Lexer yyl) { return new HEX_INTEGER_CONSTANT(yyl);}
18368public static object COMMA_factory(Lexer yyl) { return new COMMA(yyl);}
18369public static object PERIOD_factory(Lexer yyl) { return new PERIOD(yyl);}
18370public static object KEY_TYPE_factory(Lexer yyl) { return new KEY_TYPE(yyl);}
18371public static object SLASH_EQUALS_factory(Lexer yyl) { return new SLASH_EQUALS(yyl);}
18372public static object STATE_EXIT_EVENT_factory(Lexer yyl) { return new STATE_EXIT_EVENT(yyl);}
18373public static object COLLISION_EVENT_factory(Lexer yyl) { return new COLLISION_EVENT(yyl);}
18374public static object STRING_CONSTANT_factory(Lexer yyl) { return new STRING_CONSTANT(yyl);}
18375public static object WHILE_factory(Lexer yyl) { return new WHILE(yyl);}
18376public static object IDENT_factory(Lexer yyl) { return new IDENT(yyl);}
18377public static object DATASERVER_EVENT_factory(Lexer yyl) { return new DATASERVER_EVENT(yyl);}
18378public static object ROTATION_TYPE_factory(Lexer yyl) { return new ROTATION_TYPE(yyl);}
18379public static object AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new AT_ROT_TARGET_EVENT(yyl);}
18380public static object LEFT_BRACE_factory(Lexer yyl) { return new LEFT_BRACE(yyl);}
18381public static object DO_factory(Lexer yyl) { return new DO(yyl);}
18382public static object LEFT_SHIFT_factory(Lexer yyl) { return new LEFT_SHIFT(yyl);}
18383public static object REMOTE_DATA_EVENT_factory(Lexer yyl) { return new REMOTE_DATA_EVENT(yyl);}
18384public static object EMAIL_EVENT_factory(Lexer yyl) { return new EMAIL_EVENT(yyl);}
18385public static object NOT_AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_ROT_TARGET_EVENT(yyl);}
18386public static object TILDE_factory(Lexer yyl) { return new TILDE(yyl);}
18387public static object STROKE_factory(Lexer yyl) { return new STROKE(yyl);}
18388public static object LAND_COLLISION_END_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_END_EVENT(yyl);}
18389public static object TIMER_EVENT_factory(Lexer yyl) { return new TIMER_EVENT(yyl);}
18390public static object MONEY_EVENT_factory(Lexer yyl) { return new MONEY_EVENT(yyl);}
18391public static object RIGHT_ANGLE_factory(Lexer yyl) { return new RIGHT_ANGLE(yyl);}
18392public static object AT_TARGET_EVENT_factory(Lexer yyl) { return new AT_TARGET_EVENT(yyl);}
18393public static object AMP_factory(Lexer yyl) { return new AMP(yyl);}
18394public static object SEMICOLON_factory(Lexer yyl) { return new SEMICOLON(yyl);}
18395public static object AMP_AMP_factory(Lexer yyl) { return new AMP_AMP(yyl);}
18396public static object CHANGED_EVENT_factory(Lexer yyl) { return new CHANGED_EVENT(yyl);}
18397public static object LINK_MESSAGE_EVENT_factory(Lexer yyl) { return new LINK_MESSAGE_EVENT(yyl);}
18398public static object TOUCH_END_EVENT_factory(Lexer yyl) { return new TOUCH_END_EVENT(yyl);}
18399public static object EQUALS_factory(Lexer yyl) { return new EQUALS(yyl);}
18400public static object NOT_AT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_TARGET_EVENT(yyl);}
18401public static object STROKE_STROKE_factory(Lexer yyl) { return new STROKE_STROKE(yyl);}
18402public static object GREATER_EQUALS_factory(Lexer yyl) { return new GREATER_EQUALS(yyl);}
18403public static object TOUCH_START_EVENT_factory(Lexer yyl) { return new TOUCH_START_EVENT(yyl);}
18404public static object ATTACH_EVENT_factory(Lexer yyl) { return new ATTACH_EVENT(yyl);}
18405public static object VECTOR_TYPE_factory(Lexer yyl) { return new VECTOR_TYPE(yyl);}
18406public static object RIGHT_BRACE_factory(Lexer yyl) { return new RIGHT_BRACE(yyl);}
18407public static object STATE_ENTRY_EVENT_factory(Lexer yyl) { return new STATE_ENTRY_EVENT(yyl);}
18408public static object PLUS_factory(Lexer yyl) { return new PLUS(yyl);}
18409public static object STAR_EQUALS_factory(Lexer yyl) { return new STAR_EQUALS(yyl);}
18410public static object LAND_COLLISION_START_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_START_EVENT(yyl);}
18411public static object CONTROL_EVENT_factory(Lexer yyl) { return new CONTROL_EVENT(yyl);}
18412public override TOKEN OldAction(Lexer yym,ref string yytext,int action, ref bool reject) {
18413 switch(action) {
18414 case -1: break;
18415 case 977: { ((LSLTokens)yym).str += "\\\\"; }
18416 break;
18417 case 1003: ;
18418 break;
18419 case 925: { yym.yy_begin("STRING"); ((LSLTokens)yym).str = "";}
18420 break;
18421 case 930: { ((LSLTokens)yym).str += yytext; }
18422 break;
18423 case 936: { ((LSLTokens)yym).str += "\\n"; }
18424 break;
18425 case 941: { ((LSLTokens)yym).str += "\\n"; }
18426 break;
18427 case 953: { ((LSLTokens)yym).str += " "; }
18428 break;
18429 case 965: { ((LSLTokens)yym).str += "\\\""; }
18430 break;
18431 case 989: { ((LSLTokens)yym).str += '\\'; }
18432 break;
18433 case 994: { yym.yy_begin("YYINITIAL"); ((LSLTokens)yym).yytext = ((LSLTokens)yym).str; ((LSLTokens)yym).str = String.Empty; return new STRING_CONSTANT(yym); }
18434 case 999: ;
18435 break;
18436 }
18437 return null;
18438}}
18439public class LSLTokens:Lexer {
18440public LSLTokens():base(new yyLSLTokens(new ErrorHandler(false))) {}
18441public LSLTokens(ErrorHandler eh):base(new yyLSLTokens(eh)) {}
18442public LSLTokens(YyLexer tks):base(tks){}
18443
18444 public string str;
18445
18446 }
18447}