diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs | 9803 |
1 files changed, 9803 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs new file mode 100644 index 0000000..17268f3 --- /dev/null +++ b/OpenSim/Region/ScriptEngine/Shared/CodeTools/lsl.parser.cs | |||
@@ -0,0 +1,9803 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System;using Tools; | ||
29 | namespace OpenSim.Region.ScriptEngine.Shared.CodeTools { | ||
30 | //%+LSLProgramRoot+95 | ||
31 | public class LSLProgramRoot : SYMBOL{ | ||
32 | public LSLProgramRoot (Parser yyp, States s ):base(((LSLSyntax | ||
33 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
34 | } | ||
35 | public LSLProgramRoot (Parser yyp, GlobalDefinitions gd , States s ):base(((LSLSyntax | ||
36 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
37 | while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
38 | } | ||
39 | |||
40 | public override string yyname { get { return "LSLProgramRoot"; }} | ||
41 | public override int yynum { get { return 95; }} | ||
42 | public LSLProgramRoot(Parser yyp):base(yyp){}} | ||
43 | //%+GlobalDefinitions+96 | ||
44 | public class GlobalDefinitions : SYMBOL{ | ||
45 | public GlobalDefinitions (Parser yyp, GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
46 | )yyp)){ kids . Add ( gvd ); | ||
47 | } | ||
48 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalVariableDeclaration gvd ):base(((LSLSyntax | ||
49 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
50 | kids . Add ( gvd ); | ||
51 | } | ||
52 | public GlobalDefinitions (Parser yyp, GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
53 | )yyp)){ kids . Add ( gfd ); | ||
54 | } | ||
55 | public GlobalDefinitions (Parser yyp, GlobalDefinitions gd , GlobalFunctionDefinition gfd ):base(((LSLSyntax | ||
56 | )yyp)){ while (0< gd . kids . Count ) kids . Add ( gd . kids . Pop ()); | ||
57 | kids . Add ( gfd ); | ||
58 | } | ||
59 | |||
60 | public override string yyname { get { return "GlobalDefinitions"; }} | ||
61 | public override int yynum { get { return 96; }} | ||
62 | public GlobalDefinitions(Parser yyp):base(yyp){}} | ||
63 | //%+GlobalVariableDeclaration+97 | ||
64 | public class GlobalVariableDeclaration : SYMBOL{ | ||
65 | public GlobalVariableDeclaration (Parser yyp, Declaration d ):base(((LSLSyntax | ||
66 | )yyp)){ kids . Add ( d ); | ||
67 | } | ||
68 | public GlobalVariableDeclaration (Parser yyp, Assignment a ):base(((LSLSyntax | ||
69 | )yyp)){ kids . Add ( a ); | ||
70 | } | ||
71 | |||
72 | public override string yyname { get { return "GlobalVariableDeclaration"; }} | ||
73 | public override int yynum { get { return 97; }} | ||
74 | public GlobalVariableDeclaration(Parser yyp):base(yyp){}} | ||
75 | //%+GlobalFunctionDefinition+98 | ||
76 | public class GlobalFunctionDefinition : SYMBOL{ | ||
77 | private string m_returnType ; | ||
78 | private string m_name ; | ||
79 | public GlobalFunctionDefinition (Parser yyp, string returnType , string name , ArgumentDeclarationList adl , CompoundStatement cs ):base(((LSLSyntax | ||
80 | )yyp)){ m_returnType = returnType ; | ||
81 | m_name = name ; | ||
82 | kids . Add ( adl ); | ||
83 | kids . Add ( cs ); | ||
84 | } | ||
85 | public string ReturnType { get { return m_returnType ; | ||
86 | } | ||
87 | set { m_returnType = value ; | ||
88 | } | ||
89 | } | ||
90 | public string Name { get { return m_name ; | ||
91 | } | ||
92 | } | ||
93 | |||
94 | public override string yyname { get { return "GlobalFunctionDefinition"; }} | ||
95 | public override int yynum { get { return 98; }} | ||
96 | public GlobalFunctionDefinition(Parser yyp):base(yyp){}} | ||
97 | //%+States+99 | ||
98 | public class States : SYMBOL{ | ||
99 | public States (Parser yyp, State ds ):base(((LSLSyntax | ||
100 | )yyp)){ kids . Add ( ds ); | ||
101 | } | ||
102 | public States (Parser yyp, States s , State us ):base(((LSLSyntax | ||
103 | )yyp)){ while (0< s . kids . Count ) kids . Add ( s . kids . Pop ()); | ||
104 | kids . Add ( us ); | ||
105 | } | ||
106 | |||
107 | public override string yyname { get { return "States"; }} | ||
108 | public override int yynum { get { return 99; }} | ||
109 | public States(Parser yyp):base(yyp){}} | ||
110 | //%+State+100 | ||
111 | public class State : SYMBOL{ | ||
112 | private string m_name ; | ||
113 | public State (Parser yyp, string name , StateBody sb ):base(((LSLSyntax | ||
114 | )yyp)){ m_name = name ; | ||
115 | while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
116 | } | ||
117 | public override string ToString (){ return "STATE<"+ m_name +">"; | ||
118 | } | ||
119 | public string Name { get { return m_name ; | ||
120 | } | ||
121 | } | ||
122 | |||
123 | public override string yyname { get { return "State"; }} | ||
124 | public override int yynum { get { return 100; }} | ||
125 | public State(Parser yyp):base(yyp){}} | ||
126 | //%+StateBody+101 | ||
127 | public class StateBody : SYMBOL{ | ||
128 | public StateBody (Parser yyp, StateBody sb , StateEvent se ):base(((LSLSyntax | ||
129 | )yyp)){ while (0< sb . kids . Count ) kids . Add ( sb . kids . Pop ()); | ||
130 | kids . Add ( se ); | ||
131 | } | ||
132 | public StateBody (Parser yyp, StateEvent se ):base(((LSLSyntax | ||
133 | )yyp)){ kids . Add ( se ); | ||
134 | } | ||
135 | |||
136 | public override string yyname { get { return "StateBody"; }} | ||
137 | public override int yynum { get { return 101; }} | ||
138 | public StateBody(Parser yyp):base(yyp){}} | ||
139 | //%+StateEvent+102 | ||
140 | public class StateEvent : SYMBOL{ | ||
141 | private string m_name ; | ||
142 | public StateEvent (Parser yyp, string name , CompoundStatement cs ):base(((LSLSyntax | ||
143 | )yyp)){ m_name = name ; | ||
144 | kids . Add ( cs ); | ||
145 | } | ||
146 | public StateEvent (Parser yyp, string name , ArgumentDeclarationList dal , CompoundStatement cs ):base(((LSLSyntax | ||
147 | )yyp)){ m_name = name ; | ||
148 | if (0< dal . kids . Count ) kids . Add ( dal ); | ||
149 | kids . Add ( cs ); | ||
150 | } | ||
151 | public override string ToString (){ return "EVENT<"+ m_name +">"; | ||
152 | } | ||
153 | public string Name { get { return m_name ; | ||
154 | } | ||
155 | } | ||
156 | |||
157 | public override string yyname { get { return "StateEvent"; }} | ||
158 | public override int yynum { get { return 102; }} | ||
159 | public StateEvent(Parser yyp):base(yyp){}} | ||
160 | //%+ArgumentDeclarationList+103 | ||
161 | public class ArgumentDeclarationList : SYMBOL{ | ||
162 | public ArgumentDeclarationList (Parser yyp, Declaration d ):base(((LSLSyntax | ||
163 | )yyp)){ kids . Add ( d ); | ||
164 | } | ||
165 | public ArgumentDeclarationList (Parser yyp, ArgumentDeclarationList adl , Declaration d ):base(((LSLSyntax | ||
166 | )yyp)){ while (0< adl . kids . Count ) kids . Add ( adl . kids . Pop ()); | ||
167 | kids . Add ( d ); | ||
168 | } | ||
169 | |||
170 | public override string yyname { get { return "ArgumentDeclarationList"; }} | ||
171 | public override int yynum { get { return 103; }} | ||
172 | public ArgumentDeclarationList(Parser yyp):base(yyp){}} | ||
173 | //%+Declaration+104 | ||
174 | public class Declaration : SYMBOL{ | ||
175 | private string m_datatype ; | ||
176 | private string m_id ; | ||
177 | public Declaration (Parser yyp, string type , string id ):base(((LSLSyntax | ||
178 | )yyp)){ m_datatype = type ; | ||
179 | m_id = id ; | ||
180 | } | ||
181 | public override string ToString (){ return "Declaration<"+ m_datatype +":"+ m_id +">"; | ||
182 | } | ||
183 | public string Datatype { get { return m_datatype ; | ||
184 | } | ||
185 | set { m_datatype = value ; | ||
186 | } | ||
187 | } | ||
188 | public string Id { get { return m_id ; | ||
189 | } | ||
190 | } | ||
191 | |||
192 | public override string yyname { get { return "Declaration"; }} | ||
193 | public override int yynum { get { return 104; }} | ||
194 | public Declaration(Parser yyp):base(yyp){}} | ||
195 | //%+Typename+105 | ||
196 | public class Typename : SYMBOL{ | ||
197 | public string yytext ; | ||
198 | public Typename (Parser yyp, string text ):base(((LSLSyntax | ||
199 | )yyp)){ yytext = text ; | ||
200 | } | ||
201 | |||
202 | public override string yyname { get { return "Typename"; }} | ||
203 | public override int yynum { get { return 105; }} | ||
204 | public Typename(Parser yyp):base(yyp){}} | ||
205 | //%+Event+106 | ||
206 | public class Event : SYMBOL{ | ||
207 | public string yytext ; | ||
208 | public Event (Parser yyp, string text ):base(((LSLSyntax | ||
209 | )yyp)){ yytext = text ; | ||
210 | } | ||
211 | |||
212 | public override string yyname { get { return "Event"; }} | ||
213 | public override int yynum { get { return 106; }} | ||
214 | public Event(Parser yyp):base(yyp){}} | ||
215 | //%+CompoundStatement+107 | ||
216 | public class CompoundStatement : SYMBOL{ | ||
217 | public CompoundStatement (Parser yyp):base(((LSLSyntax | ||
218 | )yyp)){} | ||
219 | public CompoundStatement (Parser yyp, StatementList sl ):base(((LSLSyntax | ||
220 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
221 | } | ||
222 | |||
223 | public override string yyname { get { return "CompoundStatement"; }} | ||
224 | public override int yynum { get { return 107; }} | ||
225 | } | ||
226 | //%+StatementList+108 | ||
227 | public class StatementList : SYMBOL{ | ||
228 | 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 ()); | ||
229 | else kids . Add ( s ); | ||
230 | } | ||
231 | public StatementList (Parser yyp, Statement s ):base(((LSLSyntax | ||
232 | )yyp)){ AddStatement ( s ); | ||
233 | } | ||
234 | public StatementList (Parser yyp, StatementList sl , Statement s ):base(((LSLSyntax | ||
235 | )yyp)){ while (0< sl . kids . Count ) kids . Add ( sl . kids . Pop ()); | ||
236 | AddStatement ( s ); | ||
237 | } | ||
238 | |||
239 | public override string yyname { get { return "StatementList"; }} | ||
240 | public override int yynum { get { return 108; }} | ||
241 | public StatementList(Parser yyp):base(yyp){}} | ||
242 | //%+Statement+109 | ||
243 | public class Statement : SYMBOL{ | ||
244 | public Statement (Parser yyp, Declaration d ):base(((LSLSyntax | ||
245 | )yyp)){ kids . Add ( d ); | ||
246 | } | ||
247 | public Statement (Parser yyp, CompoundStatement cs ):base(((LSLSyntax | ||
248 | )yyp)){ kids . Add ( cs ); | ||
249 | } | ||
250 | public Statement (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
251 | )yyp)){ kids . Add ( fc ); | ||
252 | } | ||
253 | public Statement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
254 | )yyp)){ kids . Add ( a ); | ||
255 | } | ||
256 | public Statement (Parser yyp, Expression e ):base(((LSLSyntax | ||
257 | )yyp)){ kids . Add ( e ); | ||
258 | } | ||
259 | public Statement (Parser yyp, ReturnStatement rs ):base(((LSLSyntax | ||
260 | )yyp)){ kids . Add ( rs ); | ||
261 | } | ||
262 | public Statement (Parser yyp, StateChange sc ):base(((LSLSyntax | ||
263 | )yyp)){ kids . Add ( sc ); | ||
264 | } | ||
265 | public Statement (Parser yyp, IfStatement ifs ):base(((LSLSyntax | ||
266 | )yyp)){ kids . Add ( ifs ); | ||
267 | } | ||
268 | public Statement (Parser yyp, WhileStatement ifs ):base(((LSLSyntax | ||
269 | )yyp)){ kids . Add ( ifs ); | ||
270 | } | ||
271 | public Statement (Parser yyp, DoWhileStatement ifs ):base(((LSLSyntax | ||
272 | )yyp)){ kids . Add ( ifs ); | ||
273 | } | ||
274 | public Statement (Parser yyp, ForLoop fl ):base(((LSLSyntax | ||
275 | )yyp)){ kids . Add ( fl ); | ||
276 | } | ||
277 | public Statement (Parser yyp, JumpLabel jl ):base(((LSLSyntax | ||
278 | )yyp)){ kids . Add ( jl ); | ||
279 | } | ||
280 | public Statement (Parser yyp, JumpStatement js ):base(((LSLSyntax | ||
281 | )yyp)){ kids . Add ( js ); | ||
282 | } | ||
283 | |||
284 | public override string yyname { get { return "Statement"; }} | ||
285 | public override int yynum { get { return 109; }} | ||
286 | public Statement(Parser yyp):base(yyp){}} | ||
287 | //%+Assignment+110 | ||
288 | public class Assignment : SYMBOL{ | ||
289 | private string m_assignmentType ; | ||
290 | public Assignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax | ||
291 | )yyp)){ m_assignmentType = assignmentType ; | ||
292 | kids . Add ( lhs ); | ||
293 | if ( rhs is ConstantExpression ) while (0< rhs . kids . Count ) kids . Add ( rhs . kids . Pop ()); | ||
294 | else kids . Add ( rhs ); | ||
295 | } | ||
296 | public string AssignmentType { get { return m_assignmentType ; | ||
297 | } | ||
298 | } | ||
299 | |||
300 | public override string yyname { get { return "Assignment"; }} | ||
301 | public override int yynum { get { return 110; }} | ||
302 | public Assignment(Parser yyp):base(yyp){}} | ||
303 | //%+ReturnStatement+111 | ||
304 | public class ReturnStatement : SYMBOL{ | ||
305 | public ReturnStatement (Parser yyp):base(((LSLSyntax | ||
306 | )yyp)){} | ||
307 | public ReturnStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
308 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
309 | else kids . Add ( e ); | ||
310 | } | ||
311 | |||
312 | public override string yyname { get { return "ReturnStatement"; }} | ||
313 | public override int yynum { get { return 111; }} | ||
314 | } | ||
315 | //%+JumpLabel+112 | ||
316 | public class JumpLabel : SYMBOL{ | ||
317 | private string m_labelName ; | ||
318 | public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax | ||
319 | )yyp)){ m_labelName = labelName ; | ||
320 | } | ||
321 | public string LabelName { get { return m_labelName ; | ||
322 | } | ||
323 | } | ||
324 | public override string ToString (){ return base . ToString ()+"<"+ m_labelName +">"; | ||
325 | } | ||
326 | |||
327 | public override string yyname { get { return "JumpLabel"; }} | ||
328 | public override int yynum { get { return 112; }} | ||
329 | public JumpLabel(Parser yyp):base(yyp){}} | ||
330 | //%+JumpStatement+113 | ||
331 | public class JumpStatement : SYMBOL{ | ||
332 | private string m_targetName ; | ||
333 | public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax | ||
334 | )yyp)){ m_targetName = targetName ; | ||
335 | } | ||
336 | public string TargetName { get { return m_targetName ; | ||
337 | } | ||
338 | } | ||
339 | public override string ToString (){ return base . ToString ()+"<"+ m_targetName +">"; | ||
340 | } | ||
341 | |||
342 | public override string yyname { get { return "JumpStatement"; }} | ||
343 | public override int yynum { get { return 113; }} | ||
344 | public JumpStatement(Parser yyp):base(yyp){}} | ||
345 | //%+StateChange+114 | ||
346 | public class StateChange : SYMBOL{ | ||
347 | private string m_newState ; | ||
348 | public StateChange (Parser yyp, string newState ):base(((LSLSyntax | ||
349 | )yyp)){ m_newState = newState ; | ||
350 | } | ||
351 | public string NewState { get { return m_newState ; | ||
352 | } | ||
353 | } | ||
354 | |||
355 | public override string yyname { get { return "StateChange"; }} | ||
356 | public override int yynum { get { return 114; }} | ||
357 | public StateChange(Parser yyp):base(yyp){}} | ||
358 | //%+IfStatement+115 | ||
359 | public class IfStatement : SYMBOL{ | ||
360 | private void AddStatement ( Statement s ){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
361 | else kids . Add ( s ); | ||
362 | } | ||
363 | public IfStatement (Parser yyp, Expression e , Statement ifs ):base(((LSLSyntax | ||
364 | )yyp)){ kids . Add ( e ); | ||
365 | AddStatement ( ifs ); | ||
366 | } | ||
367 | public IfStatement (Parser yyp, Expression e , Statement ifs , Statement es ):base(((LSLSyntax | ||
368 | )yyp)){ kids . Add ( e ); | ||
369 | AddStatement ( ifs ); | ||
370 | if ( es . kids . Top is IfStatement ) kids . Add ( es . kids . Pop ()); | ||
371 | else AddStatement ( es ); | ||
372 | } | ||
373 | |||
374 | public override string yyname { get { return "IfStatement"; }} | ||
375 | public override int yynum { get { return 115; }} | ||
376 | public IfStatement(Parser yyp):base(yyp){}} | ||
377 | //%+WhileStatement+116 | ||
378 | public class WhileStatement : SYMBOL{ | ||
379 | public WhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
380 | )yyp)){ kids . Add ( e ); | ||
381 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
382 | else kids . Add ( s ); | ||
383 | } | ||
384 | |||
385 | public override string yyname { get { return "WhileStatement"; }} | ||
386 | public override int yynum { get { return 116; }} | ||
387 | public WhileStatement(Parser yyp):base(yyp){}} | ||
388 | //%+DoWhileStatement+117 | ||
389 | public class DoWhileStatement : SYMBOL{ | ||
390 | public DoWhileStatement (Parser yyp, Expression e , Statement s ):base(((LSLSyntax | ||
391 | )yyp)){ if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
392 | else kids . Add ( s ); | ||
393 | kids . Add ( e ); | ||
394 | } | ||
395 | |||
396 | public override string yyname { get { return "DoWhileStatement"; }} | ||
397 | public override int yynum { get { return 117; }} | ||
398 | public DoWhileStatement(Parser yyp):base(yyp){}} | ||
399 | //%+ForLoop+118 | ||
400 | public class ForLoop : SYMBOL{ | ||
401 | public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax | ||
402 | )yyp)){ kids . Add ( flsa ); | ||
403 | kids . Add ( e ); | ||
404 | kids . Add ( flsb ); | ||
405 | if ( s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
406 | else kids . Add ( s ); | ||
407 | } | ||
408 | |||
409 | public override string yyname { get { return "ForLoop"; }} | ||
410 | public override int yynum { get { return 118; }} | ||
411 | public ForLoop(Parser yyp):base(yyp){}} | ||
412 | //%+ForLoopStatement+119 | ||
413 | public class ForLoopStatement : SYMBOL{ | ||
414 | public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
415 | )yyp)){ kids . Add ( e ); | ||
416 | } | ||
417 | public ForLoopStatement (Parser yyp, Assignment a ):base(((LSLSyntax | ||
418 | )yyp)){ kids . Add ( a ); | ||
419 | } | ||
420 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Expression e ):base(((LSLSyntax | ||
421 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
422 | kids . Add ( e ); | ||
423 | } | ||
424 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Assignment a ):base(((LSLSyntax | ||
425 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
426 | kids . Add ( a ); | ||
427 | } | ||
428 | |||
429 | public override string yyname { get { return "ForLoopStatement"; }} | ||
430 | public override int yynum { get { return 119; }} | ||
431 | public ForLoopStatement(Parser yyp):base(yyp){}} | ||
432 | //%+FunctionCall+120 | ||
433 | public class FunctionCall : SYMBOL{ | ||
434 | private string m_id ; | ||
435 | public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax | ||
436 | )yyp)){ m_id = id ; | ||
437 | kids . Add ( al ); | ||
438 | } | ||
439 | public override string ToString (){ return base . ToString ()+"<"+ m_id +">"; | ||
440 | } | ||
441 | public string Id { get { return m_id ; | ||
442 | } | ||
443 | } | ||
444 | |||
445 | public override string yyname { get { return "FunctionCall"; }} | ||
446 | public override int yynum { get { return 120; }} | ||
447 | public FunctionCall(Parser yyp):base(yyp){}} | ||
448 | //%+ArgumentList+121 | ||
449 | public class ArgumentList : SYMBOL{ | ||
450 | public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax | ||
451 | )yyp)){ AddArgument ( a ); | ||
452 | } | ||
453 | public ArgumentList (Parser yyp, ArgumentList al , Argument a ):base(((LSLSyntax | ||
454 | )yyp)){ while (0< al . kids . Count ) kids . Add ( al . kids . Pop ()); | ||
455 | AddArgument ( a ); | ||
456 | } | ||
457 | private void AddArgument ( Argument a ){ if ( a is ExpressionArgument ) while (0< a . kids . Count ) kids . Add ( a . kids . Pop ()); | ||
458 | else kids . Add ( a ); | ||
459 | } | ||
460 | |||
461 | public override string yyname { get { return "ArgumentList"; }} | ||
462 | public override int yynum { get { return 121; }} | ||
463 | public ArgumentList(Parser yyp):base(yyp){}} | ||
464 | //%+Argument+122 | ||
465 | public class Argument : SYMBOL{ | ||
466 | public override string yyname { get { return "Argument"; }} | ||
467 | public override int yynum { get { return 122; }} | ||
468 | public Argument(Parser yyp):base(yyp){}} | ||
469 | //%+ExpressionArgument+123 | ||
470 | public class ExpressionArgument : Argument{ | ||
471 | public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax | ||
472 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
473 | else kids . Add ( e ); | ||
474 | } | ||
475 | |||
476 | public override string yyname { get { return "ExpressionArgument"; }} | ||
477 | public override int yynum { get { return 123; }} | ||
478 | public ExpressionArgument(Parser yyp):base(yyp){}} | ||
479 | //%+Constant+124 | ||
480 | public class Constant : SYMBOL{ | ||
481 | private string m_type ; | ||
482 | private string m_val ; | ||
483 | public Constant (Parser yyp, string type , string val ):base(((LSLSyntax | ||
484 | )yyp)){ m_type = type ; | ||
485 | m_val = val ; | ||
486 | } | ||
487 | public override string ToString (){ return base . ToString ()+"<"+ m_type +":"+ m_val +">"; | ||
488 | } | ||
489 | public string Value { get { return m_val ; | ||
490 | } | ||
491 | set { m_val = value ; | ||
492 | } | ||
493 | } | ||
494 | public string Type { get { return m_type ; | ||
495 | } | ||
496 | set { m_type = value ; | ||
497 | } | ||
498 | } | ||
499 | |||
500 | public override string yyname { get { return "Constant"; }} | ||
501 | public override int yynum { get { return 124; }} | ||
502 | public Constant(Parser yyp):base(yyp){}} | ||
503 | //%+VectorConstant+125 | ||
504 | public class VectorConstant : Constant{ | ||
505 | public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax | ||
506 | )yyp),"vector", null ){ kids . Add ( valX ); | ||
507 | kids . Add ( valY ); | ||
508 | kids . Add ( valZ ); | ||
509 | } | ||
510 | |||
511 | public override string yyname { get { return "VectorConstant"; }} | ||
512 | public override int yynum { get { return 125; }} | ||
513 | public VectorConstant(Parser yyp):base(yyp){}} | ||
514 | //%+RotationConstant+126 | ||
515 | public class RotationConstant : Constant{ | ||
516 | public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax | ||
517 | )yyp),"rotation", null ){ kids . Add ( valX ); | ||
518 | kids . Add ( valY ); | ||
519 | kids . Add ( valZ ); | ||
520 | kids . Add ( valS ); | ||
521 | } | ||
522 | |||
523 | public override string yyname { get { return "RotationConstant"; }} | ||
524 | public override int yynum { get { return 126; }} | ||
525 | public RotationConstant(Parser yyp):base(yyp){}} | ||
526 | //%+ListConstant+127 | ||
527 | public class ListConstant : Constant{ | ||
528 | public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax | ||
529 | )yyp),"list", null ){ kids . Add ( al ); | ||
530 | } | ||
531 | |||
532 | public override string yyname { get { return "ListConstant"; }} | ||
533 | public override int yynum { get { return 127; }} | ||
534 | public ListConstant(Parser yyp):base(yyp){}} | ||
535 | //%+Expression+128 | ||
536 | public class Expression : SYMBOL{ | ||
537 | protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
538 | else kids . Add ( e ); | ||
539 | } | ||
540 | |||
541 | public override string yyname { get { return "Expression"; }} | ||
542 | public override int yynum { get { return 128; }} | ||
543 | public Expression(Parser yyp):base(yyp){}} | ||
544 | //%+ConstantExpression+129 | ||
545 | public class ConstantExpression : Expression{ | ||
546 | public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax | ||
547 | )yyp)){ kids . Add ( c ); | ||
548 | } | ||
549 | |||
550 | public override string yyname { get { return "ConstantExpression"; }} | ||
551 | public override int yynum { get { return 129; }} | ||
552 | public ConstantExpression(Parser yyp):base(yyp){}} | ||
553 | //%+IdentExpression+130 | ||
554 | public class IdentExpression : Expression{ | ||
555 | protected string m_name ; | ||
556 | public IdentExpression (Parser yyp, string name ):base(((LSLSyntax | ||
557 | )yyp)){ m_name = name ; | ||
558 | } | ||
559 | public override string ToString (){ return base . ToString ()+"<"+ m_name +">"; | ||
560 | } | ||
561 | public string Name { get { return m_name ; | ||
562 | } | ||
563 | } | ||
564 | |||
565 | public override string yyname { get { return "IdentExpression"; }} | ||
566 | public override int yynum { get { return 130; }} | ||
567 | public IdentExpression(Parser yyp):base(yyp){}} | ||
568 | //%+IdentDotExpression+131 | ||
569 | public class IdentDotExpression : IdentExpression{ | ||
570 | private string m_member ; | ||
571 | public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax | ||
572 | )yyp), name ){ m_member = member ; | ||
573 | } | ||
574 | public override string ToString (){ string baseToString = base . ToString (); | ||
575 | return baseToString . Substring (0, baseToString . Length -1)+"."+ m_member +">"; | ||
576 | } | ||
577 | public string Member { get { return m_member ; | ||
578 | } | ||
579 | } | ||
580 | |||
581 | public override string yyname { get { return "IdentDotExpression"; }} | ||
582 | public override int yynum { get { return 131; }} | ||
583 | public IdentDotExpression(Parser yyp):base(yyp){}} | ||
584 | //%+FunctionCallExpression+132 | ||
585 | public class FunctionCallExpression : Expression{ | ||
586 | public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
587 | )yyp)){ kids . Add ( fc ); | ||
588 | } | ||
589 | |||
590 | public override string yyname { get { return "FunctionCallExpression"; }} | ||
591 | public override int yynum { get { return 132; }} | ||
592 | public FunctionCallExpression(Parser yyp):base(yyp){}} | ||
593 | //%+BinaryExpression+133 | ||
594 | public class BinaryExpression : Expression{ | ||
595 | private string m_expressionSymbol ; | ||
596 | public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax | ||
597 | )yyp)){ m_expressionSymbol = expressionSymbol ; | ||
598 | AddExpression ( lhs ); | ||
599 | AddExpression ( rhs ); | ||
600 | } | ||
601 | public string ExpressionSymbol { get { return m_expressionSymbol ; | ||
602 | } | ||
603 | } | ||
604 | public override string ToString (){ return base . ToString ()+"<"+ m_expressionSymbol +">"; | ||
605 | } | ||
606 | |||
607 | public override string yyname { get { return "BinaryExpression"; }} | ||
608 | public override int yynum { get { return 133; }} | ||
609 | public BinaryExpression(Parser yyp):base(yyp){}} | ||
610 | //%+UnaryExpression+134 | ||
611 | public class UnaryExpression : Expression{ | ||
612 | private string m_unarySymbol ; | ||
613 | public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax | ||
614 | )yyp)){ m_unarySymbol = unarySymbol ; | ||
615 | kids . Add ( e ); | ||
616 | } | ||
617 | public string UnarySymbol { get { return m_unarySymbol ; | ||
618 | } | ||
619 | } | ||
620 | |||
621 | public override string yyname { get { return "UnaryExpression"; }} | ||
622 | public override int yynum { get { return 134; }} | ||
623 | public UnaryExpression(Parser yyp):base(yyp){}} | ||
624 | //%+TypecastExpression+135 | ||
625 | public class TypecastExpression : Expression{ | ||
626 | private string m_typecastType ; | ||
627 | public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax | ||
628 | )yyp)){ m_typecastType = typecastType ; | ||
629 | kids . Add ( rhs ); | ||
630 | } | ||
631 | public string TypecastType { get { return m_typecastType ; | ||
632 | } | ||
633 | set { m_typecastType = value ; | ||
634 | } | ||
635 | } | ||
636 | |||
637 | public override string yyname { get { return "TypecastExpression"; }} | ||
638 | public override int yynum { get { return 135; }} | ||
639 | public TypecastExpression(Parser yyp):base(yyp){}} | ||
640 | //%+ParenthesisExpression+136 | ||
641 | public class ParenthesisExpression : Expression{ | ||
642 | public ParenthesisExpression (Parser yyp, Expression e ):base(((LSLSyntax | ||
643 | )yyp)){ kids . Add ( e ); | ||
644 | } | ||
645 | |||
646 | public override string yyname { get { return "ParenthesisExpression"; }} | ||
647 | public override int yynum { get { return 136; }} | ||
648 | public ParenthesisExpression(Parser yyp):base(yyp){}} | ||
649 | //%+IncrementDecrementExpression+137 | ||
650 | public class IncrementDecrementExpression : Expression{ | ||
651 | private string m_name ; | ||
652 | private string m_operation ; | ||
653 | private bool m_postOperation ; | ||
654 | public IncrementDecrementExpression (Parser yyp, string name , string operation , bool postOperation ):base(((LSLSyntax | ||
655 | )yyp)){ m_name = name ; | ||
656 | m_operation = operation ; | ||
657 | m_postOperation = postOperation ; | ||
658 | } | ||
659 | public IncrementDecrementExpression (Parser yyp, IdentDotExpression ide , string operation , bool postOperation ):base(((LSLSyntax | ||
660 | )yyp)){ m_operation = operation ; | ||
661 | m_postOperation = postOperation ; | ||
662 | kids . Add ( ide ); | ||
663 | } | ||
664 | public override string ToString (){ return base . ToString ()+"<"+( m_postOperation ? m_name + m_operation : m_operation + m_name )+">"; | ||
665 | } | ||
666 | public string Name { get { return m_name ; | ||
667 | } | ||
668 | } | ||
669 | public string Operation { get { return m_operation ; | ||
670 | } | ||
671 | } | ||
672 | public bool PostOperation { get { return m_postOperation ; | ||
673 | } | ||
674 | } | ||
675 | |||
676 | public override string yyname { get { return "IncrementDecrementExpression"; }} | ||
677 | public override int yynum { get { return 137; }} | ||
678 | public IncrementDecrementExpression(Parser yyp):base(yyp){}} | ||
679 | |||
680 | public class LSLProgramRoot_1 : LSLProgramRoot { | ||
681 | public LSLProgramRoot_1(Parser yyq):base(yyq, | ||
682 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
683 | , | ||
684 | ((States)(yyq.StackAt(0).m_value)) | ||
685 | ){}} | ||
686 | |||
687 | public class LSLProgramRoot_2 : LSLProgramRoot { | ||
688 | public LSLProgramRoot_2(Parser yyq):base(yyq, | ||
689 | ((States)(yyq.StackAt(0).m_value)) | ||
690 | ){}} | ||
691 | |||
692 | public class GlobalDefinitions_1 : GlobalDefinitions { | ||
693 | public GlobalDefinitions_1(Parser yyq):base(yyq, | ||
694 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
695 | ){}} | ||
696 | |||
697 | public class GlobalDefinitions_2 : GlobalDefinitions { | ||
698 | public GlobalDefinitions_2(Parser yyq):base(yyq, | ||
699 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
700 | , | ||
701 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
702 | ){}} | ||
703 | |||
704 | public class GlobalDefinitions_3 : GlobalDefinitions { | ||
705 | public GlobalDefinitions_3(Parser yyq):base(yyq, | ||
706 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
707 | ){}} | ||
708 | |||
709 | public class GlobalDefinitions_4 : GlobalDefinitions { | ||
710 | public GlobalDefinitions_4(Parser yyq):base(yyq, | ||
711 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
712 | , | ||
713 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
714 | ){}} | ||
715 | |||
716 | public class GlobalVariableDeclaration_1 : GlobalVariableDeclaration { | ||
717 | public GlobalVariableDeclaration_1(Parser yyq):base(yyq, | ||
718 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
719 | ){}} | ||
720 | |||
721 | public class GlobalVariableDeclaration_2 : GlobalVariableDeclaration { | ||
722 | public GlobalVariableDeclaration_2(Parser yyq):base(yyq,new Assignment(((LSLSyntax | ||
723 | )yyq), | ||
724 | ((Declaration)(yyq.StackAt(3).m_value)) | ||
725 | , | ||
726 | ((Expression)(yyq.StackAt(1).m_value)) | ||
727 | , | ||
728 | ((EQUALS)(yyq.StackAt(2).m_value)) | ||
729 | .yytext)){}} | ||
730 | |||
731 | public class GlobalFunctionDefinition_1 : GlobalFunctionDefinition { | ||
732 | public GlobalFunctionDefinition_1(Parser yyq):base(yyq,"void", | ||
733 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
734 | .yytext, | ||
735 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
736 | , | ||
737 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
738 | ){}} | ||
739 | |||
740 | public class GlobalFunctionDefinition_2 : GlobalFunctionDefinition { | ||
741 | public GlobalFunctionDefinition_2(Parser yyq):base(yyq, | ||
742 | ((Typename)(yyq.StackAt(5).m_value)) | ||
743 | .yytext, | ||
744 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
745 | .yytext, | ||
746 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
747 | , | ||
748 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
749 | ){}} | ||
750 | |||
751 | public class States_1 : States { | ||
752 | public States_1(Parser yyq):base(yyq, | ||
753 | ((State)(yyq.StackAt(0).m_value)) | ||
754 | ){}} | ||
755 | |||
756 | public class States_2 : States { | ||
757 | public States_2(Parser yyq):base(yyq, | ||
758 | ((States)(yyq.StackAt(1).m_value)) | ||
759 | , | ||
760 | ((State)(yyq.StackAt(0).m_value)) | ||
761 | ){}} | ||
762 | |||
763 | public class State_1 : State { | ||
764 | public State_1(Parser yyq):base(yyq, | ||
765 | ((DEFAULT_STATE)(yyq.StackAt(3).m_value)) | ||
766 | .yytext, | ||
767 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
768 | ){}} | ||
769 | |||
770 | public class State_2 : State { | ||
771 | public State_2(Parser yyq):base(yyq, | ||
772 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
773 | .yytext, | ||
774 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
775 | ){}} | ||
776 | |||
777 | public class StateBody_1 : StateBody { | ||
778 | public StateBody_1(Parser yyq):base(yyq, | ||
779 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
780 | ){}} | ||
781 | |||
782 | public class StateBody_2 : StateBody { | ||
783 | public StateBody_2(Parser yyq):base(yyq, | ||
784 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
785 | , | ||
786 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
787 | ){}} | ||
788 | |||
789 | public class StateEvent_1 : StateEvent { | ||
790 | public StateEvent_1(Parser yyq):base(yyq, | ||
791 | ((Event)(yyq.StackAt(4).m_value)) | ||
792 | .yytext, | ||
793 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
794 | , | ||
795 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
796 | ){}} | ||
797 | |||
798 | public class ArgumentDeclarationList_1 : ArgumentDeclarationList { | ||
799 | public ArgumentDeclarationList_1(Parser yyq):base(yyq, | ||
800 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
801 | ){}} | ||
802 | |||
803 | public class ArgumentDeclarationList_2 : ArgumentDeclarationList { | ||
804 | public ArgumentDeclarationList_2(Parser yyq):base(yyq, | ||
805 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
806 | , | ||
807 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
808 | ){}} | ||
809 | |||
810 | public class Declaration_1 : Declaration { | ||
811 | public Declaration_1(Parser yyq):base(yyq, | ||
812 | ((Typename)(yyq.StackAt(1).m_value)) | ||
813 | .yytext, | ||
814 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
815 | .yytext){}} | ||
816 | |||
817 | public class CompoundStatement_1 : CompoundStatement { | ||
818 | public CompoundStatement_1(Parser yyq):base(yyq){}} | ||
819 | |||
820 | public class CompoundStatement_2 : CompoundStatement { | ||
821 | public CompoundStatement_2(Parser yyq):base(yyq, | ||
822 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
823 | ){}} | ||
824 | |||
825 | public class StatementList_1 : StatementList { | ||
826 | public StatementList_1(Parser yyq):base(yyq, | ||
827 | ((Statement)(yyq.StackAt(0).m_value)) | ||
828 | ){}} | ||
829 | |||
830 | public class StatementList_2 : StatementList { | ||
831 | public StatementList_2(Parser yyq):base(yyq, | ||
832 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
833 | , | ||
834 | ((Statement)(yyq.StackAt(0).m_value)) | ||
835 | ){}} | ||
836 | |||
837 | public class Statement_1 : Statement { | ||
838 | public Statement_1(Parser yyq):base(yyq, | ||
839 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
840 | ){}} | ||
841 | |||
842 | public class Statement_2 : Statement { | ||
843 | public Statement_2(Parser yyq):base(yyq, | ||
844 | ((Assignment)(yyq.StackAt(1).m_value)) | ||
845 | ){}} | ||
846 | |||
847 | public class Statement_3 : Statement { | ||
848 | public Statement_3(Parser yyq):base(yyq, | ||
849 | ((Expression)(yyq.StackAt(1).m_value)) | ||
850 | ){}} | ||
851 | |||
852 | public class Statement_4 : Statement { | ||
853 | public Statement_4(Parser yyq):base(yyq, | ||
854 | ((ReturnStatement)(yyq.StackAt(1).m_value)) | ||
855 | ){}} | ||
856 | |||
857 | public class Statement_5 : Statement { | ||
858 | public Statement_5(Parser yyq):base(yyq, | ||
859 | ((JumpLabel)(yyq.StackAt(1).m_value)) | ||
860 | ){}} | ||
861 | |||
862 | public class Statement_6 : Statement { | ||
863 | public Statement_6(Parser yyq):base(yyq, | ||
864 | ((JumpStatement)(yyq.StackAt(1).m_value)) | ||
865 | ){}} | ||
866 | |||
867 | public class Statement_7 : Statement { | ||
868 | public Statement_7(Parser yyq):base(yyq, | ||
869 | ((StateChange)(yyq.StackAt(1).m_value)) | ||
870 | ){}} | ||
871 | |||
872 | public class Statement_8 : Statement { | ||
873 | public Statement_8(Parser yyq):base(yyq, | ||
874 | ((IfStatement)(yyq.StackAt(0).m_value)) | ||
875 | ){}} | ||
876 | |||
877 | public class Statement_9 : Statement { | ||
878 | public Statement_9(Parser yyq):base(yyq, | ||
879 | ((WhileStatement)(yyq.StackAt(0).m_value)) | ||
880 | ){}} | ||
881 | |||
882 | public class Statement_10 : Statement { | ||
883 | public Statement_10(Parser yyq):base(yyq, | ||
884 | ((DoWhileStatement)(yyq.StackAt(0).m_value)) | ||
885 | ){}} | ||
886 | |||
887 | public class Statement_11 : Statement { | ||
888 | public Statement_11(Parser yyq):base(yyq, | ||
889 | ((ForLoop)(yyq.StackAt(0).m_value)) | ||
890 | ){}} | ||
891 | |||
892 | public class Statement_12 : Statement { | ||
893 | public Statement_12(Parser yyq):base(yyq, | ||
894 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
895 | ){}} | ||
896 | |||
897 | public class JumpLabel_1 : JumpLabel { | ||
898 | public JumpLabel_1(Parser yyq):base(yyq, | ||
899 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
900 | .yytext){}} | ||
901 | |||
902 | public class JumpStatement_1 : JumpStatement { | ||
903 | public JumpStatement_1(Parser yyq):base(yyq, | ||
904 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
905 | .yytext){}} | ||
906 | |||
907 | public class StateChange_1 : StateChange { | ||
908 | public StateChange_1(Parser yyq):base(yyq, | ||
909 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
910 | .yytext){}} | ||
911 | |||
912 | public class StateChange_2 : StateChange { | ||
913 | public StateChange_2(Parser yyq):base(yyq, | ||
914 | ((DEFAULT_STATE)(yyq.StackAt(0).m_value)) | ||
915 | .yytext){}} | ||
916 | |||
917 | public class IfStatement_1 : IfStatement { | ||
918 | public IfStatement_1(Parser yyq):base(yyq, | ||
919 | ((Expression)(yyq.StackAt(2).m_value)) | ||
920 | , | ||
921 | ((Statement)(yyq.StackAt(0).m_value)) | ||
922 | ){}} | ||
923 | |||
924 | public class IfStatement_2 : IfStatement { | ||
925 | public IfStatement_2(Parser yyq):base(yyq, | ||
926 | ((Expression)(yyq.StackAt(4).m_value)) | ||
927 | , | ||
928 | ((Statement)(yyq.StackAt(2).m_value)) | ||
929 | , | ||
930 | ((Statement)(yyq.StackAt(0).m_value)) | ||
931 | ){}} | ||
932 | |||
933 | public class WhileStatement_1 : WhileStatement { | ||
934 | public WhileStatement_1(Parser yyq):base(yyq, | ||
935 | ((Expression)(yyq.StackAt(2).m_value)) | ||
936 | , | ||
937 | ((Statement)(yyq.StackAt(0).m_value)) | ||
938 | ){}} | ||
939 | |||
940 | public class DoWhileStatement_1 : DoWhileStatement { | ||
941 | public DoWhileStatement_1(Parser yyq):base(yyq, | ||
942 | ((Expression)(yyq.StackAt(2).m_value)) | ||
943 | , | ||
944 | ((Statement)(yyq.StackAt(5).m_value)) | ||
945 | ){}} | ||
946 | |||
947 | public class ForLoop_1 : ForLoop { | ||
948 | public ForLoop_1(Parser yyq):base(yyq, | ||
949 | ((ForLoopStatement)(yyq.StackAt(6).m_value)) | ||
950 | , | ||
951 | ((Expression)(yyq.StackAt(4).m_value)) | ||
952 | , | ||
953 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
954 | , | ||
955 | ((Statement)(yyq.StackAt(0).m_value)) | ||
956 | ){}} | ||
957 | |||
958 | public class ForLoopStatement_1 : ForLoopStatement { | ||
959 | public ForLoopStatement_1(Parser yyq):base(yyq, | ||
960 | ((Expression)(yyq.StackAt(0).m_value)) | ||
961 | ){}} | ||
962 | |||
963 | public class ForLoopStatement_2 : ForLoopStatement { | ||
964 | public ForLoopStatement_2(Parser yyq):base(yyq, | ||
965 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
966 | ){}} | ||
967 | |||
968 | public class ForLoopStatement_3 : ForLoopStatement { | ||
969 | public ForLoopStatement_3(Parser yyq):base(yyq, | ||
970 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
971 | , | ||
972 | ((Expression)(yyq.StackAt(0).m_value)) | ||
973 | ){}} | ||
974 | |||
975 | public class ForLoopStatement_4 : ForLoopStatement { | ||
976 | public ForLoopStatement_4(Parser yyq):base(yyq, | ||
977 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
978 | , | ||
979 | ((Assignment)(yyq.StackAt(0).m_value)) | ||
980 | ){}} | ||
981 | |||
982 | public class Assignment_1 : Assignment { | ||
983 | public Assignment_1(Parser yyq):base(yyq, | ||
984 | ((Declaration)(yyq.StackAt(2).m_value)) | ||
985 | , | ||
986 | ((Expression)(yyq.StackAt(0).m_value)) | ||
987 | , | ||
988 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
989 | .yytext){}} | ||
990 | |||
991 | public class Assignment_2 : Assignment { | ||
992 | public Assignment_2(Parser yyq):base(yyq, | ||
993 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
994 | , | ||
995 | ((Expression)(yyq.StackAt(0).m_value)) | ||
996 | , | ||
997 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
998 | .yytext){}} | ||
999 | |||
1000 | public class Assignment_3 : Assignment { | ||
1001 | public Assignment_3(Parser yyq):base(yyq, | ||
1002 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1003 | , | ||
1004 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1005 | , | ||
1006 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1007 | .yytext){}} | ||
1008 | |||
1009 | public class Assignment_4 : Assignment { | ||
1010 | public Assignment_4(Parser yyq):base(yyq, | ||
1011 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1012 | , | ||
1013 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1014 | , | ||
1015 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1016 | .yytext){}} | ||
1017 | |||
1018 | public class Assignment_5 : Assignment { | ||
1019 | public Assignment_5(Parser yyq):base(yyq, | ||
1020 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1021 | , | ||
1022 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1023 | , | ||
1024 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1025 | .yytext){}} | ||
1026 | |||
1027 | public class Assignment_6 : Assignment { | ||
1028 | public Assignment_6(Parser yyq):base(yyq, | ||
1029 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1030 | , | ||
1031 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1032 | , | ||
1033 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1034 | .yytext){}} | ||
1035 | |||
1036 | public class Assignment_7 : Assignment { | ||
1037 | public Assignment_7(Parser yyq):base(yyq, | ||
1038 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1039 | , | ||
1040 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1041 | , | ||
1042 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1043 | .yytext){}} | ||
1044 | |||
1045 | public class Assignment_8 : Assignment { | ||
1046 | public Assignment_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1047 | )yyq), | ||
1048 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1049 | .yytext, | ||
1050 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1051 | .yytext), | ||
1052 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1053 | , | ||
1054 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1055 | .yytext){}} | ||
1056 | |||
1057 | public class ReturnStatement_1 : ReturnStatement { | ||
1058 | public ReturnStatement_1(Parser yyq):base(yyq, | ||
1059 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1060 | ){}} | ||
1061 | |||
1062 | public class ReturnStatement_2 : ReturnStatement { | ||
1063 | public ReturnStatement_2(Parser yyq):base(yyq){}} | ||
1064 | |||
1065 | public class Constant_1 : Constant { | ||
1066 | public Constant_1(Parser yyq):base(yyq,"integer", | ||
1067 | ((INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1068 | .yytext){}} | ||
1069 | |||
1070 | public class Constant_2 : Constant { | ||
1071 | public Constant_2(Parser yyq):base(yyq,"integer", | ||
1072 | ((HEX_INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1073 | .yytext){}} | ||
1074 | |||
1075 | public class Constant_3 : Constant { | ||
1076 | public Constant_3(Parser yyq):base(yyq,"float", | ||
1077 | ((FLOAT_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1078 | .yytext){}} | ||
1079 | |||
1080 | public class Constant_4 : Constant { | ||
1081 | public Constant_4(Parser yyq):base(yyq,"string", | ||
1082 | ((STRING_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1083 | .yytext){}} | ||
1084 | |||
1085 | public class VectorConstant_1 : VectorConstant { | ||
1086 | public VectorConstant_1(Parser yyq):base(yyq, | ||
1087 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1088 | , | ||
1089 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1090 | , | ||
1091 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1092 | ){}} | ||
1093 | |||
1094 | public class RotationConstant_1 : RotationConstant { | ||
1095 | public RotationConstant_1(Parser yyq):base(yyq, | ||
1096 | ((Expression)(yyq.StackAt(7).m_value)) | ||
1097 | , | ||
1098 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1099 | , | ||
1100 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1101 | , | ||
1102 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1103 | ){}} | ||
1104 | |||
1105 | public class ListConstant_1 : ListConstant { | ||
1106 | public ListConstant_1(Parser yyq):base(yyq, | ||
1107 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1108 | ){}} | ||
1109 | |||
1110 | public class ConstantExpression_1 : ConstantExpression { | ||
1111 | public ConstantExpression_1(Parser yyq):base(yyq, | ||
1112 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1113 | ){}} | ||
1114 | |||
1115 | public class IdentExpression_1 : IdentExpression { | ||
1116 | public IdentExpression_1(Parser yyq):base(yyq, | ||
1117 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1118 | .yytext){}} | ||
1119 | |||
1120 | public class IdentDotExpression_1 : IdentDotExpression { | ||
1121 | public IdentDotExpression_1(Parser yyq):base(yyq, | ||
1122 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1123 | .yytext, | ||
1124 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1125 | .yytext){}} | ||
1126 | |||
1127 | public class IncrementDecrementExpression_1 : IncrementDecrementExpression { | ||
1128 | public IncrementDecrementExpression_1(Parser yyq):base(yyq, | ||
1129 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1130 | .yytext, | ||
1131 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1132 | .yytext, true){}} | ||
1133 | |||
1134 | public class IncrementDecrementExpression_2 : IncrementDecrementExpression { | ||
1135 | public IncrementDecrementExpression_2(Parser yyq):base(yyq, | ||
1136 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1137 | .yytext, | ||
1138 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1139 | .yytext, true){}} | ||
1140 | |||
1141 | public class IncrementDecrementExpression_3 : IncrementDecrementExpression { | ||
1142 | public IncrementDecrementExpression_3(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1143 | )yyq), | ||
1144 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1145 | .yytext, | ||
1146 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1147 | .yytext), | ||
1148 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1149 | .yytext, true){}} | ||
1150 | |||
1151 | public class IncrementDecrementExpression_4 : IncrementDecrementExpression { | ||
1152 | public IncrementDecrementExpression_4(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1153 | )yyq), | ||
1154 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1155 | .yytext, | ||
1156 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1157 | .yytext), | ||
1158 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1159 | .yytext, true){}} | ||
1160 | |||
1161 | public class IncrementDecrementExpression_5 : IncrementDecrementExpression { | ||
1162 | public IncrementDecrementExpression_5(Parser yyq):base(yyq, | ||
1163 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1164 | .yytext, | ||
1165 | ((INCREMENT)(yyq.StackAt(1).m_value)) | ||
1166 | .yytext, false){}} | ||
1167 | |||
1168 | public class IncrementDecrementExpression_6 : IncrementDecrementExpression { | ||
1169 | public IncrementDecrementExpression_6(Parser yyq):base(yyq, | ||
1170 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1171 | .yytext, | ||
1172 | ((DECREMENT)(yyq.StackAt(1).m_value)) | ||
1173 | .yytext, false){}} | ||
1174 | |||
1175 | public class IncrementDecrementExpression_7 : IncrementDecrementExpression { | ||
1176 | public IncrementDecrementExpression_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1177 | )yyq), | ||
1178 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1179 | .yytext, | ||
1180 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1181 | .yytext), | ||
1182 | ((INCREMENT)(yyq.StackAt(3).m_value)) | ||
1183 | .yytext, false){}} | ||
1184 | |||
1185 | public class IncrementDecrementExpression_8 : IncrementDecrementExpression { | ||
1186 | public IncrementDecrementExpression_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1187 | )yyq), | ||
1188 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1189 | .yytext, | ||
1190 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1191 | .yytext), | ||
1192 | ((DECREMENT)(yyq.StackAt(3).m_value)) | ||
1193 | .yytext, false){}} | ||
1194 | |||
1195 | public class FunctionCallExpression_1 : FunctionCallExpression { | ||
1196 | public FunctionCallExpression_1(Parser yyq):base(yyq, | ||
1197 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1198 | ){}} | ||
1199 | |||
1200 | public class BinaryExpression_1 : BinaryExpression { | ||
1201 | public BinaryExpression_1(Parser yyq):base(yyq, | ||
1202 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1203 | , | ||
1204 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1205 | , | ||
1206 | ((PLUS)(yyq.StackAt(1).m_value)) | ||
1207 | .yytext){}} | ||
1208 | |||
1209 | public class BinaryExpression_2 : BinaryExpression { | ||
1210 | public BinaryExpression_2(Parser yyq):base(yyq, | ||
1211 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1212 | , | ||
1213 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1214 | , | ||
1215 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1216 | .yytext){}} | ||
1217 | |||
1218 | public class BinaryExpression_3 : BinaryExpression { | ||
1219 | public BinaryExpression_3(Parser yyq):base(yyq, | ||
1220 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1221 | , | ||
1222 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1223 | , | ||
1224 | ((STAR)(yyq.StackAt(1).m_value)) | ||
1225 | .yytext){}} | ||
1226 | |||
1227 | public class BinaryExpression_4 : BinaryExpression { | ||
1228 | public BinaryExpression_4(Parser yyq):base(yyq, | ||
1229 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1230 | , | ||
1231 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1232 | , | ||
1233 | ((SLASH)(yyq.StackAt(1).m_value)) | ||
1234 | .yytext){}} | ||
1235 | |||
1236 | public class BinaryExpression_5 : BinaryExpression { | ||
1237 | public BinaryExpression_5(Parser yyq):base(yyq, | ||
1238 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1239 | , | ||
1240 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1241 | , | ||
1242 | ((PERCENT)(yyq.StackAt(1).m_value)) | ||
1243 | .yytext){}} | ||
1244 | |||
1245 | public class BinaryExpression_6 : BinaryExpression { | ||
1246 | public BinaryExpression_6(Parser yyq):base(yyq, | ||
1247 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1248 | , | ||
1249 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1250 | , | ||
1251 | ((AMP)(yyq.StackAt(1).m_value)) | ||
1252 | .yytext){}} | ||
1253 | |||
1254 | public class BinaryExpression_7 : BinaryExpression { | ||
1255 | public BinaryExpression_7(Parser yyq):base(yyq, | ||
1256 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1257 | , | ||
1258 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1259 | , | ||
1260 | ((STROKE)(yyq.StackAt(1).m_value)) | ||
1261 | .yytext){}} | ||
1262 | |||
1263 | public class BinaryExpression_8 : BinaryExpression { | ||
1264 | public BinaryExpression_8(Parser yyq):base(yyq, | ||
1265 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1266 | , | ||
1267 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1268 | , | ||
1269 | ((CARET)(yyq.StackAt(1).m_value)) | ||
1270 | .yytext){}} | ||
1271 | |||
1272 | public class BinaryExpression_9 : BinaryExpression { | ||
1273 | public BinaryExpression_9(Parser yyq):base(yyq, | ||
1274 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1275 | , | ||
1276 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1277 | , | ||
1278 | ((RIGHT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1279 | .yytext){}} | ||
1280 | |||
1281 | public class BinaryExpression_10 : BinaryExpression { | ||
1282 | public BinaryExpression_10(Parser yyq):base(yyq, | ||
1283 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1284 | , | ||
1285 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1286 | , | ||
1287 | ((LEFT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1288 | .yytext){}} | ||
1289 | |||
1290 | public class BinaryExpression_11 : BinaryExpression { | ||
1291 | public BinaryExpression_11(Parser yyq):base(yyq, | ||
1292 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1293 | , | ||
1294 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1295 | , | ||
1296 | ((EQUALS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1297 | .yytext){}} | ||
1298 | |||
1299 | public class BinaryExpression_12 : BinaryExpression { | ||
1300 | public BinaryExpression_12(Parser yyq):base(yyq, | ||
1301 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1302 | , | ||
1303 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1304 | , | ||
1305 | ((EXCLAMATION_EQUALS)(yyq.StackAt(1).m_value)) | ||
1306 | .yytext){}} | ||
1307 | |||
1308 | public class BinaryExpression_13 : BinaryExpression { | ||
1309 | public BinaryExpression_13(Parser yyq):base(yyq, | ||
1310 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1311 | , | ||
1312 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1313 | , | ||
1314 | ((LESS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1315 | .yytext){}} | ||
1316 | |||
1317 | public class BinaryExpression_14 : BinaryExpression { | ||
1318 | public BinaryExpression_14(Parser yyq):base(yyq, | ||
1319 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1320 | , | ||
1321 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1322 | , | ||
1323 | ((GREATER_EQUALS)(yyq.StackAt(1).m_value)) | ||
1324 | .yytext){}} | ||
1325 | |||
1326 | public class BinaryExpression_15 : BinaryExpression { | ||
1327 | public BinaryExpression_15(Parser yyq):base(yyq, | ||
1328 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1329 | , | ||
1330 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1331 | , | ||
1332 | ((AMP_AMP)(yyq.StackAt(1).m_value)) | ||
1333 | .yytext){}} | ||
1334 | |||
1335 | public class BinaryExpression_16 : BinaryExpression { | ||
1336 | public BinaryExpression_16(Parser yyq):base(yyq, | ||
1337 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1338 | , | ||
1339 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1340 | , | ||
1341 | ((STROKE_STROKE)(yyq.StackAt(1).m_value)) | ||
1342 | .yytext){}} | ||
1343 | |||
1344 | public class BinaryExpression_17 : BinaryExpression { | ||
1345 | public BinaryExpression_17(Parser yyq):base(yyq, | ||
1346 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1347 | , | ||
1348 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1349 | , | ||
1350 | ((LEFT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1351 | .yytext){}} | ||
1352 | |||
1353 | public class BinaryExpression_18 : BinaryExpression { | ||
1354 | public BinaryExpression_18(Parser yyq):base(yyq, | ||
1355 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1356 | , | ||
1357 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1358 | , | ||
1359 | ((RIGHT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1360 | .yytext){}} | ||
1361 | |||
1362 | public class UnaryExpression_1 : UnaryExpression { | ||
1363 | public UnaryExpression_1(Parser yyq):base(yyq, | ||
1364 | ((EXCLAMATION)(yyq.StackAt(1).m_value)) | ||
1365 | .yytext, | ||
1366 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1367 | ){}} | ||
1368 | |||
1369 | public class UnaryExpression_2 : UnaryExpression { | ||
1370 | public UnaryExpression_2(Parser yyq):base(yyq, | ||
1371 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1372 | .yytext, | ||
1373 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1374 | ){}} | ||
1375 | |||
1376 | public class UnaryExpression_3 : UnaryExpression { | ||
1377 | public UnaryExpression_3(Parser yyq):base(yyq, | ||
1378 | ((TILDE)(yyq.StackAt(1).m_value)) | ||
1379 | .yytext, | ||
1380 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1381 | ){}} | ||
1382 | |||
1383 | public class ParenthesisExpression_1 : ParenthesisExpression { | ||
1384 | public ParenthesisExpression_1(Parser yyq):base(yyq, | ||
1385 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1386 | ){}} | ||
1387 | |||
1388 | public class TypecastExpression_1 : TypecastExpression { | ||
1389 | public TypecastExpression_1(Parser yyq):base(yyq, | ||
1390 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1391 | .yytext, | ||
1392 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1393 | ){}} | ||
1394 | |||
1395 | public class TypecastExpression_2 : TypecastExpression { | ||
1396 | public TypecastExpression_2(Parser yyq):base(yyq, | ||
1397 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1398 | .yytext, new IdentExpression(((LSLSyntax | ||
1399 | )yyq), | ||
1400 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1401 | .yytext)){}} | ||
1402 | |||
1403 | public class TypecastExpression_3 : TypecastExpression { | ||
1404 | public TypecastExpression_3(Parser yyq):base(yyq, | ||
1405 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1406 | .yytext, new IdentDotExpression(((LSLSyntax | ||
1407 | )yyq), | ||
1408 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1409 | .yytext, | ||
1410 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1411 | .yytext)){}} | ||
1412 | |||
1413 | public class TypecastExpression_4 : TypecastExpression { | ||
1414 | public TypecastExpression_4(Parser yyq):base(yyq, | ||
1415 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1416 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1417 | )yyq), | ||
1418 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1419 | .yytext, | ||
1420 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1421 | .yytext, true)){}} | ||
1422 | |||
1423 | public class TypecastExpression_5 : TypecastExpression { | ||
1424 | public TypecastExpression_5(Parser yyq):base(yyq, | ||
1425 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1426 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1427 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1428 | )yyq), | ||
1429 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1430 | .yytext, | ||
1431 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1432 | .yytext), | ||
1433 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1434 | .yytext, true)){}} | ||
1435 | |||
1436 | public class TypecastExpression_6 : TypecastExpression { | ||
1437 | public TypecastExpression_6(Parser yyq):base(yyq, | ||
1438 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1439 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1440 | )yyq), | ||
1441 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1442 | .yytext, | ||
1443 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1444 | .yytext, true)){}} | ||
1445 | |||
1446 | public class TypecastExpression_7 : TypecastExpression { | ||
1447 | public TypecastExpression_7(Parser yyq):base(yyq, | ||
1448 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1449 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1450 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1451 | )yyq), | ||
1452 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1453 | .yytext, | ||
1454 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1455 | .yytext), | ||
1456 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1457 | .yytext, true)){}} | ||
1458 | |||
1459 | public class TypecastExpression_8 : TypecastExpression { | ||
1460 | public TypecastExpression_8(Parser yyq):base(yyq, | ||
1461 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1462 | .yytext, | ||
1463 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1464 | ){}} | ||
1465 | |||
1466 | public class TypecastExpression_9 : TypecastExpression { | ||
1467 | public TypecastExpression_9(Parser yyq):base(yyq, | ||
1468 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1469 | .yytext, | ||
1470 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1471 | ){}} | ||
1472 | |||
1473 | public class FunctionCall_1 : FunctionCall { | ||
1474 | public FunctionCall_1(Parser yyq):base(yyq, | ||
1475 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1476 | .yytext, | ||
1477 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1478 | ){}} | ||
1479 | |||
1480 | public class ArgumentList_1 : ArgumentList { | ||
1481 | public ArgumentList_1(Parser yyq):base(yyq, | ||
1482 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1483 | ){}} | ||
1484 | |||
1485 | public class ArgumentList_2 : ArgumentList { | ||
1486 | public ArgumentList_2(Parser yyq):base(yyq, | ||
1487 | ((ArgumentList)(yyq.StackAt(2).m_value)) | ||
1488 | , | ||
1489 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1490 | ){}} | ||
1491 | |||
1492 | public class ExpressionArgument_1 : ExpressionArgument { | ||
1493 | public ExpressionArgument_1(Parser yyq):base(yyq, | ||
1494 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1495 | ){}} | ||
1496 | |||
1497 | public class Typename_1 : Typename { | ||
1498 | public Typename_1(Parser yyq):base(yyq, | ||
1499 | ((INTEGER_TYPE)(yyq.StackAt(0).m_value)) | ||
1500 | .yytext){}} | ||
1501 | |||
1502 | public class Typename_2 : Typename { | ||
1503 | public Typename_2(Parser yyq):base(yyq, | ||
1504 | ((FLOAT_TYPE)(yyq.StackAt(0).m_value)) | ||
1505 | .yytext){}} | ||
1506 | |||
1507 | public class Typename_3 : Typename { | ||
1508 | public Typename_3(Parser yyq):base(yyq, | ||
1509 | ((STRING_TYPE)(yyq.StackAt(0).m_value)) | ||
1510 | .yytext){}} | ||
1511 | |||
1512 | public class Typename_4 : Typename { | ||
1513 | public Typename_4(Parser yyq):base(yyq, | ||
1514 | ((KEY_TYPE)(yyq.StackAt(0).m_value)) | ||
1515 | .yytext){}} | ||
1516 | |||
1517 | public class Typename_5 : Typename { | ||
1518 | public Typename_5(Parser yyq):base(yyq, | ||
1519 | ((VECTOR_TYPE)(yyq.StackAt(0).m_value)) | ||
1520 | .yytext){}} | ||
1521 | |||
1522 | public class Typename_6 : Typename { | ||
1523 | public Typename_6(Parser yyq):base(yyq, | ||
1524 | ((ROTATION_TYPE)(yyq.StackAt(0).m_value)) | ||
1525 | .yytext){}} | ||
1526 | |||
1527 | public class Typename_7 : Typename { | ||
1528 | public Typename_7(Parser yyq):base(yyq, | ||
1529 | ((LIST_TYPE)(yyq.StackAt(0).m_value)) | ||
1530 | .yytext){}} | ||
1531 | |||
1532 | public class Event_1 : Event { | ||
1533 | public Event_1(Parser yyq):base(yyq, | ||
1534 | ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1535 | .yytext){}} | ||
1536 | |||
1537 | public class Event_2 : Event { | ||
1538 | public Event_2(Parser yyq):base(yyq, | ||
1539 | ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1540 | .yytext){}} | ||
1541 | |||
1542 | public class Event_3 : Event { | ||
1543 | public Event_3(Parser yyq):base(yyq, | ||
1544 | ((ATTACH_EVENT)(yyq.StackAt(0).m_value)) | ||
1545 | .yytext){}} | ||
1546 | |||
1547 | public class Event_4 : Event { | ||
1548 | public Event_4(Parser yyq):base(yyq, | ||
1549 | ((CHANGED_EVENT)(yyq.StackAt(0).m_value)) | ||
1550 | .yytext){}} | ||
1551 | |||
1552 | public class Event_5 : Event { | ||
1553 | public Event_5(Parser yyq):base(yyq, | ||
1554 | ((COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1555 | .yytext){}} | ||
1556 | |||
1557 | public class Event_6 : Event { | ||
1558 | public Event_6(Parser yyq):base(yyq, | ||
1559 | ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1560 | .yytext){}} | ||
1561 | |||
1562 | public class Event_7 : Event { | ||
1563 | public Event_7(Parser yyq):base(yyq, | ||
1564 | ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1565 | .yytext){}} | ||
1566 | |||
1567 | public class Event_8 : Event { | ||
1568 | public Event_8(Parser yyq):base(yyq, | ||
1569 | ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) | ||
1570 | .yytext){}} | ||
1571 | |||
1572 | public class Event_9 : Event { | ||
1573 | public Event_9(Parser yyq):base(yyq, | ||
1574 | ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) | ||
1575 | .yytext){}} | ||
1576 | |||
1577 | public class Event_10 : Event { | ||
1578 | public Event_10(Parser yyq):base(yyq, | ||
1579 | ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) | ||
1580 | .yytext){}} | ||
1581 | |||
1582 | public class Event_11 : Event { | ||
1583 | public Event_11(Parser yyq):base(yyq, | ||
1584 | ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) | ||
1585 | .yytext){}} | ||
1586 | |||
1587 | public class Event_12 : Event { | ||
1588 | public Event_12(Parser yyq):base(yyq, | ||
1589 | ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1590 | .yytext){}} | ||
1591 | |||
1592 | public class Event_13 : Event { | ||
1593 | public Event_13(Parser yyq):base(yyq, | ||
1594 | ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1595 | .yytext){}} | ||
1596 | |||
1597 | public class Event_14 : Event { | ||
1598 | public Event_14(Parser yyq):base(yyq, | ||
1599 | ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1600 | .yytext){}} | ||
1601 | |||
1602 | public class Event_15 : Event { | ||
1603 | public Event_15(Parser yyq):base(yyq, | ||
1604 | ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) | ||
1605 | .yytext){}} | ||
1606 | |||
1607 | public class Event_16 : Event { | ||
1608 | public Event_16(Parser yyq):base(yyq, | ||
1609 | ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) | ||
1610 | .yytext){}} | ||
1611 | |||
1612 | public class Event_17 : Event { | ||
1613 | public Event_17(Parser yyq):base(yyq, | ||
1614 | ((MONEY_EVENT)(yyq.StackAt(0).m_value)) | ||
1615 | .yytext){}} | ||
1616 | |||
1617 | public class Event_18 : Event { | ||
1618 | public Event_18(Parser yyq):base(yyq, | ||
1619 | ((MOVING_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1620 | .yytext){}} | ||
1621 | |||
1622 | public class Event_19 : Event { | ||
1623 | public Event_19(Parser yyq):base(yyq, | ||
1624 | ((MOVING_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1625 | .yytext){}} | ||
1626 | |||
1627 | public class Event_20 : Event { | ||
1628 | public Event_20(Parser yyq):base(yyq, | ||
1629 | ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1630 | .yytext){}} | ||
1631 | |||
1632 | public class Event_21 : Event { | ||
1633 | public Event_21(Parser yyq):base(yyq, | ||
1634 | ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1635 | .yytext){}} | ||
1636 | |||
1637 | public class Event_22 : Event { | ||
1638 | public Event_22(Parser yyq):base(yyq, | ||
1639 | ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1640 | .yytext){}} | ||
1641 | |||
1642 | public class Event_23 : Event { | ||
1643 | public Event_23(Parser yyq):base(yyq, | ||
1644 | ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1645 | .yytext){}} | ||
1646 | |||
1647 | public class Event_24 : Event { | ||
1648 | public Event_24(Parser yyq):base(yyq, | ||
1649 | ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1650 | .yytext){}} | ||
1651 | |||
1652 | public class Event_25 : Event { | ||
1653 | public Event_25(Parser yyq):base(yyq, | ||
1654 | ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) | ||
1655 | .yytext){}} | ||
1656 | |||
1657 | public class Event_26 : Event { | ||
1658 | public Event_26(Parser yyq):base(yyq, | ||
1659 | ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) | ||
1660 | .yytext){}} | ||
1661 | |||
1662 | public class Event_27 : Event { | ||
1663 | public Event_27(Parser yyq):base(yyq, | ||
1664 | ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1665 | .yytext){}} | ||
1666 | |||
1667 | public class Event_28 : Event { | ||
1668 | public Event_28(Parser yyq):base(yyq, | ||
1669 | ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) | ||
1670 | .yytext){}} | ||
1671 | |||
1672 | public class Event_29 : Event { | ||
1673 | public Event_29(Parser yyq):base(yyq, | ||
1674 | ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value)) | ||
1675 | .yytext){}} | ||
1676 | |||
1677 | public class Event_30 : Event { | ||
1678 | public Event_30(Parser yyq):base(yyq, | ||
1679 | ((TIMER_EVENT)(yyq.StackAt(0).m_value)) | ||
1680 | .yytext){}} | ||
1681 | |||
1682 | public class Event_31 : Event { | ||
1683 | public Event_31(Parser yyq):base(yyq, | ||
1684 | ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) | ||
1685 | .yytext){}} | ||
1686 | |||
1687 | public class Event_32 : Event { | ||
1688 | public Event_32(Parser yyq):base(yyq, | ||
1689 | ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1690 | .yytext){}} | ||
1691 | |||
1692 | public class Event_33 : Event { | ||
1693 | public Event_33(Parser yyq):base(yyq, | ||
1694 | ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1695 | .yytext){}} | ||
1696 | public class yyLSLSyntax | ||
1697 | : YyParser { | ||
1698 | public override object Action(Parser yyq,SYMBOL yysym, int yyact) { | ||
1699 | switch(yyact) { | ||
1700 | case -1: break; //// keep compiler happy | ||
1701 | } return null; } | ||
1702 | |||
1703 | public class ArgumentDeclarationList_3 : ArgumentDeclarationList { | ||
1704 | public ArgumentDeclarationList_3(Parser yyq):base(yyq){}} | ||
1705 | |||
1706 | public class ArgumentList_3 : ArgumentList { | ||
1707 | public ArgumentList_3(Parser yyq):base(yyq){}} | ||
1708 | |||
1709 | public class Statement_13 : Statement { | ||
1710 | public Statement_13(Parser yyq):base(yyq){}} | ||
1711 | |||
1712 | public class ArgumentList_4 : ArgumentList { | ||
1713 | public ArgumentList_4(Parser yyq):base(yyq){}} | ||
1714 | |||
1715 | public class ArgumentDeclarationList_4 : ArgumentDeclarationList { | ||
1716 | public ArgumentDeclarationList_4(Parser yyq):base(yyq){}} | ||
1717 | |||
1718 | public class ArgumentDeclarationList_5 : ArgumentDeclarationList { | ||
1719 | public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} | ||
1720 | public yyLSLSyntax | ||
1721 | ():base() { arr = new int[] { | ||
1722 | 101,4,6,52,0, | ||
1723 | 46,0,53,0,102, | ||
1724 | 20,103,4,28,76, | ||
1725 | 0,83,0,76,0, | ||
1726 | 80,0,114,0,111, | ||
1727 | 0,103,0,114,0, | ||
1728 | 97,0,109,0,82, | ||
1729 | 0,111,0,111,0, | ||
1730 | 116,0,1,95,1, | ||
1731 | 2,104,18,1,2292, | ||
1732 | 102,2,0,105,5, | ||
1733 | 277,1,0,106,18, | ||
1734 | 1,0,0,2,0, | ||
1735 | 1,1,107,18,1, | ||
1736 | 1,108,20,109,4, | ||
1737 | 18,76,0,73,0, | ||
1738 | 83,0,84,0,95, | ||
1739 | 0,84,0,89,0, | ||
1740 | 80,0,69,0,1, | ||
1741 | 57,1,1,2,0, | ||
1742 | 1,2,110,18,1, | ||
1743 | 2,111,20,112,4, | ||
1744 | 26,82,0,79,0, | ||
1745 | 84,0,65,0,84, | ||
1746 | 0,73,0,79,0, | ||
1747 | 78,0,95,0,84, | ||
1748 | 0,89,0,80,0, | ||
1749 | 69,0,1,56,1, | ||
1750 | 1,2,0,1,3, | ||
1751 | 113,18,1,3,114, | ||
1752 | 20,115,4,22,86, | ||
1753 | 0,69,0,67,0, | ||
1754 | 84,0,79,0,82, | ||
1755 | 0,95,0,84,0, | ||
1756 | 89,0,80,0,69, | ||
1757 | 0,1,55,1,1, | ||
1758 | 2,0,1,4,116, | ||
1759 | 18,1,4,117,20, | ||
1760 | 118,4,16,75,0, | ||
1761 | 69,0,89,0,95, | ||
1762 | 0,84,0,89,0, | ||
1763 | 80,0,69,0,1, | ||
1764 | 54,1,1,2,0, | ||
1765 | 1,5,119,18,1, | ||
1766 | 5,120,20,121,4, | ||
1767 | 22,83,0,84,0, | ||
1768 | 82,0,73,0,78, | ||
1769 | 0,71,0,95,0, | ||
1770 | 84,0,89,0,80, | ||
1771 | 0,69,0,1,53, | ||
1772 | 1,1,2,0,1, | ||
1773 | 6,122,18,1,6, | ||
1774 | 123,20,124,4,20, | ||
1775 | 70,0,76,0,79, | ||
1776 | 0,65,0,84,0, | ||
1777 | 95,0,84,0,89, | ||
1778 | 0,80,0,69,0, | ||
1779 | 1,52,1,1,2, | ||
1780 | 0,1,7,125,18, | ||
1781 | 1,7,126,20,127, | ||
1782 | 4,24,73,0,78, | ||
1783 | 0,84,0,69,0, | ||
1784 | 71,0,69,0,82, | ||
1785 | 0,95,0,84,0, | ||
1786 | 89,0,80,0,69, | ||
1787 | 0,1,51,1,1, | ||
1788 | 2,0,1,8,128, | ||
1789 | 18,1,8,129,20, | ||
1790 | 130,4,16,84,0, | ||
1791 | 121,0,112,0,101, | ||
1792 | 0,110,0,97,0, | ||
1793 | 109,0,101,0,1, | ||
1794 | 105,1,2,2,0, | ||
1795 | 1,9,131,18,1, | ||
1796 | 9,132,20,133,4, | ||
1797 | 10,73,0,68,0, | ||
1798 | 69,0,78,0,84, | ||
1799 | 0,1,91,1,1, | ||
1800 | 2,0,1,10,134, | ||
1801 | 18,1,10,135,20, | ||
1802 | 136,4,20,76,0, | ||
1803 | 69,0,70,0,84, | ||
1804 | 0,95,0,80,0, | ||
1805 | 65,0,82,0,69, | ||
1806 | 0,78,0,1,16, | ||
1807 | 1,1,2,0,1, | ||
1808 | 2239,137,18,1,2239, | ||
1809 | 138,20,139,4,20, | ||
1810 | 69,0,120,0,112, | ||
1811 | 0,114,0,101,0, | ||
1812 | 115,0,115,0,105, | ||
1813 | 0,111,0,110,0, | ||
1814 | 1,128,1,2,2, | ||
1815 | 0,1,573,140,18, | ||
1816 | 1,573,141,20,142, | ||
1817 | 4,26,82,0,73, | ||
1818 | 0,71,0,72,0, | ||
1819 | 84,0,95,0,66, | ||
1820 | 0,82,0,65,0, | ||
1821 | 67,0,75,0,69, | ||
1822 | 0,84,0,1,28, | ||
1823 | 1,1,2,0,1, | ||
1824 | 574,143,18,1,574, | ||
1825 | 144,20,145,4,16, | ||
1826 | 65,0,114,0,103, | ||
1827 | 0,117,0,109,0, | ||
1828 | 101,0,110,0,116, | ||
1829 | 0,1,122,1,2, | ||
1830 | 2,0,1,18,146, | ||
1831 | 18,1,18,129,2, | ||
1832 | 0,1,19,147,18, | ||
1833 | 1,19,132,2,0, | ||
1834 | 1,20,148,18,1, | ||
1835 | 20,149,20,150,4, | ||
1836 | 46,65,0,114,0, | ||
1837 | 103,0,117,0,109, | ||
1838 | 0,101,0,110,0, | ||
1839 | 116,0,68,0,101, | ||
1840 | 0,99,0,108,0, | ||
1841 | 97,0,114,0,97, | ||
1842 | 0,116,0,105,0, | ||
1843 | 111,0,110,0,76, | ||
1844 | 0,105,0,115,0, | ||
1845 | 116,0,1,103,1, | ||
1846 | 2,2,0,1,21, | ||
1847 | 151,18,1,21,152, | ||
1848 | 20,153,4,10,67, | ||
1849 | 0,79,0,77,0, | ||
1850 | 77,0,65,0,1, | ||
1851 | 14,1,1,2,0, | ||
1852 | 1,1693,154,18,1, | ||
1853 | 1693,155,20,156,4, | ||
1854 | 22,82,0,73,0, | ||
1855 | 71,0,72,0,84, | ||
1856 | 0,95,0,80,0, | ||
1857 | 65,0,82,0,69, | ||
1858 | 0,78,0,1,17, | ||
1859 | 1,1,2,0,1, | ||
1860 | 1694,157,18,1,1694, | ||
1861 | 158,20,159,4,18, | ||
1862 | 83,0,69,0,77, | ||
1863 | 0,73,0,67,0, | ||
1864 | 79,0,76,0,79, | ||
1865 | 0,78,0,1,11, | ||
1866 | 1,1,2,0,1, | ||
1867 | 30,160,18,1,30, | ||
1868 | 161,20,162,4,22, | ||
1869 | 68,0,101,0,99, | ||
1870 | 0,108,0,97,0, | ||
1871 | 114,0,97,0,116, | ||
1872 | 0,105,0,111,0, | ||
1873 | 110,0,1,104,1, | ||
1874 | 2,2,0,1,31, | ||
1875 | 163,18,1,31,155, | ||
1876 | 2,0,1,32,164, | ||
1877 | 18,1,32,165,20, | ||
1878 | 166,4,20,76,0, | ||
1879 | 69,0,70,0,84, | ||
1880 | 0,95,0,66,0, | ||
1881 | 82,0,65,0,67, | ||
1882 | 0,69,0,1,12, | ||
1883 | 1,1,2,0,1, | ||
1884 | 1706,167,18,1,1706, | ||
1885 | 168,20,169,4,10, | ||
1886 | 87,0,72,0,73, | ||
1887 | 0,76,0,69,0, | ||
1888 | 1,45,1,1,2, | ||
1889 | 0,1,1707,170,18, | ||
1890 | 1,1707,135,2,0, | ||
1891 | 1,1115,171,18,1, | ||
1892 | 1115,172,20,173,4, | ||
1893 | 12,69,0,81,0, | ||
1894 | 85,0,65,0,76, | ||
1895 | 0,83,0,1,15, | ||
1896 | 1,1,2,0,1, | ||
1897 | 1152,174,18,1,1152, | ||
1898 | 175,20,176,4,28, | ||
1899 | 80,0,69,0,82, | ||
1900 | 0,67,0,69,0, | ||
1901 | 78,0,84,0,95, | ||
1902 | 0,69,0,81,0, | ||
1903 | 85,0,65,0,76, | ||
1904 | 0,83,0,1,10, | ||
1905 | 1,1,2,0,1, | ||
1906 | 40,177,18,1,40, | ||
1907 | 132,2,0,1,41, | ||
1908 | 178,18,1,41,135, | ||
1909 | 2,0,1,42,179, | ||
1910 | 18,1,42,138,2, | ||
1911 | 0,1,43,180,18, | ||
1912 | 1,43,181,20,182, | ||
1913 | 4,22,82,0,73, | ||
1914 | 0,71,0,72,0, | ||
1915 | 84,0,95,0,83, | ||
1916 | 0,72,0,73,0, | ||
1917 | 70,0,84,0,1, | ||
1918 | 41,1,1,2,0, | ||
1919 | 1,44,183,18,1, | ||
1920 | 44,132,2,0,1, | ||
1921 | 46,184,18,1,46, | ||
1922 | 185,20,186,4,12, | ||
1923 | 80,0,69,0,82, | ||
1924 | 0,73,0,79,0, | ||
1925 | 68,0,1,24,1, | ||
1926 | 1,2,0,1,47, | ||
1927 | 187,18,1,47,132, | ||
1928 | 2,0,1,48,188, | ||
1929 | 18,1,48,189,20, | ||
1930 | 190,4,18,68,0, | ||
1931 | 69,0,67,0,82, | ||
1932 | 0,69,0,77,0, | ||
1933 | 69,0,78,0,84, | ||
1934 | 0,1,5,1,1, | ||
1935 | 2,0,1,49,191, | ||
1936 | 18,1,49,192,20, | ||
1937 | 193,4,18,73,0, | ||
1938 | 78,0,67,0,82, | ||
1939 | 0,69,0,77,0, | ||
1940 | 69,0,78,0,84, | ||
1941 | 0,1,4,1,1, | ||
1942 | 2,0,1,50,194, | ||
1943 | 18,1,50,189,2, | ||
1944 | 0,1,51,195,18, | ||
1945 | 1,51,192,2,0, | ||
1946 | 1,52,196,18,1, | ||
1947 | 52,135,2,0,1, | ||
1948 | 2281,197,18,1,2281, | ||
1949 | 198,20,199,4,12, | ||
1950 | 83,0,116,0,97, | ||
1951 | 0,116,0,101,0, | ||
1952 | 115,0,1,99,1, | ||
1953 | 2,2,0,1,1674, | ||
1954 | 200,18,1,1674,138, | ||
1955 | 2,0,1,2216,201, | ||
1956 | 18,1,2216,132,2, | ||
1957 | 0,1,2288,202,18, | ||
1958 | 1,2288,203,20,204, | ||
1959 | 4,48,71,0,108, | ||
1960 | 0,111,0,98,0, | ||
1961 | 97,0,108,0,70, | ||
1962 | 0,117,0,110,0, | ||
1963 | 99,0,116,0,105, | ||
1964 | 0,111,0,110,0, | ||
1965 | 68,0,101,0,102, | ||
1966 | 0,105,0,110,0, | ||
1967 | 105,0,116,0,105, | ||
1968 | 0,111,0,110,0, | ||
1969 | 1,98,1,2,2, | ||
1970 | 0,1,61,205,18, | ||
1971 | 1,61,129,2,0, | ||
1972 | 1,62,206,18,1, | ||
1973 | 62,155,2,0,1, | ||
1974 | 63,207,18,1,63, | ||
1975 | 132,2,0,1,2292, | ||
1976 | 104,1,65,208,18, | ||
1977 | 1,65,185,2,0, | ||
1978 | 1,66,209,18,1, | ||
1979 | 66,132,2,0,1, | ||
1980 | 67,210,18,1,67, | ||
1981 | 189,2,0,1,68, | ||
1982 | 211,18,1,68,192, | ||
1983 | 2,0,1,69,212, | ||
1984 | 18,1,69,189,2, | ||
1985 | 0,1,70,213,18, | ||
1986 | 1,70,192,2,0, | ||
1987 | 1,71,214,18,1, | ||
1988 | 71,135,2,0,1, | ||
1989 | 2099,215,18,1,2099, | ||
1990 | 216,20,217,4,18, | ||
1991 | 83,0,116,0,97, | ||
1992 | 0,116,0,101,0, | ||
1993 | 66,0,111,0,100, | ||
1994 | 0,121,0,1,101, | ||
1995 | 1,2,2,0,1, | ||
1996 | 73,218,18,1,73, | ||
1997 | 138,2,0,1,74, | ||
1998 | 219,18,1,74,155, | ||
1999 | 2,0,1,2232,220, | ||
2000 | 18,1,2232,161,2, | ||
2001 | 0,1,76,221,18, | ||
2002 | 1,76,222,20,223, | ||
2003 | 4,20,76,0,69, | ||
2004 | 0,70,0,84,0, | ||
2005 | 95,0,83,0,72, | ||
2006 | 0,73,0,70,0, | ||
2007 | 84,0,1,40,1, | ||
2008 | 1,2,0,1,1193, | ||
2009 | 224,18,1,1193,138, | ||
2010 | 2,0,1,1121,225, | ||
2011 | 18,1,1121,138,2, | ||
2012 | 0,1,82,226,18, | ||
2013 | 1,82,138,2,0, | ||
2014 | 1,79,227,18,1, | ||
2015 | 79,228,20,229,4, | ||
2016 | 10,84,0,73,0, | ||
2017 | 76,0,68,0,69, | ||
2018 | 0,1,36,1,1, | ||
2019 | 2,0,1,85,230, | ||
2020 | 18,1,85,231,20, | ||
2021 | 232,4,26,83,0, | ||
2022 | 84,0,82,0,79, | ||
2023 | 0,75,0,69,0, | ||
2024 | 95,0,83,0,84, | ||
2025 | 0,82,0,79,0, | ||
2026 | 75,0,69,0,1, | ||
2027 | 39,1,1,2,0, | ||
2028 | 1,2050,233,18,1, | ||
2029 | 2050,234,20,235,4, | ||
2030 | 34,84,0,79,0, | ||
2031 | 85,0,67,0,72, | ||
2032 | 0,95,0,83,0, | ||
2033 | 84,0,65,0,82, | ||
2034 | 0,84,0,95,0, | ||
2035 | 69,0,86,0,69, | ||
2036 | 0,78,0,84,0, | ||
2037 | 1,89,1,1,2, | ||
2038 | 0,1,89,236,18, | ||
2039 | 1,89,237,20,238, | ||
2040 | 4,10,77,0,73, | ||
2041 | 0,78,0,85,0, | ||
2042 | 83,0,1,19,1, | ||
2043 | 1,2,0,1,1762, | ||
2044 | 239,18,1,1762,240, | ||
2045 | 20,241,4,4,73, | ||
2046 | 0,70,0,1,42, | ||
2047 | 1,1,2,0,1, | ||
2048 | 1763,242,18,1,1763, | ||
2049 | 135,2,0,1,93, | ||
2050 | 243,18,1,93,138, | ||
2051 | 2,0,1,97,244, | ||
2052 | 18,1,97,245,20, | ||
2053 | 246,4,14,65,0, | ||
2054 | 77,0,80,0,95, | ||
2055 | 0,65,0,77,0, | ||
2056 | 80,0,1,38,1, | ||
2057 | 1,2,0,1,1769, | ||
2058 | 247,18,1,1769,138, | ||
2059 | 2,0,1,102,248, | ||
2060 | 18,1,102,249,20, | ||
2061 | 250,4,22,69,0, | ||
2062 | 88,0,67,0,76, | ||
2063 | 0,65,0,77,0, | ||
2064 | 65,0,84,0,73, | ||
2065 | 0,79,0,78,0, | ||
2066 | 1,37,1,1,2, | ||
2067 | 0,1,1668,251,18, | ||
2068 | 1,1668,135,2,0, | ||
2069 | 1,107,252,18,1, | ||
2070 | 107,138,2,0,1, | ||
2071 | 1222,253,18,1,1222, | ||
2072 | 254,20,255,4,22, | ||
2073 | 83,0,84,0,65, | ||
2074 | 0,82,0,95,0, | ||
2075 | 69,0,81,0,85, | ||
2076 | 0,65,0,76,0, | ||
2077 | 83,0,1,8,1, | ||
2078 | 1,2,0,1,2074, | ||
2079 | 256,18,1,2074,257, | ||
2080 | 20,258,4,32,68, | ||
2081 | 0,65,0,84,0, | ||
2082 | 65,0,83,0,69, | ||
2083 | 0,82,0,86,0, | ||
2084 | 69,0,82,0,95, | ||
2085 | 0,69,0,86,0, | ||
2086 | 69,0,78,0,84, | ||
2087 | 0,1,66,1,1, | ||
2088 | 2,0,1,112,259, | ||
2089 | 18,1,112,260,20, | ||
2090 | 261,4,28,71,0, | ||
2091 | 82,0,69,0,65, | ||
2092 | 0,84,0,69,0, | ||
2093 | 82,0,95,0,69, | ||
2094 | 0,81,0,85,0, | ||
2095 | 65,0,76,0,83, | ||
2096 | 0,1,32,1,1, | ||
2097 | 2,0,1,2269,262, | ||
2098 | 18,1,2269,158,2, | ||
2099 | 0,1,1228,263,18, | ||
2100 | 1,1228,138,2,0, | ||
2101 | 1,1732,264,18,1, | ||
2102 | 1732,155,2,0,1, | ||
2103 | 118,265,18,1,118, | ||
2104 | 138,2,0,1,1158, | ||
2105 | 266,18,1,1158,138, | ||
2106 | 2,0,1,124,267, | ||
2107 | 18,1,124,268,20, | ||
2108 | 269,4,22,76,0, | ||
2109 | 69,0,83,0,83, | ||
2110 | 0,95,0,69,0, | ||
2111 | 81,0,85,0,65, | ||
2112 | 0,76,0,83,0, | ||
2113 | 1,31,1,1,2, | ||
2114 | 0,1,130,270,18, | ||
2115 | 1,130,138,2,0, | ||
2116 | 1,2289,271,18,1, | ||
2117 | 2289,272,20,273,4, | ||
2118 | 50,71,0,108,0, | ||
2119 | 111,0,98,0,97, | ||
2120 | 0,108,0,86,0, | ||
2121 | 97,0,114,0,105, | ||
2122 | 0,97,0,98,0, | ||
2123 | 108,0,101,0,68, | ||
2124 | 0,101,0,99,0, | ||
2125 | 108,0,97,0,114, | ||
2126 | 0,97,0,116,0, | ||
2127 | 105,0,111,0,110, | ||
2128 | 0,1,97,1,2, | ||
2129 | 2,0,1,2290,274, | ||
2130 | 18,1,2290,203,2, | ||
2131 | 0,1,2291,275,18, | ||
2132 | 1,2291,272,2,0, | ||
2133 | 1,137,276,18,1, | ||
2134 | 137,277,20,278,4, | ||
2135 | 36,69,0,88,0, | ||
2136 | 67,0,76,0,65, | ||
2137 | 0,77,0,65,0, | ||
2138 | 84,0,73,0,79, | ||
2139 | 0,78,0,95,0, | ||
2140 | 69,0,81,0,85, | ||
2141 | 0,65,0,76,0, | ||
2142 | 83,0,1,30,1, | ||
2143 | 1,2,0,1,2293, | ||
2144 | 279,18,1,2293,280, | ||
2145 | 23,281,4,6,69, | ||
2146 | 0,79,0,70,0, | ||
2147 | 1,2,1,6,2, | ||
2148 | 0,1,2226,282,18, | ||
2149 | 1,2226,149,2,0, | ||
2150 | 1,2228,283,18,1, | ||
2151 | 2228,155,2,0,1, | ||
2152 | 1257,284,18,1,1257, | ||
2153 | 285,20,286,4,24, | ||
2154 | 77,0,73,0,78, | ||
2155 | 0,85,0,83,0, | ||
2156 | 95,0,69,0,81, | ||
2157 | 0,85,0,65,0, | ||
2158 | 76,0,83,0,1, | ||
2159 | 7,1,1,2,0, | ||
2160 | 1,2230,287,18,1, | ||
2161 | 2230,288,20,289,4, | ||
2162 | 34,67,0,111,0, | ||
2163 | 109,0,112,0,111, | ||
2164 | 0,117,0,110,0, | ||
2165 | 100,0,83,0,116, | ||
2166 | 0,97,0,116,0, | ||
2167 | 101,0,109,0,101, | ||
2168 | 0,110,0,116,0, | ||
2169 | 1,107,1,2,2, | ||
2170 | 0,1,1817,290,18, | ||
2171 | 1,1817,291,20,292, | ||
2172 | 4,18,83,0,116, | ||
2173 | 0,97,0,116,0, | ||
2174 | 101,0,109,0,101, | ||
2175 | 0,110,0,116,0, | ||
2176 | 1,109,1,2,2, | ||
2177 | 0,1,1818,293,18, | ||
2178 | 1,1818,294,20,295, | ||
2179 | 4,8,69,0,76, | ||
2180 | 0,83,0,69,0, | ||
2181 | 1,43,1,1,2, | ||
2182 | 0,1,1263,296,18, | ||
2183 | 1,1263,138,2,0, | ||
2184 | 1,151,297,18,1, | ||
2185 | 151,298,20,299,4, | ||
2186 | 26,69,0,81,0, | ||
2187 | 85,0,65,0,76, | ||
2188 | 0,83,0,95,0, | ||
2189 | 69,0,81,0,85, | ||
2190 | 0,65,0,76,0, | ||
2191 | 83,0,1,29,1, | ||
2192 | 1,2,0,1,1713, | ||
2193 | 300,18,1,1713,138, | ||
2194 | 2,0,1,143,301, | ||
2195 | 18,1,143,138,2, | ||
2196 | 0,1,157,302,18, | ||
2197 | 1,157,138,2,0, | ||
2198 | 1,166,303,18,1, | ||
2199 | 166,304,20,305,4, | ||
2200 | 20,76,0,69,0, | ||
2201 | 70,0,84,0,95, | ||
2202 | 0,65,0,78,0, | ||
2203 | 71,0,76,0,69, | ||
2204 | 0,1,25,1,1, | ||
2205 | 2,0,1,172,306, | ||
2206 | 18,1,172,138,2, | ||
2207 | 0,1,1788,307,18, | ||
2208 | 1,1788,155,2,0, | ||
2209 | 1,1847,308,18,1, | ||
2210 | 1847,291,2,0,1, | ||
2211 | 1292,309,18,1,1292, | ||
2212 | 310,20,311,4,22, | ||
2213 | 80,0,76,0,85, | ||
2214 | 0,83,0,95,0, | ||
2215 | 69,0,81,0,85, | ||
2216 | 0,65,0,76,0, | ||
2217 | 83,0,1,6,1, | ||
2218 | 1,2,0,1,1850, | ||
2219 | 312,18,1,1850,313, | ||
2220 | 20,314,4,26,68, | ||
2221 | 0,69,0,70,0, | ||
2222 | 65,0,85,0,76, | ||
2223 | 0,84,0,95,0, | ||
2224 | 83,0,84,0,65, | ||
2225 | 0,84,0,69,0, | ||
2226 | 1,47,1,1,2, | ||
2227 | 0,1,1851,315,18, | ||
2228 | 1,1851,132,2,0, | ||
2229 | 1,1852,316,18,1, | ||
2230 | 1852,317,20,318,4, | ||
2231 | 8,74,0,85,0, | ||
2232 | 77,0,80,0,1, | ||
2233 | 49,1,1,2,0, | ||
2234 | 1,1853,319,18,1, | ||
2235 | 1853,132,2,0,1, | ||
2236 | 1854,320,18,1,1854, | ||
2237 | 321,20,322,4,4, | ||
2238 | 65,0,84,0,1, | ||
2239 | 23,1,1,2,0, | ||
2240 | 1,1855,323,18,1, | ||
2241 | 1855,132,2,0,1, | ||
2242 | 1856,324,18,1,1856, | ||
2243 | 288,2,0,1,1857, | ||
2244 | 325,18,1,1857,326, | ||
2245 | 20,327,4,14,70, | ||
2246 | 0,111,0,114,0, | ||
2247 | 76,0,111,0,111, | ||
2248 | 0,112,0,1,118, | ||
2249 | 1,2,2,0,1, | ||
2250 | 1858,328,18,1,1858, | ||
2251 | 329,20,330,4,32, | ||
2252 | 68,0,111,0,87, | ||
2253 | 0,104,0,105,0, | ||
2254 | 108,0,101,0,83, | ||
2255 | 0,116,0,97,0, | ||
2256 | 116,0,101,0,109, | ||
2257 | 0,101,0,110,0, | ||
2258 | 116,0,1,117,1, | ||
2259 | 2,2,0,1,188, | ||
2260 | 331,18,1,188,138, | ||
2261 | 2,0,1,1860,332, | ||
2262 | 18,1,1860,333,20, | ||
2263 | 334,4,22,73,0, | ||
2264 | 102,0,83,0,116, | ||
2265 | 0,97,0,116,0, | ||
2266 | 101,0,109,0,101, | ||
2267 | 0,110,0,116,0, | ||
2268 | 1,115,1,2,2, | ||
2269 | 0,1,1187,335,18, | ||
2270 | 1,1187,336,20,337, | ||
2271 | 4,24,83,0,76, | ||
2272 | 0,65,0,83,0, | ||
2273 | 72,0,95,0,69, | ||
2274 | 0,81,0,85,0, | ||
2275 | 65,0,76,0,83, | ||
2276 | 0,1,9,1,1, | ||
2277 | 2,0,1,1862,338, | ||
2278 | 18,1,1862,158,2, | ||
2279 | 0,1,1863,339,18, | ||
2280 | 1,1863,340,20,341, | ||
2281 | 4,26,74,0,117, | ||
2282 | 0,109,0,112,0, | ||
2283 | 83,0,116,0,97, | ||
2284 | 0,116,0,101,0, | ||
2285 | 109,0,101,0,110, | ||
2286 | 0,116,0,1,113, | ||
2287 | 1,2,2,0,1, | ||
2288 | 1864,342,18,1,1864, | ||
2289 | 158,2,0,1,1865, | ||
2290 | 343,18,1,1865,344, | ||
2291 | 20,345,4,18,74, | ||
2292 | 0,117,0,109,0, | ||
2293 | 112,0,76,0,97, | ||
2294 | 0,98,0,101,0, | ||
2295 | 108,0,1,112,1, | ||
2296 | 2,2,0,1,1866, | ||
2297 | 346,18,1,1866,158, | ||
2298 | 2,0,1,182,347, | ||
2299 | 18,1,182,348,20, | ||
2300 | 349,4,22,82,0, | ||
2301 | 73,0,71,0,72, | ||
2302 | 0,84,0,95,0, | ||
2303 | 65,0,78,0,71, | ||
2304 | 0,76,0,69,0, | ||
2305 | 1,26,1,1,2, | ||
2306 | 0,1,1868,350,18, | ||
2307 | 1,1868,158,2,0, | ||
2308 | 1,1869,351,18,1, | ||
2309 | 1869,352,20,353,4, | ||
2310 | 20,65,0,115,0, | ||
2311 | 115,0,105,0,103, | ||
2312 | 0,110,0,109,0, | ||
2313 | 101,0,110,0,116, | ||
2314 | 0,1,110,1,2, | ||
2315 | 2,0,1,199,354, | ||
2316 | 18,1,199,355,20, | ||
2317 | 356,4,10,67,0, | ||
2318 | 65,0,82,0,69, | ||
2319 | 0,84,0,1,35, | ||
2320 | 1,1,2,0,1, | ||
2321 | 1871,357,18,1,1871, | ||
2322 | 158,2,0,1,1760, | ||
2323 | 358,18,1,1760,291, | ||
2324 | 2,0,1,205,359, | ||
2325 | 18,1,205,138,2, | ||
2326 | 0,1,1327,360,18, | ||
2327 | 1,1327,172,2,0, | ||
2328 | 1,217,361,18,1, | ||
2329 | 217,362,20,363,4, | ||
2330 | 12,83,0,84,0, | ||
2331 | 82,0,79,0,75, | ||
2332 | 0,69,0,1,34, | ||
2333 | 1,1,2,0,1, | ||
2334 | 2233,364,18,1,2233, | ||
2335 | 172,2,0,1,1333, | ||
2336 | 365,18,1,1333,138, | ||
2337 | 2,0,1,223,366, | ||
2338 | 18,1,223,138,2, | ||
2339 | 0,1,1298,367,18, | ||
2340 | 1,1298,138,2,0, | ||
2341 | 1,236,368,18,1, | ||
2342 | 236,369,20,370,4, | ||
2343 | 6,65,0,77,0, | ||
2344 | 80,0,1,33,1, | ||
2345 | 1,2,0,1,1849, | ||
2346 | 371,18,1,1849,372, | ||
2347 | 20,373,4,10,83, | ||
2348 | 0,84,0,65,0, | ||
2349 | 84,0,69,0,1, | ||
2350 | 48,1,1,2,0, | ||
2351 | 1,242,374,18,1, | ||
2352 | 242,138,2,0,1, | ||
2353 | 2258,375,18,1,2258, | ||
2354 | 158,2,0,1,1859, | ||
2355 | 376,18,1,1859,377, | ||
2356 | 20,378,4,28,87, | ||
2357 | 0,104,0,105,0, | ||
2358 | 108,0,101,0,83, | ||
2359 | 0,116,0,97,0, | ||
2360 | 116,0,101,0,109, | ||
2361 | 0,101,0,110,0, | ||
2362 | 116,0,1,116,1, | ||
2363 | 2,2,0,1,1861, | ||
2364 | 379,18,1,1861,380, | ||
2365 | 20,381,4,22,83, | ||
2366 | 0,116,0,97,0, | ||
2367 | 116,0,101,0,67, | ||
2368 | 0,104,0,97,0, | ||
2369 | 110,0,103,0,101, | ||
2370 | 0,1,114,1,2, | ||
2371 | 2,0,1,1366,382, | ||
2372 | 18,1,1366,138,2, | ||
2373 | 0,1,256,383,18, | ||
2374 | 1,256,384,20,385, | ||
2375 | 4,14,80,0,69, | ||
2376 | 0,82,0,67,0, | ||
2377 | 69,0,78,0,84, | ||
2378 | 0,1,22,1,1, | ||
2379 | 2,0,1,2270,386, | ||
2380 | 18,1,2270,387,20, | ||
2381 | 388,4,34,71,0, | ||
2382 | 108,0,111,0,98, | ||
2383 | 0,97,0,108,0, | ||
2384 | 68,0,101,0,102, | ||
2385 | 0,105,0,110,0, | ||
2386 | 105,0,116,0,105, | ||
2387 | 0,111,0,110,0, | ||
2388 | 115,0,1,96,1, | ||
2389 | 2,2,0,1,1870, | ||
2390 | 389,18,1,1870,158, | ||
2391 | 2,0,1,262,390, | ||
2392 | 18,1,262,138,2, | ||
2393 | 0,1,827,391,18, | ||
2394 | 1,827,138,2,0, | ||
2395 | 1,1385,392,18,1, | ||
2396 | 1385,158,2,0,1, | ||
2397 | 277,393,18,1,277, | ||
2398 | 394,20,395,4,10, | ||
2399 | 83,0,76,0,65, | ||
2400 | 0,83,0,72,0, | ||
2401 | 1,21,1,1,2, | ||
2402 | 0,1,1396,396,18, | ||
2403 | 1,1396,397,20,398, | ||
2404 | 4,12,82,0,69, | ||
2405 | 0,84,0,85,0, | ||
2406 | 82,0,78,0,1, | ||
2407 | 50,1,1,2,0, | ||
2408 | 1,283,399,18,1, | ||
2409 | 283,138,2,0,1, | ||
2410 | 1402,400,18,1,1402, | ||
2411 | 138,2,0,1,1962, | ||
2412 | 401,18,1,1962,352, | ||
2413 | 2,0,1,299,402, | ||
2414 | 18,1,299,403,20, | ||
2415 | 404,4,8,83,0, | ||
2416 | 84,0,65,0,82, | ||
2417 | 0,1,20,1,1, | ||
2418 | 2,0,1,305,405, | ||
2419 | 18,1,305,138,2, | ||
2420 | 0,1,1867,406,18, | ||
2421 | 1,1867,407,20,408, | ||
2422 | 4,30,82,0,101, | ||
2423 | 0,116,0,117,0, | ||
2424 | 114,0,110,0,83, | ||
2425 | 0,116,0,97,0, | ||
2426 | 116,0,101,0,109, | ||
2427 | 0,101,0,110,0, | ||
2428 | 116,0,1,111,1, | ||
2429 | 2,2,0,1,1431, | ||
2430 | 409,18,1,1431,161, | ||
2431 | 2,0,1,1432,410, | ||
2432 | 18,1,1432,172,2, | ||
2433 | 0,1,322,411,18, | ||
2434 | 1,322,237,2,0, | ||
2435 | 1,1438,412,18,1, | ||
2436 | 1438,138,2,0,1, | ||
2437 | 883,413,18,1,883, | ||
2438 | 138,2,0,1,328, | ||
2439 | 414,18,1,328,138, | ||
2440 | 2,0,1,346,415, | ||
2441 | 18,1,346,416,20, | ||
2442 | 417,4,8,80,0, | ||
2443 | 76,0,85,0,83, | ||
2444 | 0,1,18,1,1, | ||
2445 | 2,0,1,352,418, | ||
2446 | 18,1,352,138,2, | ||
2447 | 0,1,1467,419,18, | ||
2448 | 1,1467,158,2,0, | ||
2449 | 1,1468,420,18,1, | ||
2450 | 1468,421,20,422,4, | ||
2451 | 6,70,0,79,0, | ||
2452 | 82,0,1,46,1, | ||
2453 | 1,2,0,1,1469, | ||
2454 | 423,18,1,1469,135, | ||
2455 | 2,0,1,2037,424, | ||
2456 | 18,1,2037,291,2, | ||
2457 | 0,1,2038,425,18, | ||
2458 | 1,2038,426,20,427, | ||
2459 | 4,22,82,0,73, | ||
2460 | 0,71,0,72,0, | ||
2461 | 84,0,95,0,66, | ||
2462 | 0,82,0,65,0, | ||
2463 | 67,0,69,0,1, | ||
2464 | 13,1,1,2,0, | ||
2465 | 1,1482,428,18,1, | ||
2466 | 1482,138,2,0,1, | ||
2467 | 2041,429,18,1,2041, | ||
2468 | 291,2,0,1,371, | ||
2469 | 430,18,1,371,431, | ||
2470 | 20,432,4,24,70, | ||
2471 | 0,117,0,110,0, | ||
2472 | 99,0,116,0,105, | ||
2473 | 0,111,0,110,0, | ||
2474 | 67,0,97,0,108, | ||
2475 | 0,108,0,1,120, | ||
2476 | 1,2,2,0,1, | ||
2477 | 372,433,18,1,372, | ||
2478 | 189,2,0,1,373, | ||
2479 | 434,18,1,373,132, | ||
2480 | 2,0,1,374,435, | ||
2481 | 18,1,374,185,2, | ||
2482 | 0,1,375,436,18, | ||
2483 | 1,375,132,2,0, | ||
2484 | 1,376,437,18,1, | ||
2485 | 376,192,2,0,1, | ||
2486 | 377,438,18,1,377, | ||
2487 | 132,2,0,1,378, | ||
2488 | 439,18,1,378,185, | ||
2489 | 2,0,1,379,440, | ||
2490 | 18,1,379,132,2, | ||
2491 | 0,1,380,441,18, | ||
2492 | 1,380,442,20,443, | ||
2493 | 4,16,67,0,111, | ||
2494 | 0,110,0,115,0, | ||
2495 | 116,0,97,0,110, | ||
2496 | 0,116,0,1,124, | ||
2497 | 1,2,2,0,1, | ||
2498 | 381,444,18,1,381, | ||
2499 | 445,20,446,4,24, | ||
2500 | 76,0,69,0,70, | ||
2501 | 0,84,0,95,0, | ||
2502 | 66,0,82,0,65, | ||
2503 | 0,67,0,75,0, | ||
2504 | 69,0,84,0,1, | ||
2505 | 27,1,1,2,0, | ||
2506 | 1,2053,447,18,1, | ||
2507 | 2053,448,20,449,4, | ||
2508 | 22,84,0,73,0, | ||
2509 | 77,0,69,0,82, | ||
2510 | 0,95,0,69,0, | ||
2511 | 86,0,69,0,78, | ||
2512 | 0,84,0,1,87, | ||
2513 | 1,1,2,0,1, | ||
2514 | 383,450,18,1,383, | ||
2515 | 451,20,452,4,24, | ||
2516 | 65,0,114,0,103, | ||
2517 | 0,117,0,109,0, | ||
2518 | 101,0,110,0,116, | ||
2519 | 0,76,0,105,0, | ||
2520 | 115,0,116,0,1, | ||
2521 | 121,1,2,2,0, | ||
2522 | 1,384,453,18,1, | ||
2523 | 384,152,2,0,1, | ||
2524 | 942,454,18,1,942, | ||
2525 | 138,2,0,1,386, | ||
2526 | 455,18,1,386,144, | ||
2527 | 2,0,1,2058,456, | ||
2528 | 18,1,2058,457,20, | ||
2529 | 458,4,34,82,0, | ||
2530 | 69,0,77,0,79, | ||
2531 | 0,84,0,69,0, | ||
2532 | 95,0,68,0,65, | ||
2533 | 0,84,0,65,0, | ||
2534 | 95,0,69,0,86, | ||
2535 | 0,69,0,78,0, | ||
2536 | 84,0,1,82,1, | ||
2537 | 1,2,0,1,2059, | ||
2538 | 459,18,1,2059,460, | ||
2539 | 20,461,4,24,79, | ||
2540 | 0,78,0,95,0, | ||
2541 | 82,0,69,0,90, | ||
2542 | 0,95,0,69,0, | ||
2543 | 86,0,69,0,78, | ||
2544 | 0,84,0,1,81, | ||
2545 | 1,1,2,0,1, | ||
2546 | 2060,462,18,1,2060, | ||
2547 | 463,20,464,4,32, | ||
2548 | 79,0,66,0,74, | ||
2549 | 0,69,0,67,0, | ||
2550 | 84,0,95,0,82, | ||
2551 | 0,69,0,90,0, | ||
2552 | 95,0,69,0,86, | ||
2553 | 0,69,0,78,0, | ||
2554 | 84,0,1,80,1, | ||
2555 | 1,2,0,1,2061, | ||
2556 | 465,18,1,2061,466, | ||
2557 | 20,467,4,38,78, | ||
2558 | 0,79,0,84,0, | ||
2559 | 95,0,65,0,84, | ||
2560 | 0,95,0,84,0, | ||
2561 | 65,0,82,0,71, | ||
2562 | 0,69,0,84,0, | ||
2563 | 95,0,69,0,86, | ||
2564 | 0,69,0,78,0, | ||
2565 | 84,0,1,79,1, | ||
2566 | 1,2,0,1,2062, | ||
2567 | 468,18,1,2062,469, | ||
2568 | 20,470,4,46,78, | ||
2569 | 0,79,0,84,0, | ||
2570 | 95,0,65,0,84, | ||
2571 | 0,95,0,82,0, | ||
2572 | 79,0,84,0,95, | ||
2573 | 0,84,0,65,0, | ||
2574 | 82,0,71,0,69, | ||
2575 | 0,84,0,95,0, | ||
2576 | 69,0,86,0,69, | ||
2577 | 0,78,0,84,0, | ||
2578 | 1,78,1,1,2, | ||
2579 | 0,1,2063,471,18, | ||
2580 | 1,2063,472,20,473, | ||
2581 | 4,30,78,0,79, | ||
2582 | 0,95,0,83,0, | ||
2583 | 69,0,78,0,83, | ||
2584 | 0,79,0,82,0, | ||
2585 | 95,0,69,0,86, | ||
2586 | 0,69,0,78,0, | ||
2587 | 84,0,1,77,1, | ||
2588 | 1,2,0,1,2064, | ||
2589 | 474,18,1,2064,475, | ||
2590 | 20,476,4,36,77, | ||
2591 | 0,79,0,86,0, | ||
2592 | 73,0,78,0,71, | ||
2593 | 0,95,0,83,0, | ||
2594 | 84,0,65,0,82, | ||
2595 | 0,84,0,95,0, | ||
2596 | 69,0,86,0,69, | ||
2597 | 0,78,0,84,0, | ||
2598 | 1,76,1,1,2, | ||
2599 | 0,1,2065,477,18, | ||
2600 | 1,2065,478,20,479, | ||
2601 | 4,32,77,0,79, | ||
2602 | 0,86,0,73,0, | ||
2603 | 78,0,71,0,95, | ||
2604 | 0,69,0,78,0, | ||
2605 | 68,0,95,0,69, | ||
2606 | 0,86,0,69,0, | ||
2607 | 78,0,84,0,1, | ||
2608 | 75,1,1,2,0, | ||
2609 | 1,2066,480,18,1, | ||
2610 | 2066,481,20,482,4, | ||
2611 | 22,77,0,79,0, | ||
2612 | 78,0,69,0,89, | ||
2613 | 0,95,0,69,0, | ||
2614 | 86,0,69,0,78, | ||
2615 | 0,84,0,1,74, | ||
2616 | 1,1,2,0,1, | ||
2617 | 2067,483,18,1,2067, | ||
2618 | 484,20,485,4,24, | ||
2619 | 76,0,73,0,83, | ||
2620 | 0,84,0,69,0, | ||
2621 | 78,0,95,0,69, | ||
2622 | 0,86,0,69,0, | ||
2623 | 78,0,84,0,1, | ||
2624 | 73,1,1,2,0, | ||
2625 | 1,1511,486,18,1, | ||
2626 | 1511,161,2,0,1, | ||
2627 | 2069,487,18,1,2069, | ||
2628 | 488,20,489,4,52, | ||
2629 | 76,0,65,0,78, | ||
2630 | 0,68,0,95,0, | ||
2631 | 67,0,79,0,76, | ||
2632 | 0,76,0,73,0, | ||
2633 | 83,0,73,0,79, | ||
2634 | 0,78,0,95,0, | ||
2635 | 83,0,84,0,65, | ||
2636 | 0,82,0,84,0, | ||
2637 | 95,0,69,0,86, | ||
2638 | 0,69,0,78,0, | ||
2639 | 84,0,1,71,1, | ||
2640 | 1,2,0,1,1513, | ||
2641 | 490,18,1,1513,491, | ||
2642 | 20,492,4,32,70, | ||
2643 | 0,111,0,114,0, | ||
2644 | 76,0,111,0,111, | ||
2645 | 0,112,0,83,0, | ||
2646 | 116,0,97,0,116, | ||
2647 | 0,101,0,109,0, | ||
2648 | 101,0,110,0,116, | ||
2649 | 0,1,119,1,2, | ||
2650 | 2,0,1,1514,493, | ||
2651 | 18,1,1514,152,2, | ||
2652 | 0,1,2072,494,18, | ||
2653 | 1,2072,495,20,496, | ||
2654 | 4,38,72,0,84, | ||
2655 | 0,84,0,80,0, | ||
2656 | 95,0,82,0,69, | ||
2657 | 0,83,0,80,0, | ||
2658 | 79,0,78,0,83, | ||
2659 | 0,69,0,95,0, | ||
2660 | 69,0,86,0,69, | ||
2661 | 0,78,0,84,0, | ||
2662 | 1,68,1,1,2, | ||
2663 | 0,1,2073,497,18, | ||
2664 | 1,2073,498,20,499, | ||
2665 | 4,22,69,0,77, | ||
2666 | 0,65,0,73,0, | ||
2667 | 76,0,95,0,69, | ||
2668 | 0,86,0,69,0, | ||
2669 | 78,0,84,0,1, | ||
2670 | 67,1,1,2,0, | ||
2671 | 1,403,500,18,1, | ||
2672 | 403,138,2,0,1, | ||
2673 | 2075,501,18,1,2075, | ||
2674 | 502,20,503,4,26, | ||
2675 | 67,0,79,0,78, | ||
2676 | 0,84,0,82,0, | ||
2677 | 79,0,76,0,95, | ||
2678 | 0,69,0,86,0, | ||
2679 | 69,0,78,0,84, | ||
2680 | 0,1,65,1,1, | ||
2681 | 2,0,1,2076,504, | ||
2682 | 18,1,2076,505,20, | ||
2683 | 506,4,42,67,0, | ||
2684 | 79,0,76,0,76, | ||
2685 | 0,73,0,83,0, | ||
2686 | 73,0,79,0,78, | ||
2687 | 0,95,0,83,0, | ||
2688 | 84,0,65,0,82, | ||
2689 | 0,84,0,95,0, | ||
2690 | 69,0,86,0,69, | ||
2691 | 0,78,0,84,0, | ||
2692 | 1,64,1,1,2, | ||
2693 | 0,1,2077,507,18, | ||
2694 | 1,2077,508,20,509, | ||
2695 | 4,38,67,0,79, | ||
2696 | 0,76,0,76,0, | ||
2697 | 73,0,83,0,73, | ||
2698 | 0,79,0,78,0, | ||
2699 | 95,0,69,0,78, | ||
2700 | 0,68,0,95,0, | ||
2701 | 69,0,86,0,69, | ||
2702 | 0,78,0,84,0, | ||
2703 | 1,63,1,1,2, | ||
2704 | 0,1,2078,510,18, | ||
2705 | 1,2078,511,20,512, | ||
2706 | 4,30,67,0,79, | ||
2707 | 0,76,0,76,0, | ||
2708 | 73,0,83,0,73, | ||
2709 | 0,79,0,78,0, | ||
2710 | 95,0,69,0,86, | ||
2711 | 0,69,0,78,0, | ||
2712 | 84,0,1,62,1, | ||
2713 | 1,2,0,1,2079, | ||
2714 | 513,18,1,2079,514, | ||
2715 | 20,515,4,26,67, | ||
2716 | 0,72,0,65,0, | ||
2717 | 78,0,71,0,69, | ||
2718 | 0,68,0,95,0, | ||
2719 | 69,0,86,0,69, | ||
2720 | 0,78,0,84,0, | ||
2721 | 1,61,1,1,2, | ||
2722 | 0,1,2080,516,18, | ||
2723 | 1,2080,517,20,518, | ||
2724 | 4,24,65,0,84, | ||
2725 | 0,84,0,65,0, | ||
2726 | 67,0,72,0,95, | ||
2727 | 0,69,0,86,0, | ||
2728 | 69,0,78,0,84, | ||
2729 | 0,1,60,1,1, | ||
2730 | 2,0,1,2081,519, | ||
2731 | 18,1,2081,520,20, | ||
2732 | 521,4,30,65,0, | ||
2733 | 84,0,95,0,84, | ||
2734 | 0,65,0,82,0, | ||
2735 | 71,0,69,0,84, | ||
2736 | 0,95,0,69,0, | ||
2737 | 86,0,69,0,78, | ||
2738 | 0,84,0,1,59, | ||
2739 | 1,1,2,0,1, | ||
2740 | 397,522,18,1,397, | ||
2741 | 304,2,0,1,2083, | ||
2742 | 523,18,1,2083,524, | ||
2743 | 20,525,4,10,69, | ||
2744 | 0,118,0,101,0, | ||
2745 | 110,0,116,0,1, | ||
2746 | 106,1,2,2,0, | ||
2747 | 1,1527,526,18,1, | ||
2748 | 1527,138,2,0,1, | ||
2749 | 422,527,18,1,422, | ||
2750 | 152,2,0,1,2095, | ||
2751 | 528,18,1,2095,155, | ||
2752 | 2,0,1,2097,529, | ||
2753 | 18,1,2097,288,2, | ||
2754 | 0,1,428,530,18, | ||
2755 | 1,428,138,2,0, | ||
2756 | 1,2043,531,18,1, | ||
2757 | 2043,426,2,0,1, | ||
2758 | 2045,532,18,1,2045, | ||
2759 | 288,2,0,1,2046, | ||
2760 | 533,18,1,2046,161, | ||
2761 | 2,0,1,2047,534, | ||
2762 | 18,1,2047,372,2, | ||
2763 | 0,1,1557,535,18, | ||
2764 | 1,1557,352,2,0, | ||
2765 | 1,1001,536,18,1, | ||
2766 | 1001,431,2,0,1, | ||
2767 | 1559,537,18,1,1559, | ||
2768 | 158,2,0,1,2051, | ||
2769 | 538,18,1,2051,539, | ||
2770 | 20,540,4,30,84, | ||
2771 | 0,79,0,85,0, | ||
2772 | 67,0,72,0,95, | ||
2773 | 0,69,0,78,0, | ||
2774 | 68,0,95,0,69, | ||
2775 | 0,86,0,69,0, | ||
2776 | 78,0,84,0,1, | ||
2777 | 90,1,1,2,0, | ||
2778 | 1,447,541,18,1, | ||
2779 | 447,152,2,0,1, | ||
2780 | 2054,542,18,1,2054, | ||
2781 | 543,20,544,4,32, | ||
2782 | 83,0,84,0,65, | ||
2783 | 0,84,0,69,0, | ||
2784 | 95,0,69,0,88, | ||
2785 | 0,73,0,84,0, | ||
2786 | 95,0,69,0,86, | ||
2787 | 0,69,0,78,0, | ||
2788 | 84,0,1,86,1, | ||
2789 | 1,2,0,1,1993, | ||
2790 | 545,18,1,1993,546, | ||
2791 | 20,547,4,26,83, | ||
2792 | 0,116,0,97,0, | ||
2793 | 116,0,101,0,109, | ||
2794 | 0,101,0,110,0, | ||
2795 | 116,0,76,0,105, | ||
2796 | 0,115,0,116,0, | ||
2797 | 1,108,1,2,2, | ||
2798 | 0,1,1565,548,18, | ||
2799 | 1,1565,138,2,0, | ||
2800 | 1,2057,549,18,1, | ||
2801 | 2057,550,20,551,4, | ||
2802 | 52,82,0,85,0, | ||
2803 | 78,0,95,0,84, | ||
2804 | 0,73,0,77,0, | ||
2805 | 69,0,95,0,80, | ||
2806 | 0,69,0,82,0, | ||
2807 | 77,0,73,0,83, | ||
2808 | 0,83,0,73,0, | ||
2809 | 79,0,78,0,83, | ||
2810 | 0,95,0,69,0, | ||
2811 | 86,0,69,0,78, | ||
2812 | 0,84,0,1,83, | ||
2813 | 1,1,2,0,1, | ||
2814 | 1010,552,18,1,1010, | ||
2815 | 138,2,0,1,1011, | ||
2816 | 553,18,1,1011,155, | ||
2817 | 2,0,1,463,554, | ||
2818 | 18,1,463,348,2, | ||
2819 | 0,1,2135,555,18, | ||
2820 | 1,2135,426,2,0, | ||
2821 | 1,2070,556,18,1, | ||
2822 | 2070,557,20,558,4, | ||
2823 | 48,76,0,65,0, | ||
2824 | 78,0,68,0,95, | ||
2825 | 0,67,0,79,0, | ||
2826 | 76,0,76,0,73, | ||
2827 | 0,83,0,73,0, | ||
2828 | 79,0,78,0,95, | ||
2829 | 0,69,0,78,0, | ||
2830 | 68,0,95,0,69, | ||
2831 | 0,86,0,69,0, | ||
2832 | 78,0,84,0,1, | ||
2833 | 70,1,1,2,0, | ||
2834 | 1,2071,559,18,1, | ||
2835 | 2071,560,20,561,4, | ||
2836 | 40,76,0,65,0, | ||
2837 | 78,0,68,0,95, | ||
2838 | 0,67,0,79,0, | ||
2839 | 76,0,76,0,73, | ||
2840 | 0,83,0,73,0, | ||
2841 | 79,0,78,0,95, | ||
2842 | 0,69,0,86,0, | ||
2843 | 69,0,78,0,84, | ||
2844 | 0,1,69,1,1, | ||
2845 | 2,0,1,2138,562, | ||
2846 | 18,1,2138,165,2, | ||
2847 | 0,1,453,563,18, | ||
2848 | 1,453,138,2,0, | ||
2849 | 1,1584,564,18,1, | ||
2850 | 1584,158,2,0,1, | ||
2851 | 476,565,18,1,476, | ||
2852 | 566,20,567,4,30, | ||
2853 | 83,0,84,0,82, | ||
2854 | 0,73,0,78,0, | ||
2855 | 71,0,95,0,67, | ||
2856 | 0,79,0,78,0, | ||
2857 | 83,0,84,0,65, | ||
2858 | 0,78,0,84,0, | ||
2859 | 1,3,1,1,2, | ||
2860 | 0,1,477,568,18, | ||
2861 | 1,477,569,20,570, | ||
2862 | 4,28,70,0,76, | ||
2863 | 0,79,0,65,0, | ||
2864 | 84,0,95,0,67, | ||
2865 | 0,79,0,78,0, | ||
2866 | 83,0,84,0,65, | ||
2867 | 0,78,0,84,0, | ||
2868 | 1,94,1,1,2, | ||
2869 | 0,1,478,571,18, | ||
2870 | 1,478,572,20,573, | ||
2871 | 4,40,72,0,69, | ||
2872 | 0,88,0,95,0, | ||
2873 | 73,0,78,0,84, | ||
2874 | 0,69,0,71,0, | ||
2875 | 69,0,82,0,95, | ||
2876 | 0,67,0,79,0, | ||
2877 | 78,0,83,0,84, | ||
2878 | 0,65,0,78,0, | ||
2879 | 84,0,1,93,1, | ||
2880 | 1,2,0,1,479, | ||
2881 | 574,18,1,479,575, | ||
2882 | 20,576,4,32,73, | ||
2883 | 0,78,0,84,0, | ||
2884 | 69,0,71,0,69, | ||
2885 | 0,82,0,95,0, | ||
2886 | 67,0,79,0,78, | ||
2887 | 0,83,0,84,0, | ||
2888 | 65,0,78,0,84, | ||
2889 | 0,1,92,1,1, | ||
2890 | 2,0,1,2084,577, | ||
2891 | 18,1,2084,135,2, | ||
2892 | 0,1,488,578,18, | ||
2893 | 1,488,152,2,0, | ||
2894 | 1,1046,579,18,1, | ||
2895 | 1046,138,2,0,1, | ||
2896 | 494,580,18,1,494, | ||
2897 | 138,2,0,1,1609, | ||
2898 | 581,18,1,1609,491, | ||
2899 | 2,0,1,1611,582, | ||
2900 | 18,1,1611,155,2, | ||
2901 | 0,1,2173,583,18, | ||
2902 | 1,2173,216,2,0, | ||
2903 | 1,504,584,18,1, | ||
2904 | 504,348,2,0,1, | ||
2905 | 2048,585,18,1,2048, | ||
2906 | 132,2,0,1,2049, | ||
2907 | 586,18,1,2049,165, | ||
2908 | 2,0,1,1002,587, | ||
2909 | 18,1,1002,442,2, | ||
2910 | 0,1,2052,588,18, | ||
2911 | 1,2052,589,20,590, | ||
2912 | 4,22,84,0,79, | ||
2913 | 0,85,0,67,0, | ||
2914 | 72,0,95,0,69, | ||
2915 | 0,86,0,69,0, | ||
2916 | 78,0,84,0,1, | ||
2917 | 88,1,1,2,0, | ||
2918 | 1,2055,591,18,1, | ||
2919 | 2055,592,20,593,4, | ||
2920 | 34,83,0,84,0, | ||
2921 | 65,0,84,0,69, | ||
2922 | 0,95,0,69,0, | ||
2923 | 78,0,84,0,82, | ||
2924 | 0,89,0,95,0, | ||
2925 | 69,0,86,0,69, | ||
2926 | 0,78,0,84,0, | ||
2927 | 1,85,1,1,2, | ||
2928 | 0,1,2056,594,18, | ||
2929 | 1,2056,595,20,596, | ||
2930 | 4,24,83,0,69, | ||
2931 | 0,78,0,83,0, | ||
2932 | 79,0,82,0,95, | ||
2933 | 0,69,0,86,0, | ||
2934 | 69,0,78,0,84, | ||
2935 | 0,1,84,1,1, | ||
2936 | 2,0,1,1637,597, | ||
2937 | 18,1,1637,291,2, | ||
2938 | 0,1,1639,598,18, | ||
2939 | 1,1639,599,20,600, | ||
2940 | 4,4,68,0,79, | ||
2941 | 0,1,44,1,1, | ||
2942 | 2,0,1,2068,601, | ||
2943 | 18,1,2068,602,20, | ||
2944 | 603,4,36,76,0, | ||
2945 | 73,0,78,0,75, | ||
2946 | 0,95,0,77,0, | ||
2947 | 69,0,83,0,83, | ||
2948 | 0,65,0,71,0, | ||
2949 | 69,0,95,0,69, | ||
2950 | 0,86,0,69,0, | ||
2951 | 78,0,84,0,1, | ||
2952 | 72,1,1,2,0, | ||
2953 | 1,2134,604,18,1, | ||
2954 | 2134,605,20,606,4, | ||
2955 | 20,83,0,116,0, | ||
2956 | 97,0,116,0,101, | ||
2957 | 0,69,0,118,0, | ||
2958 | 101,0,110,0,116, | ||
2959 | 0,1,102,1,2, | ||
2960 | 2,0,1,2136,607, | ||
2961 | 18,1,2136,605,2, | ||
2962 | 0,1,2137,608,18, | ||
2963 | 1,2137,313,2,0, | ||
2964 | 1,1092,609,18,1, | ||
2965 | 1092,451,2,0,1, | ||
2966 | 1094,610,18,1,1094, | ||
2967 | 155,2,0,1,2209, | ||
2968 | 611,18,1,2209,426, | ||
2969 | 2,0,1,2211,612, | ||
2970 | 18,1,2211,198,2, | ||
2971 | 0,1,2214,613,18, | ||
2972 | 1,2214,614,20,615, | ||
2973 | 4,10,83,0,116, | ||
2974 | 0,97,0,116,0, | ||
2975 | 101,0,1,100,1, | ||
2976 | 2,2,0,1,2215, | ||
2977 | 616,18,1,2215,614, | ||
2978 | 2,0,1,2082,617, | ||
2979 | 18,1,2082,618,20, | ||
2980 | 619,4,38,65,0, | ||
2981 | 84,0,95,0,82, | ||
2982 | 0,79,0,84,0, | ||
2983 | 95,0,84,0,65, | ||
2984 | 0,82,0,71,0, | ||
2985 | 69,0,84,0,95, | ||
2986 | 0,69,0,86,0, | ||
2987 | 69,0,78,0,84, | ||
2988 | 0,1,58,1,1, | ||
2989 | 2,0,1,2217,620, | ||
2990 | 18,1,2217,135,2, | ||
2991 | 0,1,1666,621,18, | ||
2992 | 1,1666,291,2,0, | ||
2993 | 1,1667,622,18,1, | ||
2994 | 1667,168,2,0,1, | ||
2995 | 1111,623,18,1,1111, | ||
2996 | 185,2,0,1,1112, | ||
2997 | 624,18,1,1112,132, | ||
2998 | 2,0,1,2093,625, | ||
2999 | 18,1,2093,149,2, | ||
3000 | 0,626,5,0,627, | ||
3001 | 5,295,1,2,628, | ||
3002 | 19,281,1,2,629, | ||
3003 | 5,6,1,2211,630, | ||
3004 | 17,631,15,632,4, | ||
3005 | 30,37,0,76,0, | ||
3006 | 83,0,76,0,80, | ||
3007 | 0,114,0,111,0, | ||
3008 | 103,0,114,0,97, | ||
3009 | 0,109,0,82,0, | ||
3010 | 111,0,111,0,116, | ||
3011 | 0,1,-1,1,5, | ||
3012 | 633,20,634,4,32, | ||
3013 | 76,0,83,0,76, | ||
3014 | 0,80,0,114,0, | ||
3015 | 111,0,103,0,114, | ||
3016 | 0,97,0,109,0, | ||
3017 | 82,0,111,0,111, | ||
3018 | 0,116,0,95,0, | ||
3019 | 50,0,1,140,1, | ||
3020 | 3,1,2,1,1, | ||
3021 | 635,22,1,2,1, | ||
3022 | 2135,636,17,637,15, | ||
3023 | 638,4,12,37,0, | ||
3024 | 83,0,116,0,97, | ||
3025 | 0,116,0,101,0, | ||
3026 | 1,-1,1,5,639, | ||
3027 | 20,640,4,14,83, | ||
3028 | 0,116,0,97,0, | ||
3029 | 116,0,101,0,95, | ||
3030 | 0,50,0,1,152, | ||
3031 | 1,3,1,6,1, | ||
3032 | 5,641,22,1,14, | ||
3033 | 1,2214,642,17,643, | ||
3034 | 15,644,4,14,37, | ||
3035 | 0,83,0,116,0, | ||
3036 | 97,0,116,0,101, | ||
3037 | 0,115,0,1,-1, | ||
3038 | 1,5,645,20,646, | ||
3039 | 4,16,83,0,116, | ||
3040 | 0,97,0,116,0, | ||
3041 | 101,0,115,0,95, | ||
3042 | 0,50,0,1,150, | ||
3043 | 1,3,1,3,1, | ||
3044 | 2,647,22,1,12, | ||
3045 | 1,2281,648,17,649, | ||
3046 | 15,632,1,-1,1, | ||
3047 | 5,650,20,651,4, | ||
3048 | 32,76,0,83,0, | ||
3049 | 76,0,80,0,114, | ||
3050 | 0,111,0,103,0, | ||
3051 | 114,0,97,0,109, | ||
3052 | 0,82,0,111,0, | ||
3053 | 111,0,116,0,95, | ||
3054 | 0,49,0,1,139, | ||
3055 | 1,3,1,3,1, | ||
3056 | 2,652,22,1,1, | ||
3057 | 1,2215,653,17,654, | ||
3058 | 15,644,1,-1,1, | ||
3059 | 5,655,20,656,4, | ||
3060 | 16,83,0,116,0, | ||
3061 | 97,0,116,0,101, | ||
3062 | 0,115,0,95,0, | ||
3063 | 49,0,1,149,1, | ||
3064 | 3,1,2,1,1, | ||
3065 | 657,22,1,11,1, | ||
3066 | 2209,658,17,659,15, | ||
3067 | 638,1,-1,1,5, | ||
3068 | 660,20,661,4,14, | ||
3069 | 83,0,116,0,97, | ||
3070 | 0,116,0,101,0, | ||
3071 | 95,0,49,0,1, | ||
3072 | 151,1,3,1,5, | ||
3073 | 1,4,662,22,1, | ||
3074 | 13,1,3,663,19, | ||
3075 | 567,1,3,664,5, | ||
3076 | 79,1,1584,665,16, | ||
3077 | 0,565,1,1639,666, | ||
3078 | 16,0,565,1,1637, | ||
3079 | 667,17,668,15,669, | ||
3080 | 4,16,37,0,70, | ||
3081 | 0,111,0,114,0, | ||
3082 | 76,0,111,0,111, | ||
3083 | 0,112,0,1,-1, | ||
3084 | 1,5,670,20,671, | ||
3085 | 4,18,70,0,111, | ||
3086 | 0,114,0,76,0, | ||
3087 | 111,0,111,0,112, | ||
3088 | 0,95,0,49,0, | ||
3089 | 1,183,1,3,1, | ||
3090 | 10,1,9,672,22, | ||
3091 | 1,47,1,112,673, | ||
3092 | 16,0,565,1,1857, | ||
3093 | 674,17,675,15,676, | ||
3094 | 4,20,37,0,83, | ||
3095 | 0,116,0,97,0, | ||
3096 | 116,0,101,0,109, | ||
3097 | 0,101,0,110,0, | ||
3098 | 116,0,1,-1,1, | ||
3099 | 5,677,20,678,4, | ||
3100 | 24,83,0,116,0, | ||
3101 | 97,0,116,0,101, | ||
3102 | 0,109,0,101,0, | ||
3103 | 110,0,116,0,95, | ||
3104 | 0,49,0,49,0, | ||
3105 | 1,173,1,3,1, | ||
3106 | 2,1,1,679,22, | ||
3107 | 1,37,1,1858,680, | ||
3108 | 17,681,15,676,1, | ||
3109 | -1,1,5,682,20, | ||
3110 | 683,4,24,83,0, | ||
3111 | 116,0,97,0,116, | ||
3112 | 0,101,0,109,0, | ||
3113 | 101,0,110,0,116, | ||
3114 | 0,95,0,49,0, | ||
3115 | 48,0,1,172,1, | ||
3116 | 3,1,2,1,1, | ||
3117 | 684,22,1,36,1, | ||
3118 | 1859,685,17,686,15, | ||
3119 | 676,1,-1,1,5, | ||
3120 | 687,20,688,4,22, | ||
3121 | 83,0,116,0,97, | ||
3122 | 0,116,0,101,0, | ||
3123 | 109,0,101,0,110, | ||
3124 | 0,116,0,95,0, | ||
3125 | 57,0,1,171,1, | ||
3126 | 3,1,2,1,1, | ||
3127 | 689,22,1,35,1, | ||
3128 | 1860,690,17,691,15, | ||
3129 | 676,1,-1,1,5, | ||
3130 | 692,20,693,4,22, | ||
3131 | 83,0,116,0,97, | ||
3132 | 0,116,0,101,0, | ||
3133 | 109,0,101,0,110, | ||
3134 | 0,116,0,95,0, | ||
3135 | 56,0,1,170,1, | ||
3136 | 3,1,2,1,1, | ||
3137 | 694,22,1,34,1, | ||
3138 | 1611,695,16,0,565, | ||
3139 | 1,1862,696,17,697, | ||
3140 | 15,676,1,-1,1, | ||
3141 | 5,698,20,699,4, | ||
3142 | 22,83,0,116,0, | ||
3143 | 97,0,116,0,101, | ||
3144 | 0,109,0,101,0, | ||
3145 | 110,0,116,0,95, | ||
3146 | 0,55,0,1,169, | ||
3147 | 1,3,1,3,1, | ||
3148 | 2,700,22,1,33, | ||
3149 | 1,1864,701,17,702, | ||
3150 | 15,676,1,-1,1, | ||
3151 | 5,703,20,704,4, | ||
3152 | 22,83,0,116,0, | ||
3153 | 97,0,116,0,101, | ||
3154 | 0,109,0,101,0, | ||
3155 | 110,0,116,0,95, | ||
3156 | 0,54,0,1,168, | ||
3157 | 1,3,1,3,1, | ||
3158 | 2,705,22,1,32, | ||
3159 | 1,1866,706,17,707, | ||
3160 | 15,676,1,-1,1, | ||
3161 | 5,708,20,709,4, | ||
3162 | 22,83,0,116,0, | ||
3163 | 97,0,116,0,101, | ||
3164 | 0,109,0,101,0, | ||
3165 | 110,0,116,0,95, | ||
3166 | 0,53,0,1,167, | ||
3167 | 1,3,1,3,1, | ||
3168 | 2,710,22,1,31, | ||
3169 | 1,2043,711,17,712, | ||
3170 | 15,713,4,36,37, | ||
3171 | 0,67,0,111,0, | ||
3172 | 109,0,112,0,111, | ||
3173 | 0,117,0,110,0, | ||
3174 | 100,0,83,0,116, | ||
3175 | 0,97,0,116,0, | ||
3176 | 101,0,109,0,101, | ||
3177 | 0,110,0,116,0, | ||
3178 | 1,-1,1,5,714, | ||
3179 | 20,715,4,38,67, | ||
3180 | 0,111,0,109,0, | ||
3181 | 112,0,111,0,117, | ||
3182 | 0,110,0,100,0, | ||
3183 | 83,0,116,0,97, | ||
3184 | 0,116,0,101,0, | ||
3185 | 109,0,101,0,110, | ||
3186 | 0,116,0,95,0, | ||
3187 | 49,0,1,159,1, | ||
3188 | 3,1,3,1,2, | ||
3189 | 716,22,1,22,1, | ||
3190 | 124,717,16,0,565, | ||
3191 | 1,1760,718,17,719, | ||
3192 | 15,720,4,30,37, | ||
3193 | 0,87,0,104,0, | ||
3194 | 105,0,108,0,101, | ||
3195 | 0,83,0,116,0, | ||
3196 | 97,0,116,0,101, | ||
3197 | 0,109,0,101,0, | ||
3198 | 110,0,116,0,1, | ||
3199 | -1,1,5,721,20, | ||
3200 | 722,4,32,87,0, | ||
3201 | 104,0,105,0,108, | ||
3202 | 0,101,0,83,0, | ||
3203 | 116,0,97,0,116, | ||
3204 | 0,101,0,109,0, | ||
3205 | 101,0,110,0,116, | ||
3206 | 0,95,0,49,0, | ||
3207 | 1,181,1,3,1, | ||
3208 | 6,1,5,723,22, | ||
3209 | 1,45,1,1870,724, | ||
3210 | 17,725,15,676,1, | ||
3211 | -1,1,5,726,20, | ||
3212 | 727,4,22,83,0, | ||
3213 | 116,0,97,0,116, | ||
3214 | 0,101,0,109,0, | ||
3215 | 101,0,110,0,116, | ||
3216 | 0,95,0,50,0, | ||
3217 | 1,164,1,3,1, | ||
3218 | 3,1,2,728,22, | ||
3219 | 1,28,1,1871,729, | ||
3220 | 17,730,15,676,1, | ||
3221 | -1,1,5,291,1, | ||
3222 | 1,1,1,731,22, | ||
3223 | 1,26,1,1763,732, | ||
3224 | 16,0,565,1,1222, | ||
3225 | 733,16,0,565,1, | ||
3226 | 1993,734,16,0,565, | ||
3227 | 1,1115,735,16,0, | ||
3228 | 565,1,447,736,16, | ||
3229 | 0,565,1,1187,737, | ||
3230 | 16,0,565,1,137, | ||
3231 | 738,16,0,565,1, | ||
3232 | 2038,739,17,740,15, | ||
3233 | 713,1,-1,1,5, | ||
3234 | 741,20,742,4,38, | ||
3235 | 67,0,111,0,109, | ||
3236 | 0,112,0,111,0, | ||
3237 | 117,0,110,0,100, | ||
3238 | 0,83,0,116,0, | ||
3239 | 97,0,116,0,101, | ||
3240 | 0,109,0,101,0, | ||
3241 | 110,0,116,0,95, | ||
3242 | 0,50,0,1,160, | ||
3243 | 1,3,1,4,1, | ||
3244 | 3,743,22,1,23, | ||
3245 | 1,346,744,16,0, | ||
3246 | 565,1,32,745,16, | ||
3247 | 0,565,1,1668,746, | ||
3248 | 16,0,565,1,2041, | ||
3249 | 747,17,748,15,749, | ||
3250 | 4,28,37,0,83, | ||
3251 | 0,116,0,97,0, | ||
3252 | 116,0,101,0,109, | ||
3253 | 0,101,0,110,0, | ||
3254 | 116,0,76,0,105, | ||
3255 | 0,115,0,116,0, | ||
3256 | 1,-1,1,5,750, | ||
3257 | 20,751,4,30,83, | ||
3258 | 0,116,0,97,0, | ||
3259 | 116,0,101,0,109, | ||
3260 | 0,101,0,110,0, | ||
3261 | 116,0,76,0,105, | ||
3262 | 0,115,0,116,0, | ||
3263 | 95,0,49,0,1, | ||
3264 | 161,1,3,1,2, | ||
3265 | 1,1,752,22,1, | ||
3266 | 24,1,236,753,16, | ||
3267 | 0,565,1,1514,754, | ||
3268 | 16,0,565,1,256, | ||
3269 | 755,16,0,565,1, | ||
3270 | 41,756,16,0,565, | ||
3271 | 1,151,757,16,0, | ||
3272 | 565,1,43,758,16, | ||
3273 | 0,565,1,1732,759, | ||
3274 | 16,0,565,1,384, | ||
3275 | 760,16,0,565,1, | ||
3276 | 1467,761,17,762,15, | ||
3277 | 676,1,-1,1,5, | ||
3278 | 763,20,764,4,22, | ||
3279 | 83,0,116,0,97, | ||
3280 | 0,116,0,101,0, | ||
3281 | 109,0,101,0,110, | ||
3282 | 0,116,0,95,0, | ||
3283 | 49,0,1,163,1, | ||
3284 | 3,1,3,1,2, | ||
3285 | 765,22,1,27,1, | ||
3286 | 52,766,16,0,565, | ||
3287 | 1,2233,767,16,0, | ||
3288 | 565,1,381,768,16, | ||
3289 | 0,565,1,166,769, | ||
3290 | 16,0,565,1,1257, | ||
3291 | 770,16,0,565,1, | ||
3292 | 1694,771,17,772,15, | ||
3293 | 773,4,34,37,0, | ||
3294 | 68,0,111,0,87, | ||
3295 | 0,104,0,105,0, | ||
3296 | 108,0,101,0,83, | ||
3297 | 0,116,0,97,0, | ||
3298 | 116,0,101,0,109, | ||
3299 | 0,101,0,110,0, | ||
3300 | 116,0,1,-1,1, | ||
3301 | 5,774,20,775,4, | ||
3302 | 36,68,0,111,0, | ||
3303 | 87,0,104,0,105, | ||
3304 | 0,108,0,101,0, | ||
3305 | 83,0,116,0,97, | ||
3306 | 0,116,0,101,0, | ||
3307 | 109,0,101,0,110, | ||
3308 | 0,116,0,95,0, | ||
3309 | 49,0,1,182,1, | ||
3310 | 3,1,8,1,7, | ||
3311 | 776,22,1,46,1, | ||
3312 | 1432,777,16,0,565, | ||
3313 | 1,1152,778,16,0, | ||
3314 | 565,1,1856,779,17, | ||
3315 | 780,15,676,1,-1, | ||
3316 | 1,5,781,20,782, | ||
3317 | 4,24,83,0,116, | ||
3318 | 0,97,0,116,0, | ||
3319 | 101,0,109,0,101, | ||
3320 | 0,110,0,116,0, | ||
3321 | 95,0,49,0,50, | ||
3322 | 0,1,174,1,3, | ||
3323 | 1,2,1,1,783, | ||
3324 | 22,1,38,1,62, | ||
3325 | 784,16,0,565,1, | ||
3326 | 504,785,16,0,565, | ||
3327 | 1,277,786,16,0, | ||
3328 | 565,1,397,787,16, | ||
3329 | 0,565,1,71,788, | ||
3330 | 16,0,565,1,1707, | ||
3331 | 789,16,0,565,1, | ||
3332 | 1817,790,17,791,15, | ||
3333 | 792,4,24,37,0, | ||
3334 | 73,0,102,0,83, | ||
3335 | 0,116,0,97,0, | ||
3336 | 116,0,101,0,109, | ||
3337 | 0,101,0,110,0, | ||
3338 | 116,0,1,-1,1, | ||
3339 | 5,793,20,794,4, | ||
3340 | 26,73,0,102,0, | ||
3341 | 83,0,116,0,97, | ||
3342 | 0,116,0,101,0, | ||
3343 | 109,0,101,0,110, | ||
3344 | 0,116,0,95,0, | ||
3345 | 49,0,1,179,1, | ||
3346 | 3,1,6,1,5, | ||
3347 | 795,22,1,43,1, | ||
3348 | 1818,796,16,0,565, | ||
3349 | 1,1868,797,17,798, | ||
3350 | 15,676,1,-1,1, | ||
3351 | 5,799,20,800,4, | ||
3352 | 22,83,0,116,0, | ||
3353 | 97,0,116,0,101, | ||
3354 | 0,109,0,101,0, | ||
3355 | 110,0,116,0,95, | ||
3356 | 0,52,0,1,166, | ||
3357 | 1,3,1,3,1, | ||
3358 | 2,801,22,1,30, | ||
3359 | 1,76,802,16,0, | ||
3360 | 565,1,1385,803,17, | ||
3361 | 804,15,676,1,-1, | ||
3362 | 1,5,805,20,806, | ||
3363 | 4,22,83,0,116, | ||
3364 | 0,97,0,116,0, | ||
3365 | 101,0,109,0,101, | ||
3366 | 0,110,0,116,0, | ||
3367 | 95,0,51,0,1, | ||
3368 | 165,1,3,1,3, | ||
3369 | 1,2,807,22,1, | ||
3370 | 29,1,79,808,16, | ||
3371 | 0,565,1,182,809, | ||
3372 | 16,0,565,1,299, | ||
3373 | 810,16,0,565,1, | ||
3374 | 1559,811,16,0,565, | ||
3375 | 1,85,812,16,0, | ||
3376 | 565,1,488,813,16, | ||
3377 | 0,565,1,1396,814, | ||
3378 | 16,0,565,1,89, | ||
3379 | 815,16,0,565,1, | ||
3380 | 199,816,16,0,565, | ||
3381 | 1,463,817,16,0, | ||
3382 | 565,1,1292,818,16, | ||
3383 | 0,565,1,422,819, | ||
3384 | 16,0,565,1,2037, | ||
3385 | 820,17,821,15,749, | ||
3386 | 1,-1,1,5,822, | ||
3387 | 20,823,4,30,83, | ||
3388 | 0,116,0,97,0, | ||
3389 | 116,0,101,0,109, | ||
3390 | 0,101,0,110,0, | ||
3391 | 116,0,76,0,105, | ||
3392 | 0,115,0,116,0, | ||
3393 | 95,0,50,0,1, | ||
3394 | 162,1,3,1,3, | ||
3395 | 1,2,824,22,1, | ||
3396 | 25,1,97,825,16, | ||
3397 | 0,565,1,1469,826, | ||
3398 | 16,0,565,1,1788, | ||
3399 | 827,16,0,565,1, | ||
3400 | 102,828,16,0,565, | ||
3401 | 1,1847,829,17,830, | ||
3402 | 15,792,1,-1,1, | ||
3403 | 5,831,20,832,4, | ||
3404 | 26,73,0,102,0, | ||
3405 | 83,0,116,0,97, | ||
3406 | 0,116,0,101,0, | ||
3407 | 109,0,101,0,110, | ||
3408 | 0,116,0,95,0, | ||
3409 | 50,0,1,180,1, | ||
3410 | 3,1,8,1,7, | ||
3411 | 833,22,1,44,1, | ||
3412 | 322,834,16,0,565, | ||
3413 | 1,1327,835,16,0, | ||
3414 | 565,1,217,836,16, | ||
3415 | 0,565,1,4,837, | ||
3416 | 19,193,1,4,838, | ||
3417 | 5,84,1,1257,839, | ||
3418 | 16,0,437,1,1760, | ||
3419 | 718,1,256,840,16, | ||
3420 | 0,437,1,1763,841, | ||
3421 | 16,0,437,1,1514, | ||
3422 | 842,16,0,437,1, | ||
3423 | 504,843,16,0,437, | ||
3424 | 1,277,844,16,0, | ||
3425 | 437,1,2037,820,1, | ||
3426 | 2038,739,1,1788,845, | ||
3427 | 16,0,437,1,32, | ||
3428 | 846,16,0,437,1, | ||
3429 | 2041,747,1,2043,711, | ||
3430 | 1,1292,847,16,0, | ||
3431 | 437,1,40,848,16, | ||
3432 | 0,195,1,41,849, | ||
3433 | 16,0,437,1,43, | ||
3434 | 850,16,0,437,1, | ||
3435 | 44,851,16,0,195, | ||
3436 | 1,47,852,16,0, | ||
3437 | 191,1,299,853,16, | ||
3438 | 0,437,1,52,854, | ||
3439 | 16,0,437,1,1559, | ||
3440 | 855,16,0,437,1, | ||
3441 | 1817,790,1,1818,856, | ||
3442 | 16,0,437,1,63, | ||
3443 | 857,16,0,213,1, | ||
3444 | 66,858,16,0,211, | ||
3445 | 1,71,859,16,0, | ||
3446 | 437,1,1327,860,16, | ||
3447 | 0,437,1,76,861, | ||
3448 | 16,0,437,1,1584, | ||
3449 | 862,16,0,437,1, | ||
3450 | 79,863,16,0,437, | ||
3451 | 1,322,864,16,0, | ||
3452 | 437,1,85,865,16, | ||
3453 | 0,437,1,89,866, | ||
3454 | 16,0,437,1,1847, | ||
3455 | 829,1,346,867,16, | ||
3456 | 0,437,1,97,868, | ||
3457 | 16,0,437,1,1856, | ||
3458 | 779,1,1857,674,1, | ||
3459 | 1858,680,1,1859,685, | ||
3460 | 1,1860,690,1,1862, | ||
3461 | 696,1,1864,701,1, | ||
3462 | 1112,869,16,0,191, | ||
3463 | 1,1866,706,1,1115, | ||
3464 | 870,16,0,437,1, | ||
3465 | 112,871,16,0,437, | ||
3466 | 1,1870,724,1,1871, | ||
3467 | 729,1,102,872,16, | ||
3468 | 0,437,1,124,873, | ||
3469 | 16,0,437,1,381, | ||
3470 | 874,16,0,437,1, | ||
3471 | 1637,667,1,384,875, | ||
3472 | 16,0,437,1,137, | ||
3473 | 876,16,0,437,1, | ||
3474 | 1396,877,16,0,437, | ||
3475 | 1,397,878,16,0, | ||
3476 | 437,1,1152,879,16, | ||
3477 | 0,437,1,151,880, | ||
3478 | 16,0,437,1,1611, | ||
3479 | 881,16,0,437,1, | ||
3480 | 1668,882,16,0,437, | ||
3481 | 1,166,883,16,0, | ||
3482 | 437,1,1868,797,1, | ||
3483 | 1385,803,1,1432,884, | ||
3484 | 16,0,437,1,182, | ||
3485 | 885,16,0,437,1, | ||
3486 | 1187,886,16,0,437, | ||
3487 | 1,422,887,16,0, | ||
3488 | 437,1,1694,771,1, | ||
3489 | 447,888,16,0,437, | ||
3490 | 1,199,889,16,0, | ||
3491 | 437,1,1707,890,16, | ||
3492 | 0,437,1,1467,761, | ||
3493 | 1,1469,891,16,0, | ||
3494 | 437,1,217,892,16, | ||
3495 | 0,437,1,1222,893, | ||
3496 | 16,0,437,1,2233, | ||
3497 | 894,16,0,437,1, | ||
3498 | 1732,895,16,0,437, | ||
3499 | 1,463,896,16,0, | ||
3500 | 437,1,1993,897,16, | ||
3501 | 0,437,1,488,898, | ||
3502 | 16,0,437,1,1639, | ||
3503 | 899,16,0,437,1, | ||
3504 | 236,900,16,0,437, | ||
3505 | 1,5,901,19,190, | ||
3506 | 1,5,902,5,84, | ||
3507 | 1,1257,903,16,0, | ||
3508 | 433,1,1760,718,1, | ||
3509 | 256,904,16,0,433, | ||
3510 | 1,1763,905,16,0, | ||
3511 | 433,1,1514,906,16, | ||
3512 | 0,433,1,504,907, | ||
3513 | 16,0,433,1,277, | ||
3514 | 908,16,0,433,1, | ||
3515 | 2037,820,1,2038,739, | ||
3516 | 1,1788,909,16,0, | ||
3517 | 433,1,32,910,16, | ||
3518 | 0,433,1,2041,747, | ||
3519 | 1,2043,711,1,1292, | ||
3520 | 911,16,0,433,1, | ||
3521 | 40,912,16,0,194, | ||
3522 | 1,41,913,16,0, | ||
3523 | 433,1,43,914,16, | ||
3524 | 0,433,1,44,915, | ||
3525 | 16,0,194,1,47, | ||
3526 | 916,16,0,188,1, | ||
3527 | 299,917,16,0,433, | ||
3528 | 1,52,918,16,0, | ||
3529 | 433,1,1559,919,16, | ||
3530 | 0,433,1,1817,790, | ||
3531 | 1,1818,920,16,0, | ||
3532 | 433,1,63,921,16, | ||
3533 | 0,212,1,66,922, | ||
3534 | 16,0,210,1,71, | ||
3535 | 923,16,0,433,1, | ||
3536 | 1327,924,16,0,433, | ||
3537 | 1,76,925,16,0, | ||
3538 | 433,1,1584,926,16, | ||
3539 | 0,433,1,79,927, | ||
3540 | 16,0,433,1,322, | ||
3541 | 928,16,0,433,1, | ||
3542 | 85,929,16,0,433, | ||
3543 | 1,89,930,16,0, | ||
3544 | 433,1,1847,829,1, | ||
3545 | 346,931,16,0,433, | ||
3546 | 1,97,932,16,0, | ||
3547 | 433,1,1856,779,1, | ||
3548 | 1857,674,1,1858,680, | ||
3549 | 1,1859,685,1,1860, | ||
3550 | 690,1,1862,696,1, | ||
3551 | 1864,701,1,1112,933, | ||
3552 | 16,0,188,1,1866, | ||
3553 | 706,1,1115,934,16, | ||
3554 | 0,433,1,112,935, | ||
3555 | 16,0,433,1,1870, | ||
3556 | 724,1,1871,729,1, | ||
3557 | 102,936,16,0,433, | ||
3558 | 1,124,937,16,0, | ||
3559 | 433,1,381,938,16, | ||
3560 | 0,433,1,1637,667, | ||
3561 | 1,384,939,16,0, | ||
3562 | 433,1,137,940,16, | ||
3563 | 0,433,1,1396,941, | ||
3564 | 16,0,433,1,397, | ||
3565 | 942,16,0,433,1, | ||
3566 | 1152,943,16,0,433, | ||
3567 | 1,151,944,16,0, | ||
3568 | 433,1,1611,945,16, | ||
3569 | 0,433,1,1668,946, | ||
3570 | 16,0,433,1,166, | ||
3571 | 947,16,0,433,1, | ||
3572 | 1868,797,1,1385,803, | ||
3573 | 1,1432,948,16,0, | ||
3574 | 433,1,182,949,16, | ||
3575 | 0,433,1,1187,950, | ||
3576 | 16,0,433,1,422, | ||
3577 | 951,16,0,433,1, | ||
3578 | 1694,771,1,447,952, | ||
3579 | 16,0,433,1,199, | ||
3580 | 953,16,0,433,1, | ||
3581 | 1707,954,16,0,433, | ||
3582 | 1,1467,761,1,1469, | ||
3583 | 955,16,0,433,1, | ||
3584 | 217,956,16,0,433, | ||
3585 | 1,1222,957,16,0, | ||
3586 | 433,1,2233,958,16, | ||
3587 | 0,433,1,1732,959, | ||
3588 | 16,0,433,1,463, | ||
3589 | 960,16,0,433,1, | ||
3590 | 1993,961,16,0,433, | ||
3591 | 1,488,962,16,0, | ||
3592 | 433,1,1639,963,16, | ||
3593 | 0,433,1,236,964, | ||
3594 | 16,0,433,1,6, | ||
3595 | 965,19,311,1,6, | ||
3596 | 966,5,1,1,40, | ||
3597 | 967,16,0,309,1, | ||
3598 | 7,968,19,286,1, | ||
3599 | 7,969,5,1,1, | ||
3600 | 40,970,16,0,284, | ||
3601 | 1,8,971,19,255, | ||
3602 | 1,8,972,5,1, | ||
3603 | 1,40,973,16,0, | ||
3604 | 253,1,9,974,19, | ||
3605 | 337,1,9,975,5, | ||
3606 | 1,1,40,976,16, | ||
3607 | 0,335,1,10,977, | ||
3608 | 19,176,1,10,978, | ||
3609 | 5,1,1,40,979, | ||
3610 | 16,0,174,1,11, | ||
3611 | 980,19,159,1,11, | ||
3612 | 981,5,114,1,504, | ||
3613 | 982,17,983,15,984, | ||
3614 | 4,34,37,0,82, | ||
3615 | 0,111,0,116,0, | ||
3616 | 97,0,116,0,105, | ||
3617 | 0,111,0,110,0, | ||
3618 | 67,0,111,0,110, | ||
3619 | 0,115,0,116,0, | ||
3620 | 97,0,110,0,116, | ||
3621 | 0,1,-1,1,5, | ||
3622 | 985,20,986,4,36, | ||
3623 | 82,0,111,0,116, | ||
3624 | 0,97,0,116,0, | ||
3625 | 105,0,111,0,110, | ||
3626 | 0,67,0,111,0, | ||
3627 | 110,0,115,0,116, | ||
3628 | 0,97,0,110,0, | ||
3629 | 116,0,95,0,49, | ||
3630 | 0,1,203,1,3, | ||
3631 | 1,10,1,9,987, | ||
3632 | 22,1,67,1,1760, | ||
3633 | 718,1,1513,988,16, | ||
3634 | 0,537,1,1263,989, | ||
3635 | 17,990,15,991,4, | ||
3636 | 22,37,0,65,0, | ||
3637 | 115,0,115,0,105, | ||
3638 | 0,103,0,110,0, | ||
3639 | 109,0,101,0,110, | ||
3640 | 0,116,0,1,-1, | ||
3641 | 1,5,992,20,993, | ||
3642 | 4,24,65,0,115, | ||
3643 | 0,115,0,105,0, | ||
3644 | 103,0,110,0,109, | ||
3645 | 0,101,0,110,0, | ||
3646 | 116,0,95,0,52, | ||
3647 | 0,1,191,1,3, | ||
3648 | 1,4,1,3,994, | ||
3649 | 22,1,55,1,9, | ||
3650 | 995,17,996,15,997, | ||
3651 | 4,24,37,0,68, | ||
3652 | 0,101,0,99,0, | ||
3653 | 108,0,97,0,114, | ||
3654 | 0,97,0,116,0, | ||
3655 | 105,0,111,0,110, | ||
3656 | 0,1,-1,1,5, | ||
3657 | 998,20,999,4,26, | ||
3658 | 68,0,101,0,99, | ||
3659 | 0,108,0,97,0, | ||
3660 | 114,0,97,0,116, | ||
3661 | 0,105,0,111,0, | ||
3662 | 110,0,95,0,49, | ||
3663 | 0,1,158,1,3, | ||
3664 | 1,3,1,2,1000, | ||
3665 | 22,1,21,1,262, | ||
3666 | 1001,17,1002,15,1003, | ||
3667 | 4,34,37,0,66, | ||
3668 | 0,105,0,110,0, | ||
3669 | 97,0,114,0,121, | ||
3670 | 0,69,0,120,0, | ||
3671 | 112,0,114,0,101, | ||
3672 | 0,115,0,115,0, | ||
3673 | 105,0,111,0,110, | ||
3674 | 0,1,-1,1,5, | ||
3675 | 1004,20,1005,4,36, | ||
3676 | 66,0,105,0,110, | ||
3677 | 0,97,0,114,0, | ||
3678 | 121,0,69,0,120, | ||
3679 | 0,112,0,114,0, | ||
3680 | 101,0,115,0,115, | ||
3681 | 0,105,0,111,0, | ||
3682 | 110,0,95,0,53, | ||
3683 | 0,1,221,1,3, | ||
3684 | 1,4,1,3,1006, | ||
3685 | 22,1,85,1,19, | ||
3686 | 1007,17,996,1,2, | ||
3687 | 1000,1,1527,1008,17, | ||
3688 | 1009,15,1010,4,34, | ||
3689 | 37,0,70,0,111, | ||
3690 | 0,114,0,76,0, | ||
3691 | 111,0,111,0,112, | ||
3692 | 0,83,0,116,0, | ||
3693 | 97,0,116,0,101, | ||
3694 | 0,109,0,101,0, | ||
3695 | 110,0,116,0,1, | ||
3696 | -1,1,5,1011,20, | ||
3697 | 1012,4,36,70,0, | ||
3698 | 111,0,114,0,76, | ||
3699 | 0,111,0,111,0, | ||
3700 | 112,0,83,0,116, | ||
3701 | 0,97,0,116,0, | ||
3702 | 101,0,109,0,101, | ||
3703 | 0,110,0,116,0, | ||
3704 | 95,0,51,0,1, | ||
3705 | 186,1,3,1,4, | ||
3706 | 1,3,1013,22,1, | ||
3707 | 50,1,477,1014,17, | ||
3708 | 1015,15,1016,4,18, | ||
3709 | 37,0,67,0,111, | ||
3710 | 0,110,0,115,0, | ||
3711 | 116,0,97,0,110, | ||
3712 | 0,116,0,1,-1, | ||
3713 | 1,5,1017,20,1018, | ||
3714 | 4,20,67,0,111, | ||
3715 | 0,110,0,115,0, | ||
3716 | 116,0,97,0,110, | ||
3717 | 0,116,0,95,0, | ||
3718 | 51,0,1,200,1, | ||
3719 | 3,1,2,1,1, | ||
3720 | 1019,22,1,64,1, | ||
3721 | 2037,820,1,2038,739, | ||
3722 | 1,1788,1020,16,0, | ||
3723 | 357,1,32,1021,16, | ||
3724 | 0,357,1,2041,747, | ||
3725 | 1,2043,711,1,40, | ||
3726 | 1022,17,1023,15,1024, | ||
3727 | 4,32,37,0,73, | ||
3728 | 0,100,0,101,0, | ||
3729 | 110,0,116,0,69, | ||
3730 | 0,120,0,112,0, | ||
3731 | 114,0,101,0,115, | ||
3732 | 0,115,0,105,0, | ||
3733 | 111,0,110,0,1, | ||
3734 | -1,1,5,1025,20, | ||
3735 | 1026,4,34,73,0, | ||
3736 | 100,0,101,0,110, | ||
3737 | 0,116,0,69,0, | ||
3738 | 120,0,112,0,114, | ||
3739 | 0,101,0,115,0, | ||
3740 | 115,0,105,0,111, | ||
3741 | 0,110,0,95,0, | ||
3742 | 49,0,1,206,1, | ||
3743 | 3,1,2,1,1, | ||
3744 | 1027,22,1,70,1, | ||
3745 | 283,1028,17,1029,15, | ||
3746 | 1003,1,-1,1,5, | ||
3747 | 1030,20,1031,4,36, | ||
3748 | 66,0,105,0,110, | ||
3749 | 0,97,0,114,0, | ||
3750 | 121,0,69,0,120, | ||
3751 | 0,112,0,114,0, | ||
3752 | 101,0,115,0,115, | ||
3753 | 0,105,0,111,0, | ||
3754 | 110,0,95,0,52, | ||
3755 | 0,1,220,1,3, | ||
3756 | 1,4,1,3,1032, | ||
3757 | 22,1,84,1,1298, | ||
3758 | 1033,17,1034,15,991, | ||
3759 | 1,-1,1,5,1035, | ||
3760 | 20,1036,4,24,65, | ||
3761 | 0,115,0,115,0, | ||
3762 | 105,0,103,0,110, | ||
3763 | 0,109,0,101,0, | ||
3764 | 110,0,116,0,95, | ||
3765 | 0,51,0,1,190, | ||
3766 | 1,3,1,4,1, | ||
3767 | 3,1037,22,1,54, | ||
3768 | 1,44,1038,17,1023, | ||
3769 | 1,1,1027,1,47, | ||
3770 | 1039,17,1040,15,1041, | ||
3771 | 4,38,37,0,73, | ||
3772 | 0,100,0,101,0, | ||
3773 | 110,0,116,0,68, | ||
3774 | 0,111,0,116,0, | ||
3775 | 69,0,120,0,112, | ||
3776 | 0,114,0,101,0, | ||
3777 | 115,0,115,0,105, | ||
3778 | 0,111,0,110,0, | ||
3779 | 1,-1,1,5,1042, | ||
3780 | 20,1043,4,40,73, | ||
3781 | 0,100,0,101,0, | ||
3782 | 110,0,116,0,68, | ||
3783 | 0,111,0,116,0, | ||
3784 | 69,0,120,0,112, | ||
3785 | 0,114,0,101,0, | ||
3786 | 115,0,115,0,105, | ||
3787 | 0,111,0,110,0, | ||
3788 | 95,0,49,0,1, | ||
3789 | 207,1,3,1,4, | ||
3790 | 1,3,1044,22,1, | ||
3791 | 71,1,48,1045,17, | ||
3792 | 1046,15,1047,4,58, | ||
3793 | 37,0,73,0,110, | ||
3794 | 0,99,0,114,0, | ||
3795 | 101,0,109,0,101, | ||
3796 | 0,110,0,116,0, | ||
3797 | 68,0,101,0,99, | ||
3798 | 0,114,0,101,0, | ||
3799 | 109,0,101,0,110, | ||
3800 | 0,116,0,69,0, | ||
3801 | 120,0,112,0,114, | ||
3802 | 0,101,0,115,0, | ||
3803 | 115,0,105,0,111, | ||
3804 | 0,110,0,1,-1, | ||
3805 | 1,5,1048,20,1049, | ||
3806 | 4,60,73,0,110, | ||
3807 | 0,99,0,114,0, | ||
3808 | 101,0,109,0,101, | ||
3809 | 0,110,0,116,0, | ||
3810 | 68,0,101,0,99, | ||
3811 | 0,114,0,101,0, | ||
3812 | 109,0,101,0,110, | ||
3813 | 0,116,0,69,0, | ||
3814 | 120,0,112,0,114, | ||
3815 | 0,101,0,115,0, | ||
3816 | 115,0,105,0,111, | ||
3817 | 0,110,0,95,0, | ||
3818 | 52,0,1,211,1, | ||
3819 | 3,1,5,1,4, | ||
3820 | 1050,22,1,75,1, | ||
3821 | 49,1051,17,1052,15, | ||
3822 | 1047,1,-1,1,5, | ||
3823 | 1053,20,1054,4,60, | ||
3824 | 73,0,110,0,99, | ||
3825 | 0,114,0,101,0, | ||
3826 | 109,0,101,0,110, | ||
3827 | 0,116,0,68,0, | ||
3828 | 101,0,99,0,114, | ||
3829 | 0,101,0,109,0, | ||
3830 | 101,0,110,0,116, | ||
3831 | 0,69,0,120,0, | ||
3832 | 112,0,114,0,101, | ||
3833 | 0,115,0,115,0, | ||
3834 | 105,0,111,0,110, | ||
3835 | 0,95,0,51,0, | ||
3836 | 1,210,1,3,1, | ||
3837 | 5,1,4,1055,22, | ||
3838 | 1,74,1,50,1056, | ||
3839 | 17,1057,15,1047,1, | ||
3840 | -1,1,5,1058,20, | ||
3841 | 1059,4,60,73,0, | ||
3842 | 110,0,99,0,114, | ||
3843 | 0,101,0,109,0, | ||
3844 | 101,0,110,0,116, | ||
3845 | 0,68,0,101,0, | ||
3846 | 99,0,114,0,101, | ||
3847 | 0,109,0,101,0, | ||
3848 | 110,0,116,0,69, | ||
3849 | 0,120,0,112,0, | ||
3850 | 114,0,101,0,115, | ||
3851 | 0,115,0,105,0, | ||
3852 | 111,0,110,0,95, | ||
3853 | 0,50,0,1,209, | ||
3854 | 1,3,1,3,1, | ||
3855 | 2,1060,22,1,73, | ||
3856 | 1,51,1061,17,1062, | ||
3857 | 15,1047,1,-1,1, | ||
3858 | 5,1063,20,1064,4, | ||
3859 | 60,73,0,110,0, | ||
3860 | 99,0,114,0,101, | ||
3861 | 0,109,0,101,0, | ||
3862 | 110,0,116,0,68, | ||
3863 | 0,101,0,99,0, | ||
3864 | 114,0,101,0,109, | ||
3865 | 0,101,0,110,0, | ||
3866 | 116,0,69,0,120, | ||
3867 | 0,112,0,114,0, | ||
3868 | 101,0,115,0,115, | ||
3869 | 0,105,0,111,0, | ||
3870 | 110,0,95,0,49, | ||
3871 | 0,1,208,1,3, | ||
3872 | 1,3,1,2,1065, | ||
3873 | 22,1,72,1,305, | ||
3874 | 1066,17,1067,15,1003, | ||
3875 | 1,-1,1,5,1068, | ||
3876 | 20,1069,4,36,66, | ||
3877 | 0,105,0,110,0, | ||
3878 | 97,0,114,0,121, | ||
3879 | 0,69,0,120,0, | ||
3880 | 112,0,114,0,101, | ||
3881 | 0,115,0,115,0, | ||
3882 | 105,0,111,0,110, | ||
3883 | 0,95,0,51,0, | ||
3884 | 1,219,1,3,1, | ||
3885 | 4,1,3,1070,22, | ||
3886 | 1,83,1,1565,1071, | ||
3887 | 16,0,564,1,1817, | ||
3888 | 790,1,1818,1072,16, | ||
3889 | 0,357,1,63,1073, | ||
3890 | 17,1074,15,1075,4, | ||
3891 | 38,37,0,84,0, | ||
3892 | 121,0,112,0,101, | ||
3893 | 0,99,0,97,0, | ||
3894 | 115,0,116,0,69, | ||
3895 | 0,120,0,112,0, | ||
3896 | 114,0,101,0,115, | ||
3897 | 0,115,0,105,0, | ||
3898 | 111,0,110,0,1, | ||
3899 | -1,1,5,1076,20, | ||
3900 | 1077,4,40,84,0, | ||
3901 | 121,0,112,0,101, | ||
3902 | 0,99,0,97,0, | ||
3903 | 115,0,116,0,69, | ||
3904 | 0,120,0,112,0, | ||
3905 | 114,0,101,0,115, | ||
3906 | 0,115,0,105,0, | ||
3907 | 111,0,110,0,95, | ||
3908 | 0,50,0,1,240, | ||
3909 | 1,3,1,5,1, | ||
3910 | 4,1078,22,1,104, | ||
3911 | 1,66,1079,17,1080, | ||
3912 | 15,1075,1,-1,1, | ||
3913 | 5,1081,20,1082,4, | ||
3914 | 40,84,0,121,0, | ||
3915 | 112,0,101,0,99, | ||
3916 | 0,97,0,115,0, | ||
3917 | 116,0,69,0,120, | ||
3918 | 0,112,0,114,0, | ||
3919 | 101,0,115,0,115, | ||
3920 | 0,105,0,111,0, | ||
3921 | 110,0,95,0,51, | ||
3922 | 0,1,241,1,3, | ||
3923 | 1,7,1,6,1083, | ||
3924 | 22,1,105,1,67, | ||
3925 | 1084,17,1085,15,1075, | ||
3926 | 1,-1,1,5,1086, | ||
3927 | 20,1087,4,40,84, | ||
3928 | 0,121,0,112,0, | ||
3929 | 101,0,99,0,97, | ||
3930 | 0,115,0,116,0, | ||
3931 | 69,0,120,0,112, | ||
3932 | 0,114,0,101,0, | ||
3933 | 115,0,115,0,105, | ||
3934 | 0,111,0,110,0, | ||
3935 | 95,0,55,0,1, | ||
3936 | 245,1,3,1,8, | ||
3937 | 1,7,1088,22,1, | ||
3938 | 109,1,68,1089,17, | ||
3939 | 1090,15,1075,1,-1, | ||
3940 | 1,5,1091,20,1092, | ||
3941 | 4,40,84,0,121, | ||
3942 | 0,112,0,101,0, | ||
3943 | 99,0,97,0,115, | ||
3944 | 0,116,0,69,0, | ||
3945 | 120,0,112,0,114, | ||
3946 | 0,101,0,115,0, | ||
3947 | 115,0,105,0,111, | ||
3948 | 0,110,0,95,0, | ||
3949 | 53,0,1,243,1, | ||
3950 | 3,1,8,1,7, | ||
3951 | 1093,22,1,107,1, | ||
3952 | 69,1094,17,1095,15, | ||
3953 | 1075,1,-1,1,5, | ||
3954 | 1096,20,1097,4,40, | ||
3955 | 84,0,121,0,112, | ||
3956 | 0,101,0,99,0, | ||
3957 | 97,0,115,0,116, | ||
3958 | 0,69,0,120,0, | ||
3959 | 112,0,114,0,101, | ||
3960 | 0,115,0,115,0, | ||
3961 | 105,0,111,0,110, | ||
3962 | 0,95,0,54,0, | ||
3963 | 1,244,1,3,1, | ||
3964 | 6,1,5,1098,22, | ||
3965 | 1,108,1,70,1099, | ||
3966 | 17,1100,15,1075,1, | ||
3967 | -1,1,5,1101,20, | ||
3968 | 1102,4,40,84,0, | ||
3969 | 121,0,112,0,101, | ||
3970 | 0,99,0,97,0, | ||
3971 | 115,0,116,0,69, | ||
3972 | 0,120,0,112,0, | ||
3973 | 114,0,101,0,115, | ||
3974 | 0,115,0,105,0, | ||
3975 | 111,0,110,0,95, | ||
3976 | 0,52,0,1,242, | ||
3977 | 1,3,1,6,1, | ||
3978 | 5,1103,22,1,106, | ||
3979 | 1,573,1104,17,1105, | ||
3980 | 15,1106,4,26,37, | ||
3981 | 0,76,0,105,0, | ||
3982 | 115,0,116,0,67, | ||
3983 | 0,111,0,110,0, | ||
3984 | 115,0,116,0,97, | ||
3985 | 0,110,0,116,0, | ||
3986 | 1,-1,1,5,1107, | ||
3987 | 20,1108,4,28,76, | ||
3988 | 0,105,0,115,0, | ||
3989 | 116,0,67,0,111, | ||
3990 | 0,110,0,115,0, | ||
3991 | 116,0,97,0,110, | ||
3992 | 0,116,0,95,0, | ||
3993 | 49,0,1,204,1, | ||
3994 | 3,1,4,1,3, | ||
3995 | 1109,22,1,68,1, | ||
3996 | 1011,1110,17,1111,15, | ||
3997 | 1112,4,44,37,0, | ||
3998 | 80,0,97,0,114, | ||
3999 | 0,101,0,110,0, | ||
4000 | 116,0,104,0,101, | ||
4001 | 0,115,0,105,0, | ||
4002 | 115,0,69,0,120, | ||
4003 | 0,112,0,114,0, | ||
4004 | 101,0,115,0,115, | ||
4005 | 0,105,0,111,0, | ||
4006 | 110,0,1,-1,1, | ||
4007 | 5,1113,20,1114,4, | ||
4008 | 46,80,0,97,0, | ||
4009 | 114,0,101,0,110, | ||
4010 | 0,116,0,104,0, | ||
4011 | 101,0,115,0,105, | ||
4012 | 0,115,0,69,0, | ||
4013 | 120,0,112,0,114, | ||
4014 | 0,101,0,115,0, | ||
4015 | 115,0,105,0,111, | ||
4016 | 0,110,0,95,0, | ||
4017 | 49,0,1,238,1, | ||
4018 | 3,1,4,1,3, | ||
4019 | 1115,22,1,102,1, | ||
4020 | 74,1116,17,1117,15, | ||
4021 | 1075,1,-1,1,5, | ||
4022 | 1118,20,1119,4,40, | ||
4023 | 84,0,121,0,112, | ||
4024 | 0,101,0,99,0, | ||
4025 | 97,0,115,0,116, | ||
4026 | 0,69,0,120,0, | ||
4027 | 112,0,114,0,101, | ||
4028 | 0,115,0,115,0, | ||
4029 | 105,0,111,0,110, | ||
4030 | 0,95,0,57,0, | ||
4031 | 1,247,1,3,1, | ||
4032 | 7,1,6,1120,22, | ||
4033 | 1,111,1,1046,1121, | ||
4034 | 17,1122,15,1003,1, | ||
4035 | -1,1,5,1123,20, | ||
4036 | 1124,4,38,66,0, | ||
4037 | 105,0,110,0,97, | ||
4038 | 0,114,0,121,0, | ||
4039 | 69,0,120,0,112, | ||
4040 | 0,114,0,101,0, | ||
4041 | 115,0,115,0,105, | ||
4042 | 0,111,0,110,0, | ||
4043 | 95,0,49,0,56, | ||
4044 | 0,1,234,1,3, | ||
4045 | 1,4,1,3,1125, | ||
4046 | 22,1,98,1,328, | ||
4047 | 1126,17,1127,15,1003, | ||
4048 | 1,-1,1,5,1128, | ||
4049 | 20,1129,4,36,66, | ||
4050 | 0,105,0,110,0, | ||
4051 | 97,0,114,0,121, | ||
4052 | 0,69,0,120,0, | ||
4053 | 112,0,114,0,101, | ||
4054 | 0,115,0,115,0, | ||
4055 | 105,0,111,0,110, | ||
4056 | 0,95,0,50,0, | ||
4057 | 1,218,1,3,1, | ||
4058 | 4,1,3,1130,22, | ||
4059 | 1,82,1,1333,1131, | ||
4060 | 17,1132,15,991,1, | ||
4061 | -1,1,5,1133,20, | ||
4062 | 1134,4,24,65,0, | ||
4063 | 115,0,115,0,105, | ||
4064 | 0,103,0,110,0, | ||
4065 | 109,0,101,0,110, | ||
4066 | 0,116,0,95,0, | ||
4067 | 50,0,1,189,1, | ||
4068 | 3,1,4,1,3, | ||
4069 | 1135,22,1,53,1, | ||
4070 | 82,1136,17,1137,15, | ||
4071 | 1138,4,32,37,0, | ||
4072 | 85,0,110,0,97, | ||
4073 | 0,114,0,121,0, | ||
4074 | 69,0,120,0,112, | ||
4075 | 0,114,0,101,0, | ||
4076 | 115,0,115,0,105, | ||
4077 | 0,111,0,110,0, | ||
4078 | 1,-1,1,5,1139, | ||
4079 | 20,1140,4,34,85, | ||
4080 | 0,110,0,97,0, | ||
4081 | 114,0,121,0,69, | ||
4082 | 0,120,0,112,0, | ||
4083 | 114,0,101,0,115, | ||
4084 | 0,115,0,105,0, | ||
4085 | 111,0,110,0,95, | ||
4086 | 0,51,0,1,237, | ||
4087 | 1,3,1,3,1, | ||
4088 | 2,1141,22,1,101, | ||
4089 | 1,1847,829,1,1850, | ||
4090 | 1142,17,1143,15,1144, | ||
4091 | 4,24,37,0,83, | ||
4092 | 0,116,0,97,0, | ||
4093 | 116,0,101,0,67, | ||
4094 | 0,104,0,97,0, | ||
4095 | 110,0,103,0,101, | ||
4096 | 0,1,-1,1,5, | ||
4097 | 1145,20,1146,4,26, | ||
4098 | 83,0,116,0,97, | ||
4099 | 0,116,0,101,0, | ||
4100 | 67,0,104,0,97, | ||
4101 | 0,110,0,103,0, | ||
4102 | 101,0,95,0,50, | ||
4103 | 0,1,178,1,3, | ||
4104 | 1,3,1,2,1147, | ||
4105 | 22,1,42,1,1851, | ||
4106 | 1148,17,1149,15,1144, | ||
4107 | 1,-1,1,5,1150, | ||
4108 | 20,1151,4,26,83, | ||
4109 | 0,116,0,97,0, | ||
4110 | 116,0,101,0,67, | ||
4111 | 0,104,0,97,0, | ||
4112 | 110,0,103,0,101, | ||
4113 | 0,95,0,49,0, | ||
4114 | 1,177,1,3,1, | ||
4115 | 3,1,2,1152,22, | ||
4116 | 1,41,1,1853,1153, | ||
4117 | 17,1154,15,1155,4, | ||
4118 | 28,37,0,74,0, | ||
4119 | 117,0,109,0,112, | ||
4120 | 0,83,0,116,0, | ||
4121 | 97,0,116,0,101, | ||
4122 | 0,109,0,101,0, | ||
4123 | 110,0,116,0,1, | ||
4124 | -1,1,5,1156,20, | ||
4125 | 1157,4,30,74,0, | ||
4126 | 117,0,109,0,112, | ||
4127 | 0,83,0,116,0, | ||
4128 | 97,0,116,0,101, | ||
4129 | 0,109,0,101,0, | ||
4130 | 110,0,116,0,95, | ||
4131 | 0,49,0,1,176, | ||
4132 | 1,3,1,3,1, | ||
4133 | 2,1158,22,1,40, | ||
4134 | 1,93,1159,17,1160, | ||
4135 | 15,1138,1,-1,1, | ||
4136 | 5,1161,20,1162,4, | ||
4137 | 34,85,0,110,0, | ||
4138 | 97,0,114,0,121, | ||
4139 | 0,69,0,120,0, | ||
4140 | 112,0,114,0,101, | ||
4141 | 0,115,0,115,0, | ||
4142 | 105,0,111,0,110, | ||
4143 | 0,95,0,50,0, | ||
4144 | 1,236,1,3,1, | ||
4145 | 3,1,2,1163,22, | ||
4146 | 1,100,1,1855,1164, | ||
4147 | 17,1165,15,1166,4, | ||
4148 | 20,37,0,74,0, | ||
4149 | 117,0,109,0,112, | ||
4150 | 0,76,0,97,0, | ||
4151 | 98,0,101,0,108, | ||
4152 | 0,1,-1,1,5, | ||
4153 | 1167,20,1168,4,22, | ||
4154 | 74,0,117,0,109, | ||
4155 | 0,112,0,76,0, | ||
4156 | 97,0,98,0,101, | ||
4157 | 0,108,0,95,0, | ||
4158 | 49,0,1,175,1, | ||
4159 | 3,1,3,1,2, | ||
4160 | 1169,22,1,39,1, | ||
4161 | 1856,779,1,1857,674, | ||
4162 | 1,1858,680,1,1859, | ||
4163 | 685,1,1860,690,1, | ||
4164 | 1861,1170,16,0,338, | ||
4165 | 1,1862,696,1,1863, | ||
4166 | 1171,16,0,342,1, | ||
4167 | 1864,701,1,1865,1172, | ||
4168 | 16,0,346,1,1866, | ||
4169 | 706,1,1867,1173,16, | ||
4170 | 0,350,1,1868,797, | ||
4171 | 1,1869,1174,16,0, | ||
4172 | 389,1,1870,724,1, | ||
4173 | 1871,729,1,2232,1175, | ||
4174 | 16,0,262,1,1121, | ||
4175 | 1176,17,1177,15,991, | ||
4176 | 1,-1,1,5,1178, | ||
4177 | 20,1179,4,24,65, | ||
4178 | 0,115,0,115,0, | ||
4179 | 105,0,103,0,110, | ||
4180 | 0,109,0,101,0, | ||
4181 | 110,0,116,0,95, | ||
4182 | 0,56,0,1,195, | ||
4183 | 1,3,1,6,1, | ||
4184 | 5,1180,22,1,59, | ||
4185 | 1,118,1181,17,1182, | ||
4186 | 15,1003,1,-1,1, | ||
4187 | 5,1183,20,1184,4, | ||
4188 | 38,66,0,105,0, | ||
4189 | 110,0,97,0,114, | ||
4190 | 0,121,0,69,0, | ||
4191 | 120,0,112,0,114, | ||
4192 | 0,101,0,115,0, | ||
4193 | 115,0,105,0,111, | ||
4194 | 0,110,0,95,0, | ||
4195 | 49,0,52,0,1, | ||
4196 | 230,1,3,1,4, | ||
4197 | 1,3,1185,22,1, | ||
4198 | 94,1,371,1186,17, | ||
4199 | 1187,15,1188,4,46, | ||
4200 | 37,0,70,0,117, | ||
4201 | 0,110,0,99,0, | ||
4202 | 116,0,105,0,111, | ||
4203 | 0,110,0,67,0, | ||
4204 | 97,0,108,0,108, | ||
4205 | 0,69,0,120,0, | ||
4206 | 112,0,114,0,101, | ||
4207 | 0,115,0,115,0, | ||
4208 | 105,0,111,0,110, | ||
4209 | 0,1,-1,1,5, | ||
4210 | 1189,20,1190,4,48, | ||
4211 | 70,0,117,0,110, | ||
4212 | 0,99,0,116,0, | ||
4213 | 105,0,111,0,110, | ||
4214 | 0,67,0,97,0, | ||
4215 | 108,0,108,0,69, | ||
4216 | 0,120,0,112,0, | ||
4217 | 114,0,101,0,115, | ||
4218 | 0,115,0,105,0, | ||
4219 | 111,0,110,0,95, | ||
4220 | 0,49,0,1,216, | ||
4221 | 1,3,1,2,1, | ||
4222 | 1,1191,22,1,80, | ||
4223 | 1,107,1192,17,1193, | ||
4224 | 15,1138,1,-1,1, | ||
4225 | 5,1194,20,1195,4, | ||
4226 | 34,85,0,110,0, | ||
4227 | 97,0,114,0,121, | ||
4228 | 0,69,0,120,0, | ||
4229 | 112,0,114,0,101, | ||
4230 | 0,115,0,115,0, | ||
4231 | 105,0,111,0,110, | ||
4232 | 0,95,0,49,0, | ||
4233 | 1,235,1,3,1, | ||
4234 | 3,1,2,1196,22, | ||
4235 | 1,99,1,375,1197, | ||
4236 | 17,1198,15,1047,1, | ||
4237 | -1,1,5,1199,20, | ||
4238 | 1200,4,60,73,0, | ||
4239 | 110,0,99,0,114, | ||
4240 | 0,101,0,109,0, | ||
4241 | 101,0,110,0,116, | ||
4242 | 0,68,0,101,0, | ||
4243 | 99,0,114,0,101, | ||
4244 | 0,109,0,101,0, | ||
4245 | 110,0,116,0,69, | ||
4246 | 0,120,0,112,0, | ||
4247 | 114,0,101,0,115, | ||
4248 | 0,115,0,105,0, | ||
4249 | 111,0,110,0,95, | ||
4250 | 0,56,0,1,215, | ||
4251 | 1,3,1,5,1, | ||
4252 | 4,1201,22,1,79, | ||
4253 | 1,377,1202,17,1203, | ||
4254 | 15,1047,1,-1,1, | ||
4255 | 5,1204,20,1205,4, | ||
4256 | 60,73,0,110,0, | ||
4257 | 99,0,114,0,101, | ||
4258 | 0,109,0,101,0, | ||
4259 | 110,0,116,0,68, | ||
4260 | 0,101,0,99,0, | ||
4261 | 114,0,101,0,109, | ||
4262 | 0,101,0,110,0, | ||
4263 | 116,0,69,0,120, | ||
4264 | 0,112,0,114,0, | ||
4265 | 101,0,115,0,115, | ||
4266 | 0,105,0,111,0, | ||
4267 | 110,0,95,0,53, | ||
4268 | 0,1,212,1,3, | ||
4269 | 1,3,1,2,1206, | ||
4270 | 22,1,76,1,352, | ||
4271 | 1207,17,1208,15,1003, | ||
4272 | 1,-1,1,5,1209, | ||
4273 | 20,1210,4,36,66, | ||
4274 | 0,105,0,110,0, | ||
4275 | 97,0,114,0,121, | ||
4276 | 0,69,0,120,0, | ||
4277 | 112,0,114,0,101, | ||
4278 | 0,115,0,115,0, | ||
4279 | 105,0,111,0,110, | ||
4280 | 0,95,0,49,0, | ||
4281 | 1,217,1,3,1, | ||
4282 | 4,1,3,1211,22, | ||
4283 | 1,81,1,827,1212, | ||
4284 | 17,1213,15,1003,1, | ||
4285 | -1,1,5,1214,20, | ||
4286 | 1215,4,38,66,0, | ||
4287 | 105,0,110,0,97, | ||
4288 | 0,114,0,121,0, | ||
4289 | 69,0,120,0,112, | ||
4290 | 0,114,0,101,0, | ||
4291 | 115,0,115,0,105, | ||
4292 | 0,111,0,110,0, | ||
4293 | 95,0,49,0,53, | ||
4294 | 0,1,231,1,3, | ||
4295 | 1,4,1,3,1216, | ||
4296 | 22,1,95,1,380, | ||
4297 | 1217,17,1218,15,1219, | ||
4298 | 4,38,37,0,67, | ||
4299 | 0,111,0,110,0, | ||
4300 | 115,0,116,0,97, | ||
4301 | 0,110,0,116,0, | ||
4302 | 69,0,120,0,112, | ||
4303 | 0,114,0,101,0, | ||
4304 | 115,0,115,0,105, | ||
4305 | 0,111,0,110,0, | ||
4306 | 1,-1,1,5,1220, | ||
4307 | 20,1221,4,40,67, | ||
4308 | 0,111,0,110,0, | ||
4309 | 115,0,116,0,97, | ||
4310 | 0,110,0,116,0, | ||
4311 | 69,0,120,0,112, | ||
4312 | 0,114,0,101,0, | ||
4313 | 115,0,115,0,105, | ||
4314 | 0,111,0,110,0, | ||
4315 | 95,0,49,0,1, | ||
4316 | 205,1,3,1,2, | ||
4317 | 1,1,1222,22,1, | ||
4318 | 69,1,130,1223,17, | ||
4319 | 1224,15,1003,1,-1, | ||
4320 | 1,5,1225,20,1226, | ||
4321 | 4,38,66,0,105, | ||
4322 | 0,110,0,97,0, | ||
4323 | 114,0,121,0,69, | ||
4324 | 0,120,0,112,0, | ||
4325 | 114,0,101,0,115, | ||
4326 | 0,115,0,105,0, | ||
4327 | 111,0,110,0,95, | ||
4328 | 0,49,0,51,0, | ||
4329 | 1,229,1,3,1, | ||
4330 | 4,1,3,1227,22, | ||
4331 | 1,93,1,1637,667, | ||
4332 | 1,1639,1228,16,0, | ||
4333 | 357,1,373,1229,17, | ||
4334 | 1230,15,1047,1,-1, | ||
4335 | 1,5,1231,20,1232, | ||
4336 | 4,60,73,0,110, | ||
4337 | 0,99,0,114,0, | ||
4338 | 101,0,109,0,101, | ||
4339 | 0,110,0,116,0, | ||
4340 | 68,0,101,0,99, | ||
4341 | 0,114,0,101,0, | ||
4342 | 109,0,101,0,110, | ||
4343 | 0,116,0,69,0, | ||
4344 | 120,0,112,0,114, | ||
4345 | 0,101,0,115,0, | ||
4346 | 115,0,105,0,111, | ||
4347 | 0,110,0,95,0, | ||
4348 | 54,0,1,213,1, | ||
4349 | 3,1,3,1,2, | ||
4350 | 1233,22,1,77,1, | ||
4351 | 1396,1234,17,1235,15, | ||
4352 | 1236,4,32,37,0, | ||
4353 | 82,0,101,0,116, | ||
4354 | 0,117,0,114,0, | ||
4355 | 110,0,83,0,116, | ||
4356 | 0,97,0,116,0, | ||
4357 | 101,0,109,0,101, | ||
4358 | 0,110,0,116,0, | ||
4359 | 1,-1,1,5,1237, | ||
4360 | 20,1238,4,34,82, | ||
4361 | 0,101,0,116,0, | ||
4362 | 117,0,114,0,110, | ||
4363 | 0,83,0,116,0, | ||
4364 | 97,0,116,0,101, | ||
4365 | 0,109,0,101,0, | ||
4366 | 110,0,116,0,95, | ||
4367 | 0,50,0,1,197, | ||
4368 | 1,3,1,2,1, | ||
4369 | 1,1239,22,1,61, | ||
4370 | 1,143,1240,17,1241, | ||
4371 | 15,1003,1,-1,1, | ||
4372 | 5,1242,20,1243,4, | ||
4373 | 38,66,0,105,0, | ||
4374 | 110,0,97,0,114, | ||
4375 | 0,121,0,69,0, | ||
4376 | 120,0,112,0,114, | ||
4377 | 0,101,0,115,0, | ||
4378 | 115,0,105,0,111, | ||
4379 | 0,110,0,95,0, | ||
4380 | 49,0,50,0,1, | ||
4381 | 228,1,3,1,4, | ||
4382 | 1,3,1244,22,1, | ||
4383 | 92,1,1112,1245,17, | ||
4384 | 1040,1,3,1044,1, | ||
4385 | 1402,1246,17,1247,15, | ||
4386 | 1236,1,-1,1,5, | ||
4387 | 1248,20,1249,4,34, | ||
4388 | 82,0,101,0,116, | ||
4389 | 0,117,0,114,0, | ||
4390 | 110,0,83,0,116, | ||
4391 | 0,97,0,116,0, | ||
4392 | 101,0,109,0,101, | ||
4393 | 0,110,0,116,0, | ||
4394 | 95,0,49,0,1, | ||
4395 | 196,1,3,1,3, | ||
4396 | 1,2,1250,22,1, | ||
4397 | 60,1,1557,1251,17, | ||
4398 | 1252,15,1010,1,-1, | ||
4399 | 1,5,1253,20,1254, | ||
4400 | 4,36,70,0,111, | ||
4401 | 0,114,0,76,0, | ||
4402 | 111,0,111,0,112, | ||
4403 | 0,83,0,116,0, | ||
4404 | 97,0,116,0,101, | ||
4405 | 0,109,0,101,0, | ||
4406 | 110,0,116,0,95, | ||
4407 | 0,52,0,1,187, | ||
4408 | 1,3,1,4,1, | ||
4409 | 3,1255,22,1,51, | ||
4410 | 1,1158,1256,17,1257, | ||
4411 | 15,991,1,-1,1, | ||
4412 | 5,1258,20,1259,4, | ||
4413 | 24,65,0,115,0, | ||
4414 | 115,0,105,0,103, | ||
4415 | 0,110,0,109,0, | ||
4416 | 101,0,110,0,116, | ||
4417 | 0,95,0,55,0, | ||
4418 | 1,194,1,3,1, | ||
4419 | 4,1,3,1260,22, | ||
4420 | 1,58,1,1366,1261, | ||
4421 | 16,0,392,1,157, | ||
4422 | 1262,17,1263,15,1003, | ||
4423 | 1,-1,1,5,1264, | ||
4424 | 20,1265,4,38,66, | ||
4425 | 0,105,0,110,0, | ||
4426 | 97,0,114,0,121, | ||
4427 | 0,69,0,120,0, | ||
4428 | 112,0,114,0,101, | ||
4429 | 0,115,0,115,0, | ||
4430 | 105,0,111,0,110, | ||
4431 | 0,95,0,49,0, | ||
4432 | 49,0,1,227,1, | ||
4433 | 3,1,4,1,3, | ||
4434 | 1266,22,1,91,1, | ||
4435 | 883,1267,17,1268,15, | ||
4436 | 1003,1,-1,1,5, | ||
4437 | 1269,20,1270,4,38, | ||
4438 | 66,0,105,0,110, | ||
4439 | 0,97,0,114,0, | ||
4440 | 121,0,69,0,120, | ||
4441 | 0,112,0,114,0, | ||
4442 | 101,0,115,0,115, | ||
4443 | 0,105,0,111,0, | ||
4444 | 110,0,95,0,49, | ||
4445 | 0,54,0,1,232, | ||
4446 | 1,3,1,4,1, | ||
4447 | 3,1271,22,1,96, | ||
4448 | 1,1094,1272,17,1273, | ||
4449 | 15,1274,4,26,37, | ||
4450 | 0,70,0,117,0, | ||
4451 | 110,0,99,0,116, | ||
4452 | 0,105,0,111,0, | ||
4453 | 110,0,67,0,97, | ||
4454 | 0,108,0,108,0, | ||
4455 | 1,-1,1,5,1275, | ||
4456 | 20,1276,4,28,70, | ||
4457 | 0,117,0,110,0, | ||
4458 | 99,0,116,0,105, | ||
4459 | 0,111,0,110,0, | ||
4460 | 67,0,97,0,108, | ||
4461 | 0,108,0,95,0, | ||
4462 | 49,0,1,248,1, | ||
4463 | 3,1,5,1,4, | ||
4464 | 1277,22,1,112,1, | ||
4465 | 379,1278,17,1279,15, | ||
4466 | 1047,1,-1,1,5, | ||
4467 | 1280,20,1281,4,60, | ||
4468 | 73,0,110,0,99, | ||
4469 | 0,114,0,101,0, | ||
4470 | 109,0,101,0,110, | ||
4471 | 0,116,0,68,0, | ||
4472 | 101,0,99,0,114, | ||
4473 | 0,101,0,109,0, | ||
4474 | 101,0,110,0,116, | ||
4475 | 0,69,0,120,0, | ||
4476 | 112,0,114,0,101, | ||
4477 | 0,115,0,115,0, | ||
4478 | 105,0,111,0,110, | ||
4479 | 0,95,0,55,0, | ||
4480 | 1,214,1,3,1, | ||
4481 | 5,1,4,1282,22, | ||
4482 | 1,78,1,172,1283, | ||
4483 | 17,1284,15,1003,1, | ||
4484 | -1,1,5,1285,20, | ||
4485 | 1286,4,38,66,0, | ||
4486 | 105,0,110,0,97, | ||
4487 | 0,114,0,121,0, | ||
4488 | 69,0,120,0,112, | ||
4489 | 0,114,0,101,0, | ||
4490 | 115,0,115,0,105, | ||
4491 | 0,111,0,110,0, | ||
4492 | 95,0,49,0,48, | ||
4493 | 0,1,226,1,3, | ||
4494 | 1,4,1,3,1287, | ||
4495 | 22,1,90,1,1385, | ||
4496 | 803,1,1431,1288,16, | ||
4497 | 0,419,1,1438,1289, | ||
4498 | 17,1290,15,991,1, | ||
4499 | -1,1,5,1291,20, | ||
4500 | 1292,4,24,65,0, | ||
4501 | 115,0,115,0,105, | ||
4502 | 0,103,0,110,0, | ||
4503 | 109,0,101,0,110, | ||
4504 | 0,116,0,95,0, | ||
4505 | 49,0,1,188,1, | ||
4506 | 3,1,4,1,3, | ||
4507 | 1293,22,1,52,1, | ||
4508 | 1693,1294,16,0,157, | ||
4509 | 1,1694,771,1,1193, | ||
4510 | 1295,17,1296,15,991, | ||
4511 | 1,-1,1,5,1297, | ||
4512 | 20,1298,4,24,65, | ||
4513 | 0,115,0,115,0, | ||
4514 | 105,0,103,0,110, | ||
4515 | 0,109,0,101,0, | ||
4516 | 110,0,116,0,95, | ||
4517 | 0,54,0,1,193, | ||
4518 | 1,3,1,4,1, | ||
4519 | 3,1299,22,1,57, | ||
4520 | 1,188,1300,17,1301, | ||
4521 | 15,1003,1,-1,1, | ||
4522 | 5,1302,20,1303,4, | ||
4523 | 36,66,0,105,0, | ||
4524 | 110,0,97,0,114, | ||
4525 | 0,121,0,69,0, | ||
4526 | 120,0,112,0,114, | ||
4527 | 0,101,0,115,0, | ||
4528 | 115,0,105,0,111, | ||
4529 | 0,110,0,95,0, | ||
4530 | 57,0,1,225,1, | ||
4531 | 3,1,4,1,3, | ||
4532 | 1304,22,1,89,1, | ||
4533 | 1962,1305,17,1306,15, | ||
4534 | 1010,1,-1,1,5, | ||
4535 | 1307,20,1308,4,36, | ||
4536 | 70,0,111,0,114, | ||
4537 | 0,76,0,111,0, | ||
4538 | 111,0,112,0,83, | ||
4539 | 0,116,0,97,0, | ||
4540 | 116,0,101,0,109, | ||
4541 | 0,101,0,110,0, | ||
4542 | 116,0,95,0,50, | ||
4543 | 0,1,185,1,3, | ||
4544 | 1,2,1,1,1309, | ||
4545 | 22,1,49,1,1611, | ||
4546 | 1310,16,0,357,1, | ||
4547 | 1467,761,1,205,1311, | ||
4548 | 17,1312,15,1003,1, | ||
4549 | -1,1,5,1313,20, | ||
4550 | 1314,4,36,66,0, | ||
4551 | 105,0,110,0,97, | ||
4552 | 0,114,0,121,0, | ||
4553 | 69,0,120,0,112, | ||
4554 | 0,114,0,101,0, | ||
4555 | 115,0,115,0,105, | ||
4556 | 0,111,0,110,0, | ||
4557 | 95,0,56,0,1, | ||
4558 | 224,1,3,1,4, | ||
4559 | 1,3,1315,22,1, | ||
4560 | 88,1,942,1316,17, | ||
4561 | 1317,15,1003,1,-1, | ||
4562 | 1,5,1318,20,1319, | ||
4563 | 4,38,66,0,105, | ||
4564 | 0,110,0,97,0, | ||
4565 | 114,0,121,0,69, | ||
4566 | 0,120,0,112,0, | ||
4567 | 114,0,101,0,115, | ||
4568 | 0,115,0,105,0, | ||
4569 | 111,0,110,0,95, | ||
4570 | 0,49,0,55,0, | ||
4571 | 1,233,1,3,1, | ||
4572 | 4,1,3,1320,22, | ||
4573 | 1,97,1,223,1321, | ||
4574 | 17,1322,15,1003,1, | ||
4575 | -1,1,5,1323,20, | ||
4576 | 1324,4,36,66,0, | ||
4577 | 105,0,110,0,97, | ||
4578 | 0,114,0,121,0, | ||
4579 | 69,0,120,0,112, | ||
4580 | 0,114,0,101,0, | ||
4581 | 115,0,115,0,105, | ||
4582 | 0,111,0,110,0, | ||
4583 | 95,0,55,0,1, | ||
4584 | 223,1,3,1,4, | ||
4585 | 1,3,1325,22,1, | ||
4586 | 87,1,1228,1326,17, | ||
4587 | 1327,15,991,1,-1, | ||
4588 | 1,5,1328,20,1329, | ||
4589 | 4,24,65,0,115, | ||
4590 | 0,115,0,105,0, | ||
4591 | 103,0,110,0,109, | ||
4592 | 0,101,0,110,0, | ||
4593 | 116,0,95,0,53, | ||
4594 | 0,1,192,1,3, | ||
4595 | 1,4,1,3,1330, | ||
4596 | 22,1,56,1,476, | ||
4597 | 1331,17,1332,15,1016, | ||
4598 | 1,-1,1,5,1333, | ||
4599 | 20,1334,4,20,67, | ||
4600 | 0,111,0,110,0, | ||
4601 | 115,0,116,0,97, | ||
4602 | 0,110,0,116,0, | ||
4603 | 95,0,52,0,1, | ||
4604 | 201,1,3,1,2, | ||
4605 | 1,1,1335,22,1, | ||
4606 | 65,1,1732,1336,16, | ||
4607 | 0,357,1,1482,1337, | ||
4608 | 17,1338,15,1010,1, | ||
4609 | -1,1,5,1339,20, | ||
4610 | 1340,4,36,70,0, | ||
4611 | 111,0,114,0,76, | ||
4612 | 0,111,0,111,0, | ||
4613 | 112,0,83,0,116, | ||
4614 | 0,97,0,116,0, | ||
4615 | 101,0,109,0,101, | ||
4616 | 0,110,0,116,0, | ||
4617 | 95,0,49,0,1, | ||
4618 | 184,1,3,1,2, | ||
4619 | 1,1,1341,22,1, | ||
4620 | 48,1,463,1342,17, | ||
4621 | 1343,15,1344,4,30, | ||
4622 | 37,0,86,0,101, | ||
4623 | 0,99,0,116,0, | ||
4624 | 111,0,114,0,67, | ||
4625 | 0,111,0,110,0, | ||
4626 | 115,0,116,0,97, | ||
4627 | 0,110,0,116,0, | ||
4628 | 1,-1,1,5,1345, | ||
4629 | 20,1346,4,32,86, | ||
4630 | 0,101,0,99,0, | ||
4631 | 116,0,111,0,114, | ||
4632 | 0,67,0,111,0, | ||
4633 | 110,0,115,0,116, | ||
4634 | 0,97,0,110,0, | ||
4635 | 116,0,95,0,49, | ||
4636 | 0,1,202,1,3, | ||
4637 | 1,8,1,7,1347, | ||
4638 | 22,1,66,1,2239, | ||
4639 | 1348,16,0,375,1, | ||
4640 | 1993,1349,16,0,357, | ||
4641 | 1,242,1350,17,1351, | ||
4642 | 15,1003,1,-1,1, | ||
4643 | 5,1352,20,1353,4, | ||
4644 | 36,66,0,105,0, | ||
4645 | 110,0,97,0,114, | ||
4646 | 0,121,0,69,0, | ||
4647 | 120,0,112,0,114, | ||
4648 | 0,101,0,115,0, | ||
4649 | 115,0,105,0,111, | ||
4650 | 0,110,0,95,0, | ||
4651 | 54,0,1,222,1, | ||
4652 | 3,1,4,1,3, | ||
4653 | 1354,22,1,86,1, | ||
4654 | 478,1355,17,1356,15, | ||
4655 | 1016,1,-1,1,5, | ||
4656 | 1357,20,1358,4,20, | ||
4657 | 67,0,111,0,110, | ||
4658 | 0,115,0,116,0, | ||
4659 | 97,0,110,0,116, | ||
4660 | 0,95,0,50,0, | ||
4661 | 1,199,1,3,1, | ||
4662 | 2,1,1,1359,22, | ||
4663 | 1,63,1,479,1360, | ||
4664 | 17,1361,15,1016,1, | ||
4665 | -1,1,5,1362,20, | ||
4666 | 1363,4,20,67,0, | ||
4667 | 111,0,110,0,115, | ||
4668 | 0,116,0,97,0, | ||
4669 | 110,0,116,0,95, | ||
4670 | 0,49,0,1,198, | ||
4671 | 1,3,1,2,1, | ||
4672 | 1,1364,22,1,62, | ||
4673 | 1,1001,1365,17,1366, | ||
4674 | 15,1075,1,-1,1, | ||
4675 | 5,1367,20,1368,4, | ||
4676 | 40,84,0,121,0, | ||
4677 | 112,0,101,0,99, | ||
4678 | 0,97,0,115,0, | ||
4679 | 116,0,69,0,120, | ||
4680 | 0,112,0,114,0, | ||
4681 | 101,0,115,0,115, | ||
4682 | 0,105,0,111,0, | ||
4683 | 110,0,95,0,56, | ||
4684 | 0,1,246,1,3, | ||
4685 | 1,5,1,4,1369, | ||
4686 | 22,1,110,1,1002, | ||
4687 | 1370,17,1371,15,1075, | ||
4688 | 1,-1,1,5,1372, | ||
4689 | 20,1373,4,40,84, | ||
4690 | 0,121,0,112,0, | ||
4691 | 101,0,99,0,97, | ||
4692 | 0,115,0,116,0, | ||
4693 | 69,0,120,0,112, | ||
4694 | 0,114,0,101,0, | ||
4695 | 115,0,115,0,105, | ||
4696 | 0,111,0,110,0, | ||
4697 | 95,0,49,0,1, | ||
4698 | 239,1,3,1,5, | ||
4699 | 1,4,1374,22,1, | ||
4700 | 103,1,12,1375,19, | ||
4701 | 166,1,12,1376,5, | ||
4702 | 34,1,1637,667,1, | ||
4703 | 1856,779,1,1857,674, | ||
4704 | 1,1858,680,1,1859, | ||
4705 | 685,1,1860,690,1, | ||
4706 | 1862,696,1,1864,701, | ||
4707 | 1,1866,706,1,1868, | ||
4708 | 797,1,1760,718,1, | ||
4709 | 1870,724,1,1871,729, | ||
4710 | 1,2095,1377,16,0, | ||
4711 | 164,1,31,1378,16, | ||
4712 | 0,164,1,32,1379, | ||
4713 | 16,0,164,1,1788, | ||
4714 | 1380,16,0,164,1, | ||
4715 | 2228,1381,16,0,164, | ||
4716 | 1,1467,761,1,1639, | ||
4717 | 1382,16,0,164,1, | ||
4718 | 1694,771,1,2137,1383, | ||
4719 | 16,0,562,1,1817, | ||
4720 | 790,1,1818,1384,16, | ||
4721 | 0,164,1,2037,820, | ||
4722 | 1,2038,739,1,1385, | ||
4723 | 803,1,2041,747,1, | ||
4724 | 2043,711,1,1611,1385, | ||
4725 | 16,0,164,1,2048, | ||
4726 | 1386,16,0,586,1, | ||
4727 | 1993,1387,16,0,164, | ||
4728 | 1,1732,1388,16,0, | ||
4729 | 164,1,1847,829,1, | ||
4730 | 13,1389,19,427,1, | ||
4731 | 13,1390,5,29,1, | ||
4732 | 1637,667,1,1856,779, | ||
4733 | 1,1857,674,1,1858, | ||
4734 | 680,1,1859,685,1, | ||
4735 | 1860,690,1,1862,696, | ||
4736 | 1,1864,701,1,1866, | ||
4737 | 706,1,1868,797,1, | ||
4738 | 1760,718,1,1870,724, | ||
4739 | 1,1871,729,1,2097, | ||
4740 | 1391,17,1392,15,1393, | ||
4741 | 4,22,37,0,83, | ||
4742 | 0,116,0,97,0, | ||
4743 | 116,0,101,0,69, | ||
4744 | 0,118,0,101,0, | ||
4745 | 110,0,116,0,1, | ||
4746 | -1,1,5,1394,20, | ||
4747 | 1395,4,24,83,0, | ||
4748 | 116,0,97,0,116, | ||
4749 | 0,101,0,69,0, | ||
4750 | 118,0,101,0,110, | ||
4751 | 0,116,0,95,0, | ||
4752 | 49,0,1,155,1, | ||
4753 | 3,1,6,1,5, | ||
4754 | 1396,22,1,17,1, | ||
4755 | 2099,1397,16,0,555, | ||
4756 | 1,1993,1398,16,0, | ||
4757 | 425,1,32,1399,16, | ||
4758 | 0,531,1,1467,761, | ||
4759 | 1,1694,771,1,2134, | ||
4760 | 1400,17,1401,15,1402, | ||
4761 | 4,20,37,0,83, | ||
4762 | 0,116,0,97,0, | ||
4763 | 116,0,101,0,66, | ||
4764 | 0,111,0,100,0, | ||
4765 | 121,0,1,-1,1, | ||
4766 | 5,1403,20,1404,4, | ||
4767 | 22,83,0,116,0, | ||
4768 | 97,0,116,0,101, | ||
4769 | 0,66,0,111,0, | ||
4770 | 100,0,121,0,95, | ||
4771 | 0,50,0,1,154, | ||
4772 | 1,3,1,3,1, | ||
4773 | 2,1405,22,1,16, | ||
4774 | 1,2136,1406,17,1407, | ||
4775 | 15,1402,1,-1,1, | ||
4776 | 5,1408,20,1409,4, | ||
4777 | 22,83,0,116,0, | ||
4778 | 97,0,116,0,101, | ||
4779 | 0,66,0,111,0, | ||
4780 | 100,0,121,0,95, | ||
4781 | 0,49,0,1,153, | ||
4782 | 1,3,1,2,1, | ||
4783 | 1,1410,22,1,15, | ||
4784 | 1,1817,790,1,2037, | ||
4785 | 820,1,2038,739,1, | ||
4786 | 1385,803,1,2041,747, | ||
4787 | 1,2043,711,1,2173, | ||
4788 | 1411,16,0,611,1, | ||
4789 | 1847,829,1,14,1412, | ||
4790 | 19,153,1,14,1413, | ||
4791 | 5,87,1,504,982, | ||
4792 | 1,1513,1414,16,0, | ||
4793 | 493,1,1263,989,1, | ||
4794 | 9,995,1,10,1415, | ||
4795 | 17,1416,15,1417,4, | ||
4796 | 48,37,0,65,0, | ||
4797 | 114,0,103,0,117, | ||
4798 | 0,109,0,101,0, | ||
4799 | 110,0,116,0,68, | ||
4800 | 0,101,0,99,0, | ||
4801 | 108,0,97,0,114, | ||
4802 | 0,97,0,116,0, | ||
4803 | 105,0,111,0,110, | ||
4804 | 0,76,0,105,0, | ||
4805 | 115,0,116,0,1, | ||
4806 | -1,1,5,149,1, | ||
4807 | 0,1,0,1418,22, | ||
4808 | 1,18,1,262,1001, | ||
4809 | 1,1193,1295,1,19, | ||
4810 | 1007,1,20,1419,16, | ||
4811 | 0,151,1,1527,1008, | ||
4812 | 1,30,1420,17,1421, | ||
4813 | 15,1417,1,-1,1, | ||
4814 | 5,1422,20,1423,4, | ||
4815 | 50,65,0,114,0, | ||
4816 | 103,0,117,0,109, | ||
4817 | 0,101,0,110,0, | ||
4818 | 116,0,68,0,101, | ||
4819 | 0,99,0,108,0, | ||
4820 | 97,0,114,0,97, | ||
4821 | 0,116,0,105,0, | ||
4822 | 111,0,110,0,76, | ||
4823 | 0,105,0,115,0, | ||
4824 | 116,0,95,0,50, | ||
4825 | 0,1,157,1,3, | ||
4826 | 1,4,1,3,1424, | ||
4827 | 22,1,20,1,283, | ||
4828 | 1028,1,2046,1425,17, | ||
4829 | 1426,15,1417,1,-1, | ||
4830 | 1,5,1427,20,1428, | ||
4831 | 4,50,65,0,114, | ||
4832 | 0,103,0,117,0, | ||
4833 | 109,0,101,0,110, | ||
4834 | 0,116,0,68,0, | ||
4835 | 101,0,99,0,108, | ||
4836 | 0,97,0,114,0, | ||
4837 | 97,0,116,0,105, | ||
4838 | 0,111,0,110,0, | ||
4839 | 76,0,105,0,115, | ||
4840 | 0,116,0,95,0, | ||
4841 | 49,0,1,156,1, | ||
4842 | 3,1,2,1,1, | ||
4843 | 1429,22,1,19,1, | ||
4844 | 40,1022,1,41,1430, | ||
4845 | 17,1431,15,1432,4, | ||
4846 | 26,37,0,65,0, | ||
4847 | 114,0,103,0,117, | ||
4848 | 0,109,0,101,0, | ||
4849 | 110,0,116,0,76, | ||
4850 | 0,105,0,115,0, | ||
4851 | 116,0,1,-1,1, | ||
4852 | 5,451,1,0,1, | ||
4853 | 0,1433,22,1,113, | ||
4854 | 1,42,1434,17,1435, | ||
4855 | 15,1436,4,38,37, | ||
4856 | 0,69,0,120,0, | ||
4857 | 112,0,114,0,101, | ||
4858 | 0,115,0,115,0, | ||
4859 | 105,0,111,0,110, | ||
4860 | 0,65,0,114,0, | ||
4861 | 103,0,117,0,109, | ||
4862 | 0,101,0,110,0, | ||
4863 | 116,0,1,-1,1, | ||
4864 | 5,1437,20,1438,4, | ||
4865 | 40,69,0,120,0, | ||
4866 | 112,0,114,0,101, | ||
4867 | 0,115,0,115,0, | ||
4868 | 105,0,111,0,110, | ||
4869 | 0,65,0,114,0, | ||
4870 | 103,0,117,0,109, | ||
4871 | 0,101,0,110,0, | ||
4872 | 116,0,95,0,49, | ||
4873 | 0,1,251,1,3, | ||
4874 | 1,2,1,1,1439, | ||
4875 | 22,1,116,1,1298, | ||
4876 | 1033,1,44,1038,1, | ||
4877 | 47,1039,1,48,1045, | ||
4878 | 1,49,1051,1,50, | ||
4879 | 1056,1,51,1061,1, | ||
4880 | 305,1066,1,63,1073, | ||
4881 | 1,66,1079,1,67, | ||
4882 | 1084,1,68,1089,1, | ||
4883 | 69,1094,1,70,1099, | ||
4884 | 1,573,1104,1,574, | ||
4885 | 1440,17,1441,15,1432, | ||
4886 | 1,-1,1,5,1442, | ||
4887 | 20,1443,4,28,65, | ||
4888 | 0,114,0,103,0, | ||
4889 | 117,0,109,0,101, | ||
4890 | 0,110,0,116,0, | ||
4891 | 76,0,105,0,115, | ||
4892 | 0,116,0,95,0, | ||
4893 | 49,0,1,249,1, | ||
4894 | 3,1,2,1,1, | ||
4895 | 1444,22,1,114,1, | ||
4896 | 1011,1110,1,74,1116, | ||
4897 | 1,2084,1445,17,1446, | ||
4898 | 15,1417,1,-1,1, | ||
4899 | 5,149,1,0,1, | ||
4900 | 0,1418,1,328,1126, | ||
4901 | 1,1333,1131,1,82, | ||
4902 | 1136,1,2093,1447,16, | ||
4903 | 0,151,1,1092,1448, | ||
4904 | 16,0,453,1,1094, | ||
4905 | 1272,1,93,1159,1, | ||
4906 | 352,1207,1,1609,1449, | ||
4907 | 16,0,493,1,107, | ||
4908 | 1192,1,1112,1245,1, | ||
4909 | 1046,1121,1,1121,1176, | ||
4910 | 1,118,1181,1,371, | ||
4911 | 1186,1,373,1229,1, | ||
4912 | 375,1197,1,377,1202, | ||
4913 | 1,379,1278,1,380, | ||
4914 | 1217,1,883,1267,1, | ||
4915 | 383,1450,16,0,453, | ||
4916 | 1,386,1451,17,1452, | ||
4917 | 15,1432,1,-1,1, | ||
4918 | 5,1453,20,1454,4, | ||
4919 | 28,65,0,114,0, | ||
4920 | 103,0,117,0,109, | ||
4921 | 0,101,0,110,0, | ||
4922 | 116,0,76,0,105, | ||
4923 | 0,115,0,116,0, | ||
4924 | 95,0,50,0,1, | ||
4925 | 250,1,3,1,4, | ||
4926 | 1,3,1455,22,1, | ||
4927 | 115,1,130,1223,1, | ||
4928 | 143,1240,1,1557,1251, | ||
4929 | 1,403,1456,16,0, | ||
4930 | 527,1,1158,1256,1, | ||
4931 | 827,1212,1,381,1457, | ||
4932 | 17,1458,15,1432,1, | ||
4933 | -1,1,5,451,1, | ||
4934 | 0,1,0,1433,1, | ||
4935 | 157,1262,1,172,1283, | ||
4936 | 1,428,1459,16,0, | ||
4937 | 541,1,1438,1289,1, | ||
4938 | 188,1300,1,942,1316, | ||
4939 | 1,453,1460,16,0, | ||
4940 | 578,1,1962,1305,1, | ||
4941 | 2217,1461,17,1462,15, | ||
4942 | 1417,1,-1,1,5, | ||
4943 | 149,1,0,1,0, | ||
4944 | 1418,1,463,1342,1, | ||
4945 | 205,1311,1,2226,1463, | ||
4946 | 16,0,151,1,223, | ||
4947 | 1321,1,1228,1326,1, | ||
4948 | 476,1331,1,477,1014, | ||
4949 | 1,1482,1337,1,479, | ||
4950 | 1360,1,242,1350,1, | ||
4951 | 478,1355,1,1001,1365, | ||
4952 | 1,1002,1370,1,15, | ||
4953 | 1464,19,173,1,15, | ||
4954 | 1465,5,7,1,1431, | ||
4955 | 1466,16,0,410,1, | ||
4956 | 1112,1467,16,0,171, | ||
4957 | 1,1511,1468,16,0, | ||
4958 | 410,1,40,1469,16, | ||
4959 | 0,360,1,19,1007, | ||
4960 | 1,9,995,1,2232, | ||
4961 | 1470,16,0,364,1, | ||
4962 | 16,1471,19,136,1, | ||
4963 | 16,1472,5,122,1, | ||
4964 | 1257,1473,16,0,196, | ||
4965 | 1,1760,718,1,1762, | ||
4966 | 1474,16,0,242,1, | ||
4967 | 1763,1475,16,0,196, | ||
4968 | 1,1514,1476,16,0, | ||
4969 | 196,1,9,1477,16, | ||
4970 | 0,134,1,256,1478, | ||
4971 | 16,0,196,1,504, | ||
4972 | 1479,16,0,196,1, | ||
4973 | 277,1480,16,0,196, | ||
4974 | 1,2037,820,1,2038, | ||
4975 | 739,1,1788,1481,16, | ||
4976 | 0,196,1,32,1482, | ||
4977 | 16,0,196,1,2041, | ||
4978 | 747,1,2043,711,1, | ||
4979 | 1292,1483,16,0,196, | ||
4980 | 1,40,1484,16,0, | ||
4981 | 178,1,41,1485,16, | ||
4982 | 0,196,1,2050,1486, | ||
4983 | 17,1487,15,1488,4, | ||
4984 | 12,37,0,69,0, | ||
4985 | 118,0,101,0,110, | ||
4986 | 0,116,0,1,-1, | ||
4987 | 1,5,1489,20,1490, | ||
4988 | 4,16,69,0,118, | ||
4989 | 0,101,0,110,0, | ||
4990 | 116,0,95,0,51, | ||
4991 | 0,51,0,1,291, | ||
4992 | 1,3,1,2,1, | ||
4993 | 1,1491,22,1,156, | ||
4994 | 1,43,1492,16,0, | ||
4995 | 196,1,44,1493,16, | ||
4996 | 0,178,1,2053,1494, | ||
4997 | 17,1495,15,1488,1, | ||
4998 | -1,1,5,1496,20, | ||
4999 | 1497,4,16,69,0, | ||
5000 | 118,0,101,0,110, | ||
5001 | 0,116,0,95,0, | ||
5002 | 51,0,48,0,1, | ||
5003 | 288,1,3,1,2, | ||
5004 | 1,1,1498,22,1, | ||
5005 | 153,1,2054,1499,17, | ||
5006 | 1500,15,1488,1,-1, | ||
5007 | 1,5,1501,20,1502, | ||
5008 | 4,16,69,0,118, | ||
5009 | 0,101,0,110,0, | ||
5010 | 116,0,95,0,50, | ||
5011 | 0,57,0,1,287, | ||
5012 | 1,3,1,2,1, | ||
5013 | 1,1503,22,1,152, | ||
5014 | 1,2055,1504,17,1505, | ||
5015 | 15,1488,1,-1,1, | ||
5016 | 5,1506,20,1507,4, | ||
5017 | 16,69,0,118,0, | ||
5018 | 101,0,110,0,116, | ||
5019 | 0,95,0,50,0, | ||
5020 | 56,0,1,286,1, | ||
5021 | 3,1,2,1,1, | ||
5022 | 1508,22,1,151,1, | ||
5023 | 299,1509,16,0,196, | ||
5024 | 1,1993,1510,16,0, | ||
5025 | 196,1,2058,1511,17, | ||
5026 | 1512,15,1488,1,-1, | ||
5027 | 1,5,1513,20,1514, | ||
5028 | 4,16,69,0,118, | ||
5029 | 0,101,0,110,0, | ||
5030 | 116,0,95,0,50, | ||
5031 | 0,53,0,1,283, | ||
5032 | 1,3,1,2,1, | ||
5033 | 1,1515,22,1,148, | ||
5034 | 1,2059,1516,17,1517, | ||
5035 | 15,1488,1,-1,1, | ||
5036 | 5,1518,20,1519,4, | ||
5037 | 16,69,0,118,0, | ||
5038 | 101,0,110,0,116, | ||
5039 | 0,95,0,50,0, | ||
5040 | 52,0,1,282,1, | ||
5041 | 3,1,2,1,1, | ||
5042 | 1520,22,1,147,1, | ||
5043 | 52,1521,16,0,196, | ||
5044 | 1,2061,1522,17,1523, | ||
5045 | 15,1488,1,-1,1, | ||
5046 | 5,1524,20,1525,4, | ||
5047 | 16,69,0,118,0, | ||
5048 | 101,0,110,0,116, | ||
5049 | 0,95,0,50,0, | ||
5050 | 50,0,1,280,1, | ||
5051 | 3,1,2,1,1, | ||
5052 | 1526,22,1,145,1, | ||
5053 | 2062,1527,17,1528,15, | ||
5054 | 1488,1,-1,1,5, | ||
5055 | 1529,20,1530,4,16, | ||
5056 | 69,0,118,0,101, | ||
5057 | 0,110,0,116,0, | ||
5058 | 95,0,50,0,49, | ||
5059 | 0,1,279,1,3, | ||
5060 | 1,2,1,1,1531, | ||
5061 | 22,1,144,1,2063, | ||
5062 | 1532,17,1533,15,1488, | ||
5063 | 1,-1,1,5,1534, | ||
5064 | 20,1535,4,16,69, | ||
5065 | 0,118,0,101,0, | ||
5066 | 110,0,116,0,95, | ||
5067 | 0,50,0,48,0, | ||
5068 | 1,278,1,3,1, | ||
5069 | 2,1,1,1536,22, | ||
5070 | 1,143,1,2064,1537, | ||
5071 | 17,1538,15,1488,1, | ||
5072 | -1,1,5,1539,20, | ||
5073 | 1540,4,16,69,0, | ||
5074 | 118,0,101,0,110, | ||
5075 | 0,116,0,95,0, | ||
5076 | 49,0,57,0,1, | ||
5077 | 277,1,3,1,2, | ||
5078 | 1,1,1541,22,1, | ||
5079 | 142,1,2065,1542,17, | ||
5080 | 1543,15,1488,1,-1, | ||
5081 | 1,5,1544,20,1545, | ||
5082 | 4,16,69,0,118, | ||
5083 | 0,101,0,110,0, | ||
5084 | 116,0,95,0,49, | ||
5085 | 0,56,0,1,276, | ||
5086 | 1,3,1,2,1, | ||
5087 | 1,1546,22,1,141, | ||
5088 | 1,2066,1547,17,1548, | ||
5089 | 15,1488,1,-1,1, | ||
5090 | 5,1549,20,1550,4, | ||
5091 | 16,69,0,118,0, | ||
5092 | 101,0,110,0,116, | ||
5093 | 0,95,0,49,0, | ||
5094 | 55,0,1,275,1, | ||
5095 | 3,1,2,1,1, | ||
5096 | 1551,22,1,140,1, | ||
5097 | 2067,1552,17,1553,15, | ||
5098 | 1488,1,-1,1,5, | ||
5099 | 1554,20,1555,4,16, | ||
5100 | 69,0,118,0,101, | ||
5101 | 0,110,0,116,0, | ||
5102 | 95,0,49,0,54, | ||
5103 | 0,1,274,1,3, | ||
5104 | 1,2,1,1,1556, | ||
5105 | 22,1,139,1,1817, | ||
5106 | 790,1,1818,1557,16, | ||
5107 | 0,196,1,62,1558, | ||
5108 | 16,0,214,1,63, | ||
5109 | 1559,16,0,178,1, | ||
5110 | 2072,1560,17,1561,15, | ||
5111 | 1488,1,-1,1,5, | ||
5112 | 1562,20,1563,4,16, | ||
5113 | 69,0,118,0,101, | ||
5114 | 0,110,0,116,0, | ||
5115 | 95,0,49,0,49, | ||
5116 | 0,1,269,1,3, | ||
5117 | 1,2,1,1,1564, | ||
5118 | 22,1,134,1,2073, | ||
5119 | 1565,17,1566,15,1488, | ||
5120 | 1,-1,1,5,1567, | ||
5121 | 20,1568,4,16,69, | ||
5122 | 0,118,0,101,0, | ||
5123 | 110,0,116,0,95, | ||
5124 | 0,49,0,48,0, | ||
5125 | 1,268,1,3,1, | ||
5126 | 2,1,1,1569,22, | ||
5127 | 1,133,1,2074,1570, | ||
5128 | 17,1571,15,1488,1, | ||
5129 | -1,1,5,1572,20, | ||
5130 | 1573,4,14,69,0, | ||
5131 | 118,0,101,0,110, | ||
5132 | 0,116,0,95,0, | ||
5133 | 57,0,1,267,1, | ||
5134 | 3,1,2,1,1, | ||
5135 | 1574,22,1,132,1, | ||
5136 | 2075,1575,17,1576,15, | ||
5137 | 1488,1,-1,1,5, | ||
5138 | 1577,20,1578,4,14, | ||
5139 | 69,0,118,0,101, | ||
5140 | 0,110,0,116,0, | ||
5141 | 95,0,56,0,1, | ||
5142 | 266,1,3,1,2, | ||
5143 | 1,1,1579,22,1, | ||
5144 | 131,1,2076,1580,17, | ||
5145 | 1581,15,1488,1,-1, | ||
5146 | 1,5,1582,20,1583, | ||
5147 | 4,14,69,0,118, | ||
5148 | 0,101,0,110,0, | ||
5149 | 116,0,95,0,55, | ||
5150 | 0,1,265,1,3, | ||
5151 | 1,2,1,1,1584, | ||
5152 | 22,1,130,1,2077, | ||
5153 | 1585,17,1586,15,1488, | ||
5154 | 1,-1,1,5,1587, | ||
5155 | 20,1588,4,14,69, | ||
5156 | 0,118,0,101,0, | ||
5157 | 110,0,116,0,95, | ||
5158 | 0,54,0,1,264, | ||
5159 | 1,3,1,2,1, | ||
5160 | 1,1589,22,1,129, | ||
5161 | 1,2078,1590,17,1591, | ||
5162 | 15,1488,1,-1,1, | ||
5163 | 5,1592,20,1593,4, | ||
5164 | 14,69,0,118,0, | ||
5165 | 101,0,110,0,116, | ||
5166 | 0,95,0,53,0, | ||
5167 | 1,263,1,3,1, | ||
5168 | 2,1,1,1594,22, | ||
5169 | 1,128,1,71,1595, | ||
5170 | 16,0,196,1,1327, | ||
5171 | 1596,16,0,196,1, | ||
5172 | 2081,1597,17,1598,15, | ||
5173 | 1488,1,-1,1,5, | ||
5174 | 1599,20,1600,4,14, | ||
5175 | 69,0,118,0,101, | ||
5176 | 0,110,0,116,0, | ||
5177 | 95,0,50,0,1, | ||
5178 | 260,1,3,1,2, | ||
5179 | 1,1,1601,22,1, | ||
5180 | 125,1,2082,1602,17, | ||
5181 | 1603,15,1488,1,-1, | ||
5182 | 1,5,1604,20,1605, | ||
5183 | 4,14,69,0,118, | ||
5184 | 0,101,0,110,0, | ||
5185 | 116,0,95,0,49, | ||
5186 | 0,1,259,1,3, | ||
5187 | 1,2,1,1,1606, | ||
5188 | 22,1,124,1,2083, | ||
5189 | 1607,16,0,577,1, | ||
5190 | 76,1608,16,0,196, | ||
5191 | 1,1584,1609,16,0, | ||
5192 | 196,1,79,1610,16, | ||
5193 | 0,196,1,322,1611, | ||
5194 | 16,0,196,1,85, | ||
5195 | 1612,16,0,196,1, | ||
5196 | 89,1613,16,0,196, | ||
5197 | 1,1847,829,1,346, | ||
5198 | 1614,16,0,196,1, | ||
5199 | 97,1615,16,0,196, | ||
5200 | 1,1856,779,1,1857, | ||
5201 | 674,1,1858,680,1, | ||
5202 | 1859,685,1,1860,690, | ||
5203 | 1,1862,696,1,1864, | ||
5204 | 701,1,1866,706,1, | ||
5205 | 2052,1616,17,1617,15, | ||
5206 | 1488,1,-1,1,5, | ||
5207 | 1618,20,1619,4,16, | ||
5208 | 69,0,118,0,101, | ||
5209 | 0,110,0,116,0, | ||
5210 | 95,0,51,0,49, | ||
5211 | 0,1,289,1,3, | ||
5212 | 1,2,1,1,1620, | ||
5213 | 22,1,154,1,1115, | ||
5214 | 1621,16,0,196,1, | ||
5215 | 112,1622,16,0,196, | ||
5216 | 1,1870,724,1,1871, | ||
5217 | 729,1,2057,1623,17, | ||
5218 | 1624,15,1488,1,-1, | ||
5219 | 1,5,1625,20,1626, | ||
5220 | 4,16,69,0,118, | ||
5221 | 0,101,0,110,0, | ||
5222 | 116,0,95,0,50, | ||
5223 | 0,54,0,1,284, | ||
5224 | 1,3,1,2,1, | ||
5225 | 1,1627,22,1,149, | ||
5226 | 1,102,1628,16,0, | ||
5227 | 196,1,2060,1629,17, | ||
5228 | 1630,15,1488,1,-1, | ||
5229 | 1,5,1631,20,1632, | ||
5230 | 4,16,69,0,118, | ||
5231 | 0,101,0,110,0, | ||
5232 | 116,0,95,0,50, | ||
5233 | 0,51,0,1,281, | ||
5234 | 1,3,1,2,1, | ||
5235 | 1,1633,22,1,146, | ||
5236 | 1,124,1634,16,0, | ||
5237 | 196,1,2068,1635,17, | ||
5238 | 1636,15,1488,1,-1, | ||
5239 | 1,5,1637,20,1638, | ||
5240 | 4,16,69,0,118, | ||
5241 | 0,101,0,110,0, | ||
5242 | 116,0,95,0,49, | ||
5243 | 0,53,0,1,273, | ||
5244 | 1,3,1,2,1, | ||
5245 | 1,1639,22,1,138, | ||
5246 | 1,2069,1640,17,1641, | ||
5247 | 15,1488,1,-1,1, | ||
5248 | 5,1642,20,1643,4, | ||
5249 | 16,69,0,118,0, | ||
5250 | 101,0,110,0,116, | ||
5251 | 0,95,0,49,0, | ||
5252 | 52,0,1,272,1, | ||
5253 | 3,1,2,1,1, | ||
5254 | 1644,22,1,137,1, | ||
5255 | 2070,1645,17,1646,15, | ||
5256 | 1488,1,-1,1,5, | ||
5257 | 1647,20,1648,4,16, | ||
5258 | 69,0,118,0,101, | ||
5259 | 0,110,0,116,0, | ||
5260 | 95,0,49,0,51, | ||
5261 | 0,1,271,1,3, | ||
5262 | 1,2,1,1,1649, | ||
5263 | 22,1,136,1,2071, | ||
5264 | 1650,17,1651,15,1488, | ||
5265 | 1,-1,1,5,1652, | ||
5266 | 20,1653,4,16,69, | ||
5267 | 0,118,0,101,0, | ||
5268 | 110,0,116,0,95, | ||
5269 | 0,49,0,50,0, | ||
5270 | 1,270,1,3,1, | ||
5271 | 2,1,1,1654,22, | ||
5272 | 1,135,1,381,1655, | ||
5273 | 16,0,196,1,1637, | ||
5274 | 667,1,384,1656,16, | ||
5275 | 0,196,1,137,1657, | ||
5276 | 16,0,196,1,2080, | ||
5277 | 1658,17,1659,15,1488, | ||
5278 | 1,-1,1,5,1660, | ||
5279 | 20,1661,4,14,69, | ||
5280 | 0,118,0,101,0, | ||
5281 | 110,0,116,0,95, | ||
5282 | 0,51,0,1,261, | ||
5283 | 1,3,1,2,1, | ||
5284 | 1,1662,22,1,126, | ||
5285 | 1,1396,1663,16,0, | ||
5286 | 196,1,397,1664,16, | ||
5287 | 0,196,1,1152,1665, | ||
5288 | 16,0,196,1,151, | ||
5289 | 1666,16,0,196,1, | ||
5290 | 1559,1667,16,0,196, | ||
5291 | 1,1611,1668,16,0, | ||
5292 | 196,1,1667,1669,16, | ||
5293 | 0,251,1,1668,1670, | ||
5294 | 16,0,196,1,166, | ||
5295 | 1671,16,0,196,1, | ||
5296 | 1868,797,1,1385,803, | ||
5297 | 1,1432,1672,16,0, | ||
5298 | 196,1,2056,1673,17, | ||
5299 | 1674,15,1488,1,-1, | ||
5300 | 1,5,1675,20,1676, | ||
5301 | 4,16,69,0,118, | ||
5302 | 0,101,0,110,0, | ||
5303 | 116,0,95,0,50, | ||
5304 | 0,55,0,1,285, | ||
5305 | 1,3,1,2,1, | ||
5306 | 1,1677,22,1,150, | ||
5307 | 1,182,1678,16,0, | ||
5308 | 196,1,1187,1679,16, | ||
5309 | 0,196,1,422,1680, | ||
5310 | 16,0,196,1,1694, | ||
5311 | 771,1,447,1681,16, | ||
5312 | 0,196,1,199,1682, | ||
5313 | 16,0,196,1,1706, | ||
5314 | 1683,16,0,170,1, | ||
5315 | 1707,1684,16,0,196, | ||
5316 | 1,2079,1685,17,1686, | ||
5317 | 15,1488,1,-1,1, | ||
5318 | 5,1687,20,1688,4, | ||
5319 | 14,69,0,118,0, | ||
5320 | 101,0,110,0,116, | ||
5321 | 0,95,0,52,0, | ||
5322 | 1,262,1,3,1, | ||
5323 | 2,1,1,1689,22, | ||
5324 | 1,127,1,2216,1690, | ||
5325 | 16,0,620,1,1467, | ||
5326 | 761,1,1468,1691,16, | ||
5327 | 0,423,1,1469,1692, | ||
5328 | 16,0,196,1,217, | ||
5329 | 1693,16,0,196,1, | ||
5330 | 1222,1694,16,0,196, | ||
5331 | 1,2233,1695,16,0, | ||
5332 | 196,1,1732,1696,16, | ||
5333 | 0,196,1,463,1697, | ||
5334 | 16,0,196,1,236, | ||
5335 | 1698,16,0,196,1, | ||
5336 | 488,1699,16,0,196, | ||
5337 | 1,1639,1700,16,0, | ||
5338 | 196,1,2051,1701,17, | ||
5339 | 1702,15,1488,1,-1, | ||
5340 | 1,5,1703,20,1704, | ||
5341 | 4,16,69,0,118, | ||
5342 | 0,101,0,110,0, | ||
5343 | 116,0,95,0,51, | ||
5344 | 0,50,0,1,290, | ||
5345 | 1,3,1,2,1, | ||
5346 | 1,1705,22,1,155, | ||
5347 | 1,17,1706,19,156, | ||
5348 | 1,17,1707,5,95, | ||
5349 | 1,1,1708,17,1709, | ||
5350 | 15,1710,4,18,37, | ||
5351 | 0,84,0,121,0, | ||
5352 | 112,0,101,0,110, | ||
5353 | 0,97,0,109,0, | ||
5354 | 101,0,1,-1,1, | ||
5355 | 5,1711,20,1712,4, | ||
5356 | 20,84,0,121,0, | ||
5357 | 112,0,101,0,110, | ||
5358 | 0,97,0,109,0, | ||
5359 | 101,0,95,0,55, | ||
5360 | 0,1,258,1,3, | ||
5361 | 1,2,1,1,1713, | ||
5362 | 22,1,123,1,2, | ||
5363 | 1714,17,1715,15,1710, | ||
5364 | 1,-1,1,5,1716, | ||
5365 | 20,1717,4,20,84, | ||
5366 | 0,121,0,112,0, | ||
5367 | 101,0,110,0,97, | ||
5368 | 0,109,0,101,0, | ||
5369 | 95,0,54,0,1, | ||
5370 | 257,1,3,1,2, | ||
5371 | 1,1,1718,22,1, | ||
5372 | 122,1,3,1719,17, | ||
5373 | 1720,15,1710,1,-1, | ||
5374 | 1,5,1721,20,1722, | ||
5375 | 4,20,84,0,121, | ||
5376 | 0,112,0,101,0, | ||
5377 | 110,0,97,0,109, | ||
5378 | 0,101,0,95,0, | ||
5379 | 53,0,1,256,1, | ||
5380 | 3,1,2,1,1, | ||
5381 | 1723,22,1,121,1, | ||
5382 | 4,1724,17,1725,15, | ||
5383 | 1710,1,-1,1,5, | ||
5384 | 1726,20,1727,4,20, | ||
5385 | 84,0,121,0,112, | ||
5386 | 0,101,0,110,0, | ||
5387 | 97,0,109,0,101, | ||
5388 | 0,95,0,52,0, | ||
5389 | 1,255,1,3,1, | ||
5390 | 2,1,1,1728,22, | ||
5391 | 1,120,1,5,1729, | ||
5392 | 17,1730,15,1710,1, | ||
5393 | -1,1,5,1731,20, | ||
5394 | 1732,4,20,84,0, | ||
5395 | 121,0,112,0,101, | ||
5396 | 0,110,0,97,0, | ||
5397 | 109,0,101,0,95, | ||
5398 | 0,51,0,1,254, | ||
5399 | 1,3,1,2,1, | ||
5400 | 1,1733,22,1,119, | ||
5401 | 1,6,1734,17,1735, | ||
5402 | 15,1710,1,-1,1, | ||
5403 | 5,1736,20,1737,4, | ||
5404 | 20,84,0,121,0, | ||
5405 | 112,0,101,0,110, | ||
5406 | 0,97,0,109,0, | ||
5407 | 101,0,95,0,50, | ||
5408 | 0,1,253,1,3, | ||
5409 | 1,2,1,1,1738, | ||
5410 | 22,1,118,1,7, | ||
5411 | 1739,17,1740,15,1710, | ||
5412 | 1,-1,1,5,1741, | ||
5413 | 20,1742,4,20,84, | ||
5414 | 0,121,0,112,0, | ||
5415 | 101,0,110,0,97, | ||
5416 | 0,109,0,101,0, | ||
5417 | 95,0,49,0,1, | ||
5418 | 252,1,3,1,2, | ||
5419 | 1,1,1743,22,1, | ||
5420 | 117,1,1263,989,1, | ||
5421 | 9,995,1,10,1415, | ||
5422 | 1,262,1001,1,1769, | ||
5423 | 1744,16,0,307,1, | ||
5424 | 19,1007,1,20,1745, | ||
5425 | 16,0,163,1,1527, | ||
5426 | 1008,1,30,1420,1, | ||
5427 | 283,1028,1,504,982, | ||
5428 | 1,2046,1425,1,1010, | ||
5429 | 1746,16,0,553,1, | ||
5430 | 40,1022,1,41,1430, | ||
5431 | 1,42,1434,1,1298, | ||
5432 | 1033,1,44,1038,1, | ||
5433 | 47,1039,1,48,1045, | ||
5434 | 1,49,1051,1,50, | ||
5435 | 1056,1,51,1061,1, | ||
5436 | 305,1066,1,61,1747, | ||
5437 | 16,0,206,1,63, | ||
5438 | 1073,1,66,1079,1, | ||
5439 | 67,1084,1,68,1089, | ||
5440 | 1,69,1094,1,70, | ||
5441 | 1099,1,573,1104,1, | ||
5442 | 574,1440,1,1011,1110, | ||
5443 | 1,74,1116,1,2084, | ||
5444 | 1445,1,328,1126,1, | ||
5445 | 1333,1131,1,73,1748, | ||
5446 | 16,0,219,1,82, | ||
5447 | 1136,1,2093,1749,16, | ||
5448 | 0,528,1,1092,1750, | ||
5449 | 16,0,610,1,1094, | ||
5450 | 1272,1,93,1159,1, | ||
5451 | 352,1207,1,1609,1751, | ||
5452 | 16,0,582,1,107, | ||
5453 | 1192,1,1112,1245,1, | ||
5454 | 1046,1121,1,1121,1176, | ||
5455 | 1,118,1181,1,371, | ||
5456 | 1186,1,373,1229,1, | ||
5457 | 375,1197,1,377,1202, | ||
5458 | 1,827,1212,1,380, | ||
5459 | 1217,1,883,1267,1, | ||
5460 | 386,1451,1,130,1223, | ||
5461 | 1,379,1278,1,143, | ||
5462 | 1240,1,1557,1251,1, | ||
5463 | 1158,1256,1,381,1457, | ||
5464 | 1,157,1262,1,1674, | ||
5465 | 1752,16,0,154,1, | ||
5466 | 172,1283,1,1438,1289, | ||
5467 | 1,188,1300,1,942, | ||
5468 | 1316,1,1962,1305,1, | ||
5469 | 1713,1753,16,0,264, | ||
5470 | 1,2217,1461,1,463, | ||
5471 | 1342,1,205,1311,1, | ||
5472 | 2226,1754,16,0,283, | ||
5473 | 1,223,1321,1,1228, | ||
5474 | 1326,1,476,1331,1, | ||
5475 | 477,1014,1,1482,1337, | ||
5476 | 1,1193,1295,1,242, | ||
5477 | 1350,1,478,1355,1, | ||
5478 | 479,1360,1,1001,1365, | ||
5479 | 1,1002,1370,1,18, | ||
5480 | 1755,19,417,1,18, | ||
5481 | 1756,5,77,1,328, | ||
5482 | 1126,1,1333,1757,16, | ||
5483 | 0,415,1,1094,1272, | ||
5484 | 1,1438,1758,16,0, | ||
5485 | 415,1,223,1759,16, | ||
5486 | 0,415,1,428,1760, | ||
5487 | 16,0,415,1,118, | ||
5488 | 1761,16,0,415,1, | ||
5489 | 883,1762,16,0,415, | ||
5490 | 1,478,1355,1,453, | ||
5491 | 1763,16,0,415,1, | ||
5492 | 1001,1365,1,130,1764, | ||
5493 | 16,0,415,1,1112, | ||
5494 | 1245,1,242,1765,16, | ||
5495 | 0,415,1,1769,1766, | ||
5496 | 16,0,415,1,463, | ||
5497 | 1342,1,573,1104,1, | ||
5498 | 1228,1767,16,0,415, | ||
5499 | 1,1011,1110,1,1121, | ||
5500 | 1768,16,0,415,1, | ||
5501 | 143,1769,16,0,415, | ||
5502 | 1,352,1207,1,1674, | ||
5503 | 1770,16,0,415,1, | ||
5504 | 40,1022,1,477,1014, | ||
5505 | 1,42,1771,16,0, | ||
5506 | 415,1,479,1360,1, | ||
5507 | 44,1038,1,373,1229, | ||
5508 | 1,47,1039,1,48, | ||
5509 | 1045,1,49,1051,1, | ||
5510 | 50,1056,1,51,1061, | ||
5511 | 1,1482,1772,16,0, | ||
5512 | 415,1,380,1217,1, | ||
5513 | 157,1773,16,0,415, | ||
5514 | 1,476,1331,1,371, | ||
5515 | 1186,1,1366,1774,16, | ||
5516 | 0,415,1,2239,1775, | ||
5517 | 16,0,415,1,375, | ||
5518 | 1197,1,1010,1776,16, | ||
5519 | 0,415,1,63,1073, | ||
5520 | 1,1263,1777,16,0, | ||
5521 | 415,1,283,1028,1, | ||
5522 | 66,1079,1,67,1084, | ||
5523 | 1,68,1089,1,69, | ||
5524 | 1094,1,70,1099,1, | ||
5525 | 73,1778,16,0,415, | ||
5526 | 1,74,1116,1,494, | ||
5527 | 1779,16,0,415,1, | ||
5528 | 377,1202,1,172,1780, | ||
5529 | 16,0,415,1,1713, | ||
5530 | 1781,16,0,415,1, | ||
5531 | 188,1782,16,0,415, | ||
5532 | 1,82,1783,16,0, | ||
5533 | 415,1,262,1001,1, | ||
5534 | 504,982,1,305,1066, | ||
5535 | 1,1527,1784,16,0, | ||
5536 | 415,1,1565,1785,16, | ||
5537 | 0,415,1,403,1786, | ||
5538 | 16,0,415,1,827, | ||
5539 | 1787,16,0,415,1, | ||
5540 | 1046,1788,16,0,415, | ||
5541 | 1,93,1789,16,0, | ||
5542 | 415,1,1402,1790,16, | ||
5543 | 0,415,1,205,1791, | ||
5544 | 16,0,415,1,1298, | ||
5545 | 1792,16,0,415,1, | ||
5546 | 1002,1370,1,942,1793, | ||
5547 | 16,0,415,1,1193, | ||
5548 | 1794,16,0,415,1, | ||
5549 | 379,1278,1,1158,1795, | ||
5550 | 16,0,415,1,107, | ||
5551 | 1796,16,0,415,1, | ||
5552 | 19,1797,19,238,1, | ||
5553 | 19,1798,5,153,1, | ||
5554 | 1257,1799,16,0,236, | ||
5555 | 1,1760,718,1,256, | ||
5556 | 1800,16,0,236,1, | ||
5557 | 1763,1801,16,0,236, | ||
5558 | 1,1011,1110,1,1263, | ||
5559 | 1802,16,0,411,1, | ||
5560 | 494,1803,16,0,411, | ||
5561 | 1,1611,1804,16,0, | ||
5562 | 236,1,262,1001,1, | ||
5563 | 1769,1805,16,0,411, | ||
5564 | 1,504,1806,16,0, | ||
5565 | 236,1,1527,1807,16, | ||
5566 | 0,411,1,476,1331, | ||
5567 | 1,477,1014,1,277, | ||
5568 | 1808,16,0,236,1, | ||
5569 | 2037,820,1,2038,739, | ||
5570 | 1,1788,1809,16,0, | ||
5571 | 236,1,32,1810,16, | ||
5572 | 0,236,1,2041,747, | ||
5573 | 1,2043,711,1,1292, | ||
5574 | 1811,16,0,236,1, | ||
5575 | 1010,1812,16,0,411, | ||
5576 | 1,40,1022,1,41, | ||
5577 | 1813,16,0,236,1, | ||
5578 | 42,1814,16,0,411, | ||
5579 | 1,43,1815,16,0, | ||
5580 | 236,1,44,1038,1, | ||
5581 | 47,1039,1,48,1045, | ||
5582 | 1,49,1051,1,50, | ||
5583 | 1056,1,51,1061,1, | ||
5584 | 52,1816,16,0,236, | ||
5585 | 1,1559,1817,16,0, | ||
5586 | 236,1,305,1066,1, | ||
5587 | 1514,1818,16,0,236, | ||
5588 | 1,299,1819,16,0, | ||
5589 | 236,1,1817,790,1, | ||
5590 | 1818,1820,16,0,236, | ||
5591 | 1,283,1028,1,63, | ||
5592 | 1073,1,66,1079,1, | ||
5593 | 67,1084,1,68,1089, | ||
5594 | 1,69,1094,1,70, | ||
5595 | 1099,1,573,1104,1, | ||
5596 | 1327,1821,16,0,236, | ||
5597 | 1,73,1822,16,0, | ||
5598 | 411,1,74,1116,1, | ||
5599 | 71,1823,16,0,236, | ||
5600 | 1,76,1824,16,0, | ||
5601 | 236,1,328,1126,1, | ||
5602 | 1333,1825,16,0,411, | ||
5603 | 1,79,1826,16,0, | ||
5604 | 236,1,82,1827,16, | ||
5605 | 0,411,1,322,1828, | ||
5606 | 16,0,236,1,85, | ||
5607 | 1829,16,0,236,1, | ||
5608 | 89,1830,16,0,236, | ||
5609 | 1,1847,829,1,93, | ||
5610 | 1831,16,0,411,1, | ||
5611 | 346,1832,16,0,236, | ||
5612 | 1,97,1833,16,0, | ||
5613 | 236,1,1856,779,1, | ||
5614 | 1857,674,1,1858,680, | ||
5615 | 1,102,1834,16,0, | ||
5616 | 236,1,1860,690,1, | ||
5617 | 1862,696,1,1864,701, | ||
5618 | 1,1112,1245,1,1866, | ||
5619 | 706,1,1046,1835,16, | ||
5620 | 0,411,1,1115,1836, | ||
5621 | 16,0,236,1,112, | ||
5622 | 1837,16,0,236,1, | ||
5623 | 1870,724,1,1871,729, | ||
5624 | 1,1121,1838,16,0, | ||
5625 | 411,1,118,1839,16, | ||
5626 | 0,411,1,371,1186, | ||
5627 | 1,107,1840,16,0, | ||
5628 | 411,1,124,1841,16, | ||
5629 | 0,236,1,377,1202, | ||
5630 | 1,1298,1842,16,0, | ||
5631 | 411,1,827,1843,16, | ||
5632 | 0,411,1,380,1217, | ||
5633 | 1,130,1844,16,0, | ||
5634 | 411,1,1637,667,1, | ||
5635 | 384,1845,16,0,236, | ||
5636 | 1,373,1229,1,137, | ||
5637 | 1846,16,0,236,1, | ||
5638 | 352,1207,1,1396,1847, | ||
5639 | 16,0,236,1,143, | ||
5640 | 1848,16,0,411,1, | ||
5641 | 397,1849,16,0,236, | ||
5642 | 1,1402,1850,16,0, | ||
5643 | 411,1,1152,1851,16, | ||
5644 | 0,236,1,375,1197, | ||
5645 | 1,151,1852,16,0, | ||
5646 | 236,1,403,1853,16, | ||
5647 | 0,411,1,1158,1854, | ||
5648 | 16,0,411,1,1366, | ||
5649 | 1855,16,0,411,1, | ||
5650 | 381,1856,16,0,236, | ||
5651 | 1,157,1857,16,0, | ||
5652 | 411,1,883,1858,16, | ||
5653 | 0,411,1,1668,1859, | ||
5654 | 16,0,236,1,166, | ||
5655 | 1860,16,0,236,1, | ||
5656 | 379,1278,1,1674,1861, | ||
5657 | 16,0,411,1,1868, | ||
5658 | 797,1,172,1862,16, | ||
5659 | 0,411,1,1385,803, | ||
5660 | 1,1432,1863,16,0, | ||
5661 | 236,1,1584,1864,16, | ||
5662 | 0,236,1,182,1865, | ||
5663 | 16,0,236,1,1187, | ||
5664 | 1866,16,0,236,1, | ||
5665 | 422,1867,16,0,236, | ||
5666 | 1,1694,771,1,1193, | ||
5667 | 1868,16,0,411,1, | ||
5668 | 428,1869,16,0,411, | ||
5669 | 1,188,1870,16,0, | ||
5670 | 411,1,447,1871,16, | ||
5671 | 0,236,1,1094,1272, | ||
5672 | 1,199,1872,16,0, | ||
5673 | 236,1,1707,1873,16, | ||
5674 | 0,236,1,453,1874, | ||
5675 | 16,0,411,1,205, | ||
5676 | 1875,16,0,411,1, | ||
5677 | 1713,1876,16,0,411, | ||
5678 | 1,1565,1877,16,0, | ||
5679 | 411,1,1467,761,1, | ||
5680 | 1469,1878,16,0,236, | ||
5681 | 1,217,1879,16,0, | ||
5682 | 236,1,1222,1880,16, | ||
5683 | 0,236,1,942,1881, | ||
5684 | 16,0,411,1,1859, | ||
5685 | 685,1,223,1882,16, | ||
5686 | 0,411,1,1228,1883, | ||
5687 | 16,0,411,1,2233, | ||
5688 | 1884,16,0,236,1, | ||
5689 | 1732,1885,16,0,236, | ||
5690 | 1,1482,1886,16,0, | ||
5691 | 411,1,463,1887,16, | ||
5692 | 0,236,1,1438,1888, | ||
5693 | 16,0,411,1,2239, | ||
5694 | 1889,16,0,411,1, | ||
5695 | 236,1890,16,0,236, | ||
5696 | 1,488,1891,16,0, | ||
5697 | 236,1,1639,1892,16, | ||
5698 | 0,236,1,1993,1893, | ||
5699 | 16,0,236,1,242, | ||
5700 | 1894,16,0,411,1, | ||
5701 | 478,1355,1,479,1360, | ||
5702 | 1,1001,1365,1,1002, | ||
5703 | 1370,1,20,1895,19, | ||
5704 | 404,1,20,1896,5, | ||
5705 | 77,1,328,1897,16, | ||
5706 | 0,402,1,1333,1898, | ||
5707 | 16,0,402,1,1094, | ||
5708 | 1272,1,1438,1899,16, | ||
5709 | 0,402,1,223,1900, | ||
5710 | 16,0,402,1,428, | ||
5711 | 1901,16,0,402,1, | ||
5712 | 118,1902,16,0,402, | ||
5713 | 1,883,1903,16,0, | ||
5714 | 402,1,478,1355,1, | ||
5715 | 453,1904,16,0,402, | ||
5716 | 1,1001,1365,1,130, | ||
5717 | 1905,16,0,402,1, | ||
5718 | 1112,1245,1,242,1906, | ||
5719 | 16,0,402,1,1769, | ||
5720 | 1907,16,0,402,1, | ||
5721 | 463,1342,1,573,1104, | ||
5722 | 1,1228,1908,16,0, | ||
5723 | 402,1,1011,1110,1, | ||
5724 | 1121,1909,16,0,402, | ||
5725 | 1,143,1910,16,0, | ||
5726 | 402,1,352,1911,16, | ||
5727 | 0,402,1,1674,1912, | ||
5728 | 16,0,402,1,40, | ||
5729 | 1022,1,477,1014,1, | ||
5730 | 42,1913,16,0,402, | ||
5731 | 1,479,1360,1,44, | ||
5732 | 1038,1,373,1229,1, | ||
5733 | 47,1039,1,48,1045, | ||
5734 | 1,49,1051,1,50, | ||
5735 | 1056,1,51,1061,1, | ||
5736 | 1482,1914,16,0,402, | ||
5737 | 1,380,1217,1,157, | ||
5738 | 1915,16,0,402,1, | ||
5739 | 476,1331,1,371,1186, | ||
5740 | 1,1366,1916,16,0, | ||
5741 | 402,1,2239,1917,16, | ||
5742 | 0,402,1,375,1197, | ||
5743 | 1,1010,1918,16,0, | ||
5744 | 402,1,63,1073,1, | ||
5745 | 1263,1919,16,0,402, | ||
5746 | 1,283,1028,1,66, | ||
5747 | 1079,1,67,1084,1, | ||
5748 | 68,1089,1,69,1094, | ||
5749 | 1,70,1099,1,73, | ||
5750 | 1920,16,0,402,1, | ||
5751 | 74,1116,1,494,1921, | ||
5752 | 16,0,402,1,377, | ||
5753 | 1202,1,172,1922,16, | ||
5754 | 0,402,1,1713,1923, | ||
5755 | 16,0,402,1,188, | ||
5756 | 1924,16,0,402,1, | ||
5757 | 82,1925,16,0,402, | ||
5758 | 1,262,1001,1,504, | ||
5759 | 982,1,305,1066,1, | ||
5760 | 1527,1926,16,0,402, | ||
5761 | 1,1565,1927,16,0, | ||
5762 | 402,1,403,1928,16, | ||
5763 | 0,402,1,827,1929, | ||
5764 | 16,0,402,1,1046, | ||
5765 | 1930,16,0,402,1, | ||
5766 | 93,1931,16,0,402, | ||
5767 | 1,1402,1932,16,0, | ||
5768 | 402,1,205,1933,16, | ||
5769 | 0,402,1,1298,1934, | ||
5770 | 16,0,402,1,1002, | ||
5771 | 1370,1,942,1935,16, | ||
5772 | 0,402,1,1193,1936, | ||
5773 | 16,0,402,1,379, | ||
5774 | 1278,1,1158,1937,16, | ||
5775 | 0,402,1,107,1938, | ||
5776 | 16,0,402,1,21, | ||
5777 | 1939,19,395,1,21, | ||
5778 | 1940,5,77,1,328, | ||
5779 | 1941,16,0,393,1, | ||
5780 | 1333,1942,16,0,393, | ||
5781 | 1,1094,1272,1,1438, | ||
5782 | 1943,16,0,393,1, | ||
5783 | 223,1944,16,0,393, | ||
5784 | 1,428,1945,16,0, | ||
5785 | 393,1,118,1946,16, | ||
5786 | 0,393,1,883,1947, | ||
5787 | 16,0,393,1,478, | ||
5788 | 1355,1,453,1948,16, | ||
5789 | 0,393,1,1001,1365, | ||
5790 | 1,130,1949,16,0, | ||
5791 | 393,1,1112,1245,1, | ||
5792 | 242,1950,16,0,393, | ||
5793 | 1,1769,1951,16,0, | ||
5794 | 393,1,463,1342,1, | ||
5795 | 573,1104,1,1228,1952, | ||
5796 | 16,0,393,1,1011, | ||
5797 | 1110,1,1121,1953,16, | ||
5798 | 0,393,1,143,1954, | ||
5799 | 16,0,393,1,352, | ||
5800 | 1955,16,0,393,1, | ||
5801 | 1674,1956,16,0,393, | ||
5802 | 1,40,1022,1,477, | ||
5803 | 1014,1,42,1957,16, | ||
5804 | 0,393,1,479,1360, | ||
5805 | 1,44,1038,1,373, | ||
5806 | 1229,1,47,1039,1, | ||
5807 | 48,1045,1,49,1051, | ||
5808 | 1,50,1056,1,51, | ||
5809 | 1061,1,1482,1958,16, | ||
5810 | 0,393,1,380,1217, | ||
5811 | 1,157,1959,16,0, | ||
5812 | 393,1,476,1331,1, | ||
5813 | 371,1186,1,1366,1960, | ||
5814 | 16,0,393,1,2239, | ||
5815 | 1961,16,0,393,1, | ||
5816 | 375,1197,1,1010,1962, | ||
5817 | 16,0,393,1,63, | ||
5818 | 1073,1,1263,1963,16, | ||
5819 | 0,393,1,283,1028, | ||
5820 | 1,66,1079,1,67, | ||
5821 | 1084,1,68,1089,1, | ||
5822 | 69,1094,1,70,1099, | ||
5823 | 1,73,1964,16,0, | ||
5824 | 393,1,74,1116,1, | ||
5825 | 494,1965,16,0,393, | ||
5826 | 1,377,1202,1,172, | ||
5827 | 1966,16,0,393,1, | ||
5828 | 1713,1967,16,0,393, | ||
5829 | 1,188,1968,16,0, | ||
5830 | 393,1,82,1969,16, | ||
5831 | 0,393,1,262,1001, | ||
5832 | 1,504,982,1,305, | ||
5833 | 1066,1,1527,1970,16, | ||
5834 | 0,393,1,1565,1971, | ||
5835 | 16,0,393,1,403, | ||
5836 | 1972,16,0,393,1, | ||
5837 | 827,1973,16,0,393, | ||
5838 | 1,1046,1974,16,0, | ||
5839 | 393,1,93,1975,16, | ||
5840 | 0,393,1,1402,1976, | ||
5841 | 16,0,393,1,205, | ||
5842 | 1977,16,0,393,1, | ||
5843 | 1298,1978,16,0,393, | ||
5844 | 1,1002,1370,1,942, | ||
5845 | 1979,16,0,393,1, | ||
5846 | 1193,1980,16,0,393, | ||
5847 | 1,379,1278,1,1158, | ||
5848 | 1981,16,0,393,1, | ||
5849 | 107,1982,16,0,393, | ||
5850 | 1,22,1983,19,385, | ||
5851 | 1,22,1984,5,77, | ||
5852 | 1,328,1985,16,0, | ||
5853 | 383,1,1333,1986,16, | ||
5854 | 0,383,1,1094,1272, | ||
5855 | 1,1438,1987,16,0, | ||
5856 | 383,1,223,1988,16, | ||
5857 | 0,383,1,428,1989, | ||
5858 | 16,0,383,1,118, | ||
5859 | 1990,16,0,383,1, | ||
5860 | 883,1991,16,0,383, | ||
5861 | 1,478,1355,1,453, | ||
5862 | 1992,16,0,383,1, | ||
5863 | 1001,1365,1,130,1993, | ||
5864 | 16,0,383,1,1112, | ||
5865 | 1245,1,242,1994,16, | ||
5866 | 0,383,1,1769,1995, | ||
5867 | 16,0,383,1,463, | ||
5868 | 1342,1,573,1104,1, | ||
5869 | 1228,1996,16,0,383, | ||
5870 | 1,1011,1110,1,1121, | ||
5871 | 1997,16,0,383,1, | ||
5872 | 143,1998,16,0,383, | ||
5873 | 1,352,1999,16,0, | ||
5874 | 383,1,1674,2000,16, | ||
5875 | 0,383,1,40,1022, | ||
5876 | 1,477,1014,1,42, | ||
5877 | 2001,16,0,383,1, | ||
5878 | 479,1360,1,44,1038, | ||
5879 | 1,373,1229,1,47, | ||
5880 | 1039,1,48,1045,1, | ||
5881 | 49,1051,1,50,1056, | ||
5882 | 1,51,1061,1,1482, | ||
5883 | 2002,16,0,383,1, | ||
5884 | 380,1217,1,157,2003, | ||
5885 | 16,0,383,1,476, | ||
5886 | 1331,1,371,1186,1, | ||
5887 | 1366,2004,16,0,383, | ||
5888 | 1,2239,2005,16,0, | ||
5889 | 383,1,375,1197,1, | ||
5890 | 1010,2006,16,0,383, | ||
5891 | 1,63,1073,1,1263, | ||
5892 | 2007,16,0,383,1, | ||
5893 | 283,1028,1,66,1079, | ||
5894 | 1,67,1084,1,68, | ||
5895 | 1089,1,69,1094,1, | ||
5896 | 70,1099,1,73,2008, | ||
5897 | 16,0,383,1,74, | ||
5898 | 1116,1,494,2009,16, | ||
5899 | 0,383,1,377,1202, | ||
5900 | 1,172,2010,16,0, | ||
5901 | 383,1,1713,2011,16, | ||
5902 | 0,383,1,188,2012, | ||
5903 | 16,0,383,1,82, | ||
5904 | 2013,16,0,383,1, | ||
5905 | 262,1001,1,504,982, | ||
5906 | 1,305,1066,1,1527, | ||
5907 | 2014,16,0,383,1, | ||
5908 | 1565,2015,16,0,383, | ||
5909 | 1,403,2016,16,0, | ||
5910 | 383,1,827,2017,16, | ||
5911 | 0,383,1,1046,2018, | ||
5912 | 16,0,383,1,93, | ||
5913 | 2019,16,0,383,1, | ||
5914 | 1402,2020,16,0,383, | ||
5915 | 1,205,2021,16,0, | ||
5916 | 383,1,1298,2022,16, | ||
5917 | 0,383,1,1002,1370, | ||
5918 | 1,942,2023,16,0, | ||
5919 | 383,1,1193,2024,16, | ||
5920 | 0,383,1,379,1278, | ||
5921 | 1,1158,2025,16,0, | ||
5922 | 383,1,107,2026,16, | ||
5923 | 0,383,1,23,2027, | ||
5924 | 19,322,1,23,2028, | ||
5925 | 5,29,1,1637,667, | ||
5926 | 1,1856,779,1,1857, | ||
5927 | 674,1,1858,680,1, | ||
5928 | 1859,685,1,1860,690, | ||
5929 | 1,1862,696,1,1864, | ||
5930 | 701,1,1866,706,1, | ||
5931 | 1868,797,1,1760,718, | ||
5932 | 1,1870,724,1,1871, | ||
5933 | 729,1,1993,2029,16, | ||
5934 | 0,320,1,32,2030, | ||
5935 | 16,0,320,1,1788, | ||
5936 | 2031,16,0,320,1, | ||
5937 | 1467,761,1,1639,2032, | ||
5938 | 16,0,320,1,1694, | ||
5939 | 771,1,1817,790,1, | ||
5940 | 1818,2033,16,0,320, | ||
5941 | 1,2037,820,1,2038, | ||
5942 | 739,1,1385,803,1, | ||
5943 | 2041,747,1,2043,711, | ||
5944 | 1,1611,2034,16,0, | ||
5945 | 320,1,1732,2035,16, | ||
5946 | 0,320,1,1847,829, | ||
5947 | 1,24,2036,19,186, | ||
5948 | 1,24,2037,5,5, | ||
5949 | 1,44,2038,16,0, | ||
5950 | 184,1,377,2039,16, | ||
5951 | 0,439,1,40,2040, | ||
5952 | 16,0,623,1,63, | ||
5953 | 2041,16,0,208,1, | ||
5954 | 373,2042,16,0,435, | ||
5955 | 1,25,2043,19,305, | ||
5956 | 1,25,2044,5,154, | ||
5957 | 1,1257,2045,16,0, | ||
5958 | 522,1,1760,718,1, | ||
5959 | 256,2046,16,0,522, | ||
5960 | 1,1763,2047,16,0, | ||
5961 | 522,1,1011,1110,1, | ||
5962 | 1263,2048,16,0,303, | ||
5963 | 1,494,2049,16,0, | ||
5964 | 303,1,1611,2050,16, | ||
5965 | 0,522,1,262,1001, | ||
5966 | 1,1769,2051,16,0, | ||
5967 | 303,1,504,2052,16, | ||
5968 | 0,522,1,1527,2053, | ||
5969 | 16,0,303,1,476, | ||
5970 | 1331,1,477,1014,1, | ||
5971 | 277,2054,16,0,522, | ||
5972 | 1,2037,820,1,2038, | ||
5973 | 739,1,1788,2055,16, | ||
5974 | 0,522,1,32,2056, | ||
5975 | 16,0,522,1,2041, | ||
5976 | 747,1,2043,711,1, | ||
5977 | 1292,2057,16,0,522, | ||
5978 | 1,1010,2058,16,0, | ||
5979 | 303,1,40,1022,1, | ||
5980 | 41,2059,16,0,522, | ||
5981 | 1,42,2060,16,0, | ||
5982 | 303,1,43,2061,16, | ||
5983 | 0,522,1,44,1038, | ||
5984 | 1,47,1039,1,48, | ||
5985 | 1045,1,49,1051,1, | ||
5986 | 50,1056,1,51,1061, | ||
5987 | 1,52,2062,16,0, | ||
5988 | 522,1,1559,2063,16, | ||
5989 | 0,522,1,305,1066, | ||
5990 | 1,1514,2064,16,0, | ||
5991 | 522,1,299,2065,16, | ||
5992 | 0,522,1,1817,790, | ||
5993 | 1,1818,2066,16,0, | ||
5994 | 522,1,62,2067,16, | ||
5995 | 0,522,1,63,1073, | ||
5996 | 1,66,1079,1,67, | ||
5997 | 1084,1,68,1089,1, | ||
5998 | 69,1094,1,70,1099, | ||
5999 | 1,573,1104,1,1327, | ||
6000 | 2068,16,0,522,1, | ||
6001 | 73,2069,16,0,303, | ||
6002 | 1,74,1116,1,71, | ||
6003 | 2070,16,0,522,1, | ||
6004 | 76,2071,16,0,522, | ||
6005 | 1,328,1126,1,1333, | ||
6006 | 2072,16,0,303,1, | ||
6007 | 79,2073,16,0,522, | ||
6008 | 1,82,2074,16,0, | ||
6009 | 303,1,322,2075,16, | ||
6010 | 0,522,1,85,2076, | ||
6011 | 16,0,522,1,89, | ||
6012 | 2077,16,0,522,1, | ||
6013 | 1847,829,1,283,1028, | ||
6014 | 1,93,2078,16,0, | ||
6015 | 303,1,346,2079,16, | ||
6016 | 0,522,1,97,2080, | ||
6017 | 16,0,522,1,1856, | ||
6018 | 779,1,1857,674,1, | ||
6019 | 1858,680,1,102,2081, | ||
6020 | 16,0,522,1,1860, | ||
6021 | 690,1,1862,696,1, | ||
6022 | 1864,701,1,1112,1245, | ||
6023 | 1,1866,706,1,1046, | ||
6024 | 1121,1,1115,2082,16, | ||
6025 | 0,522,1,112,2083, | ||
6026 | 16,0,522,1,1870, | ||
6027 | 724,1,1871,729,1, | ||
6028 | 1121,2084,16,0,303, | ||
6029 | 1,118,1181,1,371, | ||
6030 | 1186,1,107,2085,16, | ||
6031 | 0,303,1,124,2086, | ||
6032 | 16,0,522,1,377, | ||
6033 | 1202,1,1298,2087,16, | ||
6034 | 0,303,1,827,2088, | ||
6035 | 16,0,303,1,380, | ||
6036 | 1217,1,130,1223,1, | ||
6037 | 1637,667,1,384,2089, | ||
6038 | 16,0,522,1,373, | ||
6039 | 1229,1,137,2090,16, | ||
6040 | 0,522,1,352,1207, | ||
6041 | 1,1396,2091,16,0, | ||
6042 | 522,1,143,2092,16, | ||
6043 | 0,303,1,397,2093, | ||
6044 | 16,0,522,1,1402, | ||
6045 | 2094,16,0,303,1, | ||
6046 | 1152,2095,16,0,522, | ||
6047 | 1,375,1197,1,151, | ||
6048 | 2096,16,0,522,1, | ||
6049 | 403,2097,16,0,303, | ||
6050 | 1,1158,2098,16,0, | ||
6051 | 303,1,1366,2099,16, | ||
6052 | 0,303,1,381,2100, | ||
6053 | 16,0,522,1,157, | ||
6054 | 2101,16,0,303,1, | ||
6055 | 883,2102,16,0,303, | ||
6056 | 1,1668,2103,16,0, | ||
6057 | 522,1,166,2104,16, | ||
6058 | 0,522,1,379,1278, | ||
6059 | 1,1674,2105,16,0, | ||
6060 | 303,1,1868,797,1, | ||
6061 | 172,1283,1,1385,803, | ||
6062 | 1,1432,2106,16,0, | ||
6063 | 522,1,1584,2107,16, | ||
6064 | 0,522,1,182,2108, | ||
6065 | 16,0,522,1,1187, | ||
6066 | 2109,16,0,522,1, | ||
6067 | 422,2110,16,0,522, | ||
6068 | 1,1694,771,1,1193, | ||
6069 | 2111,16,0,303,1, | ||
6070 | 428,2112,16,0,303, | ||
6071 | 1,188,1300,1,447, | ||
6072 | 2113,16,0,522,1, | ||
6073 | 1094,1272,1,199,2114, | ||
6074 | 16,0,522,1,1707, | ||
6075 | 2115,16,0,522,1, | ||
6076 | 453,2116,16,0,303, | ||
6077 | 1,205,2117,16,0, | ||
6078 | 303,1,1713,2118,16, | ||
6079 | 0,303,1,1565,2119, | ||
6080 | 16,0,303,1,1467, | ||
6081 | 761,1,1469,2120,16, | ||
6082 | 0,522,1,217,2121, | ||
6083 | 16,0,522,1,1222, | ||
6084 | 2122,16,0,522,1, | ||
6085 | 942,1316,1,1859,685, | ||
6086 | 1,223,2123,16,0, | ||
6087 | 303,1,1228,2124,16, | ||
6088 | 0,303,1,2233,2125, | ||
6089 | 16,0,522,1,1732, | ||
6090 | 2126,16,0,522,1, | ||
6091 | 1482,2127,16,0,303, | ||
6092 | 1,463,2128,16,0, | ||
6093 | 522,1,1438,2129,16, | ||
6094 | 0,303,1,2239,2130, | ||
6095 | 16,0,303,1,236, | ||
6096 | 2131,16,0,522,1, | ||
6097 | 488,2132,16,0,522, | ||
6098 | 1,1639,2133,16,0, | ||
6099 | 522,1,1993,2134,16, | ||
6100 | 0,522,1,242,2135, | ||
6101 | 16,0,303,1,478, | ||
6102 | 1355,1,479,1360,1, | ||
6103 | 1001,1365,1,1002,1370, | ||
6104 | 1,26,2136,19,349, | ||
6105 | 1,26,2137,5,77, | ||
6106 | 1,328,1126,1,1333, | ||
6107 | 2138,16,0,347,1, | ||
6108 | 1094,1272,1,1438,2139, | ||
6109 | 16,0,347,1,223, | ||
6110 | 2140,16,0,347,1, | ||
6111 | 428,2141,16,0,347, | ||
6112 | 1,118,1181,1,883, | ||
6113 | 2142,16,0,347,1, | ||
6114 | 478,1355,1,453,2143, | ||
6115 | 16,0,554,1,1001, | ||
6116 | 1365,1,130,1223,1, | ||
6117 | 1112,1245,1,242,2144, | ||
6118 | 16,0,347,1,1769, | ||
6119 | 2145,16,0,347,1, | ||
6120 | 463,1342,1,573,1104, | ||
6121 | 1,1228,2146,16,0, | ||
6122 | 347,1,1011,1110,1, | ||
6123 | 1121,2147,16,0,347, | ||
6124 | 1,143,2148,16,0, | ||
6125 | 347,1,352,1207,1, | ||
6126 | 1674,2149,16,0,347, | ||
6127 | 1,40,1022,1,477, | ||
6128 | 1014,1,42,2150,16, | ||
6129 | 0,347,1,479,1360, | ||
6130 | 1,44,1038,1,373, | ||
6131 | 1229,1,47,1039,1, | ||
6132 | 48,1045,1,49,1051, | ||
6133 | 1,50,1056,1,51, | ||
6134 | 1061,1,1482,2151,16, | ||
6135 | 0,347,1,380,1217, | ||
6136 | 1,157,2152,16,0, | ||
6137 | 347,1,476,1331,1, | ||
6138 | 371,1186,1,1366,2153, | ||
6139 | 16,0,347,1,2239, | ||
6140 | 2154,16,0,347,1, | ||
6141 | 375,1197,1,1010,2155, | ||
6142 | 16,0,347,1,63, | ||
6143 | 1073,1,1263,2156,16, | ||
6144 | 0,347,1,283,1028, | ||
6145 | 1,66,1079,1,67, | ||
6146 | 1084,1,68,1089,1, | ||
6147 | 69,1094,1,70,1099, | ||
6148 | 1,73,2157,16,0, | ||
6149 | 347,1,74,1116,1, | ||
6150 | 494,2158,16,0,584, | ||
6151 | 1,377,1202,1,172, | ||
6152 | 1283,1,1713,2159,16, | ||
6153 | 0,347,1,188,1300, | ||
6154 | 1,82,2160,16,0, | ||
6155 | 347,1,262,1001,1, | ||
6156 | 504,982,1,305,1066, | ||
6157 | 1,1527,2161,16,0, | ||
6158 | 347,1,1565,2162,16, | ||
6159 | 0,347,1,403,2163, | ||
6160 | 16,0,347,1,827, | ||
6161 | 2164,16,0,347,1, | ||
6162 | 1046,1121,1,93,2165, | ||
6163 | 16,0,347,1,1402, | ||
6164 | 2166,16,0,347,1, | ||
6165 | 205,2167,16,0,347, | ||
6166 | 1,1298,2168,16,0, | ||
6167 | 347,1,1002,1370,1, | ||
6168 | 942,1316,1,1193,2169, | ||
6169 | 16,0,347,1,379, | ||
6170 | 1278,1,1158,2170,16, | ||
6171 | 0,347,1,107,2171, | ||
6172 | 16,0,347,1,27, | ||
6173 | 2172,19,446,1,27, | ||
6174 | 2173,5,79,1,1584, | ||
6175 | 2174,16,0,444,1, | ||
6176 | 1639,2175,16,0,444, | ||
6177 | 1,1637,667,1,112, | ||
6178 | 2176,16,0,444,1, | ||
6179 | 1857,674,1,1858,680, | ||
6180 | 1,1859,685,1,1860, | ||
6181 | 690,1,1611,2177,16, | ||
6182 | 0,444,1,1862,696, | ||
6183 | 1,1864,701,1,1866, | ||
6184 | 706,1,2043,711,1, | ||
6185 | 124,2178,16,0,444, | ||
6186 | 1,1760,718,1,1870, | ||
6187 | 724,1,1871,729,1, | ||
6188 | 1763,2179,16,0,444, | ||
6189 | 1,1222,2180,16,0, | ||
6190 | 444,1,1993,2181,16, | ||
6191 | 0,444,1,1115,2182, | ||
6192 | 16,0,444,1,447, | ||
6193 | 2183,16,0,444,1, | ||
6194 | 1187,2184,16,0,444, | ||
6195 | 1,137,2185,16,0, | ||
6196 | 444,1,2038,739,1, | ||
6197 | 346,2186,16,0,444, | ||
6198 | 1,32,2187,16,0, | ||
6199 | 444,1,1668,2188,16, | ||
6200 | 0,444,1,2041,747, | ||
6201 | 1,236,2189,16,0, | ||
6202 | 444,1,1514,2190,16, | ||
6203 | 0,444,1,256,2191, | ||
6204 | 16,0,444,1,41, | ||
6205 | 2192,16,0,444,1, | ||
6206 | 151,2193,16,0,444, | ||
6207 | 1,43,2194,16,0, | ||
6208 | 444,1,1732,2195,16, | ||
6209 | 0,444,1,384,2196, | ||
6210 | 16,0,444,1,1467, | ||
6211 | 761,1,52,2197,16, | ||
6212 | 0,444,1,2233,2198, | ||
6213 | 16,0,444,1,381, | ||
6214 | 2199,16,0,444,1, | ||
6215 | 166,2200,16,0,444, | ||
6216 | 1,1257,2201,16,0, | ||
6217 | 444,1,1694,771,1, | ||
6218 | 1432,2202,16,0,444, | ||
6219 | 1,1152,2203,16,0, | ||
6220 | 444,1,1856,779,1, | ||
6221 | 62,2204,16,0,444, | ||
6222 | 1,504,2205,16,0, | ||
6223 | 444,1,277,2206,16, | ||
6224 | 0,444,1,397,2207, | ||
6225 | 16,0,444,1,71, | ||
6226 | 2208,16,0,444,1, | ||
6227 | 1707,2209,16,0,444, | ||
6228 | 1,1817,790,1,1818, | ||
6229 | 2210,16,0,444,1, | ||
6230 | 1868,797,1,76,2211, | ||
6231 | 16,0,444,1,1385, | ||
6232 | 803,1,79,2212,16, | ||
6233 | 0,444,1,182,2213, | ||
6234 | 16,0,444,1,299, | ||
6235 | 2214,16,0,444,1, | ||
6236 | 1559,2215,16,0,444, | ||
6237 | 1,85,2216,16,0, | ||
6238 | 444,1,488,2217,16, | ||
6239 | 0,444,1,1396,2218, | ||
6240 | 16,0,444,1,89, | ||
6241 | 2219,16,0,444,1, | ||
6242 | 199,2220,16,0,444, | ||
6243 | 1,463,2221,16,0, | ||
6244 | 444,1,1292,2222,16, | ||
6245 | 0,444,1,422,2223, | ||
6246 | 16,0,444,1,2037, | ||
6247 | 820,1,97,2224,16, | ||
6248 | 0,444,1,1469,2225, | ||
6249 | 16,0,444,1,1788, | ||
6250 | 2226,16,0,444,1, | ||
6251 | 102,2227,16,0,444, | ||
6252 | 1,1847,829,1,322, | ||
6253 | 2228,16,0,444,1, | ||
6254 | 1327,2229,16,0,444, | ||
6255 | 1,217,2230,16,0, | ||
6256 | 444,1,28,2231,19, | ||
6257 | 142,1,28,2232,5, | ||
6258 | 59,1,328,1126,1, | ||
6259 | 1094,1272,1,223,1321, | ||
6260 | 1,118,1181,1,883, | ||
6261 | 1267,1,1001,1365,1, | ||
6262 | 130,1223,1,1112,1245, | ||
6263 | 1,242,1350,1,352, | ||
6264 | 1207,1,463,1342,1, | ||
6265 | 573,1104,1,574,1440, | ||
6266 | 1,1011,1110,1,143, | ||
6267 | 1240,1,40,1022,1, | ||
6268 | 41,1430,1,42,1434, | ||
6269 | 1,479,1360,1,44, | ||
6270 | 1038,1,373,1229,1, | ||
6271 | 47,1039,1,157,1262, | ||
6272 | 1,49,1051,1,50, | ||
6273 | 1056,1,48,1045,1, | ||
6274 | 379,1278,1,380,1217, | ||
6275 | 1,51,1061,1,383, | ||
6276 | 2233,16,0,140,1, | ||
6277 | 371,1186,1,478,1355, | ||
6278 | 1,386,1451,1,375, | ||
6279 | 1197,1,172,1283,1, | ||
6280 | 262,1001,1,283,1028, | ||
6281 | 1,63,1073,1,67, | ||
6282 | 1084,1,68,1089,1, | ||
6283 | 69,1094,1,66,1079, | ||
6284 | 1,476,1331,1,477, | ||
6285 | 1014,1,74,1116,1, | ||
6286 | 377,1202,1,1002,1370, | ||
6287 | 1,70,1099,1,188, | ||
6288 | 1300,1,381,1457,1, | ||
6289 | 82,1136,1,504,982, | ||
6290 | 1,305,1066,1,827, | ||
6291 | 1212,1,93,1159,1, | ||
6292 | 205,1311,1,1046,1121, | ||
6293 | 1,942,1316,1,107, | ||
6294 | 1192,1,29,2234,19, | ||
6295 | 299,1,29,2235,5, | ||
6296 | 77,1,328,1126,1, | ||
6297 | 1333,2236,16,0,297, | ||
6298 | 1,1094,1272,1,1438, | ||
6299 | 2237,16,0,297,1, | ||
6300 | 223,2238,16,0,297, | ||
6301 | 1,428,2239,16,0, | ||
6302 | 297,1,118,1181,1, | ||
6303 | 883,2240,16,0,297, | ||
6304 | 1,478,1355,1,453, | ||
6305 | 2241,16,0,297,1, | ||
6306 | 1001,1365,1,130,1223, | ||
6307 | 1,1112,1245,1,242, | ||
6308 | 2242,16,0,297,1, | ||
6309 | 1769,2243,16,0,297, | ||
6310 | 1,463,1342,1,573, | ||
6311 | 1104,1,1228,2244,16, | ||
6312 | 0,297,1,1011,1110, | ||
6313 | 1,1121,2245,16,0, | ||
6314 | 297,1,143,1240,1, | ||
6315 | 352,1207,1,1674,2246, | ||
6316 | 16,0,297,1,40, | ||
6317 | 1022,1,477,1014,1, | ||
6318 | 42,2247,16,0,297, | ||
6319 | 1,479,1360,1,44, | ||
6320 | 1038,1,373,1229,1, | ||
6321 | 47,1039,1,48,1045, | ||
6322 | 1,49,1051,1,50, | ||
6323 | 1056,1,51,1061,1, | ||
6324 | 1482,2248,16,0,297, | ||
6325 | 1,380,1217,1,157, | ||
6326 | 1262,1,476,1331,1, | ||
6327 | 371,1186,1,1366,2249, | ||
6328 | 16,0,297,1,2239, | ||
6329 | 2250,16,0,297,1, | ||
6330 | 375,1197,1,1010,2251, | ||
6331 | 16,0,297,1,63, | ||
6332 | 1073,1,1263,2252,16, | ||
6333 | 0,297,1,283,1028, | ||
6334 | 1,66,1079,1,67, | ||
6335 | 1084,1,68,1089,1, | ||
6336 | 69,1094,1,70,1099, | ||
6337 | 1,73,2253,16,0, | ||
6338 | 297,1,74,1116,1, | ||
6339 | 494,2254,16,0,297, | ||
6340 | 1,377,1202,1,172, | ||
6341 | 1283,1,1713,2255,16, | ||
6342 | 0,297,1,188,1300, | ||
6343 | 1,82,2256,16,0, | ||
6344 | 297,1,262,1001,1, | ||
6345 | 504,982,1,305,1066, | ||
6346 | 1,1527,2257,16,0, | ||
6347 | 297,1,1565,2258,16, | ||
6348 | 0,297,1,403,2259, | ||
6349 | 16,0,297,1,827, | ||
6350 | 2260,16,0,297,1, | ||
6351 | 1046,1121,1,93,2261, | ||
6352 | 16,0,297,1,1402, | ||
6353 | 2262,16,0,297,1, | ||
6354 | 205,2263,16,0,297, | ||
6355 | 1,1298,2264,16,0, | ||
6356 | 297,1,1002,1370,1, | ||
6357 | 942,1316,1,1193,2265, | ||
6358 | 16,0,297,1,379, | ||
6359 | 1278,1,1158,2266,16, | ||
6360 | 0,297,1,107,2267, | ||
6361 | 16,0,297,1,30, | ||
6362 | 2268,19,278,1,30, | ||
6363 | 2269,5,77,1,328, | ||
6364 | 1126,1,1333,2270,16, | ||
6365 | 0,276,1,1094,1272, | ||
6366 | 1,1438,2271,16,0, | ||
6367 | 276,1,223,2272,16, | ||
6368 | 0,276,1,428,2273, | ||
6369 | 16,0,276,1,118, | ||
6370 | 1181,1,883,2274,16, | ||
6371 | 0,276,1,478,1355, | ||
6372 | 1,453,2275,16,0, | ||
6373 | 276,1,1001,1365,1, | ||
6374 | 130,1223,1,1112,1245, | ||
6375 | 1,242,2276,16,0, | ||
6376 | 276,1,1769,2277,16, | ||
6377 | 0,276,1,463,1342, | ||
6378 | 1,573,1104,1,1228, | ||
6379 | 2278,16,0,276,1, | ||
6380 | 1011,1110,1,1121,2279, | ||
6381 | 16,0,276,1,143, | ||
6382 | 1240,1,352,1207,1, | ||
6383 | 1674,2280,16,0,276, | ||
6384 | 1,40,1022,1,477, | ||
6385 | 1014,1,42,2281,16, | ||
6386 | 0,276,1,479,1360, | ||
6387 | 1,44,1038,1,373, | ||
6388 | 1229,1,47,1039,1, | ||
6389 | 48,1045,1,49,1051, | ||
6390 | 1,50,1056,1,51, | ||
6391 | 1061,1,1482,2282,16, | ||
6392 | 0,276,1,380,1217, | ||
6393 | 1,157,1262,1,476, | ||
6394 | 1331,1,371,1186,1, | ||
6395 | 1366,2283,16,0,276, | ||
6396 | 1,2239,2284,16,0, | ||
6397 | 276,1,375,1197,1, | ||
6398 | 1010,2285,16,0,276, | ||
6399 | 1,63,1073,1,1263, | ||
6400 | 2286,16,0,276,1, | ||
6401 | 283,1028,1,66,1079, | ||
6402 | 1,67,1084,1,68, | ||
6403 | 1089,1,69,1094,1, | ||
6404 | 70,1099,1,73,2287, | ||
6405 | 16,0,276,1,74, | ||
6406 | 1116,1,494,2288,16, | ||
6407 | 0,276,1,377,1202, | ||
6408 | 1,172,1283,1,1713, | ||
6409 | 2289,16,0,276,1, | ||
6410 | 188,1300,1,82,2290, | ||
6411 | 16,0,276,1,262, | ||
6412 | 1001,1,504,982,1, | ||
6413 | 305,1066,1,1527,2291, | ||
6414 | 16,0,276,1,1565, | ||
6415 | 2292,16,0,276,1, | ||
6416 | 403,2293,16,0,276, | ||
6417 | 1,827,2294,16,0, | ||
6418 | 276,1,1046,1121,1, | ||
6419 | 93,2295,16,0,276, | ||
6420 | 1,1402,2296,16,0, | ||
6421 | 276,1,205,2297,16, | ||
6422 | 0,276,1,1298,2298, | ||
6423 | 16,0,276,1,1002, | ||
6424 | 1370,1,942,1316,1, | ||
6425 | 1193,2299,16,0,276, | ||
6426 | 1,379,1278,1,1158, | ||
6427 | 2300,16,0,276,1, | ||
6428 | 107,2301,16,0,276, | ||
6429 | 1,31,2302,19,269, | ||
6430 | 1,31,2303,5,77, | ||
6431 | 1,328,1126,1,1333, | ||
6432 | 2304,16,0,267,1, | ||
6433 | 1094,1272,1,1438,2305, | ||
6434 | 16,0,267,1,223, | ||
6435 | 2306,16,0,267,1, | ||
6436 | 428,2307,16,0,267, | ||
6437 | 1,118,1181,1,883, | ||
6438 | 2308,16,0,267,1, | ||
6439 | 478,1355,1,453,2309, | ||
6440 | 16,0,267,1,1001, | ||
6441 | 1365,1,130,1223,1, | ||
6442 | 1112,1245,1,242,2310, | ||
6443 | 16,0,267,1,1769, | ||
6444 | 2311,16,0,267,1, | ||
6445 | 463,1342,1,573,1104, | ||
6446 | 1,1228,2312,16,0, | ||
6447 | 267,1,1011,1110,1, | ||
6448 | 1121,2313,16,0,267, | ||
6449 | 1,143,2314,16,0, | ||
6450 | 267,1,352,1207,1, | ||
6451 | 1674,2315,16,0,267, | ||
6452 | 1,40,1022,1,477, | ||
6453 | 1014,1,42,2316,16, | ||
6454 | 0,267,1,479,1360, | ||
6455 | 1,44,1038,1,373, | ||
6456 | 1229,1,47,1039,1, | ||
6457 | 48,1045,1,49,1051, | ||
6458 | 1,50,1056,1,51, | ||
6459 | 1061,1,1482,2317,16, | ||
6460 | 0,267,1,380,1217, | ||
6461 | 1,157,2318,16,0, | ||
6462 | 267,1,476,1331,1, | ||
6463 | 371,1186,1,1366,2319, | ||
6464 | 16,0,267,1,2239, | ||
6465 | 2320,16,0,267,1, | ||
6466 | 375,1197,1,1010,2321, | ||
6467 | 16,0,267,1,63, | ||
6468 | 1073,1,1263,2322,16, | ||
6469 | 0,267,1,283,1028, | ||
6470 | 1,66,1079,1,67, | ||
6471 | 1084,1,68,1089,1, | ||
6472 | 69,1094,1,70,1099, | ||
6473 | 1,73,2323,16,0, | ||
6474 | 267,1,74,1116,1, | ||
6475 | 494,2324,16,0,267, | ||
6476 | 1,377,1202,1,172, | ||
6477 | 1283,1,1713,2325,16, | ||
6478 | 0,267,1,188,1300, | ||
6479 | 1,82,2326,16,0, | ||
6480 | 267,1,262,1001,1, | ||
6481 | 504,982,1,305,1066, | ||
6482 | 1,1527,2327,16,0, | ||
6483 | 267,1,1565,2328,16, | ||
6484 | 0,267,1,403,2329, | ||
6485 | 16,0,267,1,827, | ||
6486 | 2330,16,0,267,1, | ||
6487 | 1046,1121,1,93,2331, | ||
6488 | 16,0,267,1,1402, | ||
6489 | 2332,16,0,267,1, | ||
6490 | 205,2333,16,0,267, | ||
6491 | 1,1298,2334,16,0, | ||
6492 | 267,1,1002,1370,1, | ||
6493 | 942,1316,1,1193,2335, | ||
6494 | 16,0,267,1,379, | ||
6495 | 1278,1,1158,2336,16, | ||
6496 | 0,267,1,107,2337, | ||
6497 | 16,0,267,1,32, | ||
6498 | 2338,19,261,1,32, | ||
6499 | 2339,5,77,1,328, | ||
6500 | 1126,1,1333,2340,16, | ||
6501 | 0,259,1,1094,1272, | ||
6502 | 1,1438,2341,16,0, | ||
6503 | 259,1,223,2342,16, | ||
6504 | 0,259,1,428,2343, | ||
6505 | 16,0,259,1,118, | ||
6506 | 1181,1,883,2344,16, | ||
6507 | 0,259,1,478,1355, | ||
6508 | 1,453,2345,16,0, | ||
6509 | 259,1,1001,1365,1, | ||
6510 | 130,1223,1,1112,1245, | ||
6511 | 1,242,2346,16,0, | ||
6512 | 259,1,1769,2347,16, | ||
6513 | 0,259,1,463,1342, | ||
6514 | 1,573,1104,1,1228, | ||
6515 | 2348,16,0,259,1, | ||
6516 | 1011,1110,1,1121,2349, | ||
6517 | 16,0,259,1,143, | ||
6518 | 2350,16,0,259,1, | ||
6519 | 352,1207,1,1674,2351, | ||
6520 | 16,0,259,1,40, | ||
6521 | 1022,1,477,1014,1, | ||
6522 | 42,2352,16,0,259, | ||
6523 | 1,479,1360,1,44, | ||
6524 | 1038,1,373,1229,1, | ||
6525 | 47,1039,1,48,1045, | ||
6526 | 1,49,1051,1,50, | ||
6527 | 1056,1,51,1061,1, | ||
6528 | 1482,2353,16,0,259, | ||
6529 | 1,380,1217,1,157, | ||
6530 | 2354,16,0,259,1, | ||
6531 | 476,1331,1,371,1186, | ||
6532 | 1,1366,2355,16,0, | ||
6533 | 259,1,2239,2356,16, | ||
6534 | 0,259,1,375,1197, | ||
6535 | 1,1010,2357,16,0, | ||
6536 | 259,1,63,1073,1, | ||
6537 | 1263,2358,16,0,259, | ||
6538 | 1,283,1028,1,66, | ||
6539 | 1079,1,67,1084,1, | ||
6540 | 68,1089,1,69,1094, | ||
6541 | 1,70,1099,1,73, | ||
6542 | 2359,16,0,259,1, | ||
6543 | 74,1116,1,494,2360, | ||
6544 | 16,0,259,1,377, | ||
6545 | 1202,1,172,1283,1, | ||
6546 | 1713,2361,16,0,259, | ||
6547 | 1,188,1300,1,82, | ||
6548 | 2362,16,0,259,1, | ||
6549 | 262,1001,1,504,982, | ||
6550 | 1,305,1066,1,1527, | ||
6551 | 2363,16,0,259,1, | ||
6552 | 1565,2364,16,0,259, | ||
6553 | 1,403,2365,16,0, | ||
6554 | 259,1,827,2366,16, | ||
6555 | 0,259,1,1046,1121, | ||
6556 | 1,93,2367,16,0, | ||
6557 | 259,1,1402,2368,16, | ||
6558 | 0,259,1,205,2369, | ||
6559 | 16,0,259,1,1298, | ||
6560 | 2370,16,0,259,1, | ||
6561 | 1002,1370,1,942,1316, | ||
6562 | 1,1193,2371,16,0, | ||
6563 | 259,1,379,1278,1, | ||
6564 | 1158,2372,16,0,259, | ||
6565 | 1,107,2373,16,0, | ||
6566 | 259,1,33,2374,19, | ||
6567 | 370,1,33,2375,5, | ||
6568 | 77,1,328,1126,1, | ||
6569 | 1333,2376,16,0,368, | ||
6570 | 1,1094,1272,1,1438, | ||
6571 | 2377,16,0,368,1, | ||
6572 | 223,2378,16,0,368, | ||
6573 | 1,428,2379,16,0, | ||
6574 | 368,1,118,1181,1, | ||
6575 | 883,2380,16,0,368, | ||
6576 | 1,478,1355,1,453, | ||
6577 | 2381,16,0,368,1, | ||
6578 | 1001,1365,1,130,1223, | ||
6579 | 1,1112,1245,1,242, | ||
6580 | 1350,1,1769,2382,16, | ||
6581 | 0,368,1,463,1342, | ||
6582 | 1,573,1104,1,1228, | ||
6583 | 2383,16,0,368,1, | ||
6584 | 1011,1110,1,1121,2384, | ||
6585 | 16,0,368,1,143, | ||
6586 | 1240,1,352,1207,1, | ||
6587 | 1674,2385,16,0,368, | ||
6588 | 1,40,1022,1,477, | ||
6589 | 1014,1,42,2386,16, | ||
6590 | 0,368,1,479,1360, | ||
6591 | 1,44,1038,1,373, | ||
6592 | 1229,1,47,1039,1, | ||
6593 | 48,1045,1,49,1051, | ||
6594 | 1,50,1056,1,51, | ||
6595 | 1061,1,1482,2387,16, | ||
6596 | 0,368,1,380,1217, | ||
6597 | 1,157,1262,1,476, | ||
6598 | 1331,1,371,1186,1, | ||
6599 | 1366,2388,16,0,368, | ||
6600 | 1,2239,2389,16,0, | ||
6601 | 368,1,375,1197,1, | ||
6602 | 1010,2390,16,0,368, | ||
6603 | 1,63,1073,1,1263, | ||
6604 | 2391,16,0,368,1, | ||
6605 | 283,1028,1,66,1079, | ||
6606 | 1,67,1084,1,68, | ||
6607 | 1089,1,69,1094,1, | ||
6608 | 70,1099,1,73,2392, | ||
6609 | 16,0,368,1,74, | ||
6610 | 1116,1,494,2393,16, | ||
6611 | 0,368,1,377,1202, | ||
6612 | 1,172,1283,1,1713, | ||
6613 | 2394,16,0,368,1, | ||
6614 | 188,1300,1,82,2395, | ||
6615 | 16,0,368,1,262, | ||
6616 | 1001,1,504,982,1, | ||
6617 | 305,1066,1,1527,2396, | ||
6618 | 16,0,368,1,1565, | ||
6619 | 2397,16,0,368,1, | ||
6620 | 403,2398,16,0,368, | ||
6621 | 1,827,2399,16,0, | ||
6622 | 368,1,1046,1121,1, | ||
6623 | 93,2400,16,0,368, | ||
6624 | 1,1402,2401,16,0, | ||
6625 | 368,1,205,2402,16, | ||
6626 | 0,368,1,1298,2403, | ||
6627 | 16,0,368,1,1002, | ||
6628 | 1370,1,942,1316,1, | ||
6629 | 1193,2404,16,0,368, | ||
6630 | 1,379,1278,1,1158, | ||
6631 | 2405,16,0,368,1, | ||
6632 | 107,2406,16,0,368, | ||
6633 | 1,34,2407,19,363, | ||
6634 | 1,34,2408,5,77, | ||
6635 | 1,328,1126,1,1333, | ||
6636 | 2409,16,0,361,1, | ||
6637 | 1094,1272,1,1438,2410, | ||
6638 | 16,0,361,1,223, | ||
6639 | 1321,1,428,2411,16, | ||
6640 | 0,361,1,118,1181, | ||
6641 | 1,883,2412,16,0, | ||
6642 | 361,1,478,1355,1, | ||
6643 | 453,2413,16,0,361, | ||
6644 | 1,1001,1365,1,130, | ||
6645 | 1223,1,1112,1245,1, | ||
6646 | 242,1350,1,1769,2414, | ||
6647 | 16,0,361,1,463, | ||
6648 | 1342,1,573,1104,1, | ||
6649 | 1228,2415,16,0,361, | ||
6650 | 1,1011,1110,1,1121, | ||
6651 | 2416,16,0,361,1, | ||
6652 | 143,1240,1,352,1207, | ||
6653 | 1,1674,2417,16,0, | ||
6654 | 361,1,40,1022,1, | ||
6655 | 477,1014,1,42,2418, | ||
6656 | 16,0,361,1,479, | ||
6657 | 1360,1,44,1038,1, | ||
6658 | 373,1229,1,47,1039, | ||
6659 | 1,48,1045,1,49, | ||
6660 | 1051,1,50,1056,1, | ||
6661 | 51,1061,1,1482,2419, | ||
6662 | 16,0,361,1,380, | ||
6663 | 1217,1,157,1262,1, | ||
6664 | 476,1331,1,371,1186, | ||
6665 | 1,1366,2420,16,0, | ||
6666 | 361,1,2239,2421,16, | ||
6667 | 0,361,1,375,1197, | ||
6668 | 1,1010,2422,16,0, | ||
6669 | 361,1,63,1073,1, | ||
6670 | 1263,2423,16,0,361, | ||
6671 | 1,283,1028,1,66, | ||
6672 | 1079,1,67,1084,1, | ||
6673 | 68,1089,1,69,1094, | ||
6674 | 1,70,1099,1,73, | ||
6675 | 2424,16,0,361,1, | ||
6676 | 74,1116,1,494,2425, | ||
6677 | 16,0,361,1,377, | ||
6678 | 1202,1,172,1283,1, | ||
6679 | 1713,2426,16,0,361, | ||
6680 | 1,188,1300,1,82, | ||
6681 | 2427,16,0,361,1, | ||
6682 | 262,1001,1,504,982, | ||
6683 | 1,305,1066,1,1527, | ||
6684 | 2428,16,0,361,1, | ||
6685 | 1565,2429,16,0,361, | ||
6686 | 1,403,2430,16,0, | ||
6687 | 361,1,827,2431,16, | ||
6688 | 0,361,1,1046,1121, | ||
6689 | 1,93,2432,16,0, | ||
6690 | 361,1,1402,2433,16, | ||
6691 | 0,361,1,205,1311, | ||
6692 | 1,1298,2434,16,0, | ||
6693 | 361,1,1002,1370,1, | ||
6694 | 942,1316,1,1193,2435, | ||
6695 | 16,0,361,1,379, | ||
6696 | 1278,1,1158,2436,16, | ||
6697 | 0,361,1,107,2437, | ||
6698 | 16,0,361,1,35, | ||
6699 | 2438,19,356,1,35, | ||
6700 | 2439,5,77,1,328, | ||
6701 | 1126,1,1333,2440,16, | ||
6702 | 0,354,1,1094,1272, | ||
6703 | 1,1438,2441,16,0, | ||
6704 | 354,1,223,2442,16, | ||
6705 | 0,354,1,428,2443, | ||
6706 | 16,0,354,1,118, | ||
6707 | 1181,1,883,2444,16, | ||
6708 | 0,354,1,478,1355, | ||
6709 | 1,453,2445,16,0, | ||
6710 | 354,1,1001,1365,1, | ||
6711 | 130,1223,1,1112,1245, | ||
6712 | 1,242,1350,1,1769, | ||
6713 | 2446,16,0,354,1, | ||
6714 | 463,1342,1,573,1104, | ||
6715 | 1,1228,2447,16,0, | ||
6716 | 354,1,1011,1110,1, | ||
6717 | 1121,2448,16,0,354, | ||
6718 | 1,143,1240,1,352, | ||
6719 | 1207,1,1674,2449,16, | ||
6720 | 0,354,1,40,1022, | ||
6721 | 1,477,1014,1,42, | ||
6722 | 2450,16,0,354,1, | ||
6723 | 479,1360,1,44,1038, | ||
6724 | 1,373,1229,1,47, | ||
6725 | 1039,1,48,1045,1, | ||
6726 | 49,1051,1,50,1056, | ||
6727 | 1,51,1061,1,1482, | ||
6728 | 2451,16,0,354,1, | ||
6729 | 380,1217,1,157,1262, | ||
6730 | 1,476,1331,1,371, | ||
6731 | 1186,1,1366,2452,16, | ||
6732 | 0,354,1,2239,2453, | ||
6733 | 16,0,354,1,375, | ||
6734 | 1197,1,1010,2454,16, | ||
6735 | 0,354,1,63,1073, | ||
6736 | 1,1263,2455,16,0, | ||
6737 | 354,1,283,1028,1, | ||
6738 | 66,1079,1,67,1084, | ||
6739 | 1,68,1089,1,69, | ||
6740 | 1094,1,70,1099,1, | ||
6741 | 73,2456,16,0,354, | ||
6742 | 1,74,1116,1,494, | ||
6743 | 2457,16,0,354,1, | ||
6744 | 377,1202,1,172,1283, | ||
6745 | 1,1713,2458,16,0, | ||
6746 | 354,1,188,1300,1, | ||
6747 | 82,2459,16,0,354, | ||
6748 | 1,262,1001,1,504, | ||
6749 | 982,1,305,1066,1, | ||
6750 | 1527,2460,16,0,354, | ||
6751 | 1,1565,2461,16,0, | ||
6752 | 354,1,403,2462,16, | ||
6753 | 0,354,1,827,2463, | ||
6754 | 16,0,354,1,1046, | ||
6755 | 1121,1,93,2464,16, | ||
6756 | 0,354,1,1402,2465, | ||
6757 | 16,0,354,1,205, | ||
6758 | 1311,1,1298,2466,16, | ||
6759 | 0,354,1,1002,1370, | ||
6760 | 1,942,1316,1,1193, | ||
6761 | 2467,16,0,354,1, | ||
6762 | 379,1278,1,1158,2468, | ||
6763 | 16,0,354,1,107, | ||
6764 | 2469,16,0,354,1, | ||
6765 | 36,2470,19,229,1, | ||
6766 | 36,2471,5,78,1, | ||
6767 | 1584,2472,16,0,227, | ||
6768 | 1,1639,2473,16,0, | ||
6769 | 227,1,1637,667,1, | ||
6770 | 112,2474,16,0,227, | ||
6771 | 1,1857,674,1,1858, | ||
6772 | 680,1,1859,685,1, | ||
6773 | 1860,690,1,1862,696, | ||
6774 | 1,1864,701,1,1866, | ||
6775 | 706,1,2043,711,1, | ||
6776 | 124,2475,16,0,227, | ||
6777 | 1,1760,718,1,1870, | ||
6778 | 724,1,1871,729,1, | ||
6779 | 1763,2476,16,0,227, | ||
6780 | 1,1222,2477,16,0, | ||
6781 | 227,1,1993,2478,16, | ||
6782 | 0,227,1,1115,2479, | ||
6783 | 16,0,227,1,447, | ||
6784 | 2480,16,0,227,1, | ||
6785 | 1187,2481,16,0,227, | ||
6786 | 1,137,2482,16,0, | ||
6787 | 227,1,2038,739,1, | ||
6788 | 346,2483,16,0,227, | ||
6789 | 1,32,2484,16,0, | ||
6790 | 227,1,1668,2485,16, | ||
6791 | 0,227,1,2041,747, | ||
6792 | 1,236,2486,16,0, | ||
6793 | 227,1,1514,2487,16, | ||
6794 | 0,227,1,256,2488, | ||
6795 | 16,0,227,1,41, | ||
6796 | 2489,16,0,227,1, | ||
6797 | 151,2490,16,0,227, | ||
6798 | 1,43,2491,16,0, | ||
6799 | 227,1,1732,2492,16, | ||
6800 | 0,227,1,384,2493, | ||
6801 | 16,0,227,1,1467, | ||
6802 | 761,1,52,2494,16, | ||
6803 | 0,227,1,2233,2495, | ||
6804 | 16,0,227,1,381, | ||
6805 | 2496,16,0,227,1, | ||
6806 | 166,2497,16,0,227, | ||
6807 | 1,1257,2498,16,0, | ||
6808 | 227,1,1694,771,1, | ||
6809 | 1432,2499,16,0,227, | ||
6810 | 1,1152,2500,16,0, | ||
6811 | 227,1,1856,779,1, | ||
6812 | 1611,2501,16,0,227, | ||
6813 | 1,504,2502,16,0, | ||
6814 | 227,1,277,2503,16, | ||
6815 | 0,227,1,397,2504, | ||
6816 | 16,0,227,1,71, | ||
6817 | 2505,16,0,227,1, | ||
6818 | 1707,2506,16,0,227, | ||
6819 | 1,1817,790,1,1818, | ||
6820 | 2507,16,0,227,1, | ||
6821 | 1868,797,1,76,2508, | ||
6822 | 16,0,227,1,1385, | ||
6823 | 803,1,79,2509,16, | ||
6824 | 0,227,1,182,2510, | ||
6825 | 16,0,227,1,299, | ||
6826 | 2511,16,0,227,1, | ||
6827 | 1559,2512,16,0,227, | ||
6828 | 1,85,2513,16,0, | ||
6829 | 227,1,488,2514,16, | ||
6830 | 0,227,1,1396,2515, | ||
6831 | 16,0,227,1,89, | ||
6832 | 2516,16,0,227,1, | ||
6833 | 199,2517,16,0,227, | ||
6834 | 1,463,2518,16,0, | ||
6835 | 227,1,1292,2519,16, | ||
6836 | 0,227,1,422,2520, | ||
6837 | 16,0,227,1,2037, | ||
6838 | 820,1,97,2521,16, | ||
6839 | 0,227,1,1469,2522, | ||
6840 | 16,0,227,1,1788, | ||
6841 | 2523,16,0,227,1, | ||
6842 | 102,2524,16,0,227, | ||
6843 | 1,1847,829,1,322, | ||
6844 | 2525,16,0,227,1, | ||
6845 | 1327,2526,16,0,227, | ||
6846 | 1,217,2527,16,0, | ||
6847 | 227,1,37,2528,19, | ||
6848 | 250,1,37,2529,5, | ||
6849 | 78,1,1584,2530,16, | ||
6850 | 0,248,1,1639,2531, | ||
6851 | 16,0,248,1,1637, | ||
6852 | 667,1,112,2532,16, | ||
6853 | 0,248,1,1857,674, | ||
6854 | 1,1858,680,1,1859, | ||
6855 | 685,1,1860,690,1, | ||
6856 | 1862,696,1,1864,701, | ||
6857 | 1,1866,706,1,2043, | ||
6858 | 711,1,124,2533,16, | ||
6859 | 0,248,1,1760,718, | ||
6860 | 1,1870,724,1,1871, | ||
6861 | 729,1,1763,2534,16, | ||
6862 | 0,248,1,1222,2535, | ||
6863 | 16,0,248,1,1993, | ||
6864 | 2536,16,0,248,1, | ||
6865 | 1115,2537,16,0,248, | ||
6866 | 1,447,2538,16,0, | ||
6867 | 248,1,1187,2539,16, | ||
6868 | 0,248,1,137,2540, | ||
6869 | 16,0,248,1,2038, | ||
6870 | 739,1,346,2541,16, | ||
6871 | 0,248,1,32,2542, | ||
6872 | 16,0,248,1,1668, | ||
6873 | 2543,16,0,248,1, | ||
6874 | 2041,747,1,236,2544, | ||
6875 | 16,0,248,1,1514, | ||
6876 | 2545,16,0,248,1, | ||
6877 | 256,2546,16,0,248, | ||
6878 | 1,41,2547,16,0, | ||
6879 | 248,1,151,2548,16, | ||
6880 | 0,248,1,43,2549, | ||
6881 | 16,0,248,1,1732, | ||
6882 | 2550,16,0,248,1, | ||
6883 | 384,2551,16,0,248, | ||
6884 | 1,1467,761,1,52, | ||
6885 | 2552,16,0,248,1, | ||
6886 | 2233,2553,16,0,248, | ||
6887 | 1,381,2554,16,0, | ||
6888 | 248,1,166,2555,16, | ||
6889 | 0,248,1,1257,2556, | ||
6890 | 16,0,248,1,1694, | ||
6891 | 771,1,1432,2557,16, | ||
6892 | 0,248,1,1152,2558, | ||
6893 | 16,0,248,1,1856, | ||
6894 | 779,1,1611,2559,16, | ||
6895 | 0,248,1,504,2560, | ||
6896 | 16,0,248,1,277, | ||
6897 | 2561,16,0,248,1, | ||
6898 | 397,2562,16,0,248, | ||
6899 | 1,71,2563,16,0, | ||
6900 | 248,1,1707,2564,16, | ||
6901 | 0,248,1,1817,790, | ||
6902 | 1,1818,2565,16,0, | ||
6903 | 248,1,1868,797,1, | ||
6904 | 76,2566,16,0,248, | ||
6905 | 1,1385,803,1,79, | ||
6906 | 2567,16,0,248,1, | ||
6907 | 182,2568,16,0,248, | ||
6908 | 1,299,2569,16,0, | ||
6909 | 248,1,1559,2570,16, | ||
6910 | 0,248,1,85,2571, | ||
6911 | 16,0,248,1,488, | ||
6912 | 2572,16,0,248,1, | ||
6913 | 1396,2573,16,0,248, | ||
6914 | 1,89,2574,16,0, | ||
6915 | 248,1,199,2575,16, | ||
6916 | 0,248,1,463,2576, | ||
6917 | 16,0,248,1,1292, | ||
6918 | 2577,16,0,248,1, | ||
6919 | 422,2578,16,0,248, | ||
6920 | 1,2037,820,1,97, | ||
6921 | 2579,16,0,248,1, | ||
6922 | 1469,2580,16,0,248, | ||
6923 | 1,1788,2581,16,0, | ||
6924 | 248,1,102,2582,16, | ||
6925 | 0,248,1,1847,829, | ||
6926 | 1,322,2583,16,0, | ||
6927 | 248,1,1327,2584,16, | ||
6928 | 0,248,1,217,2585, | ||
6929 | 16,0,248,1,38, | ||
6930 | 2586,19,246,1,38, | ||
6931 | 2587,5,77,1,328, | ||
6932 | 1126,1,1333,2588,16, | ||
6933 | 0,244,1,1094,1272, | ||
6934 | 1,1438,2589,16,0, | ||
6935 | 244,1,223,1321,1, | ||
6936 | 428,2590,16,0,244, | ||
6937 | 1,118,1181,1,883, | ||
6938 | 1267,1,478,1355,1, | ||
6939 | 453,2591,16,0,244, | ||
6940 | 1,1001,1365,1,130, | ||
6941 | 1223,1,1112,1245,1, | ||
6942 | 242,1350,1,1769,2592, | ||
6943 | 16,0,244,1,463, | ||
6944 | 1342,1,573,1104,1, | ||
6945 | 1228,2593,16,0,244, | ||
6946 | 1,1011,1110,1,1121, | ||
6947 | 2594,16,0,244,1, | ||
6948 | 143,1240,1,352,1207, | ||
6949 | 1,1674,2595,16,0, | ||
6950 | 244,1,40,1022,1, | ||
6951 | 477,1014,1,42,2596, | ||
6952 | 16,0,244,1,479, | ||
6953 | 1360,1,44,1038,1, | ||
6954 | 373,1229,1,47,1039, | ||
6955 | 1,48,1045,1,49, | ||
6956 | 1051,1,50,1056,1, | ||
6957 | 51,1061,1,1482,2597, | ||
6958 | 16,0,244,1,380, | ||
6959 | 1217,1,157,1262,1, | ||
6960 | 476,1331,1,371,1186, | ||
6961 | 1,1366,2598,16,0, | ||
6962 | 244,1,2239,2599,16, | ||
6963 | 0,244,1,375,1197, | ||
6964 | 1,1010,2600,16,0, | ||
6965 | 244,1,63,1073,1, | ||
6966 | 1263,2601,16,0,244, | ||
6967 | 1,283,1028,1,66, | ||
6968 | 1079,1,67,1084,1, | ||
6969 | 68,1089,1,69,1094, | ||
6970 | 1,70,1099,1,73, | ||
6971 | 2602,16,0,244,1, | ||
6972 | 74,1116,1,494,2603, | ||
6973 | 16,0,244,1,377, | ||
6974 | 1202,1,172,1283,1, | ||
6975 | 1713,2604,16,0,244, | ||
6976 | 1,188,1300,1,82, | ||
6977 | 2605,16,0,244,1, | ||
6978 | 262,1001,1,504,982, | ||
6979 | 1,305,1066,1,1527, | ||
6980 | 2606,16,0,244,1, | ||
6981 | 1565,2607,16,0,244, | ||
6982 | 1,403,2608,16,0, | ||
6983 | 244,1,827,1212,1, | ||
6984 | 1046,1121,1,93,2609, | ||
6985 | 16,0,244,1,1402, | ||
6986 | 2610,16,0,244,1, | ||
6987 | 205,1311,1,1298,2611, | ||
6988 | 16,0,244,1,1002, | ||
6989 | 1370,1,942,1316,1, | ||
6990 | 1193,2612,16,0,244, | ||
6991 | 1,379,1278,1,1158, | ||
6992 | 2613,16,0,244,1, | ||
6993 | 107,2614,16,0,244, | ||
6994 | 1,39,2615,19,232, | ||
6995 | 1,39,2616,5,77, | ||
6996 | 1,328,1126,1,1333, | ||
6997 | 2617,16,0,230,1, | ||
6998 | 1094,1272,1,1438,2618, | ||
6999 | 16,0,230,1,223, | ||
7000 | 1321,1,428,2619,16, | ||
7001 | 0,230,1,118,1181, | ||
7002 | 1,883,1267,1,478, | ||
7003 | 1355,1,453,2620,16, | ||
7004 | 0,230,1,1001,1365, | ||
7005 | 1,130,1223,1,1112, | ||
7006 | 1245,1,242,1350,1, | ||
7007 | 1769,2621,16,0,230, | ||
7008 | 1,463,1342,1,573, | ||
7009 | 1104,1,1228,2622,16, | ||
7010 | 0,230,1,1011,1110, | ||
7011 | 1,1121,2623,16,0, | ||
7012 | 230,1,143,1240,1, | ||
7013 | 352,1207,1,1674,2624, | ||
7014 | 16,0,230,1,40, | ||
7015 | 1022,1,477,1014,1, | ||
7016 | 42,2625,16,0,230, | ||
7017 | 1,479,1360,1,44, | ||
7018 | 1038,1,373,1229,1, | ||
7019 | 47,1039,1,48,1045, | ||
7020 | 1,49,1051,1,50, | ||
7021 | 1056,1,51,1061,1, | ||
7022 | 1482,2626,16,0,230, | ||
7023 | 1,380,1217,1,157, | ||
7024 | 1262,1,476,1331,1, | ||
7025 | 371,1186,1,1366,2627, | ||
7026 | 16,0,230,1,2239, | ||
7027 | 2628,16,0,230,1, | ||
7028 | 375,1197,1,1010,2629, | ||
7029 | 16,0,230,1,63, | ||
7030 | 1073,1,1263,2630,16, | ||
7031 | 0,230,1,283,1028, | ||
7032 | 1,66,1079,1,67, | ||
7033 | 1084,1,68,1089,1, | ||
7034 | 69,1094,1,70,1099, | ||
7035 | 1,73,2631,16,0, | ||
7036 | 230,1,74,1116,1, | ||
7037 | 494,2632,16,0,230, | ||
7038 | 1,377,1202,1,172, | ||
7039 | 1283,1,1713,2633,16, | ||
7040 | 0,230,1,188,1300, | ||
7041 | 1,82,2634,16,0, | ||
7042 | 230,1,262,1001,1, | ||
7043 | 504,982,1,305,1066, | ||
7044 | 1,1527,2635,16,0, | ||
7045 | 230,1,1565,2636,16, | ||
7046 | 0,230,1,403,2637, | ||
7047 | 16,0,230,1,827, | ||
7048 | 1212,1,1046,1121,1, | ||
7049 | 93,2638,16,0,230, | ||
7050 | 1,1402,2639,16,0, | ||
7051 | 230,1,205,1311,1, | ||
7052 | 1298,2640,16,0,230, | ||
7053 | 1,1002,1370,1,942, | ||
7054 | 1316,1,1193,2641,16, | ||
7055 | 0,230,1,379,1278, | ||
7056 | 1,1158,2642,16,0, | ||
7057 | 230,1,107,2643,16, | ||
7058 | 0,230,1,40,2644, | ||
7059 | 19,223,1,40,2645, | ||
7060 | 5,77,1,328,1126, | ||
7061 | 1,1333,2646,16,0, | ||
7062 | 221,1,1094,1272,1, | ||
7063 | 1438,2647,16,0,221, | ||
7064 | 1,223,2648,16,0, | ||
7065 | 221,1,428,2649,16, | ||
7066 | 0,221,1,118,2650, | ||
7067 | 16,0,221,1,883, | ||
7068 | 2651,16,0,221,1, | ||
7069 | 478,1355,1,453,2652, | ||
7070 | 16,0,221,1,1001, | ||
7071 | 1365,1,130,2653,16, | ||
7072 | 0,221,1,1112,1245, | ||
7073 | 1,242,2654,16,0, | ||
7074 | 221,1,1769,2655,16, | ||
7075 | 0,221,1,463,1342, | ||
7076 | 1,573,1104,1,1228, | ||
7077 | 2656,16,0,221,1, | ||
7078 | 1011,1110,1,1121,2657, | ||
7079 | 16,0,221,1,143, | ||
7080 | 2658,16,0,221,1, | ||
7081 | 352,1207,1,1674,2659, | ||
7082 | 16,0,221,1,40, | ||
7083 | 1022,1,477,1014,1, | ||
7084 | 42,2660,16,0,221, | ||
7085 | 1,479,1360,1,44, | ||
7086 | 1038,1,373,1229,1, | ||
7087 | 47,1039,1,48,1045, | ||
7088 | 1,49,1051,1,50, | ||
7089 | 1056,1,51,1061,1, | ||
7090 | 1482,2661,16,0,221, | ||
7091 | 1,380,1217,1,157, | ||
7092 | 2662,16,0,221,1, | ||
7093 | 476,1331,1,371,1186, | ||
7094 | 1,1366,2663,16,0, | ||
7095 | 221,1,2239,2664,16, | ||
7096 | 0,221,1,375,1197, | ||
7097 | 1,1010,2665,16,0, | ||
7098 | 221,1,63,1073,1, | ||
7099 | 1263,2666,16,0,221, | ||
7100 | 1,283,1028,1,66, | ||
7101 | 1079,1,67,1084,1, | ||
7102 | 68,1089,1,69,1094, | ||
7103 | 1,70,1099,1,73, | ||
7104 | 2667,16,0,221,1, | ||
7105 | 74,1116,1,494,2668, | ||
7106 | 16,0,221,1,377, | ||
7107 | 1202,1,172,2669,16, | ||
7108 | 0,221,1,1713,2670, | ||
7109 | 16,0,221,1,188, | ||
7110 | 2671,16,0,221,1, | ||
7111 | 82,2672,16,0,221, | ||
7112 | 1,262,1001,1,504, | ||
7113 | 982,1,305,1066,1, | ||
7114 | 1527,2673,16,0,221, | ||
7115 | 1,1565,2674,16,0, | ||
7116 | 221,1,403,2675,16, | ||
7117 | 0,221,1,827,2676, | ||
7118 | 16,0,221,1,1046, | ||
7119 | 1121,1,93,2677,16, | ||
7120 | 0,221,1,1402,2678, | ||
7121 | 16,0,221,1,205, | ||
7122 | 2679,16,0,221,1, | ||
7123 | 1298,2680,16,0,221, | ||
7124 | 1,1002,1370,1,942, | ||
7125 | 1316,1,1193,2681,16, | ||
7126 | 0,221,1,379,1278, | ||
7127 | 1,1158,2682,16,0, | ||
7128 | 221,1,107,2683,16, | ||
7129 | 0,221,1,41,2684, | ||
7130 | 19,182,1,41,2685, | ||
7131 | 5,77,1,328,1126, | ||
7132 | 1,1333,2686,16,0, | ||
7133 | 180,1,1094,1272,1, | ||
7134 | 1438,2687,16,0,180, | ||
7135 | 1,223,2688,16,0, | ||
7136 | 180,1,428,2689,16, | ||
7137 | 0,180,1,118,2690, | ||
7138 | 16,0,180,1,883, | ||
7139 | 2691,16,0,180,1, | ||
7140 | 478,1355,1,453,2692, | ||
7141 | 16,0,180,1,1001, | ||
7142 | 1365,1,130,2693,16, | ||
7143 | 0,180,1,1112,1245, | ||
7144 | 1,242,2694,16,0, | ||
7145 | 180,1,1769,2695,16, | ||
7146 | 0,180,1,463,1342, | ||
7147 | 1,573,1104,1,1228, | ||
7148 | 2696,16,0,180,1, | ||
7149 | 1011,1110,1,1121,2697, | ||
7150 | 16,0,180,1,143, | ||
7151 | 2698,16,0,180,1, | ||
7152 | 352,1207,1,1674,2699, | ||
7153 | 16,0,180,1,40, | ||
7154 | 1022,1,477,1014,1, | ||
7155 | 42,2700,16,0,180, | ||
7156 | 1,479,1360,1,44, | ||
7157 | 1038,1,373,1229,1, | ||
7158 | 47,1039,1,48,1045, | ||
7159 | 1,49,1051,1,50, | ||
7160 | 1056,1,51,1061,1, | ||
7161 | 1482,2701,16,0,180, | ||
7162 | 1,380,1217,1,157, | ||
7163 | 2702,16,0,180,1, | ||
7164 | 476,1331,1,371,1186, | ||
7165 | 1,1366,2703,16,0, | ||
7166 | 180,1,2239,2704,16, | ||
7167 | 0,180,1,375,1197, | ||
7168 | 1,1010,2705,16,0, | ||
7169 | 180,1,63,1073,1, | ||
7170 | 1263,2706,16,0,180, | ||
7171 | 1,283,1028,1,66, | ||
7172 | 1079,1,67,1084,1, | ||
7173 | 68,1089,1,69,1094, | ||
7174 | 1,70,1099,1,73, | ||
7175 | 2707,16,0,180,1, | ||
7176 | 74,1116,1,494,2708, | ||
7177 | 16,0,180,1,377, | ||
7178 | 1202,1,172,2709,16, | ||
7179 | 0,180,1,1713,2710, | ||
7180 | 16,0,180,1,188, | ||
7181 | 2711,16,0,180,1, | ||
7182 | 82,2712,16,0,180, | ||
7183 | 1,262,1001,1,504, | ||
7184 | 982,1,305,1066,1, | ||
7185 | 1527,2713,16,0,180, | ||
7186 | 1,1565,2714,16,0, | ||
7187 | 180,1,403,2715,16, | ||
7188 | 0,180,1,827,2716, | ||
7189 | 16,0,180,1,1046, | ||
7190 | 1121,1,93,2717,16, | ||
7191 | 0,180,1,1402,2718, | ||
7192 | 16,0,180,1,205, | ||
7193 | 2719,16,0,180,1, | ||
7194 | 1298,2720,16,0,180, | ||
7195 | 1,1002,1370,1,942, | ||
7196 | 1316,1,1193,2721,16, | ||
7197 | 0,180,1,379,1278, | ||
7198 | 1,1158,2722,16,0, | ||
7199 | 180,1,107,2723,16, | ||
7200 | 0,180,1,42,2724, | ||
7201 | 19,241,1,42,2725, | ||
7202 | 5,29,1,1637,667, | ||
7203 | 1,1856,779,1,1857, | ||
7204 | 674,1,1858,680,1, | ||
7205 | 1859,685,1,1860,690, | ||
7206 | 1,1862,696,1,1864, | ||
7207 | 701,1,1866,706,1, | ||
7208 | 1868,797,1,1760,718, | ||
7209 | 1,1870,724,1,1871, | ||
7210 | 729,1,1993,2726,16, | ||
7211 | 0,239,1,32,2727, | ||
7212 | 16,0,239,1,1788, | ||
7213 | 2728,16,0,239,1, | ||
7214 | 1467,761,1,1639,2729, | ||
7215 | 16,0,239,1,1694, | ||
7216 | 771,1,1817,790,1, | ||
7217 | 1818,2730,16,0,239, | ||
7218 | 1,2037,820,1,2038, | ||
7219 | 739,1,1385,803,1, | ||
7220 | 2041,747,1,2043,711, | ||
7221 | 1,1611,2731,16,0, | ||
7222 | 239,1,1732,2732,16, | ||
7223 | 0,239,1,1847,829, | ||
7224 | 1,43,2733,19,295, | ||
7225 | 1,43,2734,5,20, | ||
7226 | 1,2043,711,1,2038, | ||
7227 | 739,1,1817,2735,16, | ||
7228 | 0,293,1,1760,718, | ||
7229 | 1,1856,779,1,1857, | ||
7230 | 674,1,1858,680,1, | ||
7231 | 1859,685,1,1860,690, | ||
7232 | 1,1862,696,1,1864, | ||
7233 | 701,1,1866,706,1, | ||
7234 | 1868,797,1,1870,724, | ||
7235 | 1,1871,729,1,1467, | ||
7236 | 761,1,1385,803,1, | ||
7237 | 1637,667,1,1694,771, | ||
7238 | 1,1847,829,1,44, | ||
7239 | 2736,19,600,1,44, | ||
7240 | 2737,5,29,1,1637, | ||
7241 | 667,1,1856,779,1, | ||
7242 | 1857,674,1,1858,680, | ||
7243 | 1,1859,685,1,1860, | ||
7244 | 690,1,1862,696,1, | ||
7245 | 1864,701,1,1866,706, | ||
7246 | 1,1868,797,1,1760, | ||
7247 | 718,1,1870,724,1, | ||
7248 | 1871,729,1,1993,2738, | ||
7249 | 16,0,598,1,32, | ||
7250 | 2739,16,0,598,1, | ||
7251 | 1788,2740,16,0,598, | ||
7252 | 1,1467,761,1,1639, | ||
7253 | 2741,16,0,598,1, | ||
7254 | 1694,771,1,1817,790, | ||
7255 | 1,1818,2742,16,0, | ||
7256 | 598,1,2037,820,1, | ||
7257 | 2038,739,1,1385,803, | ||
7258 | 1,2041,747,1,2043, | ||
7259 | 711,1,1611,2743,16, | ||
7260 | 0,598,1,1732,2744, | ||
7261 | 16,0,598,1,1847, | ||
7262 | 829,1,45,2745,19, | ||
7263 | 169,1,45,2746,5, | ||
7264 | 30,1,1637,667,1, | ||
7265 | 1856,779,1,1857,674, | ||
7266 | 1,1858,680,1,1859, | ||
7267 | 685,1,1860,690,1, | ||
7268 | 1862,696,1,1864,701, | ||
7269 | 1,1866,706,1,1868, | ||
7270 | 797,1,1760,718,1, | ||
7271 | 1870,724,1,1871,729, | ||
7272 | 1,1666,2747,16,0, | ||
7273 | 622,1,1993,2748,16, | ||
7274 | 0,167,1,32,2749, | ||
7275 | 16,0,167,1,1788, | ||
7276 | 2750,16,0,167,1, | ||
7277 | 1467,761,1,1639,2751, | ||
7278 | 16,0,167,1,1694, | ||
7279 | 771,1,1817,790,1, | ||
7280 | 1818,2752,16,0,167, | ||
7281 | 1,2037,820,1,2038, | ||
7282 | 739,1,1385,803,1, | ||
7283 | 2041,747,1,2043,711, | ||
7284 | 1,1611,2753,16,0, | ||
7285 | 167,1,1732,2754,16, | ||
7286 | 0,167,1,1847,829, | ||
7287 | 1,46,2755,19,422, | ||
7288 | 1,46,2756,5,29, | ||
7289 | 1,1637,667,1,1856, | ||
7290 | 779,1,1857,674,1, | ||
7291 | 1858,680,1,1859,685, | ||
7292 | 1,1860,690,1,1862, | ||
7293 | 696,1,1864,701,1, | ||
7294 | 1866,706,1,1868,797, | ||
7295 | 1,1760,718,1,1870, | ||
7296 | 724,1,1871,729,1, | ||
7297 | 1993,2757,16,0,420, | ||
7298 | 1,32,2758,16,0, | ||
7299 | 420,1,1788,2759,16, | ||
7300 | 0,420,1,1467,761, | ||
7301 | 1,1639,2760,16,0, | ||
7302 | 420,1,1694,771,1, | ||
7303 | 1817,790,1,1818,2761, | ||
7304 | 16,0,420,1,2037, | ||
7305 | 820,1,2038,739,1, | ||
7306 | 1385,803,1,2041,747, | ||
7307 | 1,2043,711,1,1611, | ||
7308 | 2762,16,0,420,1, | ||
7309 | 1732,2763,16,0,420, | ||
7310 | 1,1847,829,1,47, | ||
7311 | 2764,19,314,1,47, | ||
7312 | 2765,5,19,1,0, | ||
7313 | 2766,16,0,608,1, | ||
7314 | 2258,2767,17,2768,15, | ||
7315 | 2769,4,52,37,0, | ||
7316 | 71,0,108,0,111, | ||
7317 | 0,98,0,97,0, | ||
7318 | 108,0,86,0,97, | ||
7319 | 0,114,0,105,0, | ||
7320 | 97,0,98,0,108, | ||
7321 | 0,101,0,68,0, | ||
7322 | 101,0,99,0,108, | ||
7323 | 0,97,0,114,0, | ||
7324 | 97,0,116,0,105, | ||
7325 | 0,111,0,110,0, | ||
7326 | 1,-1,1,5,2770, | ||
7327 | 20,2771,4,54,71, | ||
7328 | 0,108,0,111,0, | ||
7329 | 98,0,97,0,108, | ||
7330 | 0,86,0,97,0, | ||
7331 | 114,0,105,0,97, | ||
7332 | 0,98,0,108,0, | ||
7333 | 101,0,68,0,101, | ||
7334 | 0,99,0,108,0, | ||
7335 | 97,0,114,0,97, | ||
7336 | 0,116,0,105,0, | ||
7337 | 111,0,110,0,95, | ||
7338 | 0,50,0,1,146, | ||
7339 | 1,3,1,5,1, | ||
7340 | 4,2772,22,1,8, | ||
7341 | 1,2045,2773,17,2774, | ||
7342 | 15,2775,4,50,37, | ||
7343 | 0,71,0,108,0, | ||
7344 | 111,0,98,0,97, | ||
7345 | 0,108,0,70,0, | ||
7346 | 117,0,110,0,99, | ||
7347 | 0,116,0,105,0, | ||
7348 | 111,0,110,0,68, | ||
7349 | 0,101,0,102,0, | ||
7350 | 105,0,110,0,105, | ||
7351 | 0,116,0,105,0, | ||
7352 | 111,0,110,0,1, | ||
7353 | -1,1,5,2776,20, | ||
7354 | 2777,4,52,71,0, | ||
7355 | 108,0,111,0,98, | ||
7356 | 0,97,0,108,0, | ||
7357 | 70,0,117,0,110, | ||
7358 | 0,99,0,116,0, | ||
7359 | 105,0,111,0,110, | ||
7360 | 0,68,0,101,0, | ||
7361 | 102,0,105,0,110, | ||
7362 | 0,105,0,116,0, | ||
7363 | 105,0,111,0,110, | ||
7364 | 0,95,0,50,0, | ||
7365 | 1,148,1,3,1, | ||
7366 | 7,1,6,2778,22, | ||
7367 | 1,10,1,2038,739, | ||
7368 | 1,2043,711,1,2230, | ||
7369 | 2779,17,2780,15,2775, | ||
7370 | 1,-1,1,5,2781, | ||
7371 | 20,2782,4,52,71, | ||
7372 | 0,108,0,111,0, | ||
7373 | 98,0,97,0,108, | ||
7374 | 0,70,0,117,0, | ||
7375 | 110,0,99,0,116, | ||
7376 | 0,105,0,111,0, | ||
7377 | 110,0,68,0,101, | ||
7378 | 0,102,0,105,0, | ||
7379 | 110,0,105,0,116, | ||
7380 | 0,105,0,111,0, | ||
7381 | 110,0,95,0,49, | ||
7382 | 0,1,147,1,3, | ||
7383 | 1,6,1,5,2783, | ||
7384 | 22,1,9,1,2269, | ||
7385 | 2784,17,2785,15,2769, | ||
7386 | 1,-1,1,5,2786, | ||
7387 | 20,2787,4,54,71, | ||
7388 | 0,108,0,111,0, | ||
7389 | 98,0,97,0,108, | ||
7390 | 0,86,0,97,0, | ||
7391 | 114,0,105,0,97, | ||
7392 | 0,98,0,108,0, | ||
7393 | 101,0,68,0,101, | ||
7394 | 0,99,0,108,0, | ||
7395 | 97,0,114,0,97, | ||
7396 | 0,116,0,105,0, | ||
7397 | 111,0,110,0,95, | ||
7398 | 0,49,0,1,145, | ||
7399 | 1,3,1,3,1, | ||
7400 | 2,2788,22,1,7, | ||
7401 | 1,2270,2789,16,0, | ||
7402 | 608,1,2209,658,1, | ||
7403 | 2281,2790,16,0,608, | ||
7404 | 1,2135,636,1,2211, | ||
7405 | 2791,16,0,608,1, | ||
7406 | 2214,642,1,2215,653, | ||
7407 | 1,2288,2792,17,2793, | ||
7408 | 15,2794,4,36,37, | ||
7409 | 0,71,0,108,0, | ||
7410 | 111,0,98,0,97, | ||
7411 | 0,108,0,68,0, | ||
7412 | 101,0,102,0,105, | ||
7413 | 0,110,0,105,0, | ||
7414 | 116,0,105,0,111, | ||
7415 | 0,110,0,115,0, | ||
7416 | 1,-1,1,5,2795, | ||
7417 | 20,2796,4,38,71, | ||
7418 | 0,108,0,111,0, | ||
7419 | 98,0,97,0,108, | ||
7420 | 0,68,0,101,0, | ||
7421 | 102,0,105,0,110, | ||
7422 | 0,105,0,116,0, | ||
7423 | 105,0,111,0,110, | ||
7424 | 0,115,0,95,0, | ||
7425 | 52,0,1,144,1, | ||
7426 | 3,1,3,1,2, | ||
7427 | 2797,22,1,6,1, | ||
7428 | 2289,2798,17,2799,15, | ||
7429 | 2794,1,-1,1,5, | ||
7430 | 2800,20,2801,4,38, | ||
7431 | 71,0,108,0,111, | ||
7432 | 0,98,0,97,0, | ||
7433 | 108,0,68,0,101, | ||
7434 | 0,102,0,105,0, | ||
7435 | 110,0,105,0,116, | ||
7436 | 0,105,0,111,0, | ||
7437 | 110,0,115,0,95, | ||
7438 | 0,50,0,1,142, | ||
7439 | 1,3,1,3,1, | ||
7440 | 2,2802,22,1,4, | ||
7441 | 1,2290,2803,17,2804, | ||
7442 | 15,2794,1,-1,1, | ||
7443 | 5,2805,20,2806,4, | ||
7444 | 38,71,0,108,0, | ||
7445 | 111,0,98,0,97, | ||
7446 | 0,108,0,68,0, | ||
7447 | 101,0,102,0,105, | ||
7448 | 0,110,0,105,0, | ||
7449 | 116,0,105,0,111, | ||
7450 | 0,110,0,115,0, | ||
7451 | 95,0,51,0,1, | ||
7452 | 143,1,3,1,2, | ||
7453 | 1,1,2807,22,1, | ||
7454 | 5,1,2291,2808,17, | ||
7455 | 2809,15,2794,1,-1, | ||
7456 | 1,5,2810,20,2811, | ||
7457 | 4,38,71,0,108, | ||
7458 | 0,111,0,98,0, | ||
7459 | 97,0,108,0,68, | ||
7460 | 0,101,0,102,0, | ||
7461 | 105,0,110,0,105, | ||
7462 | 0,116,0,105,0, | ||
7463 | 111,0,110,0,115, | ||
7464 | 0,95,0,49,0, | ||
7465 | 1,141,1,3,1, | ||
7466 | 2,1,1,2812,22, | ||
7467 | 1,3,1,1849,2813, | ||
7468 | 16,0,312,1,48, | ||
7469 | 2814,19,373,1,48, | ||
7470 | 2815,5,45,1,0, | ||
7471 | 2816,16,0,534,1, | ||
7472 | 2290,2803,1,2291,2808, | ||
7473 | 1,1856,779,1,1857, | ||
7474 | 674,1,1858,680,1, | ||
7475 | 1859,685,1,1860,690, | ||
7476 | 1,1862,696,1,1864, | ||
7477 | 701,1,1866,706,1, | ||
7478 | 1868,797,1,1760,718, | ||
7479 | 1,1870,724,1,1871, | ||
7480 | 729,1,2209,658,1, | ||
7481 | 1993,2817,16,0,371, | ||
7482 | 1,32,2818,16,0, | ||
7483 | 371,1,2214,642,1, | ||
7484 | 1467,761,1,2289,2798, | ||
7485 | 1,1788,2819,16,0, | ||
7486 | 371,1,2230,2779,1, | ||
7487 | 1637,667,1,1639,2820, | ||
7488 | 16,0,371,1,1694, | ||
7489 | 771,1,2135,636,1, | ||
7490 | 1817,790,1,1818,2821, | ||
7491 | 16,0,371,1,2037, | ||
7492 | 820,1,2038,739,1, | ||
7493 | 1385,803,1,2258,2767, | ||
7494 | 1,2041,747,1,2043, | ||
7495 | 711,1,2045,2773,1, | ||
7496 | 1611,2822,16,0,371, | ||
7497 | 1,2269,2784,1,2270, | ||
7498 | 2823,16,0,534,1, | ||
7499 | 1732,2824,16,0,371, | ||
7500 | 1,2281,2825,16,0, | ||
7501 | 534,1,2211,2826,16, | ||
7502 | 0,534,1,1847,829, | ||
7503 | 1,2215,653,1,2288, | ||
7504 | 2792,1,49,2827,19, | ||
7505 | 318,1,49,2828,5, | ||
7506 | 29,1,1637,667,1, | ||
7507 | 1856,779,1,1857,674, | ||
7508 | 1,1858,680,1,1859, | ||
7509 | 685,1,1860,690,1, | ||
7510 | 1862,696,1,1864,701, | ||
7511 | 1,1866,706,1,1868, | ||
7512 | 797,1,1760,718,1, | ||
7513 | 1870,724,1,1871,729, | ||
7514 | 1,1993,2829,16,0, | ||
7515 | 316,1,32,2830,16, | ||
7516 | 0,316,1,1788,2831, | ||
7517 | 16,0,316,1,1467, | ||
7518 | 761,1,1639,2832,16, | ||
7519 | 0,316,1,1694,771, | ||
7520 | 1,1817,790,1,1818, | ||
7521 | 2833,16,0,316,1, | ||
7522 | 2037,820,1,2038,739, | ||
7523 | 1,1385,803,1,2041, | ||
7524 | 747,1,2043,711,1, | ||
7525 | 1611,2834,16,0,316, | ||
7526 | 1,1732,2835,16,0, | ||
7527 | 316,1,1847,829,1, | ||
7528 | 50,2836,19,398,1, | ||
7529 | 50,2837,5,29,1, | ||
7530 | 1637,667,1,1856,779, | ||
7531 | 1,1857,674,1,1858, | ||
7532 | 680,1,1859,685,1, | ||
7533 | 1860,690,1,1862,696, | ||
7534 | 1,1864,701,1,1866, | ||
7535 | 706,1,1868,797,1, | ||
7536 | 1760,718,1,1870,724, | ||
7537 | 1,1871,729,1,1993, | ||
7538 | 2838,16,0,396,1, | ||
7539 | 32,2839,16,0,396, | ||
7540 | 1,1788,2840,16,0, | ||
7541 | 396,1,1467,761,1, | ||
7542 | 1639,2841,16,0,396, | ||
7543 | 1,1694,771,1,1817, | ||
7544 | 790,1,1818,2842,16, | ||
7545 | 0,396,1,2037,820, | ||
7546 | 1,2038,739,1,1385, | ||
7547 | 803,1,2041,747,1, | ||
7548 | 2043,711,1,1611,2843, | ||
7549 | 16,0,396,1,1732, | ||
7550 | 2844,16,0,396,1, | ||
7551 | 1847,829,1,51,2845, | ||
7552 | 19,127,1,51,2846, | ||
7553 | 5,47,1,0,2847, | ||
7554 | 16,0,125,1,2290, | ||
7555 | 2803,1,2291,2808,1, | ||
7556 | 1856,779,1,1857,674, | ||
7557 | 1,1858,680,1,1859, | ||
7558 | 685,1,1860,690,1, | ||
7559 | 1862,696,1,10,2848, | ||
7560 | 16,0,125,1,1864, | ||
7561 | 701,1,1866,706,1, | ||
7562 | 1868,797,1,1760,718, | ||
7563 | 1,1870,724,1,1871, | ||
7564 | 729,1,21,2849,16, | ||
7565 | 0,125,1,1993,2850, | ||
7566 | 16,0,125,1,32, | ||
7567 | 2851,16,0,125,1, | ||
7568 | 1467,761,1,2289,2798, | ||
7569 | 1,1788,2852,16,0, | ||
7570 | 125,1,2230,2779,1, | ||
7571 | 52,2853,16,0,125, | ||
7572 | 1,1637,667,1,1639, | ||
7573 | 2854,16,0,125,1, | ||
7574 | 1584,2855,16,0,125, | ||
7575 | 1,1694,771,1,2217, | ||
7576 | 2856,16,0,125,1, | ||
7577 | 1817,790,1,1818,2857, | ||
7578 | 16,0,125,1,2037, | ||
7579 | 820,1,2038,739,1, | ||
7580 | 1385,803,1,2258,2767, | ||
7581 | 1,2041,747,1,2084, | ||
7582 | 2858,16,0,125,1, | ||
7583 | 2043,711,1,2045,2773, | ||
7584 | 1,1611,2859,16,0, | ||
7585 | 125,1,1514,2860,16, | ||
7586 | 0,125,1,2269,2784, | ||
7587 | 1,2270,2861,16,0, | ||
7588 | 125,1,1732,2862,16, | ||
7589 | 0,125,1,1469,2863, | ||
7590 | 16,0,125,1,1847, | ||
7591 | 829,1,2288,2792,1, | ||
7592 | 52,2864,19,124,1, | ||
7593 | 52,2865,5,47,1, | ||
7594 | 0,2866,16,0,122, | ||
7595 | 1,2290,2803,1,2291, | ||
7596 | 2808,1,1856,779,1, | ||
7597 | 1857,674,1,1858,680, | ||
7598 | 1,1859,685,1,1860, | ||
7599 | 690,1,1862,696,1, | ||
7600 | 10,2867,16,0,122, | ||
7601 | 1,1864,701,1,1866, | ||
7602 | 706,1,1868,797,1, | ||
7603 | 1760,718,1,1870,724, | ||
7604 | 1,1871,729,1,21, | ||
7605 | 2868,16,0,122,1, | ||
7606 | 1993,2869,16,0,122, | ||
7607 | 1,32,2870,16,0, | ||
7608 | 122,1,1467,761,1, | ||
7609 | 2289,2798,1,1788,2871, | ||
7610 | 16,0,122,1,2230, | ||
7611 | 2779,1,52,2872,16, | ||
7612 | 0,122,1,1637,667, | ||
7613 | 1,1639,2873,16,0, | ||
7614 | 122,1,1584,2874,16, | ||
7615 | 0,122,1,1694,771, | ||
7616 | 1,2217,2875,16,0, | ||
7617 | 122,1,1817,790,1, | ||
7618 | 1818,2876,16,0,122, | ||
7619 | 1,2037,820,1,2038, | ||
7620 | 739,1,1385,803,1, | ||
7621 | 2258,2767,1,2041,747, | ||
7622 | 1,2084,2877,16,0, | ||
7623 | 122,1,2043,711,1, | ||
7624 | 2045,2773,1,1611,2878, | ||
7625 | 16,0,122,1,1514, | ||
7626 | 2879,16,0,122,1, | ||
7627 | 2269,2784,1,2270,2880, | ||
7628 | 16,0,122,1,1732, | ||
7629 | 2881,16,0,122,1, | ||
7630 | 1469,2882,16,0,122, | ||
7631 | 1,1847,829,1,2288, | ||
7632 | 2792,1,53,2883,19, | ||
7633 | 121,1,53,2884,5, | ||
7634 | 47,1,0,2885,16, | ||
7635 | 0,119,1,2290,2803, | ||
7636 | 1,2291,2808,1,1856, | ||
7637 | 779,1,1857,674,1, | ||
7638 | 1858,680,1,1859,685, | ||
7639 | 1,1860,690,1,1862, | ||
7640 | 696,1,10,2886,16, | ||
7641 | 0,119,1,1864,701, | ||
7642 | 1,1866,706,1,1868, | ||
7643 | 797,1,1760,718,1, | ||
7644 | 1870,724,1,1871,729, | ||
7645 | 1,21,2887,16,0, | ||
7646 | 119,1,1993,2888,16, | ||
7647 | 0,119,1,32,2889, | ||
7648 | 16,0,119,1,1467, | ||
7649 | 761,1,2289,2798,1, | ||
7650 | 1788,2890,16,0,119, | ||
7651 | 1,2230,2779,1,52, | ||
7652 | 2891,16,0,119,1, | ||
7653 | 1637,667,1,1639,2892, | ||
7654 | 16,0,119,1,1584, | ||
7655 | 2893,16,0,119,1, | ||
7656 | 1694,771,1,2217,2894, | ||
7657 | 16,0,119,1,1817, | ||
7658 | 790,1,1818,2895,16, | ||
7659 | 0,119,1,2037,820, | ||
7660 | 1,2038,739,1,1385, | ||
7661 | 803,1,2258,2767,1, | ||
7662 | 2041,747,1,2084,2896, | ||
7663 | 16,0,119,1,2043, | ||
7664 | 711,1,2045,2773,1, | ||
7665 | 1611,2897,16,0,119, | ||
7666 | 1,1514,2898,16,0, | ||
7667 | 119,1,2269,2784,1, | ||
7668 | 2270,2899,16,0,119, | ||
7669 | 1,1732,2900,16,0, | ||
7670 | 119,1,1469,2901,16, | ||
7671 | 0,119,1,1847,829, | ||
7672 | 1,2288,2792,1,54, | ||
7673 | 2902,19,118,1,54, | ||
7674 | 2903,5,47,1,0, | ||
7675 | 2904,16,0,116,1, | ||
7676 | 2290,2803,1,2291,2808, | ||
7677 | 1,1856,779,1,1857, | ||
7678 | 674,1,1858,680,1, | ||
7679 | 1859,685,1,1860,690, | ||
7680 | 1,1862,696,1,10, | ||
7681 | 2905,16,0,116,1, | ||
7682 | 1864,701,1,1866,706, | ||
7683 | 1,1868,797,1,1760, | ||
7684 | 718,1,1870,724,1, | ||
7685 | 1871,729,1,21,2906, | ||
7686 | 16,0,116,1,1993, | ||
7687 | 2907,16,0,116,1, | ||
7688 | 32,2908,16,0,116, | ||
7689 | 1,1467,761,1,2289, | ||
7690 | 2798,1,1788,2909,16, | ||
7691 | 0,116,1,2230,2779, | ||
7692 | 1,52,2910,16,0, | ||
7693 | 116,1,1637,667,1, | ||
7694 | 1639,2911,16,0,116, | ||
7695 | 1,1584,2912,16,0, | ||
7696 | 116,1,1694,771,1, | ||
7697 | 2217,2913,16,0,116, | ||
7698 | 1,1817,790,1,1818, | ||
7699 | 2914,16,0,116,1, | ||
7700 | 2037,820,1,2038,739, | ||
7701 | 1,1385,803,1,2258, | ||
7702 | 2767,1,2041,747,1, | ||
7703 | 2084,2915,16,0,116, | ||
7704 | 1,2043,711,1,2045, | ||
7705 | 2773,1,1611,2916,16, | ||
7706 | 0,116,1,1514,2917, | ||
7707 | 16,0,116,1,2269, | ||
7708 | 2784,1,2270,2918,16, | ||
7709 | 0,116,1,1732,2919, | ||
7710 | 16,0,116,1,1469, | ||
7711 | 2920,16,0,116,1, | ||
7712 | 1847,829,1,2288,2792, | ||
7713 | 1,55,2921,19,115, | ||
7714 | 1,55,2922,5,47, | ||
7715 | 1,0,2923,16,0, | ||
7716 | 113,1,2290,2803,1, | ||
7717 | 2291,2808,1,1856,779, | ||
7718 | 1,1857,674,1,1858, | ||
7719 | 680,1,1859,685,1, | ||
7720 | 1860,690,1,1862,696, | ||
7721 | 1,10,2924,16,0, | ||
7722 | 113,1,1864,701,1, | ||
7723 | 1866,706,1,1868,797, | ||
7724 | 1,1760,718,1,1870, | ||
7725 | 724,1,1871,729,1, | ||
7726 | 21,2925,16,0,113, | ||
7727 | 1,1993,2926,16,0, | ||
7728 | 113,1,32,2927,16, | ||
7729 | 0,113,1,1467,761, | ||
7730 | 1,2289,2798,1,1788, | ||
7731 | 2928,16,0,113,1, | ||
7732 | 2230,2779,1,52,2929, | ||
7733 | 16,0,113,1,1637, | ||
7734 | 667,1,1639,2930,16, | ||
7735 | 0,113,1,1584,2931, | ||
7736 | 16,0,113,1,1694, | ||
7737 | 771,1,2217,2932,16, | ||
7738 | 0,113,1,1817,790, | ||
7739 | 1,1818,2933,16,0, | ||
7740 | 113,1,2037,820,1, | ||
7741 | 2038,739,1,1385,803, | ||
7742 | 1,2258,2767,1,2041, | ||
7743 | 747,1,2084,2934,16, | ||
7744 | 0,113,1,2043,711, | ||
7745 | 1,2045,2773,1,1611, | ||
7746 | 2935,16,0,113,1, | ||
7747 | 1514,2936,16,0,113, | ||
7748 | 1,2269,2784,1,2270, | ||
7749 | 2937,16,0,113,1, | ||
7750 | 1732,2938,16,0,113, | ||
7751 | 1,1469,2939,16,0, | ||
7752 | 113,1,1847,829,1, | ||
7753 | 2288,2792,1,56,2940, | ||
7754 | 19,112,1,56,2941, | ||
7755 | 5,47,1,0,2942, | ||
7756 | 16,0,110,1,2290, | ||
7757 | 2803,1,2291,2808,1, | ||
7758 | 1856,779,1,1857,674, | ||
7759 | 1,1858,680,1,1859, | ||
7760 | 685,1,1860,690,1, | ||
7761 | 1862,696,1,10,2943, | ||
7762 | 16,0,110,1,1864, | ||
7763 | 701,1,1866,706,1, | ||
7764 | 1868,797,1,1760,718, | ||
7765 | 1,1870,724,1,1871, | ||
7766 | 729,1,21,2944,16, | ||
7767 | 0,110,1,1993,2945, | ||
7768 | 16,0,110,1,32, | ||
7769 | 2946,16,0,110,1, | ||
7770 | 1467,761,1,2289,2798, | ||
7771 | 1,1788,2947,16,0, | ||
7772 | 110,1,2230,2779,1, | ||
7773 | 52,2948,16,0,110, | ||
7774 | 1,1637,667,1,1639, | ||
7775 | 2949,16,0,110,1, | ||
7776 | 1584,2950,16,0,110, | ||
7777 | 1,1694,771,1,2217, | ||
7778 | 2951,16,0,110,1, | ||
7779 | 1817,790,1,1818,2952, | ||
7780 | 16,0,110,1,2037, | ||
7781 | 820,1,2038,739,1, | ||
7782 | 1385,803,1,2258,2767, | ||
7783 | 1,2041,747,1,2084, | ||
7784 | 2953,16,0,110,1, | ||
7785 | 2043,711,1,2045,2773, | ||
7786 | 1,1611,2954,16,0, | ||
7787 | 110,1,1514,2955,16, | ||
7788 | 0,110,1,2269,2784, | ||
7789 | 1,2270,2956,16,0, | ||
7790 | 110,1,1732,2957,16, | ||
7791 | 0,110,1,1469,2958, | ||
7792 | 16,0,110,1,1847, | ||
7793 | 829,1,2288,2792,1, | ||
7794 | 57,2959,19,109,1, | ||
7795 | 57,2960,5,47,1, | ||
7796 | 0,2961,16,0,107, | ||
7797 | 1,2290,2803,1,2291, | ||
7798 | 2808,1,1856,779,1, | ||
7799 | 1857,674,1,1858,680, | ||
7800 | 1,1859,685,1,1860, | ||
7801 | 690,1,1862,696,1, | ||
7802 | 10,2962,16,0,107, | ||
7803 | 1,1864,701,1,1866, | ||
7804 | 706,1,1868,797,1, | ||
7805 | 1760,718,1,1870,724, | ||
7806 | 1,1871,729,1,21, | ||
7807 | 2963,16,0,107,1, | ||
7808 | 1993,2964,16,0,107, | ||
7809 | 1,32,2965,16,0, | ||
7810 | 107,1,1467,761,1, | ||
7811 | 2289,2798,1,1788,2966, | ||
7812 | 16,0,107,1,2230, | ||
7813 | 2779,1,52,2967,16, | ||
7814 | 0,107,1,1637,667, | ||
7815 | 1,1639,2968,16,0, | ||
7816 | 107,1,1584,2969,16, | ||
7817 | 0,107,1,1694,771, | ||
7818 | 1,2217,2970,16,0, | ||
7819 | 107,1,1817,790,1, | ||
7820 | 1818,2971,16,0,107, | ||
7821 | 1,2037,820,1,2038, | ||
7822 | 739,1,1385,803,1, | ||
7823 | 2258,2767,1,2041,747, | ||
7824 | 1,2084,2972,16,0, | ||
7825 | 107,1,2043,711,1, | ||
7826 | 2045,2773,1,1611,2973, | ||
7827 | 16,0,107,1,1514, | ||
7828 | 2974,16,0,107,1, | ||
7829 | 2269,2784,1,2270,2975, | ||
7830 | 16,0,107,1,1732, | ||
7831 | 2976,16,0,107,1, | ||
7832 | 1469,2977,16,0,107, | ||
7833 | 1,1847,829,1,2288, | ||
7834 | 2792,1,58,2978,19, | ||
7835 | 619,1,58,2979,5, | ||
7836 | 9,1,2038,739,1, | ||
7837 | 2043,711,1,2049,2980, | ||
7838 | 16,0,617,1,2097, | ||
7839 | 1391,1,2099,2981,16, | ||
7840 | 0,617,1,2136,1406, | ||
7841 | 1,2134,1400,1,2173, | ||
7842 | 2982,16,0,617,1, | ||
7843 | 2138,2983,16,0,617, | ||
7844 | 1,59,2984,19,521, | ||
7845 | 1,59,2985,5,9, | ||
7846 | 1,2038,739,1,2043, | ||
7847 | 711,1,2049,2986,16, | ||
7848 | 0,519,1,2097,1391, | ||
7849 | 1,2099,2987,16,0, | ||
7850 | 519,1,2136,1406,1, | ||
7851 | 2134,1400,1,2173,2988, | ||
7852 | 16,0,519,1,2138, | ||
7853 | 2989,16,0,519,1, | ||
7854 | 60,2990,19,518,1, | ||
7855 | 60,2991,5,9,1, | ||
7856 | 2038,739,1,2043,711, | ||
7857 | 1,2049,2992,16,0, | ||
7858 | 516,1,2097,1391,1, | ||
7859 | 2099,2993,16,0,516, | ||
7860 | 1,2136,1406,1,2134, | ||
7861 | 1400,1,2173,2994,16, | ||
7862 | 0,516,1,2138,2995, | ||
7863 | 16,0,516,1,61, | ||
7864 | 2996,19,515,1,61, | ||
7865 | 2997,5,9,1,2038, | ||
7866 | 739,1,2043,711,1, | ||
7867 | 2049,2998,16,0,513, | ||
7868 | 1,2097,1391,1,2099, | ||
7869 | 2999,16,0,513,1, | ||
7870 | 2136,1406,1,2134,1400, | ||
7871 | 1,2173,3000,16,0, | ||
7872 | 513,1,2138,3001,16, | ||
7873 | 0,513,1,62,3002, | ||
7874 | 19,512,1,62,3003, | ||
7875 | 5,9,1,2038,739, | ||
7876 | 1,2043,711,1,2049, | ||
7877 | 3004,16,0,510,1, | ||
7878 | 2097,1391,1,2099,3005, | ||
7879 | 16,0,510,1,2136, | ||
7880 | 1406,1,2134,1400,1, | ||
7881 | 2173,3006,16,0,510, | ||
7882 | 1,2138,3007,16,0, | ||
7883 | 510,1,63,3008,19, | ||
7884 | 509,1,63,3009,5, | ||
7885 | 9,1,2038,739,1, | ||
7886 | 2043,711,1,2049,3010, | ||
7887 | 16,0,507,1,2097, | ||
7888 | 1391,1,2099,3011,16, | ||
7889 | 0,507,1,2136,1406, | ||
7890 | 1,2134,1400,1,2173, | ||
7891 | 3012,16,0,507,1, | ||
7892 | 2138,3013,16,0,507, | ||
7893 | 1,64,3014,19,506, | ||
7894 | 1,64,3015,5,9, | ||
7895 | 1,2038,739,1,2043, | ||
7896 | 711,1,2049,3016,16, | ||
7897 | 0,504,1,2097,1391, | ||
7898 | 1,2099,3017,16,0, | ||
7899 | 504,1,2136,1406,1, | ||
7900 | 2134,1400,1,2173,3018, | ||
7901 | 16,0,504,1,2138, | ||
7902 | 3019,16,0,504,1, | ||
7903 | 65,3020,19,503,1, | ||
7904 | 65,3021,5,9,1, | ||
7905 | 2038,739,1,2043,711, | ||
7906 | 1,2049,3022,16,0, | ||
7907 | 501,1,2097,1391,1, | ||
7908 | 2099,3023,16,0,501, | ||
7909 | 1,2136,1406,1,2134, | ||
7910 | 1400,1,2173,3024,16, | ||
7911 | 0,501,1,2138,3025, | ||
7912 | 16,0,501,1,66, | ||
7913 | 3026,19,258,1,66, | ||
7914 | 3027,5,9,1,2038, | ||
7915 | 739,1,2043,711,1, | ||
7916 | 2049,3028,16,0,256, | ||
7917 | 1,2097,1391,1,2099, | ||
7918 | 3029,16,0,256,1, | ||
7919 | 2136,1406,1,2134,1400, | ||
7920 | 1,2173,3030,16,0, | ||
7921 | 256,1,2138,3031,16, | ||
7922 | 0,256,1,67,3032, | ||
7923 | 19,499,1,67,3033, | ||
7924 | 5,9,1,2038,739, | ||
7925 | 1,2043,711,1,2049, | ||
7926 | 3034,16,0,497,1, | ||
7927 | 2097,1391,1,2099,3035, | ||
7928 | 16,0,497,1,2136, | ||
7929 | 1406,1,2134,1400,1, | ||
7930 | 2173,3036,16,0,497, | ||
7931 | 1,2138,3037,16,0, | ||
7932 | 497,1,68,3038,19, | ||
7933 | 496,1,68,3039,5, | ||
7934 | 9,1,2038,739,1, | ||
7935 | 2043,711,1,2049,3040, | ||
7936 | 16,0,494,1,2097, | ||
7937 | 1391,1,2099,3041,16, | ||
7938 | 0,494,1,2136,1406, | ||
7939 | 1,2134,1400,1,2173, | ||
7940 | 3042,16,0,494,1, | ||
7941 | 2138,3043,16,0,494, | ||
7942 | 1,69,3044,19,561, | ||
7943 | 1,69,3045,5,9, | ||
7944 | 1,2038,739,1,2043, | ||
7945 | 711,1,2049,3046,16, | ||
7946 | 0,559,1,2097,1391, | ||
7947 | 1,2099,3047,16,0, | ||
7948 | 559,1,2136,1406,1, | ||
7949 | 2134,1400,1,2173,3048, | ||
7950 | 16,0,559,1,2138, | ||
7951 | 3049,16,0,559,1, | ||
7952 | 70,3050,19,558,1, | ||
7953 | 70,3051,5,9,1, | ||
7954 | 2038,739,1,2043,711, | ||
7955 | 1,2049,3052,16,0, | ||
7956 | 556,1,2097,1391,1, | ||
7957 | 2099,3053,16,0,556, | ||
7958 | 1,2136,1406,1,2134, | ||
7959 | 1400,1,2173,3054,16, | ||
7960 | 0,556,1,2138,3055, | ||
7961 | 16,0,556,1,71, | ||
7962 | 3056,19,489,1,71, | ||
7963 | 3057,5,9,1,2038, | ||
7964 | 739,1,2043,711,1, | ||
7965 | 2049,3058,16,0,487, | ||
7966 | 1,2097,1391,1,2099, | ||
7967 | 3059,16,0,487,1, | ||
7968 | 2136,1406,1,2134,1400, | ||
7969 | 1,2173,3060,16,0, | ||
7970 | 487,1,2138,3061,16, | ||
7971 | 0,487,1,72,3062, | ||
7972 | 19,603,1,72,3063, | ||
7973 | 5,9,1,2038,739, | ||
7974 | 1,2043,711,1,2049, | ||
7975 | 3064,16,0,601,1, | ||
7976 | 2097,1391,1,2099,3065, | ||
7977 | 16,0,601,1,2136, | ||
7978 | 1406,1,2134,1400,1, | ||
7979 | 2173,3066,16,0,601, | ||
7980 | 1,2138,3067,16,0, | ||
7981 | 601,1,73,3068,19, | ||
7982 | 485,1,73,3069,5, | ||
7983 | 9,1,2038,739,1, | ||
7984 | 2043,711,1,2049,3070, | ||
7985 | 16,0,483,1,2097, | ||
7986 | 1391,1,2099,3071,16, | ||
7987 | 0,483,1,2136,1406, | ||
7988 | 1,2134,1400,1,2173, | ||
7989 | 3072,16,0,483,1, | ||
7990 | 2138,3073,16,0,483, | ||
7991 | 1,74,3074,19,482, | ||
7992 | 1,74,3075,5,9, | ||
7993 | 1,2038,739,1,2043, | ||
7994 | 711,1,2049,3076,16, | ||
7995 | 0,480,1,2097,1391, | ||
7996 | 1,2099,3077,16,0, | ||
7997 | 480,1,2136,1406,1, | ||
7998 | 2134,1400,1,2173,3078, | ||
7999 | 16,0,480,1,2138, | ||
8000 | 3079,16,0,480,1, | ||
8001 | 75,3080,19,479,1, | ||
8002 | 75,3081,5,9,1, | ||
8003 | 2038,739,1,2043,711, | ||
8004 | 1,2049,3082,16,0, | ||
8005 | 477,1,2097,1391,1, | ||
8006 | 2099,3083,16,0,477, | ||
8007 | 1,2136,1406,1,2134, | ||
8008 | 1400,1,2173,3084,16, | ||
8009 | 0,477,1,2138,3085, | ||
8010 | 16,0,477,1,76, | ||
8011 | 3086,19,476,1,76, | ||
8012 | 3087,5,9,1,2038, | ||
8013 | 739,1,2043,711,1, | ||
8014 | 2049,3088,16,0,474, | ||
8015 | 1,2097,1391,1,2099, | ||
8016 | 3089,16,0,474,1, | ||
8017 | 2136,1406,1,2134,1400, | ||
8018 | 1,2173,3090,16,0, | ||
8019 | 474,1,2138,3091,16, | ||
8020 | 0,474,1,77,3092, | ||
8021 | 19,473,1,77,3093, | ||
8022 | 5,9,1,2038,739, | ||
8023 | 1,2043,711,1,2049, | ||
8024 | 3094,16,0,471,1, | ||
8025 | 2097,1391,1,2099,3095, | ||
8026 | 16,0,471,1,2136, | ||
8027 | 1406,1,2134,1400,1, | ||
8028 | 2173,3096,16,0,471, | ||
8029 | 1,2138,3097,16,0, | ||
8030 | 471,1,78,3098,19, | ||
8031 | 470,1,78,3099,5, | ||
8032 | 9,1,2038,739,1, | ||
8033 | 2043,711,1,2049,3100, | ||
8034 | 16,0,468,1,2097, | ||
8035 | 1391,1,2099,3101,16, | ||
8036 | 0,468,1,2136,1406, | ||
8037 | 1,2134,1400,1,2173, | ||
8038 | 3102,16,0,468,1, | ||
8039 | 2138,3103,16,0,468, | ||
8040 | 1,79,3104,19,467, | ||
8041 | 1,79,3105,5,9, | ||
8042 | 1,2038,739,1,2043, | ||
8043 | 711,1,2049,3106,16, | ||
8044 | 0,465,1,2097,1391, | ||
8045 | 1,2099,3107,16,0, | ||
8046 | 465,1,2136,1406,1, | ||
8047 | 2134,1400,1,2173,3108, | ||
8048 | 16,0,465,1,2138, | ||
8049 | 3109,16,0,465,1, | ||
8050 | 80,3110,19,464,1, | ||
8051 | 80,3111,5,9,1, | ||
8052 | 2038,739,1,2043,711, | ||
8053 | 1,2049,3112,16,0, | ||
8054 | 462,1,2097,1391,1, | ||
8055 | 2099,3113,16,0,462, | ||
8056 | 1,2136,1406,1,2134, | ||
8057 | 1400,1,2173,3114,16, | ||
8058 | 0,462,1,2138,3115, | ||
8059 | 16,0,462,1,81, | ||
8060 | 3116,19,461,1,81, | ||
8061 | 3117,5,9,1,2038, | ||
8062 | 739,1,2043,711,1, | ||
8063 | 2049,3118,16,0,459, | ||
8064 | 1,2097,1391,1,2099, | ||
8065 | 3119,16,0,459,1, | ||
8066 | 2136,1406,1,2134,1400, | ||
8067 | 1,2173,3120,16,0, | ||
8068 | 459,1,2138,3121,16, | ||
8069 | 0,459,1,82,3122, | ||
8070 | 19,458,1,82,3123, | ||
8071 | 5,9,1,2038,739, | ||
8072 | 1,2043,711,1,2049, | ||
8073 | 3124,16,0,456,1, | ||
8074 | 2097,1391,1,2099,3125, | ||
8075 | 16,0,456,1,2136, | ||
8076 | 1406,1,2134,1400,1, | ||
8077 | 2173,3126,16,0,456, | ||
8078 | 1,2138,3127,16,0, | ||
8079 | 456,1,83,3128,19, | ||
8080 | 551,1,83,3129,5, | ||
8081 | 9,1,2038,739,1, | ||
8082 | 2043,711,1,2049,3130, | ||
8083 | 16,0,549,1,2097, | ||
8084 | 1391,1,2099,3131,16, | ||
8085 | 0,549,1,2136,1406, | ||
8086 | 1,2134,1400,1,2173, | ||
8087 | 3132,16,0,549,1, | ||
8088 | 2138,3133,16,0,549, | ||
8089 | 1,84,3134,19,596, | ||
8090 | 1,84,3135,5,9, | ||
8091 | 1,2038,739,1,2043, | ||
8092 | 711,1,2049,3136,16, | ||
8093 | 0,594,1,2097,1391, | ||
8094 | 1,2099,3137,16,0, | ||
8095 | 594,1,2136,1406,1, | ||
8096 | 2134,1400,1,2173,3138, | ||
8097 | 16,0,594,1,2138, | ||
8098 | 3139,16,0,594,1, | ||
8099 | 85,3140,19,593,1, | ||
8100 | 85,3141,5,9,1, | ||
8101 | 2038,739,1,2043,711, | ||
8102 | 1,2049,3142,16,0, | ||
8103 | 591,1,2097,1391,1, | ||
8104 | 2099,3143,16,0,591, | ||
8105 | 1,2136,1406,1,2134, | ||
8106 | 1400,1,2173,3144,16, | ||
8107 | 0,591,1,2138,3145, | ||
8108 | 16,0,591,1,86, | ||
8109 | 3146,19,544,1,86, | ||
8110 | 3147,5,9,1,2038, | ||
8111 | 739,1,2043,711,1, | ||
8112 | 2049,3148,16,0,542, | ||
8113 | 1,2097,1391,1,2099, | ||
8114 | 3149,16,0,542,1, | ||
8115 | 2136,1406,1,2134,1400, | ||
8116 | 1,2173,3150,16,0, | ||
8117 | 542,1,2138,3151,16, | ||
8118 | 0,542,1,87,3152, | ||
8119 | 19,449,1,87,3153, | ||
8120 | 5,9,1,2038,739, | ||
8121 | 1,2043,711,1,2049, | ||
8122 | 3154,16,0,447,1, | ||
8123 | 2097,1391,1,2099,3155, | ||
8124 | 16,0,447,1,2136, | ||
8125 | 1406,1,2134,1400,1, | ||
8126 | 2173,3156,16,0,447, | ||
8127 | 1,2138,3157,16,0, | ||
8128 | 447,1,88,3158,19, | ||
8129 | 590,1,88,3159,5, | ||
8130 | 9,1,2038,739,1, | ||
8131 | 2043,711,1,2049,3160, | ||
8132 | 16,0,588,1,2097, | ||
8133 | 1391,1,2099,3161,16, | ||
8134 | 0,588,1,2136,1406, | ||
8135 | 1,2134,1400,1,2173, | ||
8136 | 3162,16,0,588,1, | ||
8137 | 2138,3163,16,0,588, | ||
8138 | 1,89,3164,19,235, | ||
8139 | 1,89,3165,5,9, | ||
8140 | 1,2038,739,1,2043, | ||
8141 | 711,1,2049,3166,16, | ||
8142 | 0,233,1,2097,1391, | ||
8143 | 1,2099,3167,16,0, | ||
8144 | 233,1,2136,1406,1, | ||
8145 | 2134,1400,1,2173,3168, | ||
8146 | 16,0,233,1,2138, | ||
8147 | 3169,16,0,233,1, | ||
8148 | 90,3170,19,540,1, | ||
8149 | 90,3171,5,9,1, | ||
8150 | 2038,739,1,2043,711, | ||
8151 | 1,2049,3172,16,0, | ||
8152 | 538,1,2097,1391,1, | ||
8153 | 2099,3173,16,0,538, | ||
8154 | 1,2136,1406,1,2134, | ||
8155 | 1400,1,2173,3174,16, | ||
8156 | 0,538,1,2138,3175, | ||
8157 | 16,0,538,1,91, | ||
8158 | 3176,19,133,1,91, | ||
8159 | 3177,5,109,1,0, | ||
8160 | 3178,16,0,201,1, | ||
8161 | 1,1708,1,2,1714, | ||
8162 | 1,3,1719,1,4, | ||
8163 | 1724,1,5,1729,1, | ||
8164 | 6,1734,1,7,1739, | ||
8165 | 1,8,3179,16,0, | ||
8166 | 131,1,2269,2784,1, | ||
8167 | 2270,3180,16,0,201, | ||
8168 | 1,256,3181,16,0, | ||
8169 | 183,1,18,3182,16, | ||
8170 | 0,147,1,504,3183, | ||
8171 | 16,0,183,1,277, | ||
8172 | 3184,16,0,183,1, | ||
8173 | 2288,2792,1,2289,2798, | ||
8174 | 1,2290,2803,1,32, | ||
8175 | 3185,16,0,177,1, | ||
8176 | 2041,747,1,2043,711, | ||
8177 | 1,1292,3186,16,0, | ||
8178 | 183,1,2047,3187,16, | ||
8179 | 0,585,1,41,3188, | ||
8180 | 16,0,183,1,43, | ||
8181 | 3189,16,0,183,1, | ||
8182 | 46,3190,16,0,187, | ||
8183 | 1,299,3191,16,0, | ||
8184 | 183,1,1993,3192,16, | ||
8185 | 0,177,1,52,3193, | ||
8186 | 16,0,183,1,1559, | ||
8187 | 3194,16,0,183,1, | ||
8188 | 1514,3195,16,0,177, | ||
8189 | 1,1760,718,1,1818, | ||
8190 | 3196,16,0,177,1, | ||
8191 | 62,3197,16,0,207, | ||
8192 | 1,1763,3198,16,0, | ||
8193 | 183,1,65,3199,16, | ||
8194 | 0,209,1,71,3200, | ||
8195 | 16,0,183,1,1327, | ||
8196 | 3201,16,0,183,1, | ||
8197 | 76,3202,16,0,183, | ||
8198 | 1,1584,3203,16,0, | ||
8199 | 177,1,79,3204,16, | ||
8200 | 0,183,1,322,3205, | ||
8201 | 16,0,183,1,1257, | ||
8202 | 3206,16,0,183,1, | ||
8203 | 85,3207,16,0,183, | ||
8204 | 1,1788,3208,16,0, | ||
8205 | 177,1,89,3209,16, | ||
8206 | 0,183,1,1847,829, | ||
8207 | 1,1849,3210,16,0, | ||
8208 | 315,1,2037,820,1, | ||
8209 | 1852,3211,16,0,319, | ||
8210 | 1,1854,3212,16,0, | ||
8211 | 323,1,1856,779,1, | ||
8212 | 1857,674,1,1858,680, | ||
8213 | 1,1859,685,1,1860, | ||
8214 | 690,1,1862,696,1, | ||
8215 | 1864,701,1,1866,706, | ||
8216 | 1,1115,3213,16,0, | ||
8217 | 183,1,112,3214,16, | ||
8218 | 0,183,1,1870,724, | ||
8219 | 1,1871,729,1,97, | ||
8220 | 3215,16,0,183,1, | ||
8221 | 1817,790,1,346,3216, | ||
8222 | 16,0,183,1,372, | ||
8223 | 3217,16,0,434,1, | ||
8224 | 102,3218,16,0,183, | ||
8225 | 1,374,3219,16,0, | ||
8226 | 436,1,124,3220,16, | ||
8227 | 0,183,1,376,3221, | ||
8228 | 16,0,438,1,378, | ||
8229 | 3222,16,0,440,1, | ||
8230 | 1385,803,1,1637,667, | ||
8231 | 1,384,3223,16,0, | ||
8232 | 183,1,137,3224,16, | ||
8233 | 0,183,1,1396,3225, | ||
8234 | 16,0,183,1,381, | ||
8235 | 3226,16,0,183,1, | ||
8236 | 397,3227,16,0,183, | ||
8237 | 1,1152,3228,16,0, | ||
8238 | 183,1,151,3229,16, | ||
8239 | 0,183,1,1611,3230, | ||
8240 | 16,0,177,1,2038, | ||
8241 | 739,1,1668,3231,16, | ||
8242 | 0,183,1,166,3232, | ||
8243 | 16,0,183,1,2045, | ||
8244 | 2773,1,1868,797,1, | ||
8245 | 1432,3233,16,0,183, | ||
8246 | 1,2291,2808,1,1111, | ||
8247 | 3234,16,0,624,1, | ||
8248 | 182,3235,16,0,183, | ||
8249 | 1,1187,3236,16,0, | ||
8250 | 183,1,422,3237,16, | ||
8251 | 0,183,1,1694,771, | ||
8252 | 1,447,3238,16,0, | ||
8253 | 183,1,199,3239,16, | ||
8254 | 0,183,1,1707,3240, | ||
8255 | 16,0,183,1,1467, | ||
8256 | 761,1,1469,3241,16, | ||
8257 | 0,177,1,217,3242, | ||
8258 | 16,0,183,1,1222, | ||
8259 | 3243,16,0,183,1, | ||
8260 | 2230,2779,1,2233,3244, | ||
8261 | 16,0,183,1,1732, | ||
8262 | 3245,16,0,177,1, | ||
8263 | 463,3246,16,0,183, | ||
8264 | 1,236,3247,16,0, | ||
8265 | 183,1,488,3248,16, | ||
8266 | 0,183,1,1639,3249, | ||
8267 | 16,0,177,1,2258, | ||
8268 | 2767,1,92,3250,19, | ||
8269 | 576,1,92,3251,5, | ||
8270 | 79,1,1584,3252,16, | ||
8271 | 0,574,1,1639,3253, | ||
8272 | 16,0,574,1,1637, | ||
8273 | 667,1,112,3254,16, | ||
8274 | 0,574,1,1857,674, | ||
8275 | 1,1858,680,1,1859, | ||
8276 | 685,1,1860,690,1, | ||
8277 | 1611,3255,16,0,574, | ||
8278 | 1,1862,696,1,1864, | ||
8279 | 701,1,1866,706,1, | ||
8280 | 2043,711,1,124,3256, | ||
8281 | 16,0,574,1,1760, | ||
8282 | 718,1,1870,724,1, | ||
8283 | 1871,729,1,1763,3257, | ||
8284 | 16,0,574,1,1222, | ||
8285 | 3258,16,0,574,1, | ||
8286 | 1993,3259,16,0,574, | ||
8287 | 1,1115,3260,16,0, | ||
8288 | 574,1,447,3261,16, | ||
8289 | 0,574,1,1187,3262, | ||
8290 | 16,0,574,1,137, | ||
8291 | 3263,16,0,574,1, | ||
8292 | 2038,739,1,346,3264, | ||
8293 | 16,0,574,1,32, | ||
8294 | 3265,16,0,574,1, | ||
8295 | 1668,3266,16,0,574, | ||
8296 | 1,2041,747,1,236, | ||
8297 | 3267,16,0,574,1, | ||
8298 | 1514,3268,16,0,574, | ||
8299 | 1,256,3269,16,0, | ||
8300 | 574,1,41,3270,16, | ||
8301 | 0,574,1,151,3271, | ||
8302 | 16,0,574,1,43, | ||
8303 | 3272,16,0,574,1, | ||
8304 | 1732,3273,16,0,574, | ||
8305 | 1,384,3274,16,0, | ||
8306 | 574,1,1467,761,1, | ||
8307 | 52,3275,16,0,574, | ||
8308 | 1,2233,3276,16,0, | ||
8309 | 574,1,381,3277,16, | ||
8310 | 0,574,1,166,3278, | ||
8311 | 16,0,574,1,1257, | ||
8312 | 3279,16,0,574,1, | ||
8313 | 1694,771,1,1432,3280, | ||
8314 | 16,0,574,1,1152, | ||
8315 | 3281,16,0,574,1, | ||
8316 | 1856,779,1,62,3282, | ||
8317 | 16,0,574,1,504, | ||
8318 | 3283,16,0,574,1, | ||
8319 | 277,3284,16,0,574, | ||
8320 | 1,397,3285,16,0, | ||
8321 | 574,1,71,3286,16, | ||
8322 | 0,574,1,1707,3287, | ||
8323 | 16,0,574,1,1817, | ||
8324 | 790,1,1818,3288,16, | ||
8325 | 0,574,1,1868,797, | ||
8326 | 1,76,3289,16,0, | ||
8327 | 574,1,1385,803,1, | ||
8328 | 79,3290,16,0,574, | ||
8329 | 1,182,3291,16,0, | ||
8330 | 574,1,299,3292,16, | ||
8331 | 0,574,1,1559,3293, | ||
8332 | 16,0,574,1,85, | ||
8333 | 3294,16,0,574,1, | ||
8334 | 488,3295,16,0,574, | ||
8335 | 1,1396,3296,16,0, | ||
8336 | 574,1,89,3297,16, | ||
8337 | 0,574,1,199,3298, | ||
8338 | 16,0,574,1,463, | ||
8339 | 3299,16,0,574,1, | ||
8340 | 1292,3300,16,0,574, | ||
8341 | 1,422,3301,16,0, | ||
8342 | 574,1,2037,820,1, | ||
8343 | 97,3302,16,0,574, | ||
8344 | 1,1469,3303,16,0, | ||
8345 | 574,1,1788,3304,16, | ||
8346 | 0,574,1,102,3305, | ||
8347 | 16,0,574,1,1847, | ||
8348 | 829,1,322,3306,16, | ||
8349 | 0,574,1,1327,3307, | ||
8350 | 16,0,574,1,217, | ||
8351 | 3308,16,0,574,1, | ||
8352 | 93,3309,19,573,1, | ||
8353 | 93,3310,5,79,1, | ||
8354 | 1584,3311,16,0,571, | ||
8355 | 1,1639,3312,16,0, | ||
8356 | 571,1,1637,667,1, | ||
8357 | 112,3313,16,0,571, | ||
8358 | 1,1857,674,1,1858, | ||
8359 | 680,1,1859,685,1, | ||
8360 | 1860,690,1,1611,3314, | ||
8361 | 16,0,571,1,1862, | ||
8362 | 696,1,1864,701,1, | ||
8363 | 1866,706,1,2043,711, | ||
8364 | 1,124,3315,16,0, | ||
8365 | 571,1,1760,718,1, | ||
8366 | 1870,724,1,1871,729, | ||
8367 | 1,1763,3316,16,0, | ||
8368 | 571,1,1222,3317,16, | ||
8369 | 0,571,1,1993,3318, | ||
8370 | 16,0,571,1,1115, | ||
8371 | 3319,16,0,571,1, | ||
8372 | 447,3320,16,0,571, | ||
8373 | 1,1187,3321,16,0, | ||
8374 | 571,1,137,3322,16, | ||
8375 | 0,571,1,2038,739, | ||
8376 | 1,346,3323,16,0, | ||
8377 | 571,1,32,3324,16, | ||
8378 | 0,571,1,1668,3325, | ||
8379 | 16,0,571,1,2041, | ||
8380 | 747,1,236,3326,16, | ||
8381 | 0,571,1,1514,3327, | ||
8382 | 16,0,571,1,256, | ||
8383 | 3328,16,0,571,1, | ||
8384 | 41,3329,16,0,571, | ||
8385 | 1,151,3330,16,0, | ||
8386 | 571,1,43,3331,16, | ||
8387 | 0,571,1,1732,3332, | ||
8388 | 16,0,571,1,384, | ||
8389 | 3333,16,0,571,1, | ||
8390 | 1467,761,1,52,3334, | ||
8391 | 16,0,571,1,2233, | ||
8392 | 3335,16,0,571,1, | ||
8393 | 381,3336,16,0,571, | ||
8394 | 1,166,3337,16,0, | ||
8395 | 571,1,1257,3338,16, | ||
8396 | 0,571,1,1694,771, | ||
8397 | 1,1432,3339,16,0, | ||
8398 | 571,1,1152,3340,16, | ||
8399 | 0,571,1,1856,779, | ||
8400 | 1,62,3341,16,0, | ||
8401 | 571,1,504,3342,16, | ||
8402 | 0,571,1,277,3343, | ||
8403 | 16,0,571,1,397, | ||
8404 | 3344,16,0,571,1, | ||
8405 | 71,3345,16,0,571, | ||
8406 | 1,1707,3346,16,0, | ||
8407 | 571,1,1817,790,1, | ||
8408 | 1818,3347,16,0,571, | ||
8409 | 1,1868,797,1,76, | ||
8410 | 3348,16,0,571,1, | ||
8411 | 1385,803,1,79,3349, | ||
8412 | 16,0,571,1,182, | ||
8413 | 3350,16,0,571,1, | ||
8414 | 299,3351,16,0,571, | ||
8415 | 1,1559,3352,16,0, | ||
8416 | 571,1,85,3353,16, | ||
8417 | 0,571,1,488,3354, | ||
8418 | 16,0,571,1,1396, | ||
8419 | 3355,16,0,571,1, | ||
8420 | 89,3356,16,0,571, | ||
8421 | 1,199,3357,16,0, | ||
8422 | 571,1,463,3358,16, | ||
8423 | 0,571,1,1292,3359, | ||
8424 | 16,0,571,1,422, | ||
8425 | 3360,16,0,571,1, | ||
8426 | 2037,820,1,97,3361, | ||
8427 | 16,0,571,1,1469, | ||
8428 | 3362,16,0,571,1, | ||
8429 | 1788,3363,16,0,571, | ||
8430 | 1,102,3364,16,0, | ||
8431 | 571,1,1847,829,1, | ||
8432 | 322,3365,16,0,571, | ||
8433 | 1,1327,3366,16,0, | ||
8434 | 571,1,217,3367,16, | ||
8435 | 0,571,1,94,3368, | ||
8436 | 19,570,1,94,3369, | ||
8437 | 5,79,1,1584,3370, | ||
8438 | 16,0,568,1,1639, | ||
8439 | 3371,16,0,568,1, | ||
8440 | 1637,667,1,112,3372, | ||
8441 | 16,0,568,1,1857, | ||
8442 | 674,1,1858,680,1, | ||
8443 | 1859,685,1,1860,690, | ||
8444 | 1,1611,3373,16,0, | ||
8445 | 568,1,1862,696,1, | ||
8446 | 1864,701,1,1866,706, | ||
8447 | 1,2043,711,1,124, | ||
8448 | 3374,16,0,568,1, | ||
8449 | 1760,718,1,1870,724, | ||
8450 | 1,1871,729,1,1763, | ||
8451 | 3375,16,0,568,1, | ||
8452 | 1222,3376,16,0,568, | ||
8453 | 1,1993,3377,16,0, | ||
8454 | 568,1,1115,3378,16, | ||
8455 | 0,568,1,447,3379, | ||
8456 | 16,0,568,1,1187, | ||
8457 | 3380,16,0,568,1, | ||
8458 | 137,3381,16,0,568, | ||
8459 | 1,2038,739,1,346, | ||
8460 | 3382,16,0,568,1, | ||
8461 | 32,3383,16,0,568, | ||
8462 | 1,1668,3384,16,0, | ||
8463 | 568,1,2041,747,1, | ||
8464 | 236,3385,16,0,568, | ||
8465 | 1,1514,3386,16,0, | ||
8466 | 568,1,256,3387,16, | ||
8467 | 0,568,1,41,3388, | ||
8468 | 16,0,568,1,151, | ||
8469 | 3389,16,0,568,1, | ||
8470 | 43,3390,16,0,568, | ||
8471 | 1,1732,3391,16,0, | ||
8472 | 568,1,384,3392,16, | ||
8473 | 0,568,1,1467,761, | ||
8474 | 1,52,3393,16,0, | ||
8475 | 568,1,2233,3394,16, | ||
8476 | 0,568,1,381,3395, | ||
8477 | 16,0,568,1,166, | ||
8478 | 3396,16,0,568,1, | ||
8479 | 1257,3397,16,0,568, | ||
8480 | 1,1694,771,1,1432, | ||
8481 | 3398,16,0,568,1, | ||
8482 | 1152,3399,16,0,568, | ||
8483 | 1,1856,779,1,62, | ||
8484 | 3400,16,0,568,1, | ||
8485 | 504,3401,16,0,568, | ||
8486 | 1,277,3402,16,0, | ||
8487 | 568,1,397,3403,16, | ||
8488 | 0,568,1,71,3404, | ||
8489 | 16,0,568,1,1707, | ||
8490 | 3405,16,0,568,1, | ||
8491 | 1817,790,1,1818,3406, | ||
8492 | 16,0,568,1,1868, | ||
8493 | 797,1,76,3407,16, | ||
8494 | 0,568,1,1385,803, | ||
8495 | 1,79,3408,16,0, | ||
8496 | 568,1,182,3409,16, | ||
8497 | 0,568,1,299,3410, | ||
8498 | 16,0,568,1,1559, | ||
8499 | 3411,16,0,568,1, | ||
8500 | 85,3412,16,0,568, | ||
8501 | 1,488,3413,16,0, | ||
8502 | 568,1,1396,3414,16, | ||
8503 | 0,568,1,89,3415, | ||
8504 | 16,0,568,1,199, | ||
8505 | 3416,16,0,568,1, | ||
8506 | 463,3417,16,0,568, | ||
8507 | 1,1292,3418,16,0, | ||
8508 | 568,1,422,3419,16, | ||
8509 | 0,568,1,2037,820, | ||
8510 | 1,97,3420,16,0, | ||
8511 | 568,1,1469,3421,16, | ||
8512 | 0,568,1,1788,3422, | ||
8513 | 16,0,568,1,102, | ||
8514 | 3423,16,0,568,1, | ||
8515 | 1847,829,1,322,3424, | ||
8516 | 16,0,568,1,1327, | ||
8517 | 3425,16,0,568,1, | ||
8518 | 217,3426,16,0,568, | ||
8519 | 1,95,3427,19,103, | ||
8520 | 1,95,3428,5,1, | ||
8521 | 1,0,3429,16,0, | ||
8522 | 104,1,96,3430,19, | ||
8523 | 388,1,96,3431,5, | ||
8524 | 1,1,0,3432,16, | ||
8525 | 0,386,1,97,3433, | ||
8526 | 19,273,1,97,3434, | ||
8527 | 5,2,1,0,3435, | ||
8528 | 16,0,275,1,2270, | ||
8529 | 3436,16,0,271,1, | ||
8530 | 98,3437,19,204,1, | ||
8531 | 98,3438,5,2,1, | ||
8532 | 0,3439,16,0,274, | ||
8533 | 1,2270,3440,16,0, | ||
8534 | 202,1,99,3441,19, | ||
8535 | 199,1,99,3442,5, | ||
8536 | 2,1,0,3443,16, | ||
8537 | 0,612,1,2270,3444, | ||
8538 | 16,0,197,1,100, | ||
8539 | 3445,19,615,1,100, | ||
8540 | 3446,5,4,1,0, | ||
8541 | 3447,16,0,616,1, | ||
8542 | 2211,3448,16,0,613, | ||
8543 | 1,2281,3449,16,0, | ||
8544 | 613,1,2270,3450,16, | ||
8545 | 0,616,1,101,3451, | ||
8546 | 19,217,1,101,3452, | ||
8547 | 5,2,1,2049,3453, | ||
8548 | 16,0,215,1,2138, | ||
8549 | 3454,16,0,583,1, | ||
8550 | 102,3455,19,606,1, | ||
8551 | 102,3456,5,4,1, | ||
8552 | 2049,3457,16,0,607, | ||
8553 | 1,2138,3458,16,0, | ||
8554 | 607,1,2173,3459,16, | ||
8555 | 0,604,1,2099,3460, | ||
8556 | 16,0,604,1,103, | ||
8557 | 3461,19,150,1,103, | ||
8558 | 3462,5,3,1,2084, | ||
8559 | 3463,16,0,625,1, | ||
8560 | 2217,3464,16,0,282, | ||
8561 | 1,10,3465,16,0, | ||
8562 | 148,1,104,3466,19, | ||
8563 | 162,1,104,3467,5, | ||
8564 | 16,1,0,3468,16, | ||
8565 | 0,220,1,1818,3469, | ||
8566 | 16,0,409,1,2084, | ||
8567 | 3470,16,0,533,1, | ||
8568 | 1584,3471,16,0,486, | ||
8569 | 1,10,3472,16,0, | ||
8570 | 533,1,1639,3473,16, | ||
8571 | 0,409,1,1788,3474, | ||
8572 | 16,0,409,1,2270, | ||
8573 | 3475,16,0,220,1, | ||
8574 | 1611,3476,16,0,409, | ||
8575 | 1,21,3477,16,0, | ||
8576 | 160,1,1993,3478,16, | ||
8577 | 0,409,1,1469,3479, | ||
8578 | 16,0,486,1,2217, | ||
8579 | 3480,16,0,533,1, | ||
8580 | 1732,3481,16,0,409, | ||
8581 | 1,32,3482,16,0, | ||
8582 | 409,1,1514,3483,16, | ||
8583 | 0,486,1,105,3484, | ||
8584 | 19,130,1,105,3485, | ||
8585 | 5,17,1,0,3486, | ||
8586 | 16,0,128,1,1818, | ||
8587 | 3487,16,0,146,1, | ||
8588 | 2084,3488,16,0,146, | ||
8589 | 1,1584,3489,16,0, | ||
8590 | 146,1,10,3490,16, | ||
8591 | 0,146,1,1639,3491, | ||
8592 | 16,0,146,1,1788, | ||
8593 | 3492,16,0,146,1, | ||
8594 | 2270,3493,16,0,128, | ||
8595 | 1,52,3494,16,0, | ||
8596 | 205,1,1611,3495,16, | ||
8597 | 0,146,1,21,3496, | ||
8598 | 16,0,146,1,1993, | ||
8599 | 3497,16,0,146,1, | ||
8600 | 1469,3498,16,0,146, | ||
8601 | 1,2217,3499,16,0, | ||
8602 | 146,1,1732,3500,16, | ||
8603 | 0,146,1,32,3501, | ||
8604 | 16,0,146,1,1514, | ||
8605 | 3502,16,0,146,1, | ||
8606 | 106,3503,19,525,1, | ||
8607 | 106,3504,5,4,1, | ||
8608 | 2049,3505,16,0,523, | ||
8609 | 1,2138,3506,16,0, | ||
8610 | 523,1,2173,3507,16, | ||
8611 | 0,523,1,2099,3508, | ||
8612 | 16,0,523,1,107, | ||
8613 | 3509,19,289,1,107, | ||
8614 | 3510,5,10,1,1818, | ||
8615 | 3511,16,0,324,1, | ||
8616 | 2228,3512,16,0,287, | ||
8617 | 1,1639,3513,16,0, | ||
8618 | 324,1,1788,3514,16, | ||
8619 | 0,324,1,1611,3515, | ||
8620 | 16,0,324,1,2095, | ||
8621 | 3516,16,0,529,1, | ||
8622 | 1732,3517,16,0,324, | ||
8623 | 1,31,3518,16,0, | ||
8624 | 532,1,1993,3519,16, | ||
8625 | 0,324,1,32,3520, | ||
8626 | 16,0,324,1,108, | ||
8627 | 3521,19,547,1,108, | ||
8628 | 3522,5,1,1,32, | ||
8629 | 3523,16,0,545,1, | ||
8630 | 109,3524,19,292,1, | ||
8631 | 109,3525,5,7,1, | ||
8632 | 1639,3526,16,0,621, | ||
8633 | 1,1993,3527,16,0, | ||
8634 | 424,1,1818,3528,16, | ||
8635 | 0,308,1,1732,3529, | ||
8636 | 16,0,358,1,1788, | ||
8637 | 3530,16,0,290,1, | ||
8638 | 1611,3531,16,0,597, | ||
8639 | 1,32,3532,16,0, | ||
8640 | 429,1,110,3533,19, | ||
8641 | 353,1,110,3534,5, | ||
8642 | 10,1,1818,3535,16, | ||
8643 | 0,351,1,1639,3536, | ||
8644 | 16,0,351,1,1788, | ||
8645 | 3537,16,0,351,1, | ||
8646 | 1732,3538,16,0,351, | ||
8647 | 1,1611,3539,16,0, | ||
8648 | 351,1,1469,3540,16, | ||
8649 | 0,401,1,1584,3541, | ||
8650 | 16,0,401,1,1993, | ||
8651 | 3542,16,0,351,1, | ||
8652 | 1514,3543,16,0,535, | ||
8653 | 1,32,3544,16,0, | ||
8654 | 351,1,111,3545,19, | ||
8655 | 408,1,111,3546,5, | ||
8656 | 7,1,1639,3547,16, | ||
8657 | 0,406,1,1993,3548, | ||
8658 | 16,0,406,1,1818, | ||
8659 | 3549,16,0,406,1, | ||
8660 | 1732,3550,16,0,406, | ||
8661 | 1,1788,3551,16,0, | ||
8662 | 406,1,1611,3552,16, | ||
8663 | 0,406,1,32,3553, | ||
8664 | 16,0,406,1,112, | ||
8665 | 3554,19,345,1,112, | ||
8666 | 3555,5,7,1,1639, | ||
8667 | 3556,16,0,343,1, | ||
8668 | 1993,3557,16,0,343, | ||
8669 | 1,1818,3558,16,0, | ||
8670 | 343,1,1732,3559,16, | ||
8671 | 0,343,1,1788,3560, | ||
8672 | 16,0,343,1,1611, | ||
8673 | 3561,16,0,343,1, | ||
8674 | 32,3562,16,0,343, | ||
8675 | 1,113,3563,19,341, | ||
8676 | 1,113,3564,5,7, | ||
8677 | 1,1639,3565,16,0, | ||
8678 | 339,1,1993,3566,16, | ||
8679 | 0,339,1,1818,3567, | ||
8680 | 16,0,339,1,1732, | ||
8681 | 3568,16,0,339,1, | ||
8682 | 1788,3569,16,0,339, | ||
8683 | 1,1611,3570,16,0, | ||
8684 | 339,1,32,3571,16, | ||
8685 | 0,339,1,114,3572, | ||
8686 | 19,381,1,114,3573, | ||
8687 | 5,7,1,1639,3574, | ||
8688 | 16,0,379,1,1993, | ||
8689 | 3575,16,0,379,1, | ||
8690 | 1818,3576,16,0,379, | ||
8691 | 1,1732,3577,16,0, | ||
8692 | 379,1,1788,3578,16, | ||
8693 | 0,379,1,1611,3579, | ||
8694 | 16,0,379,1,32, | ||
8695 | 3580,16,0,379,1, | ||
8696 | 115,3581,19,334,1, | ||
8697 | 115,3582,5,7,1, | ||
8698 | 1639,3583,16,0,332, | ||
8699 | 1,1993,3584,16,0, | ||
8700 | 332,1,1818,3585,16, | ||
8701 | 0,332,1,1732,3586, | ||
8702 | 16,0,332,1,1788, | ||
8703 | 3587,16,0,332,1, | ||
8704 | 1611,3588,16,0,332, | ||
8705 | 1,32,3589,16,0, | ||
8706 | 332,1,116,3590,19, | ||
8707 | 378,1,116,3591,5, | ||
8708 | 7,1,1639,3592,16, | ||
8709 | 0,376,1,1993,3593, | ||
8710 | 16,0,376,1,1818, | ||
8711 | 3594,16,0,376,1, | ||
8712 | 1732,3595,16,0,376, | ||
8713 | 1,1788,3596,16,0, | ||
8714 | 376,1,1611,3597,16, | ||
8715 | 0,376,1,32,3598, | ||
8716 | 16,0,376,1,117, | ||
8717 | 3599,19,330,1,117, | ||
8718 | 3600,5,7,1,1639, | ||
8719 | 3601,16,0,328,1, | ||
8720 | 1993,3602,16,0,328, | ||
8721 | 1,1818,3603,16,0, | ||
8722 | 328,1,1732,3604,16, | ||
8723 | 0,328,1,1788,3605, | ||
8724 | 16,0,328,1,1611, | ||
8725 | 3606,16,0,328,1, | ||
8726 | 32,3607,16,0,328, | ||
8727 | 1,118,3608,19,327, | ||
8728 | 1,118,3609,5,7, | ||
8729 | 1,1639,3610,16,0, | ||
8730 | 325,1,1993,3611,16, | ||
8731 | 0,325,1,1818,3612, | ||
8732 | 16,0,325,1,1732, | ||
8733 | 3613,16,0,325,1, | ||
8734 | 1788,3614,16,0,325, | ||
8735 | 1,1611,3615,16,0, | ||
8736 | 325,1,32,3616,16, | ||
8737 | 0,325,1,119,3617, | ||
8738 | 19,492,1,119,3618, | ||
8739 | 5,2,1,1584,3619, | ||
8740 | 16,0,581,1,1469, | ||
8741 | 3620,16,0,490,1, | ||
8742 | 120,3621,19,432,1, | ||
8743 | 120,3622,5,57,1, | ||
8744 | 1584,3623,16,0,430, | ||
8745 | 1,1639,3624,16,0, | ||
8746 | 430,1,112,3625,16, | ||
8747 | 0,430,1,384,3626, | ||
8748 | 16,0,430,1,447, | ||
8749 | 3627,16,0,430,1, | ||
8750 | 124,3628,16,0,430, | ||
8751 | 1,236,3629,16,0, | ||
8752 | 430,1,1763,3630,16, | ||
8753 | 0,430,1,1222,3631, | ||
8754 | 16,0,430,1,1115, | ||
8755 | 3632,16,0,430,1, | ||
8756 | 1187,3633,16,0,430, | ||
8757 | 1,137,3634,16,0, | ||
8758 | 430,1,346,3635,16, | ||
8759 | 0,430,1,32,3636, | ||
8760 | 16,0,430,1,1668, | ||
8761 | 3637,16,0,430,1, | ||
8762 | 1514,3638,16,0,430, | ||
8763 | 1,256,3639,16,0, | ||
8764 | 430,1,41,3640,16, | ||
8765 | 0,430,1,151,3641, | ||
8766 | 16,0,430,1,43, | ||
8767 | 3642,16,0,430,1, | ||
8768 | 1788,3643,16,0,430, | ||
8769 | 1,1993,3644,16,0, | ||
8770 | 430,1,52,3645,16, | ||
8771 | 0,430,1,2233,3646, | ||
8772 | 16,0,430,1,381, | ||
8773 | 3647,16,0,430,1, | ||
8774 | 166,3648,16,0,430, | ||
8775 | 1,1257,3649,16,0, | ||
8776 | 430,1,277,3650,16, | ||
8777 | 0,430,1,1432,3651, | ||
8778 | 16,0,430,1,1152, | ||
8779 | 3652,16,0,430,1, | ||
8780 | 62,3653,16,0,536, | ||
8781 | 1,504,3654,16,0, | ||
8782 | 430,1,488,3655,16, | ||
8783 | 0,430,1,397,3656, | ||
8784 | 16,0,430,1,71, | ||
8785 | 3657,16,0,430,1, | ||
8786 | 1707,3658,16,0,430, | ||
8787 | 1,182,3659,16,0, | ||
8788 | 430,1,1818,3660,16, | ||
8789 | 0,430,1,463,3661, | ||
8790 | 16,0,430,1,76, | ||
8791 | 3662,16,0,430,1, | ||
8792 | 79,3663,16,0,430, | ||
8793 | 1,1611,3664,16,0, | ||
8794 | 430,1,299,3665,16, | ||
8795 | 0,430,1,1559,3666, | ||
8796 | 16,0,430,1,85, | ||
8797 | 3667,16,0,430,1, | ||
8798 | 1396,3668,16,0,430, | ||
8799 | 1,89,3669,16,0, | ||
8800 | 430,1,199,3670,16, | ||
8801 | 0,430,1,1292,3671, | ||
8802 | 16,0,430,1,422, | ||
8803 | 3672,16,0,430,1, | ||
8804 | 97,3673,16,0,430, | ||
8805 | 1,1469,3674,16,0, | ||
8806 | 430,1,1732,3675,16, | ||
8807 | 0,430,1,102,3676, | ||
8808 | 16,0,430,1,322, | ||
8809 | 3677,16,0,430,1, | ||
8810 | 1327,3678,16,0,430, | ||
8811 | 1,217,3679,16,0, | ||
8812 | 430,1,121,3680,19, | ||
8813 | 452,1,121,3681,5, | ||
8814 | 2,1,381,3682,16, | ||
8815 | 0,450,1,41,3683, | ||
8816 | 16,0,609,1,122, | ||
8817 | 3684,19,145,1,122, | ||
8818 | 3685,5,3,1,381, | ||
8819 | 3686,16,0,143,1, | ||
8820 | 41,3687,16,0,143, | ||
8821 | 1,384,3688,16,0, | ||
8822 | 455,1,123,3689,19, | ||
8823 | 3690,4,36,69,0, | ||
8824 | 120,0,112,0,114, | ||
8825 | 0,101,0,115,0, | ||
8826 | 115,0,105,0,111, | ||
8827 | 0,110,0,65,0, | ||
8828 | 114,0,103,0,117, | ||
8829 | 0,109,0,101,0, | ||
8830 | 110,0,116,0,1, | ||
8831 | 123,3685,1,124,3691, | ||
8832 | 19,443,1,124,3692, | ||
8833 | 5,57,1,1584,3693, | ||
8834 | 16,0,441,1,1639, | ||
8835 | 3694,16,0,441,1, | ||
8836 | 112,3695,16,0,441, | ||
8837 | 1,384,3696,16,0, | ||
8838 | 441,1,447,3697,16, | ||
8839 | 0,441,1,124,3698, | ||
8840 | 16,0,441,1,236, | ||
8841 | 3699,16,0,441,1, | ||
8842 | 1763,3700,16,0,441, | ||
8843 | 1,1222,3701,16,0, | ||
8844 | 441,1,1115,3702,16, | ||
8845 | 0,441,1,1187,3703, | ||
8846 | 16,0,441,1,137, | ||
8847 | 3704,16,0,441,1, | ||
8848 | 346,3705,16,0,441, | ||
8849 | 1,32,3706,16,0, | ||
8850 | 441,1,1668,3707,16, | ||
8851 | 0,441,1,1514,3708, | ||
8852 | 16,0,441,1,256, | ||
8853 | 3709,16,0,441,1, | ||
8854 | 41,3710,16,0,441, | ||
8855 | 1,151,3711,16,0, | ||
8856 | 441,1,43,3712,16, | ||
8857 | 0,441,1,1788,3713, | ||
8858 | 16,0,441,1,1993, | ||
8859 | 3714,16,0,441,1, | ||
8860 | 52,3715,16,0,441, | ||
8861 | 1,2233,3716,16,0, | ||
8862 | 441,1,381,3717,16, | ||
8863 | 0,441,1,166,3718, | ||
8864 | 16,0,441,1,1257, | ||
8865 | 3719,16,0,441,1, | ||
8866 | 277,3720,16,0,441, | ||
8867 | 1,1432,3721,16,0, | ||
8868 | 441,1,1152,3722,16, | ||
8869 | 0,441,1,62,3723, | ||
8870 | 16,0,587,1,504, | ||
8871 | 3724,16,0,441,1, | ||
8872 | 488,3725,16,0,441, | ||
8873 | 1,397,3726,16,0, | ||
8874 | 441,1,71,3727,16, | ||
8875 | 0,441,1,1707,3728, | ||
8876 | 16,0,441,1,182, | ||
8877 | 3729,16,0,441,1, | ||
8878 | 1818,3730,16,0,441, | ||
8879 | 1,463,3731,16,0, | ||
8880 | 441,1,76,3732,16, | ||
8881 | 0,441,1,79,3733, | ||
8882 | 16,0,441,1,1611, | ||
8883 | 3734,16,0,441,1, | ||
8884 | 299,3735,16,0,441, | ||
8885 | 1,1559,3736,16,0, | ||
8886 | 441,1,85,3737,16, | ||
8887 | 0,441,1,1396,3738, | ||
8888 | 16,0,441,1,89, | ||
8889 | 3739,16,0,441,1, | ||
8890 | 199,3740,16,0,441, | ||
8891 | 1,1292,3741,16,0, | ||
8892 | 441,1,422,3742,16, | ||
8893 | 0,441,1,97,3743, | ||
8894 | 16,0,441,1,1469, | ||
8895 | 3744,16,0,441,1, | ||
8896 | 1732,3745,16,0,441, | ||
8897 | 1,102,3746,16,0, | ||
8898 | 441,1,322,3747,16, | ||
8899 | 0,441,1,1327,3748, | ||
8900 | 16,0,441,1,217, | ||
8901 | 3749,16,0,441,1, | ||
8902 | 125,3750,19,3751,4, | ||
8903 | 28,86,0,101,0, | ||
8904 | 99,0,116,0,111, | ||
8905 | 0,114,0,67,0, | ||
8906 | 111,0,110,0,115, | ||
8907 | 0,116,0,97,0, | ||
8908 | 110,0,116,0,1, | ||
8909 | 125,3692,1,126,3752, | ||
8910 | 19,3753,4,32,82, | ||
8911 | 0,111,0,116,0, | ||
8912 | 97,0,116,0,105, | ||
8913 | 0,111,0,110,0, | ||
8914 | 67,0,111,0,110, | ||
8915 | 0,115,0,116,0, | ||
8916 | 97,0,110,0,116, | ||
8917 | 0,1,126,3692,1, | ||
8918 | 127,3754,19,3755,4, | ||
8919 | 24,76,0,105,0, | ||
8920 | 115,0,116,0,67, | ||
8921 | 0,111,0,110,0, | ||
8922 | 115,0,116,0,97, | ||
8923 | 0,110,0,116,0, | ||
8924 | 1,127,3692,1,128, | ||
8925 | 3756,19,139,1,128, | ||
8926 | 3757,5,56,1,1584, | ||
8927 | 3758,16,0,428,1, | ||
8928 | 1639,3759,16,0,382, | ||
8929 | 1,112,3760,16,0, | ||
8930 | 265,1,384,3761,16, | ||
8931 | 0,179,1,447,3762, | ||
8932 | 16,0,563,1,124, | ||
8933 | 3763,16,0,270,1, | ||
8934 | 236,3764,16,0,374, | ||
8935 | 1,1763,3765,16,0, | ||
8936 | 247,1,1222,3766,16, | ||
8937 | 0,263,1,1115,3767, | ||
8938 | 16,0,225,1,1187, | ||
8939 | 3768,16,0,224,1, | ||
8940 | 137,3769,16,0,301, | ||
8941 | 1,346,3770,16,0, | ||
8942 | 418,1,32,3771,16, | ||
8943 | 0,382,1,1668,3772, | ||
8944 | 16,0,200,1,1514, | ||
8945 | 3773,16,0,526,1, | ||
8946 | 256,3774,16,0,390, | ||
8947 | 1,41,3775,16,0, | ||
8948 | 179,1,151,3776,16, | ||
8949 | 0,302,1,43,3777, | ||
8950 | 16,0,579,1,1788, | ||
8951 | 3778,16,0,382,1, | ||
8952 | 1993,3779,16,0,382, | ||
8953 | 1,52,3780,16,0, | ||
8954 | 552,1,2233,3781,16, | ||
8955 | 0,137,1,381,3782, | ||
8956 | 16,0,179,1,166, | ||
8957 | 3783,16,0,306,1, | ||
8958 | 1257,3784,16,0,296, | ||
8959 | 1,277,3785,16,0, | ||
8960 | 399,1,1432,3786,16, | ||
8961 | 0,412,1,1152,3787, | ||
8962 | 16,0,266,1,504, | ||
8963 | 3788,16,0,331,1, | ||
8964 | 488,3789,16,0,580, | ||
8965 | 1,397,3790,16,0, | ||
8966 | 500,1,71,3791,16, | ||
8967 | 0,218,1,1707,3792, | ||
8968 | 16,0,300,1,182, | ||
8969 | 3793,16,0,331,1, | ||
8970 | 1818,3794,16,0,382, | ||
8971 | 1,463,3795,16,0, | ||
8972 | 331,1,76,3796,16, | ||
8973 | 0,454,1,79,3797, | ||
8974 | 16,0,226,1,1611, | ||
8975 | 3798,16,0,382,1, | ||
8976 | 299,3799,16,0,405, | ||
8977 | 1,1559,3800,16,0, | ||
8978 | 548,1,85,3801,16, | ||
8979 | 0,413,1,1396,3802, | ||
8980 | 16,0,400,1,89, | ||
8981 | 3803,16,0,243,1, | ||
8982 | 199,3804,16,0,359, | ||
8983 | 1,1292,3805,16,0, | ||
8984 | 367,1,422,3806,16, | ||
8985 | 0,530,1,97,3807, | ||
8986 | 16,0,391,1,1469, | ||
8987 | 3808,16,0,428,1, | ||
8988 | 1732,3809,16,0,382, | ||
8989 | 1,102,3810,16,0, | ||
8990 | 252,1,322,3811,16, | ||
8991 | 0,414,1,1327,3812, | ||
8992 | 16,0,365,1,217, | ||
8993 | 3813,16,0,366,1, | ||
8994 | 129,3814,19,3815,4, | ||
8995 | 36,67,0,111,0, | ||
8996 | 110,0,115,0,116, | ||
8997 | 0,97,0,110,0, | ||
8998 | 116,0,69,0,120, | ||
8999 | 0,112,0,114,0, | ||
9000 | 101,0,115,0,115, | ||
9001 | 0,105,0,111,0, | ||
9002 | 110,0,1,129,3757, | ||
9003 | 1,130,3816,19,3817, | ||
9004 | 4,30,73,0,100, | ||
9005 | 0,101,0,110,0, | ||
9006 | 116,0,69,0,120, | ||
9007 | 0,112,0,114,0, | ||
9008 | 101,0,115,0,115, | ||
9009 | 0,105,0,111,0, | ||
9010 | 110,0,1,130,3757, | ||
9011 | 1,131,3818,19,3819, | ||
9012 | 4,36,73,0,100, | ||
9013 | 0,101,0,110,0, | ||
9014 | 116,0,68,0,111, | ||
9015 | 0,116,0,69,0, | ||
9016 | 120,0,112,0,114, | ||
9017 | 0,101,0,115,0, | ||
9018 | 115,0,105,0,111, | ||
9019 | 0,110,0,1,131, | ||
9020 | 3757,1,132,3820,19, | ||
9021 | 3821,4,44,70,0, | ||
9022 | 117,0,110,0,99, | ||
9023 | 0,116,0,105,0, | ||
9024 | 111,0,110,0,67, | ||
9025 | 0,97,0,108,0, | ||
9026 | 108,0,69,0,120, | ||
9027 | 0,112,0,114,0, | ||
9028 | 101,0,115,0,115, | ||
9029 | 0,105,0,111,0, | ||
9030 | 110,0,1,132,3757, | ||
9031 | 1,133,3822,19,3823, | ||
9032 | 4,32,66,0,105, | ||
9033 | 0,110,0,97,0, | ||
9034 | 114,0,121,0,69, | ||
9035 | 0,120,0,112,0, | ||
9036 | 114,0,101,0,115, | ||
9037 | 0,115,0,105,0, | ||
9038 | 111,0,110,0,1, | ||
9039 | 133,3757,1,134,3824, | ||
9040 | 19,3825,4,30,85, | ||
9041 | 0,110,0,97,0, | ||
9042 | 114,0,121,0,69, | ||
9043 | 0,120,0,112,0, | ||
9044 | 114,0,101,0,115, | ||
9045 | 0,115,0,105,0, | ||
9046 | 111,0,110,0,1, | ||
9047 | 134,3757,1,135,3826, | ||
9048 | 19,3827,4,36,84, | ||
9049 | 0,121,0,112,0, | ||
9050 | 101,0,99,0,97, | ||
9051 | 0,115,0,116,0, | ||
9052 | 69,0,120,0,112, | ||
9053 | 0,114,0,101,0, | ||
9054 | 115,0,115,0,105, | ||
9055 | 0,111,0,110,0, | ||
9056 | 1,135,3757,1,136, | ||
9057 | 3828,19,3829,4,42, | ||
9058 | 80,0,97,0,114, | ||
9059 | 0,101,0,110,0, | ||
9060 | 116,0,104,0,101, | ||
9061 | 0,115,0,105,0, | ||
9062 | 115,0,69,0,120, | ||
9063 | 0,112,0,114,0, | ||
9064 | 101,0,115,0,115, | ||
9065 | 0,105,0,111,0, | ||
9066 | 110,0,1,136,3757, | ||
9067 | 1,137,3830,19,3831, | ||
9068 | 4,56,73,0,110, | ||
9069 | 0,99,0,114,0, | ||
9070 | 101,0,109,0,101, | ||
9071 | 0,110,0,116,0, | ||
9072 | 68,0,101,0,99, | ||
9073 | 0,114,0,101,0, | ||
9074 | 109,0,101,0,110, | ||
9075 | 0,116,0,69,0, | ||
9076 | 120,0,112,0,114, | ||
9077 | 0,101,0,115,0, | ||
9078 | 115,0,105,0,111, | ||
9079 | 0,110,0,1,137, | ||
9080 | 3757,1,139,3832,19, | ||
9081 | 651,1,139,3428,1, | ||
9082 | 140,3833,19,634,1, | ||
9083 | 140,3428,1,141,3834, | ||
9084 | 19,2811,1,141,3431, | ||
9085 | 1,142,3835,19,2801, | ||
9086 | 1,142,3431,1,143, | ||
9087 | 3836,19,2806,1,143, | ||
9088 | 3431,1,144,3837,19, | ||
9089 | 2796,1,144,3431,1, | ||
9090 | 145,3838,19,2787,1, | ||
9091 | 145,3434,1,146,3839, | ||
9092 | 19,2771,1,146,3434, | ||
9093 | 1,147,3840,19,2782, | ||
9094 | 1,147,3438,1,148, | ||
9095 | 3841,19,2777,1,148, | ||
9096 | 3438,1,149,3842,19, | ||
9097 | 656,1,149,3442,1, | ||
9098 | 150,3843,19,646,1, | ||
9099 | 150,3442,1,151,3844, | ||
9100 | 19,661,1,151,3446, | ||
9101 | 1,152,3845,19,640, | ||
9102 | 1,152,3446,1,153, | ||
9103 | 3846,19,1409,1,153, | ||
9104 | 3452,1,154,3847,19, | ||
9105 | 1404,1,154,3452,1, | ||
9106 | 155,3848,19,1395,1, | ||
9107 | 155,3456,1,156,3849, | ||
9108 | 19,1428,1,156,3462, | ||
9109 | 1,157,3850,19,1423, | ||
9110 | 1,157,3462,1,158, | ||
9111 | 3851,19,999,1,158, | ||
9112 | 3467,1,159,3852,19, | ||
9113 | 715,1,159,3510,1, | ||
9114 | 160,3853,19,742,1, | ||
9115 | 160,3510,1,161,3854, | ||
9116 | 19,751,1,161,3522, | ||
9117 | 1,162,3855,19,823, | ||
9118 | 1,162,3522,1,163, | ||
9119 | 3856,19,764,1,163, | ||
9120 | 3525,1,164,3857,19, | ||
9121 | 727,1,164,3525,1, | ||
9122 | 165,3858,19,806,1, | ||
9123 | 165,3525,1,166,3859, | ||
9124 | 19,800,1,166,3525, | ||
9125 | 1,167,3860,19,709, | ||
9126 | 1,167,3525,1,168, | ||
9127 | 3861,19,704,1,168, | ||
9128 | 3525,1,169,3862,19, | ||
9129 | 699,1,169,3525,1, | ||
9130 | 170,3863,19,693,1, | ||
9131 | 170,3525,1,171,3864, | ||
9132 | 19,688,1,171,3525, | ||
9133 | 1,172,3865,19,683, | ||
9134 | 1,172,3525,1,173, | ||
9135 | 3866,19,678,1,173, | ||
9136 | 3525,1,174,3867,19, | ||
9137 | 782,1,174,3525,1, | ||
9138 | 175,3868,19,1168,1, | ||
9139 | 175,3555,1,176,3869, | ||
9140 | 19,1157,1,176,3564, | ||
9141 | 1,177,3870,19,1151, | ||
9142 | 1,177,3573,1,178, | ||
9143 | 3871,19,1146,1,178, | ||
9144 | 3573,1,179,3872,19, | ||
9145 | 794,1,179,3582,1, | ||
9146 | 180,3873,19,832,1, | ||
9147 | 180,3582,1,181,3874, | ||
9148 | 19,722,1,181,3591, | ||
9149 | 1,182,3875,19,775, | ||
9150 | 1,182,3600,1,183, | ||
9151 | 3876,19,671,1,183, | ||
9152 | 3609,1,184,3877,19, | ||
9153 | 1340,1,184,3618,1, | ||
9154 | 185,3878,19,1308,1, | ||
9155 | 185,3618,1,186,3879, | ||
9156 | 19,1012,1,186,3618, | ||
9157 | 1,187,3880,19,1254, | ||
9158 | 1,187,3618,1,188, | ||
9159 | 3881,19,1292,1,188, | ||
9160 | 3534,1,189,3882,19, | ||
9161 | 1134,1,189,3534,1, | ||
9162 | 190,3883,19,1036,1, | ||
9163 | 190,3534,1,191,3884, | ||
9164 | 19,993,1,191,3534, | ||
9165 | 1,192,3885,19,1329, | ||
9166 | 1,192,3534,1,193, | ||
9167 | 3886,19,1298,1,193, | ||
9168 | 3534,1,194,3887,19, | ||
9169 | 1259,1,194,3534,1, | ||
9170 | 195,3888,19,1179,1, | ||
9171 | 195,3534,1,196,3889, | ||
9172 | 19,1249,1,196,3546, | ||
9173 | 1,197,3890,19,1238, | ||
9174 | 1,197,3546,1,198, | ||
9175 | 3891,19,1363,1,198, | ||
9176 | 3692,1,199,3892,19, | ||
9177 | 1358,1,199,3692,1, | ||
9178 | 200,3893,19,1018,1, | ||
9179 | 200,3692,1,201,3894, | ||
9180 | 19,1334,1,201,3692, | ||
9181 | 1,202,3895,19,1346, | ||
9182 | 1,202,3692,1,203, | ||
9183 | 3896,19,986,1,203, | ||
9184 | 3692,1,204,3897,19, | ||
9185 | 1108,1,204,3692,1, | ||
9186 | 205,3898,19,1221,1, | ||
9187 | 205,3757,1,206,3899, | ||
9188 | 19,1026,1,206,3757, | ||
9189 | 1,207,3900,19,1043, | ||
9190 | 1,207,3757,1,208, | ||
9191 | 3901,19,1064,1,208, | ||
9192 | 3757,1,209,3902,19, | ||
9193 | 1059,1,209,3757,1, | ||
9194 | 210,3903,19,1054,1, | ||
9195 | 210,3757,1,211,3904, | ||
9196 | 19,1049,1,211,3757, | ||
9197 | 1,212,3905,19,1205, | ||
9198 | 1,212,3757,1,213, | ||
9199 | 3906,19,1232,1,213, | ||
9200 | 3757,1,214,3907,19, | ||
9201 | 1281,1,214,3757,1, | ||
9202 | 215,3908,19,1200,1, | ||
9203 | 215,3757,1,216,3909, | ||
9204 | 19,1190,1,216,3757, | ||
9205 | 1,217,3910,19,1210, | ||
9206 | 1,217,3757,1,218, | ||
9207 | 3911,19,1129,1,218, | ||
9208 | 3757,1,219,3912,19, | ||
9209 | 1069,1,219,3757,1, | ||
9210 | 220,3913,19,1031,1, | ||
9211 | 220,3757,1,221,3914, | ||
9212 | 19,1005,1,221,3757, | ||
9213 | 1,222,3915,19,1353, | ||
9214 | 1,222,3757,1,223, | ||
9215 | 3916,19,1324,1,223, | ||
9216 | 3757,1,224,3917,19, | ||
9217 | 1314,1,224,3757,1, | ||
9218 | 225,3918,19,1303,1, | ||
9219 | 225,3757,1,226,3919, | ||
9220 | 19,1286,1,226,3757, | ||
9221 | 1,227,3920,19,1265, | ||
9222 | 1,227,3757,1,228, | ||
9223 | 3921,19,1243,1,228, | ||
9224 | 3757,1,229,3922,19, | ||
9225 | 1226,1,229,3757,1, | ||
9226 | 230,3923,19,1184,1, | ||
9227 | 230,3757,1,231,3924, | ||
9228 | 19,1215,1,231,3757, | ||
9229 | 1,232,3925,19,1270, | ||
9230 | 1,232,3757,1,233, | ||
9231 | 3926,19,1319,1,233, | ||
9232 | 3757,1,234,3927,19, | ||
9233 | 1124,1,234,3757,1, | ||
9234 | 235,3928,19,1195,1, | ||
9235 | 235,3757,1,236,3929, | ||
9236 | 19,1162,1,236,3757, | ||
9237 | 1,237,3930,19,1140, | ||
9238 | 1,237,3757,1,238, | ||
9239 | 3931,19,1114,1,238, | ||
9240 | 3757,1,239,3932,19, | ||
9241 | 1373,1,239,3757,1, | ||
9242 | 240,3933,19,1077,1, | ||
9243 | 240,3757,1,241,3934, | ||
9244 | 19,1082,1,241,3757, | ||
9245 | 1,242,3935,19,1102, | ||
9246 | 1,242,3757,1,243, | ||
9247 | 3936,19,1092,1,243, | ||
9248 | 3757,1,244,3937,19, | ||
9249 | 1097,1,244,3757,1, | ||
9250 | 245,3938,19,1087,1, | ||
9251 | 245,3757,1,246,3939, | ||
9252 | 19,1368,1,246,3757, | ||
9253 | 1,247,3940,19,1119, | ||
9254 | 1,247,3757,1,248, | ||
9255 | 3941,19,1276,1,248, | ||
9256 | 3622,1,249,3942,19, | ||
9257 | 1443,1,249,3681,1, | ||
9258 | 250,3943,19,1454,1, | ||
9259 | 250,3681,1,251,3944, | ||
9260 | 19,1438,1,251,3685, | ||
9261 | 1,252,3945,19,1742, | ||
9262 | 1,252,3485,1,253, | ||
9263 | 3946,19,1737,1,253, | ||
9264 | 3485,1,254,3947,19, | ||
9265 | 1732,1,254,3485,1, | ||
9266 | 255,3948,19,1727,1, | ||
9267 | 255,3485,1,256,3949, | ||
9268 | 19,1722,1,256,3485, | ||
9269 | 1,257,3950,19,1717, | ||
9270 | 1,257,3485,1,258, | ||
9271 | 3951,19,1712,1,258, | ||
9272 | 3485,1,259,3952,19, | ||
9273 | 1605,1,259,3504,1, | ||
9274 | 260,3953,19,1600,1, | ||
9275 | 260,3504,1,261,3954, | ||
9276 | 19,1661,1,261,3504, | ||
9277 | 1,262,3955,19,1688, | ||
9278 | 1,262,3504,1,263, | ||
9279 | 3956,19,1593,1,263, | ||
9280 | 3504,1,264,3957,19, | ||
9281 | 1588,1,264,3504,1, | ||
9282 | 265,3958,19,1583,1, | ||
9283 | 265,3504,1,266,3959, | ||
9284 | 19,1578,1,266,3504, | ||
9285 | 1,267,3960,19,1573, | ||
9286 | 1,267,3504,1,268, | ||
9287 | 3961,19,1568,1,268, | ||
9288 | 3504,1,269,3962,19, | ||
9289 | 1563,1,269,3504,1, | ||
9290 | 270,3963,19,1653,1, | ||
9291 | 270,3504,1,271,3964, | ||
9292 | 19,1648,1,271,3504, | ||
9293 | 1,272,3965,19,1643, | ||
9294 | 1,272,3504,1,273, | ||
9295 | 3966,19,1638,1,273, | ||
9296 | 3504,1,274,3967,19, | ||
9297 | 1555,1,274,3504,1, | ||
9298 | 275,3968,19,1550,1, | ||
9299 | 275,3504,1,276,3969, | ||
9300 | 19,1545,1,276,3504, | ||
9301 | 1,277,3970,19,1540, | ||
9302 | 1,277,3504,1,278, | ||
9303 | 3971,19,1535,1,278, | ||
9304 | 3504,1,279,3972,19, | ||
9305 | 1530,1,279,3504,1, | ||
9306 | 280,3973,19,1525,1, | ||
9307 | 280,3504,1,281,3974, | ||
9308 | 19,1632,1,281,3504, | ||
9309 | 1,282,3975,19,1519, | ||
9310 | 1,282,3504,1,283, | ||
9311 | 3976,19,1514,1,283, | ||
9312 | 3504,1,284,3977,19, | ||
9313 | 1626,1,284,3504,1, | ||
9314 | 285,3978,19,1676,1, | ||
9315 | 285,3504,1,286,3979, | ||
9316 | 19,1507,1,286,3504, | ||
9317 | 1,287,3980,19,1502, | ||
9318 | 1,287,3504,1,288, | ||
9319 | 3981,19,1497,1,288, | ||
9320 | 3504,1,289,3982,19, | ||
9321 | 1619,1,289,3504,1, | ||
9322 | 290,3983,19,1704,1, | ||
9323 | 290,3504,1,291,3984, | ||
9324 | 19,1490,1,291,3504, | ||
9325 | 1,292,3985,19,3986, | ||
9326 | 4,50,65,0,114, | ||
9327 | 0,103,0,117,0, | ||
9328 | 109,0,101,0,110, | ||
9329 | 0,116,0,68,0, | ||
9330 | 101,0,99,0,108, | ||
9331 | 0,97,0,114,0, | ||
9332 | 97,0,116,0,105, | ||
9333 | 0,111,0,110,0, | ||
9334 | 76,0,105,0,115, | ||
9335 | 0,116,0,95,0, | ||
9336 | 51,0,1,292,3462, | ||
9337 | 1,293,3987,19,3988, | ||
9338 | 4,28,65,0,114, | ||
9339 | 0,103,0,117,0, | ||
9340 | 109,0,101,0,110, | ||
9341 | 0,116,0,76,0, | ||
9342 | 105,0,115,0,116, | ||
9343 | 0,95,0,51,0, | ||
9344 | 1,293,3681,1,294, | ||
9345 | 3989,19,3990,4,24, | ||
9346 | 83,0,116,0,97, | ||
9347 | 0,116,0,101,0, | ||
9348 | 109,0,101,0,110, | ||
9349 | 0,116,0,95,0, | ||
9350 | 49,0,51,0,1, | ||
9351 | 294,3525,1,295,3991, | ||
9352 | 19,3992,4,28,65, | ||
9353 | 0,114,0,103,0, | ||
9354 | 117,0,109,0,101, | ||
9355 | 0,110,0,116,0, | ||
9356 | 76,0,105,0,115, | ||
9357 | 0,116,0,95,0, | ||
9358 | 52,0,1,295,3681, | ||
9359 | 1,296,3993,19,3994, | ||
9360 | 4,50,65,0,114, | ||
9361 | 0,103,0,117,0, | ||
9362 | 109,0,101,0,110, | ||
9363 | 0,116,0,68,0, | ||
9364 | 101,0,99,0,108, | ||
9365 | 0,97,0,114,0, | ||
9366 | 97,0,116,0,105, | ||
9367 | 0,111,0,110,0, | ||
9368 | 76,0,105,0,115, | ||
9369 | 0,116,0,95,0, | ||
9370 | 52,0,1,296,3462, | ||
9371 | 1,297,3995,19,3996, | ||
9372 | 4,50,65,0,114, | ||
9373 | 0,103,0,117,0, | ||
9374 | 109,0,101,0,110, | ||
9375 | 0,116,0,68,0, | ||
9376 | 101,0,99,0,108, | ||
9377 | 0,97,0,114,0, | ||
9378 | 97,0,116,0,105, | ||
9379 | 0,111,0,110,0, | ||
9380 | 76,0,105,0,115, | ||
9381 | 0,116,0,95,0, | ||
9382 | 53,0,1,297,3462, | ||
9383 | 2,0,0}; | ||
9384 | new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); | ||
9385 | new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); | ||
9386 | new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory)); | ||
9387 | new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); | ||
9388 | new Sfactory(this,"Declaration",new SCreator(Declaration_factory)); | ||
9389 | new Sfactory(this,"IdentExpression",new SCreator(IdentExpression_factory)); | ||
9390 | new Sfactory(this,"error",new SCreator(error_factory)); | ||
9391 | new Sfactory(this,"BinaryExpression_2",new SCreator(BinaryExpression_2_factory)); | ||
9392 | new Sfactory(this,"BinaryExpression_3",new SCreator(BinaryExpression_3_factory)); | ||
9393 | new Sfactory(this,"BinaryExpression_4",new SCreator(BinaryExpression_4_factory)); | ||
9394 | new Sfactory(this,"BinaryExpression_5",new SCreator(BinaryExpression_5_factory)); | ||
9395 | new Sfactory(this,"ReturnStatement_2",new SCreator(ReturnStatement_2_factory)); | ||
9396 | new Sfactory(this,"BinaryExpression_8",new SCreator(BinaryExpression_8_factory)); | ||
9397 | new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory)); | ||
9398 | new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); | ||
9399 | new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); | ||
9400 | new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); | ||
9401 | new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); | ||
9402 | new Sfactory(this,"Typename",new SCreator(Typename_factory)); | ||
9403 | new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory)); | ||
9404 | new Sfactory(this,"Assignment",new SCreator(Assignment_factory)); | ||
9405 | new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory)); | ||
9406 | new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory)); | ||
9407 | new Sfactory(this,"ReturnStatement_1",new SCreator(ReturnStatement_1_factory)); | ||
9408 | new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory)); | ||
9409 | new Sfactory(this,"Argument",new SCreator(Argument_factory)); | ||
9410 | new Sfactory(this,"State_2",new SCreator(State_2_factory)); | ||
9411 | new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory)); | ||
9412 | new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory)); | ||
9413 | new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory)); | ||
9414 | new Sfactory(this,"Event_1",new SCreator(Event_1_factory)); | ||
9415 | new Sfactory(this,"ListConstant",new SCreator(ListConstant_factory)); | ||
9416 | new Sfactory(this,"Event_3",new SCreator(Event_3_factory)); | ||
9417 | new Sfactory(this,"Event_4",new SCreator(Event_4_factory)); | ||
9418 | new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); | ||
9419 | new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); | ||
9420 | new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); | ||
9421 | new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); | ||
9422 | new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); | ||
9423 | new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); | ||
9424 | new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory)); | ||
9425 | new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory)); | ||
9426 | new Sfactory(this,"ArgumentDeclarationList",new SCreator(ArgumentDeclarationList_factory)); | ||
9427 | new Sfactory(this,"ConstantExpression",new SCreator(ConstantExpression_factory)); | ||
9428 | new Sfactory(this,"LSLProgramRoot_1",new SCreator(LSLProgramRoot_1_factory)); | ||
9429 | new Sfactory(this,"LSLProgramRoot_2",new SCreator(LSLProgramRoot_2_factory)); | ||
9430 | new Sfactory(this,"States_1",new SCreator(States_1_factory)); | ||
9431 | new Sfactory(this,"States_2",new SCreator(States_2_factory)); | ||
9432 | new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); | ||
9433 | new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); | ||
9434 | new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); | ||
9435 | new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory)); | ||
9436 | new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); | ||
9437 | new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); | ||
9438 | new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); | ||
9439 | new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); | ||
9440 | new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); | ||
9441 | new Sfactory(this,"Assignment_4",new SCreator(Assignment_4_factory)); | ||
9442 | new Sfactory(this,"Assignment_6",new SCreator(Assignment_6_factory)); | ||
9443 | new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); | ||
9444 | new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); | ||
9445 | new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); | ||
9446 | new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); | ||
9447 | new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); | ||
9448 | new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory)); | ||
9449 | new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory)); | ||
9450 | new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); | ||
9451 | new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory)); | ||
9452 | new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); | ||
9453 | new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); | ||
9454 | new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); | ||
9455 | new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); | ||
9456 | new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); | ||
9457 | new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); | ||
9458 | new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); | ||
9459 | new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); | ||
9460 | new Sfactory(this,"Expression",new SCreator(Expression_factory)); | ||
9461 | new Sfactory(this,"Constant_3",new SCreator(Constant_3_factory)); | ||
9462 | new Sfactory(this,"Constant_4",new SCreator(Constant_4_factory)); | ||
9463 | new Sfactory(this,"BinaryExpression_1",new SCreator(BinaryExpression_1_factory)); | ||
9464 | new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory)); | ||
9465 | new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory)); | ||
9466 | new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); | ||
9467 | new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); | ||
9468 | new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory)); | ||
9469 | new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); | ||
9470 | new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); | ||
9471 | new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); | ||
9472 | new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); | ||
9473 | new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); | ||
9474 | new Sfactory(this,"Constant",new SCreator(Constant_factory)); | ||
9475 | new Sfactory(this,"State",new SCreator(State_factory)); | ||
9476 | new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); | ||
9477 | new Sfactory(this,"StateChange",new SCreator(StateChange_factory)); | ||
9478 | new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory)); | ||
9479 | new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory)); | ||
9480 | new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory)); | ||
9481 | new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); | ||
9482 | new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); | ||
9483 | new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); | ||
9484 | new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); | ||
9485 | new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); | ||
9486 | new Sfactory(this,"Assignment_3",new SCreator(Assignment_3_factory)); | ||
9487 | new Sfactory(this,"Assignment_5",new SCreator(Assignment_5_factory)); | ||
9488 | new Sfactory(this,"Assignment_7",new SCreator(Assignment_7_factory)); | ||
9489 | new Sfactory(this,"Assignment_8",new SCreator(Assignment_8_factory)); | ||
9490 | new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); | ||
9491 | new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); | ||
9492 | new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); | ||
9493 | new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); | ||
9494 | new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); | ||
9495 | new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory)); | ||
9496 | new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory)); | ||
9497 | new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory)); | ||
9498 | new Sfactory(this,"Statement_5",new SCreator(Statement_5_factory)); | ||
9499 | new Sfactory(this,"Statement_6",new SCreator(Statement_6_factory)); | ||
9500 | new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); | ||
9501 | new Sfactory(this,"Statement_8",new SCreator(Statement_8_factory)); | ||
9502 | new Sfactory(this,"Statement_9",new SCreator(Statement_9_factory)); | ||
9503 | new Sfactory(this,"ExpressionArgument",new SCreator(ExpressionArgument_factory)); | ||
9504 | new Sfactory(this,"GlobalFunctionDefinition",new SCreator(GlobalFunctionDefinition_factory)); | ||
9505 | new Sfactory(this,"State_1",new SCreator(State_1_factory)); | ||
9506 | new Sfactory(this,"DoWhileStatement",new SCreator(DoWhileStatement_factory)); | ||
9507 | new Sfactory(this,"ParenthesisExpression_1",new SCreator(ParenthesisExpression_1_factory)); | ||
9508 | new Sfactory(this,"Event_5",new SCreator(Event_5_factory)); | ||
9509 | new Sfactory(this,"StateBody",new SCreator(StateBody_factory)); | ||
9510 | new Sfactory(this,"Event_7",new SCreator(Event_7_factory)); | ||
9511 | new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); | ||
9512 | new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); | ||
9513 | new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); | ||
9514 | new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); | ||
9515 | new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); | ||
9516 | new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); | ||
9517 | new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); | ||
9518 | new Sfactory(this,"Event_24",new SCreator(Event_24_factory)); | ||
9519 | new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); | ||
9520 | new Sfactory(this,"Event",new SCreator(Event_factory)); | ||
9521 | new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); | ||
9522 | new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); | ||
9523 | new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory)); | ||
9524 | new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); | ||
9525 | new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); | ||
9526 | new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); | ||
9527 | new Sfactory(this,"Event_32",new SCreator(Event_32_factory)); | ||
9528 | new Sfactory(this,"BinaryExpression",new SCreator(BinaryExpression_factory)); | ||
9529 | new Sfactory(this,"FunctionCallExpression",new SCreator(FunctionCallExpression_factory)); | ||
9530 | new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); | ||
9531 | new Sfactory(this,"StateBody_1",new SCreator(StateBody_1_factory)); | ||
9532 | new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); | ||
9533 | new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); | ||
9534 | new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); | ||
9535 | new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); | ||
9536 | new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory)); | ||
9537 | new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory)); | ||
9538 | new Sfactory(this,"Event_25",new SCreator(Event_25_factory)); | ||
9539 | new Sfactory(this,"Event_9",new SCreator(Event_9_factory)); | ||
9540 | new Sfactory(this,"Statement",new SCreator(Statement_factory)); | ||
9541 | new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory)); | ||
9542 | new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory)); | ||
9543 | new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); | ||
9544 | new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); | ||
9545 | new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); | ||
9546 | new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); | ||
9547 | new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); | ||
9548 | new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); | ||
9549 | new Sfactory(this,"Event_12",new SCreator(Event_12_factory)); | ||
9550 | new Sfactory(this,"Event_14",new SCreator(Event_14_factory)); | ||
9551 | new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); | ||
9552 | new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); | ||
9553 | new Sfactory(this,"Event_19",new SCreator(Event_19_factory)); | ||
9554 | new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); | ||
9555 | new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); | ||
9556 | new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); | ||
9557 | new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); | ||
9558 | new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); | ||
9559 | new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); | ||
9560 | new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); | ||
9561 | new Sfactory(this,"Event_27",new SCreator(Event_27_factory)); | ||
9562 | new Sfactory(this,"Event_28",new SCreator(Event_28_factory)); | ||
9563 | new Sfactory(this,"Event_29",new SCreator(Event_29_factory)); | ||
9564 | new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); | ||
9565 | new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); | ||
9566 | new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); | ||
9567 | new Sfactory(this,"Event_30",new SCreator(Event_30_factory)); | ||
9568 | new Sfactory(this,"Event_31",new SCreator(Event_31_factory)); | ||
9569 | new Sfactory(this,"Event_33",new SCreator(Event_33_factory)); | ||
9570 | new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); | ||
9571 | new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory)); | ||
9572 | new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); | ||
9573 | new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); | ||
9574 | new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); | ||
9575 | new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); | ||
9576 | new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); | ||
9577 | new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory)); | ||
9578 | new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); | ||
9579 | new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); | ||
9580 | new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); | ||
9581 | new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); | ||
9582 | new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); | ||
9583 | new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); | ||
9584 | new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); | ||
9585 | new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); | ||
9586 | new Sfactory(this,"States",new SCreator(States_factory)); | ||
9587 | } | ||
9588 | public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } | ||
9589 | public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } | ||
9590 | public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); } | ||
9591 | public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } | ||
9592 | public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); } | ||
9593 | public static object IdentExpression_factory(Parser yyp) { return new IdentExpression(yyp); } | ||
9594 | public static object error_factory(Parser yyp) { return new error(yyp); } | ||
9595 | public static object BinaryExpression_2_factory(Parser yyp) { return new BinaryExpression_2(yyp); } | ||
9596 | public static object BinaryExpression_3_factory(Parser yyp) { return new BinaryExpression_3(yyp); } | ||
9597 | public static object BinaryExpression_4_factory(Parser yyp) { return new BinaryExpression_4(yyp); } | ||
9598 | public static object BinaryExpression_5_factory(Parser yyp) { return new BinaryExpression_5(yyp); } | ||
9599 | public static object ReturnStatement_2_factory(Parser yyp) { return new ReturnStatement_2(yyp); } | ||
9600 | public static object BinaryExpression_8_factory(Parser yyp) { return new BinaryExpression_8(yyp); } | ||
9601 | public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); } | ||
9602 | public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } | ||
9603 | public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } | ||
9604 | public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } | ||
9605 | public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } | ||
9606 | public static object Typename_factory(Parser yyp) { return new Typename(yyp); } | ||
9607 | public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); } | ||
9608 | public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); } | ||
9609 | public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); } | ||
9610 | public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); } | ||
9611 | public static object ReturnStatement_1_factory(Parser yyp) { return new ReturnStatement_1(yyp); } | ||
9612 | public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); } | ||
9613 | public static object Argument_factory(Parser yyp) { return new Argument(yyp); } | ||
9614 | public static object State_2_factory(Parser yyp) { return new State_2(yyp); } | ||
9615 | public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); } | ||
9616 | public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); } | ||
9617 | public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); } | ||
9618 | public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); } | ||
9619 | public static object ListConstant_factory(Parser yyp) { return new ListConstant(yyp); } | ||
9620 | public static object Event_3_factory(Parser yyp) { return new Event_3(yyp); } | ||
9621 | public static object Event_4_factory(Parser yyp) { return new Event_4(yyp); } | ||
9622 | public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } | ||
9623 | public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } | ||
9624 | public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } | ||
9625 | public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } | ||
9626 | public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } | ||
9627 | public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } | ||
9628 | public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); } | ||
9629 | public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); } | ||
9630 | public static object ArgumentDeclarationList_factory(Parser yyp) { return new ArgumentDeclarationList(yyp); } | ||
9631 | public static object ConstantExpression_factory(Parser yyp) { return new ConstantExpression(yyp); } | ||
9632 | public static object LSLProgramRoot_1_factory(Parser yyp) { return new LSLProgramRoot_1(yyp); } | ||
9633 | public static object LSLProgramRoot_2_factory(Parser yyp) { return new LSLProgramRoot_2(yyp); } | ||
9634 | public static object States_1_factory(Parser yyp) { return new States_1(yyp); } | ||
9635 | public static object States_2_factory(Parser yyp) { return new States_2(yyp); } | ||
9636 | public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } | ||
9637 | public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } | ||
9638 | public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } | ||
9639 | public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); } | ||
9640 | public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } | ||
9641 | public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } | ||
9642 | public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } | ||
9643 | public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } | ||
9644 | public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } | ||
9645 | public static object Assignment_4_factory(Parser yyp) { return new Assignment_4(yyp); } | ||
9646 | public static object Assignment_6_factory(Parser yyp) { return new Assignment_6(yyp); } | ||
9647 | public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } | ||
9648 | public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } | ||
9649 | public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } | ||
9650 | public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } | ||
9651 | public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } | ||
9652 | public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); } | ||
9653 | public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); } | ||
9654 | public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } | ||
9655 | public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); } | ||
9656 | public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } | ||
9657 | public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } | ||
9658 | public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } | ||
9659 | public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } | ||
9660 | public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } | ||
9661 | public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } | ||
9662 | public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } | ||
9663 | public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } | ||
9664 | public static object Expression_factory(Parser yyp) { return new Expression(yyp); } | ||
9665 | public static object Constant_3_factory(Parser yyp) { return new Constant_3(yyp); } | ||
9666 | public static object Constant_4_factory(Parser yyp) { return new Constant_4(yyp); } | ||
9667 | public static object BinaryExpression_1_factory(Parser yyp) { return new BinaryExpression_1(yyp); } | ||
9668 | public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); } | ||
9669 | public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); } | ||
9670 | public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } | ||
9671 | public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } | ||
9672 | public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); } | ||
9673 | public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } | ||
9674 | public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } | ||
9675 | public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } | ||
9676 | public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } | ||
9677 | public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } | ||
9678 | public static object Constant_factory(Parser yyp) { return new Constant(yyp); } | ||
9679 | public static object State_factory(Parser yyp) { return new State(yyp); } | ||
9680 | public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } | ||
9681 | public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); } | ||
9682 | public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); } | ||
9683 | public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); } | ||
9684 | public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); } | ||
9685 | public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } | ||
9686 | public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } | ||
9687 | public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } | ||
9688 | public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } | ||
9689 | public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } | ||
9690 | public static object Assignment_3_factory(Parser yyp) { return new Assignment_3(yyp); } | ||
9691 | public static object Assignment_5_factory(Parser yyp) { return new Assignment_5(yyp); } | ||
9692 | public static object Assignment_7_factory(Parser yyp) { return new Assignment_7(yyp); } | ||
9693 | public static object Assignment_8_factory(Parser yyp) { return new Assignment_8(yyp); } | ||
9694 | public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } | ||
9695 | public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } | ||
9696 | public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } | ||
9697 | public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } | ||
9698 | public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } | ||
9699 | public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); } | ||
9700 | public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); } | ||
9701 | public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); } | ||
9702 | public static object Statement_5_factory(Parser yyp) { return new Statement_5(yyp); } | ||
9703 | public static object Statement_6_factory(Parser yyp) { return new Statement_6(yyp); } | ||
9704 | public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } | ||
9705 | public static object Statement_8_factory(Parser yyp) { return new Statement_8(yyp); } | ||
9706 | public static object Statement_9_factory(Parser yyp) { return new Statement_9(yyp); } | ||
9707 | public static object ExpressionArgument_factory(Parser yyp) { return new ExpressionArgument(yyp); } | ||
9708 | public static object GlobalFunctionDefinition_factory(Parser yyp) { return new GlobalFunctionDefinition(yyp); } | ||
9709 | public static object State_1_factory(Parser yyp) { return new State_1(yyp); } | ||
9710 | public static object DoWhileStatement_factory(Parser yyp) { return new DoWhileStatement(yyp); } | ||
9711 | public static object ParenthesisExpression_1_factory(Parser yyp) { return new ParenthesisExpression_1(yyp); } | ||
9712 | public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); } | ||
9713 | public static object StateBody_factory(Parser yyp) { return new StateBody(yyp); } | ||
9714 | public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); } | ||
9715 | public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } | ||
9716 | public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } | ||
9717 | public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } | ||
9718 | public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } | ||
9719 | public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } | ||
9720 | public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } | ||
9721 | public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } | ||
9722 | public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); } | ||
9723 | public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } | ||
9724 | public static object Event_factory(Parser yyp) { return new Event(yyp); } | ||
9725 | public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } | ||
9726 | public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } | ||
9727 | public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); } | ||
9728 | public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } | ||
9729 | public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } | ||
9730 | public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } | ||
9731 | public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); } | ||
9732 | public static object BinaryExpression_factory(Parser yyp) { return new BinaryExpression(yyp); } | ||
9733 | public static object FunctionCallExpression_factory(Parser yyp) { return new FunctionCallExpression(yyp); } | ||
9734 | public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } | ||
9735 | public static object StateBody_1_factory(Parser yyp) { return new StateBody_1(yyp); } | ||
9736 | public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } | ||
9737 | public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } | ||
9738 | public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } | ||
9739 | public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } | ||
9740 | public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); } | ||
9741 | public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); } | ||
9742 | public static object Event_25_factory(Parser yyp) { return new Event_25(yyp); } | ||
9743 | public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); } | ||
9744 | public static object Statement_factory(Parser yyp) { return new Statement(yyp); } | ||
9745 | public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); } | ||
9746 | public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); } | ||
9747 | public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } | ||
9748 | public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } | ||
9749 | public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } | ||
9750 | public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } | ||
9751 | public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } | ||
9752 | public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } | ||
9753 | public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); } | ||
9754 | public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); } | ||
9755 | public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } | ||
9756 | public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } | ||
9757 | public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); } | ||
9758 | public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } | ||
9759 | public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } | ||
9760 | public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } | ||
9761 | public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } | ||
9762 | public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } | ||
9763 | public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } | ||
9764 | public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } | ||
9765 | public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); } | ||
9766 | public static object Event_28_factory(Parser yyp) { return new Event_28(yyp); } | ||
9767 | public static object Event_29_factory(Parser yyp) { return new Event_29(yyp); } | ||
9768 | public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } | ||
9769 | public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } | ||
9770 | public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } | ||
9771 | public static object Event_30_factory(Parser yyp) { return new Event_30(yyp); } | ||
9772 | public static object Event_31_factory(Parser yyp) { return new Event_31(yyp); } | ||
9773 | public static object Event_33_factory(Parser yyp) { return new Event_33(yyp); } | ||
9774 | public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } | ||
9775 | public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); } | ||
9776 | public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } | ||
9777 | public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } | ||
9778 | public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } | ||
9779 | public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } | ||
9780 | public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } | ||
9781 | public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); } | ||
9782 | public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } | ||
9783 | public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } | ||
9784 | public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } | ||
9785 | public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } | ||
9786 | public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } | ||
9787 | public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } | ||
9788 | public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } | ||
9789 | public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } | ||
9790 | public static object States_factory(Parser yyp) { return new States(yyp); } | ||
9791 | } | ||
9792 | public class LSLSyntax | ||
9793 | : Parser { | ||
9794 | public LSLSyntax | ||
9795 | ():base(new yyLSLSyntax | ||
9796 | (),new LSLTokens()) {} | ||
9797 | public LSLSyntax | ||
9798 | (YyParser syms):base(syms,new LSLTokens()) {} | ||
9799 | public LSLSyntax | ||
9800 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} | ||
9801 | |||
9802 | } | ||
9803 | } | ||