diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs | 9507 |
1 files changed, 9507 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs new file mode 100644 index 0000000..adcf90a --- /dev/null +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs | |||
@@ -0,0 +1,9507 @@ | |||
1 | using System;using Tools; | ||
2 | //%+LSLProgramRoot+95 | ||
3 | public class LSLProgramRoot : SYMBOL{ | ||
4 | public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax | ||
5 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
6 | } | ||
7 | public LSLProgramRoot (Parser yyp, GlobalDefinitions gd , States s ):base(((LSLSyntax | ||
8 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
9 | while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
10 | } | ||
11 | |||
12 | public override string yyname { get { return "LSLProgramRoot"; }} | ||
13 | public override int yynum { get { return 95; }} | ||
14 | public LSLProgramRoot(Parser yyp):base(yyp){}} | ||
15 | //%+GlobalDefinitions+96 | ||
16 | public class GlobalDefinitions : SYMBOL{ | ||
17 | public GlobalDefinitions (Parser yyp, GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
18 | )yyp)){ kids . Add ( gvd ); | ||
19 | } | ||
20 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
21 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
22 | kids . Add ( gvd ); | ||
23 | } | ||
24 | public GlobalDefinitions (Parser yyp, GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
25 | )yyp)){ kids . Add ( gfd ); | ||
26 | } | ||
27 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
28 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
29 | kids . Add ( gfd ); | ||
30 | } | ||
31 | |||
32 | public override string yyname { get { return "GlobalDefinitions"; }} | ||
33 | public override int yynum { get { return 96; }} | ||
34 | public GlobalDefinitions(Parser yyp):base(yyp){}} | ||
35 | //%+GlobalVariableDeclaration+97 | ||
36 | public class GlobalVariableDeclaration : SYMBOL{ | ||
37 | public GlobalVariableDeclaration (Parser yyp, Declaration d ):base(((LSLSyntax | ||
38 | )yyp)){ kids . Add ( d ); | ||
39 | } | ||
40 | public GlobalVariableDeclaration (Parser yyp, Assignment a ):base(((LSLSyntax | ||
41 | )yyp)){ kids . Add ( a ); | ||
42 | } | ||
43 | |||
44 | public override string yyname { get { return "GlobalVariableDeclaration"; }} | ||
45 | public override int yynum { get { return 97; }} | ||
46 | public GlobalVariableDeclaration(Parser yyp):base(yyp){}} | ||
47 | //%+GlobalFunctionDefinition+98 | ||
48 | public class GlobalFunctionDefinition : SYMBOL{ | ||
49 | private string m_returnType ; | ||
50 | private string m_name ; | ||
51 | public GlobalFunctionDefinition (Parser yyp, string returnType , string name , ArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax | ||
52 | )yyp)){ m_returnType = returnType ; | ||
53 | m_name = name ; | ||
54 | kids . Add ( adl ); | ||
55 | kids . Add ( cs ); | ||
56 | } | ||
57 | public string ReturnType { get { return m_returnType ; | ||
58 | } | ||
59 | set { m_returnType = value ; | ||
60 | } | ||
61 | } | ||
62 | public string Name { get { return m_name ; | ||
63 | } | ||
64 | } | ||
65 | |||
66 | public override string yyname { get { return "GlobalFunctionDefinition"; }} | ||
67 | public override int yynum { get { return 98; }} | ||
68 | public GlobalFunctionDefinition(Parser yyp):base(yyp){}} | ||
69 | //%+States+99 | ||
70 | public class States : SYMBOL{ | ||
71 | public States (Parser yyp, State ds ):base(((LSLSyntax | ||
72 | )yyp)){ kids . Add ( ds ); | ||
73 | } | ||
74 | public States (Parser yyp, States s , State us ):base(((LSLSyntax | ||
75 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
76 | kids . Add ( us ); | ||
77 | } | ||
78 | |||
79 | public override string yyname { get { return "States"; }} | ||
80 | public override int yynum { get { return 99; }} | ||
81 | public States(Parser yyp):base(yyp){}} | ||
82 | //%+State+100 | ||
83 | public class State : SYMBOL{ | ||
84 | private string m_name ; | ||
85 | public State (Parser yyp, string name , StateBody sb ):base(((LSLSyntax | ||
86 | )yyp)){ m_name = name ; | ||
87 | while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
88 | } | ||
89 | public override string ToString (){ return "STATE<"+ m_name +">"; | ||
90 | } | ||
91 | public string Name { get { return m_name ; | ||
92 | } | ||
93 | } | ||
94 | |||
95 | public override string yyname { get { return "State"; }} | ||
96 | public override int yynum { get { return 100; }} | ||
97 | public State(Parser yyp):base(yyp){}} | ||
98 | //%+StateBody+101 | ||
99 | public class StateBody : SYMBOL{ | ||
100 | public StateBody (Parser yyp, StateBody sb , StateEvent se ):base(((LSLSyntax | ||
101 | )yyp)){ while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
102 | kids . Add ( se ); | ||
103 | } | ||
104 | public StateBody (Parser yyp, StateEvent se ):base(((LSLSyntax | ||
105 | )yyp)){ kids . Add ( se ); | ||
106 | } | ||
107 | |||
108 | public override string yyname { get { return "StateBody"; }} | ||
109 | public override int yynum { get { return 101; }} | ||
110 | public StateBody(Parser yyp):base(yyp){}} | ||
111 | //%+StateEvent+102 | ||
112 | public class StateEvent : SYMBOL{ | ||
113 | private string m_name ; | ||
114 | public StateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax | ||
115 | )yyp)){ m_name = name ; | ||
116 | kids . Add ( cs ); | ||
117 | } | ||
118 | public StateEvent (Parser yyp, string name , ArgumentDeclarationList dal , CompoundStatement cs ):base(((LSLSyntax | ||
119 | )yyp)){ m_name = name ; | ||
120 | if (0< dal . kids . Count ) kids . Add ( dal ); | ||
121 | kids . Add ( cs ); | ||
122 | } | ||
123 | public override string ToString (){ return "EVENT<"+ m_name +">"; | ||
124 | } | ||
125 | public string Name { get { return m_name ; | ||
126 | } | ||
127 | } | ||
128 | |||
129 | public override string yyname { get { return "StateEvent"; }} | ||
130 | public override int yynum { get { return 102; }} | ||
131 | public StateEvent(Parser yyp):base(yyp){}} | ||
132 | //%+ArgumentDeclarationList+103 | ||
133 | public class ArgumentDeclarationList : SYMBOL{ | ||
134 | public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax | ||
135 | )yyp)){ kids . Add ( d ); | ||
136 | } | ||
137 | public ArgumentDeclarationList (Parser yyp, ArgumentDeclarationList adl , Declaration d ):base(((LSLSyntax | ||
138 | )yyp)){ while (0< adl . kids . Count ) kids . Add ( adl . kids . Pop ()); | ||
139 | kids . Add ( d ); | ||
140 | } | ||
141 | |||
142 | public override string yyname { get { return "ArgumentDeclarationList"; }} | ||
143 | public override int yynum { get { return 103; }} | ||
144 | public ArgumentDeclarationList(Parser yyp):base(yyp){}} | ||
145 | //%+Declaration+104 | ||
146 | public class Declaration : SYMBOL{ | ||
147 | private string m_datatype ; | ||
148 | private string m_id ; | ||
149 | public Declaration (Parser yyp, string type , string id ):base(((LSLSyntax | ||
150 | )yyp)){ m_datatype = type ; | ||
151 | m_id = id ; | ||
152 | } | ||
153 | public override string ToString (){ return "Declaration<"+ m_datatype +":"+ m_id +">"; | ||
154 | } | ||
155 | public string Datatype { get { return m_datatype ; | ||
156 | } | ||
157 | set { m_datatype = value ; | ||
158 | } | ||
159 | } | ||
160 | public string Id { get { return m_id ; | ||
161 | } | ||
162 | } | ||
163 | |||
164 | public override string yyname { get { return "Declaration"; }} | ||
165 | public override int yynum { get { return 104; }} | ||
166 | public Declaration(Parser yyp):base(yyp){}} | ||
167 | //%+Typename+105 | ||
168 | public class Typename : SYMBOL{ | ||
169 | public string yytext ; | ||
170 | public Typename (Parser yyp, string text ):base(((LSLSyntax | ||
171 | )yyp)){ yytext = text ; | ||
172 | } | ||
173 | |||
174 | public override string yyname { get { return "Typename"; }} | ||
175 | public override int yynum { get { return 105; }} | ||
176 | public Typename(Parser yyp):base(yyp){}} | ||
177 | //%+Event+106 | ||
178 | public class Event : SYMBOL{ | ||
179 | public string yytext ; | ||
180 | public Event (Parser yyp, string text ):base(((LSLSyntax | ||
181 | )yyp)){ yytext = text ; | ||
182 | } | ||
183 | |||
184 | public override string yyname { get { return "Event"; }} | ||
185 | public override int yynum { get { return 106; }} | ||
186 | public Event(Parser yyp):base(yyp){}} | ||
187 | //%+CompoundStatement+107 | ||
188 | public class CompoundStatement : SYMBOL{ | ||
189 | public CompoundStatement (Parser yyp):base(((LSLSyntax | ||
190 | )yyp)){} | ||
191 | public CompoundStatement (Parser yyp, StatementList sl ):base(((LSLSyntax | ||
192 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
193 | } | ||
194 | |||
195 | public override string yyname { get { return "CompoundStatement"; }} | ||
196 | public override int yynum { get { return 107; }} | ||
197 | } | ||
198 | //%+StatementList+108 | ||
199 | public class StatementList : SYMBOL{ | ||
200 | private void AddStatement ( Statement s ){ if ( s . kids . Top is IfStatement || s . kids . Top is WhileStatement || s . kids . Top is DoWhileStatement || s . kids . Top is ForLoop ) kids . Add ( s . kids . Pop ()); | ||
201 | else kids . Add ( s ); | ||
202 | } | ||
203 | public StatementList (Parser yyp, Statement s ):base(((LSLSyntax | ||
204 | )yyp)){ AddStatement ( s ); | ||
205 | } | ||
206 | public StatementList (Parser yyp, StatementList sl , Statement s ):base(((LSLSyntax | ||
207 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
208 | AddStatement ( s ); | ||
209 | } | ||
210 | |||
211 | public override string yyname { get { return "StatementList"; }} | ||
212 | public override int yynum { get { return 108; }} | ||
213 | public StatementList(Parser yyp):base(yyp){}} | ||
214 | //%+Statement+109 | ||
215 | public class Statement : SYMBOL{ | ||
216 | public Statement (Parser yyp, Declaration d ):base(((LSLSyntax | ||
217 | )yyp)){ kids . Add ( d ); | ||
218 | } | ||
219 | public Statement (Parser yyp, CompoundStatement cs ):base(((LSLSyntax | ||
220 | )yyp)){ kids . Add ( cs ); | ||
221 | } | ||
222 | public Statement (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
223 | )yyp)){ kids . Add ( fc ); | ||
224 | } | ||
225 | public Statement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
226 | )yyp)){ kids . Add ( a ); | ||
227 | } | ||
228 | public Statement (Parser yyp, Expression e ):base(((LSLSyntax | ||
229 | )yyp)){ kids . Add ( e ); | ||
230 | } | ||
231 | public Statement (Parser yyp, ReturnStatement rs ):base(((LSLSyntax | ||
232 | )yyp)){ kids . Add ( rs ); | ||
233 | } | ||
234 | public Statement (Parser yyp, StateChange sc ):base(((LSLSyntax | ||
235 | )yyp)){ kids . Add ( sc ); | ||
236 | } | ||
237 | public Statement (Parser yyp, IfStatement ifs ):base(((LSLSyntax | ||
238 | )yyp)){ kids . Add ( ifs ); | ||
239 | } | ||
240 | public Statement (Parser yyp, WhileStatement ifs ):base(((LSLSyntax | ||
241 | )yyp)){ kids . Add ( ifs ); | ||
242 | } | ||
243 | public Statement (Parser yyp, DoWhileStatement ifs ):base(((LSLSyntax | ||
244 | )yyp)){ kids . Add ( ifs ); | ||
245 | } | ||
246 | public Statement (Parser yyp, ForLoop fl ):base(((LSLSyntax | ||
247 | )yyp)){ kids . Add ( fl ); | ||
248 | } | ||
249 | |||
250 | public override string yyname { get { return "Statement"; }} | ||
251 | public override int yynum { get { return 109; }} | ||
252 | public Statement(Parser yyp):base(yyp){}} | ||
253 | //%+Assignment+110 | ||
254 | public class Assignment : SYMBOL{ | ||
255 | private string m_assignmentType ; | ||
256 | public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax | ||
257 | )yyp)){ m_assignmentType = assignmentType ; | ||
258 | kids . Add ( lhs ); | ||
259 | if ( rhs is ConstantExpression ) while (0< rhs . kids . Count ) kids . Add ( rhs . kids . Pop ()); | ||
260 | else kids . Add ( rhs ); | ||
261 | } | ||
262 | public string AssignmentType { get { return m_assignmentType ; | ||
263 | } | ||
264 | } | ||
265 | |||
266 | public override string yyname { get { return "Assignment"; }} | ||
267 | public override int yynum { get { return 110; }} | ||
268 | public Assignment(Parser yyp):base(yyp){}} | ||
269 | //%+ReturnStatement+111 | ||
270 | public class ReturnStatement : SYMBOL{ | ||
271 | public ReturnStatement (Parser yyp):base(((LSLSyntax | ||
272 | )yyp)){} | ||
273 | public ReturnStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
274 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
275 | else kids . Add ( e ); | ||
276 | } | ||
277 | |||
278 | public override string yyname { get { return "ReturnStatement"; }} | ||
279 | public override int yynum { get { return 111; }} | ||
280 | } | ||
281 | //%+StateChange+112 | ||
282 | public class StateChange : SYMBOL{ | ||
283 | private string m_newState ; | ||
284 | public StateChange (Parser yyp, string newState ):base(((LSLSyntax | ||
285 | )yyp)){ m_newState = newState ; | ||
286 | } | ||
287 | public string NewState { get { return m_newState ; | ||
288 | } | ||
289 | } | ||
290 | |||
291 | public override string yyname { get { return "StateChange"; }} | ||
292 | public override int yynum { get { return 112; }} | ||
293 | public StateChange(Parser yyp):base(yyp){}} | ||
294 | //%+IfStatement+113 | ||
295 | public class IfStatement : SYMBOL{ | ||
296 | private void AddStatement ( Statement s ){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
297 | else kids . Add ( s ); | ||
298 | } | ||
299 | public IfStatement (Parser yyp, Expression e , Statement ifs ):base(((LSLSyntax | ||
300 | )yyp)){ kids . Add ( e ); | ||
301 | AddStatement ( ifs ); | ||
302 | } | ||
303 | public IfStatement (Parser yyp, Expression e , Statement ifs , Statement es ):base(((LSLSyntax | ||
304 | )yyp)){ kids . Add ( e ); | ||
305 | AddStatement ( ifs ); | ||
306 | if ( es . kids . Top is IfStatement ) kids . Add ( es . kids . Pop ()); | ||
307 | else AddStatement ( es ); | ||
308 | } | ||
309 | |||
310 | public override string yyname { get { return "IfStatement"; }} | ||
311 | public override int yynum { get { return 113; }} | ||
312 | public IfStatement(Parser yyp):base(yyp){}} | ||
313 | //%+WhileStatement+114 | ||
314 | public class WhileStatement : SYMBOL{ | ||
315 | public WhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
316 | )yyp)){ kids . Add ( e ); | ||
317 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
318 | else kids . Add ( s ); | ||
319 | } | ||
320 | |||
321 | public override string yyname { get { return "WhileStatement"; }} | ||
322 | public override int yynum { get { return 114; }} | ||
323 | public WhileStatement(Parser yyp):base(yyp){}} | ||
324 | //%+DoWhileStatement+115 | ||
325 | public class DoWhileStatement : SYMBOL{ | ||
326 | public DoWhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
327 | )yyp)){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
328 | else kids . Add ( s ); | ||
329 | kids . Add ( e ); | ||
330 | } | ||
331 | |||
332 | public override string yyname { get { return "DoWhileStatement"; }} | ||
333 | public override int yynum { get { return 115; }} | ||
334 | public DoWhileStatement(Parser yyp):base(yyp){}} | ||
335 | //%+ForLoop+116 | ||
336 | public class ForLoop : SYMBOL{ | ||
337 | public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax | ||
338 | )yyp)){ kids . Add ( flsa ); | ||
339 | kids . Add ( e ); | ||
340 | kids . Add ( flsb ); | ||
341 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
342 | else kids . Add ( s ); | ||
343 | } | ||
344 | |||
345 | public override string yyname { get { return "ForLoop"; }} | ||
346 | public override int yynum { get { return 116; }} | ||
347 | public ForLoop(Parser yyp):base(yyp){}} | ||
348 | //%+ForLoopStatement+117 | ||
349 | public class ForLoopStatement : SYMBOL{ | ||
350 | public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
351 | )yyp)){ kids . Add ( e ); | ||
352 | } | ||
353 | public ForLoopStatement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
354 | )yyp)){ kids . Add ( a ); | ||
355 | } | ||
356 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Expression e ):base(((LSLSyntax | ||
357 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
358 | kids . Add ( e ); | ||
359 | } | ||
360 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Assignment a ):base(((LSLSyntax | ||
361 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
362 | kids . Add ( a ); | ||
363 | } | ||
364 | |||
365 | public override string yyname { get { return "ForLoopStatement"; }} | ||
366 | public override int yynum { get { return 117; }} | ||
367 | public ForLoopStatement(Parser yyp):base(yyp){}} | ||
368 | //%+FunctionCall+118 | ||
369 | public class FunctionCall : SYMBOL{ | ||
370 | private string m_id ; | ||
371 | public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax | ||
372 | )yyp)){ m_id = id ; | ||
373 | kids . Add ( al ); | ||
374 | } | ||
375 | public override string ToString (){ return base . ToString ()+"<"+ m_id +">"; | ||
376 | } | ||
377 | public string Id { get { return m_id ; | ||
378 | } | ||
379 | } | ||
380 | |||
381 | public override string yyname { get { return "FunctionCall"; }} | ||
382 | public override int yynum { get { return 118; }} | ||
383 | public FunctionCall(Parser yyp):base(yyp){}} | ||
384 | //%+ArgumentList+119 | ||
385 | public class ArgumentList : SYMBOL{ | ||
386 | public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax | ||
387 | )yyp)){ AddArgument ( a ); | ||
388 | } | ||
389 | public ArgumentList (Parser yyp, ArgumentList al , Argument a ):base(((LSLSyntax | ||
390 | )yyp)){ while (0< al . kids . Count ) kids . Add ( al . kids . Pop ()); | ||
391 | AddArgument ( a ); | ||
392 | } | ||
393 | private void AddArgument ( Argument a ){ if ( a is ExpressionArgument ) while (0< a . kids . Count ) kids . Add ( a . kids . Pop ()); | ||
394 | else kids . Add ( a ); | ||
395 | } | ||
396 | |||
397 | public override string yyname { get { return "ArgumentList"; }} | ||
398 | public override int yynum { get { return 119; }} | ||
399 | public ArgumentList(Parser yyp):base(yyp){}} | ||
400 | //%+Argument+120 | ||
401 | public class Argument : SYMBOL{ | ||
402 | public override string yyname { get { return "Argument"; }} | ||
403 | public override int yynum { get { return 120; }} | ||
404 | public Argument(Parser yyp):base(yyp){}} | ||
405 | //%+ExpressionArgument+121 | ||
406 | public class ExpressionArgument : Argument{ | ||
407 | public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax | ||
408 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
409 | else kids . Add ( e ); | ||
410 | } | ||
411 | |||
412 | public override string yyname { get { return "ExpressionArgument"; }} | ||
413 | public override int yynum { get { return 121; }} | ||
414 | public ExpressionArgument(Parser yyp):base(yyp){}} | ||
415 | //%+Constant+122 | ||
416 | public class Constant : SYMBOL{ | ||
417 | private string m_type ; | ||
418 | private string m_val ; | ||
419 | public Constant (Parser yyp, string type , string val ):base(((LSLSyntax | ||
420 | )yyp)){ m_type = type ; | ||
421 | m_val = val ; | ||
422 | } | ||
423 | public override string ToString (){ return base . ToString ()+"<"+ m_type +":"+ m_val +">"; | ||
424 | } | ||
425 | public string Value { get { return m_val ; | ||
426 | } | ||
427 | set { m_val = value ; | ||
428 | } | ||
429 | } | ||
430 | public string Type { get { return m_type ; | ||
431 | } | ||
432 | set { m_type = value ; | ||
433 | } | ||
434 | } | ||
435 | |||
436 | public override string yyname { get { return "Constant"; }} | ||
437 | public override int yynum { get { return 122; }} | ||
438 | public Constant(Parser yyp):base(yyp){}} | ||
439 | //%+VectorConstant+123 | ||
440 | public class VectorConstant : Constant{ | ||
441 | public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax | ||
442 | )yyp),"vector", null ){ kids . Add ( valX ); | ||
443 | kids . Add ( valY ); | ||
444 | kids . Add ( valZ ); | ||
445 | } | ||
446 | |||
447 | public override string yyname { get { return "VectorConstant"; }} | ||
448 | public override int yynum { get { return 123; }} | ||
449 | public VectorConstant(Parser yyp):base(yyp){}} | ||
450 | //%+RotationConstant+124 | ||
451 | public class RotationConstant : Constant{ | ||
452 | public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax | ||
453 | )yyp),"rotation", null ){ kids . Add ( valX ); | ||
454 | kids . Add ( valY ); | ||
455 | kids . Add ( valZ ); | ||
456 | kids . Add ( valS ); | ||
457 | } | ||
458 | |||
459 | public override string yyname { get { return "RotationConstant"; }} | ||
460 | public override int yynum { get { return 124; }} | ||
461 | public RotationConstant(Parser yyp):base(yyp){}} | ||
462 | //%+ListConstant+125 | ||
463 | public class ListConstant : Constant{ | ||
464 | public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax | ||
465 | )yyp),"list", null ){ kids . Add ( al ); | ||
466 | } | ||
467 | |||
468 | public override string yyname { get { return "ListConstant"; }} | ||
469 | public override int yynum { get { return 125; }} | ||
470 | public ListConstant(Parser yyp):base(yyp){}} | ||
471 | //%+Expression+126 | ||
472 | public class Expression : SYMBOL{ | ||
473 | protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
474 | else kids . Add ( e ); | ||
475 | } | ||
476 | |||
477 | public override string yyname { get { return "Expression"; }} | ||
478 | public override int yynum { get { return 126; }} | ||
479 | public Expression(Parser yyp):base(yyp){}} | ||
480 | //%+ConstantExpression+127 | ||
481 | public class ConstantExpression : Expression{ | ||
482 | public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax | ||
483 | )yyp)){ kids . Add ( c ); | ||
484 | } | ||
485 | |||
486 | public override string yyname { get { return "ConstantExpression"; }} | ||
487 | public override int yynum { get { return 127; }} | ||
488 | public ConstantExpression(Parser yyp):base(yyp){}} | ||
489 | //%+IdentExpression+128 | ||
490 | public class IdentExpression : Expression{ | ||
491 | protected string m_name ; | ||
492 | public IdentExpression (Parser yyp, string name ):base(((LSLSyntax | ||
493 | )yyp)){ m_name = name ; | ||
494 | } | ||
495 | public override string ToString (){ return base . ToString ()+"<"+ m_name +">"; | ||
496 | } | ||
497 | public string Name { get { return m_name ; | ||
498 | } | ||
499 | } | ||
500 | |||
501 | public override string yyname { get { return "IdentExpression"; }} | ||
502 | public override int yynum { get { return 128; }} | ||
503 | public IdentExpression(Parser yyp):base(yyp){}} | ||
504 | //%+IdentDotExpression+129 | ||
505 | public class IdentDotExpression : IdentExpression{ | ||
506 | private string m_member ; | ||
507 | public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax | ||
508 | )yyp), name ){ m_member = member ; | ||
509 | } | ||
510 | public override string ToString (){ string baseToString = base . ToString (); | ||
511 | return baseToString . Substring (0, baseToString . Length -1)+"."+ m_member +">"; | ||
512 | } | ||
513 | public string Member { get { return m_member ; | ||
514 | } | ||
515 | } | ||
516 | |||
517 | public override string yyname { get { return "IdentDotExpression"; }} | ||
518 | public override int yynum { get { return 129; }} | ||
519 | public IdentDotExpression(Parser yyp):base(yyp){}} | ||
520 | //%+FunctionCallExpression+130 | ||
521 | public class FunctionCallExpression : Expression{ | ||
522 | public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
523 | )yyp)){ kids . Add ( fc ); | ||
524 | } | ||
525 | |||
526 | public override string yyname { get { return "FunctionCallExpression"; }} | ||
527 | public override int yynum { get { return 130; }} | ||
528 | public FunctionCallExpression(Parser yyp):base(yyp){}} | ||
529 | //%+BinaryExpression+131 | ||
530 | public class BinaryExpression : Expression{ | ||
531 | private string m_expressionSymbol ; | ||
532 | public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax | ||
533 | )yyp)){ m_expressionSymbol = expressionSymbol ; | ||
534 | AddExpression ( lhs ); | ||
535 | AddExpression ( rhs ); | ||
536 | } | ||
537 | public string ExpressionSymbol { get { return m_expressionSymbol ; | ||
538 | } | ||
539 | } | ||
540 | public override string ToString (){ return base . ToString ()+"<"+ m_expressionSymbol +">"; | ||
541 | } | ||
542 | |||
543 | public override string yyname { get { return "BinaryExpression"; }} | ||
544 | public override int yynum { get { return 131; }} | ||
545 | public BinaryExpression(Parser yyp):base(yyp){}} | ||
546 | //%+UnaryExpression+132 | ||
547 | public class UnaryExpression : Expression{ | ||
548 | private string m_unarySymbol ; | ||
549 | public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax | ||
550 | )yyp)){ m_unarySymbol = unarySymbol ; | ||
551 | kids . Add ( e ); | ||
552 | } | ||
553 | public string UnarySymbol { get { return m_unarySymbol ; | ||
554 | } | ||
555 | } | ||
556 | |||
557 | public override string yyname { get { return "UnaryExpression"; }} | ||
558 | public override int yynum { get { return 132; }} | ||
559 | public UnaryExpression(Parser yyp):base(yyp){}} | ||
560 | //%+TypecastExpression+133 | ||
561 | public class TypecastExpression : Expression{ | ||
562 | private string m_typecastType ; | ||
563 | public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax | ||
564 | )yyp)){ m_typecastType = typecastType ; | ||
565 | kids . Add ( rhs ); | ||
566 | } | ||
567 | public string TypecastType { get { return m_typecastType ; | ||
568 | } | ||
569 | set { m_typecastType = value ; | ||
570 | } | ||
571 | } | ||
572 | |||
573 | public override string yyname { get { return "TypecastExpression"; }} | ||
574 | public override int yynum { get { return 133; }} | ||
575 | public TypecastExpression(Parser yyp):base(yyp){}} | ||
576 | //%+ParenthesisExpression+134 | ||
577 | public class ParenthesisExpression : Expression{ | ||
578 | public ParenthesisExpression (Parser yyp, Expression e ):base(((LSLSyntax | ||
579 | )yyp)){ kids . Add ( e ); | ||
580 | } | ||
581 | |||
582 | public override string yyname { get { return "ParenthesisExpression"; }} | ||
583 | public override int yynum { get { return 134; }} | ||
584 | public ParenthesisExpression(Parser yyp):base(yyp){}} | ||
585 | //%+IncrementDecrementExpression+135 | ||
586 | public class IncrementDecrementExpression : Expression{ | ||
587 | private string m_name ; | ||
588 | private string m_operation ; | ||
589 | private bool m_postOperation ; | ||
590 | public IncrementDecrementExpression (Parser yyp, string name , string operation , bool postOperation ):base(((LSLSyntax | ||
591 | )yyp)){ m_name = name ; | ||
592 | m_operation = operation ; | ||
593 | m_postOperation = postOperation ; | ||
594 | } | ||
595 | public IncrementDecrementExpression (Parser yyp, IdentDotExpression ide , string operation , bool postOperation ):base(((LSLSyntax | ||
596 | )yyp)){ m_operation = operation ; | ||
597 | m_postOperation = postOperation ; | ||
598 | kids . Add ( ide ); | ||
599 | } | ||
600 | public override string ToString (){ return base . ToString ()+"<"+( m_postOperation ? m_name + m_operation : m_operation + m_name )+">"; | ||
601 | } | ||
602 | public string Name { get { return m_name ; | ||
603 | } | ||
604 | } | ||
605 | public string Operation { get { return m_operation ; | ||
606 | } | ||
607 | } | ||
608 | public bool PostOperation { get { return m_postOperation ; | ||
609 | } | ||
610 | } | ||
611 | |||
612 | public override string yyname { get { return "IncrementDecrementExpression"; }} | ||
613 | public override int yynum { get { return 135; }} | ||
614 | public IncrementDecrementExpression(Parser yyp):base(yyp){}} | ||
615 | |||
616 | public class LSLProgramRoot_1 : LSLProgramRoot { | ||
617 | public LSLProgramRoot_1(Parser yyq):base(yyq, | ||
618 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
619 | , | ||
620 | ((States)(yyq.StackAt(0).m_value)) | ||
621 | ){}} | ||
622 | |||
623 | public class LSLProgramRoot_2 : LSLProgramRoot { | ||
624 | public LSLProgramRoot_2(Parser yyq):base(yyq, | ||
625 | ((States)(yyq.StackAt(0).m_value)) | ||
626 | ){}} | ||
627 | |||
628 | public class GlobalDefinitions_1 : GlobalDefinitions { | ||
629 | public GlobalDefinitions_1(Parser yyq):base(yyq, | ||
630 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
631 | ){}} | ||
632 | |||
633 | public class GlobalDefinitions_2 : GlobalDefinitions { | ||
634 | public GlobalDefinitions_2(Parser yyq):base(yyq, | ||
635 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
636 | , | ||
637 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
638 | ){}} | ||
639 | |||
640 | public class GlobalDefinitions_3 : GlobalDefinitions { | ||
641 | public GlobalDefinitions_3(Parser yyq):base(yyq, | ||
642 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
643 | ){}} | ||
644 | |||
645 | public class GlobalDefinitions_4 : GlobalDefinitions { | ||
646 | public GlobalDefinitions_4(Parser yyq):base(yyq, | ||
647 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
648 | , | ||
649 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
650 | ){}} | ||
651 | |||
652 | public class GlobalVariableDeclaration_1 : GlobalVariableDeclaration { | ||
653 | public GlobalVariableDeclaration_1(Parser yyq):base(yyq, | ||
654 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
655 | ){}} | ||
656 | |||
657 | public class GlobalVariableDeclaration_2 : GlobalVariableDeclaration { | ||
658 | public GlobalVariableDeclaration_2(Parser yyq):base(yyq,new Assignment(((LSLSyntax | ||
659 | )yyq), | ||
660 | ((Declaration)(yyq.StackAt(3).m_value)) | ||
661 | , | ||
662 | ((Expression)(yyq.StackAt(1).m_value)) | ||
663 | , | ||
664 | ((EQUALS)(yyq.StackAt(2).m_value)) | ||
665 | .yytext)){}} | ||
666 | |||
667 | public class GlobalFunctionDefinition_1 : GlobalFunctionDefinition { | ||
668 | public GlobalFunctionDefinition_1(Parser yyq):base(yyq,"void", | ||
669 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
670 | .yytext, | ||
671 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
672 | , | ||
673 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
674 | ){}} | ||
675 | |||
676 | public class GlobalFunctionDefinition_2 : GlobalFunctionDefinition { | ||
677 | public GlobalFunctionDefinition_2(Parser yyq):base(yyq, | ||
678 | ((Typename)(yyq.StackAt(5).m_value)) | ||
679 | .yytext, | ||
680 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
681 | .yytext, | ||
682 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
683 | , | ||
684 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
685 | ){}} | ||
686 | |||
687 | public class States_1 : States { | ||
688 | public States_1(Parser yyq):base(yyq, | ||
689 | ((State)(yyq.StackAt(0).m_value)) | ||
690 | ){}} | ||
691 | |||
692 | public class States_2 : States { | ||
693 | public States_2(Parser yyq):base(yyq, | ||
694 | ((States)(yyq.StackAt(1).m_value)) | ||
695 | , | ||
696 | ((State)(yyq.StackAt(0).m_value)) | ||
697 | ){}} | ||
698 | |||
699 | public class State_1 : State { | ||
700 | public State_1(Parser yyq):base(yyq, | ||
701 | ((DEFAULT_STATE)(yyq.StackAt(3).m_value)) | ||
702 | .yytext, | ||
703 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
704 | ){}} | ||
705 | |||
706 | public class State_2 : State { | ||
707 | public State_2(Parser yyq):base(yyq, | ||
708 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
709 | .yytext, | ||
710 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
711 | ){}} | ||
712 | |||
713 | public class StateBody_1 : StateBody { | ||
714 | public StateBody_1(Parser yyq):base(yyq, | ||
715 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
716 | ){}} | ||
717 | |||
718 | public class StateBody_2 : StateBody { | ||
719 | public StateBody_2(Parser yyq):base(yyq, | ||
720 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
721 | , | ||
722 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
723 | ){}} | ||
724 | |||
725 | public class StateEvent_1 : StateEvent { | ||
726 | public StateEvent_1(Parser yyq):base(yyq, | ||
727 | ((Event)(yyq.StackAt(4).m_value)) | ||
728 | .yytext, | ||
729 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
730 | , | ||
731 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
732 | ){}} | ||
733 | |||
734 | public class ArgumentDeclarationList_1 : ArgumentDeclarationList { | ||
735 | public ArgumentDeclarationList_1(Parser yyq):base(yyq, | ||
736 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
737 | ){}} | ||
738 | |||
739 | public class ArgumentDeclarationList_2 : ArgumentDeclarationList { | ||
740 | public ArgumentDeclarationList_2(Parser yyq):base(yyq, | ||
741 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
742 | , | ||
743 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
744 | ){}} | ||
745 | |||
746 | public class Declaration_1 : Declaration { | ||
747 | public Declaration_1(Parser yyq):base(yyq, | ||
748 | ((Typename)(yyq.StackAt(1).m_value)) | ||
749 | .yytext, | ||
750 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
751 | .yytext){}} | ||
752 | |||
753 | public class CompoundStatement_1 : CompoundStatement { | ||
754 | public CompoundStatement_1(Parser yyq):base(yyq){}} | ||
755 | |||
756 | public class CompoundStatement_2 : CompoundStatement { | ||
757 | public CompoundStatement_2(Parser yyq):base(yyq, | ||
758 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
759 | ){}} | ||
760 | |||
761 | public class StatementList_1 : StatementList { | ||
762 | public StatementList_1(Parser yyq):base(yyq, | ||
763 | ((Statement)(yyq.StackAt(0).m_value)) | ||
764 | ){}} | ||
765 | |||
766 | public class StatementList_2 : StatementList { | ||
767 | public StatementList_2(Parser yyq):base(yyq, | ||
768 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
769 | , | ||
770 | ((Statement)(yyq.StackAt(0).m_value)) | ||
771 | ){}} | ||
772 | |||
773 | public class Statement_1 : Statement { | ||
774 | public Statement_1(Parser yyq):base(yyq, | ||
775 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
776 | ){}} | ||
777 | |||
778 | public class Statement_2 : Statement { | ||
779 | public Statement_2(Parser yyq):base(yyq, | ||
780 | ((Assignment)(yyq.StackAt(1).m_value)) | ||
781 | ){}} | ||
782 | |||
783 | public class Statement_3 : Statement { | ||
784 | public Statement_3(Parser yyq):base(yyq, | ||
785 | ((Expression)(yyq.StackAt(1).m_value)) | ||
786 | ){}} | ||
787 | |||
788 | public class Statement_4 : Statement { | ||
789 | public Statement_4(Parser yyq):base(yyq, | ||
790 | ((ReturnStatement)(yyq.StackAt(1).m_value)) | ||
791 | ){}} | ||
792 | |||
793 | public class Statement_5 : Statement { | ||
794 | public Statement_5(Parser yyq):base(yyq, | ||
795 | ((StateChange)(yyq.StackAt(1).m_value)) | ||
796 | ){}} | ||
797 | |||
798 | public class Statement_6 : Statement { | ||
799 | public Statement_6(Parser yyq):base(yyq, | ||
800 | ((IfStatement)(yyq.StackAt(0).m_value)) | ||
801 | ){}} | ||
802 | |||
803 | public class Statement_7 : Statement { | ||
804 | public Statement_7(Parser yyq):base(yyq, | ||
805 | ((WhileStatement)(yyq.StackAt(0).m_value)) | ||
806 | ){}} | ||
807 | |||
808 | public class Statement_8 : Statement { | ||
809 | public Statement_8(Parser yyq):base(yyq, | ||
810 | ((DoWhileStatement)(yyq.StackAt(0).m_value)) | ||
811 | ){}} | ||
812 | |||
813 | public class Statement_9 : Statement { | ||
814 | public Statement_9(Parser yyq):base(yyq, | ||
815 | ((ForLoop)(yyq.StackAt(0).m_value)) | ||
816 | ){}} | ||
817 | |||
818 | public class Statement_10 : Statement { | ||
819 | public Statement_10(Parser yyq):base(yyq, | ||
820 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
821 | ){}} | ||
822 | |||
823 | public class StateChange_1 : StateChange { | ||
824 | public StateChange_1(Parser yyq):base(yyq, | ||
825 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
826 | .yytext){}} | ||
827 | |||
828 | public class StateChange_2 : StateChange { | ||
829 | public StateChange_2(Parser yyq):base(yyq, | ||
830 | ((DEFAULT_STATE)(yyq.StackAt(0).m_value)) | ||
831 | .yytext){}} | ||
832 | |||
833 | public class IfStatement_1 : IfStatement { | ||
834 | public IfStatement_1(Parser yyq):base(yyq, | ||
835 | ((Expression)(yyq.StackAt(2).m_value)) | ||
836 | , | ||
837 | ((Statement)(yyq.StackAt(0).m_value)) | ||
838 | ){}} | ||
839 | |||
840 | public class IfStatement_2 : IfStatement { | ||
841 | public IfStatement_2(Parser yyq):base(yyq, | ||
842 | ((Expression)(yyq.StackAt(4).m_value)) | ||
843 | , | ||
844 | ((Statement)(yyq.StackAt(2).m_value)) | ||
845 | , | ||
846 | ((Statement)(yyq.StackAt(0).m_value)) | ||
847 | ){}} | ||
848 | |||
849 | public class WhileStatement_1 : WhileStatement { | ||
850 | public WhileStatement_1(Parser yyq):base(yyq, | ||
851 | ((Expression)(yyq.StackAt(2).m_value)) | ||
852 | , | ||
853 | ((Statement)(yyq.StackAt(0).m_value)) | ||
854 | ){}} | ||
855 | |||
856 | public class DoWhileStatement_1 : DoWhileStatement { | ||
857 | public DoWhileStatement_1(Parser yyq):base(yyq, | ||
858 | ((Expression)(yyq.StackAt(2).m_value)) | ||
859 | , | ||
860 | ((Statement)(yyq.StackAt(5).m_value)) | ||
861 | ){}} | ||
862 | |||
863 | public class ForLoop_1 : ForLoop { | ||
864 | public ForLoop_1(Parser yyq):base(yyq, | ||
865 | ((ForLoopStatement)(yyq.StackAt(6).m_value)) | ||
866 | , | ||
867 | ((Expression)(yyq.StackAt(4).m_value)) | ||
868 | , | ||
869 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
870 | , | ||
871 | ((Statement)(yyq.StackAt(0).m_value)) | ||
872 | ){}} | ||
873 | |||
874 | public class ForLoopStatement_1 : ForLoopStatement { | ||
875 | public ForLoopStatement_1(Parser yyq):base(yyq, | ||
876 | ((Expression)(yyq.StackAt(0).m_value)) | ||
877 | ){}} | ||
878 | |||
879 | public class ForLoopStatement_2 : ForLoopStatement { | ||
880 | public ForLoopStatement_2(Parser yyq):base(yyq, | ||
881 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
882 | ){}} | ||
883 | |||
884 | public class ForLoopStatement_3 : ForLoopStatement { | ||
885 | public ForLoopStatement_3(Parser yyq):base(yyq, | ||
886 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
887 | , | ||
888 | ((Expression)(yyq.StackAt(0).m_value)) | ||
889 | ){}} | ||
890 | |||
891 | public class ForLoopStatement_4 : ForLoopStatement { | ||
892 | public ForLoopStatement_4(Parser yyq):base(yyq, | ||
893 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
894 | , | ||
895 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
896 | ){}} | ||
897 | |||
898 | public class Assignment_1 : Assignment { | ||
899 | public Assignment_1(Parser yyq):base(yyq, | ||
900 | ((Declaration)(yyq.StackAt(2).m_value)) | ||
901 | , | ||
902 | ((Expression)(yyq.StackAt(0).m_value)) | ||
903 | , | ||
904 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
905 | .yytext){}} | ||
906 | |||
907 | public class Assignment_2 : Assignment { | ||
908 | public Assignment_2(Parser yyq):base(yyq, | ||
909 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
910 | , | ||
911 | ((Expression)(yyq.StackAt(0).m_value)) | ||
912 | , | ||
913 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
914 | .yytext){}} | ||
915 | |||
916 | public class Assignment_3 : Assignment { | ||
917 | public Assignment_3(Parser yyq):base(yyq, | ||
918 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
919 | , | ||
920 | ((Expression)(yyq.StackAt(0).m_value)) | ||
921 | , | ||
922 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
923 | .yytext){}} | ||
924 | |||
925 | public class Assignment_4 : Assignment { | ||
926 | public Assignment_4(Parser yyq):base(yyq, | ||
927 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
928 | , | ||
929 | ((Expression)(yyq.StackAt(0).m_value)) | ||
930 | , | ||
931 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
932 | .yytext){}} | ||
933 | |||
934 | public class Assignment_5 : Assignment { | ||
935 | public Assignment_5(Parser yyq):base(yyq, | ||
936 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
937 | , | ||
938 | ((Expression)(yyq.StackAt(0).m_value)) | ||
939 | , | ||
940 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
941 | .yytext){}} | ||
942 | |||
943 | public class Assignment_6 : Assignment { | ||
944 | public Assignment_6(Parser yyq):base(yyq, | ||
945 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
946 | , | ||
947 | ((Expression)(yyq.StackAt(0).m_value)) | ||
948 | , | ||
949 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
950 | .yytext){}} | ||
951 | |||
952 | public class Assignment_7 : Assignment { | ||
953 | public Assignment_7(Parser yyq):base(yyq, | ||
954 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
955 | , | ||
956 | ((Expression)(yyq.StackAt(0).m_value)) | ||
957 | , | ||
958 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
959 | .yytext){}} | ||
960 | |||
961 | public class Assignment_8 : Assignment { | ||
962 | public Assignment_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
963 | )yyq), | ||
964 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
965 | .yytext, | ||
966 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
967 | .yytext), | ||
968 | ((Expression)(yyq.StackAt(0).m_value)) | ||
969 | , | ||
970 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
971 | .yytext){}} | ||
972 | |||
973 | public class ReturnStatement_1 : ReturnStatement { | ||
974 | public ReturnStatement_1(Parser yyq):base(yyq, | ||
975 | ((Expression)(yyq.StackAt(0).m_value)) | ||
976 | ){}} | ||
977 | |||
978 | public class ReturnStatement_2 : ReturnStatement { | ||
979 | public ReturnStatement_2(Parser yyq):base(yyq){}} | ||
980 | |||
981 | public class Constant_1 : Constant { | ||
982 | public Constant_1(Parser yyq):base(yyq,"integer", | ||
983 | ((INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
984 | .yytext){}} | ||
985 | |||
986 | public class Constant_2 : Constant { | ||
987 | public Constant_2(Parser yyq):base(yyq,"integer", | ||
988 | ((HEX_INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
989 | .yytext){}} | ||
990 | |||
991 | public class Constant_3 : Constant { | ||
992 | public Constant_3(Parser yyq):base(yyq,"float", | ||
993 | ((FLOAT_CONSTANT)(yyq.StackAt(0).m_value)) | ||
994 | .yytext){}} | ||
995 | |||
996 | public class Constant_4 : Constant { | ||
997 | public Constant_4(Parser yyq):base(yyq,"string", | ||
998 | ((STRING_CONSTANT)(yyq.StackAt(0).m_value)) | ||
999 | .yytext){}} | ||
1000 | |||
1001 | public class VectorConstant_1 : VectorConstant { | ||
1002 | public VectorConstant_1(Parser yyq):base(yyq, | ||
1003 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1004 | , | ||
1005 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1006 | , | ||
1007 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1008 | ){}} | ||
1009 | |||
1010 | public class RotationConstant_1 : RotationConstant { | ||
1011 | public RotationConstant_1(Parser yyq):base(yyq, | ||
1012 | ((Expression)(yyq.StackAt(7).m_value)) | ||
1013 | , | ||
1014 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1015 | , | ||
1016 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1017 | , | ||
1018 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1019 | ){}} | ||
1020 | |||
1021 | public class ListConstant_1 : ListConstant { | ||
1022 | public ListConstant_1(Parser yyq):base(yyq, | ||
1023 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1024 | ){}} | ||
1025 | |||
1026 | public class ConstantExpression_1 : ConstantExpression { | ||
1027 | public ConstantExpression_1(Parser yyq):base(yyq, | ||
1028 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1029 | ){}} | ||
1030 | |||
1031 | public class IdentExpression_1 : IdentExpression { | ||
1032 | public IdentExpression_1(Parser yyq):base(yyq, | ||
1033 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1034 | .yytext){}} | ||
1035 | |||
1036 | public class IdentDotExpression_1 : IdentDotExpression { | ||
1037 | public IdentDotExpression_1(Parser yyq):base(yyq, | ||
1038 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1039 | .yytext, | ||
1040 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1041 | .yytext){}} | ||
1042 | |||
1043 | public class IncrementDecrementExpression_1 : IncrementDecrementExpression { | ||
1044 | public IncrementDecrementExpression_1(Parser yyq):base(yyq, | ||
1045 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1046 | .yytext, | ||
1047 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1048 | .yytext, true){}} | ||
1049 | |||
1050 | public class IncrementDecrementExpression_2 : IncrementDecrementExpression { | ||
1051 | public IncrementDecrementExpression_2(Parser yyq):base(yyq, | ||
1052 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1053 | .yytext, | ||
1054 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1055 | .yytext, true){}} | ||
1056 | |||
1057 | public class IncrementDecrementExpression_3 : IncrementDecrementExpression { | ||
1058 | public IncrementDecrementExpression_3(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1059 | )yyq), | ||
1060 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1061 | .yytext, | ||
1062 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1063 | .yytext), | ||
1064 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1065 | .yytext, true){}} | ||
1066 | |||
1067 | public class IncrementDecrementExpression_4 : IncrementDecrementExpression { | ||
1068 | public IncrementDecrementExpression_4(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1069 | )yyq), | ||
1070 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1071 | .yytext, | ||
1072 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1073 | .yytext), | ||
1074 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1075 | .yytext, true){}} | ||
1076 | |||
1077 | public class IncrementDecrementExpression_5 : IncrementDecrementExpression { | ||
1078 | public IncrementDecrementExpression_5(Parser yyq):base(yyq, | ||
1079 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1080 | .yytext, | ||
1081 | ((INCREMENT)(yyq.StackAt(1).m_value)) | ||
1082 | .yytext, false){}} | ||
1083 | |||
1084 | public class IncrementDecrementExpression_6 : IncrementDecrementExpression { | ||
1085 | public IncrementDecrementExpression_6(Parser yyq):base(yyq, | ||
1086 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1087 | .yytext, | ||
1088 | ((DECREMENT)(yyq.StackAt(1).m_value)) | ||
1089 | .yytext, false){}} | ||
1090 | |||
1091 | public class IncrementDecrementExpression_7 : IncrementDecrementExpression { | ||
1092 | public IncrementDecrementExpression_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1093 | )yyq), | ||
1094 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1095 | .yytext, | ||
1096 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1097 | .yytext), | ||
1098 | ((INCREMENT)(yyq.StackAt(3).m_value)) | ||
1099 | .yytext, false){}} | ||
1100 | |||
1101 | public class IncrementDecrementExpression_8 : IncrementDecrementExpression { | ||
1102 | public IncrementDecrementExpression_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1103 | )yyq), | ||
1104 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1105 | .yytext, | ||
1106 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1107 | .yytext), | ||
1108 | ((DECREMENT)(yyq.StackAt(3).m_value)) | ||
1109 | .yytext, false){}} | ||
1110 | |||
1111 | public class FunctionCallExpression_1 : FunctionCallExpression { | ||
1112 | public FunctionCallExpression_1(Parser yyq):base(yyq, | ||
1113 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1114 | ){}} | ||
1115 | |||
1116 | public class BinaryExpression_1 : BinaryExpression { | ||
1117 | public BinaryExpression_1(Parser yyq):base(yyq, | ||
1118 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1119 | , | ||
1120 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1121 | , | ||
1122 | ((PLUS)(yyq.StackAt(1).m_value)) | ||
1123 | .yytext){}} | ||
1124 | |||
1125 | public class BinaryExpression_2 : BinaryExpression { | ||
1126 | public BinaryExpression_2(Parser yyq):base(yyq, | ||
1127 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1128 | , | ||
1129 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1130 | , | ||
1131 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1132 | .yytext){}} | ||
1133 | |||
1134 | public class BinaryExpression_3 : BinaryExpression { | ||
1135 | public BinaryExpression_3(Parser yyq):base(yyq, | ||
1136 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1137 | , | ||
1138 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1139 | , | ||
1140 | ((STAR)(yyq.StackAt(1).m_value)) | ||
1141 | .yytext){}} | ||
1142 | |||
1143 | public class BinaryExpression_4 : BinaryExpression { | ||
1144 | public BinaryExpression_4(Parser yyq):base(yyq, | ||
1145 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1146 | , | ||
1147 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1148 | , | ||
1149 | ((SLASH)(yyq.StackAt(1).m_value)) | ||
1150 | .yytext){}} | ||
1151 | |||
1152 | public class BinaryExpression_5 : BinaryExpression { | ||
1153 | public BinaryExpression_5(Parser yyq):base(yyq, | ||
1154 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1155 | , | ||
1156 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1157 | , | ||
1158 | ((PERCENT)(yyq.StackAt(1).m_value)) | ||
1159 | .yytext){}} | ||
1160 | |||
1161 | public class BinaryExpression_6 : BinaryExpression { | ||
1162 | public BinaryExpression_6(Parser yyq):base(yyq, | ||
1163 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1164 | , | ||
1165 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1166 | , | ||
1167 | ((AMP)(yyq.StackAt(1).m_value)) | ||
1168 | .yytext){}} | ||
1169 | |||
1170 | public class BinaryExpression_7 : BinaryExpression { | ||
1171 | public BinaryExpression_7(Parser yyq):base(yyq, | ||
1172 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1173 | , | ||
1174 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1175 | , | ||
1176 | ((STROKE)(yyq.StackAt(1).m_value)) | ||
1177 | .yytext){}} | ||
1178 | |||
1179 | public class BinaryExpression_8 : BinaryExpression { | ||
1180 | public BinaryExpression_8(Parser yyq):base(yyq, | ||
1181 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1182 | , | ||
1183 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1184 | , | ||
1185 | ((CARET)(yyq.StackAt(1).m_value)) | ||
1186 | .yytext){}} | ||
1187 | |||
1188 | public class BinaryExpression_9 : BinaryExpression { | ||
1189 | public BinaryExpression_9(Parser yyq):base(yyq, | ||
1190 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1191 | , | ||
1192 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1193 | , | ||
1194 | ((RIGHT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1195 | .yytext){}} | ||
1196 | |||
1197 | public class BinaryExpression_10 : BinaryExpression { | ||
1198 | public BinaryExpression_10(Parser yyq):base(yyq, | ||
1199 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1200 | , | ||
1201 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1202 | , | ||
1203 | ((LEFT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1204 | .yytext){}} | ||
1205 | |||
1206 | public class BinaryExpression_11 : BinaryExpression { | ||
1207 | public BinaryExpression_11(Parser yyq):base(yyq, | ||
1208 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1209 | , | ||
1210 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1211 | , | ||
1212 | ((EQUALS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1213 | .yytext){}} | ||
1214 | |||
1215 | public class BinaryExpression_12 : BinaryExpression { | ||
1216 | public BinaryExpression_12(Parser yyq):base(yyq, | ||
1217 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1218 | , | ||
1219 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1220 | , | ||
1221 | ((EXCLAMATION_EQUALS)(yyq.StackAt(1).m_value)) | ||
1222 | .yytext){}} | ||
1223 | |||
1224 | public class BinaryExpression_13 : BinaryExpression { | ||
1225 | public BinaryExpression_13(Parser yyq):base(yyq, | ||
1226 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1227 | , | ||
1228 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1229 | , | ||
1230 | ((LESS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1231 | .yytext){}} | ||
1232 | |||
1233 | public class BinaryExpression_14 : BinaryExpression { | ||
1234 | public BinaryExpression_14(Parser yyq):base(yyq, | ||
1235 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1236 | , | ||
1237 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1238 | , | ||
1239 | ((GREATER_EQUALS)(yyq.StackAt(1).m_value)) | ||
1240 | .yytext){}} | ||
1241 | |||
1242 | public class BinaryExpression_15 : BinaryExpression { | ||
1243 | public BinaryExpression_15(Parser yyq):base(yyq, | ||
1244 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1245 | , | ||
1246 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1247 | , | ||
1248 | ((AMP_AMP)(yyq.StackAt(1).m_value)) | ||
1249 | .yytext){}} | ||
1250 | |||
1251 | public class BinaryExpression_16 : BinaryExpression { | ||
1252 | public BinaryExpression_16(Parser yyq):base(yyq, | ||
1253 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1254 | , | ||
1255 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1256 | , | ||
1257 | ((STROKE_STROKE)(yyq.StackAt(1).m_value)) | ||
1258 | .yytext){}} | ||
1259 | |||
1260 | public class BinaryExpression_17 : BinaryExpression { | ||
1261 | public BinaryExpression_17(Parser yyq):base(yyq, | ||
1262 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1263 | , | ||
1264 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1265 | , | ||
1266 | ((LEFT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1267 | .yytext){}} | ||
1268 | |||
1269 | public class BinaryExpression_18 : BinaryExpression { | ||
1270 | public BinaryExpression_18(Parser yyq):base(yyq, | ||
1271 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1272 | , | ||
1273 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1274 | , | ||
1275 | ((RIGHT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1276 | .yytext){}} | ||
1277 | |||
1278 | public class UnaryExpression_1 : UnaryExpression { | ||
1279 | public UnaryExpression_1(Parser yyq):base(yyq, | ||
1280 | ((EXCLAMATION)(yyq.StackAt(1).m_value)) | ||
1281 | .yytext, | ||
1282 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1283 | ){}} | ||
1284 | |||
1285 | public class UnaryExpression_2 : UnaryExpression { | ||
1286 | public UnaryExpression_2(Parser yyq):base(yyq, | ||
1287 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1288 | .yytext, | ||
1289 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1290 | ){}} | ||
1291 | |||
1292 | public class UnaryExpression_3 : UnaryExpression { | ||
1293 | public UnaryExpression_3(Parser yyq):base(yyq, | ||
1294 | ((TILDE)(yyq.StackAt(1).m_value)) | ||
1295 | .yytext, | ||
1296 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1297 | ){}} | ||
1298 | |||
1299 | public class ParenthesisExpression_1 : ParenthesisExpression { | ||
1300 | public ParenthesisExpression_1(Parser yyq):base(yyq, | ||
1301 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1302 | ){}} | ||
1303 | |||
1304 | public class TypecastExpression_1 : TypecastExpression { | ||
1305 | public TypecastExpression_1(Parser yyq):base(yyq, | ||
1306 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1307 | .yytext, | ||
1308 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1309 | ){}} | ||
1310 | |||
1311 | public class TypecastExpression_2 : TypecastExpression { | ||
1312 | public TypecastExpression_2(Parser yyq):base(yyq, | ||
1313 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1314 | .yytext, new IdentExpression(((LSLSyntax | ||
1315 | )yyq), | ||
1316 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1317 | .yytext)){}} | ||
1318 | |||
1319 | public class TypecastExpression_3 : TypecastExpression { | ||
1320 | public TypecastExpression_3(Parser yyq):base(yyq, | ||
1321 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1322 | .yytext, new IdentDotExpression(((LSLSyntax | ||
1323 | )yyq), | ||
1324 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1325 | .yytext, | ||
1326 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1327 | .yytext)){}} | ||
1328 | |||
1329 | public class TypecastExpression_4 : TypecastExpression { | ||
1330 | public TypecastExpression_4(Parser yyq):base(yyq, | ||
1331 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1332 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1333 | )yyq), | ||
1334 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1335 | .yytext, | ||
1336 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1337 | .yytext, true)){}} | ||
1338 | |||
1339 | public class TypecastExpression_5 : TypecastExpression { | ||
1340 | public TypecastExpression_5(Parser yyq):base(yyq, | ||
1341 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1342 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1343 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1344 | )yyq), | ||
1345 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1346 | .yytext, | ||
1347 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1348 | .yytext), | ||
1349 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1350 | .yytext, true)){}} | ||
1351 | |||
1352 | public class TypecastExpression_6 : TypecastExpression { | ||
1353 | public TypecastExpression_6(Parser yyq):base(yyq, | ||
1354 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1355 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1356 | )yyq), | ||
1357 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1358 | .yytext, | ||
1359 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1360 | .yytext, true)){}} | ||
1361 | |||
1362 | public class TypecastExpression_7 : TypecastExpression { | ||
1363 | public TypecastExpression_7(Parser yyq):base(yyq, | ||
1364 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1365 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1366 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1367 | )yyq), | ||
1368 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1369 | .yytext, | ||
1370 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1371 | .yytext), | ||
1372 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1373 | .yytext, true)){}} | ||
1374 | |||
1375 | public class TypecastExpression_8 : TypecastExpression { | ||
1376 | public TypecastExpression_8(Parser yyq):base(yyq, | ||
1377 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1378 | .yytext, | ||
1379 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1380 | ){}} | ||
1381 | |||
1382 | public class TypecastExpression_9 : TypecastExpression { | ||
1383 | public TypecastExpression_9(Parser yyq):base(yyq, | ||
1384 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1385 | .yytext, | ||
1386 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1387 | ){}} | ||
1388 | |||
1389 | public class FunctionCall_1 : FunctionCall { | ||
1390 | public FunctionCall_1(Parser yyq):base(yyq, | ||
1391 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1392 | .yytext, | ||
1393 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1394 | ){}} | ||
1395 | |||
1396 | public class ArgumentList_1 : ArgumentList { | ||
1397 | public ArgumentList_1(Parser yyq):base(yyq, | ||
1398 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1399 | ){}} | ||
1400 | |||
1401 | public class ArgumentList_2 : ArgumentList { | ||
1402 | public ArgumentList_2(Parser yyq):base(yyq, | ||
1403 | ((ArgumentList)(yyq.StackAt(2).m_value)) | ||
1404 | , | ||
1405 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1406 | ){}} | ||
1407 | |||
1408 | public class ExpressionArgument_1 : ExpressionArgument { | ||
1409 | public ExpressionArgument_1(Parser yyq):base(yyq, | ||
1410 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1411 | ){}} | ||
1412 | |||
1413 | public class Typename_1 : Typename { | ||
1414 | public Typename_1(Parser yyq):base(yyq, | ||
1415 | ((INTEGER_TYPE)(yyq.StackAt(0).m_value)) | ||
1416 | .yytext){}} | ||
1417 | |||
1418 | public class Typename_2 : Typename { | ||
1419 | public Typename_2(Parser yyq):base(yyq, | ||
1420 | ((FLOAT_TYPE)(yyq.StackAt(0).m_value)) | ||
1421 | .yytext){}} | ||
1422 | |||
1423 | public class Typename_3 : Typename { | ||
1424 | public Typename_3(Parser yyq):base(yyq, | ||
1425 | ((STRING_TYPE)(yyq.StackAt(0).m_value)) | ||
1426 | .yytext){}} | ||
1427 | |||
1428 | public class Typename_4 : Typename { | ||
1429 | public Typename_4(Parser yyq):base(yyq, | ||
1430 | ((KEY_TYPE)(yyq.StackAt(0).m_value)) | ||
1431 | .yytext){}} | ||
1432 | |||
1433 | public class Typename_5 : Typename { | ||
1434 | public Typename_5(Parser yyq):base(yyq, | ||
1435 | ((VECTOR_TYPE)(yyq.StackAt(0).m_value)) | ||
1436 | .yytext){}} | ||
1437 | |||
1438 | public class Typename_6 : Typename { | ||
1439 | public Typename_6(Parser yyq):base(yyq, | ||
1440 | ((ROTATION_TYPE)(yyq.StackAt(0).m_value)) | ||
1441 | .yytext){}} | ||
1442 | |||
1443 | public class Typename_7 : Typename { | ||
1444 | public Typename_7(Parser yyq):base(yyq, | ||
1445 | ((LIST_TYPE)(yyq.StackAt(0).m_value)) | ||
1446 | .yytext){}} | ||
1447 | |||
1448 | public class Event_1 : Event { | ||
1449 | public Event_1(Parser yyq):base(yyq, | ||
1450 | ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1451 | .yytext){}} | ||
1452 | |||
1453 | public class Event_2 : Event { | ||
1454 | public Event_2(Parser yyq):base(yyq, | ||
1455 | ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1456 | .yytext){}} | ||
1457 | |||
1458 | public class Event_3 : Event { | ||
1459 | public Event_3(Parser yyq):base(yyq, | ||
1460 | ((ATTACH_EVENT)(yyq.StackAt(0).m_value)) | ||
1461 | .yytext){}} | ||
1462 | |||
1463 | public class Event_4 : Event { | ||
1464 | public Event_4(Parser yyq):base(yyq, | ||
1465 | ((CHANGED_EVENT)(yyq.StackAt(0).m_value)) | ||
1466 | .yytext){}} | ||
1467 | |||
1468 | public class Event_5 : Event { | ||
1469 | public Event_5(Parser yyq):base(yyq, | ||
1470 | ((COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1471 | .yytext){}} | ||
1472 | |||
1473 | public class Event_6 : Event { | ||
1474 | public Event_6(Parser yyq):base(yyq, | ||
1475 | ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1476 | .yytext){}} | ||
1477 | |||
1478 | public class Event_7 : Event { | ||
1479 | public Event_7(Parser yyq):base(yyq, | ||
1480 | ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1481 | .yytext){}} | ||
1482 | |||
1483 | public class Event_8 : Event { | ||
1484 | public Event_8(Parser yyq):base(yyq, | ||
1485 | ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) | ||
1486 | .yytext){}} | ||
1487 | |||
1488 | public class Event_9 : Event { | ||
1489 | public Event_9(Parser yyq):base(yyq, | ||
1490 | ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) | ||
1491 | .yytext){}} | ||
1492 | |||
1493 | public class Event_10 : Event { | ||
1494 | public Event_10(Parser yyq):base(yyq, | ||
1495 | ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) | ||
1496 | .yytext){}} | ||
1497 | |||
1498 | public class Event_11 : Event { | ||
1499 | public Event_11(Parser yyq):base(yyq, | ||
1500 | ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) | ||
1501 | .yytext){}} | ||
1502 | |||
1503 | public class Event_12 : Event { | ||
1504 | public Event_12(Parser yyq):base(yyq, | ||
1505 | ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1506 | .yytext){}} | ||
1507 | |||
1508 | public class Event_13 : Event { | ||
1509 | public Event_13(Parser yyq):base(yyq, | ||
1510 | ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1511 | .yytext){}} | ||
1512 | |||
1513 | public class Event_14 : Event { | ||
1514 | public Event_14(Parser yyq):base(yyq, | ||
1515 | ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1516 | .yytext){}} | ||
1517 | |||
1518 | public class Event_15 : Event { | ||
1519 | public Event_15(Parser yyq):base(yyq, | ||
1520 | ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) | ||
1521 | .yytext){}} | ||
1522 | |||
1523 | public class Event_16 : Event { | ||
1524 | public Event_16(Parser yyq):base(yyq, | ||
1525 | ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) | ||
1526 | .yytext){}} | ||
1527 | |||
1528 | public class Event_17 : Event { | ||
1529 | public Event_17(Parser yyq):base(yyq, | ||
1530 | ((MONEY_EVENT)(yyq.StackAt(0).m_value)) | ||
1531 | .yytext){}} | ||
1532 | |||
1533 | public class Event_18 : Event { | ||
1534 | public Event_18(Parser yyq):base(yyq, | ||
1535 | ((MOVING_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1536 | .yytext){}} | ||
1537 | |||
1538 | public class Event_19 : Event { | ||
1539 | public Event_19(Parser yyq):base(yyq, | ||
1540 | ((MOVING_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1541 | .yytext){}} | ||
1542 | |||
1543 | public class Event_20 : Event { | ||
1544 | public Event_20(Parser yyq):base(yyq, | ||
1545 | ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1546 | .yytext){}} | ||
1547 | |||
1548 | public class Event_21 : Event { | ||
1549 | public Event_21(Parser yyq):base(yyq, | ||
1550 | ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1551 | .yytext){}} | ||
1552 | |||
1553 | public class Event_22 : Event { | ||
1554 | public Event_22(Parser yyq):base(yyq, | ||
1555 | ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1556 | .yytext){}} | ||
1557 | |||
1558 | public class Event_23 : Event { | ||
1559 | public Event_23(Parser yyq):base(yyq, | ||
1560 | ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1561 | .yytext){}} | ||
1562 | |||
1563 | public class Event_24 : Event { | ||
1564 | public Event_24(Parser yyq):base(yyq, | ||
1565 | ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1566 | .yytext){}} | ||
1567 | |||
1568 | public class Event_25 : Event { | ||
1569 | public Event_25(Parser yyq):base(yyq, | ||
1570 | ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) | ||
1571 | .yytext){}} | ||
1572 | |||
1573 | public class Event_26 : Event { | ||
1574 | public Event_26(Parser yyq):base(yyq, | ||
1575 | ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) | ||
1576 | .yytext){}} | ||
1577 | |||
1578 | public class Event_27 : Event { | ||
1579 | public Event_27(Parser yyq):base(yyq, | ||
1580 | ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1581 | .yytext){}} | ||
1582 | |||
1583 | public class Event_28 : Event { | ||
1584 | public Event_28(Parser yyq):base(yyq, | ||
1585 | ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) | ||
1586 | .yytext){}} | ||
1587 | |||
1588 | public class Event_29 : Event { | ||
1589 | public Event_29(Parser yyq):base(yyq, | ||
1590 | ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value)) | ||
1591 | .yytext){}} | ||
1592 | |||
1593 | public class Event_30 : Event { | ||
1594 | public Event_30(Parser yyq):base(yyq, | ||
1595 | ((TIMER_EVENT)(yyq.StackAt(0).m_value)) | ||
1596 | .yytext){}} | ||
1597 | |||
1598 | public class Event_31 : Event { | ||
1599 | public Event_31(Parser yyq):base(yyq, | ||
1600 | ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) | ||
1601 | .yytext){}} | ||
1602 | |||
1603 | public class Event_32 : Event { | ||
1604 | public Event_32(Parser yyq):base(yyq, | ||
1605 | ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1606 | .yytext){}} | ||
1607 | |||
1608 | public class Event_33 : Event { | ||
1609 | public Event_33(Parser yyq):base(yyq, | ||
1610 | ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1611 | .yytext){}} | ||
1612 | public class yyLSLSyntax | ||
1613 | : YyParser { | ||
1614 | public override object Action(Parser yyq,SYMBOL yysym, int yyact) { | ||
1615 | switch(yyact) { | ||
1616 | case -1: break; //// keep compiler happy | ||
1617 | } return null; } | ||
1618 | |||
1619 | public class ArgumentDeclarationList_3 : ArgumentDeclarationList { | ||
1620 | public ArgumentDeclarationList_3(Parser yyq):base(yyq){}} | ||
1621 | |||
1622 | public class ArgumentList_3 : ArgumentList { | ||
1623 | public ArgumentList_3(Parser yyq):base(yyq){}} | ||
1624 | |||
1625 | public class Statement_11 : Statement { | ||
1626 | public Statement_11(Parser yyq):base(yyq){}} | ||
1627 | |||
1628 | public class ArgumentList_4 : ArgumentList { | ||
1629 | public ArgumentList_4(Parser yyq):base(yyq){}} | ||
1630 | |||
1631 | public class ArgumentDeclarationList_4 : ArgumentDeclarationList { | ||
1632 | public ArgumentDeclarationList_4(Parser yyq):base(yyq){}} | ||
1633 | |||
1634 | public class ArgumentDeclarationList_5 : ArgumentDeclarationList { | ||
1635 | public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} | ||
1636 | public yyLSLSyntax | ||
1637 | ():base() { arr = new int[] { | ||
1638 | 101,4,6,52,0, | ||
1639 | 46,0,53,0,102, | ||
1640 | 20,103,4,28,76, | ||
1641 | 0,83,0,76,0, | ||
1642 | 80,0,114,0,111, | ||
1643 | 0,103,0,114,0, | ||
1644 | 97,0,109,0,82, | ||
1645 | 0,111,0,111,0, | ||
1646 | 116,0,1,95,1, | ||
1647 | 2,104,18,1,2260, | ||
1648 | 102,2,0,105,5, | ||
1649 | 269,1,0,106,18, | ||
1650 | 1,0,0,2,0, | ||
1651 | 1,1,107,18,1, | ||
1652 | 1,108,20,109,4, | ||
1653 | 18,76,0,73,0, | ||
1654 | 83,0,84,0,95, | ||
1655 | 0,84,0,89,0, | ||
1656 | 80,0,69,0,1, | ||
1657 | 57,1,1,2,0, | ||
1658 | 1,2,110,18,1, | ||
1659 | 2,111,20,112,4, | ||
1660 | 26,82,0,79,0, | ||
1661 | 84,0,65,0,84, | ||
1662 | 0,73,0,79,0, | ||
1663 | 78,0,95,0,84, | ||
1664 | 0,89,0,80,0, | ||
1665 | 69,0,1,56,1, | ||
1666 | 1,2,0,1,3, | ||
1667 | 113,18,1,3,114, | ||
1668 | 20,115,4,22,86, | ||
1669 | 0,69,0,67,0, | ||
1670 | 84,0,79,0,82, | ||
1671 | 0,95,0,84,0, | ||
1672 | 89,0,80,0,69, | ||
1673 | 0,1,55,1,1, | ||
1674 | 2,0,1,4,116, | ||
1675 | 18,1,4,117,20, | ||
1676 | 118,4,16,75,0, | ||
1677 | 69,0,89,0,95, | ||
1678 | 0,84,0,89,0, | ||
1679 | 80,0,69,0,1, | ||
1680 | 54,1,1,2,0, | ||
1681 | 1,5,119,18,1, | ||
1682 | 5,120,20,121,4, | ||
1683 | 22,83,0,84,0, | ||
1684 | 82,0,73,0,78, | ||
1685 | 0,71,0,95,0, | ||
1686 | 84,0,89,0,80, | ||
1687 | 0,69,0,1,53, | ||
1688 | 1,1,2,0,1, | ||
1689 | 6,122,18,1,6, | ||
1690 | 123,20,124,4,20, | ||
1691 | 70,0,76,0,79, | ||
1692 | 0,65,0,84,0, | ||
1693 | 95,0,84,0,89, | ||
1694 | 0,80,0,69,0, | ||
1695 | 1,52,1,1,2, | ||
1696 | 0,1,7,125,18, | ||
1697 | 1,7,126,20,127, | ||
1698 | 4,24,73,0,78, | ||
1699 | 0,84,0,69,0, | ||
1700 | 71,0,69,0,82, | ||
1701 | 0,95,0,84,0, | ||
1702 | 89,0,80,0,69, | ||
1703 | 0,1,51,1,1, | ||
1704 | 2,0,1,8,128, | ||
1705 | 18,1,8,129,20, | ||
1706 | 130,4,16,84,0, | ||
1707 | 121,0,112,0,101, | ||
1708 | 0,110,0,97,0, | ||
1709 | 109,0,101,0,1, | ||
1710 | 105,1,2,2,0, | ||
1711 | 1,9,131,18,1, | ||
1712 | 9,132,20,133,4, | ||
1713 | 10,73,0,68,0, | ||
1714 | 69,0,78,0,84, | ||
1715 | 0,1,91,1,1, | ||
1716 | 2,0,1,10,134, | ||
1717 | 18,1,10,135,20, | ||
1718 | 136,4,20,76,0, | ||
1719 | 69,0,70,0,84, | ||
1720 | 0,95,0,80,0, | ||
1721 | 65,0,82,0,69, | ||
1722 | 0,78,0,1,16, | ||
1723 | 1,1,2,0,1, | ||
1724 | 573,137,18,1,573, | ||
1725 | 138,20,139,4,26, | ||
1726 | 82,0,73,0,71, | ||
1727 | 0,72,0,84,0, | ||
1728 | 95,0,66,0,82, | ||
1729 | 0,65,0,67,0, | ||
1730 | 75,0,69,0,84, | ||
1731 | 0,1,28,1,1, | ||
1732 | 2,0,1,574,140, | ||
1733 | 18,1,574,141,20, | ||
1734 | 142,4,16,65,0, | ||
1735 | 114,0,103,0,117, | ||
1736 | 0,109,0,101,0, | ||
1737 | 110,0,116,0,1, | ||
1738 | 120,1,2,2,0, | ||
1739 | 1,18,143,18,1, | ||
1740 | 18,129,2,0,1, | ||
1741 | 19,144,18,1,19, | ||
1742 | 132,2,0,1,20, | ||
1743 | 145,18,1,20,146, | ||
1744 | 20,147,4,46,65, | ||
1745 | 0,114,0,103,0, | ||
1746 | 117,0,109,0,101, | ||
1747 | 0,110,0,116,0, | ||
1748 | 68,0,101,0,99, | ||
1749 | 0,108,0,97,0, | ||
1750 | 114,0,97,0,116, | ||
1751 | 0,105,0,111,0, | ||
1752 | 110,0,76,0,105, | ||
1753 | 0,115,0,116,0, | ||
1754 | 1,103,1,2,2, | ||
1755 | 0,1,21,148,18, | ||
1756 | 1,21,149,20,150, | ||
1757 | 4,10,67,0,79, | ||
1758 | 0,77,0,77,0, | ||
1759 | 65,0,1,14,1, | ||
1760 | 1,2,0,1,1693, | ||
1761 | 151,18,1,1693,152, | ||
1762 | 20,153,4,22,82, | ||
1763 | 0,73,0,71,0, | ||
1764 | 72,0,84,0,95, | ||
1765 | 0,80,0,65,0, | ||
1766 | 82,0,69,0,78, | ||
1767 | 0,1,17,1,1, | ||
1768 | 2,0,1,1694,154, | ||
1769 | 18,1,1694,155,20, | ||
1770 | 156,4,18,83,0, | ||
1771 | 69,0,77,0,73, | ||
1772 | 0,67,0,79,0, | ||
1773 | 76,0,79,0,78, | ||
1774 | 0,1,11,1,1, | ||
1775 | 2,0,1,2182,157, | ||
1776 | 18,1,2182,158,20, | ||
1777 | 159,4,10,83,0, | ||
1778 | 116,0,97,0,116, | ||
1779 | 0,101,0,1,100, | ||
1780 | 1,2,2,0,1, | ||
1781 | 2184,160,18,1,2184, | ||
1782 | 132,2,0,1,2256, | ||
1783 | 161,18,1,2256,162, | ||
1784 | 20,163,4,48,71, | ||
1785 | 0,108,0,111,0, | ||
1786 | 98,0,97,0,108, | ||
1787 | 0,70,0,117,0, | ||
1788 | 110,0,99,0,116, | ||
1789 | 0,105,0,111,0, | ||
1790 | 110,0,68,0,101, | ||
1791 | 0,102,0,105,0, | ||
1792 | 110,0,105,0,116, | ||
1793 | 0,105,0,111,0, | ||
1794 | 110,0,1,98,1, | ||
1795 | 2,2,0,1,2257, | ||
1796 | 164,18,1,2257,165, | ||
1797 | 20,166,4,50,71, | ||
1798 | 0,108,0,111,0, | ||
1799 | 98,0,97,0,108, | ||
1800 | 0,86,0,97,0, | ||
1801 | 114,0,105,0,97, | ||
1802 | 0,98,0,108,0, | ||
1803 | 101,0,68,0,101, | ||
1804 | 0,99,0,108,0, | ||
1805 | 97,0,114,0,97, | ||
1806 | 0,116,0,105,0, | ||
1807 | 111,0,110,0,1, | ||
1808 | 97,1,2,2,0, | ||
1809 | 1,30,167,18,1, | ||
1810 | 30,168,20,169,4, | ||
1811 | 22,68,0,101,0, | ||
1812 | 99,0,108,0,97, | ||
1813 | 0,114,0,97,0, | ||
1814 | 116,0,105,0,111, | ||
1815 | 0,110,0,1,104, | ||
1816 | 1,2,2,0,1, | ||
1817 | 31,170,18,1,31, | ||
1818 | 152,2,0,1,32, | ||
1819 | 171,18,1,32,172, | ||
1820 | 20,173,4,20,76, | ||
1821 | 0,69,0,70,0, | ||
1822 | 84,0,95,0,66, | ||
1823 | 0,82,0,65,0, | ||
1824 | 67,0,69,0,1, | ||
1825 | 12,1,1,2,0, | ||
1826 | 1,2261,174,18,1, | ||
1827 | 2261,175,23,176,4, | ||
1828 | 6,69,0,79,0, | ||
1829 | 70,0,1,2,1, | ||
1830 | 6,2,0,1,1706, | ||
1831 | 177,18,1,1706,178, | ||
1832 | 20,179,4,10,87, | ||
1833 | 0,72,0,73,0, | ||
1834 | 76,0,69,0,1, | ||
1835 | 45,1,1,2,0, | ||
1836 | 1,1707,180,18,1, | ||
1837 | 1707,135,2,0,1, | ||
1838 | 1115,181,18,1,1115, | ||
1839 | 182,20,183,4,12, | ||
1840 | 69,0,81,0,85, | ||
1841 | 0,65,0,76,0, | ||
1842 | 83,0,1,15,1, | ||
1843 | 1,2,0,1,1152, | ||
1844 | 184,18,1,1152,185, | ||
1845 | 20,186,4,28,80, | ||
1846 | 0,69,0,82,0, | ||
1847 | 67,0,69,0,78, | ||
1848 | 0,84,0,95,0, | ||
1849 | 69,0,81,0,85, | ||
1850 | 0,65,0,76,0, | ||
1851 | 83,0,1,10,1, | ||
1852 | 1,2,0,1,40, | ||
1853 | 187,18,1,40,132, | ||
1854 | 2,0,1,41,188, | ||
1855 | 18,1,41,135,2, | ||
1856 | 0,1,42,189,18, | ||
1857 | 1,42,190,20,191, | ||
1858 | 4,20,69,0,120, | ||
1859 | 0,112,0,114,0, | ||
1860 | 101,0,115,0,115, | ||
1861 | 0,105,0,111,0, | ||
1862 | 110,0,1,126,1, | ||
1863 | 2,2,0,1,43, | ||
1864 | 192,18,1,43,193, | ||
1865 | 20,194,4,22,82, | ||
1866 | 0,73,0,71,0, | ||
1867 | 72,0,84,0,95, | ||
1868 | 0,83,0,72,0, | ||
1869 | 73,0,70,0,84, | ||
1870 | 0,1,41,1,1, | ||
1871 | 2,0,1,44,195, | ||
1872 | 18,1,44,132,2, | ||
1873 | 0,1,46,196,18, | ||
1874 | 1,46,197,20,198, | ||
1875 | 4,12,80,0,69, | ||
1876 | 0,82,0,73,0, | ||
1877 | 79,0,68,0,1, | ||
1878 | 24,1,1,2,0, | ||
1879 | 1,47,199,18,1, | ||
1880 | 47,132,2,0,1, | ||
1881 | 48,200,18,1,48, | ||
1882 | 201,20,202,4,18, | ||
1883 | 68,0,69,0,67, | ||
1884 | 0,82,0,69,0, | ||
1885 | 77,0,69,0,78, | ||
1886 | 0,84,0,1,5, | ||
1887 | 1,1,2,0,1, | ||
1888 | 49,203,18,1,49, | ||
1889 | 204,20,205,4,18, | ||
1890 | 73,0,78,0,67, | ||
1891 | 0,82,0,69,0, | ||
1892 | 77,0,69,0,78, | ||
1893 | 0,84,0,1,4, | ||
1894 | 1,1,2,0,1, | ||
1895 | 50,206,18,1,50, | ||
1896 | 201,2,0,1,51, | ||
1897 | 207,18,1,51,204, | ||
1898 | 2,0,1,52,208, | ||
1899 | 18,1,52,135,2, | ||
1900 | 0,1,1674,209,18, | ||
1901 | 1,1674,190,2,0, | ||
1902 | 1,61,210,18,1, | ||
1903 | 61,129,2,0,1, | ||
1904 | 62,211,18,1,62, | ||
1905 | 152,2,0,1,63, | ||
1906 | 212,18,1,63,132, | ||
1907 | 2,0,1,65,213, | ||
1908 | 18,1,65,197,2, | ||
1909 | 0,1,66,214,18, | ||
1910 | 1,66,132,2,0, | ||
1911 | 1,67,215,18,1, | ||
1912 | 67,201,2,0,1, | ||
1913 | 68,216,18,1,68, | ||
1914 | 204,2,0,1,69, | ||
1915 | 217,18,1,69,201, | ||
1916 | 2,0,1,70,218, | ||
1917 | 18,1,70,204,2, | ||
1918 | 0,1,71,219,18, | ||
1919 | 1,71,135,2,0, | ||
1920 | 1,73,220,18,1, | ||
1921 | 73,190,2,0,1, | ||
1922 | 74,221,18,1,74, | ||
1923 | 152,2,0,1,76, | ||
1924 | 222,18,1,76,223, | ||
1925 | 20,224,4,20,76, | ||
1926 | 0,69,0,70,0, | ||
1927 | 84,0,95,0,83, | ||
1928 | 0,72,0,73,0, | ||
1929 | 70,0,84,0,1, | ||
1930 | 40,1,1,2,0, | ||
1931 | 1,1193,225,18,1, | ||
1932 | 1193,190,2,0,1, | ||
1933 | 2237,226,18,1,2237, | ||
1934 | 155,2,0,1,1121, | ||
1935 | 227,18,1,1121,190, | ||
1936 | 2,0,1,82,228, | ||
1937 | 18,1,82,190,2, | ||
1938 | 0,1,79,229,18, | ||
1939 | 1,79,230,20,231, | ||
1940 | 4,10,84,0,73, | ||
1941 | 0,76,0,68,0, | ||
1942 | 69,0,1,36,1, | ||
1943 | 1,2,0,1,85, | ||
1944 | 232,18,1,85,233, | ||
1945 | 20,234,4,26,83, | ||
1946 | 0,84,0,82,0, | ||
1947 | 79,0,75,0,69, | ||
1948 | 0,95,0,83,0, | ||
1949 | 84,0,82,0,79, | ||
1950 | 0,75,0,69,0, | ||
1951 | 1,39,1,1,2, | ||
1952 | 0,1,2050,235,18, | ||
1953 | 1,2050,236,20,237, | ||
1954 | 4,38,65,0,84, | ||
1955 | 0,95,0,82,0, | ||
1956 | 79,0,84,0,95, | ||
1957 | 0,84,0,65,0, | ||
1958 | 82,0,71,0,69, | ||
1959 | 0,84,0,95,0, | ||
1960 | 69,0,86,0,69, | ||
1961 | 0,78,0,84,0, | ||
1962 | 1,58,1,1,2, | ||
1963 | 0,1,89,238,18, | ||
1964 | 1,89,239,20,240, | ||
1965 | 4,10,77,0,73, | ||
1966 | 0,78,0,85,0, | ||
1967 | 83,0,1,19,1, | ||
1968 | 1,2,0,1,1762, | ||
1969 | 241,18,1,1762,242, | ||
1970 | 20,243,4,4,73, | ||
1971 | 0,70,0,1,42, | ||
1972 | 1,1,2,0,1, | ||
1973 | 1763,244,18,1,1763, | ||
1974 | 135,2,0,1,93, | ||
1975 | 245,18,1,93,190, | ||
1976 | 2,0,1,97,246, | ||
1977 | 18,1,97,247,20, | ||
1978 | 248,4,14,65,0, | ||
1979 | 77,0,80,0,95, | ||
1980 | 0,65,0,77,0, | ||
1981 | 80,0,1,38,1, | ||
1982 | 1,2,0,1,1769, | ||
1983 | 249,18,1,1769,190, | ||
1984 | 2,0,1,102,250, | ||
1985 | 18,1,102,251,20, | ||
1986 | 252,4,22,69,0, | ||
1987 | 88,0,67,0,76, | ||
1988 | 0,65,0,77,0, | ||
1989 | 65,0,84,0,73, | ||
1990 | 0,79,0,78,0, | ||
1991 | 1,37,1,1,2, | ||
1992 | 0,1,2259,253,18, | ||
1993 | 1,2259,165,2,0, | ||
1994 | 1,2260,104,1,1668, | ||
1995 | 254,18,1,1668,135, | ||
1996 | 2,0,1,2194,255, | ||
1997 | 18,1,2194,146,2, | ||
1998 | 0,1,107,256,18, | ||
1999 | 1,107,190,2,0, | ||
2000 | 1,1222,257,18,1, | ||
2001 | 1222,258,20,259,4, | ||
2002 | 22,83,0,84,0, | ||
2003 | 65,0,82,0,95, | ||
2004 | 0,69,0,81,0, | ||
2005 | 85,0,65,0,76, | ||
2006 | 0,83,0,1,8, | ||
2007 | 1,1,2,0,1, | ||
2008 | 112,260,18,1,112, | ||
2009 | 261,20,262,4,28, | ||
2010 | 71,0,82,0,69, | ||
2011 | 0,65,0,84,0, | ||
2012 | 69,0,82,0,95, | ||
2013 | 0,69,0,81,0, | ||
2014 | 85,0,65,0,76, | ||
2015 | 0,83,0,1,32, | ||
2016 | 1,1,2,0,1, | ||
2017 | 1228,263,18,1,1228, | ||
2018 | 190,2,0,1,1732, | ||
2019 | 264,18,1,1732,152, | ||
2020 | 2,0,1,118,265, | ||
2021 | 18,1,118,190,2, | ||
2022 | 0,1,1158,266,18, | ||
2023 | 1,1158,190,2,0, | ||
2024 | 1,124,267,18,1, | ||
2025 | 124,268,20,269,4, | ||
2026 | 22,76,0,69,0, | ||
2027 | 83,0,83,0,95, | ||
2028 | 0,69,0,81,0, | ||
2029 | 85,0,65,0,76, | ||
2030 | 0,83,0,1,31, | ||
2031 | 1,1,2,0,1, | ||
2032 | 130,270,18,1,130, | ||
2033 | 190,2,0,1,137, | ||
2034 | 271,18,1,137,272, | ||
2035 | 20,273,4,36,69, | ||
2036 | 0,88,0,67,0, | ||
2037 | 76,0,65,0,77, | ||
2038 | 0,65,0,84,0, | ||
2039 | 73,0,79,0,78, | ||
2040 | 0,95,0,69,0, | ||
2041 | 81,0,85,0,65, | ||
2042 | 0,76,0,83,0, | ||
2043 | 1,30,1,1,2, | ||
2044 | 0,1,2226,274,18, | ||
2045 | 1,2226,155,2,0, | ||
2046 | 1,1257,275,18,1, | ||
2047 | 1257,276,20,277,4, | ||
2048 | 24,77,0,73,0, | ||
2049 | 78,0,85,0,83, | ||
2050 | 0,95,0,69,0, | ||
2051 | 81,0,85,0,65, | ||
2052 | 0,76,0,83,0, | ||
2053 | 1,7,1,1,2, | ||
2054 | 0,1,1817,278,18, | ||
2055 | 1,1817,279,20,280, | ||
2056 | 4,18,83,0,116, | ||
2057 | 0,97,0,116,0, | ||
2058 | 101,0,109,0,101, | ||
2059 | 0,110,0,116,0, | ||
2060 | 1,109,1,2,2, | ||
2061 | 0,1,1818,281,18, | ||
2062 | 1,1818,282,20,283, | ||
2063 | 4,8,69,0,76, | ||
2064 | 0,83,0,69,0, | ||
2065 | 1,43,1,1,2, | ||
2066 | 0,1,1263,284,18, | ||
2067 | 1,1263,190,2,0, | ||
2068 | 1,151,285,18,1, | ||
2069 | 151,286,20,287,4, | ||
2070 | 26,69,0,81,0, | ||
2071 | 85,0,65,0,76, | ||
2072 | 0,83,0,95,0, | ||
2073 | 69,0,81,0,85, | ||
2074 | 0,65,0,76,0, | ||
2075 | 83,0,1,29,1, | ||
2076 | 1,2,0,1,1713, | ||
2077 | 288,18,1,1713,190, | ||
2078 | 2,0,1,143,289, | ||
2079 | 18,1,143,190,2, | ||
2080 | 0,1,157,290,18, | ||
2081 | 1,157,190,2,0, | ||
2082 | 1,2249,291,18,1, | ||
2083 | 2249,292,20,293,4, | ||
2084 | 12,83,0,116,0, | ||
2085 | 97,0,116,0,101, | ||
2086 | 0,115,0,1,99, | ||
2087 | 1,2,2,0,1, | ||
2088 | 166,294,18,1,166, | ||
2089 | 295,20,296,4,20, | ||
2090 | 76,0,69,0,70, | ||
2091 | 0,84,0,95,0, | ||
2092 | 65,0,78,0,71, | ||
2093 | 0,76,0,69,0, | ||
2094 | 1,25,1,1,2, | ||
2095 | 0,1,172,297,18, | ||
2096 | 1,172,190,2,0, | ||
2097 | 1,1788,298,18,1, | ||
2098 | 1788,152,2,0,1, | ||
2099 | 1847,299,18,1,1847, | ||
2100 | 279,2,0,1,1292, | ||
2101 | 300,18,1,1292,301, | ||
2102 | 20,302,4,22,80, | ||
2103 | 0,76,0,85,0, | ||
2104 | 83,0,95,0,69, | ||
2105 | 0,81,0,85,0, | ||
2106 | 65,0,76,0,83, | ||
2107 | 0,1,6,1,1, | ||
2108 | 2,0,1,1850,303, | ||
2109 | 18,1,1850,304,20, | ||
2110 | 305,4,26,68,0, | ||
2111 | 69,0,70,0,65, | ||
2112 | 0,85,0,76,0, | ||
2113 | 84,0,95,0,83, | ||
2114 | 0,84,0,65,0, | ||
2115 | 84,0,69,0,1, | ||
2116 | 47,1,1,2,0, | ||
2117 | 1,1851,306,18,1, | ||
2118 | 1851,132,2,0,1, | ||
2119 | 1852,307,18,1,1852, | ||
2120 | 308,20,309,4,34, | ||
2121 | 67,0,111,0,109, | ||
2122 | 0,112,0,111,0, | ||
2123 | 117,0,110,0,100, | ||
2124 | 0,83,0,116,0, | ||
2125 | 97,0,116,0,101, | ||
2126 | 0,109,0,101,0, | ||
2127 | 110,0,116,0,1, | ||
2128 | 107,1,2,2,0, | ||
2129 | 1,1853,310,18,1, | ||
2130 | 1853,311,20,312,4, | ||
2131 | 14,70,0,111,0, | ||
2132 | 114,0,76,0,111, | ||
2133 | 0,111,0,112,0, | ||
2134 | 1,116,1,2,2, | ||
2135 | 0,1,1854,313,18, | ||
2136 | 1,1854,314,20,315, | ||
2137 | 4,32,68,0,111, | ||
2138 | 0,87,0,104,0, | ||
2139 | 105,0,108,0,101, | ||
2140 | 0,83,0,116,0, | ||
2141 | 97,0,116,0,101, | ||
2142 | 0,109,0,101,0, | ||
2143 | 110,0,116,0,1, | ||
2144 | 115,1,2,2,0, | ||
2145 | 1,1855,316,18,1, | ||
2146 | 1855,317,20,318,4, | ||
2147 | 28,87,0,104,0, | ||
2148 | 105,0,108,0,101, | ||
2149 | 0,83,0,116,0, | ||
2150 | 97,0,116,0,101, | ||
2151 | 0,109,0,101,0, | ||
2152 | 110,0,116,0,1, | ||
2153 | 114,1,2,2,0, | ||
2154 | 1,1856,319,18,1, | ||
2155 | 1856,320,20,321,4, | ||
2156 | 22,73,0,102,0, | ||
2157 | 83,0,116,0,97, | ||
2158 | 0,116,0,101,0, | ||
2159 | 109,0,101,0,110, | ||
2160 | 0,116,0,1,113, | ||
2161 | 1,2,2,0,1, | ||
2162 | 1857,322,18,1,1857, | ||
2163 | 323,20,324,4,22, | ||
2164 | 83,0,116,0,97, | ||
2165 | 0,116,0,101,0, | ||
2166 | 67,0,104,0,97, | ||
2167 | 0,110,0,103,0, | ||
2168 | 101,0,1,112,1, | ||
2169 | 2,2,0,1,1858, | ||
2170 | 325,18,1,1858,155, | ||
2171 | 2,0,1,188,326, | ||
2172 | 18,1,188,190,2, | ||
2173 | 0,1,1860,327,18, | ||
2174 | 1,1860,155,2,0, | ||
2175 | 1,1187,328,18,1, | ||
2176 | 1187,329,20,330,4, | ||
2177 | 24,83,0,76,0, | ||
2178 | 65,0,83,0,72, | ||
2179 | 0,95,0,69,0, | ||
2180 | 81,0,85,0,65, | ||
2181 | 0,76,0,83,0, | ||
2182 | 1,9,1,1,2, | ||
2183 | 0,1,1862,331,18, | ||
2184 | 1,1862,155,2,0, | ||
2185 | 1,1863,332,18,1, | ||
2186 | 1863,155,2,0,1, | ||
2187 | 182,333,18,1,182, | ||
2188 | 334,20,335,4,22, | ||
2189 | 82,0,73,0,71, | ||
2190 | 0,72,0,84,0, | ||
2191 | 95,0,65,0,78, | ||
2192 | 0,71,0,76,0, | ||
2193 | 69,0,1,26,1, | ||
2194 | 1,2,0,1,199, | ||
2195 | 336,18,1,199,337, | ||
2196 | 20,338,4,10,67, | ||
2197 | 0,65,0,82,0, | ||
2198 | 69,0,84,0,1, | ||
2199 | 35,1,1,2,0, | ||
2200 | 1,1760,339,18,1, | ||
2201 | 1760,279,2,0,1, | ||
2202 | 205,340,18,1,205, | ||
2203 | 190,2,0,1,1327, | ||
2204 | 341,18,1,1327,182, | ||
2205 | 2,0,1,217,342, | ||
2206 | 18,1,217,343,20, | ||
2207 | 344,4,12,83,0, | ||
2208 | 84,0,82,0,79, | ||
2209 | 0,75,0,69,0, | ||
2210 | 1,34,1,1,2, | ||
2211 | 0,1,1333,345,18, | ||
2212 | 1,1333,190,2,0, | ||
2213 | 1,223,346,18,1, | ||
2214 | 223,190,2,0,1, | ||
2215 | 1298,347,18,1,1298, | ||
2216 | 190,2,0,1,236, | ||
2217 | 348,18,1,236,349, | ||
2218 | 20,350,4,6,65, | ||
2219 | 0,77,0,80,0, | ||
2220 | 1,33,1,1,2, | ||
2221 | 0,1,1849,351,18, | ||
2222 | 1,1849,352,20,353, | ||
2223 | 4,10,83,0,84, | ||
2224 | 0,65,0,84,0, | ||
2225 | 69,0,1,48,1, | ||
2226 | 1,2,0,1,242, | ||
2227 | 354,18,1,242,190, | ||
2228 | 2,0,1,2258,355, | ||
2229 | 18,1,2258,162,2, | ||
2230 | 0,1,1859,356,18, | ||
2231 | 1,1859,357,20,358, | ||
2232 | 4,30,82,0,101, | ||
2233 | 0,116,0,117,0, | ||
2234 | 114,0,110,0,83, | ||
2235 | 0,116,0,97,0, | ||
2236 | 116,0,101,0,109, | ||
2237 | 0,101,0,110,0, | ||
2238 | 116,0,1,111,1, | ||
2239 | 2,2,0,1,1861, | ||
2240 | 359,18,1,1861,360, | ||
2241 | 20,361,4,20,65, | ||
2242 | 0,115,0,115,0, | ||
2243 | 105,0,103,0,110, | ||
2244 | 0,109,0,101,0, | ||
2245 | 110,0,116,0,1, | ||
2246 | 110,1,2,2,0, | ||
2247 | 1,1366,362,18,1, | ||
2248 | 1366,190,2,0,1, | ||
2249 | 256,363,18,1,256, | ||
2250 | 364,20,365,4,14, | ||
2251 | 80,0,69,0,82, | ||
2252 | 0,67,0,69,0, | ||
2253 | 78,0,84,0,1, | ||
2254 | 22,1,1,2,0, | ||
2255 | 1,262,366,18,1, | ||
2256 | 262,190,2,0,1, | ||
2257 | 1938,367,18,1,1938, | ||
2258 | 360,2,0,1,827, | ||
2259 | 368,18,1,827,190, | ||
2260 | 2,0,1,1385,369, | ||
2261 | 18,1,1385,155,2, | ||
2262 | 0,1,277,370,18, | ||
2263 | 1,277,371,20,372, | ||
2264 | 4,10,83,0,76, | ||
2265 | 0,65,0,83,0, | ||
2266 | 72,0,1,21,1, | ||
2267 | 1,2,0,1,1396, | ||
2268 | 373,18,1,1396,374, | ||
2269 | 20,375,4,12,82, | ||
2270 | 0,69,0,84,0, | ||
2271 | 85,0,82,0,78, | ||
2272 | 0,1,50,1,1, | ||
2273 | 2,0,1,283,376, | ||
2274 | 18,1,283,190,2, | ||
2275 | 0,1,1402,377,18, | ||
2276 | 1,1402,190,2,0, | ||
2277 | 1,1965,378,18,1, | ||
2278 | 1965,379,20,380,4, | ||
2279 | 26,83,0,116,0, | ||
2280 | 97,0,116,0,101, | ||
2281 | 0,109,0,101,0, | ||
2282 | 110,0,116,0,76, | ||
2283 | 0,105,0,115,0, | ||
2284 | 116,0,1,108,1, | ||
2285 | 2,2,0,1,299, | ||
2286 | 381,18,1,299,382, | ||
2287 | 20,383,4,8,83, | ||
2288 | 0,84,0,65,0, | ||
2289 | 82,0,1,20,1, | ||
2290 | 1,2,0,1,305, | ||
2291 | 384,18,1,305,190, | ||
2292 | 2,0,1,1431,385, | ||
2293 | 18,1,1431,168,2, | ||
2294 | 0,1,1432,386,18, | ||
2295 | 1,1432,182,2,0, | ||
2296 | 1,322,387,18,1, | ||
2297 | 322,239,2,0,1, | ||
2298 | 1438,388,18,1,1438, | ||
2299 | 190,2,0,1,883, | ||
2300 | 389,18,1,883,190, | ||
2301 | 2,0,1,328,390, | ||
2302 | 18,1,328,190,2, | ||
2303 | 0,1,2005,391,18, | ||
2304 | 1,2005,279,2,0, | ||
2305 | 1,2006,392,18,1, | ||
2306 | 2006,393,20,394,4, | ||
2307 | 22,82,0,73,0, | ||
2308 | 71,0,72,0,84, | ||
2309 | 0,95,0,66,0, | ||
2310 | 82,0,65,0,67, | ||
2311 | 0,69,0,1,13, | ||
2312 | 1,1,2,0,1, | ||
2313 | 2009,395,18,1,2009, | ||
2314 | 279,2,0,1,2011, | ||
2315 | 396,18,1,2011,393, | ||
2316 | 2,0,1,2013,397, | ||
2317 | 18,1,2013,308,2, | ||
2318 | 0,1,2014,398,18, | ||
2319 | 1,2014,168,2,0, | ||
2320 | 1,2015,399,18,1, | ||
2321 | 2015,352,2,0,1, | ||
2322 | 2016,400,18,1,2016, | ||
2323 | 132,2,0,1,346, | ||
2324 | 401,18,1,346,402, | ||
2325 | 20,403,4,8,80, | ||
2326 | 0,76,0,85,0, | ||
2327 | 83,0,1,18,1, | ||
2328 | 1,2,0,1,2018, | ||
2329 | 404,18,1,2018,405, | ||
2330 | 20,406,4,34,84, | ||
2331 | 0,79,0,85,0, | ||
2332 | 67,0,72,0,95, | ||
2333 | 0,83,0,84,0, | ||
2334 | 65,0,82,0,84, | ||
2335 | 0,95,0,69,0, | ||
2336 | 86,0,69,0,78, | ||
2337 | 0,84,0,1,89, | ||
2338 | 1,1,2,0,1, | ||
2339 | 2019,407,18,1,2019, | ||
2340 | 408,20,409,4,30, | ||
2341 | 84,0,79,0,85, | ||
2342 | 0,67,0,72,0, | ||
2343 | 95,0,69,0,78, | ||
2344 | 0,68,0,95,0, | ||
2345 | 69,0,86,0,69, | ||
2346 | 0,78,0,84,0, | ||
2347 | 1,90,1,1,2, | ||
2348 | 0,1,2020,410,18, | ||
2349 | 1,2020,411,20,412, | ||
2350 | 4,22,84,0,79, | ||
2351 | 0,85,0,67,0, | ||
2352 | 72,0,95,0,69, | ||
2353 | 0,86,0,69,0, | ||
2354 | 78,0,84,0,1, | ||
2355 | 88,1,1,2,0, | ||
2356 | 1,2021,413,18,1, | ||
2357 | 2021,414,20,415,4, | ||
2358 | 22,84,0,73,0, | ||
2359 | 77,0,69,0,82, | ||
2360 | 0,95,0,69,0, | ||
2361 | 86,0,69,0,78, | ||
2362 | 0,84,0,1,87, | ||
2363 | 1,1,2,0,1, | ||
2364 | 2022,416,18,1,2022, | ||
2365 | 417,20,418,4,32, | ||
2366 | 83,0,84,0,65, | ||
2367 | 0,84,0,69,0, | ||
2368 | 95,0,69,0,88, | ||
2369 | 0,73,0,84,0, | ||
2370 | 95,0,69,0,86, | ||
2371 | 0,69,0,78,0, | ||
2372 | 84,0,1,86,1, | ||
2373 | 1,2,0,1,352, | ||
2374 | 419,18,1,352,190, | ||
2375 | 2,0,1,1467,420, | ||
2376 | 18,1,1467,155,2, | ||
2377 | 0,1,1468,421,18, | ||
2378 | 1,1468,422,20,423, | ||
2379 | 4,6,70,0,79, | ||
2380 | 0,82,0,1,46, | ||
2381 | 1,1,2,0,1, | ||
2382 | 1469,424,18,1,1469, | ||
2383 | 135,2,0,1,2027, | ||
2384 | 425,18,1,2027,426, | ||
2385 | 20,427,4,24,79, | ||
2386 | 0,78,0,95,0, | ||
2387 | 82,0,69,0,90, | ||
2388 | 0,95,0,69,0, | ||
2389 | 86,0,69,0,78, | ||
2390 | 0,84,0,1,81, | ||
2391 | 1,1,2,0,1, | ||
2392 | 2028,428,18,1,2028, | ||
2393 | 429,20,430,4,32, | ||
2394 | 79,0,66,0,74, | ||
2395 | 0,69,0,67,0, | ||
2396 | 84,0,95,0,82, | ||
2397 | 0,69,0,90,0, | ||
2398 | 95,0,69,0,86, | ||
2399 | 0,69,0,78,0, | ||
2400 | 84,0,1,80,1, | ||
2401 | 1,2,0,1,2029, | ||
2402 | 431,18,1,2029,432, | ||
2403 | 20,433,4,38,78, | ||
2404 | 0,79,0,84,0, | ||
2405 | 95,0,65,0,84, | ||
2406 | 0,95,0,84,0, | ||
2407 | 65,0,82,0,71, | ||
2408 | 0,69,0,84,0, | ||
2409 | 95,0,69,0,86, | ||
2410 | 0,69,0,78,0, | ||
2411 | 84,0,1,79,1, | ||
2412 | 1,2,0,1,2030, | ||
2413 | 434,18,1,2030,435, | ||
2414 | 20,436,4,46,78, | ||
2415 | 0,79,0,84,0, | ||
2416 | 95,0,65,0,84, | ||
2417 | 0,95,0,82,0, | ||
2418 | 79,0,84,0,95, | ||
2419 | 0,84,0,65,0, | ||
2420 | 82,0,71,0,69, | ||
2421 | 0,84,0,95,0, | ||
2422 | 69,0,86,0,69, | ||
2423 | 0,78,0,84,0, | ||
2424 | 1,78,1,1,2, | ||
2425 | 0,1,2031,437,18, | ||
2426 | 1,2031,438,20,439, | ||
2427 | 4,30,78,0,79, | ||
2428 | 0,95,0,83,0, | ||
2429 | 69,0,78,0,83, | ||
2430 | 0,79,0,82,0, | ||
2431 | 95,0,69,0,86, | ||
2432 | 0,69,0,78,0, | ||
2433 | 84,0,1,77,1, | ||
2434 | 1,2,0,1,2032, | ||
2435 | 440,18,1,2032,441, | ||
2436 | 20,442,4,36,77, | ||
2437 | 0,79,0,86,0, | ||
2438 | 73,0,78,0,71, | ||
2439 | 0,95,0,83,0, | ||
2440 | 84,0,65,0,82, | ||
2441 | 0,84,0,95,0, | ||
2442 | 69,0,86,0,69, | ||
2443 | 0,78,0,84,0, | ||
2444 | 1,76,1,1,2, | ||
2445 | 0,1,2033,443,18, | ||
2446 | 1,2033,444,20,445, | ||
2447 | 4,32,77,0,79, | ||
2448 | 0,86,0,73,0, | ||
2449 | 78,0,71,0,95, | ||
2450 | 0,69,0,78,0, | ||
2451 | 68,0,95,0,69, | ||
2452 | 0,86,0,69,0, | ||
2453 | 78,0,84,0,1, | ||
2454 | 75,1,1,2,0, | ||
2455 | 1,2034,446,18,1, | ||
2456 | 2034,447,20,448,4, | ||
2457 | 22,77,0,79,0, | ||
2458 | 78,0,69,0,89, | ||
2459 | 0,95,0,69,0, | ||
2460 | 86,0,69,0,78, | ||
2461 | 0,84,0,1,74, | ||
2462 | 1,1,2,0,1, | ||
2463 | 2035,449,18,1,2035, | ||
2464 | 450,20,451,4,24, | ||
2465 | 76,0,73,0,83, | ||
2466 | 0,84,0,69,0, | ||
2467 | 78,0,95,0,69, | ||
2468 | 0,86,0,69,0, | ||
2469 | 78,0,84,0,1, | ||
2470 | 73,1,1,2,0, | ||
2471 | 1,2036,452,18,1, | ||
2472 | 2036,453,20,454,4, | ||
2473 | 36,76,0,73,0, | ||
2474 | 78,0,75,0,95, | ||
2475 | 0,77,0,69,0, | ||
2476 | 83,0,83,0,65, | ||
2477 | 0,71,0,69,0, | ||
2478 | 95,0,69,0,86, | ||
2479 | 0,69,0,78,0, | ||
2480 | 84,0,1,72,1, | ||
2481 | 1,2,0,1,2037, | ||
2482 | 455,18,1,2037,456, | ||
2483 | 20,457,4,52,76, | ||
2484 | 0,65,0,78,0, | ||
2485 | 68,0,95,0,67, | ||
2486 | 0,79,0,76,0, | ||
2487 | 76,0,73,0,83, | ||
2488 | 0,73,0,79,0, | ||
2489 | 78,0,95,0,83, | ||
2490 | 0,84,0,65,0, | ||
2491 | 82,0,84,0,95, | ||
2492 | 0,69,0,86,0, | ||
2493 | 69,0,78,0,84, | ||
2494 | 0,1,71,1,1, | ||
2495 | 2,0,1,2038,458, | ||
2496 | 18,1,2038,459,20, | ||
2497 | 460,4,48,76,0, | ||
2498 | 65,0,78,0,68, | ||
2499 | 0,95,0,67,0, | ||
2500 | 79,0,76,0,76, | ||
2501 | 0,73,0,83,0, | ||
2502 | 73,0,79,0,78, | ||
2503 | 0,95,0,69,0, | ||
2504 | 78,0,68,0,95, | ||
2505 | 0,69,0,86,0, | ||
2506 | 69,0,78,0,84, | ||
2507 | 0,1,70,1,1, | ||
2508 | 2,0,1,1482,461, | ||
2509 | 18,1,1482,190,2, | ||
2510 | 0,1,2040,462,18, | ||
2511 | 1,2040,463,20,464, | ||
2512 | 4,38,72,0,84, | ||
2513 | 0,84,0,80,0, | ||
2514 | 95,0,82,0,69, | ||
2515 | 0,83,0,80,0, | ||
2516 | 79,0,78,0,83, | ||
2517 | 0,69,0,95,0, | ||
2518 | 69,0,86,0,69, | ||
2519 | 0,78,0,84,0, | ||
2520 | 1,68,1,1,2, | ||
2521 | 0,1,2041,465,18, | ||
2522 | 1,2041,466,20,467, | ||
2523 | 4,22,69,0,77, | ||
2524 | 0,65,0,73,0, | ||
2525 | 76,0,95,0,69, | ||
2526 | 0,86,0,69,0, | ||
2527 | 78,0,84,0,1, | ||
2528 | 67,1,1,2,0, | ||
2529 | 1,371,468,18,1, | ||
2530 | 371,469,20,470,4, | ||
2531 | 24,70,0,117,0, | ||
2532 | 110,0,99,0,116, | ||
2533 | 0,105,0,111,0, | ||
2534 | 110,0,67,0,97, | ||
2535 | 0,108,0,108,0, | ||
2536 | 1,118,1,2,2, | ||
2537 | 0,1,372,471,18, | ||
2538 | 1,372,201,2,0, | ||
2539 | 1,373,472,18,1, | ||
2540 | 373,132,2,0,1, | ||
2541 | 374,473,18,1,374, | ||
2542 | 197,2,0,1,375, | ||
2543 | 474,18,1,375,132, | ||
2544 | 2,0,1,376,475, | ||
2545 | 18,1,376,204,2, | ||
2546 | 0,1,377,476,18, | ||
2547 | 1,377,132,2,0, | ||
2548 | 1,378,477,18,1, | ||
2549 | 378,197,2,0,1, | ||
2550 | 379,478,18,1,379, | ||
2551 | 132,2,0,1,380, | ||
2552 | 479,18,1,380,480, | ||
2553 | 20,481,4,16,67, | ||
2554 | 0,111,0,110,0, | ||
2555 | 115,0,116,0,97, | ||
2556 | 0,110,0,116,0, | ||
2557 | 1,122,1,2,2, | ||
2558 | 0,1,381,482,18, | ||
2559 | 1,381,483,20,484, | ||
2560 | 4,24,76,0,69, | ||
2561 | 0,70,0,84,0, | ||
2562 | 95,0,66,0,82, | ||
2563 | 0,65,0,67,0, | ||
2564 | 75,0,69,0,84, | ||
2565 | 0,1,27,1,1, | ||
2566 | 2,0,1,383,485, | ||
2567 | 18,1,383,486,20, | ||
2568 | 487,4,24,65,0, | ||
2569 | 114,0,103,0,117, | ||
2570 | 0,109,0,101,0, | ||
2571 | 110,0,116,0,76, | ||
2572 | 0,105,0,115,0, | ||
2573 | 116,0,1,119,1, | ||
2574 | 2,2,0,1,384, | ||
2575 | 488,18,1,384,149, | ||
2576 | 2,0,1,942,489, | ||
2577 | 18,1,942,190,2, | ||
2578 | 0,1,386,490,18, | ||
2579 | 1,386,141,2,0, | ||
2580 | 1,2196,491,18,1, | ||
2581 | 2196,152,2,0,1, | ||
2582 | 2061,492,18,1,2061, | ||
2583 | 146,2,0,1,2063, | ||
2584 | 493,18,1,2063,152, | ||
2585 | 2,0,1,2065,494, | ||
2586 | 18,1,2065,308,2, | ||
2587 | 0,1,2067,495,18, | ||
2588 | 1,2067,496,20,497, | ||
2589 | 4,18,83,0,116, | ||
2590 | 0,97,0,116,0, | ||
2591 | 101,0,66,0,111, | ||
2592 | 0,100,0,121,0, | ||
2593 | 1,101,1,2,2, | ||
2594 | 0,1,1511,498,18, | ||
2595 | 1,1511,168,2,0, | ||
2596 | 1,1513,499,18,1, | ||
2597 | 1513,500,20,501,4, | ||
2598 | 32,70,0,111,0, | ||
2599 | 114,0,76,0,111, | ||
2600 | 0,111,0,112,0, | ||
2601 | 83,0,116,0,97, | ||
2602 | 0,116,0,101,0, | ||
2603 | 109,0,101,0,110, | ||
2604 | 0,116,0,1,117, | ||
2605 | 1,2,2,0,1, | ||
2606 | 1514,502,18,1,1514, | ||
2607 | 149,2,0,1,403, | ||
2608 | 503,18,1,403,190, | ||
2609 | 2,0,1,397,504, | ||
2610 | 18,1,397,295,2, | ||
2611 | 0,1,1527,505,18, | ||
2612 | 1,1527,190,2,0, | ||
2613 | 1,2023,506,18,1, | ||
2614 | 2023,507,20,508,4, | ||
2615 | 34,83,0,84,0, | ||
2616 | 65,0,84,0,69, | ||
2617 | 0,95,0,69,0, | ||
2618 | 78,0,84,0,82, | ||
2619 | 0,89,0,95,0, | ||
2620 | 69,0,86,0,69, | ||
2621 | 0,78,0,84,0, | ||
2622 | 1,85,1,1,2, | ||
2623 | 0,1,2024,509,18, | ||
2624 | 1,2024,510,20,511, | ||
2625 | 4,24,83,0,69, | ||
2626 | 0,78,0,83,0, | ||
2627 | 79,0,82,0,95, | ||
2628 | 0,69,0,86,0, | ||
2629 | 69,0,78,0,84, | ||
2630 | 0,1,84,1,1, | ||
2631 | 2,0,1,2025,512, | ||
2632 | 18,1,2025,513,20, | ||
2633 | 514,4,52,82,0, | ||
2634 | 85,0,78,0,95, | ||
2635 | 0,84,0,73,0, | ||
2636 | 77,0,69,0,95, | ||
2637 | 0,80,0,69,0, | ||
2638 | 82,0,77,0,73, | ||
2639 | 0,83,0,83,0, | ||
2640 | 73,0,79,0,78, | ||
2641 | 0,83,0,95,0, | ||
2642 | 69,0,86,0,69, | ||
2643 | 0,78,0,84,0, | ||
2644 | 1,83,1,1,2, | ||
2645 | 0,1,2026,515,18, | ||
2646 | 1,2026,516,20,517, | ||
2647 | 4,34,82,0,69, | ||
2648 | 0,77,0,79,0, | ||
2649 | 84,0,69,0,95, | ||
2650 | 0,68,0,65,0, | ||
2651 | 84,0,65,0,95, | ||
2652 | 0,69,0,86,0, | ||
2653 | 69,0,78,0,84, | ||
2654 | 0,1,82,1,1, | ||
2655 | 2,0,1,422,518, | ||
2656 | 18,1,422,149,2, | ||
2657 | 0,1,428,519,18, | ||
2658 | 1,428,190,2,0, | ||
2659 | 1,2102,520,18,1, | ||
2660 | 2102,521,20,522,4, | ||
2661 | 20,83,0,116,0, | ||
2662 | 97,0,116,0,101, | ||
2663 | 0,69,0,118,0, | ||
2664 | 101,0,110,0,116, | ||
2665 | 0,1,102,1,2, | ||
2666 | 2,0,1,2103,523, | ||
2667 | 18,1,2103,393,2, | ||
2668 | 0,1,2039,524,18, | ||
2669 | 1,2039,525,20,526, | ||
2670 | 4,40,76,0,65, | ||
2671 | 0,78,0,68,0, | ||
2672 | 95,0,67,0,79, | ||
2673 | 0,76,0,76,0, | ||
2674 | 73,0,83,0,73, | ||
2675 | 0,79,0,78,0, | ||
2676 | 95,0,69,0,86, | ||
2677 | 0,69,0,78,0, | ||
2678 | 84,0,1,69,1, | ||
2679 | 1,2,0,1,2105, | ||
2680 | 527,18,1,2105,304, | ||
2681 | 2,0,1,2106,528, | ||
2682 | 18,1,2106,172,2, | ||
2683 | 0,1,2042,529,18, | ||
2684 | 1,2042,530,20,531, | ||
2685 | 4,32,68,0,65, | ||
2686 | 0,84,0,65,0, | ||
2687 | 83,0,69,0,82, | ||
2688 | 0,86,0,69,0, | ||
2689 | 82,0,95,0,69, | ||
2690 | 0,86,0,69,0, | ||
2691 | 78,0,84,0,1, | ||
2692 | 66,1,1,2,0, | ||
2693 | 1,2043,532,18,1, | ||
2694 | 2043,533,20,534,4, | ||
2695 | 26,67,0,79,0, | ||
2696 | 78,0,84,0,82, | ||
2697 | 0,79,0,76,0, | ||
2698 | 95,0,69,0,86, | ||
2699 | 0,69,0,78,0, | ||
2700 | 84,0,1,65,1, | ||
2701 | 1,2,0,1,2044, | ||
2702 | 535,18,1,2044,536, | ||
2703 | 20,537,4,42,67, | ||
2704 | 0,79,0,76,0, | ||
2705 | 76,0,73,0,83, | ||
2706 | 0,73,0,79,0, | ||
2707 | 78,0,95,0,83, | ||
2708 | 0,84,0,65,0, | ||
2709 | 82,0,84,0,95, | ||
2710 | 0,69,0,86,0, | ||
2711 | 69,0,78,0,84, | ||
2712 | 0,1,64,1,1, | ||
2713 | 2,0,1,2045,538, | ||
2714 | 18,1,2045,539,20, | ||
2715 | 540,4,38,67,0, | ||
2716 | 79,0,76,0,76, | ||
2717 | 0,73,0,83,0, | ||
2718 | 73,0,79,0,78, | ||
2719 | 0,95,0,69,0, | ||
2720 | 78,0,68,0,95, | ||
2721 | 0,69,0,86,0, | ||
2722 | 69,0,78,0,84, | ||
2723 | 0,1,63,1,1, | ||
2724 | 2,0,1,2046,541, | ||
2725 | 18,1,2046,542,20, | ||
2726 | 543,4,30,67,0, | ||
2727 | 79,0,76,0,76, | ||
2728 | 0,73,0,83,0, | ||
2729 | 73,0,79,0,78, | ||
2730 | 0,95,0,69,0, | ||
2731 | 86,0,69,0,78, | ||
2732 | 0,84,0,1,62, | ||
2733 | 1,1,2,0,1, | ||
2734 | 2047,544,18,1,2047, | ||
2735 | 545,20,546,4,26, | ||
2736 | 67,0,72,0,65, | ||
2737 | 0,78,0,71,0, | ||
2738 | 69,0,68,0,95, | ||
2739 | 0,69,0,86,0, | ||
2740 | 69,0,78,0,84, | ||
2741 | 0,1,61,1,1, | ||
2742 | 2,0,1,1557,547, | ||
2743 | 18,1,1557,360,2, | ||
2744 | 0,1,1001,548,18, | ||
2745 | 1,1001,469,2,0, | ||
2746 | 1,1559,549,18,1, | ||
2747 | 1559,155,2,0,1, | ||
2748 | 2051,550,18,1,2051, | ||
2749 | 551,20,552,4,10, | ||
2750 | 69,0,118,0,101, | ||
2751 | 0,110,0,116,0, | ||
2752 | 1,106,1,2,2, | ||
2753 | 0,1,447,553,18, | ||
2754 | 1,447,149,2,0, | ||
2755 | 1,1565,554,18,1, | ||
2756 | 1565,190,2,0,1, | ||
2757 | 1010,555,18,1,1010, | ||
2758 | 190,2,0,1,1011, | ||
2759 | 556,18,1,1011,152, | ||
2760 | 2,0,1,463,557, | ||
2761 | 18,1,463,334,2, | ||
2762 | 0,1,453,558,18, | ||
2763 | 1,453,190,2,0, | ||
2764 | 1,1584,559,18,1, | ||
2765 | 1584,155,2,0,1, | ||
2766 | 476,560,18,1,476, | ||
2767 | 561,20,562,4,30, | ||
2768 | 83,0,84,0,82, | ||
2769 | 0,73,0,78,0, | ||
2770 | 71,0,95,0,67, | ||
2771 | 0,79,0,78,0, | ||
2772 | 83,0,84,0,65, | ||
2773 | 0,78,0,84,0, | ||
2774 | 1,3,1,1,2, | ||
2775 | 0,1,477,563,18, | ||
2776 | 1,477,564,20,565, | ||
2777 | 4,28,70,0,76, | ||
2778 | 0,79,0,65,0, | ||
2779 | 84,0,95,0,67, | ||
2780 | 0,79,0,78,0, | ||
2781 | 83,0,84,0,65, | ||
2782 | 0,78,0,84,0, | ||
2783 | 1,94,1,1,2, | ||
2784 | 0,1,478,566,18, | ||
2785 | 1,478,567,20,568, | ||
2786 | 4,40,72,0,69, | ||
2787 | 0,88,0,95,0, | ||
2788 | 73,0,78,0,84, | ||
2789 | 0,69,0,71,0, | ||
2790 | 69,0,82,0,95, | ||
2791 | 0,67,0,79,0, | ||
2792 | 78,0,83,0,84, | ||
2793 | 0,65,0,78,0, | ||
2794 | 84,0,1,93,1, | ||
2795 | 1,2,0,1,479, | ||
2796 | 569,18,1,479,570, | ||
2797 | 20,571,4,32,73, | ||
2798 | 0,78,0,84,0, | ||
2799 | 69,0,71,0,69, | ||
2800 | 0,82,0,95,0, | ||
2801 | 67,0,79,0,78, | ||
2802 | 0,83,0,84,0, | ||
2803 | 65,0,78,0,84, | ||
2804 | 0,1,92,1,1, | ||
2805 | 2,0,1,488,572, | ||
2806 | 18,1,488,149,2, | ||
2807 | 0,1,1046,573,18, | ||
2808 | 1,1046,190,2,0, | ||
2809 | 1,494,574,18,1, | ||
2810 | 494,190,2,0,1, | ||
2811 | 1609,575,18,1,1609, | ||
2812 | 500,2,0,1,1611, | ||
2813 | 576,18,1,1611,152, | ||
2814 | 2,0,1,2104,577, | ||
2815 | 18,1,2104,521,2, | ||
2816 | 0,1,504,578,18, | ||
2817 | 1,504,334,2,0, | ||
2818 | 1,2177,579,18,1, | ||
2819 | 2177,393,2,0,1, | ||
2820 | 2238,580,18,1,2238, | ||
2821 | 581,20,582,4,34, | ||
2822 | 71,0,108,0,111, | ||
2823 | 0,98,0,97,0, | ||
2824 | 108,0,68,0,101, | ||
2825 | 0,102,0,105,0, | ||
2826 | 110,0,105,0,116, | ||
2827 | 0,105,0,111,0, | ||
2828 | 110,0,115,0,1, | ||
2829 | 96,1,2,2,0, | ||
2830 | 1,2179,583,18,1, | ||
2831 | 2179,292,2,0,1, | ||
2832 | 2048,584,18,1,2048, | ||
2833 | 585,20,586,4,24, | ||
2834 | 65,0,84,0,84, | ||
2835 | 0,65,0,67,0, | ||
2836 | 72,0,95,0,69, | ||
2837 | 0,86,0,69,0, | ||
2838 | 78,0,84,0,1, | ||
2839 | 60,1,1,2,0, | ||
2840 | 1,2049,587,18,1, | ||
2841 | 2049,588,20,589,4, | ||
2842 | 30,65,0,84,0, | ||
2843 | 95,0,84,0,65, | ||
2844 | 0,82,0,71,0, | ||
2845 | 69,0,84,0,95, | ||
2846 | 0,69,0,86,0, | ||
2847 | 69,0,78,0,84, | ||
2848 | 0,1,59,1,1, | ||
2849 | 2,0,1,1002,590, | ||
2850 | 18,1,1002,480,2, | ||
2851 | 0,1,2183,591,18, | ||
2852 | 1,2183,158,2,0, | ||
2853 | 1,2052,592,18,1, | ||
2854 | 2052,135,2,0,1, | ||
2855 | 2185,593,18,1,2185, | ||
2856 | 135,2,0,1,1637, | ||
2857 | 594,18,1,1637,279, | ||
2858 | 2,0,1,1639,595, | ||
2859 | 18,1,1639,596,20, | ||
2860 | 597,4,4,68,0, | ||
2861 | 79,0,1,44,1, | ||
2862 | 1,2,0,1,2198, | ||
2863 | 598,18,1,2198,308, | ||
2864 | 2,0,1,2200,599, | ||
2865 | 18,1,2200,168,2, | ||
2866 | 0,1,2201,600,18, | ||
2867 | 1,2201,182,2,0, | ||
2868 | 1,1092,601,18,1, | ||
2869 | 1092,486,2,0,1, | ||
2870 | 2207,602,18,1,2207, | ||
2871 | 190,2,0,1,1094, | ||
2872 | 603,18,1,1094,152, | ||
2873 | 2,0,1,2141,604, | ||
2874 | 18,1,2141,496,2, | ||
2875 | 0,1,2017,605,18, | ||
2876 | 1,2017,172,2,0, | ||
2877 | 1,1666,606,18,1, | ||
2878 | 1666,279,2,0,1, | ||
2879 | 1667,607,18,1,1667, | ||
2880 | 178,2,0,1,1111, | ||
2881 | 608,18,1,1111,197, | ||
2882 | 2,0,1,1112,609, | ||
2883 | 18,1,1112,132,2, | ||
2884 | 0,610,5,0,611, | ||
2885 | 5,287,1,2,612, | ||
2886 | 19,176,1,2,613, | ||
2887 | 5,6,1,2179,614, | ||
2888 | 17,615,15,616,4, | ||
2889 | 30,37,0,76,0, | ||
2890 | 83,0,76,0,80, | ||
2891 | 0,114,0,111,0, | ||
2892 | 103,0,114,0,97, | ||
2893 | 0,109,0,82,0, | ||
2894 | 111,0,111,0,116, | ||
2895 | 0,1,-1,1,5, | ||
2896 | 617,20,618,4,32, | ||
2897 | 76,0,83,0,76, | ||
2898 | 0,80,0,114,0, | ||
2899 | 111,0,103,0,114, | ||
2900 | 0,97,0,109,0, | ||
2901 | 82,0,111,0,111, | ||
2902 | 0,116,0,95,0, | ||
2903 | 50,0,1,138,1, | ||
2904 | 3,1,2,1,1, | ||
2905 | 619,22,1,2,1, | ||
2906 | 2103,620,17,621,15, | ||
2907 | 622,4,12,37,0, | ||
2908 | 83,0,116,0,97, | ||
2909 | 0,116,0,101,0, | ||
2910 | 1,-1,1,5,623, | ||
2911 | 20,624,4,14,83, | ||
2912 | 0,116,0,97,0, | ||
2913 | 116,0,101,0,95, | ||
2914 | 0,50,0,1,150, | ||
2915 | 1,3,1,6,1, | ||
2916 | 5,625,22,1,14, | ||
2917 | 1,2183,626,17,627, | ||
2918 | 15,628,4,14,37, | ||
2919 | 0,83,0,116,0, | ||
2920 | 97,0,116,0,101, | ||
2921 | 0,115,0,1,-1, | ||
2922 | 1,5,629,20,630, | ||
2923 | 4,16,83,0,116, | ||
2924 | 0,97,0,116,0, | ||
2925 | 101,0,115,0,95, | ||
2926 | 0,49,0,1,147, | ||
2927 | 1,3,1,2,1, | ||
2928 | 1,631,22,1,11, | ||
2929 | 1,2182,632,17,633, | ||
2930 | 15,628,1,-1,1, | ||
2931 | 5,634,20,635,4, | ||
2932 | 16,83,0,116,0, | ||
2933 | 97,0,116,0,101, | ||
2934 | 0,115,0,95,0, | ||
2935 | 50,0,1,148,1, | ||
2936 | 3,1,3,1,2, | ||
2937 | 636,22,1,12,1, | ||
2938 | 2249,637,17,638,15, | ||
2939 | 616,1,-1,1,5, | ||
2940 | 639,20,640,4,32, | ||
2941 | 76,0,83,0,76, | ||
2942 | 0,80,0,114,0, | ||
2943 | 111,0,103,0,114, | ||
2944 | 0,97,0,109,0, | ||
2945 | 82,0,111,0,111, | ||
2946 | 0,116,0,95,0, | ||
2947 | 49,0,1,137,1, | ||
2948 | 3,1,3,1,2, | ||
2949 | 641,22,1,1,1, | ||
2950 | 2177,642,17,643,15, | ||
2951 | 622,1,-1,1,5, | ||
2952 | 644,20,645,4,14, | ||
2953 | 83,0,116,0,97, | ||
2954 | 0,116,0,101,0, | ||
2955 | 95,0,49,0,1, | ||
2956 | 149,1,3,1,5, | ||
2957 | 1,4,646,22,1, | ||
2958 | 13,1,3,647,19, | ||
2959 | 562,1,3,648,5, | ||
2960 | 77,1,1853,649,17, | ||
2961 | 650,15,651,4,20, | ||
2962 | 37,0,83,0,116, | ||
2963 | 0,97,0,116,0, | ||
2964 | 101,0,109,0,101, | ||
2965 | 0,110,0,116,0, | ||
2966 | 1,-1,1,5,652, | ||
2967 | 20,653,4,22,83, | ||
2968 | 0,116,0,97,0, | ||
2969 | 116,0,101,0,109, | ||
2970 | 0,101,0,110,0, | ||
2971 | 116,0,95,0,57, | ||
2972 | 0,1,169,1,3, | ||
2973 | 1,2,1,1,654, | ||
2974 | 22,1,35,1,1854, | ||
2975 | 655,17,656,15,651, | ||
2976 | 1,-1,1,5,657, | ||
2977 | 20,658,4,22,83, | ||
2978 | 0,116,0,97,0, | ||
2979 | 116,0,101,0,109, | ||
2980 | 0,101,0,110,0, | ||
2981 | 116,0,95,0,56, | ||
2982 | 0,1,168,1,3, | ||
2983 | 1,2,1,1,659, | ||
2984 | 22,1,34,1,1855, | ||
2985 | 660,17,661,15,651, | ||
2986 | 1,-1,1,5,662, | ||
2987 | 20,663,4,22,83, | ||
2988 | 0,116,0,97,0, | ||
2989 | 116,0,101,0,109, | ||
2990 | 0,101,0,110,0, | ||
2991 | 116,0,95,0,55, | ||
2992 | 0,1,167,1,3, | ||
2993 | 1,2,1,1,664, | ||
2994 | 22,1,33,1,112, | ||
2995 | 665,16,0,560,1, | ||
2996 | 384,666,16,0,560, | ||
2997 | 1,1858,667,17,668, | ||
2998 | 15,651,1,-1,1, | ||
2999 | 5,669,20,670,4, | ||
3000 | 22,83,0,116,0, | ||
3001 | 97,0,116,0,101, | ||
3002 | 0,109,0,101,0, | ||
3003 | 110,0,116,0,95, | ||
3004 | 0,53,0,1,165, | ||
3005 | 1,3,1,3,1, | ||
3006 | 2,671,22,1,31, | ||
3007 | 1,1860,672,17,673, | ||
3008 | 15,651,1,-1,1, | ||
3009 | 5,674,20,675,4, | ||
3010 | 22,83,0,116,0, | ||
3011 | 97,0,116,0,101, | ||
3012 | 0,109,0,101,0, | ||
3013 | 110,0,116,0,95, | ||
3014 | 0,52,0,1,164, | ||
3015 | 1,3,1,3,1, | ||
3016 | 2,676,22,1,30, | ||
3017 | 1,1862,677,17,678, | ||
3018 | 15,651,1,-1,1, | ||
3019 | 5,679,20,680,4, | ||
3020 | 22,83,0,116,0, | ||
3021 | 97,0,116,0,101, | ||
3022 | 0,109,0,101,0, | ||
3023 | 110,0,116,0,95, | ||
3024 | 0,50,0,1,162, | ||
3025 | 1,3,1,3,1, | ||
3026 | 2,681,22,1,28, | ||
3027 | 1,1863,682,17,683, | ||
3028 | 15,651,1,-1,1, | ||
3029 | 5,279,1,1,1, | ||
3030 | 1,684,22,1,26, | ||
3031 | 1,447,685,16,0, | ||
3032 | 560,1,1611,686,16, | ||
3033 | 0,560,1,124,687, | ||
3034 | 16,0,560,1,1760, | ||
3035 | 688,17,689,15,690, | ||
3036 | 4,30,37,0,87, | ||
3037 | 0,104,0,105,0, | ||
3038 | 108,0,101,0,83, | ||
3039 | 0,116,0,97,0, | ||
3040 | 116,0,101,0,109, | ||
3041 | 0,101,0,110,0, | ||
3042 | 116,0,1,-1,1, | ||
3043 | 5,691,20,692,4, | ||
3044 | 32,87,0,104,0, | ||
3045 | 105,0,108,0,101, | ||
3046 | 0,83,0,116,0, | ||
3047 | 97,0,116,0,101, | ||
3048 | 0,109,0,101,0, | ||
3049 | 110,0,116,0,95, | ||
3050 | 0,49,0,1,175, | ||
3051 | 1,3,1,6,1, | ||
3052 | 5,693,22,1,41, | ||
3053 | 1,236,694,16,0, | ||
3054 | 560,1,1763,695,16, | ||
3055 | 0,560,1,2201,696, | ||
3056 | 16,0,560,1,1222, | ||
3057 | 697,16,0,560,1, | ||
3058 | 1115,698,16,0,560, | ||
3059 | 1,1187,699,16,0, | ||
3060 | 560,1,137,700,16, | ||
3061 | 0,560,1,217,701, | ||
3062 | 16,0,560,1,32, | ||
3063 | 702,16,0,560,1, | ||
3064 | 1668,703,16,0,560, | ||
3065 | 1,1514,704,16,0, | ||
3066 | 560,1,256,705,16, | ||
3067 | 0,560,1,41,706, | ||
3068 | 16,0,560,1,151, | ||
3069 | 707,16,0,560,1, | ||
3070 | 43,708,16,0,560, | ||
3071 | 1,1732,709,16,0, | ||
3072 | 560,1,1637,710,17, | ||
3073 | 711,15,712,4,16, | ||
3074 | 37,0,70,0,111, | ||
3075 | 0,114,0,76,0, | ||
3076 | 111,0,111,0,112, | ||
3077 | 0,1,-1,1,5, | ||
3078 | 713,20,714,4,18, | ||
3079 | 70,0,111,0,114, | ||
3080 | 0,76,0,111,0, | ||
3081 | 111,0,112,0,95, | ||
3082 | 0,49,0,1,177, | ||
3083 | 1,3,1,10,1, | ||
3084 | 9,715,22,1,43, | ||
3085 | 1,2009,716,17,717, | ||
3086 | 15,718,4,28,37, | ||
3087 | 0,83,0,116,0, | ||
3088 | 97,0,116,0,101, | ||
3089 | 0,109,0,101,0, | ||
3090 | 110,0,116,0,76, | ||
3091 | 0,105,0,115,0, | ||
3092 | 116,0,1,-1,1, | ||
3093 | 5,719,20,720,4, | ||
3094 | 30,83,0,116,0, | ||
3095 | 97,0,116,0,101, | ||
3096 | 0,109,0,101,0, | ||
3097 | 110,0,116,0,76, | ||
3098 | 0,105,0,115,0, | ||
3099 | 116,0,95,0,49, | ||
3100 | 0,1,159,1,3, | ||
3101 | 1,2,1,1,721, | ||
3102 | 22,1,24,1,1639, | ||
3103 | 722,16,0,560,1, | ||
3104 | 2011,723,17,724,15, | ||
3105 | 725,4,36,37,0, | ||
3106 | 67,0,111,0,109, | ||
3107 | 0,112,0,111,0, | ||
3108 | 117,0,110,0,100, | ||
3109 | 0,83,0,116,0, | ||
3110 | 97,0,116,0,101, | ||
3111 | 0,109,0,101,0, | ||
3112 | 110,0,116,0,1, | ||
3113 | -1,1,5,726,20, | ||
3114 | 727,4,38,67,0, | ||
3115 | 111,0,109,0,112, | ||
3116 | 0,111,0,117,0, | ||
3117 | 110,0,100,0,83, | ||
3118 | 0,116,0,97,0, | ||
3119 | 116,0,101,0,109, | ||
3120 | 0,101,0,110,0, | ||
3121 | 116,0,95,0,49, | ||
3122 | 0,1,157,1,3, | ||
3123 | 1,3,1,2,728, | ||
3124 | 22,1,22,1,1467, | ||
3125 | 729,17,730,15,651, | ||
3126 | 1,-1,1,5,731, | ||
3127 | 20,732,4,22,83, | ||
3128 | 0,116,0,97,0, | ||
3129 | 116,0,101,0,109, | ||
3130 | 0,101,0,110,0, | ||
3131 | 116,0,95,0,49, | ||
3132 | 0,1,161,1,3, | ||
3133 | 1,3,1,2,733, | ||
3134 | 22,1,27,1,1584, | ||
3135 | 734,16,0,560,1, | ||
3136 | 52,735,16,0,560, | ||
3137 | 1,381,736,16,0, | ||
3138 | 560,1,346,737,16, | ||
3139 | 0,560,1,166,738, | ||
3140 | 16,0,560,1,1257, | ||
3141 | 739,16,0,560,1, | ||
3142 | 1694,740,17,741,15, | ||
3143 | 742,4,34,37,0, | ||
3144 | 68,0,111,0,87, | ||
3145 | 0,104,0,105,0, | ||
3146 | 108,0,101,0,83, | ||
3147 | 0,116,0,97,0, | ||
3148 | 116,0,101,0,109, | ||
3149 | 0,101,0,110,0, | ||
3150 | 116,0,1,-1,1, | ||
3151 | 5,743,20,744,4, | ||
3152 | 36,68,0,111,0, | ||
3153 | 87,0,104,0,105, | ||
3154 | 0,108,0,101,0, | ||
3155 | 83,0,116,0,97, | ||
3156 | 0,116,0,101,0, | ||
3157 | 109,0,101,0,110, | ||
3158 | 0,116,0,95,0, | ||
3159 | 49,0,1,176,1, | ||
3160 | 3,1,8,1,7, | ||
3161 | 745,22,1,42,1, | ||
3162 | 1432,746,16,0,560, | ||
3163 | 1,1152,747,16,0, | ||
3164 | 560,1,1856,748,17, | ||
3165 | 749,15,651,1,-1, | ||
3166 | 1,5,750,20,751, | ||
3167 | 4,22,83,0,116, | ||
3168 | 0,97,0,116,0, | ||
3169 | 101,0,109,0,101, | ||
3170 | 0,110,0,116,0, | ||
3171 | 95,0,54,0,1, | ||
3172 | 166,1,3,1,2, | ||
3173 | 1,1,752,22,1, | ||
3174 | 32,1,62,753,16, | ||
3175 | 0,560,1,1965,754, | ||
3176 | 16,0,560,1,504, | ||
3177 | 755,16,0,560,1, | ||
3178 | 277,756,16,0,560, | ||
3179 | 1,397,757,16,0, | ||
3180 | 560,1,71,758,16, | ||
3181 | 0,560,1,1707,759, | ||
3182 | 16,0,560,1,1817, | ||
3183 | 760,17,761,15,762, | ||
3184 | 4,24,37,0,73, | ||
3185 | 0,102,0,83,0, | ||
3186 | 116,0,97,0,116, | ||
3187 | 0,101,0,109,0, | ||
3188 | 101,0,110,0,116, | ||
3189 | 0,1,-1,1,5, | ||
3190 | 763,20,764,4,26, | ||
3191 | 73,0,102,0,83, | ||
3192 | 0,116,0,97,0, | ||
3193 | 116,0,101,0,109, | ||
3194 | 0,101,0,110,0, | ||
3195 | 116,0,95,0,49, | ||
3196 | 0,1,173,1,3, | ||
3197 | 1,6,1,5,765, | ||
3198 | 22,1,39,1,1818, | ||
3199 | 766,16,0,560,1, | ||
3200 | 463,767,16,0,560, | ||
3201 | 1,76,768,16,0, | ||
3202 | 560,1,1385,769,17, | ||
3203 | 770,15,651,1,-1, | ||
3204 | 1,5,771,20,772, | ||
3205 | 4,22,83,0,116, | ||
3206 | 0,97,0,116,0, | ||
3207 | 101,0,109,0,101, | ||
3208 | 0,110,0,116,0, | ||
3209 | 95,0,51,0,1, | ||
3210 | 163,1,3,1,3, | ||
3211 | 1,2,773,22,1, | ||
3212 | 29,1,79,774,16, | ||
3213 | 0,560,1,182,775, | ||
3214 | 16,0,560,1,299, | ||
3215 | 776,16,0,560,1, | ||
3216 | 2006,777,17,778,15, | ||
3217 | 725,1,-1,1,5, | ||
3218 | 779,20,780,4,38, | ||
3219 | 67,0,111,0,109, | ||
3220 | 0,112,0,111,0, | ||
3221 | 117,0,110,0,100, | ||
3222 | 0,83,0,116,0, | ||
3223 | 97,0,116,0,101, | ||
3224 | 0,109,0,101,0, | ||
3225 | 110,0,116,0,95, | ||
3226 | 0,50,0,1,158, | ||
3227 | 1,3,1,4,1, | ||
3228 | 3,781,22,1,23, | ||
3229 | 1,1559,782,16,0, | ||
3230 | 560,1,85,783,16, | ||
3231 | 0,560,1,488,784, | ||
3232 | 16,0,560,1,1396, | ||
3233 | 785,16,0,560,1, | ||
3234 | 89,786,16,0,560, | ||
3235 | 1,199,787,16,0, | ||
3236 | 560,1,1292,788,16, | ||
3237 | 0,560,1,422,789, | ||
3238 | 16,0,560,1,97, | ||
3239 | 790,16,0,560,1, | ||
3240 | 1469,791,16,0,560, | ||
3241 | 1,1788,792,16,0, | ||
3242 | 560,1,102,793,16, | ||
3243 | 0,560,1,1847,794, | ||
3244 | 17,795,15,762,1, | ||
3245 | -1,1,5,796,20, | ||
3246 | 797,4,26,73,0, | ||
3247 | 102,0,83,0,116, | ||
3248 | 0,97,0,116,0, | ||
3249 | 101,0,109,0,101, | ||
3250 | 0,110,0,116,0, | ||
3251 | 95,0,50,0,1, | ||
3252 | 174,1,3,1,8, | ||
3253 | 1,7,798,22,1, | ||
3254 | 40,1,322,799,16, | ||
3255 | 0,560,1,1327,800, | ||
3256 | 16,0,560,1,2005, | ||
3257 | 801,17,802,15,718, | ||
3258 | 1,-1,1,5,803, | ||
3259 | 20,804,4,30,83, | ||
3260 | 0,116,0,97,0, | ||
3261 | 116,0,101,0,109, | ||
3262 | 0,101,0,110,0, | ||
3263 | 116,0,76,0,105, | ||
3264 | 0,115,0,116,0, | ||
3265 | 95,0,50,0,1, | ||
3266 | 160,1,3,1,3, | ||
3267 | 1,2,805,22,1, | ||
3268 | 25,1,1852,806,17, | ||
3269 | 807,15,651,1,-1, | ||
3270 | 1,5,808,20,809, | ||
3271 | 4,24,83,0,116, | ||
3272 | 0,97,0,116,0, | ||
3273 | 101,0,109,0,101, | ||
3274 | 0,110,0,116,0, | ||
3275 | 95,0,49,0,48, | ||
3276 | 0,1,170,1,3, | ||
3277 | 1,2,1,1,810, | ||
3278 | 22,1,36,1,4, | ||
3279 | 811,19,205,1,4, | ||
3280 | 812,5,82,1,2009, | ||
3281 | 716,1,1257,813,16, | ||
3282 | 0,475,1,1760,688, | ||
3283 | 1,256,814,16,0, | ||
3284 | 475,1,1763,815,16, | ||
3285 | 0,475,1,1514,816, | ||
3286 | 16,0,475,1,504, | ||
3287 | 817,16,0,475,1, | ||
3288 | 277,818,16,0,475, | ||
3289 | 1,1788,819,16,0, | ||
3290 | 475,1,32,820,16, | ||
3291 | 0,475,1,1292,821, | ||
3292 | 16,0,475,1,40, | ||
3293 | 822,16,0,207,1, | ||
3294 | 41,823,16,0,475, | ||
3295 | 1,43,824,16,0, | ||
3296 | 475,1,44,825,16, | ||
3297 | 0,207,1,47,826, | ||
3298 | 16,0,203,1,299, | ||
3299 | 827,16,0,475,1, | ||
3300 | 52,828,16,0,475, | ||
3301 | 1,1559,829,16,0, | ||
3302 | 475,1,1817,760,1, | ||
3303 | 1818,830,16,0,475, | ||
3304 | 1,63,831,16,0, | ||
3305 | 218,1,66,832,16, | ||
3306 | 0,216,1,2011,723, | ||
3307 | 1,71,833,16,0, | ||
3308 | 475,1,1327,834,16, | ||
3309 | 0,475,1,76,835, | ||
3310 | 16,0,475,1,1584, | ||
3311 | 836,16,0,475,1, | ||
3312 | 79,837,16,0,475, | ||
3313 | 1,322,838,16,0, | ||
3314 | 475,1,85,839,16, | ||
3315 | 0,475,1,89,840, | ||
3316 | 16,0,475,1,1847, | ||
3317 | 794,1,346,841,16, | ||
3318 | 0,475,1,1853,649, | ||
3319 | 1,1854,655,1,1855, | ||
3320 | 660,1,1856,748,1, | ||
3321 | 1858,667,1,97,842, | ||
3322 | 16,0,475,1,1860, | ||
3323 | 672,1,1862,677,1, | ||
3324 | 1863,682,1,102,843, | ||
3325 | 16,0,475,1,1112, | ||
3326 | 844,16,0,203,1, | ||
3327 | 1115,845,16,0,475, | ||
3328 | 1,112,846,16,0, | ||
3329 | 475,1,124,847,16, | ||
3330 | 0,475,1,381,848, | ||
3331 | 16,0,475,1,1637, | ||
3332 | 710,1,384,849,16, | ||
3333 | 0,475,1,137,850, | ||
3334 | 16,0,475,1,1396, | ||
3335 | 851,16,0,475,1, | ||
3336 | 397,852,16,0,475, | ||
3337 | 1,1152,853,16,0, | ||
3338 | 475,1,151,854,16, | ||
3339 | 0,475,1,1852,806, | ||
3340 | 1,1611,855,16,0, | ||
3341 | 475,1,1668,856,16, | ||
3342 | 0,475,1,166,857, | ||
3343 | 16,0,475,1,422, | ||
3344 | 858,16,0,475,1, | ||
3345 | 1385,769,1,1432,859, | ||
3346 | 16,0,475,1,182, | ||
3347 | 860,16,0,475,1, | ||
3348 | 1187,861,16,0,475, | ||
3349 | 1,1639,862,16,0, | ||
3350 | 475,1,1694,740,1, | ||
3351 | 2201,863,16,0,475, | ||
3352 | 1,447,864,16,0, | ||
3353 | 475,1,199,865,16, | ||
3354 | 0,475,1,1707,866, | ||
3355 | 16,0,475,1,1965, | ||
3356 | 867,16,0,475,1, | ||
3357 | 1467,729,1,1469,868, | ||
3358 | 16,0,475,1,217, | ||
3359 | 869,16,0,475,1, | ||
3360 | 1222,870,16,0,475, | ||
3361 | 1,1732,871,16,0, | ||
3362 | 475,1,463,872,16, | ||
3363 | 0,475,1,236,873, | ||
3364 | 16,0,475,1,488, | ||
3365 | 874,16,0,475,1, | ||
3366 | 2005,801,1,2006,777, | ||
3367 | 1,5,875,19,202, | ||
3368 | 1,5,876,5,82, | ||
3369 | 1,2009,716,1,1257, | ||
3370 | 877,16,0,471,1, | ||
3371 | 1760,688,1,256,878, | ||
3372 | 16,0,471,1,1763, | ||
3373 | 879,16,0,471,1, | ||
3374 | 1514,880,16,0,471, | ||
3375 | 1,504,881,16,0, | ||
3376 | 471,1,277,882,16, | ||
3377 | 0,471,1,1788,883, | ||
3378 | 16,0,471,1,32, | ||
3379 | 884,16,0,471,1, | ||
3380 | 1292,885,16,0,471, | ||
3381 | 1,40,886,16,0, | ||
3382 | 206,1,41,887,16, | ||
3383 | 0,471,1,43,888, | ||
3384 | 16,0,471,1,44, | ||
3385 | 889,16,0,206,1, | ||
3386 | 47,890,16,0,200, | ||
3387 | 1,299,891,16,0, | ||
3388 | 471,1,52,892,16, | ||
3389 | 0,471,1,1559,893, | ||
3390 | 16,0,471,1,1817, | ||
3391 | 760,1,1818,894,16, | ||
3392 | 0,471,1,63,895, | ||
3393 | 16,0,217,1,66, | ||
3394 | 896,16,0,215,1, | ||
3395 | 2011,723,1,71,897, | ||
3396 | 16,0,471,1,1327, | ||
3397 | 898,16,0,471,1, | ||
3398 | 76,899,16,0,471, | ||
3399 | 1,1584,900,16,0, | ||
3400 | 471,1,79,901,16, | ||
3401 | 0,471,1,322,902, | ||
3402 | 16,0,471,1,85, | ||
3403 | 903,16,0,471,1, | ||
3404 | 89,904,16,0,471, | ||
3405 | 1,1847,794,1,346, | ||
3406 | 905,16,0,471,1, | ||
3407 | 1853,649,1,1854,655, | ||
3408 | 1,1855,660,1,1856, | ||
3409 | 748,1,1858,667,1, | ||
3410 | 97,906,16,0,471, | ||
3411 | 1,1860,672,1,1862, | ||
3412 | 677,1,1863,682,1, | ||
3413 | 102,907,16,0,471, | ||
3414 | 1,1112,908,16,0, | ||
3415 | 200,1,1115,909,16, | ||
3416 | 0,471,1,112,910, | ||
3417 | 16,0,471,1,124, | ||
3418 | 911,16,0,471,1, | ||
3419 | 381,912,16,0,471, | ||
3420 | 1,1637,710,1,384, | ||
3421 | 913,16,0,471,1, | ||
3422 | 137,914,16,0,471, | ||
3423 | 1,1396,915,16,0, | ||
3424 | 471,1,397,916,16, | ||
3425 | 0,471,1,1152,917, | ||
3426 | 16,0,471,1,151, | ||
3427 | 918,16,0,471,1, | ||
3428 | 1852,806,1,1611,919, | ||
3429 | 16,0,471,1,1668, | ||
3430 | 920,16,0,471,1, | ||
3431 | 166,921,16,0,471, | ||
3432 | 1,422,922,16,0, | ||
3433 | 471,1,1385,769,1, | ||
3434 | 1432,923,16,0,471, | ||
3435 | 1,182,924,16,0, | ||
3436 | 471,1,1187,925,16, | ||
3437 | 0,471,1,1639,926, | ||
3438 | 16,0,471,1,1694, | ||
3439 | 740,1,2201,927,16, | ||
3440 | 0,471,1,447,928, | ||
3441 | 16,0,471,1,199, | ||
3442 | 929,16,0,471,1, | ||
3443 | 1707,930,16,0,471, | ||
3444 | 1,1965,931,16,0, | ||
3445 | 471,1,1467,729,1, | ||
3446 | 1469,932,16,0,471, | ||
3447 | 1,217,933,16,0, | ||
3448 | 471,1,1222,934,16, | ||
3449 | 0,471,1,1732,935, | ||
3450 | 16,0,471,1,463, | ||
3451 | 936,16,0,471,1, | ||
3452 | 236,937,16,0,471, | ||
3453 | 1,488,938,16,0, | ||
3454 | 471,1,2005,801,1, | ||
3455 | 2006,777,1,6,939, | ||
3456 | 19,302,1,6,940, | ||
3457 | 5,1,1,40,941, | ||
3458 | 16,0,300,1,7, | ||
3459 | 942,19,277,1,7, | ||
3460 | 943,5,1,1,40, | ||
3461 | 944,16,0,275,1, | ||
3462 | 8,945,19,259,1, | ||
3463 | 8,946,5,1,1, | ||
3464 | 40,947,16,0,257, | ||
3465 | 1,9,948,19,330, | ||
3466 | 1,9,949,5,1, | ||
3467 | 1,40,950,16,0, | ||
3468 | 328,1,10,951,19, | ||
3469 | 186,1,10,952,5, | ||
3470 | 1,1,40,953,16, | ||
3471 | 0,184,1,11,954, | ||
3472 | 19,156,1,11,955, | ||
3473 | 5,108,1,2009,716, | ||
3474 | 1,504,956,17,957, | ||
3475 | 15,958,4,34,37, | ||
3476 | 0,82,0,111,0, | ||
3477 | 116,0,97,0,116, | ||
3478 | 0,105,0,111,0, | ||
3479 | 110,0,67,0,111, | ||
3480 | 0,110,0,115,0, | ||
3481 | 116,0,97,0,110, | ||
3482 | 0,116,0,1,-1, | ||
3483 | 1,5,959,20,960, | ||
3484 | 4,36,82,0,111, | ||
3485 | 0,116,0,97,0, | ||
3486 | 116,0,105,0,111, | ||
3487 | 0,110,0,67,0, | ||
3488 | 111,0,110,0,115, | ||
3489 | 0,116,0,97,0, | ||
3490 | 110,0,116,0,95, | ||
3491 | 0,49,0,1,197, | ||
3492 | 1,3,1,10,1, | ||
3493 | 9,961,22,1,63, | ||
3494 | 1,1760,688,1,1513, | ||
3495 | 962,16,0,549,1, | ||
3496 | 1263,963,17,964,15, | ||
3497 | 965,4,22,37,0, | ||
3498 | 65,0,115,0,115, | ||
3499 | 0,105,0,103,0, | ||
3500 | 110,0,109,0,101, | ||
3501 | 0,110,0,116,0, | ||
3502 | 1,-1,1,5,966, | ||
3503 | 20,967,4,24,65, | ||
3504 | 0,115,0,115,0, | ||
3505 | 105,0,103,0,110, | ||
3506 | 0,109,0,101,0, | ||
3507 | 110,0,116,0,95, | ||
3508 | 0,52,0,1,185, | ||
3509 | 1,3,1,4,1, | ||
3510 | 3,968,22,1,51, | ||
3511 | 1,9,969,17,970, | ||
3512 | 15,971,4,24,37, | ||
3513 | 0,68,0,101,0, | ||
3514 | 99,0,108,0,97, | ||
3515 | 0,114,0,97,0, | ||
3516 | 116,0,105,0,111, | ||
3517 | 0,110,0,1,-1, | ||
3518 | 1,5,972,20,973, | ||
3519 | 4,26,68,0,101, | ||
3520 | 0,99,0,108,0, | ||
3521 | 97,0,114,0,97, | ||
3522 | 0,116,0,105,0, | ||
3523 | 111,0,110,0,95, | ||
3524 | 0,49,0,1,156, | ||
3525 | 1,3,1,3,1, | ||
3526 | 2,974,22,1,21, | ||
3527 | 1,262,975,17,976, | ||
3528 | 15,977,4,34,37, | ||
3529 | 0,66,0,105,0, | ||
3530 | 110,0,97,0,114, | ||
3531 | 0,121,0,69,0, | ||
3532 | 120,0,112,0,114, | ||
3533 | 0,101,0,115,0, | ||
3534 | 115,0,105,0,111, | ||
3535 | 0,110,0,1,-1, | ||
3536 | 1,5,978,20,979, | ||
3537 | 4,36,66,0,105, | ||
3538 | 0,110,0,97,0, | ||
3539 | 114,0,121,0,69, | ||
3540 | 0,120,0,112,0, | ||
3541 | 114,0,101,0,115, | ||
3542 | 0,115,0,105,0, | ||
3543 | 111,0,110,0,95, | ||
3544 | 0,53,0,1,215, | ||
3545 | 1,3,1,4,1, | ||
3546 | 3,980,22,1,81, | ||
3547 | 1,19,981,17,970, | ||
3548 | 1,2,974,1,1527, | ||
3549 | 982,17,983,15,984, | ||
3550 | 4,34,37,0,70, | ||
3551 | 0,111,0,114,0, | ||
3552 | 76,0,111,0,111, | ||
3553 | 0,112,0,83,0, | ||
3554 | 116,0,97,0,116, | ||
3555 | 0,101,0,109,0, | ||
3556 | 101,0,110,0,116, | ||
3557 | 0,1,-1,1,5, | ||
3558 | 985,20,986,4,36, | ||
3559 | 70,0,111,0,114, | ||
3560 | 0,76,0,111,0, | ||
3561 | 111,0,112,0,83, | ||
3562 | 0,116,0,97,0, | ||
3563 | 116,0,101,0,109, | ||
3564 | 0,101,0,110,0, | ||
3565 | 116,0,95,0,51, | ||
3566 | 0,1,180,1,3, | ||
3567 | 1,4,1,3,987, | ||
3568 | 22,1,46,1,477, | ||
3569 | 988,17,989,15,990, | ||
3570 | 4,18,37,0,67, | ||
3571 | 0,111,0,110,0, | ||
3572 | 115,0,116,0,97, | ||
3573 | 0,110,0,116,0, | ||
3574 | 1,-1,1,5,991, | ||
3575 | 20,992,4,20,67, | ||
3576 | 0,111,0,110,0, | ||
3577 | 115,0,116,0,97, | ||
3578 | 0,110,0,116,0, | ||
3579 | 95,0,51,0,1, | ||
3580 | 194,1,3,1,2, | ||
3581 | 1,1,993,22,1, | ||
3582 | 60,1,1001,994,17, | ||
3583 | 995,15,996,4,38, | ||
3584 | 37,0,84,0,121, | ||
3585 | 0,112,0,101,0, | ||
3586 | 99,0,97,0,115, | ||
3587 | 0,116,0,69,0, | ||
3588 | 120,0,112,0,114, | ||
3589 | 0,101,0,115,0, | ||
3590 | 115,0,105,0,111, | ||
3591 | 0,110,0,1,-1, | ||
3592 | 1,5,997,20,998, | ||
3593 | 4,40,84,0,121, | ||
3594 | 0,112,0,101,0, | ||
3595 | 99,0,97,0,115, | ||
3596 | 0,116,0,69,0, | ||
3597 | 120,0,112,0,114, | ||
3598 | 0,101,0,115,0, | ||
3599 | 115,0,105,0,111, | ||
3600 | 0,110,0,95,0, | ||
3601 | 56,0,1,240,1, | ||
3602 | 3,1,5,1,4, | ||
3603 | 999,22,1,106,1, | ||
3604 | 1788,1000,16,0,332, | ||
3605 | 1,32,1001,16,0, | ||
3606 | 332,1,40,1002,17, | ||
3607 | 1003,15,1004,4,32, | ||
3608 | 37,0,73,0,100, | ||
3609 | 0,101,0,110,0, | ||
3610 | 116,0,69,0,120, | ||
3611 | 0,112,0,114,0, | ||
3612 | 101,0,115,0,115, | ||
3613 | 0,105,0,111,0, | ||
3614 | 110,0,1,-1,1, | ||
3615 | 5,1005,20,1006,4, | ||
3616 | 34,73,0,100,0, | ||
3617 | 101,0,110,0,116, | ||
3618 | 0,69,0,120,0, | ||
3619 | 112,0,114,0,101, | ||
3620 | 0,115,0,115,0, | ||
3621 | 105,0,111,0,110, | ||
3622 | 0,95,0,49,0, | ||
3623 | 1,200,1,3,1, | ||
3624 | 2,1,1,1007,22, | ||
3625 | 1,66,1,283,1008, | ||
3626 | 17,1009,15,977,1, | ||
3627 | -1,1,5,1010,20, | ||
3628 | 1011,4,36,66,0, | ||
3629 | 105,0,110,0,97, | ||
3630 | 0,114,0,121,0, | ||
3631 | 69,0,120,0,112, | ||
3632 | 0,114,0,101,0, | ||
3633 | 115,0,115,0,105, | ||
3634 | 0,111,0,110,0, | ||
3635 | 95,0,52,0,1, | ||
3636 | 214,1,3,1,4, | ||
3637 | 1,3,1012,22,1, | ||
3638 | 80,1,1298,1013,17, | ||
3639 | 1014,15,965,1,-1, | ||
3640 | 1,5,1015,20,1016, | ||
3641 | 4,24,65,0,115, | ||
3642 | 0,115,0,105,0, | ||
3643 | 103,0,110,0,109, | ||
3644 | 0,101,0,110,0, | ||
3645 | 116,0,95,0,51, | ||
3646 | 0,1,184,1,3, | ||
3647 | 1,4,1,3,1017, | ||
3648 | 22,1,50,1,44, | ||
3649 | 1018,17,1003,1,1, | ||
3650 | 1007,1,47,1019,17, | ||
3651 | 1020,15,1021,4,38, | ||
3652 | 37,0,73,0,100, | ||
3653 | 0,101,0,110,0, | ||
3654 | 116,0,68,0,111, | ||
3655 | 0,116,0,69,0, | ||
3656 | 120,0,112,0,114, | ||
3657 | 0,101,0,115,0, | ||
3658 | 115,0,105,0,111, | ||
3659 | 0,110,0,1,-1, | ||
3660 | 1,5,1022,20,1023, | ||
3661 | 4,40,73,0,100, | ||
3662 | 0,101,0,110,0, | ||
3663 | 116,0,68,0,111, | ||
3664 | 0,116,0,69,0, | ||
3665 | 120,0,112,0,114, | ||
3666 | 0,101,0,115,0, | ||
3667 | 115,0,105,0,111, | ||
3668 | 0,110,0,95,0, | ||
3669 | 49,0,1,201,1, | ||
3670 | 3,1,4,1,3, | ||
3671 | 1024,22,1,67,1, | ||
3672 | 48,1025,17,1026,15, | ||
3673 | 1027,4,58,37,0, | ||
3674 | 73,0,110,0,99, | ||
3675 | 0,114,0,101,0, | ||
3676 | 109,0,101,0,110, | ||
3677 | 0,116,0,68,0, | ||
3678 | 101,0,99,0,114, | ||
3679 | 0,101,0,109,0, | ||
3680 | 101,0,110,0,116, | ||
3681 | 0,69,0,120,0, | ||
3682 | 112,0,114,0,101, | ||
3683 | 0,115,0,115,0, | ||
3684 | 105,0,111,0,110, | ||
3685 | 0,1,-1,1,5, | ||
3686 | 1028,20,1029,4,60, | ||
3687 | 73,0,110,0,99, | ||
3688 | 0,114,0,101,0, | ||
3689 | 109,0,101,0,110, | ||
3690 | 0,116,0,68,0, | ||
3691 | 101,0,99,0,114, | ||
3692 | 0,101,0,109,0, | ||
3693 | 101,0,110,0,116, | ||
3694 | 0,69,0,120,0, | ||
3695 | 112,0,114,0,101, | ||
3696 | 0,115,0,115,0, | ||
3697 | 105,0,111,0,110, | ||
3698 | 0,95,0,52,0, | ||
3699 | 1,205,1,3,1, | ||
3700 | 5,1,4,1030,22, | ||
3701 | 1,71,1,49,1031, | ||
3702 | 17,1032,15,1027,1, | ||
3703 | -1,1,5,1033,20, | ||
3704 | 1034,4,60,73,0, | ||
3705 | 110,0,99,0,114, | ||
3706 | 0,101,0,109,0, | ||
3707 | 101,0,110,0,116, | ||
3708 | 0,68,0,101,0, | ||
3709 | 99,0,114,0,101, | ||
3710 | 0,109,0,101,0, | ||
3711 | 110,0,116,0,69, | ||
3712 | 0,120,0,112,0, | ||
3713 | 114,0,101,0,115, | ||
3714 | 0,115,0,105,0, | ||
3715 | 111,0,110,0,95, | ||
3716 | 0,51,0,1,204, | ||
3717 | 1,3,1,5,1, | ||
3718 | 4,1035,22,1,70, | ||
3719 | 1,50,1036,17,1037, | ||
3720 | 15,1027,1,-1,1, | ||
3721 | 5,1038,20,1039,4, | ||
3722 | 60,73,0,110,0, | ||
3723 | 99,0,114,0,101, | ||
3724 | 0,109,0,101,0, | ||
3725 | 110,0,116,0,68, | ||
3726 | 0,101,0,99,0, | ||
3727 | 114,0,101,0,109, | ||
3728 | 0,101,0,110,0, | ||
3729 | 116,0,69,0,120, | ||
3730 | 0,112,0,114,0, | ||
3731 | 101,0,115,0,115, | ||
3732 | 0,105,0,111,0, | ||
3733 | 110,0,95,0,50, | ||
3734 | 0,1,203,1,3, | ||
3735 | 1,3,1,2,1040, | ||
3736 | 22,1,69,1,51, | ||
3737 | 1041,17,1042,15,1027, | ||
3738 | 1,-1,1,5,1043, | ||
3739 | 20,1044,4,60,73, | ||
3740 | 0,110,0,99,0, | ||
3741 | 114,0,101,0,109, | ||
3742 | 0,101,0,110,0, | ||
3743 | 116,0,68,0,101, | ||
3744 | 0,99,0,114,0, | ||
3745 | 101,0,109,0,101, | ||
3746 | 0,110,0,116,0, | ||
3747 | 69,0,120,0,112, | ||
3748 | 0,114,0,101,0, | ||
3749 | 115,0,115,0,105, | ||
3750 | 0,111,0,110,0, | ||
3751 | 95,0,49,0,1, | ||
3752 | 202,1,3,1,3, | ||
3753 | 1,2,1045,22,1, | ||
3754 | 68,1,305,1046,17, | ||
3755 | 1047,15,977,1,-1, | ||
3756 | 1,5,1048,20,1049, | ||
3757 | 4,36,66,0,105, | ||
3758 | 0,110,0,97,0, | ||
3759 | 114,0,121,0,69, | ||
3760 | 0,120,0,112,0, | ||
3761 | 114,0,101,0,115, | ||
3762 | 0,115,0,105,0, | ||
3763 | 111,0,110,0,95, | ||
3764 | 0,51,0,1,213, | ||
3765 | 1,3,1,4,1, | ||
3766 | 3,1050,22,1,79, | ||
3767 | 1,1565,1051,16,0, | ||
3768 | 559,1,1817,760,1, | ||
3769 | 1818,1052,16,0,332, | ||
3770 | 1,63,1053,17,1054, | ||
3771 | 15,996,1,-1,1, | ||
3772 | 5,1055,20,1056,4, | ||
3773 | 40,84,0,121,0, | ||
3774 | 112,0,101,0,99, | ||
3775 | 0,97,0,115,0, | ||
3776 | 116,0,69,0,120, | ||
3777 | 0,112,0,114,0, | ||
3778 | 101,0,115,0,115, | ||
3779 | 0,105,0,111,0, | ||
3780 | 110,0,95,0,50, | ||
3781 | 0,1,234,1,3, | ||
3782 | 1,5,1,4,1057, | ||
3783 | 22,1,100,1,1002, | ||
3784 | 1058,17,1059,15,996, | ||
3785 | 1,-1,1,5,1060, | ||
3786 | 20,1061,4,40,84, | ||
3787 | 0,121,0,112,0, | ||
3788 | 101,0,99,0,97, | ||
3789 | 0,115,0,116,0, | ||
3790 | 69,0,120,0,112, | ||
3791 | 0,114,0,101,0, | ||
3792 | 115,0,115,0,105, | ||
3793 | 0,111,0,110,0, | ||
3794 | 95,0,49,0,1, | ||
3795 | 233,1,3,1,5, | ||
3796 | 1,4,1062,22,1, | ||
3797 | 99,1,66,1063,17, | ||
3798 | 1064,15,996,1,-1, | ||
3799 | 1,5,1065,20,1066, | ||
3800 | 4,40,84,0,121, | ||
3801 | 0,112,0,101,0, | ||
3802 | 99,0,97,0,115, | ||
3803 | 0,116,0,69,0, | ||
3804 | 120,0,112,0,114, | ||
3805 | 0,101,0,115,0, | ||
3806 | 115,0,105,0,111, | ||
3807 | 0,110,0,95,0, | ||
3808 | 51,0,1,235,1, | ||
3809 | 3,1,7,1,6, | ||
3810 | 1067,22,1,101,1, | ||
3811 | 2011,723,1,68,1068, | ||
3812 | 17,1069,15,996,1, | ||
3813 | -1,1,5,1070,20, | ||
3814 | 1071,4,40,84,0, | ||
3815 | 121,0,112,0,101, | ||
3816 | 0,99,0,97,0, | ||
3817 | 115,0,116,0,69, | ||
3818 | 0,120,0,112,0, | ||
3819 | 114,0,101,0,115, | ||
3820 | 0,115,0,105,0, | ||
3821 | 111,0,110,0,95, | ||
3822 | 0,53,0,1,237, | ||
3823 | 1,3,1,8,1, | ||
3824 | 7,1072,22,1,103, | ||
3825 | 1,69,1073,17,1074, | ||
3826 | 15,996,1,-1,1, | ||
3827 | 5,1075,20,1076,4, | ||
3828 | 40,84,0,121,0, | ||
3829 | 112,0,101,0,99, | ||
3830 | 0,97,0,115,0, | ||
3831 | 116,0,69,0,120, | ||
3832 | 0,112,0,114,0, | ||
3833 | 101,0,115,0,115, | ||
3834 | 0,105,0,111,0, | ||
3835 | 110,0,95,0,54, | ||
3836 | 0,1,238,1,3, | ||
3837 | 1,6,1,5,1077, | ||
3838 | 22,1,104,1,70, | ||
3839 | 1078,17,1079,15,996, | ||
3840 | 1,-1,1,5,1080, | ||
3841 | 20,1081,4,40,84, | ||
3842 | 0,121,0,112,0, | ||
3843 | 101,0,99,0,97, | ||
3844 | 0,115,0,116,0, | ||
3845 | 69,0,120,0,112, | ||
3846 | 0,114,0,101,0, | ||
3847 | 115,0,115,0,105, | ||
3848 | 0,111,0,110,0, | ||
3849 | 95,0,52,0,1, | ||
3850 | 236,1,3,1,6, | ||
3851 | 1,5,1082,22,1, | ||
3852 | 102,1,573,1083,17, | ||
3853 | 1084,15,1085,4,26, | ||
3854 | 37,0,76,0,105, | ||
3855 | 0,115,0,116,0, | ||
3856 | 67,0,111,0,110, | ||
3857 | 0,115,0,116,0, | ||
3858 | 97,0,110,0,116, | ||
3859 | 0,1,-1,1,5, | ||
3860 | 1086,20,1087,4,28, | ||
3861 | 76,0,105,0,115, | ||
3862 | 0,116,0,67,0, | ||
3863 | 111,0,110,0,115, | ||
3864 | 0,116,0,97,0, | ||
3865 | 110,0,116,0,95, | ||
3866 | 0,49,0,1,198, | ||
3867 | 1,3,1,4,1, | ||
3868 | 3,1088,22,1,64, | ||
3869 | 1,1011,1089,17,1090, | ||
3870 | 15,1091,4,44,37, | ||
3871 | 0,80,0,97,0, | ||
3872 | 114,0,101,0,110, | ||
3873 | 0,116,0,104,0, | ||
3874 | 101,0,115,0,105, | ||
3875 | 0,115,0,69,0, | ||
3876 | 120,0,112,0,114, | ||
3877 | 0,101,0,115,0, | ||
3878 | 115,0,105,0,111, | ||
3879 | 0,110,0,1,-1, | ||
3880 | 1,5,1092,20,1093, | ||
3881 | 4,46,80,0,97, | ||
3882 | 0,114,0,101,0, | ||
3883 | 110,0,116,0,104, | ||
3884 | 0,101,0,115,0, | ||
3885 | 105,0,115,0,69, | ||
3886 | 0,120,0,112,0, | ||
3887 | 114,0,101,0,115, | ||
3888 | 0,115,0,105,0, | ||
3889 | 111,0,110,0,95, | ||
3890 | 0,49,0,1,232, | ||
3891 | 1,3,1,4,1, | ||
3892 | 3,1094,22,1,98, | ||
3893 | 1,74,1095,17,1096, | ||
3894 | 15,996,1,-1,1, | ||
3895 | 5,1097,20,1098,4, | ||
3896 | 40,84,0,121,0, | ||
3897 | 112,0,101,0,99, | ||
3898 | 0,97,0,115,0, | ||
3899 | 116,0,69,0,120, | ||
3900 | 0,112,0,114,0, | ||
3901 | 101,0,115,0,115, | ||
3902 | 0,105,0,111,0, | ||
3903 | 110,0,95,0,57, | ||
3904 | 0,1,241,1,3, | ||
3905 | 1,7,1,6,1099, | ||
3906 | 22,1,107,1,67, | ||
3907 | 1100,17,1101,15,996, | ||
3908 | 1,-1,1,5,1102, | ||
3909 | 20,1103,4,40,84, | ||
3910 | 0,121,0,112,0, | ||
3911 | 101,0,99,0,97, | ||
3912 | 0,115,0,116,0, | ||
3913 | 69,0,120,0,112, | ||
3914 | 0,114,0,101,0, | ||
3915 | 115,0,115,0,105, | ||
3916 | 0,111,0,110,0, | ||
3917 | 95,0,55,0,1, | ||
3918 | 239,1,3,1,8, | ||
3919 | 1,7,1104,22,1, | ||
3920 | 105,1,1046,1105,17, | ||
3921 | 1106,15,977,1,-1, | ||
3922 | 1,5,1107,20,1108, | ||
3923 | 4,38,66,0,105, | ||
3924 | 0,110,0,97,0, | ||
3925 | 114,0,121,0,69, | ||
3926 | 0,120,0,112,0, | ||
3927 | 114,0,101,0,115, | ||
3928 | 0,115,0,105,0, | ||
3929 | 111,0,110,0,95, | ||
3930 | 0,49,0,56,0, | ||
3931 | 1,228,1,3,1, | ||
3932 | 4,1,3,1109,22, | ||
3933 | 1,94,1,328,1110, | ||
3934 | 17,1111,15,977,1, | ||
3935 | -1,1,5,1112,20, | ||
3936 | 1113,4,36,66,0, | ||
3937 | 105,0,110,0,97, | ||
3938 | 0,114,0,121,0, | ||
3939 | 69,0,120,0,112, | ||
3940 | 0,114,0,101,0, | ||
3941 | 115,0,115,0,105, | ||
3942 | 0,111,0,110,0, | ||
3943 | 95,0,50,0,1, | ||
3944 | 212,1,3,1,4, | ||
3945 | 1,3,1114,22,1, | ||
3946 | 78,1,1333,1115,17, | ||
3947 | 1116,15,965,1,-1, | ||
3948 | 1,5,1117,20,1118, | ||
3949 | 4,24,65,0,115, | ||
3950 | 0,115,0,105,0, | ||
3951 | 103,0,110,0,109, | ||
3952 | 0,101,0,110,0, | ||
3953 | 116,0,95,0,50, | ||
3954 | 0,1,183,1,3, | ||
3955 | 1,4,1,3,1119, | ||
3956 | 22,1,49,1,82, | ||
3957 | 1120,17,1121,15,1122, | ||
3958 | 4,32,37,0,85, | ||
3959 | 0,110,0,97,0, | ||
3960 | 114,0,121,0,69, | ||
3961 | 0,120,0,112,0, | ||
3962 | 114,0,101,0,115, | ||
3963 | 0,115,0,105,0, | ||
3964 | 111,0,110,0,1, | ||
3965 | -1,1,5,1123,20, | ||
3966 | 1124,4,34,85,0, | ||
3967 | 110,0,97,0,114, | ||
3968 | 0,121,0,69,0, | ||
3969 | 120,0,112,0,114, | ||
3970 | 0,101,0,115,0, | ||
3971 | 115,0,105,0,111, | ||
3972 | 0,110,0,95,0, | ||
3973 | 51,0,1,231,1, | ||
3974 | 3,1,3,1,2, | ||
3975 | 1125,22,1,97,1, | ||
3976 | 1847,794,1,1850,1126, | ||
3977 | 17,1127,15,1128,4, | ||
3978 | 24,37,0,83,0, | ||
3979 | 116,0,97,0,116, | ||
3980 | 0,101,0,67,0, | ||
3981 | 104,0,97,0,110, | ||
3982 | 0,103,0,101,0, | ||
3983 | 1,-1,1,5,1129, | ||
3984 | 20,1130,4,26,83, | ||
3985 | 0,116,0,97,0, | ||
3986 | 116,0,101,0,67, | ||
3987 | 0,104,0,97,0, | ||
3988 | 110,0,103,0,101, | ||
3989 | 0,95,0,50,0, | ||
3990 | 1,172,1,3,1, | ||
3991 | 3,1,2,1131,22, | ||
3992 | 1,38,1,1851,1132, | ||
3993 | 17,1133,15,1128,1, | ||
3994 | -1,1,5,1134,20, | ||
3995 | 1135,4,26,83,0, | ||
3996 | 116,0,97,0,116, | ||
3997 | 0,101,0,67,0, | ||
3998 | 104,0,97,0,110, | ||
3999 | 0,103,0,101,0, | ||
4000 | 95,0,49,0,1, | ||
4001 | 171,1,3,1,3, | ||
4002 | 1,2,1136,22,1, | ||
4003 | 37,1,1852,806,1, | ||
4004 | 1853,649,1,1854,655, | ||
4005 | 1,1855,660,1,1856, | ||
4006 | 748,1,1857,1137,16, | ||
4007 | 0,325,1,1858,667, | ||
4008 | 1,1859,1138,16,0, | ||
4009 | 327,1,1860,672,1, | ||
4010 | 1861,1139,16,0,331, | ||
4011 | 1,1862,677,1,1863, | ||
4012 | 682,1,107,1140,17, | ||
4013 | 1141,15,1122,1,-1, | ||
4014 | 1,5,1142,20,1143, | ||
4015 | 4,34,85,0,110, | ||
4016 | 0,97,0,114,0, | ||
4017 | 121,0,69,0,120, | ||
4018 | 0,112,0,114,0, | ||
4019 | 101,0,115,0,115, | ||
4020 | 0,105,0,111,0, | ||
4021 | 110,0,95,0,49, | ||
4022 | 0,1,229,1,3, | ||
4023 | 1,3,1,2,1144, | ||
4024 | 22,1,95,1,1112, | ||
4025 | 1145,17,1020,1,3, | ||
4026 | 1024,1,93,1146,17, | ||
4027 | 1147,15,1122,1,-1, | ||
4028 | 1,5,1148,20,1149, | ||
4029 | 4,34,85,0,110, | ||
4030 | 0,97,0,114,0, | ||
4031 | 121,0,69,0,120, | ||
4032 | 0,112,0,114,0, | ||
4033 | 101,0,115,0,115, | ||
4034 | 0,105,0,111,0, | ||
4035 | 110,0,95,0,50, | ||
4036 | 0,1,230,1,3, | ||
4037 | 1,3,1,2,1150, | ||
4038 | 22,1,96,1,1366, | ||
4039 | 1151,16,0,369,1, | ||
4040 | 352,1152,17,1153,15, | ||
4041 | 977,1,-1,1,5, | ||
4042 | 1154,20,1155,4,36, | ||
4043 | 66,0,105,0,110, | ||
4044 | 0,97,0,114,0, | ||
4045 | 121,0,69,0,120, | ||
4046 | 0,112,0,114,0, | ||
4047 | 101,0,115,0,115, | ||
4048 | 0,105,0,111,0, | ||
4049 | 110,0,95,0,49, | ||
4050 | 0,1,211,1,3, | ||
4051 | 1,4,1,3,1156, | ||
4052 | 22,1,77,1,1121, | ||
4053 | 1157,17,1158,15,965, | ||
4054 | 1,-1,1,5,1159, | ||
4055 | 20,1160,4,24,65, | ||
4056 | 0,115,0,115,0, | ||
4057 | 105,0,103,0,110, | ||
4058 | 0,109,0,101,0, | ||
4059 | 110,0,116,0,95, | ||
4060 | 0,56,0,1,189, | ||
4061 | 1,3,1,6,1, | ||
4062 | 5,1161,22,1,55, | ||
4063 | 1,118,1162,17,1163, | ||
4064 | 15,977,1,-1,1, | ||
4065 | 5,1164,20,1165,4, | ||
4066 | 38,66,0,105,0, | ||
4067 | 110,0,97,0,114, | ||
4068 | 0,121,0,69,0, | ||
4069 | 120,0,112,0,114, | ||
4070 | 0,101,0,115,0, | ||
4071 | 115,0,105,0,111, | ||
4072 | 0,110,0,95,0, | ||
4073 | 49,0,52,0,1, | ||
4074 | 224,1,3,1,4, | ||
4075 | 1,3,1166,22,1, | ||
4076 | 90,1,371,1167,17, | ||
4077 | 1168,15,1169,4,46, | ||
4078 | 37,0,70,0,117, | ||
4079 | 0,110,0,99,0, | ||
4080 | 116,0,105,0,111, | ||
4081 | 0,110,0,67,0, | ||
4082 | 97,0,108,0,108, | ||
4083 | 0,69,0,120,0, | ||
4084 | 112,0,114,0,101, | ||
4085 | 0,115,0,115,0, | ||
4086 | 105,0,111,0,110, | ||
4087 | 0,1,-1,1,5, | ||
4088 | 1170,20,1171,4,48, | ||
4089 | 70,0,117,0,110, | ||
4090 | 0,99,0,116,0, | ||
4091 | 105,0,111,0,110, | ||
4092 | 0,67,0,97,0, | ||
4093 | 108,0,108,0,69, | ||
4094 | 0,120,0,112,0, | ||
4095 | 114,0,101,0,115, | ||
4096 | 0,115,0,105,0, | ||
4097 | 111,0,110,0,95, | ||
4098 | 0,49,0,1,210, | ||
4099 | 1,3,1,2,1, | ||
4100 | 1,1172,22,1,76, | ||
4101 | 1,373,1173,17,1174, | ||
4102 | 15,1027,1,-1,1, | ||
4103 | 5,1175,20,1176,4, | ||
4104 | 60,73,0,110,0, | ||
4105 | 99,0,114,0,101, | ||
4106 | 0,109,0,101,0, | ||
4107 | 110,0,116,0,68, | ||
4108 | 0,101,0,99,0, | ||
4109 | 114,0,101,0,109, | ||
4110 | 0,101,0,110,0, | ||
4111 | 116,0,69,0,120, | ||
4112 | 0,112,0,114,0, | ||
4113 | 101,0,115,0,115, | ||
4114 | 0,105,0,111,0, | ||
4115 | 110,0,95,0,54, | ||
4116 | 0,1,207,1,3, | ||
4117 | 1,3,1,2,1177, | ||
4118 | 22,1,73,1,375, | ||
4119 | 1178,17,1179,15,1027, | ||
4120 | 1,-1,1,5,1180, | ||
4121 | 20,1181,4,60,73, | ||
4122 | 0,110,0,99,0, | ||
4123 | 114,0,101,0,109, | ||
4124 | 0,101,0,110,0, | ||
4125 | 116,0,68,0,101, | ||
4126 | 0,99,0,114,0, | ||
4127 | 101,0,109,0,101, | ||
4128 | 0,110,0,116,0, | ||
4129 | 69,0,120,0,112, | ||
4130 | 0,114,0,101,0, | ||
4131 | 115,0,115,0,105, | ||
4132 | 0,111,0,110,0, | ||
4133 | 95,0,56,0,1, | ||
4134 | 209,1,3,1,5, | ||
4135 | 1,4,1182,22,1, | ||
4136 | 75,1,377,1183,17, | ||
4137 | 1184,15,1027,1,-1, | ||
4138 | 1,5,1185,20,1186, | ||
4139 | 4,60,73,0,110, | ||
4140 | 0,99,0,114,0, | ||
4141 | 101,0,109,0,101, | ||
4142 | 0,110,0,116,0, | ||
4143 | 68,0,101,0,99, | ||
4144 | 0,114,0,101,0, | ||
4145 | 109,0,101,0,110, | ||
4146 | 0,116,0,69,0, | ||
4147 | 120,0,112,0,114, | ||
4148 | 0,101,0,115,0, | ||
4149 | 115,0,105,0,111, | ||
4150 | 0,110,0,95,0, | ||
4151 | 53,0,1,206,1, | ||
4152 | 3,1,3,1,2, | ||
4153 | 1187,22,1,72,1, | ||
4154 | 827,1188,17,1189,15, | ||
4155 | 977,1,-1,1,5, | ||
4156 | 1190,20,1191,4,38, | ||
4157 | 66,0,105,0,110, | ||
4158 | 0,97,0,114,0, | ||
4159 | 121,0,69,0,120, | ||
4160 | 0,112,0,114,0, | ||
4161 | 101,0,115,0,115, | ||
4162 | 0,105,0,111,0, | ||
4163 | 110,0,95,0,49, | ||
4164 | 0,53,0,1,225, | ||
4165 | 1,3,1,4,1, | ||
4166 | 3,1192,22,1,91, | ||
4167 | 1,380,1193,17,1194, | ||
4168 | 15,1195,4,38,37, | ||
4169 | 0,67,0,111,0, | ||
4170 | 110,0,115,0,116, | ||
4171 | 0,97,0,110,0, | ||
4172 | 116,0,69,0,120, | ||
4173 | 0,112,0,114,0, | ||
4174 | 101,0,115,0,115, | ||
4175 | 0,105,0,111,0, | ||
4176 | 110,0,1,-1,1, | ||
4177 | 5,1196,20,1197,4, | ||
4178 | 40,67,0,111,0, | ||
4179 | 110,0,115,0,116, | ||
4180 | 0,97,0,110,0, | ||
4181 | 116,0,69,0,120, | ||
4182 | 0,112,0,114,0, | ||
4183 | 101,0,115,0,115, | ||
4184 | 0,105,0,111,0, | ||
4185 | 110,0,95,0,49, | ||
4186 | 0,1,199,1,3, | ||
4187 | 1,2,1,1,1198, | ||
4188 | 22,1,65,1,883, | ||
4189 | 1199,17,1200,15,977, | ||
4190 | 1,-1,1,5,1201, | ||
4191 | 20,1202,4,38,66, | ||
4192 | 0,105,0,110,0, | ||
4193 | 97,0,114,0,121, | ||
4194 | 0,69,0,120,0, | ||
4195 | 112,0,114,0,101, | ||
4196 | 0,115,0,115,0, | ||
4197 | 105,0,111,0,110, | ||
4198 | 0,95,0,49,0, | ||
4199 | 54,0,1,226,1, | ||
4200 | 3,1,4,1,3, | ||
4201 | 1203,22,1,92,1, | ||
4202 | 1637,710,1,1639,1204, | ||
4203 | 16,0,332,1,130, | ||
4204 | 1205,17,1206,15,977, | ||
4205 | 1,-1,1,5,1207, | ||
4206 | 20,1208,4,38,66, | ||
4207 | 0,105,0,110,0, | ||
4208 | 97,0,114,0,121, | ||
4209 | 0,69,0,120,0, | ||
4210 | 112,0,114,0,101, | ||
4211 | 0,115,0,115,0, | ||
4212 | 105,0,111,0,110, | ||
4213 | 0,95,0,49,0, | ||
4214 | 51,0,1,223,1, | ||
4215 | 3,1,4,1,3, | ||
4216 | 1209,22,1,89,1, | ||
4217 | 1396,1210,17,1211,15, | ||
4218 | 1212,4,32,37,0, | ||
4219 | 82,0,101,0,116, | ||
4220 | 0,117,0,114,0, | ||
4221 | 110,0,83,0,116, | ||
4222 | 0,97,0,116,0, | ||
4223 | 101,0,109,0,101, | ||
4224 | 0,110,0,116,0, | ||
4225 | 1,-1,1,5,1213, | ||
4226 | 20,1214,4,34,82, | ||
4227 | 0,101,0,116,0, | ||
4228 | 117,0,114,0,110, | ||
4229 | 0,83,0,116,0, | ||
4230 | 97,0,116,0,101, | ||
4231 | 0,109,0,101,0, | ||
4232 | 110,0,116,0,95, | ||
4233 | 0,50,0,1,191, | ||
4234 | 1,3,1,2,1, | ||
4235 | 1,1215,22,1,57, | ||
4236 | 1,143,1216,17,1217, | ||
4237 | 15,977,1,-1,1, | ||
4238 | 5,1218,20,1219,4, | ||
4239 | 38,66,0,105,0, | ||
4240 | 110,0,97,0,114, | ||
4241 | 0,121,0,69,0, | ||
4242 | 120,0,112,0,114, | ||
4243 | 0,101,0,115,0, | ||
4244 | 115,0,105,0,111, | ||
4245 | 0,110,0,95,0, | ||
4246 | 49,0,50,0,1, | ||
4247 | 222,1,3,1,4, | ||
4248 | 1,3,1220,22,1, | ||
4249 | 88,1,1402,1221,17, | ||
4250 | 1222,15,1212,1,-1, | ||
4251 | 1,5,1223,20,1224, | ||
4252 | 4,34,82,0,101, | ||
4253 | 0,116,0,117,0, | ||
4254 | 114,0,110,0,83, | ||
4255 | 0,116,0,97,0, | ||
4256 | 116,0,101,0,109, | ||
4257 | 0,101,0,110,0, | ||
4258 | 116,0,95,0,49, | ||
4259 | 0,1,190,1,3, | ||
4260 | 1,3,1,2,1225, | ||
4261 | 22,1,56,1,1557, | ||
4262 | 1226,17,1227,15,984, | ||
4263 | 1,-1,1,5,1228, | ||
4264 | 20,1229,4,36,70, | ||
4265 | 0,111,0,114,0, | ||
4266 | 76,0,111,0,111, | ||
4267 | 0,112,0,83,0, | ||
4268 | 116,0,97,0,116, | ||
4269 | 0,101,0,109,0, | ||
4270 | 101,0,110,0,116, | ||
4271 | 0,95,0,52,0, | ||
4272 | 1,181,1,3,1, | ||
4273 | 4,1,3,1230,22, | ||
4274 | 1,47,1,1158,1231, | ||
4275 | 17,1232,15,965,1, | ||
4276 | -1,1,5,1233,20, | ||
4277 | 1234,4,24,65,0, | ||
4278 | 115,0,115,0,105, | ||
4279 | 0,103,0,110,0, | ||
4280 | 109,0,101,0,110, | ||
4281 | 0,116,0,95,0, | ||
4282 | 55,0,1,188,1, | ||
4283 | 3,1,4,1,3, | ||
4284 | 1235,22,1,54,1, | ||
4285 | 157,1236,17,1237,15, | ||
4286 | 977,1,-1,1,5, | ||
4287 | 1238,20,1239,4,38, | ||
4288 | 66,0,105,0,110, | ||
4289 | 0,97,0,114,0, | ||
4290 | 121,0,69,0,120, | ||
4291 | 0,112,0,114,0, | ||
4292 | 101,0,115,0,115, | ||
4293 | 0,105,0,111,0, | ||
4294 | 110,0,95,0,49, | ||
4295 | 0,49,0,1,221, | ||
4296 | 1,3,1,4,1, | ||
4297 | 3,1240,22,1,87, | ||
4298 | 1,1094,1241,17,1242, | ||
4299 | 15,1243,4,26,37, | ||
4300 | 0,70,0,117,0, | ||
4301 | 110,0,99,0,116, | ||
4302 | 0,105,0,111,0, | ||
4303 | 110,0,67,0,97, | ||
4304 | 0,108,0,108,0, | ||
4305 | 1,-1,1,5,1244, | ||
4306 | 20,1245,4,28,70, | ||
4307 | 0,117,0,110,0, | ||
4308 | 99,0,116,0,105, | ||
4309 | 0,111,0,110,0, | ||
4310 | 67,0,97,0,108, | ||
4311 | 0,108,0,95,0, | ||
4312 | 49,0,1,242,1, | ||
4313 | 3,1,5,1,4, | ||
4314 | 1246,22,1,108,1, | ||
4315 | 379,1247,17,1248,15, | ||
4316 | 1027,1,-1,1,5, | ||
4317 | 1249,20,1250,4,60, | ||
4318 | 73,0,110,0,99, | ||
4319 | 0,114,0,101,0, | ||
4320 | 109,0,101,0,110, | ||
4321 | 0,116,0,68,0, | ||
4322 | 101,0,99,0,114, | ||
4323 | 0,101,0,109,0, | ||
4324 | 101,0,110,0,116, | ||
4325 | 0,69,0,120,0, | ||
4326 | 112,0,114,0,101, | ||
4327 | 0,115,0,115,0, | ||
4328 | 105,0,111,0,110, | ||
4329 | 0,95,0,55,0, | ||
4330 | 1,208,1,3,1, | ||
4331 | 5,1,4,1251,22, | ||
4332 | 1,74,1,172,1252, | ||
4333 | 17,1253,15,977,1, | ||
4334 | -1,1,5,1254,20, | ||
4335 | 1255,4,38,66,0, | ||
4336 | 105,0,110,0,97, | ||
4337 | 0,114,0,121,0, | ||
4338 | 69,0,120,0,112, | ||
4339 | 0,114,0,101,0, | ||
4340 | 115,0,115,0,105, | ||
4341 | 0,111,0,110,0, | ||
4342 | 95,0,49,0,48, | ||
4343 | 0,1,220,1,3, | ||
4344 | 1,4,1,3,1256, | ||
4345 | 22,1,86,1,1385, | ||
4346 | 769,1,1431,1257,16, | ||
4347 | 0,420,1,1938,1258, | ||
4348 | 17,1259,15,984,1, | ||
4349 | -1,1,5,1260,20, | ||
4350 | 1261,4,36,70,0, | ||
4351 | 111,0,114,0,76, | ||
4352 | 0,111,0,111,0, | ||
4353 | 112,0,83,0,116, | ||
4354 | 0,97,0,116,0, | ||
4355 | 101,0,109,0,101, | ||
4356 | 0,110,0,116,0, | ||
4357 | 95,0,50,0,1, | ||
4358 | 179,1,3,1,2, | ||
4359 | 1,1,1262,22,1, | ||
4360 | 45,1,1438,1263,17, | ||
4361 | 1264,15,965,1,-1, | ||
4362 | 1,5,1265,20,1266, | ||
4363 | 4,24,65,0,115, | ||
4364 | 0,115,0,105,0, | ||
4365 | 103,0,110,0,109, | ||
4366 | 0,101,0,110,0, | ||
4367 | 116,0,95,0,49, | ||
4368 | 0,1,182,1,3, | ||
4369 | 1,4,1,3,1267, | ||
4370 | 22,1,48,1,1693, | ||
4371 | 1268,16,0,154,1, | ||
4372 | 1694,740,1,1193,1269, | ||
4373 | 17,1270,15,965,1, | ||
4374 | -1,1,5,1271,20, | ||
4375 | 1272,4,24,65,0, | ||
4376 | 115,0,115,0,105, | ||
4377 | 0,103,0,110,0, | ||
4378 | 109,0,101,0,110, | ||
4379 | 0,116,0,95,0, | ||
4380 | 54,0,1,187,1, | ||
4381 | 3,1,4,1,3, | ||
4382 | 1273,22,1,53,1, | ||
4383 | 2200,1274,16,0,226, | ||
4384 | 1,188,1275,17,1276, | ||
4385 | 15,977,1,-1,1, | ||
4386 | 5,1277,20,1278,4, | ||
4387 | 36,66,0,105,0, | ||
4388 | 110,0,97,0,114, | ||
4389 | 0,121,0,69,0, | ||
4390 | 120,0,112,0,114, | ||
4391 | 0,101,0,115,0, | ||
4392 | 115,0,105,0,111, | ||
4393 | 0,110,0,95,0, | ||
4394 | 57,0,1,219,1, | ||
4395 | 3,1,4,1,3, | ||
4396 | 1279,22,1,85,1, | ||
4397 | 2207,1280,16,0,274, | ||
4398 | 1,205,1281,17,1282, | ||
4399 | 15,977,1,-1,1, | ||
4400 | 5,1283,20,1284,4, | ||
4401 | 36,66,0,105,0, | ||
4402 | 110,0,97,0,114, | ||
4403 | 0,121,0,69,0, | ||
4404 | 120,0,112,0,114, | ||
4405 | 0,101,0,115,0, | ||
4406 | 115,0,105,0,111, | ||
4407 | 0,110,0,95,0, | ||
4408 | 56,0,1,218,1, | ||
4409 | 3,1,4,1,3, | ||
4410 | 1285,22,1,84,1, | ||
4411 | 1965,1286,16,0,332, | ||
4412 | 1,1611,1287,16,0, | ||
4413 | 332,1,1467,729,1, | ||
4414 | 942,1288,17,1289,15, | ||
4415 | 977,1,-1,1,5, | ||
4416 | 1290,20,1291,4,38, | ||
4417 | 66,0,105,0,110, | ||
4418 | 0,97,0,114,0, | ||
4419 | 121,0,69,0,120, | ||
4420 | 0,112,0,114,0, | ||
4421 | 101,0,115,0,115, | ||
4422 | 0,105,0,111,0, | ||
4423 | 110,0,95,0,49, | ||
4424 | 0,55,0,1,227, | ||
4425 | 1,3,1,4,1, | ||
4426 | 3,1292,22,1,93, | ||
4427 | 1,223,1293,17,1294, | ||
4428 | 15,977,1,-1,1, | ||
4429 | 5,1295,20,1296,4, | ||
4430 | 36,66,0,105,0, | ||
4431 | 110,0,97,0,114, | ||
4432 | 0,121,0,69,0, | ||
4433 | 120,0,112,0,114, | ||
4434 | 0,101,0,115,0, | ||
4435 | 115,0,105,0,111, | ||
4436 | 0,110,0,95,0, | ||
4437 | 55,0,1,217,1, | ||
4438 | 3,1,4,1,3, | ||
4439 | 1297,22,1,83,1, | ||
4440 | 1228,1298,17,1299,15, | ||
4441 | 965,1,-1,1,5, | ||
4442 | 1300,20,1301,4,24, | ||
4443 | 65,0,115,0,115, | ||
4444 | 0,105,0,103,0, | ||
4445 | 110,0,109,0,101, | ||
4446 | 0,110,0,116,0, | ||
4447 | 95,0,53,0,1, | ||
4448 | 186,1,3,1,4, | ||
4449 | 1,3,1302,22,1, | ||
4450 | 52,1,476,1303,17, | ||
4451 | 1304,15,990,1,-1, | ||
4452 | 1,5,1305,20,1306, | ||
4453 | 4,20,67,0,111, | ||
4454 | 0,110,0,115,0, | ||
4455 | 116,0,97,0,110, | ||
4456 | 0,116,0,95,0, | ||
4457 | 52,0,1,195,1, | ||
4458 | 3,1,2,1,1, | ||
4459 | 1307,22,1,61,1, | ||
4460 | 1732,1308,16,0,332, | ||
4461 | 1,1482,1309,17,1310, | ||
4462 | 15,984,1,-1,1, | ||
4463 | 5,1311,20,1312,4, | ||
4464 | 36,70,0,111,0, | ||
4465 | 114,0,76,0,111, | ||
4466 | 0,111,0,112,0, | ||
4467 | 83,0,116,0,97, | ||
4468 | 0,116,0,101,0, | ||
4469 | 109,0,101,0,110, | ||
4470 | 0,116,0,95,0, | ||
4471 | 49,0,1,178,1, | ||
4472 | 3,1,2,1,1, | ||
4473 | 1313,22,1,44,1, | ||
4474 | 463,1314,17,1315,15, | ||
4475 | 1316,4,30,37,0, | ||
4476 | 86,0,101,0,99, | ||
4477 | 0,116,0,111,0, | ||
4478 | 114,0,67,0,111, | ||
4479 | 0,110,0,115,0, | ||
4480 | 116,0,97,0,110, | ||
4481 | 0,116,0,1,-1, | ||
4482 | 1,5,1317,20,1318, | ||
4483 | 4,32,86,0,101, | ||
4484 | 0,99,0,116,0, | ||
4485 | 111,0,114,0,67, | ||
4486 | 0,111,0,110,0, | ||
4487 | 115,0,116,0,97, | ||
4488 | 0,110,0,116,0, | ||
4489 | 95,0,49,0,1, | ||
4490 | 196,1,3,1,8, | ||
4491 | 1,7,1319,22,1, | ||
4492 | 62,1,242,1320,17, | ||
4493 | 1321,15,977,1,-1, | ||
4494 | 1,5,1322,20,1323, | ||
4495 | 4,36,66,0,105, | ||
4496 | 0,110,0,97,0, | ||
4497 | 114,0,121,0,69, | ||
4498 | 0,120,0,112,0, | ||
4499 | 114,0,101,0,115, | ||
4500 | 0,115,0,105,0, | ||
4501 | 111,0,110,0,95, | ||
4502 | 0,54,0,1,216, | ||
4503 | 1,3,1,4,1, | ||
4504 | 3,1324,22,1,82, | ||
4505 | 1,478,1325,17,1326, | ||
4506 | 15,990,1,-1,1, | ||
4507 | 5,1327,20,1328,4, | ||
4508 | 20,67,0,111,0, | ||
4509 | 110,0,115,0,116, | ||
4510 | 0,97,0,110,0, | ||
4511 | 116,0,95,0,50, | ||
4512 | 0,1,193,1,3, | ||
4513 | 1,2,1,1,1329, | ||
4514 | 22,1,59,1,479, | ||
4515 | 1330,17,1331,15,990, | ||
4516 | 1,-1,1,5,1332, | ||
4517 | 20,1333,4,20,67, | ||
4518 | 0,111,0,110,0, | ||
4519 | 115,0,116,0,97, | ||
4520 | 0,110,0,116,0, | ||
4521 | 95,0,49,0,1, | ||
4522 | 192,1,3,1,2, | ||
4523 | 1,1,1334,22,1, | ||
4524 | 58,1,2005,801,1, | ||
4525 | 2006,777,1,12,1335, | ||
4526 | 19,173,1,12,1336, | ||
4527 | 5,32,1,1853,649, | ||
4528 | 1,1854,655,1,1855, | ||
4529 | 660,1,1856,748,1, | ||
4530 | 1639,1337,16,0,171, | ||
4531 | 1,1858,667,1,1860, | ||
4532 | 672,1,1862,677,1, | ||
4533 | 1863,682,1,2196,1338, | ||
4534 | 16,0,171,1,1760, | ||
4535 | 688,1,31,1339,16, | ||
4536 | 0,171,1,32,1340, | ||
4537 | 16,0,171,1,2105, | ||
4538 | 1341,16,0,528,1, | ||
4539 | 2005,801,1,1788,1342, | ||
4540 | 16,0,171,1,2009, | ||
4541 | 716,1,2011,723,1, | ||
4542 | 1467,729,1,2016,1343, | ||
4543 | 16,0,605,1,1637, | ||
4544 | 710,1,1694,740,1, | ||
4545 | 2006,777,1,1965,1344, | ||
4546 | 16,0,171,1,1817, | ||
4547 | 760,1,1818,1345,16, | ||
4548 | 0,171,1,1385,769, | ||
4549 | 1,1611,1346,16,0, | ||
4550 | 171,1,1732,1347,16, | ||
4551 | 0,171,1,2063,1348, | ||
4552 | 16,0,171,1,1847, | ||
4553 | 794,1,1852,806,1, | ||
4554 | 13,1349,19,394,1, | ||
4555 | 13,1350,5,27,1, | ||
4556 | 1852,806,1,1853,649, | ||
4557 | 1,1817,760,1,1855, | ||
4558 | 660,1,1856,748,1, | ||
4559 | 2005,801,1,1858,667, | ||
4560 | 1,1637,710,1,1860, | ||
4561 | 672,1,2009,716,1, | ||
4562 | 1862,677,1,1863,682, | ||
4563 | 1,1385,769,1,2102, | ||
4564 | 1351,17,1352,15,1353, | ||
4565 | 4,20,37,0,83, | ||
4566 | 0,116,0,97,0, | ||
4567 | 116,0,101,0,66, | ||
4568 | 0,111,0,100,0, | ||
4569 | 121,0,1,-1,1, | ||
4570 | 5,1354,20,1355,4, | ||
4571 | 22,83,0,116,0, | ||
4572 | 97,0,116,0,101, | ||
4573 | 0,66,0,111,0, | ||
4574 | 100,0,121,0,95, | ||
4575 | 0,50,0,1,152, | ||
4576 | 1,3,1,3,1, | ||
4577 | 2,1356,22,1,16, | ||
4578 | 1,1760,688,1,2141, | ||
4579 | 1357,16,0,579,1, | ||
4580 | 2011,723,1,1467,729, | ||
4581 | 1,2067,1358,16,0, | ||
4582 | 523,1,2104,1359,17, | ||
4583 | 1360,15,1353,1,-1, | ||
4584 | 1,5,1361,20,1362, | ||
4585 | 4,22,83,0,116, | ||
4586 | 0,97,0,116,0, | ||
4587 | 101,0,66,0,111, | ||
4588 | 0,100,0,121,0, | ||
4589 | 95,0,49,0,1, | ||
4590 | 151,1,3,1,2, | ||
4591 | 1,1,1363,22,1, | ||
4592 | 15,1,1854,655,1, | ||
4593 | 1694,740,1,2065,1364, | ||
4594 | 17,1365,15,1366,4, | ||
4595 | 22,37,0,83,0, | ||
4596 | 116,0,97,0,116, | ||
4597 | 0,101,0,69,0, | ||
4598 | 118,0,101,0,110, | ||
4599 | 0,116,0,1,-1, | ||
4600 | 1,5,1367,20,1368, | ||
4601 | 4,24,83,0,116, | ||
4602 | 0,97,0,116,0, | ||
4603 | 101,0,69,0,118, | ||
4604 | 0,101,0,110,0, | ||
4605 | 116,0,95,0,49, | ||
4606 | 0,1,153,1,3, | ||
4607 | 1,6,1,5,1369, | ||
4608 | 22,1,17,1,1965, | ||
4609 | 1370,16,0,392,1, | ||
4610 | 32,1371,16,0,396, | ||
4611 | 1,1847,794,1,2006, | ||
4612 | 777,1,14,1372,19, | ||
4613 | 150,1,14,1373,5, | ||
4614 | 87,1,504,956,1, | ||
4615 | 2014,1374,17,1375,15, | ||
4616 | 1376,4,48,37,0, | ||
4617 | 65,0,114,0,103, | ||
4618 | 0,117,0,109,0, | ||
4619 | 101,0,110,0,116, | ||
4620 | 0,68,0,101,0, | ||
4621 | 99,0,108,0,97, | ||
4622 | 0,114,0,97,0, | ||
4623 | 116,0,105,0,111, | ||
4624 | 0,110,0,76,0, | ||
4625 | 105,0,115,0,116, | ||
4626 | 0,1,-1,1,5, | ||
4627 | 1377,20,1378,4,50, | ||
4628 | 65,0,114,0,103, | ||
4629 | 0,117,0,109,0, | ||
4630 | 101,0,110,0,116, | ||
4631 | 0,68,0,101,0, | ||
4632 | 99,0,108,0,97, | ||
4633 | 0,114,0,97,0, | ||
4634 | 116,0,105,0,111, | ||
4635 | 0,110,0,76,0, | ||
4636 | 105,0,115,0,116, | ||
4637 | 0,95,0,49,0, | ||
4638 | 1,154,1,3,1, | ||
4639 | 2,1,1,1379,22, | ||
4640 | 1,19,1,1513,1380, | ||
4641 | 16,0,502,1,1263, | ||
4642 | 963,1,9,969,1, | ||
4643 | 10,1381,17,1382,15, | ||
4644 | 1376,1,-1,1,5, | ||
4645 | 146,1,0,1,0, | ||
4646 | 1383,22,1,18,1, | ||
4647 | 262,975,1,1193,1269, | ||
4648 | 1,19,981,1,20, | ||
4649 | 1384,16,0,148,1, | ||
4650 | 1527,982,1,1482,1309, | ||
4651 | 1,30,1385,17,1386, | ||
4652 | 15,1376,1,-1,1, | ||
4653 | 5,1387,20,1388,4, | ||
4654 | 50,65,0,114,0, | ||
4655 | 103,0,117,0,109, | ||
4656 | 0,101,0,110,0, | ||
4657 | 116,0,68,0,101, | ||
4658 | 0,99,0,108,0, | ||
4659 | 97,0,114,0,97, | ||
4660 | 0,116,0,105,0, | ||
4661 | 111,0,110,0,76, | ||
4662 | 0,105,0,115,0, | ||
4663 | 116,0,95,0,50, | ||
4664 | 0,1,155,1,3, | ||
4665 | 1,4,1,3,1389, | ||
4666 | 22,1,20,1,283, | ||
4667 | 1008,1,40,1002,1, | ||
4668 | 41,1390,17,1391,15, | ||
4669 | 1392,4,26,37,0, | ||
4670 | 65,0,114,0,103, | ||
4671 | 0,117,0,109,0, | ||
4672 | 101,0,110,0,116, | ||
4673 | 0,76,0,105,0, | ||
4674 | 115,0,116,0,1, | ||
4675 | -1,1,5,486,1, | ||
4676 | 0,1,0,1393,22, | ||
4677 | 1,109,1,42,1394, | ||
4678 | 17,1395,15,1396,4, | ||
4679 | 38,37,0,69,0, | ||
4680 | 120,0,112,0,114, | ||
4681 | 0,101,0,115,0, | ||
4682 | 115,0,105,0,111, | ||
4683 | 0,110,0,65,0, | ||
4684 | 114,0,103,0,117, | ||
4685 | 0,109,0,101,0, | ||
4686 | 110,0,116,0,1, | ||
4687 | -1,1,5,1397,20, | ||
4688 | 1398,4,40,69,0, | ||
4689 | 120,0,112,0,114, | ||
4690 | 0,101,0,115,0, | ||
4691 | 115,0,105,0,111, | ||
4692 | 0,110,0,65,0, | ||
4693 | 114,0,103,0,117, | ||
4694 | 0,109,0,101,0, | ||
4695 | 110,0,116,0,95, | ||
4696 | 0,49,0,1,245, | ||
4697 | 1,3,1,2,1, | ||
4698 | 1,1399,22,1,112, | ||
4699 | 1,1298,1013,1,44, | ||
4700 | 1018,1,47,1019,1, | ||
4701 | 48,1025,1,49,1031, | ||
4702 | 1,50,1036,1,51, | ||
4703 | 1041,1,2061,1400,16, | ||
4704 | 0,148,1,305,1046, | ||
4705 | 1,63,1053,1,66, | ||
4706 | 1063,1,67,1100,1, | ||
4707 | 68,1068,1,69,1073, | ||
4708 | 1,70,1078,1,573, | ||
4709 | 1083,1,574,1401,17, | ||
4710 | 1402,15,1392,1,-1, | ||
4711 | 1,5,1403,20,1404, | ||
4712 | 4,28,65,0,114, | ||
4713 | 0,103,0,117,0, | ||
4714 | 109,0,101,0,110, | ||
4715 | 0,116,0,76,0, | ||
4716 | 105,0,115,0,116, | ||
4717 | 0,95,0,49,0, | ||
4718 | 1,243,1,3,1, | ||
4719 | 2,1,1,1405,22, | ||
4720 | 1,110,1,1011,1089, | ||
4721 | 1,74,1095,1,1046, | ||
4722 | 1105,1,328,1110,1, | ||
4723 | 1333,1115,1,82,1120, | ||
4724 | 1,1092,1406,16,0, | ||
4725 | 488,1,1094,1241,1, | ||
4726 | 93,1146,1,352,1152, | ||
4727 | 1,1609,1407,16,0, | ||
4728 | 502,1,107,1140,1, | ||
4729 | 1112,1145,1,2052,1408, | ||
4730 | 17,1409,15,1376,1, | ||
4731 | -1,1,5,146,1, | ||
4732 | 0,1,0,1383,1, | ||
4733 | 1121,1157,1,118,1162, | ||
4734 | 1,371,1167,1,373, | ||
4735 | 1173,1,375,1178,1, | ||
4736 | 377,1183,1,379,1247, | ||
4737 | 1,380,1193,1,883, | ||
4738 | 1199,1,383,1410,16, | ||
4739 | 0,488,1,386,1411, | ||
4740 | 17,1412,15,1392,1, | ||
4741 | -1,1,5,1413,20, | ||
4742 | 1414,4,28,65,0, | ||
4743 | 114,0,103,0,117, | ||
4744 | 0,109,0,101,0, | ||
4745 | 110,0,116,0,76, | ||
4746 | 0,105,0,115,0, | ||
4747 | 116,0,95,0,50, | ||
4748 | 0,1,244,1,3, | ||
4749 | 1,4,1,3,1415, | ||
4750 | 22,1,111,1,130, | ||
4751 | 1205,1,143,1216,1, | ||
4752 | 1557,1226,1,403,1416, | ||
4753 | 16,0,518,1,1158, | ||
4754 | 1231,1,827,1188,1, | ||
4755 | 381,1417,17,1418,15, | ||
4756 | 1392,1,-1,1,5, | ||
4757 | 486,1,0,1,0, | ||
4758 | 1393,1,157,1236,1, | ||
4759 | 172,1252,1,428,1419, | ||
4760 | 16,0,553,1,1938, | ||
4761 | 1258,1,1438,1263,1, | ||
4762 | 2194,1420,16,0,148, | ||
4763 | 1,188,1275,1,942, | ||
4764 | 1288,1,453,1421,16, | ||
4765 | 0,572,1,205,1281, | ||
4766 | 1,463,1314,1,223, | ||
4767 | 1293,1,1228,1298,1, | ||
4768 | 476,1303,1,477,988, | ||
4769 | 1,478,1325,1,479, | ||
4770 | 1330,1,242,1320,1, | ||
4771 | 2185,1422,17,1423,15, | ||
4772 | 1376,1,-1,1,5, | ||
4773 | 146,1,0,1,0, | ||
4774 | 1383,1,1001,994,1, | ||
4775 | 1002,1058,1,15,1424, | ||
4776 | 19,183,1,15,1425, | ||
4777 | 5,7,1,2200,1426, | ||
4778 | 16,0,600,1,1431, | ||
4779 | 1427,16,0,386,1, | ||
4780 | 1112,1428,16,0,181, | ||
4781 | 1,1511,1429,16,0, | ||
4782 | 386,1,40,1430,16, | ||
4783 | 0,341,1,19,981, | ||
4784 | 1,9,969,1,16, | ||
4785 | 1431,19,136,1,16, | ||
4786 | 1432,5,120,1,2009, | ||
4787 | 716,1,1257,1433,16, | ||
4788 | 0,208,1,1760,688, | ||
4789 | 1,1762,1434,16,0, | ||
4790 | 244,1,1763,1435,16, | ||
4791 | 0,208,1,1514,1436, | ||
4792 | 16,0,208,1,9, | ||
4793 | 1437,16,0,134,1, | ||
4794 | 2018,1438,17,1439,15, | ||
4795 | 1440,4,12,37,0, | ||
4796 | 69,0,118,0,101, | ||
4797 | 0,110,0,116,0, | ||
4798 | 1,-1,1,5,1441, | ||
4799 | 20,1442,4,16,69, | ||
4800 | 0,118,0,101,0, | ||
4801 | 110,0,116,0,95, | ||
4802 | 0,51,0,51,0, | ||
4803 | 1,285,1,3,1, | ||
4804 | 2,1,1,1443,22, | ||
4805 | 1,152,1,2019,1444, | ||
4806 | 17,1445,15,1440,1, | ||
4807 | -1,1,5,1446,20, | ||
4808 | 1447,4,16,69,0, | ||
4809 | 118,0,101,0,110, | ||
4810 | 0,116,0,95,0, | ||
4811 | 51,0,50,0,1, | ||
4812 | 284,1,3,1,2, | ||
4813 | 1,1,1448,22,1, | ||
4814 | 151,1,2020,1449,17, | ||
4815 | 1450,15,1440,1,-1, | ||
4816 | 1,5,1451,20,1452, | ||
4817 | 4,16,69,0,118, | ||
4818 | 0,101,0,110,0, | ||
4819 | 116,0,95,0,51, | ||
4820 | 0,49,0,1,283, | ||
4821 | 1,3,1,2,1, | ||
4822 | 1,1453,22,1,150, | ||
4823 | 1,2021,1454,17,1455, | ||
4824 | 15,1440,1,-1,1, | ||
4825 | 5,1456,20,1457,4, | ||
4826 | 16,69,0,118,0, | ||
4827 | 101,0,110,0,116, | ||
4828 | 0,95,0,51,0, | ||
4829 | 48,0,1,282,1, | ||
4830 | 3,1,2,1,1, | ||
4831 | 1458,22,1,149,1, | ||
4832 | 2022,1459,17,1460,15, | ||
4833 | 1440,1,-1,1,5, | ||
4834 | 1461,20,1462,4,16, | ||
4835 | 69,0,118,0,101, | ||
4836 | 0,110,0,116,0, | ||
4837 | 95,0,50,0,57, | ||
4838 | 0,1,281,1,3, | ||
4839 | 1,2,1,1,1463, | ||
4840 | 22,1,148,1,256, | ||
4841 | 1464,16,0,208,1, | ||
4842 | 2024,1465,17,1466,15, | ||
4843 | 1440,1,-1,1,5, | ||
4844 | 1467,20,1468,4,16, | ||
4845 | 69,0,118,0,101, | ||
4846 | 0,110,0,116,0, | ||
4847 | 95,0,50,0,55, | ||
4848 | 0,1,279,1,3, | ||
4849 | 1,2,1,1,1469, | ||
4850 | 22,1,146,1,2025, | ||
4851 | 1470,17,1471,15,1440, | ||
4852 | 1,-1,1,5,1472, | ||
4853 | 20,1473,4,16,69, | ||
4854 | 0,118,0,101,0, | ||
4855 | 110,0,116,0,95, | ||
4856 | 0,50,0,54,0, | ||
4857 | 1,278,1,3,1, | ||
4858 | 2,1,1,1474,22, | ||
4859 | 1,145,1,2026,1475, | ||
4860 | 17,1476,15,1440,1, | ||
4861 | -1,1,5,1477,20, | ||
4862 | 1478,4,16,69,0, | ||
4863 | 118,0,101,0,110, | ||
4864 | 0,116,0,95,0, | ||
4865 | 50,0,53,0,1, | ||
4866 | 277,1,3,1,2, | ||
4867 | 1,1,1479,22,1, | ||
4868 | 144,1,2027,1480,17, | ||
4869 | 1481,15,1440,1,-1, | ||
4870 | 1,5,1482,20,1483, | ||
4871 | 4,16,69,0,118, | ||
4872 | 0,101,0,110,0, | ||
4873 | 116,0,95,0,50, | ||
4874 | 0,52,0,1,276, | ||
4875 | 1,3,1,2,1, | ||
4876 | 1,1484,22,1,143, | ||
4877 | 1,2028,1485,17,1486, | ||
4878 | 15,1440,1,-1,1, | ||
4879 | 5,1487,20,1488,4, | ||
4880 | 16,69,0,118,0, | ||
4881 | 101,0,110,0,116, | ||
4882 | 0,95,0,50,0, | ||
4883 | 51,0,1,275,1, | ||
4884 | 3,1,2,1,1, | ||
4885 | 1489,22,1,142,1, | ||
4886 | 2029,1490,17,1491,15, | ||
4887 | 1440,1,-1,1,5, | ||
4888 | 1492,20,1493,4,16, | ||
4889 | 69,0,118,0,101, | ||
4890 | 0,110,0,116,0, | ||
4891 | 95,0,50,0,50, | ||
4892 | 0,1,274,1,3, | ||
4893 | 1,2,1,1,1494, | ||
4894 | 22,1,141,1,2030, | ||
4895 | 1495,17,1496,15,1440, | ||
4896 | 1,-1,1,5,1497, | ||
4897 | 20,1498,4,16,69, | ||
4898 | 0,118,0,101,0, | ||
4899 | 110,0,116,0,95, | ||
4900 | 0,50,0,49,0, | ||
4901 | 1,273,1,3,1, | ||
4902 | 2,1,1,1499,22, | ||
4903 | 1,140,1,2031,1500, | ||
4904 | 17,1501,15,1440,1, | ||
4905 | -1,1,5,1502,20, | ||
4906 | 1503,4,16,69,0, | ||
4907 | 118,0,101,0,110, | ||
4908 | 0,116,0,95,0, | ||
4909 | 50,0,48,0,1, | ||
4910 | 272,1,3,1,2, | ||
4911 | 1,1,1504,22,1, | ||
4912 | 139,1,2032,1505,17, | ||
4913 | 1506,15,1440,1,-1, | ||
4914 | 1,5,1507,20,1508, | ||
4915 | 4,16,69,0,118, | ||
4916 | 0,101,0,110,0, | ||
4917 | 116,0,95,0,49, | ||
4918 | 0,57,0,1,271, | ||
4919 | 1,3,1,2,1, | ||
4920 | 1,1509,22,1,138, | ||
4921 | 1,2033,1510,17,1511, | ||
4922 | 15,1440,1,-1,1, | ||
4923 | 5,1512,20,1513,4, | ||
4924 | 16,69,0,118,0, | ||
4925 | 101,0,110,0,116, | ||
4926 | 0,95,0,49,0, | ||
4927 | 56,0,1,270,1, | ||
4928 | 3,1,2,1,1, | ||
4929 | 1514,22,1,137,1, | ||
4930 | 277,1515,16,0,208, | ||
4931 | 1,2035,1516,17,1517, | ||
4932 | 15,1440,1,-1,1, | ||
4933 | 5,1518,20,1519,4, | ||
4934 | 16,69,0,118,0, | ||
4935 | 101,0,110,0,116, | ||
4936 | 0,95,0,49,0, | ||
4937 | 54,0,1,268,1, | ||
4938 | 3,1,2,1,1, | ||
4939 | 1520,22,1,135,1, | ||
4940 | 2036,1521,17,1522,15, | ||
4941 | 1440,1,-1,1,5, | ||
4942 | 1523,20,1524,4,16, | ||
4943 | 69,0,118,0,101, | ||
4944 | 0,110,0,116,0, | ||
4945 | 95,0,49,0,53, | ||
4946 | 0,1,267,1,3, | ||
4947 | 1,2,1,1,1525, | ||
4948 | 22,1,134,1,2037, | ||
4949 | 1526,17,1527,15,1440, | ||
4950 | 1,-1,1,5,1528, | ||
4951 | 20,1529,4,16,69, | ||
4952 | 0,118,0,101,0, | ||
4953 | 110,0,116,0,95, | ||
4954 | 0,49,0,52,0, | ||
4955 | 1,266,1,3,1, | ||
4956 | 2,1,1,1530,22, | ||
4957 | 1,133,1,2038,1531, | ||
4958 | 17,1532,15,1440,1, | ||
4959 | -1,1,5,1533,20, | ||
4960 | 1534,4,16,69,0, | ||
4961 | 118,0,101,0,110, | ||
4962 | 0,116,0,95,0, | ||
4963 | 49,0,51,0,1, | ||
4964 | 265,1,3,1,2, | ||
4965 | 1,1,1535,22,1, | ||
4966 | 132,1,1788,1536,16, | ||
4967 | 0,208,1,32,1537, | ||
4968 | 16,0,208,1,2041, | ||
4969 | 1538,17,1539,15,1440, | ||
4970 | 1,-1,1,5,1540, | ||
4971 | 20,1541,4,16,69, | ||
4972 | 0,118,0,101,0, | ||
4973 | 110,0,116,0,95, | ||
4974 | 0,49,0,48,0, | ||
4975 | 1,262,1,3,1, | ||
4976 | 2,1,1,1542,22, | ||
4977 | 1,129,1,2042,1543, | ||
4978 | 17,1544,15,1440,1, | ||
4979 | -1,1,5,1545,20, | ||
4980 | 1546,4,14,69,0, | ||
4981 | 118,0,101,0,110, | ||
4982 | 0,116,0,95,0, | ||
4983 | 57,0,1,261,1, | ||
4984 | 3,1,2,1,1, | ||
4985 | 1547,22,1,128,1, | ||
4986 | 2043,1548,17,1549,15, | ||
4987 | 1440,1,-1,1,5, | ||
4988 | 1550,20,1551,4,14, | ||
4989 | 69,0,118,0,101, | ||
4990 | 0,110,0,116,0, | ||
4991 | 95,0,56,0,1, | ||
4992 | 260,1,3,1,2, | ||
4993 | 1,1,1552,22,1, | ||
4994 | 127,1,2044,1553,17, | ||
4995 | 1554,15,1440,1,-1, | ||
4996 | 1,5,1555,20,1556, | ||
4997 | 4,14,69,0,118, | ||
4998 | 0,101,0,110,0, | ||
4999 | 116,0,95,0,55, | ||
5000 | 0,1,259,1,3, | ||
5001 | 1,2,1,1,1557, | ||
5002 | 22,1,126,1,1292, | ||
5003 | 1558,16,0,208,1, | ||
5004 | 2046,1559,17,1560,15, | ||
5005 | 1440,1,-1,1,5, | ||
5006 | 1561,20,1562,4,14, | ||
5007 | 69,0,118,0,101, | ||
5008 | 0,110,0,116,0, | ||
5009 | 95,0,53,0,1, | ||
5010 | 257,1,3,1,2, | ||
5011 | 1,1,1563,22,1, | ||
5012 | 124,1,2047,1564,17, | ||
5013 | 1565,15,1440,1,-1, | ||
5014 | 1,5,1566,20,1567, | ||
5015 | 4,14,69,0,118, | ||
5016 | 0,101,0,110,0, | ||
5017 | 116,0,95,0,52, | ||
5018 | 0,1,256,1,3, | ||
5019 | 1,2,1,1,1568, | ||
5020 | 22,1,123,1,40, | ||
5021 | 1569,16,0,188,1, | ||
5022 | 41,1570,16,0,208, | ||
5023 | 1,2050,1571,17,1572, | ||
5024 | 15,1440,1,-1,1, | ||
5025 | 5,1573,20,1574,4, | ||
5026 | 14,69,0,118,0, | ||
5027 | 101,0,110,0,116, | ||
5028 | 0,95,0,49,0, | ||
5029 | 1,253,1,3,1, | ||
5030 | 2,1,1,1575,22, | ||
5031 | 1,120,1,43,1576, | ||
5032 | 16,0,208,1,44, | ||
5033 | 1577,16,0,188,1, | ||
5034 | 299,1578,16,0,208, | ||
5035 | 1,52,1579,16,0, | ||
5036 | 208,1,1559,1580,16, | ||
5037 | 0,208,1,1817,760, | ||
5038 | 1,1818,1581,16,0, | ||
5039 | 208,1,62,1582,16, | ||
5040 | 0,219,1,63,1583, | ||
5041 | 16,0,188,1,2011, | ||
5042 | 723,1,504,1584,16, | ||
5043 | 0,208,1,71,1585, | ||
5044 | 16,0,208,1,1327, | ||
5045 | 1586,16,0,208,1, | ||
5046 | 76,1587,16,0,208, | ||
5047 | 1,1584,1588,16,0, | ||
5048 | 208,1,79,1589,16, | ||
5049 | 0,208,1,2023,1590, | ||
5050 | 17,1591,15,1440,1, | ||
5051 | -1,1,5,1592,20, | ||
5052 | 1593,4,16,69,0, | ||
5053 | 118,0,101,0,110, | ||
5054 | 0,116,0,95,0, | ||
5055 | 50,0,56,0,1, | ||
5056 | 280,1,3,1,2, | ||
5057 | 1,1,1594,22,1, | ||
5058 | 147,1,322,1595,16, | ||
5059 | 0,208,1,85,1596, | ||
5060 | 16,0,208,1,89, | ||
5061 | 1597,16,0,208,1, | ||
5062 | 1847,794,1,2034,1598, | ||
5063 | 17,1599,15,1440,1, | ||
5064 | -1,1,5,1600,20, | ||
5065 | 1601,4,16,69,0, | ||
5066 | 118,0,101,0,110, | ||
5067 | 0,116,0,95,0, | ||
5068 | 49,0,55,0,1, | ||
5069 | 269,1,3,1,2, | ||
5070 | 1,1,1602,22,1, | ||
5071 | 136,1,346,1603,16, | ||
5072 | 0,208,1,1853,649, | ||
5073 | 1,1854,655,1,1855, | ||
5074 | 660,1,1856,748,1, | ||
5075 | 1858,667,1,97,1604, | ||
5076 | 16,0,208,1,1860, | ||
5077 | 672,1,1862,677,1, | ||
5078 | 1863,682,1,102,1605, | ||
5079 | 16,0,208,1,2051, | ||
5080 | 1606,16,0,592,1, | ||
5081 | 1115,1607,16,0,208, | ||
5082 | 1,112,1608,16,0, | ||
5083 | 208,1,124,1609,16, | ||
5084 | 0,208,1,1385,769, | ||
5085 | 1,1637,710,1,384, | ||
5086 | 1610,16,0,208,1, | ||
5087 | 137,1611,16,0,208, | ||
5088 | 1,1396,1612,16,0, | ||
5089 | 208,1,381,1613,16, | ||
5090 | 0,208,1,397,1614, | ||
5091 | 16,0,208,1,1152, | ||
5092 | 1615,16,0,208,1, | ||
5093 | 151,1616,16,0,208, | ||
5094 | 1,1852,806,1,1611, | ||
5095 | 1617,16,0,208,1, | ||
5096 | 2039,1618,17,1619,15, | ||
5097 | 1440,1,-1,1,5, | ||
5098 | 1620,20,1621,4,16, | ||
5099 | 69,0,118,0,101, | ||
5100 | 0,110,0,116,0, | ||
5101 | 95,0,49,0,50, | ||
5102 | 0,1,264,1,3, | ||
5103 | 1,2,1,1,1622, | ||
5104 | 22,1,131,1,1668, | ||
5105 | 1623,16,0,208,1, | ||
5106 | 166,1624,16,0,208, | ||
5107 | 1,2045,1625,17,1626, | ||
5108 | 15,1440,1,-1,1, | ||
5109 | 5,1627,20,1628,4, | ||
5110 | 14,69,0,118,0, | ||
5111 | 101,0,110,0,116, | ||
5112 | 0,95,0,54,0, | ||
5113 | 1,258,1,3,1, | ||
5114 | 2,1,1,1629,22, | ||
5115 | 1,125,1,422,1630, | ||
5116 | 16,0,208,1,2048, | ||
5117 | 1631,17,1632,15,1440, | ||
5118 | 1,-1,1,5,1633, | ||
5119 | 20,1634,4,14,69, | ||
5120 | 0,118,0,101,0, | ||
5121 | 110,0,116,0,95, | ||
5122 | 0,51,0,1,255, | ||
5123 | 1,3,1,2,1, | ||
5124 | 1,1635,22,1,122, | ||
5125 | 1,2049,1636,17,1637, | ||
5126 | 15,1440,1,-1,1, | ||
5127 | 5,1638,20,1639,4, | ||
5128 | 14,69,0,118,0, | ||
5129 | 101,0,110,0,116, | ||
5130 | 0,95,0,50,0, | ||
5131 | 1,254,1,3,1, | ||
5132 | 2,1,1,1640,22, | ||
5133 | 1,121,1,2184,1641, | ||
5134 | 16,0,593,1,1432, | ||
5135 | 1642,16,0,208,1, | ||
5136 | 182,1643,16,0,208, | ||
5137 | 1,1187,1644,16,0, | ||
5138 | 208,1,1639,1645,16, | ||
5139 | 0,208,1,1694,740, | ||
5140 | 1,2201,1646,16,0, | ||
5141 | 208,1,447,1647,16, | ||
5142 | 0,208,1,199,1648, | ||
5143 | 16,0,208,1,1706, | ||
5144 | 1649,16,0,180,1, | ||
5145 | 1707,1650,16,0,208, | ||
5146 | 1,1965,1651,16,0, | ||
5147 | 208,1,1467,729,1, | ||
5148 | 1468,1652,16,0,424, | ||
5149 | 1,1469,1653,16,0, | ||
5150 | 208,1,1667,1654,16, | ||
5151 | 0,254,1,217,1655, | ||
5152 | 16,0,208,1,1222, | ||
5153 | 1656,16,0,208,1, | ||
5154 | 1732,1657,16,0,208, | ||
5155 | 1,2040,1658,17,1659, | ||
5156 | 15,1440,1,-1,1, | ||
5157 | 5,1660,20,1661,4, | ||
5158 | 16,69,0,118,0, | ||
5159 | 101,0,110,0,116, | ||
5160 | 0,95,0,49,0, | ||
5161 | 49,0,1,263,1, | ||
5162 | 3,1,2,1,1, | ||
5163 | 1662,22,1,130,1, | ||
5164 | 463,1663,16,0,208, | ||
5165 | 1,236,1664,16,0, | ||
5166 | 208,1,488,1665,16, | ||
5167 | 0,208,1,2005,801, | ||
5168 | 1,2006,777,1,17, | ||
5169 | 1666,19,153,1,17, | ||
5170 | 1667,5,95,1,1, | ||
5171 | 1668,17,1669,15,1670, | ||
5172 | 4,18,37,0,84, | ||
5173 | 0,121,0,112,0, | ||
5174 | 101,0,110,0,97, | ||
5175 | 0,109,0,101,0, | ||
5176 | 1,-1,1,5,1671, | ||
5177 | 20,1672,4,20,84, | ||
5178 | 0,121,0,112,0, | ||
5179 | 101,0,110,0,97, | ||
5180 | 0,109,0,101,0, | ||
5181 | 95,0,55,0,1, | ||
5182 | 252,1,3,1,2, | ||
5183 | 1,1,1673,22,1, | ||
5184 | 119,1,2,1674,17, | ||
5185 | 1675,15,1670,1,-1, | ||
5186 | 1,5,1676,20,1677, | ||
5187 | 4,20,84,0,121, | ||
5188 | 0,112,0,101,0, | ||
5189 | 110,0,97,0,109, | ||
5190 | 0,101,0,95,0, | ||
5191 | 54,0,1,251,1, | ||
5192 | 3,1,2,1,1, | ||
5193 | 1678,22,1,118,1, | ||
5194 | 3,1679,17,1680,15, | ||
5195 | 1670,1,-1,1,5, | ||
5196 | 1681,20,1682,4,20, | ||
5197 | 84,0,121,0,112, | ||
5198 | 0,101,0,110,0, | ||
5199 | 97,0,109,0,101, | ||
5200 | 0,95,0,53,0, | ||
5201 | 1,250,1,3,1, | ||
5202 | 2,1,1,1683,22, | ||
5203 | 1,117,1,4,1684, | ||
5204 | 17,1685,15,1670,1, | ||
5205 | -1,1,5,1686,20, | ||
5206 | 1687,4,20,84,0, | ||
5207 | 121,0,112,0,101, | ||
5208 | 0,110,0,97,0, | ||
5209 | 109,0,101,0,95, | ||
5210 | 0,52,0,1,249, | ||
5211 | 1,3,1,2,1, | ||
5212 | 1,1688,22,1,116, | ||
5213 | 1,5,1689,17,1690, | ||
5214 | 15,1670,1,-1,1, | ||
5215 | 5,1691,20,1692,4, | ||
5216 | 20,84,0,121,0, | ||
5217 | 112,0,101,0,110, | ||
5218 | 0,97,0,109,0, | ||
5219 | 101,0,95,0,51, | ||
5220 | 0,1,248,1,3, | ||
5221 | 1,2,1,1,1693, | ||
5222 | 22,1,115,1,6, | ||
5223 | 1694,17,1695,15,1670, | ||
5224 | 1,-1,1,5,1696, | ||
5225 | 20,1697,4,20,84, | ||
5226 | 0,121,0,112,0, | ||
5227 | 101,0,110,0,97, | ||
5228 | 0,109,0,101,0, | ||
5229 | 95,0,50,0,1, | ||
5230 | 247,1,3,1,2, | ||
5231 | 1,1,1698,22,1, | ||
5232 | 114,1,7,1699,17, | ||
5233 | 1700,15,1670,1,-1, | ||
5234 | 1,5,1701,20,1702, | ||
5235 | 4,20,84,0,121, | ||
5236 | 0,112,0,101,0, | ||
5237 | 110,0,97,0,109, | ||
5238 | 0,101,0,95,0, | ||
5239 | 49,0,1,246,1, | ||
5240 | 3,1,2,1,1, | ||
5241 | 1703,22,1,113,1, | ||
5242 | 1263,963,1,9,969, | ||
5243 | 1,10,1381,1,262, | ||
5244 | 975,1,1769,1704,16, | ||
5245 | 0,298,1,19,981, | ||
5246 | 1,20,1705,16,0, | ||
5247 | 170,1,1527,982,1, | ||
5248 | 30,1385,1,283,1008, | ||
5249 | 1,504,956,1,1010, | ||
5250 | 1706,16,0,556,1, | ||
5251 | 40,1002,1,41,1390, | ||
5252 | 1,42,1394,1,1298, | ||
5253 | 1013,1,44,1018,1, | ||
5254 | 47,1019,1,48,1025, | ||
5255 | 1,49,1031,1,50, | ||
5256 | 1036,1,51,1041,1, | ||
5257 | 2061,1707,16,0,493, | ||
5258 | 1,305,1046,1,61, | ||
5259 | 1708,16,0,211,1, | ||
5260 | 63,1053,1,66,1063, | ||
5261 | 1,67,1100,1,68, | ||
5262 | 1068,1,69,1073,1, | ||
5263 | 2014,1374,1,573,1083, | ||
5264 | 1,574,1401,1,1011, | ||
5265 | 1089,1,70,1078,1, | ||
5266 | 1046,1105,1,328,1110, | ||
5267 | 1,1333,1115,1,73, | ||
5268 | 1709,16,0,221,1, | ||
5269 | 74,1095,1,82,1120, | ||
5270 | 1,1092,1710,16,0, | ||
5271 | 603,1,1094,1241,1, | ||
5272 | 93,1146,1,352,1152, | ||
5273 | 1,1609,1711,16,0, | ||
5274 | 576,1,107,1140,1, | ||
5275 | 1112,1145,1,2052,1408, | ||
5276 | 1,1121,1157,1,118, | ||
5277 | 1162,1,371,1167,1, | ||
5278 | 373,1173,1,375,1178, | ||
5279 | 1,377,1183,1,827, | ||
5280 | 1188,1,380,1193,1, | ||
5281 | 883,1199,1,386,1411, | ||
5282 | 1,130,1205,1,379, | ||
5283 | 1247,1,143,1216,1, | ||
5284 | 1557,1226,1,1158,1231, | ||
5285 | 1,381,1417,1,157, | ||
5286 | 1236,1,1674,1712,16, | ||
5287 | 0,151,1,172,1252, | ||
5288 | 1,2185,1422,1,1938, | ||
5289 | 1258,1,1438,1263,1, | ||
5290 | 2194,1713,16,0,491, | ||
5291 | 1,188,1275,1,942, | ||
5292 | 1288,1,205,1281,1, | ||
5293 | 1713,1714,16,0,264, | ||
5294 | 1,463,1314,1,223, | ||
5295 | 1293,1,1228,1298,1, | ||
5296 | 476,1303,1,477,988, | ||
5297 | 1,1482,1309,1,1193, | ||
5298 | 1269,1,242,1320,1, | ||
5299 | 478,1325,1,479,1330, | ||
5300 | 1,1001,994,1,1002, | ||
5301 | 1058,1,18,1715,19, | ||
5302 | 403,1,18,1716,5, | ||
5303 | 77,1,328,1110,1, | ||
5304 | 1333,1717,16,0,401, | ||
5305 | 1,1094,1241,1,1438, | ||
5306 | 1718,16,0,401,1, | ||
5307 | 223,1719,16,0,401, | ||
5308 | 1,428,1720,16,0, | ||
5309 | 401,1,118,1721,16, | ||
5310 | 0,401,1,883,1722, | ||
5311 | 16,0,401,1,453, | ||
5312 | 1723,16,0,401,1, | ||
5313 | 1001,994,1,130,1724, | ||
5314 | 16,0,401,1,1112, | ||
5315 | 1145,1,242,1725,16, | ||
5316 | 0,401,1,1769,1726, | ||
5317 | 16,0,401,1,463, | ||
5318 | 1314,1,573,1083,1, | ||
5319 | 1228,1727,16,0,401, | ||
5320 | 1,1011,1089,1,1121, | ||
5321 | 1728,16,0,401,1, | ||
5322 | 143,1729,16,0,401, | ||
5323 | 1,352,1152,1,1674, | ||
5324 | 1730,16,0,401,1, | ||
5325 | 40,1002,1,477,988, | ||
5326 | 1,42,1731,16,0, | ||
5327 | 401,1,479,1330,1, | ||
5328 | 44,1018,1,373,1173, | ||
5329 | 1,47,1019,1,48, | ||
5330 | 1025,1,49,1031,1, | ||
5331 | 50,1036,1,51,1041, | ||
5332 | 1,1482,1732,16,0, | ||
5333 | 401,1,380,1193,1, | ||
5334 | 157,1733,16,0,401, | ||
5335 | 1,476,1303,1,371, | ||
5336 | 1167,1,1366,1734,16, | ||
5337 | 0,401,1,375,1178, | ||
5338 | 1,1010,1735,16,0, | ||
5339 | 401,1,63,1053,1, | ||
5340 | 1263,1736,16,0,401, | ||
5341 | 1,283,1008,1,66, | ||
5342 | 1063,1,67,1100,1, | ||
5343 | 1158,1737,16,0,401, | ||
5344 | 1,69,1073,1,70, | ||
5345 | 1078,1,68,1068,1, | ||
5346 | 73,1738,16,0,401, | ||
5347 | 1,74,1095,1,494, | ||
5348 | 1739,16,0,401,1, | ||
5349 | 377,1183,1,172,1740, | ||
5350 | 16,0,401,1,1713, | ||
5351 | 1741,16,0,401,1, | ||
5352 | 188,1742,16,0,401, | ||
5353 | 1,82,1743,16,0, | ||
5354 | 401,1,262,975,1, | ||
5355 | 504,956,1,305,1046, | ||
5356 | 1,1527,1744,16,0, | ||
5357 | 401,1,1565,1745,16, | ||
5358 | 0,401,1,403,1746, | ||
5359 | 16,0,401,1,827, | ||
5360 | 1747,16,0,401,1, | ||
5361 | 1046,1748,16,0,401, | ||
5362 | 1,93,1749,16,0, | ||
5363 | 401,1,1402,1750,16, | ||
5364 | 0,401,1,205,1751, | ||
5365 | 16,0,401,1,2207, | ||
5366 | 1752,16,0,401,1, | ||
5367 | 1298,1753,16,0,401, | ||
5368 | 1,1002,1058,1,942, | ||
5369 | 1754,16,0,401,1, | ||
5370 | 1193,1755,16,0,401, | ||
5371 | 1,379,1247,1,478, | ||
5372 | 1325,1,107,1756,16, | ||
5373 | 0,401,1,19,1757, | ||
5374 | 19,240,1,19,1758, | ||
5375 | 5,151,1,2009,716, | ||
5376 | 1,1257,1759,16,0, | ||
5377 | 238,1,1760,688,1, | ||
5378 | 256,1760,16,0,238, | ||
5379 | 1,1763,1761,16,0, | ||
5380 | 238,1,1011,1089,1, | ||
5381 | 1263,1762,16,0,387, | ||
5382 | 1,494,1763,16,0, | ||
5383 | 387,1,262,975,1, | ||
5384 | 1769,1764,16,0,387, | ||
5385 | 1,2207,1765,16,0, | ||
5386 | 387,1,504,1766,16, | ||
5387 | 0,238,1,1527,1767, | ||
5388 | 16,0,387,1,477, | ||
5389 | 988,1,277,1768,16, | ||
5390 | 0,238,1,1001,994, | ||
5391 | 1,1788,1769,16,0, | ||
5392 | 238,1,32,1770,16, | ||
5393 | 0,238,1,1292,1771, | ||
5394 | 16,0,238,1,1010, | ||
5395 | 1772,16,0,387,1, | ||
5396 | 40,1002,1,41,1773, | ||
5397 | 16,0,238,1,42, | ||
5398 | 1774,16,0,387,1, | ||
5399 | 43,1775,16,0,238, | ||
5400 | 1,44,1018,1,47, | ||
5401 | 1019,1,48,1025,1, | ||
5402 | 49,1031,1,50,1036, | ||
5403 | 1,51,1041,1,52, | ||
5404 | 1776,16,0,238,1, | ||
5405 | 1559,1777,16,0,238, | ||
5406 | 1,305,1046,1,1514, | ||
5407 | 1778,16,0,238,1, | ||
5408 | 299,1779,16,0,238, | ||
5409 | 1,1817,760,1,1818, | ||
5410 | 1780,16,0,238,1, | ||
5411 | 283,1008,1,63,1053, | ||
5412 | 1,1002,1058,1,66, | ||
5413 | 1063,1,67,1100,1, | ||
5414 | 68,1068,1,69,1073, | ||
5415 | 1,70,1078,1,573, | ||
5416 | 1083,1,1327,1781,16, | ||
5417 | 0,238,1,73,1782, | ||
5418 | 16,0,387,1,74, | ||
5419 | 1095,1,71,1783,16, | ||
5420 | 0,238,1,76,1784, | ||
5421 | 16,0,238,1,328, | ||
5422 | 1110,1,1333,1785,16, | ||
5423 | 0,387,1,79,1786, | ||
5424 | 16,0,238,1,82, | ||
5425 | 1787,16,0,387,1, | ||
5426 | 322,1788,16,0,238, | ||
5427 | 1,85,1789,16,0, | ||
5428 | 238,1,89,1790,16, | ||
5429 | 0,238,1,1847,794, | ||
5430 | 1,93,1791,16,0, | ||
5431 | 387,1,1852,806,1, | ||
5432 | 1853,649,1,1854,655, | ||
5433 | 1,1855,660,1,1856, | ||
5434 | 748,1,1858,667,1, | ||
5435 | 97,1792,16,0,238, | ||
5436 | 1,1860,672,1,1862, | ||
5437 | 677,1,1863,682,1, | ||
5438 | 102,1793,16,0,238, | ||
5439 | 1,1112,1145,1,1565, | ||
5440 | 1794,16,0,387,1, | ||
5441 | 1046,1795,16,0,387, | ||
5442 | 1,1115,1796,16,0, | ||
5443 | 238,1,112,1797,16, | ||
5444 | 0,238,1,352,1152, | ||
5445 | 1,1121,1798,16,0, | ||
5446 | 387,1,118,1799,16, | ||
5447 | 0,387,1,346,1800, | ||
5448 | 16,0,238,1,371, | ||
5449 | 1167,1,107,1801,16, | ||
5450 | 0,387,1,124,1802, | ||
5451 | 16,0,238,1,377, | ||
5452 | 1183,1,1298,1803,16, | ||
5453 | 0,387,1,827,1804, | ||
5454 | 16,0,387,1,380, | ||
5455 | 1193,1,130,1805,16, | ||
5456 | 0,387,1,2011,723, | ||
5457 | 1,384,1806,16,0, | ||
5458 | 238,1,373,1173,1, | ||
5459 | 137,1807,16,0,238, | ||
5460 | 1,1396,1808,16,0, | ||
5461 | 238,1,143,1809,16, | ||
5462 | 0,387,1,397,1810, | ||
5463 | 16,0,238,1,1402, | ||
5464 | 1811,16,0,387,1, | ||
5465 | 1152,1812,16,0,238, | ||
5466 | 1,375,1178,1,151, | ||
5467 | 1813,16,0,238,1, | ||
5468 | 403,1814,16,0,387, | ||
5469 | 1,1158,1815,16,0, | ||
5470 | 387,1,1366,1816,16, | ||
5471 | 0,387,1,381,1817, | ||
5472 | 16,0,238,1,157, | ||
5473 | 1818,16,0,387,1, | ||
5474 | 883,1819,16,0,387, | ||
5475 | 1,1668,1820,16,0, | ||
5476 | 238,1,166,1821,16, | ||
5477 | 0,238,1,379,1247, | ||
5478 | 1,1674,1822,16,0, | ||
5479 | 387,1,422,1823,16, | ||
5480 | 0,238,1,172,1824, | ||
5481 | 16,0,387,1,1385, | ||
5482 | 769,1,1432,1825,16, | ||
5483 | 0,238,1,1584,1826, | ||
5484 | 16,0,238,1,182, | ||
5485 | 1827,16,0,238,1, | ||
5486 | 1187,1828,16,0,238, | ||
5487 | 1,1637,710,1,1639, | ||
5488 | 1829,16,0,238,1, | ||
5489 | 1694,740,1,1193,1830, | ||
5490 | 16,0,387,1,428, | ||
5491 | 1831,16,0,387,1, | ||
5492 | 2201,1832,16,0,238, | ||
5493 | 1,188,1833,16,0, | ||
5494 | 387,1,447,1834,16, | ||
5495 | 0,238,1,1094,1241, | ||
5496 | 1,199,1835,16,0, | ||
5497 | 238,1,1707,1836,16, | ||
5498 | 0,238,1,453,1837, | ||
5499 | 16,0,387,1,205, | ||
5500 | 1838,16,0,387,1, | ||
5501 | 1713,1839,16,0,387, | ||
5502 | 1,1965,1840,16,0, | ||
5503 | 238,1,1611,1841,16, | ||
5504 | 0,238,1,1467,729, | ||
5505 | 1,1469,1842,16,0, | ||
5506 | 238,1,217,1843,16, | ||
5507 | 0,238,1,1222,1844, | ||
5508 | 16,0,238,1,942, | ||
5509 | 1845,16,0,387,1, | ||
5510 | 223,1846,16,0,387, | ||
5511 | 1,1228,1847,16,0, | ||
5512 | 387,1,476,1303,1, | ||
5513 | 1732,1848,16,0,238, | ||
5514 | 1,1482,1849,16,0, | ||
5515 | 387,1,463,1850,16, | ||
5516 | 0,238,1,1438,1851, | ||
5517 | 16,0,387,1,236, | ||
5518 | 1852,16,0,238,1, | ||
5519 | 488,1853,16,0,238, | ||
5520 | 1,242,1854,16,0, | ||
5521 | 387,1,478,1325,1, | ||
5522 | 479,1330,1,2005,801, | ||
5523 | 1,2006,777,1,20, | ||
5524 | 1855,19,383,1,20, | ||
5525 | 1856,5,77,1,328, | ||
5526 | 1857,16,0,381,1, | ||
5527 | 1333,1858,16,0,381, | ||
5528 | 1,1094,1241,1,1438, | ||
5529 | 1859,16,0,381,1, | ||
5530 | 223,1860,16,0,381, | ||
5531 | 1,428,1861,16,0, | ||
5532 | 381,1,118,1862,16, | ||
5533 | 0,381,1,883,1863, | ||
5534 | 16,0,381,1,453, | ||
5535 | 1864,16,0,381,1, | ||
5536 | 1001,994,1,130,1865, | ||
5537 | 16,0,381,1,1112, | ||
5538 | 1145,1,242,1866,16, | ||
5539 | 0,381,1,1769,1867, | ||
5540 | 16,0,381,1,463, | ||
5541 | 1314,1,573,1083,1, | ||
5542 | 1228,1868,16,0,381, | ||
5543 | 1,1011,1089,1,1121, | ||
5544 | 1869,16,0,381,1, | ||
5545 | 143,1870,16,0,381, | ||
5546 | 1,352,1871,16,0, | ||
5547 | 381,1,1674,1872,16, | ||
5548 | 0,381,1,40,1002, | ||
5549 | 1,477,988,1,42, | ||
5550 | 1873,16,0,381,1, | ||
5551 | 479,1330,1,44,1018, | ||
5552 | 1,373,1173,1,47, | ||
5553 | 1019,1,48,1025,1, | ||
5554 | 49,1031,1,50,1036, | ||
5555 | 1,51,1041,1,1482, | ||
5556 | 1874,16,0,381,1, | ||
5557 | 380,1193,1,157,1875, | ||
5558 | 16,0,381,1,476, | ||
5559 | 1303,1,371,1167,1, | ||
5560 | 1366,1876,16,0,381, | ||
5561 | 1,375,1178,1,1010, | ||
5562 | 1877,16,0,381,1, | ||
5563 | 63,1053,1,1263,1878, | ||
5564 | 16,0,381,1,283, | ||
5565 | 1008,1,66,1063,1, | ||
5566 | 67,1100,1,1158,1879, | ||
5567 | 16,0,381,1,69, | ||
5568 | 1073,1,70,1078,1, | ||
5569 | 68,1068,1,73,1880, | ||
5570 | 16,0,381,1,74, | ||
5571 | 1095,1,494,1881,16, | ||
5572 | 0,381,1,377,1183, | ||
5573 | 1,172,1882,16,0, | ||
5574 | 381,1,1713,1883,16, | ||
5575 | 0,381,1,188,1884, | ||
5576 | 16,0,381,1,82, | ||
5577 | 1885,16,0,381,1, | ||
5578 | 262,975,1,504,956, | ||
5579 | 1,305,1046,1,1527, | ||
5580 | 1886,16,0,381,1, | ||
5581 | 1565,1887,16,0,381, | ||
5582 | 1,403,1888,16,0, | ||
5583 | 381,1,827,1889,16, | ||
5584 | 0,381,1,1046,1890, | ||
5585 | 16,0,381,1,93, | ||
5586 | 1891,16,0,381,1, | ||
5587 | 1402,1892,16,0,381, | ||
5588 | 1,205,1893,16,0, | ||
5589 | 381,1,2207,1894,16, | ||
5590 | 0,381,1,1298,1895, | ||
5591 | 16,0,381,1,1002, | ||
5592 | 1058,1,942,1896,16, | ||
5593 | 0,381,1,1193,1897, | ||
5594 | 16,0,381,1,379, | ||
5595 | 1247,1,478,1325,1, | ||
5596 | 107,1898,16,0,381, | ||
5597 | 1,21,1899,19,372, | ||
5598 | 1,21,1900,5,77, | ||
5599 | 1,328,1901,16,0, | ||
5600 | 370,1,1333,1902,16, | ||
5601 | 0,370,1,1094,1241, | ||
5602 | 1,1438,1903,16,0, | ||
5603 | 370,1,223,1904,16, | ||
5604 | 0,370,1,428,1905, | ||
5605 | 16,0,370,1,118, | ||
5606 | 1906,16,0,370,1, | ||
5607 | 883,1907,16,0,370, | ||
5608 | 1,453,1908,16,0, | ||
5609 | 370,1,1001,994,1, | ||
5610 | 130,1909,16,0,370, | ||
5611 | 1,1112,1145,1,242, | ||
5612 | 1910,16,0,370,1, | ||
5613 | 1769,1911,16,0,370, | ||
5614 | 1,463,1314,1,573, | ||
5615 | 1083,1,1228,1912,16, | ||
5616 | 0,370,1,1011,1089, | ||
5617 | 1,1121,1913,16,0, | ||
5618 | 370,1,143,1914,16, | ||
5619 | 0,370,1,352,1915, | ||
5620 | 16,0,370,1,1674, | ||
5621 | 1916,16,0,370,1, | ||
5622 | 40,1002,1,477,988, | ||
5623 | 1,42,1917,16,0, | ||
5624 | 370,1,479,1330,1, | ||
5625 | 44,1018,1,373,1173, | ||
5626 | 1,47,1019,1,48, | ||
5627 | 1025,1,49,1031,1, | ||
5628 | 50,1036,1,51,1041, | ||
5629 | 1,1482,1918,16,0, | ||
5630 | 370,1,380,1193,1, | ||
5631 | 157,1919,16,0,370, | ||
5632 | 1,476,1303,1,371, | ||
5633 | 1167,1,1366,1920,16, | ||
5634 | 0,370,1,375,1178, | ||
5635 | 1,1010,1921,16,0, | ||
5636 | 370,1,63,1053,1, | ||
5637 | 1263,1922,16,0,370, | ||
5638 | 1,283,1008,1,66, | ||
5639 | 1063,1,67,1100,1, | ||
5640 | 1158,1923,16,0,370, | ||
5641 | 1,69,1073,1,70, | ||
5642 | 1078,1,68,1068,1, | ||
5643 | 73,1924,16,0,370, | ||
5644 | 1,74,1095,1,494, | ||
5645 | 1925,16,0,370,1, | ||
5646 | 377,1183,1,172,1926, | ||
5647 | 16,0,370,1,1713, | ||
5648 | 1927,16,0,370,1, | ||
5649 | 188,1928,16,0,370, | ||
5650 | 1,82,1929,16,0, | ||
5651 | 370,1,262,975,1, | ||
5652 | 504,956,1,305,1046, | ||
5653 | 1,1527,1930,16,0, | ||
5654 | 370,1,1565,1931,16, | ||
5655 | 0,370,1,403,1932, | ||
5656 | 16,0,370,1,827, | ||
5657 | 1933,16,0,370,1, | ||
5658 | 1046,1934,16,0,370, | ||
5659 | 1,93,1935,16,0, | ||
5660 | 370,1,1402,1936,16, | ||
5661 | 0,370,1,205,1937, | ||
5662 | 16,0,370,1,2207, | ||
5663 | 1938,16,0,370,1, | ||
5664 | 1298,1939,16,0,370, | ||
5665 | 1,1002,1058,1,942, | ||
5666 | 1940,16,0,370,1, | ||
5667 | 1193,1941,16,0,370, | ||
5668 | 1,379,1247,1,478, | ||
5669 | 1325,1,107,1942,16, | ||
5670 | 0,370,1,22,1943, | ||
5671 | 19,365,1,22,1944, | ||
5672 | 5,77,1,328,1945, | ||
5673 | 16,0,363,1,1333, | ||
5674 | 1946,16,0,363,1, | ||
5675 | 1094,1241,1,1438,1947, | ||
5676 | 16,0,363,1,223, | ||
5677 | 1948,16,0,363,1, | ||
5678 | 428,1949,16,0,363, | ||
5679 | 1,118,1950,16,0, | ||
5680 | 363,1,883,1951,16, | ||
5681 | 0,363,1,453,1952, | ||
5682 | 16,0,363,1,1001, | ||
5683 | 994,1,130,1953,16, | ||
5684 | 0,363,1,1112,1145, | ||
5685 | 1,242,1954,16,0, | ||
5686 | 363,1,1769,1955,16, | ||
5687 | 0,363,1,463,1314, | ||
5688 | 1,573,1083,1,1228, | ||
5689 | 1956,16,0,363,1, | ||
5690 | 1011,1089,1,1121,1957, | ||
5691 | 16,0,363,1,143, | ||
5692 | 1958,16,0,363,1, | ||
5693 | 352,1959,16,0,363, | ||
5694 | 1,1674,1960,16,0, | ||
5695 | 363,1,40,1002,1, | ||
5696 | 477,988,1,42,1961, | ||
5697 | 16,0,363,1,479, | ||
5698 | 1330,1,44,1018,1, | ||
5699 | 373,1173,1,47,1019, | ||
5700 | 1,48,1025,1,49, | ||
5701 | 1031,1,50,1036,1, | ||
5702 | 51,1041,1,1482,1962, | ||
5703 | 16,0,363,1,380, | ||
5704 | 1193,1,157,1963,16, | ||
5705 | 0,363,1,476,1303, | ||
5706 | 1,371,1167,1,1366, | ||
5707 | 1964,16,0,363,1, | ||
5708 | 375,1178,1,1010,1965, | ||
5709 | 16,0,363,1,63, | ||
5710 | 1053,1,1263,1966,16, | ||
5711 | 0,363,1,283,1008, | ||
5712 | 1,66,1063,1,67, | ||
5713 | 1100,1,1158,1967,16, | ||
5714 | 0,363,1,69,1073, | ||
5715 | 1,70,1078,1,68, | ||
5716 | 1068,1,73,1968,16, | ||
5717 | 0,363,1,74,1095, | ||
5718 | 1,494,1969,16,0, | ||
5719 | 363,1,377,1183,1, | ||
5720 | 172,1970,16,0,363, | ||
5721 | 1,1713,1971,16,0, | ||
5722 | 363,1,188,1972,16, | ||
5723 | 0,363,1,82,1973, | ||
5724 | 16,0,363,1,262, | ||
5725 | 975,1,504,956,1, | ||
5726 | 305,1046,1,1527,1974, | ||
5727 | 16,0,363,1,1565, | ||
5728 | 1975,16,0,363,1, | ||
5729 | 403,1976,16,0,363, | ||
5730 | 1,827,1977,16,0, | ||
5731 | 363,1,1046,1978,16, | ||
5732 | 0,363,1,93,1979, | ||
5733 | 16,0,363,1,1402, | ||
5734 | 1980,16,0,363,1, | ||
5735 | 205,1981,16,0,363, | ||
5736 | 1,2207,1982,16,0, | ||
5737 | 363,1,1298,1983,16, | ||
5738 | 0,363,1,1002,1058, | ||
5739 | 1,942,1984,16,0, | ||
5740 | 363,1,1193,1985,16, | ||
5741 | 0,363,1,379,1247, | ||
5742 | 1,478,1325,1,107, | ||
5743 | 1986,16,0,363,1, | ||
5744 | 24,1987,19,198,1, | ||
5745 | 24,1988,5,5,1, | ||
5746 | 44,1989,16,0,196, | ||
5747 | 1,377,1990,16,0, | ||
5748 | 477,1,40,1991,16, | ||
5749 | 0,608,1,63,1992, | ||
5750 | 16,0,213,1,373, | ||
5751 | 1993,16,0,473,1, | ||
5752 | 25,1994,19,296,1, | ||
5753 | 25,1995,5,152,1, | ||
5754 | 2009,716,1,1257,1996, | ||
5755 | 16,0,504,1,1760, | ||
5756 | 688,1,256,1997,16, | ||
5757 | 0,504,1,1763,1998, | ||
5758 | 16,0,504,1,1011, | ||
5759 | 1089,1,1263,1999,16, | ||
5760 | 0,294,1,494,2000, | ||
5761 | 16,0,294,1,262, | ||
5762 | 975,1,1769,2001,16, | ||
5763 | 0,294,1,2207,2002, | ||
5764 | 16,0,294,1,504, | ||
5765 | 2003,16,0,504,1, | ||
5766 | 1527,2004,16,0,294, | ||
5767 | 1,477,988,1,277, | ||
5768 | 2005,16,0,504,1, | ||
5769 | 1001,994,1,1788,2006, | ||
5770 | 16,0,504,1,32, | ||
5771 | 2007,16,0,504,1, | ||
5772 | 1292,2008,16,0,504, | ||
5773 | 1,1010,2009,16,0, | ||
5774 | 294,1,40,1002,1, | ||
5775 | 41,2010,16,0,504, | ||
5776 | 1,42,2011,16,0, | ||
5777 | 294,1,43,2012,16, | ||
5778 | 0,504,1,44,1018, | ||
5779 | 1,47,1019,1,48, | ||
5780 | 1025,1,49,1031,1, | ||
5781 | 50,1036,1,51,1041, | ||
5782 | 1,52,2013,16,0, | ||
5783 | 504,1,1559,2014,16, | ||
5784 | 0,504,1,305,1046, | ||
5785 | 1,1514,2015,16,0, | ||
5786 | 504,1,299,2016,16, | ||
5787 | 0,504,1,1817,760, | ||
5788 | 1,1818,2017,16,0, | ||
5789 | 504,1,62,2018,16, | ||
5790 | 0,504,1,63,1053, | ||
5791 | 1,1002,1058,1,66, | ||
5792 | 1063,1,67,1100,1, | ||
5793 | 68,1068,1,69,1073, | ||
5794 | 1,70,1078,1,573, | ||
5795 | 1083,1,1327,2019,16, | ||
5796 | 0,504,1,73,2020, | ||
5797 | 16,0,294,1,74, | ||
5798 | 1095,1,71,2021,16, | ||
5799 | 0,504,1,76,2022, | ||
5800 | 16,0,504,1,328, | ||
5801 | 1110,1,1333,2023,16, | ||
5802 | 0,294,1,79,2024, | ||
5803 | 16,0,504,1,82, | ||
5804 | 2025,16,0,294,1, | ||
5805 | 322,2026,16,0,504, | ||
5806 | 1,85,2027,16,0, | ||
5807 | 504,1,89,2028,16, | ||
5808 | 0,504,1,1847,794, | ||
5809 | 1,283,1008,1,93, | ||
5810 | 2029,16,0,294,1, | ||
5811 | 1852,806,1,1853,649, | ||
5812 | 1,1854,655,1,1855, | ||
5813 | 660,1,1856,748,1, | ||
5814 | 1858,667,1,97,2030, | ||
5815 | 16,0,504,1,1860, | ||
5816 | 672,1,1862,677,1, | ||
5817 | 1863,682,1,102,2031, | ||
5818 | 16,0,504,1,1112, | ||
5819 | 1145,1,1565,2032,16, | ||
5820 | 0,294,1,1046,1105, | ||
5821 | 1,1115,2033,16,0, | ||
5822 | 504,1,112,2034,16, | ||
5823 | 0,504,1,352,1152, | ||
5824 | 1,1121,2035,16,0, | ||
5825 | 294,1,118,1162,1, | ||
5826 | 346,2036,16,0,504, | ||
5827 | 1,371,1167,1,107, | ||
5828 | 2037,16,0,294,1, | ||
5829 | 124,2038,16,0,504, | ||
5830 | 1,377,1183,1,1298, | ||
5831 | 2039,16,0,294,1, | ||
5832 | 827,2040,16,0,294, | ||
5833 | 1,380,1193,1,130, | ||
5834 | 1205,1,2011,723,1, | ||
5835 | 384,2041,16,0,504, | ||
5836 | 1,373,1173,1,137, | ||
5837 | 2042,16,0,504,1, | ||
5838 | 1396,2043,16,0,504, | ||
5839 | 1,143,2044,16,0, | ||
5840 | 294,1,397,2045,16, | ||
5841 | 0,504,1,1402,2046, | ||
5842 | 16,0,294,1,1152, | ||
5843 | 2047,16,0,504,1, | ||
5844 | 375,1178,1,151,2048, | ||
5845 | 16,0,504,1,403, | ||
5846 | 2049,16,0,294,1, | ||
5847 | 1158,2050,16,0,294, | ||
5848 | 1,1366,2051,16,0, | ||
5849 | 294,1,381,2052,16, | ||
5850 | 0,504,1,157,2053, | ||
5851 | 16,0,294,1,883, | ||
5852 | 2054,16,0,294,1, | ||
5853 | 1668,2055,16,0,504, | ||
5854 | 1,166,2056,16,0, | ||
5855 | 504,1,379,1247,1, | ||
5856 | 1674,2057,16,0,294, | ||
5857 | 1,422,2058,16,0, | ||
5858 | 504,1,172,1252,1, | ||
5859 | 1385,769,1,1432,2059, | ||
5860 | 16,0,504,1,1584, | ||
5861 | 2060,16,0,504,1, | ||
5862 | 182,2061,16,0,504, | ||
5863 | 1,1187,2062,16,0, | ||
5864 | 504,1,1637,710,1, | ||
5865 | 1639,2063,16,0,504, | ||
5866 | 1,1694,740,1,1193, | ||
5867 | 2064,16,0,294,1, | ||
5868 | 428,2065,16,0,294, | ||
5869 | 1,2201,2066,16,0, | ||
5870 | 504,1,188,1275,1, | ||
5871 | 447,2067,16,0,504, | ||
5872 | 1,1094,1241,1,199, | ||
5873 | 2068,16,0,504,1, | ||
5874 | 1707,2069,16,0,504, | ||
5875 | 1,453,2070,16,0, | ||
5876 | 294,1,205,2071,16, | ||
5877 | 0,294,1,1713,2072, | ||
5878 | 16,0,294,1,1965, | ||
5879 | 2073,16,0,504,1, | ||
5880 | 1611,2074,16,0,504, | ||
5881 | 1,1467,729,1,1469, | ||
5882 | 2075,16,0,504,1, | ||
5883 | 217,2076,16,0,504, | ||
5884 | 1,1222,2077,16,0, | ||
5885 | 504,1,942,1288,1, | ||
5886 | 223,2078,16,0,294, | ||
5887 | 1,1228,2079,16,0, | ||
5888 | 294,1,476,1303,1, | ||
5889 | 1732,2080,16,0,504, | ||
5890 | 1,1482,2081,16,0, | ||
5891 | 294,1,463,2082,16, | ||
5892 | 0,504,1,1438,2083, | ||
5893 | 16,0,294,1,236, | ||
5894 | 2084,16,0,504,1, | ||
5895 | 488,2085,16,0,504, | ||
5896 | 1,242,2086,16,0, | ||
5897 | 294,1,478,1325,1, | ||
5898 | 479,1330,1,2005,801, | ||
5899 | 1,2006,777,1,26, | ||
5900 | 2087,19,335,1,26, | ||
5901 | 2088,5,77,1,328, | ||
5902 | 1110,1,1333,2089,16, | ||
5903 | 0,333,1,1094,1241, | ||
5904 | 1,1438,2090,16,0, | ||
5905 | 333,1,223,2091,16, | ||
5906 | 0,333,1,428,2092, | ||
5907 | 16,0,333,1,118, | ||
5908 | 1162,1,883,2093,16, | ||
5909 | 0,333,1,453,2094, | ||
5910 | 16,0,557,1,1001, | ||
5911 | 994,1,130,1205,1, | ||
5912 | 1112,1145,1,242,2095, | ||
5913 | 16,0,333,1,1769, | ||
5914 | 2096,16,0,333,1, | ||
5915 | 463,1314,1,573,1083, | ||
5916 | 1,1228,2097,16,0, | ||
5917 | 333,1,1011,1089,1, | ||
5918 | 1121,2098,16,0,333, | ||
5919 | 1,143,2099,16,0, | ||
5920 | 333,1,352,1152,1, | ||
5921 | 1674,2100,16,0,333, | ||
5922 | 1,40,1002,1,477, | ||
5923 | 988,1,42,2101,16, | ||
5924 | 0,333,1,479,1330, | ||
5925 | 1,44,1018,1,373, | ||
5926 | 1173,1,47,1019,1, | ||
5927 | 48,1025,1,49,1031, | ||
5928 | 1,50,1036,1,51, | ||
5929 | 1041,1,1482,2102,16, | ||
5930 | 0,333,1,380,1193, | ||
5931 | 1,157,2103,16,0, | ||
5932 | 333,1,476,1303,1, | ||
5933 | 371,1167,1,1366,2104, | ||
5934 | 16,0,333,1,375, | ||
5935 | 1178,1,1010,2105,16, | ||
5936 | 0,333,1,63,1053, | ||
5937 | 1,1263,2106,16,0, | ||
5938 | 333,1,283,1008,1, | ||
5939 | 66,1063,1,67,1100, | ||
5940 | 1,1158,2107,16,0, | ||
5941 | 333,1,69,1073,1, | ||
5942 | 70,1078,1,68,1068, | ||
5943 | 1,73,2108,16,0, | ||
5944 | 333,1,74,1095,1, | ||
5945 | 494,2109,16,0,578, | ||
5946 | 1,377,1183,1,172, | ||
5947 | 1252,1,1713,2110,16, | ||
5948 | 0,333,1,188,1275, | ||
5949 | 1,82,2111,16,0, | ||
5950 | 333,1,262,975,1, | ||
5951 | 504,956,1,305,1046, | ||
5952 | 1,1527,2112,16,0, | ||
5953 | 333,1,1565,2113,16, | ||
5954 | 0,333,1,403,2114, | ||
5955 | 16,0,333,1,827, | ||
5956 | 2115,16,0,333,1, | ||
5957 | 1046,1105,1,93,2116, | ||
5958 | 16,0,333,1,1402, | ||
5959 | 2117,16,0,333,1, | ||
5960 | 205,2118,16,0,333, | ||
5961 | 1,2207,2119,16,0, | ||
5962 | 333,1,1298,2120,16, | ||
5963 | 0,333,1,1002,1058, | ||
5964 | 1,942,1288,1,1193, | ||
5965 | 2121,16,0,333,1, | ||
5966 | 379,1247,1,478,1325, | ||
5967 | 1,107,2122,16,0, | ||
5968 | 333,1,27,2123,19, | ||
5969 | 484,1,27,2124,5, | ||
5970 | 77,1,1853,649,1, | ||
5971 | 1854,655,1,1855,660, | ||
5972 | 1,112,2125,16,0, | ||
5973 | 482,1,384,2126,16, | ||
5974 | 0,482,1,1858,667, | ||
5975 | 1,1860,672,1,1862, | ||
5976 | 677,1,1863,682,1, | ||
5977 | 447,2127,16,0,482, | ||
5978 | 1,1611,2128,16,0, | ||
5979 | 482,1,124,2129,16, | ||
5980 | 0,482,1,1760,688, | ||
5981 | 1,236,2130,16,0, | ||
5982 | 482,1,1763,2131,16, | ||
5983 | 0,482,1,2201,2132, | ||
5984 | 16,0,482,1,1222, | ||
5985 | 2133,16,0,482,1, | ||
5986 | 1115,2134,16,0,482, | ||
5987 | 1,1187,2135,16,0, | ||
5988 | 482,1,137,2136,16, | ||
5989 | 0,482,1,217,2137, | ||
5990 | 16,0,482,1,32, | ||
5991 | 2138,16,0,482,1, | ||
5992 | 1668,2139,16,0,482, | ||
5993 | 1,1514,2140,16,0, | ||
5994 | 482,1,256,2141,16, | ||
5995 | 0,482,1,41,2142, | ||
5996 | 16,0,482,1,151, | ||
5997 | 2143,16,0,482,1, | ||
5998 | 43,2144,16,0,482, | ||
5999 | 1,1732,2145,16,0, | ||
6000 | 482,1,1637,710,1, | ||
6001 | 2009,716,1,1639,2146, | ||
6002 | 16,0,482,1,2011, | ||
6003 | 723,1,1467,729,1, | ||
6004 | 1584,2147,16,0,482, | ||
6005 | 1,52,2148,16,0, | ||
6006 | 482,1,381,2149,16, | ||
6007 | 0,482,1,346,2150, | ||
6008 | 16,0,482,1,166, | ||
6009 | 2151,16,0,482,1, | ||
6010 | 1257,2152,16,0,482, | ||
6011 | 1,1694,740,1,1432, | ||
6012 | 2153,16,0,482,1, | ||
6013 | 1152,2154,16,0,482, | ||
6014 | 1,1856,748,1,62, | ||
6015 | 2155,16,0,482,1, | ||
6016 | 1965,2156,16,0,482, | ||
6017 | 1,504,2157,16,0, | ||
6018 | 482,1,277,2158,16, | ||
6019 | 0,482,1,397,2159, | ||
6020 | 16,0,482,1,71, | ||
6021 | 2160,16,0,482,1, | ||
6022 | 1707,2161,16,0,482, | ||
6023 | 1,1817,760,1,1818, | ||
6024 | 2162,16,0,482,1, | ||
6025 | 463,2163,16,0,482, | ||
6026 | 1,76,2164,16,0, | ||
6027 | 482,1,1385,769,1, | ||
6028 | 79,2165,16,0,482, | ||
6029 | 1,182,2166,16,0, | ||
6030 | 482,1,299,2167,16, | ||
6031 | 0,482,1,2006,777, | ||
6032 | 1,1559,2168,16,0, | ||
6033 | 482,1,85,2169,16, | ||
6034 | 0,482,1,488,2170, | ||
6035 | 16,0,482,1,1396, | ||
6036 | 2171,16,0,482,1, | ||
6037 | 89,2172,16,0,482, | ||
6038 | 1,199,2173,16,0, | ||
6039 | 482,1,1292,2174,16, | ||
6040 | 0,482,1,422,2175, | ||
6041 | 16,0,482,1,97, | ||
6042 | 2176,16,0,482,1, | ||
6043 | 1469,2177,16,0,482, | ||
6044 | 1,1788,2178,16,0, | ||
6045 | 482,1,102,2179,16, | ||
6046 | 0,482,1,1847,794, | ||
6047 | 1,322,2180,16,0, | ||
6048 | 482,1,1327,2181,16, | ||
6049 | 0,482,1,2005,801, | ||
6050 | 1,1852,806,1,28, | ||
6051 | 2182,19,139,1,28, | ||
6052 | 2183,5,59,1,328, | ||
6053 | 1110,1,1094,1241,1, | ||
6054 | 223,1293,1,118,1162, | ||
6055 | 1,883,1199,1,1001, | ||
6056 | 994,1,130,1205,1, | ||
6057 | 1112,1145,1,242,1320, | ||
6058 | 1,352,1152,1,463, | ||
6059 | 1314,1,573,1083,1, | ||
6060 | 574,1401,1,1011,1089, | ||
6061 | 1,143,1216,1,40, | ||
6062 | 1002,1,41,1390,1, | ||
6063 | 42,1394,1,479,1330, | ||
6064 | 1,44,1018,1,373, | ||
6065 | 1173,1,47,1019,1, | ||
6066 | 157,1236,1,49,1031, | ||
6067 | 1,50,1036,1,48, | ||
6068 | 1025,1,379,1247,1, | ||
6069 | 380,1193,1,51,1041, | ||
6070 | 1,383,2184,16,0, | ||
6071 | 137,1,371,1167,1, | ||
6072 | 478,1325,1,386,1411, | ||
6073 | 1,375,1178,1,172, | ||
6074 | 1252,1,262,975,1, | ||
6075 | 283,1008,1,63,1053, | ||
6076 | 1,67,1100,1,68, | ||
6077 | 1068,1,69,1073,1, | ||
6078 | 66,1063,1,476,1303, | ||
6079 | 1,477,988,1,74, | ||
6080 | 1095,1,377,1183,1, | ||
6081 | 1002,1058,1,70,1078, | ||
6082 | 1,188,1275,1,381, | ||
6083 | 1417,1,82,1120,1, | ||
6084 | 504,956,1,305,1046, | ||
6085 | 1,827,1188,1,93, | ||
6086 | 1146,1,205,1281,1, | ||
6087 | 1046,1105,1,942,1288, | ||
6088 | 1,107,1140,1,29, | ||
6089 | 2185,19,287,1,29, | ||
6090 | 2186,5,77,1,328, | ||
6091 | 1110,1,1333,2187,16, | ||
6092 | 0,285,1,1094,1241, | ||
6093 | 1,1438,2188,16,0, | ||
6094 | 285,1,223,2189,16, | ||
6095 | 0,285,1,428,2190, | ||
6096 | 16,0,285,1,118, | ||
6097 | 1162,1,883,2191,16, | ||
6098 | 0,285,1,453,2192, | ||
6099 | 16,0,285,1,1001, | ||
6100 | 994,1,130,1205,1, | ||
6101 | 1112,1145,1,242,2193, | ||
6102 | 16,0,285,1,1769, | ||
6103 | 2194,16,0,285,1, | ||
6104 | 463,1314,1,573,1083, | ||
6105 | 1,1228,2195,16,0, | ||
6106 | 285,1,1011,1089,1, | ||
6107 | 1121,2196,16,0,285, | ||
6108 | 1,143,1216,1,352, | ||
6109 | 1152,1,1674,2197,16, | ||
6110 | 0,285,1,40,1002, | ||
6111 | 1,477,988,1,42, | ||
6112 | 2198,16,0,285,1, | ||
6113 | 479,1330,1,44,1018, | ||
6114 | 1,373,1173,1,47, | ||
6115 | 1019,1,48,1025,1, | ||
6116 | 49,1031,1,50,1036, | ||
6117 | 1,51,1041,1,1482, | ||
6118 | 2199,16,0,285,1, | ||
6119 | 380,1193,1,157,1236, | ||
6120 | 1,476,1303,1,371, | ||
6121 | 1167,1,1366,2200,16, | ||
6122 | 0,285,1,375,1178, | ||
6123 | 1,1010,2201,16,0, | ||
6124 | 285,1,63,1053,1, | ||
6125 | 1263,2202,16,0,285, | ||
6126 | 1,283,1008,1,66, | ||
6127 | 1063,1,67,1100,1, | ||
6128 | 1158,2203,16,0,285, | ||
6129 | 1,69,1073,1,70, | ||
6130 | 1078,1,68,1068,1, | ||
6131 | 73,2204,16,0,285, | ||
6132 | 1,74,1095,1,494, | ||
6133 | 2205,16,0,285,1, | ||
6134 | 377,1183,1,172,1252, | ||
6135 | 1,1713,2206,16,0, | ||
6136 | 285,1,188,1275,1, | ||
6137 | 82,2207,16,0,285, | ||
6138 | 1,262,975,1,504, | ||
6139 | 956,1,305,1046,1, | ||
6140 | 1527,2208,16,0,285, | ||
6141 | 1,1565,2209,16,0, | ||
6142 | 285,1,403,2210,16, | ||
6143 | 0,285,1,827,2211, | ||
6144 | 16,0,285,1,1046, | ||
6145 | 1105,1,93,2212,16, | ||
6146 | 0,285,1,1402,2213, | ||
6147 | 16,0,285,1,205, | ||
6148 | 2214,16,0,285,1, | ||
6149 | 2207,2215,16,0,285, | ||
6150 | 1,1298,2216,16,0, | ||
6151 | 285,1,1002,1058,1, | ||
6152 | 942,1288,1,1193,2217, | ||
6153 | 16,0,285,1,379, | ||
6154 | 1247,1,478,1325,1, | ||
6155 | 107,2218,16,0,285, | ||
6156 | 1,30,2219,19,273, | ||
6157 | 1,30,2220,5,77, | ||
6158 | 1,328,1110,1,1333, | ||
6159 | 2221,16,0,271,1, | ||
6160 | 1094,1241,1,1438,2222, | ||
6161 | 16,0,271,1,223, | ||
6162 | 2223,16,0,271,1, | ||
6163 | 428,2224,16,0,271, | ||
6164 | 1,118,1162,1,883, | ||
6165 | 2225,16,0,271,1, | ||
6166 | 453,2226,16,0,271, | ||
6167 | 1,1001,994,1,130, | ||
6168 | 1205,1,1112,1145,1, | ||
6169 | 242,2227,16,0,271, | ||
6170 | 1,1769,2228,16,0, | ||
6171 | 271,1,463,1314,1, | ||
6172 | 573,1083,1,1228,2229, | ||
6173 | 16,0,271,1,1011, | ||
6174 | 1089,1,1121,2230,16, | ||
6175 | 0,271,1,143,1216, | ||
6176 | 1,352,1152,1,1674, | ||
6177 | 2231,16,0,271,1, | ||
6178 | 40,1002,1,477,988, | ||
6179 | 1,42,2232,16,0, | ||
6180 | 271,1,479,1330,1, | ||
6181 | 44,1018,1,373,1173, | ||
6182 | 1,47,1019,1,48, | ||
6183 | 1025,1,49,1031,1, | ||
6184 | 50,1036,1,51,1041, | ||
6185 | 1,1482,2233,16,0, | ||
6186 | 271,1,380,1193,1, | ||
6187 | 157,1236,1,476,1303, | ||
6188 | 1,371,1167,1,1366, | ||
6189 | 2234,16,0,271,1, | ||
6190 | 375,1178,1,1010,2235, | ||
6191 | 16,0,271,1,63, | ||
6192 | 1053,1,1263,2236,16, | ||
6193 | 0,271,1,283,1008, | ||
6194 | 1,66,1063,1,67, | ||
6195 | 1100,1,1158,2237,16, | ||
6196 | 0,271,1,69,1073, | ||
6197 | 1,70,1078,1,68, | ||
6198 | 1068,1,73,2238,16, | ||
6199 | 0,271,1,74,1095, | ||
6200 | 1,494,2239,16,0, | ||
6201 | 271,1,377,1183,1, | ||
6202 | 172,1252,1,1713,2240, | ||
6203 | 16,0,271,1,188, | ||
6204 | 1275,1,82,2241,16, | ||
6205 | 0,271,1,262,975, | ||
6206 | 1,504,956,1,305, | ||
6207 | 1046,1,1527,2242,16, | ||
6208 | 0,271,1,1565,2243, | ||
6209 | 16,0,271,1,403, | ||
6210 | 2244,16,0,271,1, | ||
6211 | 827,2245,16,0,271, | ||
6212 | 1,1046,1105,1,93, | ||
6213 | 2246,16,0,271,1, | ||
6214 | 1402,2247,16,0,271, | ||
6215 | 1,205,2248,16,0, | ||
6216 | 271,1,2207,2249,16, | ||
6217 | 0,271,1,1298,2250, | ||
6218 | 16,0,271,1,1002, | ||
6219 | 1058,1,942,1288,1, | ||
6220 | 1193,2251,16,0,271, | ||
6221 | 1,379,1247,1,478, | ||
6222 | 1325,1,107,2252,16, | ||
6223 | 0,271,1,31,2253, | ||
6224 | 19,269,1,31,2254, | ||
6225 | 5,77,1,328,1110, | ||
6226 | 1,1333,2255,16,0, | ||
6227 | 267,1,1094,1241,1, | ||
6228 | 1438,2256,16,0,267, | ||
6229 | 1,223,2257,16,0, | ||
6230 | 267,1,428,2258,16, | ||
6231 | 0,267,1,118,1162, | ||
6232 | 1,883,2259,16,0, | ||
6233 | 267,1,453,2260,16, | ||
6234 | 0,267,1,1001,994, | ||
6235 | 1,130,1205,1,1112, | ||
6236 | 1145,1,242,2261,16, | ||
6237 | 0,267,1,1769,2262, | ||
6238 | 16,0,267,1,463, | ||
6239 | 1314,1,573,1083,1, | ||
6240 | 1228,2263,16,0,267, | ||
6241 | 1,1011,1089,1,1121, | ||
6242 | 2264,16,0,267,1, | ||
6243 | 143,2265,16,0,267, | ||
6244 | 1,352,1152,1,1674, | ||
6245 | 2266,16,0,267,1, | ||
6246 | 40,1002,1,477,988, | ||
6247 | 1,42,2267,16,0, | ||
6248 | 267,1,479,1330,1, | ||
6249 | 44,1018,1,373,1173, | ||
6250 | 1,47,1019,1,48, | ||
6251 | 1025,1,49,1031,1, | ||
6252 | 50,1036,1,51,1041, | ||
6253 | 1,1482,2268,16,0, | ||
6254 | 267,1,380,1193,1, | ||
6255 | 157,2269,16,0,267, | ||
6256 | 1,476,1303,1,371, | ||
6257 | 1167,1,1366,2270,16, | ||
6258 | 0,267,1,375,1178, | ||
6259 | 1,1010,2271,16,0, | ||
6260 | 267,1,63,1053,1, | ||
6261 | 1263,2272,16,0,267, | ||
6262 | 1,283,1008,1,66, | ||
6263 | 1063,1,67,1100,1, | ||
6264 | 1158,2273,16,0,267, | ||
6265 | 1,69,1073,1,70, | ||
6266 | 1078,1,68,1068,1, | ||
6267 | 73,2274,16,0,267, | ||
6268 | 1,74,1095,1,494, | ||
6269 | 2275,16,0,267,1, | ||
6270 | 377,1183,1,172,1252, | ||
6271 | 1,1713,2276,16,0, | ||
6272 | 267,1,188,1275,1, | ||
6273 | 82,2277,16,0,267, | ||
6274 | 1,262,975,1,504, | ||
6275 | 956,1,305,1046,1, | ||
6276 | 1527,2278,16,0,267, | ||
6277 | 1,1565,2279,16,0, | ||
6278 | 267,1,403,2280,16, | ||
6279 | 0,267,1,827,2281, | ||
6280 | 16,0,267,1,1046, | ||
6281 | 1105,1,93,2282,16, | ||
6282 | 0,267,1,1402,2283, | ||
6283 | 16,0,267,1,205, | ||
6284 | 2284,16,0,267,1, | ||
6285 | 2207,2285,16,0,267, | ||
6286 | 1,1298,2286,16,0, | ||
6287 | 267,1,1002,1058,1, | ||
6288 | 942,1288,1,1193,2287, | ||
6289 | 16,0,267,1,379, | ||
6290 | 1247,1,478,1325,1, | ||
6291 | 107,2288,16,0,267, | ||
6292 | 1,32,2289,19,262, | ||
6293 | 1,32,2290,5,77, | ||
6294 | 1,328,1110,1,1333, | ||
6295 | 2291,16,0,260,1, | ||
6296 | 1094,1241,1,1438,2292, | ||
6297 | 16,0,260,1,223, | ||
6298 | 2293,16,0,260,1, | ||
6299 | 428,2294,16,0,260, | ||
6300 | 1,118,1162,1,883, | ||
6301 | 2295,16,0,260,1, | ||
6302 | 453,2296,16,0,260, | ||
6303 | 1,1001,994,1,130, | ||
6304 | 1205,1,1112,1145,1, | ||
6305 | 242,2297,16,0,260, | ||
6306 | 1,1769,2298,16,0, | ||
6307 | 260,1,463,1314,1, | ||
6308 | 573,1083,1,1228,2299, | ||
6309 | 16,0,260,1,1011, | ||
6310 | 1089,1,1121,2300,16, | ||
6311 | 0,260,1,143,2301, | ||
6312 | 16,0,260,1,352, | ||
6313 | 1152,1,1674,2302,16, | ||
6314 | 0,260,1,40,1002, | ||
6315 | 1,477,988,1,42, | ||
6316 | 2303,16,0,260,1, | ||
6317 | 479,1330,1,44,1018, | ||
6318 | 1,373,1173,1,47, | ||
6319 | 1019,1,48,1025,1, | ||
6320 | 49,1031,1,50,1036, | ||
6321 | 1,51,1041,1,1482, | ||
6322 | 2304,16,0,260,1, | ||
6323 | 380,1193,1,157,2305, | ||
6324 | 16,0,260,1,476, | ||
6325 | 1303,1,371,1167,1, | ||
6326 | 1366,2306,16,0,260, | ||
6327 | 1,375,1178,1,1010, | ||
6328 | 2307,16,0,260,1, | ||
6329 | 63,1053,1,1263,2308, | ||
6330 | 16,0,260,1,283, | ||
6331 | 1008,1,66,1063,1, | ||
6332 | 67,1100,1,1158,2309, | ||
6333 | 16,0,260,1,69, | ||
6334 | 1073,1,70,1078,1, | ||
6335 | 68,1068,1,73,2310, | ||
6336 | 16,0,260,1,74, | ||
6337 | 1095,1,494,2311,16, | ||
6338 | 0,260,1,377,1183, | ||
6339 | 1,172,1252,1,1713, | ||
6340 | 2312,16,0,260,1, | ||
6341 | 188,1275,1,82,2313, | ||
6342 | 16,0,260,1,262, | ||
6343 | 975,1,504,956,1, | ||
6344 | 305,1046,1,1527,2314, | ||
6345 | 16,0,260,1,1565, | ||
6346 | 2315,16,0,260,1, | ||
6347 | 403,2316,16,0,260, | ||
6348 | 1,827,2317,16,0, | ||
6349 | 260,1,1046,1105,1, | ||
6350 | 93,2318,16,0,260, | ||
6351 | 1,1402,2319,16,0, | ||
6352 | 260,1,205,2320,16, | ||
6353 | 0,260,1,2207,2321, | ||
6354 | 16,0,260,1,1298, | ||
6355 | 2322,16,0,260,1, | ||
6356 | 1002,1058,1,942,1288, | ||
6357 | 1,1193,2323,16,0, | ||
6358 | 260,1,379,1247,1, | ||
6359 | 478,1325,1,107,2324, | ||
6360 | 16,0,260,1,33, | ||
6361 | 2325,19,350,1,33, | ||
6362 | 2326,5,77,1,328, | ||
6363 | 1110,1,1333,2327,16, | ||
6364 | 0,348,1,1094,1241, | ||
6365 | 1,1438,2328,16,0, | ||
6366 | 348,1,223,2329,16, | ||
6367 | 0,348,1,428,2330, | ||
6368 | 16,0,348,1,118, | ||
6369 | 1162,1,883,2331,16, | ||
6370 | 0,348,1,453,2332, | ||
6371 | 16,0,348,1,1001, | ||
6372 | 994,1,130,1205,1, | ||
6373 | 1112,1145,1,242,1320, | ||
6374 | 1,1769,2333,16,0, | ||
6375 | 348,1,463,1314,1, | ||
6376 | 573,1083,1,1228,2334, | ||
6377 | 16,0,348,1,1011, | ||
6378 | 1089,1,1121,2335,16, | ||
6379 | 0,348,1,143,1216, | ||
6380 | 1,352,1152,1,1674, | ||
6381 | 2336,16,0,348,1, | ||
6382 | 40,1002,1,477,988, | ||
6383 | 1,42,2337,16,0, | ||
6384 | 348,1,479,1330,1, | ||
6385 | 44,1018,1,373,1173, | ||
6386 | 1,47,1019,1,48, | ||
6387 | 1025,1,49,1031,1, | ||
6388 | 50,1036,1,51,1041, | ||
6389 | 1,1482,2338,16,0, | ||
6390 | 348,1,380,1193,1, | ||
6391 | 157,1236,1,476,1303, | ||
6392 | 1,371,1167,1,1366, | ||
6393 | 2339,16,0,348,1, | ||
6394 | 375,1178,1,1010,2340, | ||
6395 | 16,0,348,1,63, | ||
6396 | 1053,1,1263,2341,16, | ||
6397 | 0,348,1,283,1008, | ||
6398 | 1,66,1063,1,67, | ||
6399 | 1100,1,1158,2342,16, | ||
6400 | 0,348,1,69,1073, | ||
6401 | 1,70,1078,1,68, | ||
6402 | 1068,1,73,2343,16, | ||
6403 | 0,348,1,74,1095, | ||
6404 | 1,494,2344,16,0, | ||
6405 | 348,1,377,1183,1, | ||
6406 | 172,1252,1,1713,2345, | ||
6407 | 16,0,348,1,188, | ||
6408 | 1275,1,82,2346,16, | ||
6409 | 0,348,1,262,975, | ||
6410 | 1,504,956,1,305, | ||
6411 | 1046,1,1527,2347,16, | ||
6412 | 0,348,1,1565,2348, | ||
6413 | 16,0,348,1,403, | ||
6414 | 2349,16,0,348,1, | ||
6415 | 827,2350,16,0,348, | ||
6416 | 1,1046,1105,1,93, | ||
6417 | 2351,16,0,348,1, | ||
6418 | 1402,2352,16,0,348, | ||
6419 | 1,205,2353,16,0, | ||
6420 | 348,1,2207,2354,16, | ||
6421 | 0,348,1,1298,2355, | ||
6422 | 16,0,348,1,1002, | ||
6423 | 1058,1,942,1288,1, | ||
6424 | 1193,2356,16,0,348, | ||
6425 | 1,379,1247,1,478, | ||
6426 | 1325,1,107,2357,16, | ||
6427 | 0,348,1,34,2358, | ||
6428 | 19,344,1,34,2359, | ||
6429 | 5,77,1,328,1110, | ||
6430 | 1,1333,2360,16,0, | ||
6431 | 342,1,1094,1241,1, | ||
6432 | 1438,2361,16,0,342, | ||
6433 | 1,223,1293,1,428, | ||
6434 | 2362,16,0,342,1, | ||
6435 | 118,1162,1,883,2363, | ||
6436 | 16,0,342,1,453, | ||
6437 | 2364,16,0,342,1, | ||
6438 | 1001,994,1,130,1205, | ||
6439 | 1,1112,1145,1,242, | ||
6440 | 1320,1,1769,2365,16, | ||
6441 | 0,342,1,463,1314, | ||
6442 | 1,573,1083,1,1228, | ||
6443 | 2366,16,0,342,1, | ||
6444 | 1011,1089,1,1121,2367, | ||
6445 | 16,0,342,1,143, | ||
6446 | 1216,1,352,1152,1, | ||
6447 | 1674,2368,16,0,342, | ||
6448 | 1,40,1002,1,477, | ||
6449 | 988,1,42,2369,16, | ||
6450 | 0,342,1,479,1330, | ||
6451 | 1,44,1018,1,373, | ||
6452 | 1173,1,47,1019,1, | ||
6453 | 48,1025,1,49,1031, | ||
6454 | 1,50,1036,1,51, | ||
6455 | 1041,1,1482,2370,16, | ||
6456 | 0,342,1,380,1193, | ||
6457 | 1,157,1236,1,476, | ||
6458 | 1303,1,371,1167,1, | ||
6459 | 1366,2371,16,0,342, | ||
6460 | 1,375,1178,1,1010, | ||
6461 | 2372,16,0,342,1, | ||
6462 | 63,1053,1,1263,2373, | ||
6463 | 16,0,342,1,283, | ||
6464 | 1008,1,66,1063,1, | ||
6465 | 67,1100,1,1158,2374, | ||
6466 | 16,0,342,1,69, | ||
6467 | 1073,1,70,1078,1, | ||
6468 | 68,1068,1,73,2375, | ||
6469 | 16,0,342,1,74, | ||
6470 | 1095,1,494,2376,16, | ||
6471 | 0,342,1,377,1183, | ||
6472 | 1,172,1252,1,1713, | ||
6473 | 2377,16,0,342,1, | ||
6474 | 188,1275,1,82,2378, | ||
6475 | 16,0,342,1,262, | ||
6476 | 975,1,504,956,1, | ||
6477 | 305,1046,1,1527,2379, | ||
6478 | 16,0,342,1,1565, | ||
6479 | 2380,16,0,342,1, | ||
6480 | 403,2381,16,0,342, | ||
6481 | 1,827,2382,16,0, | ||
6482 | 342,1,1046,1105,1, | ||
6483 | 93,2383,16,0,342, | ||
6484 | 1,1402,2384,16,0, | ||
6485 | 342,1,205,1281,1, | ||
6486 | 2207,2385,16,0,342, | ||
6487 | 1,1298,2386,16,0, | ||
6488 | 342,1,1002,1058,1, | ||
6489 | 942,1288,1,1193,2387, | ||
6490 | 16,0,342,1,379, | ||
6491 | 1247,1,478,1325,1, | ||
6492 | 107,2388,16,0,342, | ||
6493 | 1,35,2389,19,338, | ||
6494 | 1,35,2390,5,77, | ||
6495 | 1,328,1110,1,1333, | ||
6496 | 2391,16,0,336,1, | ||
6497 | 1094,1241,1,1438,2392, | ||
6498 | 16,0,336,1,223, | ||
6499 | 2393,16,0,336,1, | ||
6500 | 428,2394,16,0,336, | ||
6501 | 1,118,1162,1,883, | ||
6502 | 2395,16,0,336,1, | ||
6503 | 453,2396,16,0,336, | ||
6504 | 1,1001,994,1,130, | ||
6505 | 1205,1,1112,1145,1, | ||
6506 | 242,1320,1,1769,2397, | ||
6507 | 16,0,336,1,463, | ||
6508 | 1314,1,573,1083,1, | ||
6509 | 1228,2398,16,0,336, | ||
6510 | 1,1011,1089,1,1121, | ||
6511 | 2399,16,0,336,1, | ||
6512 | 143,1216,1,352,1152, | ||
6513 | 1,1674,2400,16,0, | ||
6514 | 336,1,40,1002,1, | ||
6515 | 477,988,1,42,2401, | ||
6516 | 16,0,336,1,479, | ||
6517 | 1330,1,44,1018,1, | ||
6518 | 373,1173,1,47,1019, | ||
6519 | 1,48,1025,1,49, | ||
6520 | 1031,1,50,1036,1, | ||
6521 | 51,1041,1,1482,2402, | ||
6522 | 16,0,336,1,380, | ||
6523 | 1193,1,157,1236,1, | ||
6524 | 476,1303,1,371,1167, | ||
6525 | 1,1366,2403,16,0, | ||
6526 | 336,1,375,1178,1, | ||
6527 | 1010,2404,16,0,336, | ||
6528 | 1,63,1053,1,1263, | ||
6529 | 2405,16,0,336,1, | ||
6530 | 283,1008,1,66,1063, | ||
6531 | 1,67,1100,1,1158, | ||
6532 | 2406,16,0,336,1, | ||
6533 | 69,1073,1,70,1078, | ||
6534 | 1,68,1068,1,73, | ||
6535 | 2407,16,0,336,1, | ||
6536 | 74,1095,1,494,2408, | ||
6537 | 16,0,336,1,377, | ||
6538 | 1183,1,172,1252,1, | ||
6539 | 1713,2409,16,0,336, | ||
6540 | 1,188,1275,1,82, | ||
6541 | 2410,16,0,336,1, | ||
6542 | 262,975,1,504,956, | ||
6543 | 1,305,1046,1,1527, | ||
6544 | 2411,16,0,336,1, | ||
6545 | 1565,2412,16,0,336, | ||
6546 | 1,403,2413,16,0, | ||
6547 | 336,1,827,2414,16, | ||
6548 | 0,336,1,1046,1105, | ||
6549 | 1,93,2415,16,0, | ||
6550 | 336,1,1402,2416,16, | ||
6551 | 0,336,1,205,1281, | ||
6552 | 1,2207,2417,16,0, | ||
6553 | 336,1,1298,2418,16, | ||
6554 | 0,336,1,1002,1058, | ||
6555 | 1,942,1288,1,1193, | ||
6556 | 2419,16,0,336,1, | ||
6557 | 379,1247,1,478,1325, | ||
6558 | 1,107,2420,16,0, | ||
6559 | 336,1,36,2421,19, | ||
6560 | 231,1,36,2422,5, | ||
6561 | 76,1,1853,649,1, | ||
6562 | 1854,655,1,1855,660, | ||
6563 | 1,112,2423,16,0, | ||
6564 | 229,1,384,2424,16, | ||
6565 | 0,229,1,1858,667, | ||
6566 | 1,1860,672,1,1862, | ||
6567 | 677,1,1863,682,1, | ||
6568 | 447,2425,16,0,229, | ||
6569 | 1,1611,2426,16,0, | ||
6570 | 229,1,124,2427,16, | ||
6571 | 0,229,1,1760,688, | ||
6572 | 1,236,2428,16,0, | ||
6573 | 229,1,1763,2429,16, | ||
6574 | 0,229,1,2201,2430, | ||
6575 | 16,0,229,1,1222, | ||
6576 | 2431,16,0,229,1, | ||
6577 | 1115,2432,16,0,229, | ||
6578 | 1,1187,2433,16,0, | ||
6579 | 229,1,137,2434,16, | ||
6580 | 0,229,1,217,2435, | ||
6581 | 16,0,229,1,32, | ||
6582 | 2436,16,0,229,1, | ||
6583 | 1668,2437,16,0,229, | ||
6584 | 1,1514,2438,16,0, | ||
6585 | 229,1,256,2439,16, | ||
6586 | 0,229,1,41,2440, | ||
6587 | 16,0,229,1,151, | ||
6588 | 2441,16,0,229,1, | ||
6589 | 43,2442,16,0,229, | ||
6590 | 1,1732,2443,16,0, | ||
6591 | 229,1,1637,710,1, | ||
6592 | 2009,716,1,1639,2444, | ||
6593 | 16,0,229,1,2011, | ||
6594 | 723,1,1467,729,1, | ||
6595 | 1584,2445,16,0,229, | ||
6596 | 1,52,2446,16,0, | ||
6597 | 229,1,381,2447,16, | ||
6598 | 0,229,1,346,2448, | ||
6599 | 16,0,229,1,166, | ||
6600 | 2449,16,0,229,1, | ||
6601 | 1257,2450,16,0,229, | ||
6602 | 1,1694,740,1,1432, | ||
6603 | 2451,16,0,229,1, | ||
6604 | 1152,2452,16,0,229, | ||
6605 | 1,1856,748,1,1965, | ||
6606 | 2453,16,0,229,1, | ||
6607 | 504,2454,16,0,229, | ||
6608 | 1,277,2455,16,0, | ||
6609 | 229,1,397,2456,16, | ||
6610 | 0,229,1,71,2457, | ||
6611 | 16,0,229,1,1707, | ||
6612 | 2458,16,0,229,1, | ||
6613 | 1817,760,1,1818,2459, | ||
6614 | 16,0,229,1,463, | ||
6615 | 2460,16,0,229,1, | ||
6616 | 76,2461,16,0,229, | ||
6617 | 1,1385,769,1,79, | ||
6618 | 2462,16,0,229,1, | ||
6619 | 182,2463,16,0,229, | ||
6620 | 1,299,2464,16,0, | ||
6621 | 229,1,2006,777,1, | ||
6622 | 1559,2465,16,0,229, | ||
6623 | 1,85,2466,16,0, | ||
6624 | 229,1,488,2467,16, | ||
6625 | 0,229,1,1396,2468, | ||
6626 | 16,0,229,1,89, | ||
6627 | 2469,16,0,229,1, | ||
6628 | 199,2470,16,0,229, | ||
6629 | 1,1292,2471,16,0, | ||
6630 | 229,1,422,2472,16, | ||
6631 | 0,229,1,97,2473, | ||
6632 | 16,0,229,1,1469, | ||
6633 | 2474,16,0,229,1, | ||
6634 | 1788,2475,16,0,229, | ||
6635 | 1,102,2476,16,0, | ||
6636 | 229,1,1847,794,1, | ||
6637 | 322,2477,16,0,229, | ||
6638 | 1,1327,2478,16,0, | ||
6639 | 229,1,2005,801,1, | ||
6640 | 1852,806,1,37,2479, | ||
6641 | 19,252,1,37,2480, | ||
6642 | 5,76,1,1853,649, | ||
6643 | 1,1854,655,1,1855, | ||
6644 | 660,1,112,2481,16, | ||
6645 | 0,250,1,384,2482, | ||
6646 | 16,0,250,1,1858, | ||
6647 | 667,1,1860,672,1, | ||
6648 | 1862,677,1,1863,682, | ||
6649 | 1,447,2483,16,0, | ||
6650 | 250,1,1611,2484,16, | ||
6651 | 0,250,1,124,2485, | ||
6652 | 16,0,250,1,1760, | ||
6653 | 688,1,236,2486,16, | ||
6654 | 0,250,1,1763,2487, | ||
6655 | 16,0,250,1,2201, | ||
6656 | 2488,16,0,250,1, | ||
6657 | 1222,2489,16,0,250, | ||
6658 | 1,1115,2490,16,0, | ||
6659 | 250,1,1187,2491,16, | ||
6660 | 0,250,1,137,2492, | ||
6661 | 16,0,250,1,217, | ||
6662 | 2493,16,0,250,1, | ||
6663 | 32,2494,16,0,250, | ||
6664 | 1,1668,2495,16,0, | ||
6665 | 250,1,1514,2496,16, | ||
6666 | 0,250,1,256,2497, | ||
6667 | 16,0,250,1,41, | ||
6668 | 2498,16,0,250,1, | ||
6669 | 151,2499,16,0,250, | ||
6670 | 1,43,2500,16,0, | ||
6671 | 250,1,1732,2501,16, | ||
6672 | 0,250,1,1637,710, | ||
6673 | 1,2009,716,1,1639, | ||
6674 | 2502,16,0,250,1, | ||
6675 | 2011,723,1,1467,729, | ||
6676 | 1,1584,2503,16,0, | ||
6677 | 250,1,52,2504,16, | ||
6678 | 0,250,1,381,2505, | ||
6679 | 16,0,250,1,346, | ||
6680 | 2506,16,0,250,1, | ||
6681 | 166,2507,16,0,250, | ||
6682 | 1,1257,2508,16,0, | ||
6683 | 250,1,1694,740,1, | ||
6684 | 1432,2509,16,0,250, | ||
6685 | 1,1152,2510,16,0, | ||
6686 | 250,1,1856,748,1, | ||
6687 | 1965,2511,16,0,250, | ||
6688 | 1,504,2512,16,0, | ||
6689 | 250,1,277,2513,16, | ||
6690 | 0,250,1,397,2514, | ||
6691 | 16,0,250,1,71, | ||
6692 | 2515,16,0,250,1, | ||
6693 | 1707,2516,16,0,250, | ||
6694 | 1,1817,760,1,1818, | ||
6695 | 2517,16,0,250,1, | ||
6696 | 463,2518,16,0,250, | ||
6697 | 1,76,2519,16,0, | ||
6698 | 250,1,1385,769,1, | ||
6699 | 79,2520,16,0,250, | ||
6700 | 1,182,2521,16,0, | ||
6701 | 250,1,299,2522,16, | ||
6702 | 0,250,1,2006,777, | ||
6703 | 1,1559,2523,16,0, | ||
6704 | 250,1,85,2524,16, | ||
6705 | 0,250,1,488,2525, | ||
6706 | 16,0,250,1,1396, | ||
6707 | 2526,16,0,250,1, | ||
6708 | 89,2527,16,0,250, | ||
6709 | 1,199,2528,16,0, | ||
6710 | 250,1,1292,2529,16, | ||
6711 | 0,250,1,422,2530, | ||
6712 | 16,0,250,1,97, | ||
6713 | 2531,16,0,250,1, | ||
6714 | 1469,2532,16,0,250, | ||
6715 | 1,1788,2533,16,0, | ||
6716 | 250,1,102,2534,16, | ||
6717 | 0,250,1,1847,794, | ||
6718 | 1,322,2535,16,0, | ||
6719 | 250,1,1327,2536,16, | ||
6720 | 0,250,1,2005,801, | ||
6721 | 1,1852,806,1,38, | ||
6722 | 2537,19,248,1,38, | ||
6723 | 2538,5,77,1,328, | ||
6724 | 1110,1,1333,2539,16, | ||
6725 | 0,246,1,1094,1241, | ||
6726 | 1,1438,2540,16,0, | ||
6727 | 246,1,223,1293,1, | ||
6728 | 428,2541,16,0,246, | ||
6729 | 1,118,1162,1,883, | ||
6730 | 1199,1,453,2542,16, | ||
6731 | 0,246,1,1001,994, | ||
6732 | 1,130,1205,1,1112, | ||
6733 | 1145,1,242,1320,1, | ||
6734 | 1769,2543,16,0,246, | ||
6735 | 1,463,1314,1,573, | ||
6736 | 1083,1,1228,2544,16, | ||
6737 | 0,246,1,1011,1089, | ||
6738 | 1,1121,2545,16,0, | ||
6739 | 246,1,143,1216,1, | ||
6740 | 352,1152,1,1674,2546, | ||
6741 | 16,0,246,1,40, | ||
6742 | 1002,1,477,988,1, | ||
6743 | 42,2547,16,0,246, | ||
6744 | 1,479,1330,1,44, | ||
6745 | 1018,1,373,1173,1, | ||
6746 | 47,1019,1,48,1025, | ||
6747 | 1,49,1031,1,50, | ||
6748 | 1036,1,51,1041,1, | ||
6749 | 1482,2548,16,0,246, | ||
6750 | 1,380,1193,1,157, | ||
6751 | 1236,1,476,1303,1, | ||
6752 | 371,1167,1,1366,2549, | ||
6753 | 16,0,246,1,375, | ||
6754 | 1178,1,1010,2550,16, | ||
6755 | 0,246,1,63,1053, | ||
6756 | 1,1263,2551,16,0, | ||
6757 | 246,1,283,1008,1, | ||
6758 | 66,1063,1,67,1100, | ||
6759 | 1,1158,2552,16,0, | ||
6760 | 246,1,69,1073,1, | ||
6761 | 70,1078,1,68,1068, | ||
6762 | 1,73,2553,16,0, | ||
6763 | 246,1,74,1095,1, | ||
6764 | 494,2554,16,0,246, | ||
6765 | 1,377,1183,1,172, | ||
6766 | 1252,1,1713,2555,16, | ||
6767 | 0,246,1,188,1275, | ||
6768 | 1,82,2556,16,0, | ||
6769 | 246,1,262,975,1, | ||
6770 | 504,956,1,305,1046, | ||
6771 | 1,1527,2557,16,0, | ||
6772 | 246,1,1565,2558,16, | ||
6773 | 0,246,1,403,2559, | ||
6774 | 16,0,246,1,827, | ||
6775 | 1188,1,1046,1105,1, | ||
6776 | 93,2560,16,0,246, | ||
6777 | 1,1402,2561,16,0, | ||
6778 | 246,1,205,1281,1, | ||
6779 | 2207,2562,16,0,246, | ||
6780 | 1,1298,2563,16,0, | ||
6781 | 246,1,1002,1058,1, | ||
6782 | 942,1288,1,1193,2564, | ||
6783 | 16,0,246,1,379, | ||
6784 | 1247,1,478,1325,1, | ||
6785 | 107,2565,16,0,246, | ||
6786 | 1,39,2566,19,234, | ||
6787 | 1,39,2567,5,77, | ||
6788 | 1,328,1110,1,1333, | ||
6789 | 2568,16,0,232,1, | ||
6790 | 1094,1241,1,1438,2569, | ||
6791 | 16,0,232,1,223, | ||
6792 | 1293,1,428,2570,16, | ||
6793 | 0,232,1,118,1162, | ||
6794 | 1,883,1199,1,453, | ||
6795 | 2571,16,0,232,1, | ||
6796 | 1001,994,1,130,1205, | ||
6797 | 1,1112,1145,1,242, | ||
6798 | 1320,1,1769,2572,16, | ||
6799 | 0,232,1,463,1314, | ||
6800 | 1,573,1083,1,1228, | ||
6801 | 2573,16,0,232,1, | ||
6802 | 1011,1089,1,1121,2574, | ||
6803 | 16,0,232,1,143, | ||
6804 | 1216,1,352,1152,1, | ||
6805 | 1674,2575,16,0,232, | ||
6806 | 1,40,1002,1,477, | ||
6807 | 988,1,42,2576,16, | ||
6808 | 0,232,1,479,1330, | ||
6809 | 1,44,1018,1,373, | ||
6810 | 1173,1,47,1019,1, | ||
6811 | 48,1025,1,49,1031, | ||
6812 | 1,50,1036,1,51, | ||
6813 | 1041,1,1482,2577,16, | ||
6814 | 0,232,1,380,1193, | ||
6815 | 1,157,1236,1,476, | ||
6816 | 1303,1,371,1167,1, | ||
6817 | 1366,2578,16,0,232, | ||
6818 | 1,375,1178,1,1010, | ||
6819 | 2579,16,0,232,1, | ||
6820 | 63,1053,1,1263,2580, | ||
6821 | 16,0,232,1,283, | ||
6822 | 1008,1,66,1063,1, | ||
6823 | 67,1100,1,1158,2581, | ||
6824 | 16,0,232,1,69, | ||
6825 | 1073,1,70,1078,1, | ||
6826 | 68,1068,1,73,2582, | ||
6827 | 16,0,232,1,74, | ||
6828 | 1095,1,494,2583,16, | ||
6829 | 0,232,1,377,1183, | ||
6830 | 1,172,1252,1,1713, | ||
6831 | 2584,16,0,232,1, | ||
6832 | 188,1275,1,82,2585, | ||
6833 | 16,0,232,1,262, | ||
6834 | 975,1,504,956,1, | ||
6835 | 305,1046,1,1527,2586, | ||
6836 | 16,0,232,1,1565, | ||
6837 | 2587,16,0,232,1, | ||
6838 | 403,2588,16,0,232, | ||
6839 | 1,827,1188,1,1046, | ||
6840 | 1105,1,93,2589,16, | ||
6841 | 0,232,1,1402,2590, | ||
6842 | 16,0,232,1,205, | ||
6843 | 1281,1,2207,2591,16, | ||
6844 | 0,232,1,1298,2592, | ||
6845 | 16,0,232,1,1002, | ||
6846 | 1058,1,942,1288,1, | ||
6847 | 1193,2593,16,0,232, | ||
6848 | 1,379,1247,1,478, | ||
6849 | 1325,1,107,2594,16, | ||
6850 | 0,232,1,40,2595, | ||
6851 | 19,224,1,40,2596, | ||
6852 | 5,77,1,328,1110, | ||
6853 | 1,1333,2597,16,0, | ||
6854 | 222,1,1094,1241,1, | ||
6855 | 1438,2598,16,0,222, | ||
6856 | 1,223,2599,16,0, | ||
6857 | 222,1,428,2600,16, | ||
6858 | 0,222,1,118,2601, | ||
6859 | 16,0,222,1,883, | ||
6860 | 2602,16,0,222,1, | ||
6861 | 453,2603,16,0,222, | ||
6862 | 1,1001,994,1,130, | ||
6863 | 2604,16,0,222,1, | ||
6864 | 1112,1145,1,242,2605, | ||
6865 | 16,0,222,1,1769, | ||
6866 | 2606,16,0,222,1, | ||
6867 | 463,1314,1,573,1083, | ||
6868 | 1,1228,2607,16,0, | ||
6869 | 222,1,1011,1089,1, | ||
6870 | 1121,2608,16,0,222, | ||
6871 | 1,143,2609,16,0, | ||
6872 | 222,1,352,1152,1, | ||
6873 | 1674,2610,16,0,222, | ||
6874 | 1,40,1002,1,477, | ||
6875 | 988,1,42,2611,16, | ||
6876 | 0,222,1,479,1330, | ||
6877 | 1,44,1018,1,373, | ||
6878 | 1173,1,47,1019,1, | ||
6879 | 48,1025,1,49,1031, | ||
6880 | 1,50,1036,1,51, | ||
6881 | 1041,1,1482,2612,16, | ||
6882 | 0,222,1,380,1193, | ||
6883 | 1,157,2613,16,0, | ||
6884 | 222,1,476,1303,1, | ||
6885 | 371,1167,1,1366,2614, | ||
6886 | 16,0,222,1,375, | ||
6887 | 1178,1,1010,2615,16, | ||
6888 | 0,222,1,63,1053, | ||
6889 | 1,1263,2616,16,0, | ||
6890 | 222,1,283,1008,1, | ||
6891 | 66,1063,1,67,1100, | ||
6892 | 1,1158,2617,16,0, | ||
6893 | 222,1,69,1073,1, | ||
6894 | 70,1078,1,68,1068, | ||
6895 | 1,73,2618,16,0, | ||
6896 | 222,1,74,1095,1, | ||
6897 | 494,2619,16,0,222, | ||
6898 | 1,377,1183,1,172, | ||
6899 | 2620,16,0,222,1, | ||
6900 | 1713,2621,16,0,222, | ||
6901 | 1,188,2622,16,0, | ||
6902 | 222,1,82,2623,16, | ||
6903 | 0,222,1,262,975, | ||
6904 | 1,504,956,1,305, | ||
6905 | 1046,1,1527,2624,16, | ||
6906 | 0,222,1,1565,2625, | ||
6907 | 16,0,222,1,403, | ||
6908 | 2626,16,0,222,1, | ||
6909 | 827,2627,16,0,222, | ||
6910 | 1,1046,1105,1,93, | ||
6911 | 2628,16,0,222,1, | ||
6912 | 1402,2629,16,0,222, | ||
6913 | 1,205,2630,16,0, | ||
6914 | 222,1,2207,2631,16, | ||
6915 | 0,222,1,1298,2632, | ||
6916 | 16,0,222,1,1002, | ||
6917 | 1058,1,942,1288,1, | ||
6918 | 1193,2633,16,0,222, | ||
6919 | 1,379,1247,1,478, | ||
6920 | 1325,1,107,2634,16, | ||
6921 | 0,222,1,41,2635, | ||
6922 | 19,194,1,41,2636, | ||
6923 | 5,77,1,328,1110, | ||
6924 | 1,1333,2637,16,0, | ||
6925 | 192,1,1094,1241,1, | ||
6926 | 1438,2638,16,0,192, | ||
6927 | 1,223,2639,16,0, | ||
6928 | 192,1,428,2640,16, | ||
6929 | 0,192,1,118,2641, | ||
6930 | 16,0,192,1,883, | ||
6931 | 2642,16,0,192,1, | ||
6932 | 453,2643,16,0,192, | ||
6933 | 1,1001,994,1,130, | ||
6934 | 2644,16,0,192,1, | ||
6935 | 1112,1145,1,242,2645, | ||
6936 | 16,0,192,1,1769, | ||
6937 | 2646,16,0,192,1, | ||
6938 | 463,1314,1,573,1083, | ||
6939 | 1,1228,2647,16,0, | ||
6940 | 192,1,1011,1089,1, | ||
6941 | 1121,2648,16,0,192, | ||
6942 | 1,143,2649,16,0, | ||
6943 | 192,1,352,1152,1, | ||
6944 | 1674,2650,16,0,192, | ||
6945 | 1,40,1002,1,477, | ||
6946 | 988,1,42,2651,16, | ||
6947 | 0,192,1,479,1330, | ||
6948 | 1,44,1018,1,373, | ||
6949 | 1173,1,47,1019,1, | ||
6950 | 48,1025,1,49,1031, | ||
6951 | 1,50,1036,1,51, | ||
6952 | 1041,1,1482,2652,16, | ||
6953 | 0,192,1,380,1193, | ||
6954 | 1,157,2653,16,0, | ||
6955 | 192,1,476,1303,1, | ||
6956 | 371,1167,1,1366,2654, | ||
6957 | 16,0,192,1,375, | ||
6958 | 1178,1,1010,2655,16, | ||
6959 | 0,192,1,63,1053, | ||
6960 | 1,1263,2656,16,0, | ||
6961 | 192,1,283,1008,1, | ||
6962 | 66,1063,1,67,1100, | ||
6963 | 1,1158,2657,16,0, | ||
6964 | 192,1,69,1073,1, | ||
6965 | 70,1078,1,68,1068, | ||
6966 | 1,73,2658,16,0, | ||
6967 | 192,1,74,1095,1, | ||
6968 | 494,2659,16,0,192, | ||
6969 | 1,377,1183,1,172, | ||
6970 | 2660,16,0,192,1, | ||
6971 | 1713,2661,16,0,192, | ||
6972 | 1,188,2662,16,0, | ||
6973 | 192,1,82,2663,16, | ||
6974 | 0,192,1,262,975, | ||
6975 | 1,504,956,1,305, | ||
6976 | 1046,1,1527,2664,16, | ||
6977 | 0,192,1,1565,2665, | ||
6978 | 16,0,192,1,403, | ||
6979 | 2666,16,0,192,1, | ||
6980 | 827,2667,16,0,192, | ||
6981 | 1,1046,1105,1,93, | ||
6982 | 2668,16,0,192,1, | ||
6983 | 1402,2669,16,0,192, | ||
6984 | 1,205,2670,16,0, | ||
6985 | 192,1,2207,2671,16, | ||
6986 | 0,192,1,1298,2672, | ||
6987 | 16,0,192,1,1002, | ||
6988 | 1058,1,942,1288,1, | ||
6989 | 1193,2673,16,0,192, | ||
6990 | 1,379,1247,1,478, | ||
6991 | 1325,1,107,2674,16, | ||
6992 | 0,192,1,42,2675, | ||
6993 | 19,243,1,42,2676, | ||
6994 | 5,27,1,1852,806, | ||
6995 | 1,1853,649,1,1817, | ||
6996 | 760,1,1818,2677,16, | ||
6997 | 0,241,1,1856,748, | ||
6998 | 1,2005,801,1,1858, | ||
6999 | 667,1,1637,710,1, | ||
7000 | 1860,672,1,2009,716, | ||
7001 | 1,1788,2678,16,0, | ||
7002 | 241,1,1863,682,1, | ||
7003 | 1385,769,1,2006,777, | ||
7004 | 1,1611,2679,16,0, | ||
7005 | 241,1,1760,688,1, | ||
7006 | 2011,723,1,1467,729, | ||
7007 | 1,1639,2680,16,0, | ||
7008 | 241,1,1854,655,1, | ||
7009 | 1855,660,1,1694,740, | ||
7010 | 1,1732,2681,16,0, | ||
7011 | 241,1,1965,2682,16, | ||
7012 | 0,241,1,32,2683, | ||
7013 | 16,0,241,1,1847, | ||
7014 | 794,1,1862,677,1, | ||
7015 | 43,2684,19,283,1, | ||
7016 | 43,2685,5,18,1, | ||
7017 | 1852,806,1,1853,649, | ||
7018 | 1,1817,2686,16,0, | ||
7019 | 281,1,1855,660,1, | ||
7020 | 1856,748,1,1858,667, | ||
7021 | 1,1637,710,1,1860, | ||
7022 | 672,1,1862,677,1, | ||
7023 | 1863,682,1,1385,769, | ||
7024 | 1,1760,688,1,1467, | ||
7025 | 729,1,1854,655,1, | ||
7026 | 1694,740,1,2011,723, | ||
7027 | 1,1847,794,1,2006, | ||
7028 | 777,1,44,2687,19, | ||
7029 | 597,1,44,2688,5, | ||
7030 | 27,1,1852,806,1, | ||
7031 | 1853,649,1,1817,760, | ||
7032 | 1,1818,2689,16,0, | ||
7033 | 595,1,1856,748,1, | ||
7034 | 2005,801,1,1858,667, | ||
7035 | 1,1637,710,1,1860, | ||
7036 | 672,1,2009,716,1, | ||
7037 | 1788,2690,16,0,595, | ||
7038 | 1,1863,682,1,1385, | ||
7039 | 769,1,2006,777,1, | ||
7040 | 1611,2691,16,0,595, | ||
7041 | 1,1760,688,1,2011, | ||
7042 | 723,1,1467,729,1, | ||
7043 | 1639,2692,16,0,595, | ||
7044 | 1,1854,655,1,1855, | ||
7045 | 660,1,1694,740,1, | ||
7046 | 1732,2693,16,0,595, | ||
7047 | 1,1965,2694,16,0, | ||
7048 | 595,1,32,2695,16, | ||
7049 | 0,595,1,1847,794, | ||
7050 | 1,1862,677,1,45, | ||
7051 | 2696,19,179,1,45, | ||
7052 | 2697,5,28,1,1853, | ||
7053 | 649,1,1854,655,1, | ||
7054 | 1637,710,1,1856,748, | ||
7055 | 1,1639,2698,16,0, | ||
7056 | 177,1,1858,667,1, | ||
7057 | 1860,672,1,1862,677, | ||
7058 | 1,1863,682,1,1760, | ||
7059 | 688,1,1666,2699,16, | ||
7060 | 0,607,1,32,2700, | ||
7061 | 16,0,177,1,2005, | ||
7062 | 801,1,1788,2701,16, | ||
7063 | 0,177,1,2009,716, | ||
7064 | 1,2011,723,1,1467, | ||
7065 | 729,1,1694,740,1, | ||
7066 | 1855,660,1,2006,777, | ||
7067 | 1,1965,2702,16,0, | ||
7068 | 177,1,1817,760,1, | ||
7069 | 1818,2703,16,0,177, | ||
7070 | 1,1385,769,1,1611, | ||
7071 | 2704,16,0,177,1, | ||
7072 | 1732,2705,16,0,177, | ||
7073 | 1,1847,794,1,1852, | ||
7074 | 806,1,46,2706,19, | ||
7075 | 423,1,46,2707,5, | ||
7076 | 27,1,1852,806,1, | ||
7077 | 1853,649,1,1817,760, | ||
7078 | 1,1818,2708,16,0, | ||
7079 | 421,1,1856,748,1, | ||
7080 | 2005,801,1,1858,667, | ||
7081 | 1,1637,710,1,1860, | ||
7082 | 672,1,2009,716,1, | ||
7083 | 1788,2709,16,0,421, | ||
7084 | 1,1863,682,1,1385, | ||
7085 | 769,1,2006,777,1, | ||
7086 | 1611,2710,16,0,421, | ||
7087 | 1,1760,688,1,2011, | ||
7088 | 723,1,1467,729,1, | ||
7089 | 1639,2711,16,0,421, | ||
7090 | 1,1854,655,1,1855, | ||
7091 | 660,1,1694,740,1, | ||
7092 | 1732,2712,16,0,421, | ||
7093 | 1,1965,2713,16,0, | ||
7094 | 421,1,32,2714,16, | ||
7095 | 0,421,1,1847,794, | ||
7096 | 1,1862,677,1,47, | ||
7097 | 2715,19,305,1,47, | ||
7098 | 2716,5,19,1,0, | ||
7099 | 2717,16,0,527,1, | ||
7100 | 2258,2718,17,2719,15, | ||
7101 | 2720,4,36,37,0, | ||
7102 | 71,0,108,0,111, | ||
7103 | 0,98,0,97,0, | ||
7104 | 108,0,68,0,101, | ||
7105 | 0,102,0,105,0, | ||
7106 | 110,0,105,0,116, | ||
7107 | 0,105,0,111,0, | ||
7108 | 110,0,115,0,1, | ||
7109 | -1,1,5,2721,20, | ||
7110 | 2722,4,38,71,0, | ||
7111 | 108,0,111,0,98, | ||
7112 | 0,97,0,108,0, | ||
7113 | 68,0,101,0,102, | ||
7114 | 0,105,0,110,0, | ||
7115 | 105,0,116,0,105, | ||
7116 | 0,111,0,110,0, | ||
7117 | 115,0,95,0,51, | ||
7118 | 0,1,141,1,3, | ||
7119 | 1,2,1,1,2723, | ||
7120 | 22,1,5,1,2259, | ||
7121 | 2724,17,2725,15,2720, | ||
7122 | 1,-1,1,5,2726, | ||
7123 | 20,2727,4,38,71, | ||
7124 | 0,108,0,111,0, | ||
7125 | 98,0,97,0,108, | ||
7126 | 0,68,0,101,0, | ||
7127 | 102,0,105,0,110, | ||
7128 | 0,105,0,116,0, | ||
7129 | 105,0,111,0,110, | ||
7130 | 0,115,0,95,0, | ||
7131 | 49,0,1,139,1, | ||
7132 | 3,1,2,1,1, | ||
7133 | 2728,22,1,3,1, | ||
7134 | 2226,2729,17,2730,15, | ||
7135 | 2731,4,52,37,0, | ||
7136 | 71,0,108,0,111, | ||
7137 | 0,98,0,97,0, | ||
7138 | 108,0,86,0,97, | ||
7139 | 0,114,0,105,0, | ||
7140 | 97,0,98,0,108, | ||
7141 | 0,101,0,68,0, | ||
7142 | 101,0,99,0,108, | ||
7143 | 0,97,0,114,0, | ||
7144 | 97,0,116,0,105, | ||
7145 | 0,111,0,110,0, | ||
7146 | 1,-1,1,5,2732, | ||
7147 | 20,2733,4,54,71, | ||
7148 | 0,108,0,111,0, | ||
7149 | 98,0,97,0,108, | ||
7150 | 0,86,0,97,0, | ||
7151 | 114,0,105,0,97, | ||
7152 | 0,98,0,108,0, | ||
7153 | 101,0,68,0,101, | ||
7154 | 0,99,0,108,0, | ||
7155 | 97,0,114,0,97, | ||
7156 | 0,116,0,105,0, | ||
7157 | 111,0,110,0,95, | ||
7158 | 0,50,0,1,144, | ||
7159 | 1,3,1,5,1, | ||
7160 | 4,2734,22,1,8, | ||
7161 | 1,2006,777,1,2198, | ||
7162 | 2735,17,2736,15,2737, | ||
7163 | 4,50,37,0,71, | ||
7164 | 0,108,0,111,0, | ||
7165 | 98,0,97,0,108, | ||
7166 | 0,70,0,117,0, | ||
7167 | 110,0,99,0,116, | ||
7168 | 0,105,0,111,0, | ||
7169 | 110,0,68,0,101, | ||
7170 | 0,102,0,105,0, | ||
7171 | 110,0,105,0,116, | ||
7172 | 0,105,0,111,0, | ||
7173 | 110,0,1,-1,1, | ||
7174 | 5,2738,20,2739,4, | ||
7175 | 52,71,0,108,0, | ||
7176 | 111,0,98,0,97, | ||
7177 | 0,108,0,70,0, | ||
7178 | 117,0,110,0,99, | ||
7179 | 0,116,0,105,0, | ||
7180 | 111,0,110,0,68, | ||
7181 | 0,101,0,102,0, | ||
7182 | 105,0,110,0,105, | ||
7183 | 0,116,0,105,0, | ||
7184 | 111,0,110,0,95, | ||
7185 | 0,49,0,1,145, | ||
7186 | 1,3,1,6,1, | ||
7187 | 5,2740,22,1,9, | ||
7188 | 1,2011,723,1,2013, | ||
7189 | 2741,17,2742,15,2737, | ||
7190 | 1,-1,1,5,2743, | ||
7191 | 20,2744,4,52,71, | ||
7192 | 0,108,0,111,0, | ||
7193 | 98,0,97,0,108, | ||
7194 | 0,70,0,117,0, | ||
7195 | 110,0,99,0,116, | ||
7196 | 0,105,0,111,0, | ||
7197 | 110,0,68,0,101, | ||
7198 | 0,102,0,105,0, | ||
7199 | 110,0,105,0,116, | ||
7200 | 0,105,0,111,0, | ||
7201 | 110,0,95,0,50, | ||
7202 | 0,1,146,1,3, | ||
7203 | 1,7,1,6,2745, | ||
7204 | 22,1,10,1,2237, | ||
7205 | 2746,17,2747,15,2731, | ||
7206 | 1,-1,1,5,2748, | ||
7207 | 20,2749,4,54,71, | ||
7208 | 0,108,0,111,0, | ||
7209 | 98,0,97,0,108, | ||
7210 | 0,86,0,97,0, | ||
7211 | 114,0,105,0,97, | ||
7212 | 0,98,0,108,0, | ||
7213 | 101,0,68,0,101, | ||
7214 | 0,99,0,108,0, | ||
7215 | 97,0,114,0,97, | ||
7216 | 0,116,0,105,0, | ||
7217 | 111,0,110,0,95, | ||
7218 | 0,49,0,1,143, | ||
7219 | 1,3,1,3,1, | ||
7220 | 2,2750,22,1,7, | ||
7221 | 1,2238,2751,16,0, | ||
7222 | 527,1,1849,2752,16, | ||
7223 | 0,303,1,2177,642, | ||
7224 | 1,2249,2753,16,0, | ||
7225 | 527,1,2179,2754,16, | ||
7226 | 0,527,1,2103,620, | ||
7227 | 1,2182,632,1,2183, | ||
7228 | 626,1,2257,2755,17, | ||
7229 | 2756,15,2720,1,-1, | ||
7230 | 1,5,2757,20,2758, | ||
7231 | 4,38,71,0,108, | ||
7232 | 0,111,0,98,0, | ||
7233 | 97,0,108,0,68, | ||
7234 | 0,101,0,102,0, | ||
7235 | 105,0,110,0,105, | ||
7236 | 0,116,0,105,0, | ||
7237 | 111,0,110,0,115, | ||
7238 | 0,95,0,50,0, | ||
7239 | 1,140,1,3,1, | ||
7240 | 3,1,2,2759,22, | ||
7241 | 1,4,1,2256,2760, | ||
7242 | 17,2761,15,2720,1, | ||
7243 | -1,1,5,2762,20, | ||
7244 | 2763,4,38,71,0, | ||
7245 | 108,0,111,0,98, | ||
7246 | 0,97,0,108,0, | ||
7247 | 68,0,101,0,102, | ||
7248 | 0,105,0,110,0, | ||
7249 | 105,0,116,0,105, | ||
7250 | 0,111,0,110,0, | ||
7251 | 115,0,95,0,52, | ||
7252 | 0,1,142,1,3, | ||
7253 | 1,3,1,2,2764, | ||
7254 | 22,1,6,1,48, | ||
7255 | 2765,19,353,1,48, | ||
7256 | 2766,5,43,1,0, | ||
7257 | 2767,16,0,399,1, | ||
7258 | 1854,655,1,1855,660, | ||
7259 | 1,1856,748,1,1694, | ||
7260 | 740,1,1858,667,1, | ||
7261 | 1860,672,1,1862,677, | ||
7262 | 1,1863,682,1,1760, | ||
7263 | 688,1,2198,2735,1, | ||
7264 | 2179,2768,16,0,399, | ||
7265 | 1,32,2769,16,0, | ||
7266 | 351,1,2183,626,1, | ||
7267 | 2257,2755,1,2005,801, | ||
7268 | 1,1788,2770,16,0, | ||
7269 | 351,1,2226,2729,1, | ||
7270 | 2009,716,1,2011,723, | ||
7271 | 1,1467,729,1,2013, | ||
7272 | 2741,1,1639,2771,16, | ||
7273 | 0,351,1,1637,710, | ||
7274 | 1,2237,2746,1,2238, | ||
7275 | 2772,16,0,399,1, | ||
7276 | 1853,649,1,2006,777, | ||
7277 | 1,1965,2773,16,0, | ||
7278 | 351,1,2249,2774,16, | ||
7279 | 0,399,1,2182,632, | ||
7280 | 1,1817,760,1,1818, | ||
7281 | 2775,16,0,351,1, | ||
7282 | 2256,2760,1,1385,769, | ||
7283 | 1,2258,2718,1,2259, | ||
7284 | 2724,1,1611,2776,16, | ||
7285 | 0,351,1,1732,2777, | ||
7286 | 16,0,351,1,2103, | ||
7287 | 620,1,1847,794,1, | ||
7288 | 2177,642,1,1852,806, | ||
7289 | 1,50,2778,19,375, | ||
7290 | 1,50,2779,5,27, | ||
7291 | 1,1852,806,1,1853, | ||
7292 | 649,1,1817,760,1, | ||
7293 | 1818,2780,16,0,373, | ||
7294 | 1,1856,748,1,2005, | ||
7295 | 801,1,1858,667,1, | ||
7296 | 1637,710,1,1860,672, | ||
7297 | 1,2009,716,1,1788, | ||
7298 | 2781,16,0,373,1, | ||
7299 | 1863,682,1,1385,769, | ||
7300 | 1,2006,777,1,1611, | ||
7301 | 2782,16,0,373,1, | ||
7302 | 1760,688,1,2011,723, | ||
7303 | 1,1467,729,1,1639, | ||
7304 | 2783,16,0,373,1, | ||
7305 | 1854,655,1,1855,660, | ||
7306 | 1,1694,740,1,1732, | ||
7307 | 2784,16,0,373,1, | ||
7308 | 1965,2785,16,0,373, | ||
7309 | 1,32,2786,16,0, | ||
7310 | 373,1,1847,794,1, | ||
7311 | 1862,677,1,51,2787, | ||
7312 | 19,127,1,51,2788, | ||
7313 | 5,45,1,0,2789, | ||
7314 | 16,0,125,1,1854, | ||
7315 | 655,1,1855,660,1, | ||
7316 | 1856,748,1,1694,740, | ||
7317 | 1,1858,667,1,1860, | ||
7318 | 672,1,1862,677,1, | ||
7319 | 10,2790,16,0,125, | ||
7320 | 1,1385,769,1,1760, | ||
7321 | 688,1,2198,2735,1, | ||
7322 | 2238,2791,16,0,125, | ||
7323 | 1,21,2792,16,0, | ||
7324 | 125,1,32,2793,16, | ||
7325 | 0,125,1,1514,2794, | ||
7326 | 16,0,125,1,2005, | ||
7327 | 801,1,1788,2795,16, | ||
7328 | 0,125,1,2226,2729, | ||
7329 | 1,2009,716,1,2011, | ||
7330 | 723,1,1467,729,1, | ||
7331 | 2013,2741,1,52,2796, | ||
7332 | 16,0,125,1,1639, | ||
7333 | 2797,16,0,125,1, | ||
7334 | 1637,710,1,2237,2746, | ||
7335 | 1,1584,2798,16,0, | ||
7336 | 125,1,1853,649,1, | ||
7337 | 2006,777,1,1965,2799, | ||
7338 | 16,0,125,1,1863, | ||
7339 | 682,1,1817,760,1, | ||
7340 | 1818,2800,16,0,125, | ||
7341 | 1,2185,2801,16,0, | ||
7342 | 125,1,2256,2760,1, | ||
7343 | 2257,2755,1,2258,2718, | ||
7344 | 1,2259,2724,1,1611, | ||
7345 | 2802,16,0,125,1, | ||
7346 | 2052,2803,16,0,125, | ||
7347 | 1,1732,2804,16,0, | ||
7348 | 125,1,1469,2805,16, | ||
7349 | 0,125,1,1847,794, | ||
7350 | 1,1852,806,1,52, | ||
7351 | 2806,19,124,1,52, | ||
7352 | 2807,5,45,1,0, | ||
7353 | 2808,16,0,122,1, | ||
7354 | 1854,655,1,1855,660, | ||
7355 | 1,1856,748,1,1694, | ||
7356 | 740,1,1858,667,1, | ||
7357 | 1860,672,1,1862,677, | ||
7358 | 1,10,2809,16,0, | ||
7359 | 122,1,1385,769,1, | ||
7360 | 1760,688,1,2198,2735, | ||
7361 | 1,2238,2810,16,0, | ||
7362 | 122,1,21,2811,16, | ||
7363 | 0,122,1,32,2812, | ||
7364 | 16,0,122,1,1514, | ||
7365 | 2813,16,0,122,1, | ||
7366 | 2005,801,1,1788,2814, | ||
7367 | 16,0,122,1,2226, | ||
7368 | 2729,1,2009,716,1, | ||
7369 | 2011,723,1,1467,729, | ||
7370 | 1,2013,2741,1,52, | ||
7371 | 2815,16,0,122,1, | ||
7372 | 1639,2816,16,0,122, | ||
7373 | 1,1637,710,1,2237, | ||
7374 | 2746,1,1584,2817,16, | ||
7375 | 0,122,1,1853,649, | ||
7376 | 1,2006,777,1,1965, | ||
7377 | 2818,16,0,122,1, | ||
7378 | 1863,682,1,1817,760, | ||
7379 | 1,1818,2819,16,0, | ||
7380 | 122,1,2185,2820,16, | ||
7381 | 0,122,1,2256,2760, | ||
7382 | 1,2257,2755,1,2258, | ||
7383 | 2718,1,2259,2724,1, | ||
7384 | 1611,2821,16,0,122, | ||
7385 | 1,2052,2822,16,0, | ||
7386 | 122,1,1732,2823,16, | ||
7387 | 0,122,1,1469,2824, | ||
7388 | 16,0,122,1,1847, | ||
7389 | 794,1,1852,806,1, | ||
7390 | 53,2825,19,121,1, | ||
7391 | 53,2826,5,45,1, | ||
7392 | 0,2827,16,0,119, | ||
7393 | 1,1854,655,1,1855, | ||
7394 | 660,1,1856,748,1, | ||
7395 | 1694,740,1,1858,667, | ||
7396 | 1,1860,672,1,1862, | ||
7397 | 677,1,10,2828,16, | ||
7398 | 0,119,1,1385,769, | ||
7399 | 1,1760,688,1,2198, | ||
7400 | 2735,1,2238,2829,16, | ||
7401 | 0,119,1,21,2830, | ||
7402 | 16,0,119,1,32, | ||
7403 | 2831,16,0,119,1, | ||
7404 | 1514,2832,16,0,119, | ||
7405 | 1,2005,801,1,1788, | ||
7406 | 2833,16,0,119,1, | ||
7407 | 2226,2729,1,2009,716, | ||
7408 | 1,2011,723,1,1467, | ||
7409 | 729,1,2013,2741,1, | ||
7410 | 52,2834,16,0,119, | ||
7411 | 1,1639,2835,16,0, | ||
7412 | 119,1,1637,710,1, | ||
7413 | 2237,2746,1,1584,2836, | ||
7414 | 16,0,119,1,1853, | ||
7415 | 649,1,2006,777,1, | ||
7416 | 1965,2837,16,0,119, | ||
7417 | 1,1863,682,1,1817, | ||
7418 | 760,1,1818,2838,16, | ||
7419 | 0,119,1,2185,2839, | ||
7420 | 16,0,119,1,2256, | ||
7421 | 2760,1,2257,2755,1, | ||
7422 | 2258,2718,1,2259,2724, | ||
7423 | 1,1611,2840,16,0, | ||
7424 | 119,1,2052,2841,16, | ||
7425 | 0,119,1,1732,2842, | ||
7426 | 16,0,119,1,1469, | ||
7427 | 2843,16,0,119,1, | ||
7428 | 1847,794,1,1852,806, | ||
7429 | 1,54,2844,19,118, | ||
7430 | 1,54,2845,5,45, | ||
7431 | 1,0,2846,16,0, | ||
7432 | 116,1,1854,655,1, | ||
7433 | 1855,660,1,1856,748, | ||
7434 | 1,1694,740,1,1858, | ||
7435 | 667,1,1860,672,1, | ||
7436 | 1862,677,1,10,2847, | ||
7437 | 16,0,116,1,1385, | ||
7438 | 769,1,1760,688,1, | ||
7439 | 2198,2735,1,2238,2848, | ||
7440 | 16,0,116,1,21, | ||
7441 | 2849,16,0,116,1, | ||
7442 | 32,2850,16,0,116, | ||
7443 | 1,1514,2851,16,0, | ||
7444 | 116,1,2005,801,1, | ||
7445 | 1788,2852,16,0,116, | ||
7446 | 1,2226,2729,1,2009, | ||
7447 | 716,1,2011,723,1, | ||
7448 | 1467,729,1,2013,2741, | ||
7449 | 1,52,2853,16,0, | ||
7450 | 116,1,1639,2854,16, | ||
7451 | 0,116,1,1637,710, | ||
7452 | 1,2237,2746,1,1584, | ||
7453 | 2855,16,0,116,1, | ||
7454 | 1853,649,1,2006,777, | ||
7455 | 1,1965,2856,16,0, | ||
7456 | 116,1,1863,682,1, | ||
7457 | 1817,760,1,1818,2857, | ||
7458 | 16,0,116,1,2185, | ||
7459 | 2858,16,0,116,1, | ||
7460 | 2256,2760,1,2257,2755, | ||
7461 | 1,2258,2718,1,2259, | ||
7462 | 2724,1,1611,2859,16, | ||
7463 | 0,116,1,2052,2860, | ||
7464 | 16,0,116,1,1732, | ||
7465 | 2861,16,0,116,1, | ||
7466 | 1469,2862,16,0,116, | ||
7467 | 1,1847,794,1,1852, | ||
7468 | 806,1,55,2863,19, | ||
7469 | 115,1,55,2864,5, | ||
7470 | 45,1,0,2865,16, | ||
7471 | 0,113,1,1854,655, | ||
7472 | 1,1855,660,1,1856, | ||
7473 | 748,1,1694,740,1, | ||
7474 | 1858,667,1,1860,672, | ||
7475 | 1,1862,677,1,10, | ||
7476 | 2866,16,0,113,1, | ||
7477 | 1385,769,1,1760,688, | ||
7478 | 1,2198,2735,1,2238, | ||
7479 | 2867,16,0,113,1, | ||
7480 | 21,2868,16,0,113, | ||
7481 | 1,32,2869,16,0, | ||
7482 | 113,1,1514,2870,16, | ||
7483 | 0,113,1,2005,801, | ||
7484 | 1,1788,2871,16,0, | ||
7485 | 113,1,2226,2729,1, | ||
7486 | 2009,716,1,2011,723, | ||
7487 | 1,1467,729,1,2013, | ||
7488 | 2741,1,52,2872,16, | ||
7489 | 0,113,1,1639,2873, | ||
7490 | 16,0,113,1,1637, | ||
7491 | 710,1,2237,2746,1, | ||
7492 | 1584,2874,16,0,113, | ||
7493 | 1,1853,649,1,2006, | ||
7494 | 777,1,1965,2875,16, | ||
7495 | 0,113,1,1863,682, | ||
7496 | 1,1817,760,1,1818, | ||
7497 | 2876,16,0,113,1, | ||
7498 | 2185,2877,16,0,113, | ||
7499 | 1,2256,2760,1,2257, | ||
7500 | 2755,1,2258,2718,1, | ||
7501 | 2259,2724,1,1611,2878, | ||
7502 | 16,0,113,1,2052, | ||
7503 | 2879,16,0,113,1, | ||
7504 | 1732,2880,16,0,113, | ||
7505 | 1,1469,2881,16,0, | ||
7506 | 113,1,1847,794,1, | ||
7507 | 1852,806,1,56,2882, | ||
7508 | 19,112,1,56,2883, | ||
7509 | 5,45,1,0,2884, | ||
7510 | 16,0,110,1,1854, | ||
7511 | 655,1,1855,660,1, | ||
7512 | 1856,748,1,1694,740, | ||
7513 | 1,1858,667,1,1860, | ||
7514 | 672,1,1862,677,1, | ||
7515 | 10,2885,16,0,110, | ||
7516 | 1,1385,769,1,1760, | ||
7517 | 688,1,2198,2735,1, | ||
7518 | 2238,2886,16,0,110, | ||
7519 | 1,21,2887,16,0, | ||
7520 | 110,1,32,2888,16, | ||
7521 | 0,110,1,1514,2889, | ||
7522 | 16,0,110,1,2005, | ||
7523 | 801,1,1788,2890,16, | ||
7524 | 0,110,1,2226,2729, | ||
7525 | 1,2009,716,1,2011, | ||
7526 | 723,1,1467,729,1, | ||
7527 | 2013,2741,1,52,2891, | ||
7528 | 16,0,110,1,1639, | ||
7529 | 2892,16,0,110,1, | ||
7530 | 1637,710,1,2237,2746, | ||
7531 | 1,1584,2893,16,0, | ||
7532 | 110,1,1853,649,1, | ||
7533 | 2006,777,1,1965,2894, | ||
7534 | 16,0,110,1,1863, | ||
7535 | 682,1,1817,760,1, | ||
7536 | 1818,2895,16,0,110, | ||
7537 | 1,2185,2896,16,0, | ||
7538 | 110,1,2256,2760,1, | ||
7539 | 2257,2755,1,2258,2718, | ||
7540 | 1,2259,2724,1,1611, | ||
7541 | 2897,16,0,110,1, | ||
7542 | 2052,2898,16,0,110, | ||
7543 | 1,1732,2899,16,0, | ||
7544 | 110,1,1469,2900,16, | ||
7545 | 0,110,1,1847,794, | ||
7546 | 1,1852,806,1,57, | ||
7547 | 2901,19,109,1,57, | ||
7548 | 2902,5,45,1,0, | ||
7549 | 2903,16,0,107,1, | ||
7550 | 1854,655,1,1855,660, | ||
7551 | 1,1856,748,1,1694, | ||
7552 | 740,1,1858,667,1, | ||
7553 | 1860,672,1,1862,677, | ||
7554 | 1,10,2904,16,0, | ||
7555 | 107,1,1385,769,1, | ||
7556 | 1760,688,1,2198,2735, | ||
7557 | 1,2238,2905,16,0, | ||
7558 | 107,1,21,2906,16, | ||
7559 | 0,107,1,32,2907, | ||
7560 | 16,0,107,1,1514, | ||
7561 | 2908,16,0,107,1, | ||
7562 | 2005,801,1,1788,2909, | ||
7563 | 16,0,107,1,2226, | ||
7564 | 2729,1,2009,716,1, | ||
7565 | 2011,723,1,1467,729, | ||
7566 | 1,2013,2741,1,52, | ||
7567 | 2910,16,0,107,1, | ||
7568 | 1639,2911,16,0,107, | ||
7569 | 1,1637,710,1,2237, | ||
7570 | 2746,1,1584,2912,16, | ||
7571 | 0,107,1,1853,649, | ||
7572 | 1,2006,777,1,1965, | ||
7573 | 2913,16,0,107,1, | ||
7574 | 1863,682,1,1817,760, | ||
7575 | 1,1818,2914,16,0, | ||
7576 | 107,1,2185,2915,16, | ||
7577 | 0,107,1,2256,2760, | ||
7578 | 1,2257,2755,1,2258, | ||
7579 | 2718,1,2259,2724,1, | ||
7580 | 1611,2916,16,0,107, | ||
7581 | 1,2052,2917,16,0, | ||
7582 | 107,1,1732,2918,16, | ||
7583 | 0,107,1,1469,2919, | ||
7584 | 16,0,107,1,1847, | ||
7585 | 794,1,1852,806,1, | ||
7586 | 58,2920,19,237,1, | ||
7587 | 58,2921,5,9,1, | ||
7588 | 2006,777,1,2011,723, | ||
7589 | 1,2017,2922,16,0, | ||
7590 | 235,1,2065,1364,1, | ||
7591 | 2067,2923,16,0,235, | ||
7592 | 1,2141,2924,16,0, | ||
7593 | 235,1,2102,1351,1, | ||
7594 | 2104,1359,1,2106,2925, | ||
7595 | 16,0,235,1,59, | ||
7596 | 2926,19,589,1,59, | ||
7597 | 2927,5,9,1,2006, | ||
7598 | 777,1,2011,723,1, | ||
7599 | 2017,2928,16,0,587, | ||
7600 | 1,2065,1364,1,2067, | ||
7601 | 2929,16,0,587,1, | ||
7602 | 2141,2930,16,0,587, | ||
7603 | 1,2102,1351,1,2104, | ||
7604 | 1359,1,2106,2931,16, | ||
7605 | 0,587,1,60,2932, | ||
7606 | 19,586,1,60,2933, | ||
7607 | 5,9,1,2006,777, | ||
7608 | 1,2011,723,1,2017, | ||
7609 | 2934,16,0,584,1, | ||
7610 | 2065,1364,1,2067,2935, | ||
7611 | 16,0,584,1,2141, | ||
7612 | 2936,16,0,584,1, | ||
7613 | 2102,1351,1,2104,1359, | ||
7614 | 1,2106,2937,16,0, | ||
7615 | 584,1,61,2938,19, | ||
7616 | 546,1,61,2939,5, | ||
7617 | 9,1,2006,777,1, | ||
7618 | 2011,723,1,2017,2940, | ||
7619 | 16,0,544,1,2065, | ||
7620 | 1364,1,2067,2941,16, | ||
7621 | 0,544,1,2141,2942, | ||
7622 | 16,0,544,1,2102, | ||
7623 | 1351,1,2104,1359,1, | ||
7624 | 2106,2943,16,0,544, | ||
7625 | 1,62,2944,19,543, | ||
7626 | 1,62,2945,5,9, | ||
7627 | 1,2006,777,1,2011, | ||
7628 | 723,1,2017,2946,16, | ||
7629 | 0,541,1,2065,1364, | ||
7630 | 1,2067,2947,16,0, | ||
7631 | 541,1,2141,2948,16, | ||
7632 | 0,541,1,2102,1351, | ||
7633 | 1,2104,1359,1,2106, | ||
7634 | 2949,16,0,541,1, | ||
7635 | 63,2950,19,540,1, | ||
7636 | 63,2951,5,9,1, | ||
7637 | 2006,777,1,2011,723, | ||
7638 | 1,2017,2952,16,0, | ||
7639 | 538,1,2065,1364,1, | ||
7640 | 2067,2953,16,0,538, | ||
7641 | 1,2141,2954,16,0, | ||
7642 | 538,1,2102,1351,1, | ||
7643 | 2104,1359,1,2106,2955, | ||
7644 | 16,0,538,1,64, | ||
7645 | 2956,19,537,1,64, | ||
7646 | 2957,5,9,1,2006, | ||
7647 | 777,1,2011,723,1, | ||
7648 | 2017,2958,16,0,535, | ||
7649 | 1,2065,1364,1,2067, | ||
7650 | 2959,16,0,535,1, | ||
7651 | 2141,2960,16,0,535, | ||
7652 | 1,2102,1351,1,2104, | ||
7653 | 1359,1,2106,2961,16, | ||
7654 | 0,535,1,65,2962, | ||
7655 | 19,534,1,65,2963, | ||
7656 | 5,9,1,2006,777, | ||
7657 | 1,2011,723,1,2017, | ||
7658 | 2964,16,0,532,1, | ||
7659 | 2065,1364,1,2067,2965, | ||
7660 | 16,0,532,1,2141, | ||
7661 | 2966,16,0,532,1, | ||
7662 | 2102,1351,1,2104,1359, | ||
7663 | 1,2106,2967,16,0, | ||
7664 | 532,1,66,2968,19, | ||
7665 | 531,1,66,2969,5, | ||
7666 | 9,1,2006,777,1, | ||
7667 | 2011,723,1,2017,2970, | ||
7668 | 16,0,529,1,2065, | ||
7669 | 1364,1,2067,2971,16, | ||
7670 | 0,529,1,2141,2972, | ||
7671 | 16,0,529,1,2102, | ||
7672 | 1351,1,2104,1359,1, | ||
7673 | 2106,2973,16,0,529, | ||
7674 | 1,67,2974,19,467, | ||
7675 | 1,67,2975,5,9, | ||
7676 | 1,2006,777,1,2011, | ||
7677 | 723,1,2017,2976,16, | ||
7678 | 0,465,1,2065,1364, | ||
7679 | 1,2067,2977,16,0, | ||
7680 | 465,1,2141,2978,16, | ||
7681 | 0,465,1,2102,1351, | ||
7682 | 1,2104,1359,1,2106, | ||
7683 | 2979,16,0,465,1, | ||
7684 | 68,2980,19,464,1, | ||
7685 | 68,2981,5,9,1, | ||
7686 | 2006,777,1,2011,723, | ||
7687 | 1,2017,2982,16,0, | ||
7688 | 462,1,2065,1364,1, | ||
7689 | 2067,2983,16,0,462, | ||
7690 | 1,2141,2984,16,0, | ||
7691 | 462,1,2102,1351,1, | ||
7692 | 2104,1359,1,2106,2985, | ||
7693 | 16,0,462,1,69, | ||
7694 | 2986,19,526,1,69, | ||
7695 | 2987,5,9,1,2006, | ||
7696 | 777,1,2011,723,1, | ||
7697 | 2017,2988,16,0,524, | ||
7698 | 1,2065,1364,1,2067, | ||
7699 | 2989,16,0,524,1, | ||
7700 | 2141,2990,16,0,524, | ||
7701 | 1,2102,1351,1,2104, | ||
7702 | 1359,1,2106,2991,16, | ||
7703 | 0,524,1,70,2992, | ||
7704 | 19,460,1,70,2993, | ||
7705 | 5,9,1,2006,777, | ||
7706 | 1,2011,723,1,2017, | ||
7707 | 2994,16,0,458,1, | ||
7708 | 2065,1364,1,2067,2995, | ||
7709 | 16,0,458,1,2141, | ||
7710 | 2996,16,0,458,1, | ||
7711 | 2102,1351,1,2104,1359, | ||
7712 | 1,2106,2997,16,0, | ||
7713 | 458,1,71,2998,19, | ||
7714 | 457,1,71,2999,5, | ||
7715 | 9,1,2006,777,1, | ||
7716 | 2011,723,1,2017,3000, | ||
7717 | 16,0,455,1,2065, | ||
7718 | 1364,1,2067,3001,16, | ||
7719 | 0,455,1,2141,3002, | ||
7720 | 16,0,455,1,2102, | ||
7721 | 1351,1,2104,1359,1, | ||
7722 | 2106,3003,16,0,455, | ||
7723 | 1,72,3004,19,454, | ||
7724 | 1,72,3005,5,9, | ||
7725 | 1,2006,777,1,2011, | ||
7726 | 723,1,2017,3006,16, | ||
7727 | 0,452,1,2065,1364, | ||
7728 | 1,2067,3007,16,0, | ||
7729 | 452,1,2141,3008,16, | ||
7730 | 0,452,1,2102,1351, | ||
7731 | 1,2104,1359,1,2106, | ||
7732 | 3009,16,0,452,1, | ||
7733 | 73,3010,19,451,1, | ||
7734 | 73,3011,5,9,1, | ||
7735 | 2006,777,1,2011,723, | ||
7736 | 1,2017,3012,16,0, | ||
7737 | 449,1,2065,1364,1, | ||
7738 | 2067,3013,16,0,449, | ||
7739 | 1,2141,3014,16,0, | ||
7740 | 449,1,2102,1351,1, | ||
7741 | 2104,1359,1,2106,3015, | ||
7742 | 16,0,449,1,74, | ||
7743 | 3016,19,448,1,74, | ||
7744 | 3017,5,9,1,2006, | ||
7745 | 777,1,2011,723,1, | ||
7746 | 2017,3018,16,0,446, | ||
7747 | 1,2065,1364,1,2067, | ||
7748 | 3019,16,0,446,1, | ||
7749 | 2141,3020,16,0,446, | ||
7750 | 1,2102,1351,1,2104, | ||
7751 | 1359,1,2106,3021,16, | ||
7752 | 0,446,1,75,3022, | ||
7753 | 19,445,1,75,3023, | ||
7754 | 5,9,1,2006,777, | ||
7755 | 1,2011,723,1,2017, | ||
7756 | 3024,16,0,443,1, | ||
7757 | 2065,1364,1,2067,3025, | ||
7758 | 16,0,443,1,2141, | ||
7759 | 3026,16,0,443,1, | ||
7760 | 2102,1351,1,2104,1359, | ||
7761 | 1,2106,3027,16,0, | ||
7762 | 443,1,76,3028,19, | ||
7763 | 442,1,76,3029,5, | ||
7764 | 9,1,2006,777,1, | ||
7765 | 2011,723,1,2017,3030, | ||
7766 | 16,0,440,1,2065, | ||
7767 | 1364,1,2067,3031,16, | ||
7768 | 0,440,1,2141,3032, | ||
7769 | 16,0,440,1,2102, | ||
7770 | 1351,1,2104,1359,1, | ||
7771 | 2106,3033,16,0,440, | ||
7772 | 1,77,3034,19,439, | ||
7773 | 1,77,3035,5,9, | ||
7774 | 1,2006,777,1,2011, | ||
7775 | 723,1,2017,3036,16, | ||
7776 | 0,437,1,2065,1364, | ||
7777 | 1,2067,3037,16,0, | ||
7778 | 437,1,2141,3038,16, | ||
7779 | 0,437,1,2102,1351, | ||
7780 | 1,2104,1359,1,2106, | ||
7781 | 3039,16,0,437,1, | ||
7782 | 78,3040,19,436,1, | ||
7783 | 78,3041,5,9,1, | ||
7784 | 2006,777,1,2011,723, | ||
7785 | 1,2017,3042,16,0, | ||
7786 | 434,1,2065,1364,1, | ||
7787 | 2067,3043,16,0,434, | ||
7788 | 1,2141,3044,16,0, | ||
7789 | 434,1,2102,1351,1, | ||
7790 | 2104,1359,1,2106,3045, | ||
7791 | 16,0,434,1,79, | ||
7792 | 3046,19,433,1,79, | ||
7793 | 3047,5,9,1,2006, | ||
7794 | 777,1,2011,723,1, | ||
7795 | 2017,3048,16,0,431, | ||
7796 | 1,2065,1364,1,2067, | ||
7797 | 3049,16,0,431,1, | ||
7798 | 2141,3050,16,0,431, | ||
7799 | 1,2102,1351,1,2104, | ||
7800 | 1359,1,2106,3051,16, | ||
7801 | 0,431,1,80,3052, | ||
7802 | 19,430,1,80,3053, | ||
7803 | 5,9,1,2006,777, | ||
7804 | 1,2011,723,1,2017, | ||
7805 | 3054,16,0,428,1, | ||
7806 | 2065,1364,1,2067,3055, | ||
7807 | 16,0,428,1,2141, | ||
7808 | 3056,16,0,428,1, | ||
7809 | 2102,1351,1,2104,1359, | ||
7810 | 1,2106,3057,16,0, | ||
7811 | 428,1,81,3058,19, | ||
7812 | 427,1,81,3059,5, | ||
7813 | 9,1,2006,777,1, | ||
7814 | 2011,723,1,2017,3060, | ||
7815 | 16,0,425,1,2065, | ||
7816 | 1364,1,2067,3061,16, | ||
7817 | 0,425,1,2141,3062, | ||
7818 | 16,0,425,1,2102, | ||
7819 | 1351,1,2104,1359,1, | ||
7820 | 2106,3063,16,0,425, | ||
7821 | 1,82,3064,19,517, | ||
7822 | 1,82,3065,5,9, | ||
7823 | 1,2006,777,1,2011, | ||
7824 | 723,1,2017,3066,16, | ||
7825 | 0,515,1,2065,1364, | ||
7826 | 1,2067,3067,16,0, | ||
7827 | 515,1,2141,3068,16, | ||
7828 | 0,515,1,2102,1351, | ||
7829 | 1,2104,1359,1,2106, | ||
7830 | 3069,16,0,515,1, | ||
7831 | 83,3070,19,514,1, | ||
7832 | 83,3071,5,9,1, | ||
7833 | 2006,777,1,2011,723, | ||
7834 | 1,2017,3072,16,0, | ||
7835 | 512,1,2065,1364,1, | ||
7836 | 2067,3073,16,0,512, | ||
7837 | 1,2141,3074,16,0, | ||
7838 | 512,1,2102,1351,1, | ||
7839 | 2104,1359,1,2106,3075, | ||
7840 | 16,0,512,1,84, | ||
7841 | 3076,19,511,1,84, | ||
7842 | 3077,5,9,1,2006, | ||
7843 | 777,1,2011,723,1, | ||
7844 | 2017,3078,16,0,509, | ||
7845 | 1,2065,1364,1,2067, | ||
7846 | 3079,16,0,509,1, | ||
7847 | 2141,3080,16,0,509, | ||
7848 | 1,2102,1351,1,2104, | ||
7849 | 1359,1,2106,3081,16, | ||
7850 | 0,509,1,85,3082, | ||
7851 | 19,508,1,85,3083, | ||
7852 | 5,9,1,2006,777, | ||
7853 | 1,2011,723,1,2017, | ||
7854 | 3084,16,0,506,1, | ||
7855 | 2065,1364,1,2067,3085, | ||
7856 | 16,0,506,1,2141, | ||
7857 | 3086,16,0,506,1, | ||
7858 | 2102,1351,1,2104,1359, | ||
7859 | 1,2106,3087,16,0, | ||
7860 | 506,1,86,3088,19, | ||
7861 | 418,1,86,3089,5, | ||
7862 | 9,1,2006,777,1, | ||
7863 | 2011,723,1,2017,3090, | ||
7864 | 16,0,416,1,2065, | ||
7865 | 1364,1,2067,3091,16, | ||
7866 | 0,416,1,2141,3092, | ||
7867 | 16,0,416,1,2102, | ||
7868 | 1351,1,2104,1359,1, | ||
7869 | 2106,3093,16,0,416, | ||
7870 | 1,87,3094,19,415, | ||
7871 | 1,87,3095,5,9, | ||
7872 | 1,2006,777,1,2011, | ||
7873 | 723,1,2017,3096,16, | ||
7874 | 0,413,1,2065,1364, | ||
7875 | 1,2067,3097,16,0, | ||
7876 | 413,1,2141,3098,16, | ||
7877 | 0,413,1,2102,1351, | ||
7878 | 1,2104,1359,1,2106, | ||
7879 | 3099,16,0,413,1, | ||
7880 | 88,3100,19,412,1, | ||
7881 | 88,3101,5,9,1, | ||
7882 | 2006,777,1,2011,723, | ||
7883 | 1,2017,3102,16,0, | ||
7884 | 410,1,2065,1364,1, | ||
7885 | 2067,3103,16,0,410, | ||
7886 | 1,2141,3104,16,0, | ||
7887 | 410,1,2102,1351,1, | ||
7888 | 2104,1359,1,2106,3105, | ||
7889 | 16,0,410,1,89, | ||
7890 | 3106,19,406,1,89, | ||
7891 | 3107,5,9,1,2006, | ||
7892 | 777,1,2011,723,1, | ||
7893 | 2017,3108,16,0,404, | ||
7894 | 1,2065,1364,1,2067, | ||
7895 | 3109,16,0,404,1, | ||
7896 | 2141,3110,16,0,404, | ||
7897 | 1,2102,1351,1,2104, | ||
7898 | 1359,1,2106,3111,16, | ||
7899 | 0,404,1,90,3112, | ||
7900 | 19,409,1,90,3113, | ||
7901 | 5,9,1,2006,777, | ||
7902 | 1,2011,723,1,2017, | ||
7903 | 3114,16,0,407,1, | ||
7904 | 2065,1364,1,2067,3115, | ||
7905 | 16,0,407,1,2141, | ||
7906 | 3116,16,0,407,1, | ||
7907 | 2102,1351,1,2104,1359, | ||
7908 | 1,2106,3117,16,0, | ||
7909 | 407,1,91,3118,19, | ||
7910 | 133,1,91,3119,5, | ||
7911 | 105,1,0,3120,16, | ||
7912 | 0,160,1,1,1668, | ||
7913 | 1,2,1674,1,3, | ||
7914 | 1679,1,4,1684,1, | ||
7915 | 5,1689,1,6,1694, | ||
7916 | 1,7,1699,1,8, | ||
7917 | 3121,16,0,131,1, | ||
7918 | 256,3122,16,0,195, | ||
7919 | 1,18,3123,16,0, | ||
7920 | 144,1,504,3124,16, | ||
7921 | 0,195,1,277,3125, | ||
7922 | 16,0,195,1,1788, | ||
7923 | 3126,16,0,187,1, | ||
7924 | 32,3127,16,0,187, | ||
7925 | 1,1292,3128,16,0, | ||
7926 | 195,1,2226,2729,1, | ||
7927 | 41,3129,16,0,195, | ||
7928 | 1,43,3130,16,0, | ||
7929 | 195,1,46,3131,16, | ||
7930 | 0,199,1,299,3132, | ||
7931 | 16,0,195,1,52, | ||
7932 | 3133,16,0,195,1, | ||
7933 | 1559,3134,16,0,195, | ||
7934 | 1,1514,3135,16,0, | ||
7935 | 187,1,1760,688,1, | ||
7936 | 1818,3136,16,0,187, | ||
7937 | 1,62,3137,16,0, | ||
7938 | 212,1,1763,3138,16, | ||
7939 | 0,195,1,2009,716, | ||
7940 | 1,2011,723,1,2256, | ||
7941 | 2760,1,2015,3139,16, | ||
7942 | 0,400,1,2259,2724, | ||
7943 | 1,65,3140,16,0, | ||
7944 | 214,1,71,3141,16, | ||
7945 | 0,195,1,76,3142, | ||
7946 | 16,0,195,1,1584, | ||
7947 | 3143,16,0,187,1, | ||
7948 | 79,3144,16,0,195, | ||
7949 | 1,322,3145,16,0, | ||
7950 | 195,1,1257,3146,16, | ||
7951 | 0,195,1,85,3147, | ||
7952 | 16,0,195,1,89, | ||
7953 | 3148,16,0,195,1, | ||
7954 | 1847,794,1,1849,3149, | ||
7955 | 16,0,306,1,346, | ||
7956 | 3150,16,0,195,1, | ||
7957 | 1853,649,1,1854,655, | ||
7958 | 1,1855,660,1,1856, | ||
7959 | 748,1,1858,667,1, | ||
7960 | 97,3151,16,0,195, | ||
7961 | 1,1860,672,1,1862, | ||
7962 | 677,1,1863,682,1, | ||
7963 | 102,3152,16,0,195, | ||
7964 | 1,1115,3153,16,0, | ||
7965 | 195,1,112,3154,16, | ||
7966 | 0,195,1,1327,3155, | ||
7967 | 16,0,195,1,1817, | ||
7968 | 760,1,372,3156,16, | ||
7969 | 0,472,1,374,3157, | ||
7970 | 16,0,474,1,124, | ||
7971 | 3158,16,0,195,1, | ||
7972 | 376,3159,16,0,476, | ||
7973 | 1,2006,777,1,378, | ||
7974 | 3160,16,0,478,1, | ||
7975 | 1385,769,1,1637,710, | ||
7976 | 1,2013,2741,1,137, | ||
7977 | 3161,16,0,195,1, | ||
7978 | 1396,3162,16,0,195, | ||
7979 | 1,381,3163,16,0, | ||
7980 | 195,1,397,3164,16, | ||
7981 | 0,195,1,384,3165, | ||
7982 | 16,0,195,1,1152, | ||
7983 | 3166,16,0,195,1, | ||
7984 | 151,3167,16,0,195, | ||
7985 | 1,1852,806,1,1611, | ||
7986 | 3168,16,0,187,1, | ||
7987 | 1668,3169,16,0,195, | ||
7988 | 1,166,3170,16,0, | ||
7989 | 195,1,422,3171,16, | ||
7990 | 0,195,1,1432,3172, | ||
7991 | 16,0,195,1,1111, | ||
7992 | 3173,16,0,609,1, | ||
7993 | 182,3174,16,0,195, | ||
7994 | 1,1187,3175,16,0, | ||
7995 | 195,1,1639,3176,16, | ||
7996 | 0,187,1,1694,740, | ||
7997 | 1,2198,2735,1,2201, | ||
7998 | 3177,16,0,195,1, | ||
7999 | 447,3178,16,0,195, | ||
8000 | 1,199,3179,16,0, | ||
8001 | 195,1,1707,3180,16, | ||
8002 | 0,195,1,1965,3181, | ||
8003 | 16,0,187,1,1467, | ||
8004 | 729,1,1469,3182,16, | ||
8005 | 0,187,1,217,3183, | ||
8006 | 16,0,195,1,1222, | ||
8007 | 3184,16,0,195,1, | ||
8008 | 1732,3185,16,0,187, | ||
8009 | 1,463,3186,16,0, | ||
8010 | 195,1,2237,2746,1, | ||
8011 | 2238,3187,16,0,160, | ||
8012 | 1,236,3188,16,0, | ||
8013 | 195,1,488,3189,16, | ||
8014 | 0,195,1,2005,801, | ||
8015 | 1,2257,2755,1,2258, | ||
8016 | 2718,1,92,3190,19, | ||
8017 | 571,1,92,3191,5, | ||
8018 | 77,1,1853,649,1, | ||
8019 | 1854,655,1,1855,660, | ||
8020 | 1,112,3192,16,0, | ||
8021 | 569,1,384,3193,16, | ||
8022 | 0,569,1,1858,667, | ||
8023 | 1,1860,672,1,1862, | ||
8024 | 677,1,1863,682,1, | ||
8025 | 447,3194,16,0,569, | ||
8026 | 1,1611,3195,16,0, | ||
8027 | 569,1,124,3196,16, | ||
8028 | 0,569,1,1760,688, | ||
8029 | 1,236,3197,16,0, | ||
8030 | 569,1,1763,3198,16, | ||
8031 | 0,569,1,2201,3199, | ||
8032 | 16,0,569,1,1222, | ||
8033 | 3200,16,0,569,1, | ||
8034 | 1115,3201,16,0,569, | ||
8035 | 1,1187,3202,16,0, | ||
8036 | 569,1,137,3203,16, | ||
8037 | 0,569,1,217,3204, | ||
8038 | 16,0,569,1,32, | ||
8039 | 3205,16,0,569,1, | ||
8040 | 1668,3206,16,0,569, | ||
8041 | 1,1514,3207,16,0, | ||
8042 | 569,1,256,3208,16, | ||
8043 | 0,569,1,41,3209, | ||
8044 | 16,0,569,1,151, | ||
8045 | 3210,16,0,569,1, | ||
8046 | 43,3211,16,0,569, | ||
8047 | 1,1732,3212,16,0, | ||
8048 | 569,1,1637,710,1, | ||
8049 | 2009,716,1,1639,3213, | ||
8050 | 16,0,569,1,2011, | ||
8051 | 723,1,1467,729,1, | ||
8052 | 1584,3214,16,0,569, | ||
8053 | 1,52,3215,16,0, | ||
8054 | 569,1,381,3216,16, | ||
8055 | 0,569,1,346,3217, | ||
8056 | 16,0,569,1,166, | ||
8057 | 3218,16,0,569,1, | ||
8058 | 1257,3219,16,0,569, | ||
8059 | 1,1694,740,1,1432, | ||
8060 | 3220,16,0,569,1, | ||
8061 | 1152,3221,16,0,569, | ||
8062 | 1,1856,748,1,62, | ||
8063 | 3222,16,0,569,1, | ||
8064 | 1965,3223,16,0,569, | ||
8065 | 1,504,3224,16,0, | ||
8066 | 569,1,277,3225,16, | ||
8067 | 0,569,1,397,3226, | ||
8068 | 16,0,569,1,71, | ||
8069 | 3227,16,0,569,1, | ||
8070 | 1707,3228,16,0,569, | ||
8071 | 1,1817,760,1,1818, | ||
8072 | 3229,16,0,569,1, | ||
8073 | 463,3230,16,0,569, | ||
8074 | 1,76,3231,16,0, | ||
8075 | 569,1,1385,769,1, | ||
8076 | 79,3232,16,0,569, | ||
8077 | 1,182,3233,16,0, | ||
8078 | 569,1,299,3234,16, | ||
8079 | 0,569,1,2006,777, | ||
8080 | 1,1559,3235,16,0, | ||
8081 | 569,1,85,3236,16, | ||
8082 | 0,569,1,488,3237, | ||
8083 | 16,0,569,1,1396, | ||
8084 | 3238,16,0,569,1, | ||
8085 | 89,3239,16,0,569, | ||
8086 | 1,199,3240,16,0, | ||
8087 | 569,1,1292,3241,16, | ||
8088 | 0,569,1,422,3242, | ||
8089 | 16,0,569,1,97, | ||
8090 | 3243,16,0,569,1, | ||
8091 | 1469,3244,16,0,569, | ||
8092 | 1,1788,3245,16,0, | ||
8093 | 569,1,102,3246,16, | ||
8094 | 0,569,1,1847,794, | ||
8095 | 1,322,3247,16,0, | ||
8096 | 569,1,1327,3248,16, | ||
8097 | 0,569,1,2005,801, | ||
8098 | 1,1852,806,1,93, | ||
8099 | 3249,19,568,1,93, | ||
8100 | 3250,5,77,1,1853, | ||
8101 | 649,1,1854,655,1, | ||
8102 | 1855,660,1,112,3251, | ||
8103 | 16,0,566,1,384, | ||
8104 | 3252,16,0,566,1, | ||
8105 | 1858,667,1,1860,672, | ||
8106 | 1,1862,677,1,1863, | ||
8107 | 682,1,447,3253,16, | ||
8108 | 0,566,1,1611,3254, | ||
8109 | 16,0,566,1,124, | ||
8110 | 3255,16,0,566,1, | ||
8111 | 1760,688,1,236,3256, | ||
8112 | 16,0,566,1,1763, | ||
8113 | 3257,16,0,566,1, | ||
8114 | 2201,3258,16,0,566, | ||
8115 | 1,1222,3259,16,0, | ||
8116 | 566,1,1115,3260,16, | ||
8117 | 0,566,1,1187,3261, | ||
8118 | 16,0,566,1,137, | ||
8119 | 3262,16,0,566,1, | ||
8120 | 217,3263,16,0,566, | ||
8121 | 1,32,3264,16,0, | ||
8122 | 566,1,1668,3265,16, | ||
8123 | 0,566,1,1514,3266, | ||
8124 | 16,0,566,1,256, | ||
8125 | 3267,16,0,566,1, | ||
8126 | 41,3268,16,0,566, | ||
8127 | 1,151,3269,16,0, | ||
8128 | 566,1,43,3270,16, | ||
8129 | 0,566,1,1732,3271, | ||
8130 | 16,0,566,1,1637, | ||
8131 | 710,1,2009,716,1, | ||
8132 | 1639,3272,16,0,566, | ||
8133 | 1,2011,723,1,1467, | ||
8134 | 729,1,1584,3273,16, | ||
8135 | 0,566,1,52,3274, | ||
8136 | 16,0,566,1,381, | ||
8137 | 3275,16,0,566,1, | ||
8138 | 346,3276,16,0,566, | ||
8139 | 1,166,3277,16,0, | ||
8140 | 566,1,1257,3278,16, | ||
8141 | 0,566,1,1694,740, | ||
8142 | 1,1432,3279,16,0, | ||
8143 | 566,1,1152,3280,16, | ||
8144 | 0,566,1,1856,748, | ||
8145 | 1,62,3281,16,0, | ||
8146 | 566,1,1965,3282,16, | ||
8147 | 0,566,1,504,3283, | ||
8148 | 16,0,566,1,277, | ||
8149 | 3284,16,0,566,1, | ||
8150 | 397,3285,16,0,566, | ||
8151 | 1,71,3286,16,0, | ||
8152 | 566,1,1707,3287,16, | ||
8153 | 0,566,1,1817,760, | ||
8154 | 1,1818,3288,16,0, | ||
8155 | 566,1,463,3289,16, | ||
8156 | 0,566,1,76,3290, | ||
8157 | 16,0,566,1,1385, | ||
8158 | 769,1,79,3291,16, | ||
8159 | 0,566,1,182,3292, | ||
8160 | 16,0,566,1,299, | ||
8161 | 3293,16,0,566,1, | ||
8162 | 2006,777,1,1559,3294, | ||
8163 | 16,0,566,1,85, | ||
8164 | 3295,16,0,566,1, | ||
8165 | 488,3296,16,0,566, | ||
8166 | 1,1396,3297,16,0, | ||
8167 | 566,1,89,3298,16, | ||
8168 | 0,566,1,199,3299, | ||
8169 | 16,0,566,1,1292, | ||
8170 | 3300,16,0,566,1, | ||
8171 | 422,3301,16,0,566, | ||
8172 | 1,97,3302,16,0, | ||
8173 | 566,1,1469,3303,16, | ||
8174 | 0,566,1,1788,3304, | ||
8175 | 16,0,566,1,102, | ||
8176 | 3305,16,0,566,1, | ||
8177 | 1847,794,1,322,3306, | ||
8178 | 16,0,566,1,1327, | ||
8179 | 3307,16,0,566,1, | ||
8180 | 2005,801,1,1852,806, | ||
8181 | 1,94,3308,19,565, | ||
8182 | 1,94,3309,5,77, | ||
8183 | 1,1853,649,1,1854, | ||
8184 | 655,1,1855,660,1, | ||
8185 | 112,3310,16,0,563, | ||
8186 | 1,384,3311,16,0, | ||
8187 | 563,1,1858,667,1, | ||
8188 | 1860,672,1,1862,677, | ||
8189 | 1,1863,682,1,447, | ||
8190 | 3312,16,0,563,1, | ||
8191 | 1611,3313,16,0,563, | ||
8192 | 1,124,3314,16,0, | ||
8193 | 563,1,1760,688,1, | ||
8194 | 236,3315,16,0,563, | ||
8195 | 1,1763,3316,16,0, | ||
8196 | 563,1,2201,3317,16, | ||
8197 | 0,563,1,1222,3318, | ||
8198 | 16,0,563,1,1115, | ||
8199 | 3319,16,0,563,1, | ||
8200 | 1187,3320,16,0,563, | ||
8201 | 1,137,3321,16,0, | ||
8202 | 563,1,217,3322,16, | ||
8203 | 0,563,1,32,3323, | ||
8204 | 16,0,563,1,1668, | ||
8205 | 3324,16,0,563,1, | ||
8206 | 1514,3325,16,0,563, | ||
8207 | 1,256,3326,16,0, | ||
8208 | 563,1,41,3327,16, | ||
8209 | 0,563,1,151,3328, | ||
8210 | 16,0,563,1,43, | ||
8211 | 3329,16,0,563,1, | ||
8212 | 1732,3330,16,0,563, | ||
8213 | 1,1637,710,1,2009, | ||
8214 | 716,1,1639,3331,16, | ||
8215 | 0,563,1,2011,723, | ||
8216 | 1,1467,729,1,1584, | ||
8217 | 3332,16,0,563,1, | ||
8218 | 52,3333,16,0,563, | ||
8219 | 1,381,3334,16,0, | ||
8220 | 563,1,346,3335,16, | ||
8221 | 0,563,1,166,3336, | ||
8222 | 16,0,563,1,1257, | ||
8223 | 3337,16,0,563,1, | ||
8224 | 1694,740,1,1432,3338, | ||
8225 | 16,0,563,1,1152, | ||
8226 | 3339,16,0,563,1, | ||
8227 | 1856,748,1,62,3340, | ||
8228 | 16,0,563,1,1965, | ||
8229 | 3341,16,0,563,1, | ||
8230 | 504,3342,16,0,563, | ||
8231 | 1,277,3343,16,0, | ||
8232 | 563,1,397,3344,16, | ||
8233 | 0,563,1,71,3345, | ||
8234 | 16,0,563,1,1707, | ||
8235 | 3346,16,0,563,1, | ||
8236 | 1817,760,1,1818,3347, | ||
8237 | 16,0,563,1,463, | ||
8238 | 3348,16,0,563,1, | ||
8239 | 76,3349,16,0,563, | ||
8240 | 1,1385,769,1,79, | ||
8241 | 3350,16,0,563,1, | ||
8242 | 182,3351,16,0,563, | ||
8243 | 1,299,3352,16,0, | ||
8244 | 563,1,2006,777,1, | ||
8245 | 1559,3353,16,0,563, | ||
8246 | 1,85,3354,16,0, | ||
8247 | 563,1,488,3355,16, | ||
8248 | 0,563,1,1396,3356, | ||
8249 | 16,0,563,1,89, | ||
8250 | 3357,16,0,563,1, | ||
8251 | 199,3358,16,0,563, | ||
8252 | 1,1292,3359,16,0, | ||
8253 | 563,1,422,3360,16, | ||
8254 | 0,563,1,97,3361, | ||
8255 | 16,0,563,1,1469, | ||
8256 | 3362,16,0,563,1, | ||
8257 | 1788,3363,16,0,563, | ||
8258 | 1,102,3364,16,0, | ||
8259 | 563,1,1847,794,1, | ||
8260 | 322,3365,16,0,563, | ||
8261 | 1,1327,3366,16,0, | ||
8262 | 563,1,2005,801,1, | ||
8263 | 1852,806,1,95,3367, | ||
8264 | 19,103,1,95,3368, | ||
8265 | 5,1,1,0,3369, | ||
8266 | 16,0,104,1,96, | ||
8267 | 3370,19,582,1,96, | ||
8268 | 3371,5,1,1,0, | ||
8269 | 3372,16,0,580,1, | ||
8270 | 97,3373,19,166,1, | ||
8271 | 97,3374,5,2,1, | ||
8272 | 0,3375,16,0,253, | ||
8273 | 1,2238,3376,16,0, | ||
8274 | 164,1,98,3377,19, | ||
8275 | 163,1,98,3378,5, | ||
8276 | 2,1,0,3379,16, | ||
8277 | 0,355,1,2238,3380, | ||
8278 | 16,0,161,1,99, | ||
8279 | 3381,19,293,1,99, | ||
8280 | 3382,5,2,1,0, | ||
8281 | 3383,16,0,583,1, | ||
8282 | 2238,3384,16,0,291, | ||
8283 | 1,100,3385,19,159, | ||
8284 | 1,100,3386,5,4, | ||
8285 | 1,0,3387,16,0, | ||
8286 | 591,1,2179,3388,16, | ||
8287 | 0,157,1,2249,3389, | ||
8288 | 16,0,157,1,2238, | ||
8289 | 3390,16,0,591,1, | ||
8290 | 101,3391,19,497,1, | ||
8291 | 101,3392,5,2,1, | ||
8292 | 2017,3393,16,0,495, | ||
8293 | 1,2106,3394,16,0, | ||
8294 | 604,1,102,3395,19, | ||
8295 | 522,1,102,3396,5, | ||
8296 | 4,1,2017,3397,16, | ||
8297 | 0,577,1,2106,3398, | ||
8298 | 16,0,577,1,2141, | ||
8299 | 3399,16,0,520,1, | ||
8300 | 2067,3400,16,0,520, | ||
8301 | 1,103,3401,19,147, | ||
8302 | 1,103,3402,5,3, | ||
8303 | 1,2052,3403,16,0, | ||
8304 | 492,1,2185,3404,16, | ||
8305 | 0,255,1,10,3405, | ||
8306 | 16,0,145,1,104, | ||
8307 | 3406,19,169,1,104, | ||
8308 | 3407,5,16,1,0, | ||
8309 | 3408,16,0,599,1, | ||
8310 | 2185,3409,16,0,398, | ||
8311 | 1,1965,3410,16,0, | ||
8312 | 385,1,1818,3411,16, | ||
8313 | 0,385,1,1584,3412, | ||
8314 | 16,0,498,1,10, | ||
8315 | 3413,16,0,398,1, | ||
8316 | 1639,3414,16,0,385, | ||
8317 | 1,1788,3415,16,0, | ||
8318 | 385,1,2052,3416,16, | ||
8319 | 0,398,1,2238,3417, | ||
8320 | 16,0,599,1,1611, | ||
8321 | 3418,16,0,385,1, | ||
8322 | 21,3419,16,0,167, | ||
8323 | 1,1469,3420,16,0, | ||
8324 | 498,1,1732,3421,16, | ||
8325 | 0,385,1,32,3422, | ||
8326 | 16,0,385,1,1514, | ||
8327 | 3423,16,0,498,1, | ||
8328 | 105,3424,19,130,1, | ||
8329 | 105,3425,5,17,1, | ||
8330 | 0,3426,16,0,128, | ||
8331 | 1,2185,3427,16,0, | ||
8332 | 143,1,1965,3428,16, | ||
8333 | 0,143,1,1818,3429, | ||
8334 | 16,0,143,1,1584, | ||
8335 | 3430,16,0,143,1, | ||
8336 | 10,3431,16,0,143, | ||
8337 | 1,1639,3432,16,0, | ||
8338 | 143,1,1788,3433,16, | ||
8339 | 0,143,1,52,3434, | ||
8340 | 16,0,210,1,2052, | ||
8341 | 3435,16,0,143,1, | ||
8342 | 2238,3436,16,0,128, | ||
8343 | 1,1611,3437,16,0, | ||
8344 | 143,1,21,3438,16, | ||
8345 | 0,143,1,1469,3439, | ||
8346 | 16,0,143,1,1732, | ||
8347 | 3440,16,0,143,1, | ||
8348 | 32,3441,16,0,143, | ||
8349 | 1,1514,3442,16,0, | ||
8350 | 143,1,106,3443,19, | ||
8351 | 552,1,106,3444,5, | ||
8352 | 4,1,2017,3445,16, | ||
8353 | 0,550,1,2106,3446, | ||
8354 | 16,0,550,1,2141, | ||
8355 | 3447,16,0,550,1, | ||
8356 | 2067,3448,16,0,550, | ||
8357 | 1,107,3449,19,309, | ||
8358 | 1,107,3450,5,10, | ||
8359 | 1,1965,3451,16,0, | ||
8360 | 307,1,1818,3452,16, | ||
8361 | 0,307,1,1639,3453, | ||
8362 | 16,0,307,1,1788, | ||
8363 | 3454,16,0,307,1, | ||
8364 | 2196,3455,16,0,598, | ||
8365 | 1,1611,3456,16,0, | ||
8366 | 307,1,2063,3457,16, | ||
8367 | 0,494,1,1732,3458, | ||
8368 | 16,0,307,1,31, | ||
8369 | 3459,16,0,397,1, | ||
8370 | 32,3460,16,0,307, | ||
8371 | 1,108,3461,19,380, | ||
8372 | 1,108,3462,5,1, | ||
8373 | 1,32,3463,16,0, | ||
8374 | 378,1,109,3464,19, | ||
8375 | 280,1,109,3465,5, | ||
8376 | 7,1,1639,3466,16, | ||
8377 | 0,606,1,1818,3467, | ||
8378 | 16,0,299,1,1732, | ||
8379 | 3468,16,0,339,1, | ||
8380 | 1788,3469,16,0,278, | ||
8381 | 1,1965,3470,16,0, | ||
8382 | 391,1,1611,3471,16, | ||
8383 | 0,594,1,32,3472, | ||
8384 | 16,0,395,1,110, | ||
8385 | 3473,19,361,1,110, | ||
8386 | 3474,5,10,1,1965, | ||
8387 | 3475,16,0,359,1, | ||
8388 | 1818,3476,16,0,359, | ||
8389 | 1,1639,3477,16,0, | ||
8390 | 359,1,1788,3478,16, | ||
8391 | 0,359,1,1732,3479, | ||
8392 | 16,0,359,1,1611, | ||
8393 | 3480,16,0,359,1, | ||
8394 | 1469,3481,16,0,367, | ||
8395 | 1,1584,3482,16,0, | ||
8396 | 367,1,32,3483,16, | ||
8397 | 0,359,1,1514,3484, | ||
8398 | 16,0,547,1,111, | ||
8399 | 3485,19,358,1,111, | ||
8400 | 3486,5,7,1,1639, | ||
8401 | 3487,16,0,356,1, | ||
8402 | 1818,3488,16,0,356, | ||
8403 | 1,1732,3489,16,0, | ||
8404 | 356,1,1788,3490,16, | ||
8405 | 0,356,1,1965,3491, | ||
8406 | 16,0,356,1,1611, | ||
8407 | 3492,16,0,356,1, | ||
8408 | 32,3493,16,0,356, | ||
8409 | 1,112,3494,19,324, | ||
8410 | 1,112,3495,5,7, | ||
8411 | 1,1639,3496,16,0, | ||
8412 | 322,1,1818,3497,16, | ||
8413 | 0,322,1,1732,3498, | ||
8414 | 16,0,322,1,1788, | ||
8415 | 3499,16,0,322,1, | ||
8416 | 1965,3500,16,0,322, | ||
8417 | 1,1611,3501,16,0, | ||
8418 | 322,1,32,3502,16, | ||
8419 | 0,322,1,113,3503, | ||
8420 | 19,321,1,113,3504, | ||
8421 | 5,7,1,1639,3505, | ||
8422 | 16,0,319,1,1818, | ||
8423 | 3506,16,0,319,1, | ||
8424 | 1732,3507,16,0,319, | ||
8425 | 1,1788,3508,16,0, | ||
8426 | 319,1,1965,3509,16, | ||
8427 | 0,319,1,1611,3510, | ||
8428 | 16,0,319,1,32, | ||
8429 | 3511,16,0,319,1, | ||
8430 | 114,3512,19,318,1, | ||
8431 | 114,3513,5,7,1, | ||
8432 | 1639,3514,16,0,316, | ||
8433 | 1,1818,3515,16,0, | ||
8434 | 316,1,1732,3516,16, | ||
8435 | 0,316,1,1788,3517, | ||
8436 | 16,0,316,1,1965, | ||
8437 | 3518,16,0,316,1, | ||
8438 | 1611,3519,16,0,316, | ||
8439 | 1,32,3520,16,0, | ||
8440 | 316,1,115,3521,19, | ||
8441 | 315,1,115,3522,5, | ||
8442 | 7,1,1639,3523,16, | ||
8443 | 0,313,1,1818,3524, | ||
8444 | 16,0,313,1,1732, | ||
8445 | 3525,16,0,313,1, | ||
8446 | 1788,3526,16,0,313, | ||
8447 | 1,1965,3527,16,0, | ||
8448 | 313,1,1611,3528,16, | ||
8449 | 0,313,1,32,3529, | ||
8450 | 16,0,313,1,116, | ||
8451 | 3530,19,312,1,116, | ||
8452 | 3531,5,7,1,1639, | ||
8453 | 3532,16,0,310,1, | ||
8454 | 1818,3533,16,0,310, | ||
8455 | 1,1732,3534,16,0, | ||
8456 | 310,1,1788,3535,16, | ||
8457 | 0,310,1,1965,3536, | ||
8458 | 16,0,310,1,1611, | ||
8459 | 3537,16,0,310,1, | ||
8460 | 32,3538,16,0,310, | ||
8461 | 1,117,3539,19,501, | ||
8462 | 1,117,3540,5,2, | ||
8463 | 1,1584,3541,16,0, | ||
8464 | 575,1,1469,3542,16, | ||
8465 | 0,499,1,118,3543, | ||
8466 | 19,470,1,118,3544, | ||
8467 | 5,57,1,1584,3545, | ||
8468 | 16,0,468,1,1639, | ||
8469 | 3546,16,0,468,1, | ||
8470 | 112,3547,16,0,468, | ||
8471 | 1,384,3548,16,0, | ||
8472 | 468,1,447,3549,16, | ||
8473 | 0,468,1,124,3550, | ||
8474 | 16,0,468,1,236, | ||
8475 | 3551,16,0,468,1, | ||
8476 | 1763,3552,16,0,468, | ||
8477 | 1,2201,3553,16,0, | ||
8478 | 468,1,1222,3554,16, | ||
8479 | 0,468,1,1115,3555, | ||
8480 | 16,0,468,1,1187, | ||
8481 | 3556,16,0,468,1, | ||
8482 | 137,3557,16,0,468, | ||
8483 | 1,346,3558,16,0, | ||
8484 | 468,1,32,3559,16, | ||
8485 | 0,468,1,1668,3560, | ||
8486 | 16,0,468,1,1514, | ||
8487 | 3561,16,0,468,1, | ||
8488 | 256,3562,16,0,468, | ||
8489 | 1,41,3563,16,0, | ||
8490 | 468,1,151,3564,16, | ||
8491 | 0,468,1,43,3565, | ||
8492 | 16,0,468,1,1788, | ||
8493 | 3566,16,0,468,1, | ||
8494 | 52,3567,16,0,468, | ||
8495 | 1,381,3568,16,0, | ||
8496 | 468,1,166,3569,16, | ||
8497 | 0,468,1,1257,3570, | ||
8498 | 16,0,468,1,277, | ||
8499 | 3571,16,0,468,1, | ||
8500 | 1432,3572,16,0,468, | ||
8501 | 1,1152,3573,16,0, | ||
8502 | 468,1,62,3574,16, | ||
8503 | 0,548,1,1965,3575, | ||
8504 | 16,0,468,1,504, | ||
8505 | 3576,16,0,468,1, | ||
8506 | 488,3577,16,0,468, | ||
8507 | 1,397,3578,16,0, | ||
8508 | 468,1,71,3579,16, | ||
8509 | 0,468,1,1707,3580, | ||
8510 | 16,0,468,1,182, | ||
8511 | 3581,16,0,468,1, | ||
8512 | 1818,3582,16,0,468, | ||
8513 | 1,463,3583,16,0, | ||
8514 | 468,1,76,3584,16, | ||
8515 | 0,468,1,79,3585, | ||
8516 | 16,0,468,1,1611, | ||
8517 | 3586,16,0,468,1, | ||
8518 | 299,3587,16,0,468, | ||
8519 | 1,1559,3588,16,0, | ||
8520 | 468,1,85,3589,16, | ||
8521 | 0,468,1,1396,3590, | ||
8522 | 16,0,468,1,89, | ||
8523 | 3591,16,0,468,1, | ||
8524 | 199,3592,16,0,468, | ||
8525 | 1,1292,3593,16,0, | ||
8526 | 468,1,422,3594,16, | ||
8527 | 0,468,1,97,3595, | ||
8528 | 16,0,468,1,1469, | ||
8529 | 3596,16,0,468,1, | ||
8530 | 1732,3597,16,0,468, | ||
8531 | 1,102,3598,16,0, | ||
8532 | 468,1,322,3599,16, | ||
8533 | 0,468,1,1327,3600, | ||
8534 | 16,0,468,1,217, | ||
8535 | 3601,16,0,468,1, | ||
8536 | 119,3602,19,487,1, | ||
8537 | 119,3603,5,2,1, | ||
8538 | 381,3604,16,0,485, | ||
8539 | 1,41,3605,16,0, | ||
8540 | 601,1,120,3606,19, | ||
8541 | 142,1,120,3607,5, | ||
8542 | 3,1,381,3608,16, | ||
8543 | 0,140,1,41,3609, | ||
8544 | 16,0,140,1,384, | ||
8545 | 3610,16,0,490,1, | ||
8546 | 121,3611,19,3612,4, | ||
8547 | 36,69,0,120,0, | ||
8548 | 112,0,114,0,101, | ||
8549 | 0,115,0,115,0, | ||
8550 | 105,0,111,0,110, | ||
8551 | 0,65,0,114,0, | ||
8552 | 103,0,117,0,109, | ||
8553 | 0,101,0,110,0, | ||
8554 | 116,0,1,121,3607, | ||
8555 | 1,122,3613,19,481, | ||
8556 | 1,122,3614,5,57, | ||
8557 | 1,1584,3615,16,0, | ||
8558 | 479,1,1639,3616,16, | ||
8559 | 0,479,1,112,3617, | ||
8560 | 16,0,479,1,384, | ||
8561 | 3618,16,0,479,1, | ||
8562 | 447,3619,16,0,479, | ||
8563 | 1,124,3620,16,0, | ||
8564 | 479,1,236,3621,16, | ||
8565 | 0,479,1,1763,3622, | ||
8566 | 16,0,479,1,2201, | ||
8567 | 3623,16,0,479,1, | ||
8568 | 1222,3624,16,0,479, | ||
8569 | 1,1115,3625,16,0, | ||
8570 | 479,1,1187,3626,16, | ||
8571 | 0,479,1,137,3627, | ||
8572 | 16,0,479,1,346, | ||
8573 | 3628,16,0,479,1, | ||
8574 | 32,3629,16,0,479, | ||
8575 | 1,1668,3630,16,0, | ||
8576 | 479,1,1514,3631,16, | ||
8577 | 0,479,1,256,3632, | ||
8578 | 16,0,479,1,41, | ||
8579 | 3633,16,0,479,1, | ||
8580 | 151,3634,16,0,479, | ||
8581 | 1,43,3635,16,0, | ||
8582 | 479,1,1788,3636,16, | ||
8583 | 0,479,1,52,3637, | ||
8584 | 16,0,479,1,381, | ||
8585 | 3638,16,0,479,1, | ||
8586 | 166,3639,16,0,479, | ||
8587 | 1,1257,3640,16,0, | ||
8588 | 479,1,277,3641,16, | ||
8589 | 0,479,1,1432,3642, | ||
8590 | 16,0,479,1,1152, | ||
8591 | 3643,16,0,479,1, | ||
8592 | 62,3644,16,0,590, | ||
8593 | 1,1965,3645,16,0, | ||
8594 | 479,1,504,3646,16, | ||
8595 | 0,479,1,488,3647, | ||
8596 | 16,0,479,1,397, | ||
8597 | 3648,16,0,479,1, | ||
8598 | 71,3649,16,0,479, | ||
8599 | 1,1707,3650,16,0, | ||
8600 | 479,1,182,3651,16, | ||
8601 | 0,479,1,1818,3652, | ||
8602 | 16,0,479,1,463, | ||
8603 | 3653,16,0,479,1, | ||
8604 | 76,3654,16,0,479, | ||
8605 | 1,79,3655,16,0, | ||
8606 | 479,1,1611,3656,16, | ||
8607 | 0,479,1,299,3657, | ||
8608 | 16,0,479,1,1559, | ||
8609 | 3658,16,0,479,1, | ||
8610 | 85,3659,16,0,479, | ||
8611 | 1,1396,3660,16,0, | ||
8612 | 479,1,89,3661,16, | ||
8613 | 0,479,1,199,3662, | ||
8614 | 16,0,479,1,1292, | ||
8615 | 3663,16,0,479,1, | ||
8616 | 422,3664,16,0,479, | ||
8617 | 1,97,3665,16,0, | ||
8618 | 479,1,1469,3666,16, | ||
8619 | 0,479,1,1732,3667, | ||
8620 | 16,0,479,1,102, | ||
8621 | 3668,16,0,479,1, | ||
8622 | 322,3669,16,0,479, | ||
8623 | 1,1327,3670,16,0, | ||
8624 | 479,1,217,3671,16, | ||
8625 | 0,479,1,123,3672, | ||
8626 | 19,3673,4,28,86, | ||
8627 | 0,101,0,99,0, | ||
8628 | 116,0,111,0,114, | ||
8629 | 0,67,0,111,0, | ||
8630 | 110,0,115,0,116, | ||
8631 | 0,97,0,110,0, | ||
8632 | 116,0,1,123,3614, | ||
8633 | 1,124,3674,19,3675, | ||
8634 | 4,32,82,0,111, | ||
8635 | 0,116,0,97,0, | ||
8636 | 116,0,105,0,111, | ||
8637 | 0,110,0,67,0, | ||
8638 | 111,0,110,0,115, | ||
8639 | 0,116,0,97,0, | ||
8640 | 110,0,116,0,1, | ||
8641 | 124,3614,1,125,3676, | ||
8642 | 19,3677,4,24,76, | ||
8643 | 0,105,0,115,0, | ||
8644 | 116,0,67,0,111, | ||
8645 | 0,110,0,115,0, | ||
8646 | 116,0,97,0,110, | ||
8647 | 0,116,0,1,125, | ||
8648 | 3614,1,126,3678,19, | ||
8649 | 191,1,126,3679,5, | ||
8650 | 56,1,1584,3680,16, | ||
8651 | 0,461,1,1639,3681, | ||
8652 | 16,0,362,1,112, | ||
8653 | 3682,16,0,265,1, | ||
8654 | 384,3683,16,0,189, | ||
8655 | 1,447,3684,16,0, | ||
8656 | 558,1,124,3685,16, | ||
8657 | 0,270,1,236,3686, | ||
8658 | 16,0,354,1,1763, | ||
8659 | 3687,16,0,249,1, | ||
8660 | 2201,3688,16,0,602, | ||
8661 | 1,1222,3689,16,0, | ||
8662 | 263,1,1115,3690,16, | ||
8663 | 0,227,1,1187,3691, | ||
8664 | 16,0,225,1,137, | ||
8665 | 3692,16,0,289,1, | ||
8666 | 346,3693,16,0,419, | ||
8667 | 1,32,3694,16,0, | ||
8668 | 362,1,1668,3695,16, | ||
8669 | 0,209,1,1514,3696, | ||
8670 | 16,0,505,1,256, | ||
8671 | 3697,16,0,366,1, | ||
8672 | 41,3698,16,0,189, | ||
8673 | 1,151,3699,16,0, | ||
8674 | 290,1,43,3700,16, | ||
8675 | 0,573,1,1788,3701, | ||
8676 | 16,0,362,1,52, | ||
8677 | 3702,16,0,555,1, | ||
8678 | 381,3703,16,0,189, | ||
8679 | 1,166,3704,16,0, | ||
8680 | 297,1,1257,3705,16, | ||
8681 | 0,284,1,277,3706, | ||
8682 | 16,0,376,1,1432, | ||
8683 | 3707,16,0,388,1, | ||
8684 | 1152,3708,16,0,266, | ||
8685 | 1,1965,3709,16,0, | ||
8686 | 362,1,504,3710,16, | ||
8687 | 0,326,1,488,3711, | ||
8688 | 16,0,574,1,397, | ||
8689 | 3712,16,0,503,1, | ||
8690 | 71,3713,16,0,220, | ||
8691 | 1,1707,3714,16,0, | ||
8692 | 288,1,182,3715,16, | ||
8693 | 0,326,1,1818,3716, | ||
8694 | 16,0,362,1,463, | ||
8695 | 3717,16,0,326,1, | ||
8696 | 76,3718,16,0,489, | ||
8697 | 1,79,3719,16,0, | ||
8698 | 228,1,1611,3720,16, | ||
8699 | 0,362,1,299,3721, | ||
8700 | 16,0,384,1,1559, | ||
8701 | 3722,16,0,554,1, | ||
8702 | 85,3723,16,0,389, | ||
8703 | 1,1396,3724,16,0, | ||
8704 | 377,1,89,3725,16, | ||
8705 | 0,245,1,199,3726, | ||
8706 | 16,0,340,1,1292, | ||
8707 | 3727,16,0,347,1, | ||
8708 | 422,3728,16,0,519, | ||
8709 | 1,97,3729,16,0, | ||
8710 | 368,1,1469,3730,16, | ||
8711 | 0,461,1,1732,3731, | ||
8712 | 16,0,362,1,102, | ||
8713 | 3732,16,0,256,1, | ||
8714 | 322,3733,16,0,390, | ||
8715 | 1,1327,3734,16,0, | ||
8716 | 345,1,217,3735,16, | ||
8717 | 0,346,1,127,3736, | ||
8718 | 19,3737,4,36,67, | ||
8719 | 0,111,0,110,0, | ||
8720 | 115,0,116,0,97, | ||
8721 | 0,110,0,116,0, | ||
8722 | 69,0,120,0,112, | ||
8723 | 0,114,0,101,0, | ||
8724 | 115,0,115,0,105, | ||
8725 | 0,111,0,110,0, | ||
8726 | 1,127,3679,1,128, | ||
8727 | 3738,19,3739,4,30, | ||
8728 | 73,0,100,0,101, | ||
8729 | 0,110,0,116,0, | ||
8730 | 69,0,120,0,112, | ||
8731 | 0,114,0,101,0, | ||
8732 | 115,0,115,0,105, | ||
8733 | 0,111,0,110,0, | ||
8734 | 1,128,3679,1,129, | ||
8735 | 3740,19,3741,4,36, | ||
8736 | 73,0,100,0,101, | ||
8737 | 0,110,0,116,0, | ||
8738 | 68,0,111,0,116, | ||
8739 | 0,69,0,120,0, | ||
8740 | 112,0,114,0,101, | ||
8741 | 0,115,0,115,0, | ||
8742 | 105,0,111,0,110, | ||
8743 | 0,1,129,3679,1, | ||
8744 | 130,3742,19,3743,4, | ||
8745 | 44,70,0,117,0, | ||
8746 | 110,0,99,0,116, | ||
8747 | 0,105,0,111,0, | ||
8748 | 110,0,67,0,97, | ||
8749 | 0,108,0,108,0, | ||
8750 | 69,0,120,0,112, | ||
8751 | 0,114,0,101,0, | ||
8752 | 115,0,115,0,105, | ||
8753 | 0,111,0,110,0, | ||
8754 | 1,130,3679,1,131, | ||
8755 | 3744,19,3745,4,32, | ||
8756 | 66,0,105,0,110, | ||
8757 | 0,97,0,114,0, | ||
8758 | 121,0,69,0,120, | ||
8759 | 0,112,0,114,0, | ||
8760 | 101,0,115,0,115, | ||
8761 | 0,105,0,111,0, | ||
8762 | 110,0,1,131,3679, | ||
8763 | 1,132,3746,19,3747, | ||
8764 | 4,30,85,0,110, | ||
8765 | 0,97,0,114,0, | ||
8766 | 121,0,69,0,120, | ||
8767 | 0,112,0,114,0, | ||
8768 | 101,0,115,0,115, | ||
8769 | 0,105,0,111,0, | ||
8770 | 110,0,1,132,3679, | ||
8771 | 1,133,3748,19,3749, | ||
8772 | 4,36,84,0,121, | ||
8773 | 0,112,0,101,0, | ||
8774 | 99,0,97,0,115, | ||
8775 | 0,116,0,69,0, | ||
8776 | 120,0,112,0,114, | ||
8777 | 0,101,0,115,0, | ||
8778 | 115,0,105,0,111, | ||
8779 | 0,110,0,1,133, | ||
8780 | 3679,1,134,3750,19, | ||
8781 | 3751,4,42,80,0, | ||
8782 | 97,0,114,0,101, | ||
8783 | 0,110,0,116,0, | ||
8784 | 104,0,101,0,115, | ||
8785 | 0,105,0,115,0, | ||
8786 | 69,0,120,0,112, | ||
8787 | 0,114,0,101,0, | ||
8788 | 115,0,115,0,105, | ||
8789 | 0,111,0,110,0, | ||
8790 | 1,134,3679,1,135, | ||
8791 | 3752,19,3753,4,56, | ||
8792 | 73,0,110,0,99, | ||
8793 | 0,114,0,101,0, | ||
8794 | 109,0,101,0,110, | ||
8795 | 0,116,0,68,0, | ||
8796 | 101,0,99,0,114, | ||
8797 | 0,101,0,109,0, | ||
8798 | 101,0,110,0,116, | ||
8799 | 0,69,0,120,0, | ||
8800 | 112,0,114,0,101, | ||
8801 | 0,115,0,115,0, | ||
8802 | 105,0,111,0,110, | ||
8803 | 0,1,135,3679,1, | ||
8804 | 137,3754,19,640,1, | ||
8805 | 137,3368,1,138,3755, | ||
8806 | 19,618,1,138,3368, | ||
8807 | 1,139,3756,19,2727, | ||
8808 | 1,139,3371,1,140, | ||
8809 | 3757,19,2758,1,140, | ||
8810 | 3371,1,141,3758,19, | ||
8811 | 2722,1,141,3371,1, | ||
8812 | 142,3759,19,2763,1, | ||
8813 | 142,3371,1,143,3760, | ||
8814 | 19,2749,1,143,3374, | ||
8815 | 1,144,3761,19,2733, | ||
8816 | 1,144,3374,1,145, | ||
8817 | 3762,19,2739,1,145, | ||
8818 | 3378,1,146,3763,19, | ||
8819 | 2744,1,146,3378,1, | ||
8820 | 147,3764,19,630,1, | ||
8821 | 147,3382,1,148,3765, | ||
8822 | 19,635,1,148,3382, | ||
8823 | 1,149,3766,19,645, | ||
8824 | 1,149,3386,1,150, | ||
8825 | 3767,19,624,1,150, | ||
8826 | 3386,1,151,3768,19, | ||
8827 | 1362,1,151,3392,1, | ||
8828 | 152,3769,19,1355,1, | ||
8829 | 152,3392,1,153,3770, | ||
8830 | 19,1368,1,153,3396, | ||
8831 | 1,154,3771,19,1378, | ||
8832 | 1,154,3402,1,155, | ||
8833 | 3772,19,1388,1,155, | ||
8834 | 3402,1,156,3773,19, | ||
8835 | 973,1,156,3407,1, | ||
8836 | 157,3774,19,727,1, | ||
8837 | 157,3450,1,158,3775, | ||
8838 | 19,780,1,158,3450, | ||
8839 | 1,159,3776,19,720, | ||
8840 | 1,159,3462,1,160, | ||
8841 | 3777,19,804,1,160, | ||
8842 | 3462,1,161,3778,19, | ||
8843 | 732,1,161,3465,1, | ||
8844 | 162,3779,19,680,1, | ||
8845 | 162,3465,1,163,3780, | ||
8846 | 19,772,1,163,3465, | ||
8847 | 1,164,3781,19,675, | ||
8848 | 1,164,3465,1,165, | ||
8849 | 3782,19,670,1,165, | ||
8850 | 3465,1,166,3783,19, | ||
8851 | 751,1,166,3465,1, | ||
8852 | 167,3784,19,663,1, | ||
8853 | 167,3465,1,168,3785, | ||
8854 | 19,658,1,168,3465, | ||
8855 | 1,169,3786,19,653, | ||
8856 | 1,169,3465,1,170, | ||
8857 | 3787,19,809,1,170, | ||
8858 | 3465,1,171,3788,19, | ||
8859 | 1135,1,171,3495,1, | ||
8860 | 172,3789,19,1130,1, | ||
8861 | 172,3495,1,173,3790, | ||
8862 | 19,764,1,173,3504, | ||
8863 | 1,174,3791,19,797, | ||
8864 | 1,174,3504,1,175, | ||
8865 | 3792,19,692,1,175, | ||
8866 | 3513,1,176,3793,19, | ||
8867 | 744,1,176,3522,1, | ||
8868 | 177,3794,19,714,1, | ||
8869 | 177,3531,1,178,3795, | ||
8870 | 19,1312,1,178,3540, | ||
8871 | 1,179,3796,19,1261, | ||
8872 | 1,179,3540,1,180, | ||
8873 | 3797,19,986,1,180, | ||
8874 | 3540,1,181,3798,19, | ||
8875 | 1229,1,181,3540,1, | ||
8876 | 182,3799,19,1266,1, | ||
8877 | 182,3474,1,183,3800, | ||
8878 | 19,1118,1,183,3474, | ||
8879 | 1,184,3801,19,1016, | ||
8880 | 1,184,3474,1,185, | ||
8881 | 3802,19,967,1,185, | ||
8882 | 3474,1,186,3803,19, | ||
8883 | 1301,1,186,3474,1, | ||
8884 | 187,3804,19,1272,1, | ||
8885 | 187,3474,1,188,3805, | ||
8886 | 19,1234,1,188,3474, | ||
8887 | 1,189,3806,19,1160, | ||
8888 | 1,189,3474,1,190, | ||
8889 | 3807,19,1224,1,190, | ||
8890 | 3486,1,191,3808,19, | ||
8891 | 1214,1,191,3486,1, | ||
8892 | 192,3809,19,1333,1, | ||
8893 | 192,3614,1,193,3810, | ||
8894 | 19,1328,1,193,3614, | ||
8895 | 1,194,3811,19,992, | ||
8896 | 1,194,3614,1,195, | ||
8897 | 3812,19,1306,1,195, | ||
8898 | 3614,1,196,3813,19, | ||
8899 | 1318,1,196,3614,1, | ||
8900 | 197,3814,19,960,1, | ||
8901 | 197,3614,1,198,3815, | ||
8902 | 19,1087,1,198,3614, | ||
8903 | 1,199,3816,19,1197, | ||
8904 | 1,199,3679,1,200, | ||
8905 | 3817,19,1006,1,200, | ||
8906 | 3679,1,201,3818,19, | ||
8907 | 1023,1,201,3679,1, | ||
8908 | 202,3819,19,1044,1, | ||
8909 | 202,3679,1,203,3820, | ||
8910 | 19,1039,1,203,3679, | ||
8911 | 1,204,3821,19,1034, | ||
8912 | 1,204,3679,1,205, | ||
8913 | 3822,19,1029,1,205, | ||
8914 | 3679,1,206,3823,19, | ||
8915 | 1186,1,206,3679,1, | ||
8916 | 207,3824,19,1176,1, | ||
8917 | 207,3679,1,208,3825, | ||
8918 | 19,1250,1,208,3679, | ||
8919 | 1,209,3826,19,1181, | ||
8920 | 1,209,3679,1,210, | ||
8921 | 3827,19,1171,1,210, | ||
8922 | 3679,1,211,3828,19, | ||
8923 | 1155,1,211,3679,1, | ||
8924 | 212,3829,19,1113,1, | ||
8925 | 212,3679,1,213,3830, | ||
8926 | 19,1049,1,213,3679, | ||
8927 | 1,214,3831,19,1011, | ||
8928 | 1,214,3679,1,215, | ||
8929 | 3832,19,979,1,215, | ||
8930 | 3679,1,216,3833,19, | ||
8931 | 1323,1,216,3679,1, | ||
8932 | 217,3834,19,1296,1, | ||
8933 | 217,3679,1,218,3835, | ||
8934 | 19,1284,1,218,3679, | ||
8935 | 1,219,3836,19,1278, | ||
8936 | 1,219,3679,1,220, | ||
8937 | 3837,19,1255,1,220, | ||
8938 | 3679,1,221,3838,19, | ||
8939 | 1239,1,221,3679,1, | ||
8940 | 222,3839,19,1219,1, | ||
8941 | 222,3679,1,223,3840, | ||
8942 | 19,1208,1,223,3679, | ||
8943 | 1,224,3841,19,1165, | ||
8944 | 1,224,3679,1,225, | ||
8945 | 3842,19,1191,1,225, | ||
8946 | 3679,1,226,3843,19, | ||
8947 | 1202,1,226,3679,1, | ||
8948 | 227,3844,19,1291,1, | ||
8949 | 227,3679,1,228,3845, | ||
8950 | 19,1108,1,228,3679, | ||
8951 | 1,229,3846,19,1143, | ||
8952 | 1,229,3679,1,230, | ||
8953 | 3847,19,1149,1,230, | ||
8954 | 3679,1,231,3848,19, | ||
8955 | 1124,1,231,3679,1, | ||
8956 | 232,3849,19,1093,1, | ||
8957 | 232,3679,1,233,3850, | ||
8958 | 19,1061,1,233,3679, | ||
8959 | 1,234,3851,19,1056, | ||
8960 | 1,234,3679,1,235, | ||
8961 | 3852,19,1066,1,235, | ||
8962 | 3679,1,236,3853,19, | ||
8963 | 1081,1,236,3679,1, | ||
8964 | 237,3854,19,1071,1, | ||
8965 | 237,3679,1,238,3855, | ||
8966 | 19,1076,1,238,3679, | ||
8967 | 1,239,3856,19,1103, | ||
8968 | 1,239,3679,1,240, | ||
8969 | 3857,19,998,1,240, | ||
8970 | 3679,1,241,3858,19, | ||
8971 | 1098,1,241,3679,1, | ||
8972 | 242,3859,19,1245,1, | ||
8973 | 242,3544,1,243,3860, | ||
8974 | 19,1404,1,243,3603, | ||
8975 | 1,244,3861,19,1414, | ||
8976 | 1,244,3603,1,245, | ||
8977 | 3862,19,1398,1,245, | ||
8978 | 3607,1,246,3863,19, | ||
8979 | 1702,1,246,3425,1, | ||
8980 | 247,3864,19,1697,1, | ||
8981 | 247,3425,1,248,3865, | ||
8982 | 19,1692,1,248,3425, | ||
8983 | 1,249,3866,19,1687, | ||
8984 | 1,249,3425,1,250, | ||
8985 | 3867,19,1682,1,250, | ||
8986 | 3425,1,251,3868,19, | ||
8987 | 1677,1,251,3425,1, | ||
8988 | 252,3869,19,1672,1, | ||
8989 | 252,3425,1,253,3870, | ||
8990 | 19,1574,1,253,3444, | ||
8991 | 1,254,3871,19,1639, | ||
8992 | 1,254,3444,1,255, | ||
8993 | 3872,19,1634,1,255, | ||
8994 | 3444,1,256,3873,19, | ||
8995 | 1567,1,256,3444,1, | ||
8996 | 257,3874,19,1562,1, | ||
8997 | 257,3444,1,258,3875, | ||
8998 | 19,1628,1,258,3444, | ||
8999 | 1,259,3876,19,1556, | ||
9000 | 1,259,3444,1,260, | ||
9001 | 3877,19,1551,1,260, | ||
9002 | 3444,1,261,3878,19, | ||
9003 | 1546,1,261,3444,1, | ||
9004 | 262,3879,19,1541,1, | ||
9005 | 262,3444,1,263,3880, | ||
9006 | 19,1661,1,263,3444, | ||
9007 | 1,264,3881,19,1621, | ||
9008 | 1,264,3444,1,265, | ||
9009 | 3882,19,1534,1,265, | ||
9010 | 3444,1,266,3883,19, | ||
9011 | 1529,1,266,3444,1, | ||
9012 | 267,3884,19,1524,1, | ||
9013 | 267,3444,1,268,3885, | ||
9014 | 19,1519,1,268,3444, | ||
9015 | 1,269,3886,19,1601, | ||
9016 | 1,269,3444,1,270, | ||
9017 | 3887,19,1513,1,270, | ||
9018 | 3444,1,271,3888,19, | ||
9019 | 1508,1,271,3444,1, | ||
9020 | 272,3889,19,1503,1, | ||
9021 | 272,3444,1,273,3890, | ||
9022 | 19,1498,1,273,3444, | ||
9023 | 1,274,3891,19,1493, | ||
9024 | 1,274,3444,1,275, | ||
9025 | 3892,19,1488,1,275, | ||
9026 | 3444,1,276,3893,19, | ||
9027 | 1483,1,276,3444,1, | ||
9028 | 277,3894,19,1478,1, | ||
9029 | 277,3444,1,278,3895, | ||
9030 | 19,1473,1,278,3444, | ||
9031 | 1,279,3896,19,1468, | ||
9032 | 1,279,3444,1,280, | ||
9033 | 3897,19,1593,1,280, | ||
9034 | 3444,1,281,3898,19, | ||
9035 | 1462,1,281,3444,1, | ||
9036 | 282,3899,19,1457,1, | ||
9037 | 282,3444,1,283,3900, | ||
9038 | 19,1452,1,283,3444, | ||
9039 | 1,284,3901,19,1447, | ||
9040 | 1,284,3444,1,285, | ||
9041 | 3902,19,1442,1,285, | ||
9042 | 3444,1,286,3903,19, | ||
9043 | 3904,4,50,65,0, | ||
9044 | 114,0,103,0,117, | ||
9045 | 0,109,0,101,0, | ||
9046 | 110,0,116,0,68, | ||
9047 | 0,101,0,99,0, | ||
9048 | 108,0,97,0,114, | ||
9049 | 0,97,0,116,0, | ||
9050 | 105,0,111,0,110, | ||
9051 | 0,76,0,105,0, | ||
9052 | 115,0,116,0,95, | ||
9053 | 0,51,0,1,286, | ||
9054 | 3402,1,287,3905,19, | ||
9055 | 3906,4,28,65,0, | ||
9056 | 114,0,103,0,117, | ||
9057 | 0,109,0,101,0, | ||
9058 | 110,0,116,0,76, | ||
9059 | 0,105,0,115,0, | ||
9060 | 116,0,95,0,51, | ||
9061 | 0,1,287,3603,1, | ||
9062 | 288,3907,19,3908,4, | ||
9063 | 24,83,0,116,0, | ||
9064 | 97,0,116,0,101, | ||
9065 | 0,109,0,101,0, | ||
9066 | 110,0,116,0,95, | ||
9067 | 0,49,0,49,0, | ||
9068 | 1,288,3465,1,289, | ||
9069 | 3909,19,3910,4,28, | ||
9070 | 65,0,114,0,103, | ||
9071 | 0,117,0,109,0, | ||
9072 | 101,0,110,0,116, | ||
9073 | 0,76,0,105,0, | ||
9074 | 115,0,116,0,95, | ||
9075 | 0,52,0,1,289, | ||
9076 | 3603,1,290,3911,19, | ||
9077 | 3912,4,50,65,0, | ||
9078 | 114,0,103,0,117, | ||
9079 | 0,109,0,101,0, | ||
9080 | 110,0,116,0,68, | ||
9081 | 0,101,0,99,0, | ||
9082 | 108,0,97,0,114, | ||
9083 | 0,97,0,116,0, | ||
9084 | 105,0,111,0,110, | ||
9085 | 0,76,0,105,0, | ||
9086 | 115,0,116,0,95, | ||
9087 | 0,52,0,1,290, | ||
9088 | 3402,1,291,3913,19, | ||
9089 | 3914,4,50,65,0, | ||
9090 | 114,0,103,0,117, | ||
9091 | 0,109,0,101,0, | ||
9092 | 110,0,116,0,68, | ||
9093 | 0,101,0,99,0, | ||
9094 | 108,0,97,0,114, | ||
9095 | 0,97,0,116,0, | ||
9096 | 105,0,111,0,110, | ||
9097 | 0,76,0,105,0, | ||
9098 | 115,0,116,0,95, | ||
9099 | 0,53,0,1,291, | ||
9100 | 3402,2,0,0}; | ||
9101 | new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); | ||
9102 | new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); | ||
9103 | new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory)); | ||
9104 | new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); | ||
9105 | new Sfactory(this,"Declaration",new SCreator(Declaration_factory)); | ||
9106 | new Sfactory(this,"IdentExpression",new SCreator(IdentExpression_factory)); | ||
9107 | new Sfactory(this,"error",new SCreator(error_factory)); | ||
9108 | new Sfactory(this,"BinaryExpression_2",new SCreator(BinaryExpression_2_factory)); | ||
9109 | new Sfactory(this,"BinaryExpression_3",new SCreator(BinaryExpression_3_factory)); | ||
9110 | new Sfactory(this,"BinaryExpression_4",new SCreator(BinaryExpression_4_factory)); | ||
9111 | new Sfactory(this,"BinaryExpression_5",new SCreator(BinaryExpression_5_factory)); | ||
9112 | new Sfactory(this,"ReturnStatement_2",new SCreator(ReturnStatement_2_factory)); | ||
9113 | new Sfactory(this,"BinaryExpression_8",new SCreator(BinaryExpression_8_factory)); | ||
9114 | new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory)); | ||
9115 | new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); | ||
9116 | new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); | ||
9117 | new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); | ||
9118 | new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); | ||
9119 | new Sfactory(this,"Typename",new SCreator(Typename_factory)); | ||
9120 | new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory)); | ||
9121 | new Sfactory(this,"Assignment",new SCreator(Assignment_factory)); | ||
9122 | new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory)); | ||
9123 | new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory)); | ||
9124 | new Sfactory(this,"ReturnStatement_1",new SCreator(ReturnStatement_1_factory)); | ||
9125 | new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory)); | ||
9126 | new Sfactory(this,"Argument",new SCreator(Argument_factory)); | ||
9127 | new Sfactory(this,"State_2",new SCreator(State_2_factory)); | ||
9128 | new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory)); | ||
9129 | new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory)); | ||
9130 | new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory)); | ||
9131 | new Sfactory(this,"Event_1",new SCreator(Event_1_factory)); | ||
9132 | new Sfactory(this,"ListConstant",new SCreator(ListConstant_factory)); | ||
9133 | new Sfactory(this,"Event_3",new SCreator(Event_3_factory)); | ||
9134 | new Sfactory(this,"Event_4",new SCreator(Event_4_factory)); | ||
9135 | new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); | ||
9136 | new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); | ||
9137 | new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); | ||
9138 | new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); | ||
9139 | new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); | ||
9140 | new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); | ||
9141 | new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory)); | ||
9142 | new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory)); | ||
9143 | new Sfactory(this,"ArgumentDeclarationList",new SCreator(ArgumentDeclarationList_factory)); | ||
9144 | new Sfactory(this,"ConstantExpression",new SCreator(ConstantExpression_factory)); | ||
9145 | new Sfactory(this,"LSLProgramRoot_1",new SCreator(LSLProgramRoot_1_factory)); | ||
9146 | new Sfactory(this,"LSLProgramRoot_2",new SCreator(LSLProgramRoot_2_factory)); | ||
9147 | new Sfactory(this,"States_1",new SCreator(States_1_factory)); | ||
9148 | new Sfactory(this,"States_2",new SCreator(States_2_factory)); | ||
9149 | new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); | ||
9150 | new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); | ||
9151 | new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); | ||
9152 | new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); | ||
9153 | new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); | ||
9154 | new Sfactory(this,"Assignment_4",new SCreator(Assignment_4_factory)); | ||
9155 | new Sfactory(this,"Assignment_6",new SCreator(Assignment_6_factory)); | ||
9156 | new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); | ||
9157 | new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); | ||
9158 | new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); | ||
9159 | new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); | ||
9160 | new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); | ||
9161 | new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory)); | ||
9162 | new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory)); | ||
9163 | new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); | ||
9164 | new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory)); | ||
9165 | new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); | ||
9166 | new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); | ||
9167 | new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); | ||
9168 | new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); | ||
9169 | new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); | ||
9170 | new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); | ||
9171 | new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); | ||
9172 | new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); | ||
9173 | new Sfactory(this,"Expression",new SCreator(Expression_factory)); | ||
9174 | new Sfactory(this,"Constant_3",new SCreator(Constant_3_factory)); | ||
9175 | new Sfactory(this,"Constant_4",new SCreator(Constant_4_factory)); | ||
9176 | new Sfactory(this,"BinaryExpression_1",new SCreator(BinaryExpression_1_factory)); | ||
9177 | new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory)); | ||
9178 | new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory)); | ||
9179 | new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); | ||
9180 | new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); | ||
9181 | new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); | ||
9182 | new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); | ||
9183 | new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); | ||
9184 | new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); | ||
9185 | new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); | ||
9186 | new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); | ||
9187 | new Sfactory(this,"Constant",new SCreator(Constant_factory)); | ||
9188 | new Sfactory(this,"State",new SCreator(State_factory)); | ||
9189 | new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); | ||
9190 | new Sfactory(this,"StateChange",new SCreator(StateChange_factory)); | ||
9191 | new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory)); | ||
9192 | new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory)); | ||
9193 | new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory)); | ||
9194 | new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); | ||
9195 | new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); | ||
9196 | new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); | ||
9197 | new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); | ||
9198 | new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); | ||
9199 | new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); | ||
9200 | new Sfactory(this,"Assignment_3",new SCreator(Assignment_3_factory)); | ||
9201 | new Sfactory(this,"Assignment_5",new SCreator(Assignment_5_factory)); | ||
9202 | new Sfactory(this,"Assignment_7",new SCreator(Assignment_7_factory)); | ||
9203 | new Sfactory(this,"Assignment_8",new SCreator(Assignment_8_factory)); | ||
9204 | new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); | ||
9205 | new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); | ||
9206 | new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); | ||
9207 | new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); | ||
9208 | new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory)); | ||
9209 | new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory)); | ||
9210 | new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory)); | ||
9211 | new Sfactory(this,"Statement_5",new SCreator(Statement_5_factory)); | ||
9212 | new Sfactory(this,"Statement_6",new SCreator(Statement_6_factory)); | ||
9213 | new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); | ||
9214 | new Sfactory(this,"Statement_8",new SCreator(Statement_8_factory)); | ||
9215 | new Sfactory(this,"Statement_9",new SCreator(Statement_9_factory)); | ||
9216 | new Sfactory(this,"ExpressionArgument",new SCreator(ExpressionArgument_factory)); | ||
9217 | new Sfactory(this,"GlobalFunctionDefinition",new SCreator(GlobalFunctionDefinition_factory)); | ||
9218 | new Sfactory(this,"State_1",new SCreator(State_1_factory)); | ||
9219 | new Sfactory(this,"DoWhileStatement",new SCreator(DoWhileStatement_factory)); | ||
9220 | new Sfactory(this,"ParenthesisExpression_1",new SCreator(ParenthesisExpression_1_factory)); | ||
9221 | new Sfactory(this,"Event_5",new SCreator(Event_5_factory)); | ||
9222 | new Sfactory(this,"StateBody",new SCreator(StateBody_factory)); | ||
9223 | new Sfactory(this,"Event_7",new SCreator(Event_7_factory)); | ||
9224 | new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); | ||
9225 | new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); | ||
9226 | new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); | ||
9227 | new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); | ||
9228 | new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); | ||
9229 | new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); | ||
9230 | new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); | ||
9231 | new Sfactory(this,"Event_24",new SCreator(Event_24_factory)); | ||
9232 | new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); | ||
9233 | new Sfactory(this,"Event",new SCreator(Event_factory)); | ||
9234 | new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); | ||
9235 | new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); | ||
9236 | new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); | ||
9237 | new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); | ||
9238 | new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); | ||
9239 | new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); | ||
9240 | new Sfactory(this,"Event_32",new SCreator(Event_32_factory)); | ||
9241 | new Sfactory(this,"BinaryExpression",new SCreator(BinaryExpression_factory)); | ||
9242 | new Sfactory(this,"FunctionCallExpression",new SCreator(FunctionCallExpression_factory)); | ||
9243 | new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); | ||
9244 | new Sfactory(this,"StateBody_1",new SCreator(StateBody_1_factory)); | ||
9245 | new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); | ||
9246 | new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); | ||
9247 | new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); | ||
9248 | new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); | ||
9249 | new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory)); | ||
9250 | new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory)); | ||
9251 | new Sfactory(this,"Event_25",new SCreator(Event_25_factory)); | ||
9252 | new Sfactory(this,"Event_9",new SCreator(Event_9_factory)); | ||
9253 | new Sfactory(this,"Statement",new SCreator(Statement_factory)); | ||
9254 | new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); | ||
9255 | new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory)); | ||
9256 | new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); | ||
9257 | new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); | ||
9258 | new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); | ||
9259 | new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); | ||
9260 | new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); | ||
9261 | new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); | ||
9262 | new Sfactory(this,"Event_12",new SCreator(Event_12_factory)); | ||
9263 | new Sfactory(this,"Event_14",new SCreator(Event_14_factory)); | ||
9264 | new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); | ||
9265 | new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); | ||
9266 | new Sfactory(this,"Event_19",new SCreator(Event_19_factory)); | ||
9267 | new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); | ||
9268 | new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); | ||
9269 | new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); | ||
9270 | new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); | ||
9271 | new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); | ||
9272 | new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); | ||
9273 | new Sfactory(this,"Event_27",new SCreator(Event_27_factory)); | ||
9274 | new Sfactory(this,"Event_28",new SCreator(Event_28_factory)); | ||
9275 | new Sfactory(this,"Event_29",new SCreator(Event_29_factory)); | ||
9276 | new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); | ||
9277 | new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); | ||
9278 | new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); | ||
9279 | new Sfactory(this,"Event_30",new SCreator(Event_30_factory)); | ||
9280 | new Sfactory(this,"Event_31",new SCreator(Event_31_factory)); | ||
9281 | new Sfactory(this,"Event_33",new SCreator(Event_33_factory)); | ||
9282 | new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); | ||
9283 | new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); | ||
9284 | new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); | ||
9285 | new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); | ||
9286 | new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); | ||
9287 | new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); | ||
9288 | new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory)); | ||
9289 | new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); | ||
9290 | new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); | ||
9291 | new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); | ||
9292 | new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); | ||
9293 | new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); | ||
9294 | new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); | ||
9295 | new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); | ||
9296 | new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); | ||
9297 | new Sfactory(this,"States",new SCreator(States_factory)); | ||
9298 | } | ||
9299 | public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } | ||
9300 | public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } | ||
9301 | public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); } | ||
9302 | public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } | ||
9303 | public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); } | ||
9304 | public static object IdentExpression_factory(Parser yyp) { return new IdentExpression(yyp); } | ||
9305 | public static object error_factory(Parser yyp) { return new error(yyp); } | ||
9306 | public static object BinaryExpression_2_factory(Parser yyp) { return new BinaryExpression_2(yyp); } | ||
9307 | public static object BinaryExpression_3_factory(Parser yyp) { return new BinaryExpression_3(yyp); } | ||
9308 | public static object BinaryExpression_4_factory(Parser yyp) { return new BinaryExpression_4(yyp); } | ||
9309 | public static object BinaryExpression_5_factory(Parser yyp) { return new BinaryExpression_5(yyp); } | ||
9310 | public static object ReturnStatement_2_factory(Parser yyp) { return new ReturnStatement_2(yyp); } | ||
9311 | public static object BinaryExpression_8_factory(Parser yyp) { return new BinaryExpression_8(yyp); } | ||
9312 | public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); } | ||
9313 | public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } | ||
9314 | public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } | ||
9315 | public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } | ||
9316 | public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } | ||
9317 | public static object Typename_factory(Parser yyp) { return new Typename(yyp); } | ||
9318 | public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); } | ||
9319 | public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); } | ||
9320 | public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); } | ||
9321 | public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); } | ||
9322 | public static object ReturnStatement_1_factory(Parser yyp) { return new ReturnStatement_1(yyp); } | ||
9323 | public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); } | ||
9324 | public static object Argument_factory(Parser yyp) { return new Argument(yyp); } | ||
9325 | public static object State_2_factory(Parser yyp) { return new State_2(yyp); } | ||
9326 | public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); } | ||
9327 | public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); } | ||
9328 | public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); } | ||
9329 | public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); } | ||
9330 | public static object ListConstant_factory(Parser yyp) { return new ListConstant(yyp); } | ||
9331 | public static object Event_3_factory(Parser yyp) { return new Event_3(yyp); } | ||
9332 | public static object Event_4_factory(Parser yyp) { return new Event_4(yyp); } | ||
9333 | public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } | ||
9334 | public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } | ||
9335 | public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } | ||
9336 | public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } | ||
9337 | public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } | ||
9338 | public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } | ||
9339 | public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); } | ||
9340 | public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); } | ||
9341 | public static object ArgumentDeclarationList_factory(Parser yyp) { return new ArgumentDeclarationList(yyp); } | ||
9342 | public static object ConstantExpression_factory(Parser yyp) { return new ConstantExpression(yyp); } | ||
9343 | public static object LSLProgramRoot_1_factory(Parser yyp) { return new LSLProgramRoot_1(yyp); } | ||
9344 | public static object LSLProgramRoot_2_factory(Parser yyp) { return new LSLProgramRoot_2(yyp); } | ||
9345 | public static object States_1_factory(Parser yyp) { return new States_1(yyp); } | ||
9346 | public static object States_2_factory(Parser yyp) { return new States_2(yyp); } | ||
9347 | public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } | ||
9348 | public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } | ||
9349 | public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } | ||
9350 | public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } | ||
9351 | public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } | ||
9352 | public static object Assignment_4_factory(Parser yyp) { return new Assignment_4(yyp); } | ||
9353 | public static object Assignment_6_factory(Parser yyp) { return new Assignment_6(yyp); } | ||
9354 | public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } | ||
9355 | public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } | ||
9356 | public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } | ||
9357 | public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } | ||
9358 | public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } | ||
9359 | public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); } | ||
9360 | public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); } | ||
9361 | public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } | ||
9362 | public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); } | ||
9363 | public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } | ||
9364 | public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } | ||
9365 | public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } | ||
9366 | public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } | ||
9367 | public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } | ||
9368 | public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } | ||
9369 | public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } | ||
9370 | public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } | ||
9371 | public static object Expression_factory(Parser yyp) { return new Expression(yyp); } | ||
9372 | public static object Constant_3_factory(Parser yyp) { return new Constant_3(yyp); } | ||
9373 | public static object Constant_4_factory(Parser yyp) { return new Constant_4(yyp); } | ||
9374 | public static object BinaryExpression_1_factory(Parser yyp) { return new BinaryExpression_1(yyp); } | ||
9375 | public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); } | ||
9376 | public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); } | ||
9377 | public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } | ||
9378 | public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } | ||
9379 | public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } | ||
9380 | public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } | ||
9381 | public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } | ||
9382 | public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } | ||
9383 | public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } | ||
9384 | public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } | ||
9385 | public static object Constant_factory(Parser yyp) { return new Constant(yyp); } | ||
9386 | public static object State_factory(Parser yyp) { return new State(yyp); } | ||
9387 | public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } | ||
9388 | public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); } | ||
9389 | public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); } | ||
9390 | public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); } | ||
9391 | public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); } | ||
9392 | public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } | ||
9393 | public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } | ||
9394 | public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } | ||
9395 | public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } | ||
9396 | public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } | ||
9397 | public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } | ||
9398 | public static object Assignment_3_factory(Parser yyp) { return new Assignment_3(yyp); } | ||
9399 | public static object Assignment_5_factory(Parser yyp) { return new Assignment_5(yyp); } | ||
9400 | public static object Assignment_7_factory(Parser yyp) { return new Assignment_7(yyp); } | ||
9401 | public static object Assignment_8_factory(Parser yyp) { return new Assignment_8(yyp); } | ||
9402 | public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } | ||
9403 | public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } | ||
9404 | public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } | ||
9405 | public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } | ||
9406 | public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); } | ||
9407 | public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); } | ||
9408 | public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); } | ||
9409 | public static object Statement_5_factory(Parser yyp) { return new Statement_5(yyp); } | ||
9410 | public static object Statement_6_factory(Parser yyp) { return new Statement_6(yyp); } | ||
9411 | public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } | ||
9412 | public static object Statement_8_factory(Parser yyp) { return new Statement_8(yyp); } | ||
9413 | public static object Statement_9_factory(Parser yyp) { return new Statement_9(yyp); } | ||
9414 | public static object ExpressionArgument_factory(Parser yyp) { return new ExpressionArgument(yyp); } | ||
9415 | public static object GlobalFunctionDefinition_factory(Parser yyp) { return new GlobalFunctionDefinition(yyp); } | ||
9416 | public static object State_1_factory(Parser yyp) { return new State_1(yyp); } | ||
9417 | public static object DoWhileStatement_factory(Parser yyp) { return new DoWhileStatement(yyp); } | ||
9418 | public static object ParenthesisExpression_1_factory(Parser yyp) { return new ParenthesisExpression_1(yyp); } | ||
9419 | public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); } | ||
9420 | public static object StateBody_factory(Parser yyp) { return new StateBody(yyp); } | ||
9421 | public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); } | ||
9422 | public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } | ||
9423 | public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } | ||
9424 | public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } | ||
9425 | public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } | ||
9426 | public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } | ||
9427 | public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } | ||
9428 | public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } | ||
9429 | public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); } | ||
9430 | public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } | ||
9431 | public static object Event_factory(Parser yyp) { return new Event(yyp); } | ||
9432 | public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } | ||
9433 | public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } | ||
9434 | public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } | ||
9435 | public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } | ||
9436 | public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } | ||
9437 | public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } | ||
9438 | public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); } | ||
9439 | public static object BinaryExpression_factory(Parser yyp) { return new BinaryExpression(yyp); } | ||
9440 | public static object FunctionCallExpression_factory(Parser yyp) { return new FunctionCallExpression(yyp); } | ||
9441 | public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } | ||
9442 | public static object StateBody_1_factory(Parser yyp) { return new StateBody_1(yyp); } | ||
9443 | public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } | ||
9444 | public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } | ||
9445 | public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } | ||
9446 | public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } | ||
9447 | public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); } | ||
9448 | public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); } | ||
9449 | public static object Event_25_factory(Parser yyp) { return new Event_25(yyp); } | ||
9450 | public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); } | ||
9451 | public static object Statement_factory(Parser yyp) { return new Statement(yyp); } | ||
9452 | public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } | ||
9453 | public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); } | ||
9454 | public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } | ||
9455 | public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } | ||
9456 | public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } | ||
9457 | public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } | ||
9458 | public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } | ||
9459 | public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } | ||
9460 | public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); } | ||
9461 | public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); } | ||
9462 | public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } | ||
9463 | public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } | ||
9464 | public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); } | ||
9465 | public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } | ||
9466 | public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } | ||
9467 | public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } | ||
9468 | public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } | ||
9469 | public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } | ||
9470 | public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } | ||
9471 | public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); } | ||
9472 | public static object Event_28_factory(Parser yyp) { return new Event_28(yyp); } | ||
9473 | public static object Event_29_factory(Parser yyp) { return new Event_29(yyp); } | ||
9474 | public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } | ||
9475 | public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } | ||
9476 | public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } | ||
9477 | public static object Event_30_factory(Parser yyp) { return new Event_30(yyp); } | ||
9478 | public static object Event_31_factory(Parser yyp) { return new Event_31(yyp); } | ||
9479 | public static object Event_33_factory(Parser yyp) { return new Event_33(yyp); } | ||
9480 | public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } | ||
9481 | public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } | ||
9482 | public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } | ||
9483 | public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } | ||
9484 | public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } | ||
9485 | public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } | ||
9486 | public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); } | ||
9487 | public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } | ||
9488 | public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } | ||
9489 | public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } | ||
9490 | public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } | ||
9491 | public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } | ||
9492 | public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } | ||
9493 | public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } | ||
9494 | public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } | ||
9495 | public static object States_factory(Parser yyp) { return new States(yyp); } | ||
9496 | } | ||
9497 | public class LSLSyntax | ||
9498 | : Parser { | ||
9499 | public LSLSyntax | ||
9500 | ():base(new yyLSLSyntax | ||
9501 | (),new LSLTokens()) {} | ||
9502 | public LSLSyntax | ||
9503 | (YyParser syms):base(syms,new LSLTokens()) {} | ||
9504 | public LSLSyntax | ||
9505 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} | ||
9506 | |||
9507 | } | ||