diff options
Diffstat (limited to '')
6 files changed, 0 insertions, 31202 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/CSCodeGenerator.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/CSCodeGenerator.cs deleted file mode 100644 index c4b0fd4..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/CSCodeGenerator.cs +++ /dev/null | |||
@@ -1,946 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.IO; | ||
30 | using System.Collections.Generic; | ||
31 | using Tools; | ||
32 | |||
33 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | ||
34 | { | ||
35 | public class CSCodeGenerator | ||
36 | { | ||
37 | private SYMBOL m_astRoot = null; | ||
38 | private Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>> m_positionMap; | ||
39 | private int m_indentWidth = 4; // for indentation | ||
40 | private int m_braceCount; // for indentation | ||
41 | private int m_CSharpLine; // the current line of generated C# code | ||
42 | private int m_CSharpCol; // the current column of generated C# code | ||
43 | |||
44 | /// <summary> | ||
45 | /// Creates an 'empty' CSCodeGenerator instance. | ||
46 | /// </summary> | ||
47 | public CSCodeGenerator() | ||
48 | { | ||
49 | ResetCounters(); | ||
50 | } | ||
51 | |||
52 | /// <summary> | ||
53 | /// Get the mapping between LSL and C# line/column number. | ||
54 | /// </summary> | ||
55 | /// <returns>Dictionary\<KeyValuePair\<int, int\>, KeyValuePair\<int, int\>\>.</returns> | ||
56 | public Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>> PositionMap | ||
57 | { | ||
58 | get { return m_positionMap; } | ||
59 | } | ||
60 | |||
61 | /// <summary> | ||
62 | /// Get the mapping between LSL and C# line/column number. | ||
63 | /// </summary> | ||
64 | /// <returns>SYMBOL pointing to root of the abstract syntax tree.</returns> | ||
65 | public SYMBOL ASTRoot | ||
66 | { | ||
67 | get { return m_astRoot; } | ||
68 | } | ||
69 | |||
70 | /// <summary> | ||
71 | /// Resets various counters and metadata. | ||
72 | /// </summary> | ||
73 | private void ResetCounters() | ||
74 | { | ||
75 | m_braceCount = 0; | ||
76 | m_CSharpLine = 0; | ||
77 | m_CSharpCol = 1; | ||
78 | m_positionMap = new Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>>(); | ||
79 | m_astRoot = null; | ||
80 | } | ||
81 | |||
82 | /// <summary> | ||
83 | /// Generate the code from the AST we have. | ||
84 | /// </summary> | ||
85 | /// <param name="script">The LSL source as a string.</param> | ||
86 | /// <returns>String containing the generated C# code.</returns> | ||
87 | public string Convert(string script) | ||
88 | { | ||
89 | ResetCounters(); | ||
90 | Parser p = new LSLSyntax(new yyLSLSyntax(), new ErrorHandler(true)); | ||
91 | // Obviously this needs to be in a try/except block. | ||
92 | LSL2CSCodeTransformer codeTransformer = new LSL2CSCodeTransformer(p.Parse(script)); | ||
93 | m_astRoot = codeTransformer.Transform(); | ||
94 | |||
95 | string retstr = String.Empty; | ||
96 | |||
97 | // standard preamble | ||
98 | //retstr = GenerateLine("using OpenSim.Region.ScriptEngine.Common;"); | ||
99 | //retstr += GenerateLine("using System.Collections.Generic;"); | ||
100 | //retstr += GenerateLine(""); | ||
101 | //retstr += GenerateLine("namespace SecondLife"); | ||
102 | //retstr += GenerateLine("{"); | ||
103 | m_braceCount++; | ||
104 | //retstr += GenerateIndentedLine("public class Script : OpenSim.Region.ScriptEngine.Common"); | ||
105 | //retstr += GenerateIndentedLine("{"); | ||
106 | m_braceCount++; | ||
107 | |||
108 | // line number | ||
109 | m_CSharpLine += 3; | ||
110 | |||
111 | // here's the payload | ||
112 | retstr += GenerateLine(); | ||
113 | foreach (SYMBOL s in m_astRoot.kids) | ||
114 | retstr += GenerateNode(s); | ||
115 | |||
116 | // close braces! | ||
117 | m_braceCount--; | ||
118 | //retstr += GenerateIndentedLine("}"); | ||
119 | m_braceCount--; | ||
120 | //retstr += GenerateLine("}"); | ||
121 | |||
122 | return retstr; | ||
123 | } | ||
124 | |||
125 | /// <summary> | ||
126 | /// Recursively called to generate each type of node. Will generate this | ||
127 | /// node, then all it's children. | ||
128 | /// </summary> | ||
129 | /// <param name="s">The current node to generate code for.</param> | ||
130 | /// <returns>String containing C# code for SYMBOL s.</returns> | ||
131 | private string GenerateNode(SYMBOL s) | ||
132 | { | ||
133 | string retstr = String.Empty; | ||
134 | |||
135 | // make sure to put type lower in the inheritance hierarchy first | ||
136 | // ie: since IdentArgument and ExpressionArgument inherit from | ||
137 | // Argument, put IdentArgument and ExpressionArgument before Argument | ||
138 | if (s is GlobalFunctionDefinition) | ||
139 | retstr += GenerateGlobalFunctionDefinition((GlobalFunctionDefinition) s); | ||
140 | else if (s is GlobalVariableDeclaration) | ||
141 | retstr += GenerateGlobalVariableDeclaration((GlobalVariableDeclaration) s); | ||
142 | else if (s is State) | ||
143 | retstr += GenerateState((State) s); | ||
144 | else if (s is CompoundStatement) | ||
145 | retstr += GenerateCompoundStatement((CompoundStatement) s); | ||
146 | else if (s is Declaration) | ||
147 | retstr += GenerateDeclaration((Declaration) s); | ||
148 | else if (s is Statement) | ||
149 | retstr += GenerateStatement((Statement) s); | ||
150 | else if (s is ReturnStatement) | ||
151 | retstr += GenerateReturnStatement((ReturnStatement) s); | ||
152 | else if (s is JumpLabel) | ||
153 | retstr += GenerateJumpLabel((JumpLabel) s); | ||
154 | else if (s is JumpStatement) | ||
155 | retstr += GenerateJumpStatement((JumpStatement) s); | ||
156 | else if (s is StateChange) | ||
157 | retstr += GenerateStateChange((StateChange) s); | ||
158 | else if (s is IfStatement) | ||
159 | retstr += GenerateIfStatement((IfStatement) s); | ||
160 | else if (s is WhileStatement) | ||
161 | retstr += GenerateWhileStatement((WhileStatement) s); | ||
162 | else if (s is DoWhileStatement) | ||
163 | retstr += GenerateDoWhileStatement((DoWhileStatement) s); | ||
164 | else if (s is ForLoop) | ||
165 | retstr += GenerateForLoop((ForLoop) s); | ||
166 | else if (s is ArgumentList) | ||
167 | retstr += GenerateArgumentList((ArgumentList) s); | ||
168 | else if (s is Assignment) | ||
169 | retstr += GenerateAssignment((Assignment) s); | ||
170 | else if (s is BinaryExpression) | ||
171 | retstr += GenerateBinaryExpression((BinaryExpression) s); | ||
172 | else if (s is ParenthesisExpression) | ||
173 | retstr += GenerateParenthesisExpression((ParenthesisExpression) s); | ||
174 | else if (s is UnaryExpression) | ||
175 | retstr += GenerateUnaryExpression((UnaryExpression) s); | ||
176 | else if (s is IncrementDecrementExpression) | ||
177 | retstr += GenerateIncrementDecrementExpression((IncrementDecrementExpression) s); | ||
178 | else if (s is TypecastExpression) | ||
179 | retstr += GenerateTypecastExpression((TypecastExpression) s); | ||
180 | else if (s is FunctionCall) | ||
181 | retstr += GenerateFunctionCall((FunctionCall) s); | ||
182 | else if (s is VectorConstant) | ||
183 | retstr += GenerateVectorConstant((VectorConstant) s); | ||
184 | else if (s is RotationConstant) | ||
185 | retstr += GenerateRotationConstant((RotationConstant) s); | ||
186 | else if (s is ListConstant) | ||
187 | retstr += GenerateListConstant((ListConstant) s); | ||
188 | else if (s is Constant) | ||
189 | retstr += GenerateConstant((Constant) s); | ||
190 | else if (s is IdentDotExpression) | ||
191 | retstr += Generate(((IdentDotExpression) s).Name + "." + ((IdentDotExpression) s).Member, s); | ||
192 | else if (s is IdentExpression) | ||
193 | retstr += Generate(((IdentExpression) s).Name, s); | ||
194 | else if (s is IDENT) | ||
195 | retstr += Generate(((TOKEN) s).yytext, s); | ||
196 | else | ||
197 | { | ||
198 | foreach (SYMBOL kid in s.kids) | ||
199 | retstr += GenerateNode(kid); | ||
200 | } | ||
201 | |||
202 | return retstr; | ||
203 | } | ||
204 | |||
205 | /// <summary> | ||
206 | /// Generates the code for a GlobalFunctionDefinition node. | ||
207 | /// </summary> | ||
208 | /// <param name="gf">The GlobalFunctionDefinition node.</param> | ||
209 | /// <returns>String containing C# code for GlobalFunctionDefinition gf.</returns> | ||
210 | private string GenerateGlobalFunctionDefinition(GlobalFunctionDefinition gf) | ||
211 | { | ||
212 | string retstr = String.Empty; | ||
213 | |||
214 | // we need to separate the argument declaration list from other kids | ||
215 | List<SYMBOL> argumentDeclarationListKids = new List<SYMBOL>(); | ||
216 | List<SYMBOL> remainingKids = new List<SYMBOL>(); | ||
217 | |||
218 | foreach (SYMBOL kid in gf.kids) | ||
219 | if (kid is ArgumentDeclarationList) | ||
220 | argumentDeclarationListKids.Add(kid); | ||
221 | else | ||
222 | remainingKids.Add(kid); | ||
223 | |||
224 | retstr += GenerateIndented(String.Format("{0} {1}(", gf.ReturnType, gf.Name), gf); | ||
225 | |||
226 | // print the state arguments, if any | ||
227 | foreach (SYMBOL kid in argumentDeclarationListKids) | ||
228 | retstr += GenerateArgumentDeclarationList((ArgumentDeclarationList) kid); | ||
229 | |||
230 | retstr += GenerateLine(")"); | ||
231 | |||
232 | foreach (SYMBOL kid in remainingKids) | ||
233 | retstr += GenerateNode(kid); | ||
234 | |||
235 | return retstr; | ||
236 | } | ||
237 | |||
238 | /// <summary> | ||
239 | /// Generates the code for a GlobalVariableDeclaration node. | ||
240 | /// </summary> | ||
241 | /// <param name="gv">The GlobalVariableDeclaration node.</param> | ||
242 | /// <returns>String containing C# code for GlobalVariableDeclaration gv.</returns> | ||
243 | private string GenerateGlobalVariableDeclaration(GlobalVariableDeclaration gv) | ||
244 | { | ||
245 | string retstr = String.Empty; | ||
246 | |||
247 | foreach (SYMBOL s in gv.kids) | ||
248 | { | ||
249 | retstr += Indent(); | ||
250 | retstr += GenerateNode(s); | ||
251 | retstr += GenerateLine(";"); | ||
252 | } | ||
253 | |||
254 | return retstr; | ||
255 | } | ||
256 | |||
257 | /// <summary> | ||
258 | /// Generates the code for a State node. | ||
259 | /// </summary> | ||
260 | /// <param name="s">The State node.</param> | ||
261 | /// <returns>String containing C# code for State s.</returns> | ||
262 | private string GenerateState(State s) | ||
263 | { | ||
264 | string retstr = String.Empty; | ||
265 | |||
266 | foreach (SYMBOL kid in s.kids) | ||
267 | if (kid is StateEvent) | ||
268 | retstr += GenerateStateEvent((StateEvent) kid, s.Name); | ||
269 | |||
270 | return retstr; | ||
271 | } | ||
272 | |||
273 | /// <summary> | ||
274 | /// Generates the code for a StateEvent node. | ||
275 | /// </summary> | ||
276 | /// <param name="se">The StateEvent node.</param> | ||
277 | /// <param name="parentStateName">The name of the parent state.</param> | ||
278 | /// <returns>String containing C# code for StateEvent se.</returns> | ||
279 | private string GenerateStateEvent(StateEvent se, string parentStateName) | ||
280 | { | ||
281 | string retstr = String.Empty; | ||
282 | |||
283 | // we need to separate the argument declaration list from other kids | ||
284 | List<SYMBOL> argumentDeclarationListKids = new List<SYMBOL>(); | ||
285 | List<SYMBOL> remainingKids = new List<SYMBOL>(); | ||
286 | |||
287 | foreach (SYMBOL kid in se.kids) | ||
288 | if (kid is ArgumentDeclarationList) | ||
289 | argumentDeclarationListKids.Add(kid); | ||
290 | else | ||
291 | remainingKids.Add(kid); | ||
292 | |||
293 | // "state" (function) declaration | ||
294 | retstr += GenerateIndented(String.Format("public void {0}_event_{1}(", parentStateName, se.Name), se); | ||
295 | |||
296 | // print the state arguments, if any | ||
297 | foreach (SYMBOL kid in argumentDeclarationListKids) | ||
298 | retstr += GenerateArgumentDeclarationList((ArgumentDeclarationList) kid); | ||
299 | |||
300 | retstr += GenerateLine(")"); | ||
301 | |||
302 | foreach (SYMBOL kid in remainingKids) | ||
303 | retstr += GenerateNode(kid); | ||
304 | |||
305 | return retstr; | ||
306 | } | ||
307 | |||
308 | /// <summary> | ||
309 | /// Generates the code for an ArgumentDeclarationList node. | ||
310 | /// </summary> | ||
311 | /// <param name="adl">The ArgumentDeclarationList node.</param> | ||
312 | /// <returns>String containing C# code for ArgumentDeclarationList adl.</returns> | ||
313 | private string GenerateArgumentDeclarationList(ArgumentDeclarationList adl) | ||
314 | { | ||
315 | string retstr = String.Empty; | ||
316 | |||
317 | int comma = adl.kids.Count - 1; // tells us whether to print a comma | ||
318 | |||
319 | foreach (Declaration d in adl.kids) | ||
320 | { | ||
321 | retstr += Generate(String.Format("{0} {1}", d.Datatype, d.Id), d); | ||
322 | if (0 < comma--) | ||
323 | retstr += Generate(", "); | ||
324 | } | ||
325 | |||
326 | return retstr; | ||
327 | } | ||
328 | |||
329 | /// <summary> | ||
330 | /// Generates the code for an ArgumentList node. | ||
331 | /// </summary> | ||
332 | /// <param name="al">The ArgumentList node.</param> | ||
333 | /// <returns>String containing C# code for ArgumentList al.</returns> | ||
334 | private string GenerateArgumentList(ArgumentList al) | ||
335 | { | ||
336 | string retstr = String.Empty; | ||
337 | |||
338 | int comma = al.kids.Count - 1; // tells us whether to print a comma | ||
339 | |||
340 | foreach (SYMBOL s in al.kids) | ||
341 | { | ||
342 | retstr += GenerateNode(s); | ||
343 | if (0 < comma--) | ||
344 | retstr += Generate(", "); | ||
345 | } | ||
346 | |||
347 | return retstr; | ||
348 | } | ||
349 | |||
350 | /// <summary> | ||
351 | /// Generates the code for a CompoundStatement node. | ||
352 | /// </summary> | ||
353 | /// <param name="cs">The CompoundStatement node.</param> | ||
354 | /// <returns>String containing C# code for CompoundStatement cs.</returns> | ||
355 | private string GenerateCompoundStatement(CompoundStatement cs) | ||
356 | { | ||
357 | string retstr = String.Empty; | ||
358 | |||
359 | // opening brace | ||
360 | retstr += GenerateIndentedLine("{"); | ||
361 | m_braceCount++; | ||
362 | |||
363 | foreach (SYMBOL kid in cs.kids) | ||
364 | retstr += GenerateNode(kid); | ||
365 | |||
366 | // closing brace | ||
367 | m_braceCount--; | ||
368 | retstr += GenerateIndentedLine("}"); | ||
369 | |||
370 | return retstr; | ||
371 | } | ||
372 | |||
373 | /// <summary> | ||
374 | /// Generates the code for a Declaration node. | ||
375 | /// </summary> | ||
376 | /// <param name="d">The Declaration node.</param> | ||
377 | /// <returns>String containing C# code for Declaration d.</returns> | ||
378 | private string GenerateDeclaration(Declaration d) | ||
379 | { | ||
380 | return Generate(String.Format("{0} {1}", d.Datatype, d.Id), d); | ||
381 | } | ||
382 | |||
383 | /// <summary> | ||
384 | /// Generates the code for a Statement node. | ||
385 | /// </summary> | ||
386 | /// <param name="s">The Statement node.</param> | ||
387 | /// <returns>String containing C# code for Statement s.</returns> | ||
388 | private string GenerateStatement(Statement s) | ||
389 | { | ||
390 | string retstr = String.Empty; | ||
391 | bool printSemicolon = true; | ||
392 | |||
393 | retstr += Indent(); | ||
394 | |||
395 | if (0 < s.kids.Count) | ||
396 | { | ||
397 | // Jump label prints its own colon, we don't need a semicolon. | ||
398 | printSemicolon = !(s.kids.Top is JumpLabel); | ||
399 | |||
400 | foreach (SYMBOL kid in s.kids) | ||
401 | retstr += GenerateNode(kid); | ||
402 | } | ||
403 | |||
404 | if (printSemicolon) | ||
405 | retstr += GenerateLine(";"); | ||
406 | |||
407 | return retstr; | ||
408 | } | ||
409 | |||
410 | /// <summary> | ||
411 | /// Generates the code for an Assignment node. | ||
412 | /// </summary> | ||
413 | /// <param name="a">The Assignment node.</param> | ||
414 | /// <returns>String containing C# code for Assignment a.</returns> | ||
415 | private string GenerateAssignment(Assignment a) | ||
416 | { | ||
417 | string retstr = String.Empty; | ||
418 | |||
419 | retstr += GenerateNode((SYMBOL) a.kids.Pop()); | ||
420 | retstr += Generate(String.Format(" {0} ", a.AssignmentType), a); | ||
421 | foreach (SYMBOL kid in a.kids) | ||
422 | retstr += GenerateNode(kid); | ||
423 | |||
424 | return retstr; | ||
425 | } | ||
426 | |||
427 | /// <summary> | ||
428 | /// Generates the code for a ReturnStatement node. | ||
429 | /// </summary> | ||
430 | /// <param name="rs">The ReturnStatement node.</param> | ||
431 | /// <returns>String containing C# code for ReturnStatement rs.</returns> | ||
432 | private string GenerateReturnStatement(ReturnStatement rs) | ||
433 | { | ||
434 | string retstr = String.Empty; | ||
435 | |||
436 | retstr += Generate("return ", rs); | ||
437 | |||
438 | foreach (SYMBOL kid in rs.kids) | ||
439 | retstr += GenerateNode(kid); | ||
440 | |||
441 | return retstr; | ||
442 | } | ||
443 | |||
444 | /// <summary> | ||
445 | /// Generates the code for a JumpLabel node. | ||
446 | /// </summary> | ||
447 | /// <param name="jl">The JumpLabel node.</param> | ||
448 | /// <returns>String containing C# code for JumpLabel jl.</returns> | ||
449 | private string GenerateJumpLabel(JumpLabel jl) | ||
450 | { | ||
451 | return Generate(String.Format("{0}:\n", jl.LabelName), jl); | ||
452 | } | ||
453 | |||
454 | /// <summary> | ||
455 | /// Generates the code for a JumpStatement node. | ||
456 | /// </summary> | ||
457 | /// <param name="js">The JumpStatement node.</param> | ||
458 | /// <returns>String containing C# code for JumpStatement js.</returns> | ||
459 | private string GenerateJumpStatement(JumpStatement js) | ||
460 | { | ||
461 | return Generate(String.Format("goto {0}", js.TargetName), js); | ||
462 | } | ||
463 | |||
464 | /// <summary> | ||
465 | /// Generates the code for an IfStatement node. | ||
466 | /// </summary> | ||
467 | /// <param name="ifs">The IfStatement node.</param> | ||
468 | /// <returns>String containing C# code for IfStatement ifs.</returns> | ||
469 | private string GenerateIfStatement(IfStatement ifs) | ||
470 | { | ||
471 | string retstr = String.Empty; | ||
472 | |||
473 | retstr += GenerateIndented("if (", ifs); | ||
474 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
475 | retstr += GenerateLine(")"); | ||
476 | |||
477 | // CompoundStatement handles indentation itself but we need to do it | ||
478 | // otherwise. | ||
479 | bool indentHere = ifs.kids.Top is Statement; | ||
480 | if (indentHere) m_braceCount++; | ||
481 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
482 | if (indentHere) m_braceCount--; | ||
483 | |||
484 | if (0 < ifs.kids.Count) // do it again for an else | ||
485 | { | ||
486 | retstr += GenerateIndentedLine("else", ifs); | ||
487 | |||
488 | indentHere = ifs.kids.Top is Statement; | ||
489 | if (indentHere) m_braceCount++; | ||
490 | retstr += GenerateNode((SYMBOL) ifs.kids.Pop()); | ||
491 | if (indentHere) m_braceCount--; | ||
492 | } | ||
493 | |||
494 | return retstr; | ||
495 | } | ||
496 | |||
497 | /// <summary> | ||
498 | /// Generates the code for a StateChange node. | ||
499 | /// </summary> | ||
500 | /// <param name="sc">The StateChange node.</param> | ||
501 | /// <returns>String containing C# code for StateChange sc.</returns> | ||
502 | private string GenerateStateChange(StateChange sc) | ||
503 | { | ||
504 | return Generate(String.Format("state(\"{0}\")", sc.NewState), sc); | ||
505 | } | ||
506 | |||
507 | /// <summary> | ||
508 | /// Generates the code for a WhileStatement node. | ||
509 | /// </summary> | ||
510 | /// <param name="ws">The WhileStatement node.</param> | ||
511 | /// <returns>String containing C# code for WhileStatement ws.</returns> | ||
512 | private string GenerateWhileStatement(WhileStatement ws) | ||
513 | { | ||
514 | string retstr = String.Empty; | ||
515 | |||
516 | retstr += GenerateIndented("while (", ws); | ||
517 | retstr += GenerateNode((SYMBOL) ws.kids.Pop()); | ||
518 | retstr += GenerateLine(")"); | ||
519 | |||
520 | // CompoundStatement handles indentation itself but we need to do it | ||
521 | // otherwise. | ||
522 | bool indentHere = ws.kids.Top is Statement; | ||
523 | if (indentHere) m_braceCount++; | ||
524 | retstr += GenerateNode((SYMBOL) ws.kids.Pop()); | ||
525 | if (indentHere) m_braceCount--; | ||
526 | |||
527 | return retstr; | ||
528 | } | ||
529 | |||
530 | /// <summary> | ||
531 | /// Generates the code for a DoWhileStatement node. | ||
532 | /// </summary> | ||
533 | /// <param name="dws">The DoWhileStatement node.</param> | ||
534 | /// <returns>String containing C# code for DoWhileStatement dws.</returns> | ||
535 | private string GenerateDoWhileStatement(DoWhileStatement dws) | ||
536 | { | ||
537 | string retstr = String.Empty; | ||
538 | |||
539 | retstr += GenerateIndentedLine("do", dws); | ||
540 | |||
541 | // CompoundStatement handles indentation itself but we need to do it | ||
542 | // otherwise. | ||
543 | bool indentHere = dws.kids.Top is Statement; | ||
544 | if (indentHere) m_braceCount++; | ||
545 | retstr += GenerateNode((SYMBOL) dws.kids.Pop()); | ||
546 | if (indentHere) m_braceCount--; | ||
547 | |||
548 | retstr += GenerateIndented("while (", dws); | ||
549 | retstr += GenerateNode((SYMBOL) dws.kids.Pop()); | ||
550 | retstr += GenerateLine(");"); | ||
551 | |||
552 | return retstr; | ||
553 | } | ||
554 | |||
555 | /// <summary> | ||
556 | /// Generates the code for a ForLoop node. | ||
557 | /// </summary> | ||
558 | /// <param name="fl">The ForLoop node.</param> | ||
559 | /// <returns>String containing C# code for ForLoop fl.</returns> | ||
560 | private string GenerateForLoop(ForLoop fl) | ||
561 | { | ||
562 | string retstr = String.Empty; | ||
563 | |||
564 | retstr += GenerateIndented("for (", fl); | ||
565 | |||
566 | // for ( x = 0 ; x < 10 ; x++ ) | ||
567 | // ^^^^^^^ | ||
568 | retstr += GenerateForLoopStatement((ForLoopStatement) fl.kids.Pop()); | ||
569 | retstr += Generate("; "); | ||
570 | // for ( x = 0 ; x < 10 ; x++ ) | ||
571 | // ^^^^^^^^ | ||
572 | retstr += GenerateNode((SYMBOL) fl.kids.Pop()); | ||
573 | retstr += Generate("; "); | ||
574 | // for ( x = 0 ; x < 10 ; x++ ) | ||
575 | // ^^^^^ | ||
576 | retstr += GenerateForLoopStatement((ForLoopStatement) fl.kids.Pop()); | ||
577 | retstr += GenerateLine(")"); | ||
578 | |||
579 | // CompoundStatement handles indentation itself but we need to do it | ||
580 | // otherwise. | ||
581 | bool indentHere = fl.kids.Top is Statement; | ||
582 | if (indentHere) m_braceCount++; | ||
583 | retstr += GenerateNode((SYMBOL) fl.kids.Pop()); | ||
584 | if (indentHere) m_braceCount--; | ||
585 | |||
586 | return retstr; | ||
587 | } | ||
588 | |||
589 | /// <summary> | ||
590 | /// Generates the code for a ForLoopStatement node. | ||
591 | /// </summary> | ||
592 | /// <param name="fls">The ForLoopStatement node.</param> | ||
593 | /// <returns>String containing C# code for ForLoopStatement fls.</returns> | ||
594 | private string GenerateForLoopStatement(ForLoopStatement fls) | ||
595 | { | ||
596 | string retstr = String.Empty; | ||
597 | |||
598 | int comma = fls.kids.Count - 1; // tells us whether to print a comma | ||
599 | |||
600 | foreach (SYMBOL s in fls.kids) | ||
601 | { | ||
602 | retstr += GenerateNode(s); | ||
603 | if (0 < comma--) | ||
604 | retstr += Generate(", "); | ||
605 | } | ||
606 | |||
607 | return retstr; | ||
608 | } | ||
609 | |||
610 | /// <summary> | ||
611 | /// Generates the code for a BinaryExpression node. | ||
612 | /// </summary> | ||
613 | /// <param name="be">The BinaryExpression node.</param> | ||
614 | /// <returns>String containing C# code for BinaryExpression be.</returns> | ||
615 | private string GenerateBinaryExpression(BinaryExpression be) | ||
616 | { | ||
617 | string retstr = String.Empty; | ||
618 | |||
619 | retstr += GenerateNode((SYMBOL) be.kids.Pop()); | ||
620 | retstr += Generate(String.Format(" {0} ", be.ExpressionSymbol), be); | ||
621 | foreach (SYMBOL kid in be.kids) | ||
622 | retstr += GenerateNode(kid); | ||
623 | |||
624 | return retstr; | ||
625 | } | ||
626 | |||
627 | /// <summary> | ||
628 | /// Generates the code for a UnaryExpression node. | ||
629 | /// </summary> | ||
630 | /// <param name="ue">The UnaryExpression node.</param> | ||
631 | /// <returns>String containing C# code for UnaryExpression ue.</returns> | ||
632 | private string GenerateUnaryExpression(UnaryExpression ue) | ||
633 | { | ||
634 | string retstr = String.Empty; | ||
635 | |||
636 | retstr += Generate(ue.UnarySymbol, ue); | ||
637 | retstr += GenerateNode((SYMBOL) ue.kids.Pop()); | ||
638 | |||
639 | return retstr; | ||
640 | } | ||
641 | |||
642 | /// <summary> | ||
643 | /// Generates the code for a ParenthesisExpression node. | ||
644 | /// </summary> | ||
645 | /// <param name="pe">The ParenthesisExpression node.</param> | ||
646 | /// <returns>String containing C# code for ParenthesisExpression pe.</returns> | ||
647 | private string GenerateParenthesisExpression(ParenthesisExpression pe) | ||
648 | { | ||
649 | string retstr = String.Empty; | ||
650 | |||
651 | retstr += Generate("("); | ||
652 | foreach (SYMBOL kid in pe.kids) | ||
653 | retstr += GenerateNode(kid); | ||
654 | retstr += Generate(")"); | ||
655 | |||
656 | return retstr; | ||
657 | } | ||
658 | |||
659 | /// <summary> | ||
660 | /// Generates the code for a IncrementDecrementExpression node. | ||
661 | /// </summary> | ||
662 | /// <param name="ide">The IncrementDecrementExpression node.</param> | ||
663 | /// <returns>String containing C# code for IncrementDecrementExpression ide.</returns> | ||
664 | private string GenerateIncrementDecrementExpression(IncrementDecrementExpression ide) | ||
665 | { | ||
666 | string retstr = String.Empty; | ||
667 | |||
668 | if (0 < ide.kids.Count) | ||
669 | { | ||
670 | IdentDotExpression dot = (IdentDotExpression) ide.kids.Top; | ||
671 | retstr += Generate(String.Format("{0}", ide.PostOperation ? dot.Name + "." + dot.Member + ide.Operation : ide.Operation + dot.Name + "." + dot.Member), ide); | ||
672 | } | ||
673 | else | ||
674 | retstr += Generate(String.Format("{0}", ide.PostOperation ? ide.Name + ide.Operation : ide.Operation + ide.Name), ide); | ||
675 | |||
676 | return retstr; | ||
677 | } | ||
678 | |||
679 | /// <summary> | ||
680 | /// Generates the code for a TypecastExpression node. | ||
681 | /// </summary> | ||
682 | /// <param name="te">The TypecastExpression node.</param> | ||
683 | /// <returns>String containing C# code for TypecastExpression te.</returns> | ||
684 | private string GenerateTypecastExpression(TypecastExpression te) | ||
685 | { | ||
686 | string retstr = String.Empty; | ||
687 | |||
688 | // we wrap all typecasted statements in parentheses | ||
689 | retstr += Generate(String.Format("({0}) (", te.TypecastType), te); | ||
690 | retstr += GenerateNode((SYMBOL) te.kids.Pop()); | ||
691 | retstr += Generate(")"); | ||
692 | |||
693 | return retstr; | ||
694 | } | ||
695 | |||
696 | /// <summary> | ||
697 | /// Generates the code for a FunctionCall node. | ||
698 | /// </summary> | ||
699 | /// <param name="fc">The FunctionCall node.</param> | ||
700 | /// <returns>String containing C# code for FunctionCall fc.</returns> | ||
701 | private string GenerateFunctionCall(FunctionCall fc) | ||
702 | { | ||
703 | string retstr = String.Empty; | ||
704 | |||
705 | retstr += Generate(String.Format("{0}(", fc.Id), fc); | ||
706 | |||
707 | foreach (SYMBOL kid in fc.kids) | ||
708 | retstr += GenerateNode(kid); | ||
709 | |||
710 | retstr += Generate(")"); | ||
711 | |||
712 | return retstr; | ||
713 | } | ||
714 | |||
715 | /// <summary> | ||
716 | /// Generates the code for a Constant node. | ||
717 | /// </summary> | ||
718 | /// <param name="c">The Constant node.</param> | ||
719 | /// <returns>String containing C# code for Constant c.</returns> | ||
720 | private string GenerateConstant(Constant c) | ||
721 | { | ||
722 | string retstr = String.Empty; | ||
723 | |||
724 | // Supprt LSL's weird acceptance of floats with no trailing digits | ||
725 | // after the period. Turn float x = 10.; into float x = 10.0; | ||
726 | if ("LSL_Types.LSLFloat" == c.Type) | ||
727 | { | ||
728 | int dotIndex = c.Value.IndexOf('.') + 1; | ||
729 | if (0 < dotIndex && (dotIndex == c.Value.Length || !Char.IsDigit(c.Value[dotIndex]))) | ||
730 | c.Value = c.Value.Insert(dotIndex, "0"); | ||
731 | c.Value = "new LSL_Types.LSLFloat("+c.Value+")"; | ||
732 | } | ||
733 | else if ("LSL_Types.LSLInteger" == c.Type) | ||
734 | { | ||
735 | c.Value = "new LSL_Types.LSLInteger("+c.Value+")"; | ||
736 | } | ||
737 | else if ("LSL_Types.LSLString" == c.Type) | ||
738 | { | ||
739 | c.Value = "new LSL_Types.LSLString(\""+c.Value+"\")"; | ||
740 | } | ||
741 | |||
742 | retstr += Generate(c.Value, c); | ||
743 | |||
744 | return retstr; | ||
745 | } | ||
746 | |||
747 | /// <summary> | ||
748 | /// Generates the code for a VectorConstant node. | ||
749 | /// </summary> | ||
750 | /// <param name="vc">The VectorConstant node.</param> | ||
751 | /// <returns>String containing C# code for VectorConstant vc.</returns> | ||
752 | private string GenerateVectorConstant(VectorConstant vc) | ||
753 | { | ||
754 | string retstr = String.Empty; | ||
755 | |||
756 | retstr += Generate(String.Format("new {0}(", vc.Type), vc); | ||
757 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
758 | retstr += Generate(", "); | ||
759 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
760 | retstr += Generate(", "); | ||
761 | retstr += GenerateNode((SYMBOL) vc.kids.Pop()); | ||
762 | retstr += Generate(")"); | ||
763 | |||
764 | return retstr; | ||
765 | } | ||
766 | |||
767 | /// <summary> | ||
768 | /// Generates the code for a RotationConstant node. | ||
769 | /// </summary> | ||
770 | /// <param name="rc">The RotationConstant node.</param> | ||
771 | /// <returns>String containing C# code for RotationConstant rc.</returns> | ||
772 | private string GenerateRotationConstant(RotationConstant rc) | ||
773 | { | ||
774 | string retstr = String.Empty; | ||
775 | |||
776 | retstr += Generate(String.Format("new {0}(", rc.Type), rc); | ||
777 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
778 | retstr += Generate(", "); | ||
779 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
780 | retstr += Generate(", "); | ||
781 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
782 | retstr += Generate(", "); | ||
783 | retstr += GenerateNode((SYMBOL) rc.kids.Pop()); | ||
784 | retstr += Generate(")"); | ||
785 | |||
786 | return retstr; | ||
787 | } | ||
788 | |||
789 | /// <summary> | ||
790 | /// Generates the code for a ListConstant node. | ||
791 | /// </summary> | ||
792 | /// <param name="lc">The ListConstant node.</param> | ||
793 | /// <returns>String containing C# code for ListConstant lc.</returns> | ||
794 | private string GenerateListConstant(ListConstant lc) | ||
795 | { | ||
796 | string retstr = String.Empty; | ||
797 | |||
798 | retstr += Generate(String.Format("new {0}(", lc.Type), lc); | ||
799 | |||
800 | foreach (SYMBOL kid in lc.kids) | ||
801 | retstr += GenerateNode(kid); | ||
802 | |||
803 | retstr += Generate(")"); | ||
804 | |||
805 | return retstr; | ||
806 | } | ||
807 | |||
808 | /// <summary> | ||
809 | /// Prints a newline. | ||
810 | /// </summary> | ||
811 | /// <returns>A newline.</returns> | ||
812 | private string GenerateLine() | ||
813 | { | ||
814 | return GenerateLine(""); | ||
815 | } | ||
816 | |||
817 | /// <summary> | ||
818 | /// Prints text, followed by a newline. | ||
819 | /// </summary> | ||
820 | /// <param name="s">String of text to print.</param> | ||
821 | /// <returns>String s followed by newline.</returns> | ||
822 | private string GenerateLine(string s) | ||
823 | { | ||
824 | return GenerateLine(s, null); | ||
825 | } | ||
826 | |||
827 | /// <summary> | ||
828 | /// Prints text, followed by a newline. | ||
829 | /// </summary> | ||
830 | /// <param name="s">String of text to print.</param> | ||
831 | /// <param name="sym">Symbol being generated to extract original line | ||
832 | /// number and column from.</param> | ||
833 | /// <returns>String s followed by newline.</returns> | ||
834 | private string GenerateLine(string s, SYMBOL sym) | ||
835 | { | ||
836 | string retstr = Generate(s, sym) + "\n"; | ||
837 | |||
838 | m_CSharpLine++; | ||
839 | m_CSharpCol = 1; | ||
840 | |||
841 | return retstr; | ||
842 | } | ||
843 | |||
844 | /// <summary> | ||
845 | /// Prints text. | ||
846 | /// </summary> | ||
847 | /// <param name="s">String of text to print.</param> | ||
848 | /// <returns>String s.</returns> | ||
849 | private string Generate(string s) | ||
850 | { | ||
851 | return Generate(s, null); | ||
852 | } | ||
853 | |||
854 | /// <summary> | ||
855 | /// Prints text. | ||
856 | /// </summary> | ||
857 | /// <param name="s">String of text to print.</param> | ||
858 | /// <param name="sym">Symbol being generated to extract original line | ||
859 | /// number and column from.</param> | ||
860 | /// <returns>String s.</returns> | ||
861 | private string Generate(string s, SYMBOL sym) | ||
862 | { | ||
863 | if (null != sym) | ||
864 | m_positionMap.Add(new KeyValuePair<int, int>(m_CSharpLine, m_CSharpCol), new KeyValuePair<int, int>(sym.Line, sym.Position)); | ||
865 | |||
866 | m_CSharpCol += s.Length; | ||
867 | |||
868 | return s; | ||
869 | } | ||
870 | |||
871 | /// <summary> | ||
872 | /// Prints text correctly indented, followed by a newline. | ||
873 | /// </summary> | ||
874 | /// <param name="s">String of text to print.</param> | ||
875 | /// <returns>Properly indented string s followed by newline.</returns> | ||
876 | private string GenerateIndentedLine(string s) | ||
877 | { | ||
878 | return GenerateIndentedLine(s, null); | ||
879 | } | ||
880 | |||
881 | /// <summary> | ||
882 | /// Prints text correctly indented, followed by a newline. | ||
883 | /// </summary> | ||
884 | /// <param name="s">String of text to print.</param> | ||
885 | /// <param name="sym">Symbol being generated to extract original line | ||
886 | /// number and column from.</param> | ||
887 | /// <returns>Properly indented string s followed by newline.</returns> | ||
888 | private string GenerateIndentedLine(string s, SYMBOL sym) | ||
889 | { | ||
890 | string retstr = GenerateIndented(s, sym) + "\n"; | ||
891 | |||
892 | m_CSharpLine++; | ||
893 | m_CSharpCol = 1; | ||
894 | |||
895 | return retstr; | ||
896 | } | ||
897 | |||
898 | /// <summary> | ||
899 | /// Prints text correctly indented. | ||
900 | /// </summary> | ||
901 | /// <param name="s">String of text to print.</param> | ||
902 | /// <returns>Properly indented string s.</returns> | ||
903 | //private string GenerateIndented(string s) | ||
904 | //{ | ||
905 | // return GenerateIndented(s, null); | ||
906 | //} | ||
907 | // THIS FUNCTION IS COMMENTED OUT TO SUPPRESS WARNINGS | ||
908 | |||
909 | /// <summary> | ||
910 | /// Prints text correctly indented. | ||
911 | /// </summary> | ||
912 | /// <param name="s">String of text to print.</param> | ||
913 | /// <param name="sym">Symbol being generated to extract original line | ||
914 | /// number and column from.</param> | ||
915 | /// <returns>Properly indented string s.</returns> | ||
916 | private string GenerateIndented(string s, SYMBOL sym) | ||
917 | { | ||
918 | string retstr = Indent() + s; | ||
919 | |||
920 | if (null != sym) | ||
921 | m_positionMap.Add(new KeyValuePair<int, int>(m_CSharpLine, m_CSharpCol), new KeyValuePair<int, int>(sym.Line, sym.Position)); | ||
922 | |||
923 | m_CSharpCol += s.Length; | ||
924 | |||
925 | return retstr; | ||
926 | } | ||
927 | |||
928 | /// <summary> | ||
929 | /// Prints correct indentation. | ||
930 | /// </summary> | ||
931 | /// <returns>Indentation based on brace count.</returns> | ||
932 | private string Indent() | ||
933 | { | ||
934 | string retstr = String.Empty; | ||
935 | |||
936 | for (int i = 0; i < m_braceCount; i++) | ||
937 | for (int j = 0; j < m_indentWidth; j++) | ||
938 | { | ||
939 | retstr += " "; | ||
940 | m_CSharpCol++; | ||
941 | } | ||
942 | |||
943 | return retstr; | ||
944 | } | ||
945 | } | ||
946 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs deleted file mode 100644 index 4adedc3..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/Compiler.cs +++ /dev/null | |||
@@ -1,509 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.CodeDom.Compiler; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Globalization; | ||
32 | using System.IO; | ||
33 | using Microsoft.CSharp; | ||
34 | using Microsoft.JScript; | ||
35 | using Microsoft.VisualBasic; | ||
36 | using OpenSim.Region.Environment.Interfaces; | ||
37 | |||
38 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | ||
39 | { | ||
40 | public class Compiler | ||
41 | { | ||
42 | private static readonly log4net.ILog m_log | ||
43 | = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | ||
44 | |||
45 | // * Uses "LSL2Converter" to convert LSL to C# if necessary. | ||
46 | // * Compiles C#-code into an assembly | ||
47 | // * Returns assembly name ready for AppDomain load. | ||
48 | // | ||
49 | // Assembly is compiled using LSL_BaseClass as base. Look at debug C# code file created when LSL script is compiled for full details. | ||
50 | // | ||
51 | |||
52 | internal enum enumCompileType | ||
53 | { | ||
54 | lsl = 0, | ||
55 | cs = 1, | ||
56 | vb = 2, | ||
57 | js = 3, | ||
58 | yp = 4 | ||
59 | } | ||
60 | |||
61 | /// <summary> | ||
62 | /// This contains number of lines WE use for header when compiling script. User will get error in line x-LinesToRemoveOnError when error occurs. | ||
63 | /// </summary> | ||
64 | public int LinesToRemoveOnError = 3; | ||
65 | private enumCompileType DefaultCompileLanguage; | ||
66 | private bool WriteScriptSourceToDebugFile; | ||
67 | private bool CompileWithDebugInformation; | ||
68 | // private bool CleanUpOldScriptsOnStartup; | ||
69 | private Dictionary<string, bool> AllowedCompilers = new Dictionary<string, bool>(StringComparer.CurrentCultureIgnoreCase); | ||
70 | private Dictionary<string, enumCompileType> LanguageMapping = new Dictionary<string, enumCompileType>(StringComparer.CurrentCultureIgnoreCase); | ||
71 | |||
72 | private string FilePrefix; | ||
73 | private string ScriptEnginesPath = "ScriptEngines"; | ||
74 | |||
75 | private static CSCodeGenerator LSL_Converter = new CSCodeGenerator(); | ||
76 | private static Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>> m_positionMap; // mapping between LSL and C# line/column numbers | ||
77 | private static CSharpCodeProvider CScodeProvider = new CSharpCodeProvider(); | ||
78 | private static VBCodeProvider VBcodeProvider = new VBCodeProvider(); | ||
79 | private static JScriptCodeProvider JScodeProvider = new JScriptCodeProvider(); | ||
80 | private static CSharpCodeProvider YPcodeProvider = new CSharpCodeProvider(); // YP is translated into CSharp | ||
81 | private static YP2CSConverter YP_Converter = new YP2CSConverter(); | ||
82 | |||
83 | private static int instanceID = new Random().Next(0, int.MaxValue); // Unique number to use on our compiled files | ||
84 | private static UInt64 scriptCompileCounter = 0; // And a counter | ||
85 | |||
86 | public ScriptEngine m_scriptEngine; | ||
87 | public Compiler(ScriptEngine scriptEngine) | ||
88 | { | ||
89 | m_scriptEngine = scriptEngine; | ||
90 | ReadConfig(); | ||
91 | } | ||
92 | public bool in_startup = true; | ||
93 | public void ReadConfig() | ||
94 | { | ||
95 | |||
96 | // Get some config | ||
97 | WriteScriptSourceToDebugFile = m_scriptEngine.ScriptConfigSource.GetBoolean("WriteScriptSourceToDebugFile", true); | ||
98 | CompileWithDebugInformation = m_scriptEngine.ScriptConfigSource.GetBoolean("CompileWithDebugInformation", true); | ||
99 | // CleanUpOldScriptsOnStartup = m_scriptEngine.ScriptConfigSource.GetBoolean("CleanUpOldScriptsOnStartup", true); | ||
100 | |||
101 | // Get file prefix from scriptengine name and make it file system safe: | ||
102 | FilePrefix = m_scriptEngine.ScriptEngineName; | ||
103 | foreach (char c in Path.GetInvalidFileNameChars()) | ||
104 | { | ||
105 | FilePrefix = FilePrefix.Replace(c, '_'); | ||
106 | } | ||
107 | |||
108 | // First time we start? Delete old files | ||
109 | if (in_startup) | ||
110 | { | ||
111 | in_startup = false; | ||
112 | DeleteOldFiles(); | ||
113 | } | ||
114 | |||
115 | // Map name and enum type of our supported languages | ||
116 | LanguageMapping.Add(enumCompileType.cs.ToString(), enumCompileType.cs); | ||
117 | LanguageMapping.Add(enumCompileType.vb.ToString(), enumCompileType.vb); | ||
118 | LanguageMapping.Add(enumCompileType.lsl.ToString(), enumCompileType.lsl); | ||
119 | LanguageMapping.Add(enumCompileType.js.ToString(), enumCompileType.js); | ||
120 | LanguageMapping.Add(enumCompileType.yp.ToString(), enumCompileType.yp); | ||
121 | |||
122 | // Allowed compilers | ||
123 | string allowComp = m_scriptEngine.ScriptConfigSource.GetString("AllowedCompilers", "lsl,cs,vb,js,yp"); | ||
124 | AllowedCompilers.Clear(); | ||
125 | |||
126 | #if DEBUG | ||
127 | m_scriptEngine.Log.Debug("[" + m_scriptEngine.ScriptEngineName + "]: Allowed languages: " + allowComp); | ||
128 | #endif | ||
129 | |||
130 | |||
131 | foreach (string strl in allowComp.Split(',')) | ||
132 | { | ||
133 | string strlan = strl.Trim(" \t".ToCharArray()).ToLower(); | ||
134 | if (!LanguageMapping.ContainsKey(strlan)) | ||
135 | { | ||
136 | m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: Config error. Compiler is unable to recognize language type \"" + strlan + "\" specified in \"AllowedCompilers\"."); | ||
137 | } | ||
138 | else | ||
139 | { | ||
140 | #if DEBUG | ||
141 | //m_scriptEngine.Log.Debug("[" + m_scriptEngine.ScriptEngineName + "]: Config OK. Compiler recognized language type \"" + strlan + "\" specified in \"AllowedCompilers\"."); | ||
142 | #endif | ||
143 | } | ||
144 | AllowedCompilers.Add(strlan, true); | ||
145 | } | ||
146 | if (AllowedCompilers.Count == 0) | ||
147 | m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: Config error. Compiler could not recognize any language in \"AllowedCompilers\". Scripts will not be executed!"); | ||
148 | |||
149 | // Default language | ||
150 | string defaultCompileLanguage = m_scriptEngine.ScriptConfigSource.GetString("DefaultCompileLanguage", "lsl").ToLower(); | ||
151 | |||
152 | // Is this language recognized at all? | ||
153 | if (!LanguageMapping.ContainsKey(defaultCompileLanguage)) | ||
154 | { | ||
155 | m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: " + | ||
156 | "Config error. Default language \"" + defaultCompileLanguage + "\" specified in \"DefaultCompileLanguage\" is not recognized as a valid language. Changing default to: \"lsl\"."); | ||
157 | defaultCompileLanguage = "lsl"; | ||
158 | } | ||
159 | |||
160 | // Is this language in allow-list? | ||
161 | if (!AllowedCompilers.ContainsKey(defaultCompileLanguage)) | ||
162 | { | ||
163 | m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: " + | ||
164 | "Config error. Default language \"" + defaultCompileLanguage + "\"specified in \"DefaultCompileLanguage\" is not in list of \"AllowedCompilers\". Scripts may not be executed!"); | ||
165 | } | ||
166 | else | ||
167 | { | ||
168 | #if DEBUG | ||
169 | // m_scriptEngine.Log.Debug("[" + m_scriptEngine.ScriptEngineName + "]: " + | ||
170 | // "Config OK. Default language \"" + defaultCompileLanguage + "\" specified in \"DefaultCompileLanguage\" is recognized as a valid language."); | ||
171 | #endif | ||
172 | // LANGUAGE IS IN ALLOW-LIST | ||
173 | DefaultCompileLanguage = LanguageMapping[defaultCompileLanguage]; | ||
174 | } | ||
175 | |||
176 | // We now have an allow-list, a mapping list, and a default language | ||
177 | |||
178 | } | ||
179 | |||
180 | /// <summary> | ||
181 | /// Delete old script files | ||
182 | /// </summary> | ||
183 | private void DeleteOldFiles() | ||
184 | { | ||
185 | |||
186 | // CREATE FOLDER IF IT DOESNT EXIST | ||
187 | if (!Directory.Exists(ScriptEnginesPath)) | ||
188 | { | ||
189 | try | ||
190 | { | ||
191 | Directory.CreateDirectory(ScriptEnginesPath); | ||
192 | } | ||
193 | catch (Exception ex) | ||
194 | { | ||
195 | m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: Exception trying to create ScriptEngine directory \"" + ScriptEnginesPath + "\": " + ex.ToString()); | ||
196 | } | ||
197 | } | ||
198 | |||
199 | foreach (string file in Directory.GetFiles(ScriptEnginesPath)) | ||
200 | { | ||
201 | //m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: FILE FOUND: " + file); | ||
202 | |||
203 | if (file.ToLower().StartsWith(FilePrefix + "_compiled_") || | ||
204 | file.ToLower().StartsWith(FilePrefix + "_source_")) | ||
205 | { | ||
206 | try | ||
207 | { | ||
208 | File.Delete(file); | ||
209 | } | ||
210 | catch (Exception ex) | ||
211 | { | ||
212 | m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: Exception trying delete old script file \"" + file + "\": " + ex.ToString()); | ||
213 | } | ||
214 | |||
215 | } | ||
216 | } | ||
217 | |||
218 | } | ||
219 | |||
220 | /// <summary> | ||
221 | /// Converts script from LSL to CS and calls CompileFromCSText | ||
222 | /// </summary> | ||
223 | /// <param name="Script">LSL script</param> | ||
224 | /// <returns>Filename to .dll assembly</returns> | ||
225 | public string PerformScriptCompile(string Script) | ||
226 | { | ||
227 | enumCompileType l = DefaultCompileLanguage; | ||
228 | |||
229 | |||
230 | if (Script.StartsWith("//c#", true, CultureInfo.InvariantCulture)) | ||
231 | l = enumCompileType.cs; | ||
232 | if (Script.StartsWith("//vb", true, CultureInfo.InvariantCulture)) | ||
233 | { | ||
234 | l = enumCompileType.vb; | ||
235 | // We need to remove //vb, it won't compile with that | ||
236 | |||
237 | Script = Script.Substring(4, Script.Length - 4); | ||
238 | } | ||
239 | if (Script.StartsWith("//lsl", true, CultureInfo.InvariantCulture)) | ||
240 | l = enumCompileType.lsl; | ||
241 | |||
242 | if (Script.StartsWith("//js", true, CultureInfo.InvariantCulture)) | ||
243 | l = enumCompileType.js; | ||
244 | |||
245 | if (Script.StartsWith("//yp", true, CultureInfo.InvariantCulture)) | ||
246 | l = enumCompileType.yp; | ||
247 | |||
248 | if (!AllowedCompilers.ContainsKey(l.ToString())) | ||
249 | { | ||
250 | // Not allowed to compile to this language! | ||
251 | string errtext = String.Empty; | ||
252 | errtext += "The compiler for language \"" + l.ToString() + "\" is not in list of allowed compilers. Script will not be executed!"; | ||
253 | throw new Exception(errtext); | ||
254 | } | ||
255 | |||
256 | string compileScript = Script; | ||
257 | |||
258 | if (l == enumCompileType.lsl) | ||
259 | { | ||
260 | // Its LSL, convert it to C# | ||
261 | compileScript = LSL_Converter.Convert(Script); | ||
262 | m_positionMap = LSL_Converter.PositionMap; | ||
263 | l = enumCompileType.cs; | ||
264 | } | ||
265 | |||
266 | if (l == enumCompileType.yp) | ||
267 | { | ||
268 | // Its YP, convert it to C# | ||
269 | compileScript = YP_Converter.Convert(Script); | ||
270 | // We have our own processor now | ||
271 | //l = enumCompileType.cs; | ||
272 | } | ||
273 | |||
274 | // Insert additional assemblies here | ||
275 | |||
276 | //ADAM: Disabled for the moment until it's working right. | ||
277 | bool enableCommanderLSL = false; | ||
278 | |||
279 | if (enableCommanderLSL == true && ((l == enumCompileType.cs) || (l == enumCompileType.yp))) | ||
280 | { | ||
281 | foreach (KeyValuePair<string, | ||
282 | ICommander> com | ||
283 | in m_scriptEngine.World.GetCommanders()) | ||
284 | { | ||
285 | compileScript = com.Value.GenerateRuntimeAPI() + compileScript; | ||
286 | } | ||
287 | } | ||
288 | |||
289 | // End of insert | ||
290 | |||
291 | |||
292 | switch (l) | ||
293 | { | ||
294 | case enumCompileType.cs: | ||
295 | compileScript = CreateCSCompilerScript(compileScript); | ||
296 | break; | ||
297 | case enumCompileType.vb: | ||
298 | compileScript = CreateVBCompilerScript(compileScript); | ||
299 | break; | ||
300 | case enumCompileType.js: | ||
301 | compileScript = CreateJSCompilerScript(compileScript); | ||
302 | break; | ||
303 | case enumCompileType.yp: | ||
304 | compileScript = CreateYPCompilerScript(compileScript); | ||
305 | break; | ||
306 | } | ||
307 | |||
308 | m_log.Debug("[ScriptEngine.DotNetEngine]: Preparing to compile the following LSL to C# translated code"); | ||
309 | m_log.Debug(""); | ||
310 | m_log.Debug(compileScript); | ||
311 | |||
312 | return CompileFromDotNetText(compileScript, l); | ||
313 | } | ||
314 | |||
315 | private static string CreateJSCompilerScript(string compileScript) | ||
316 | { | ||
317 | compileScript = String.Empty + | ||
318 | "import OpenSim.Region.ScriptEngine.Shared; import System.Collections.Generic;\r\n" + | ||
319 | "package SecondLife {\r\n" + | ||
320 | "class Script extends OpenSim.Region.ScriptEngine.Shared.ScriptBase.ScriptBaseClass { \r\n" + | ||
321 | compileScript + | ||
322 | "} }\r\n"; | ||
323 | return compileScript; | ||
324 | } | ||
325 | |||
326 | private static string CreateCSCompilerScript(string compileScript) | ||
327 | { | ||
328 | compileScript = String.Empty + | ||
329 | "using OpenSim.Region.ScriptEngine.Shared; using System.Collections.Generic;\r\n" + | ||
330 | String.Empty + "namespace SecondLife { " + | ||
331 | String.Empty + "public class Script : OpenSim.Region.ScriptEngine.Shared.ScriptBase.ScriptBaseClass { \r\n" + | ||
332 | @"public Script() { } " + | ||
333 | compileScript + | ||
334 | "} }\r\n"; | ||
335 | return compileScript; | ||
336 | } | ||
337 | |||
338 | private static string CreateYPCompilerScript(string compileScript) | ||
339 | { | ||
340 | compileScript = String.Empty + | ||
341 | "using OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.YieldProlog; " + | ||
342 | "using OpenSim.Region.ScriptEngine.Shared; using System.Collections.Generic;\r\n" + | ||
343 | String.Empty + "namespace SecondLife { " + | ||
344 | String.Empty + "public class Script : OpenSim.Region.ScriptEngine.Shared.ScriptBase.ScriptBaseClass { \r\n" + | ||
345 | //@"public Script() { } " + | ||
346 | @"static OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.YieldProlog.YP YP=null; " + | ||
347 | @"public Script() { YP= new OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.YieldProlog.YP(); } "+ | ||
348 | |||
349 | compileScript + | ||
350 | "} }\r\n"; | ||
351 | return compileScript; | ||
352 | } | ||
353 | |||
354 | private static string CreateVBCompilerScript(string compileScript) | ||
355 | { | ||
356 | compileScript = String.Empty + | ||
357 | "Imports OpenSim.Region.ScriptEngine.Shared: Imports System.Collections.Generic: " + | ||
358 | String.Empty + "NameSpace SecondLife:" + | ||
359 | String.Empty + "Public Class Script: Inherits OpenSim.Region.ScriptEngine.Shared.ScriptBase.ScriptBaseClass: " + | ||
360 | "\r\nPublic Sub New()\r\nEnd Sub: " + | ||
361 | compileScript + | ||
362 | ":End Class :End Namespace\r\n"; | ||
363 | return compileScript; | ||
364 | } | ||
365 | |||
366 | /// <summary> | ||
367 | /// Compile .NET script to .Net assembly (.dll) | ||
368 | /// </summary> | ||
369 | /// <param name="Script">CS script</param> | ||
370 | /// <returns>Filename to .dll assembly</returns> | ||
371 | internal string CompileFromDotNetText(string Script, enumCompileType lang) | ||
372 | { | ||
373 | string ext = "." + lang.ToString(); | ||
374 | |||
375 | // Output assembly name | ||
376 | scriptCompileCounter++; | ||
377 | string OutFile = | ||
378 | Path.Combine("ScriptEngines", | ||
379 | FilePrefix + "_compiled_" + instanceID.ToString() + "_" + scriptCompileCounter.ToString() + ".dll"); | ||
380 | #if DEBUG | ||
381 | m_scriptEngine.Log.Debug("[" + m_scriptEngine.ScriptEngineName + "]: Starting compile of \"" + OutFile + "\"."); | ||
382 | #endif | ||
383 | try | ||
384 | { | ||
385 | File.Delete(OutFile); | ||
386 | } | ||
387 | catch (Exception e) // NOTLEGIT - Should be just catching FileIOException | ||
388 | { | ||
389 | //m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: Unable to delete old existring script-file before writing new. Compile aborted: " + e.ToString()); | ||
390 | throw new Exception("Unable to delete old existring script-file before writing new. Compile aborted: " + e.ToString()); | ||
391 | } | ||
392 | //string OutFile = Path.Combine("ScriptEngines", "SecondLife.Script.dll"); | ||
393 | |||
394 | // DEBUG - write source to disk | ||
395 | if (WriteScriptSourceToDebugFile) | ||
396 | { | ||
397 | string srcFileName = FilePrefix + "_source_" + Path.GetFileNameWithoutExtension(OutFile) + ext; | ||
398 | try | ||
399 | { | ||
400 | File.WriteAllText( | ||
401 | Path.Combine("ScriptEngines", srcFileName), | ||
402 | Script); | ||
403 | } | ||
404 | catch (Exception ex) // NOTLEGIT - Should be just catching FileIOException | ||
405 | { | ||
406 | m_scriptEngine.Log.Error("[" + m_scriptEngine.ScriptEngineName + "]: Exception while trying to write script source to file \"" + srcFileName + "\": " + ex.ToString()); | ||
407 | } | ||
408 | } | ||
409 | |||
410 | // Do actual compile | ||
411 | CompilerParameters parameters = new CompilerParameters(); | ||
412 | |||
413 | parameters.IncludeDebugInformation = true; | ||
414 | |||
415 | // Add all available assemblies | ||
416 | // foreach (Assembly asm in AppDomain.CurrentDomain.GetAssemblies()) | ||
417 | // { | ||
418 | // Console.WriteLine("Adding assembly: " + asm.Location); | ||
419 | // parameters.ReferencedAssemblies.Add(asm.Location); | ||
420 | // } | ||
421 | |||
422 | string rootPath = Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory); | ||
423 | string rootPathSE = Path.GetDirectoryName(GetType().Assembly.Location); | ||
424 | //Console.WriteLine("Assembly location: " + rootPath); | ||
425 | parameters.ReferencedAssemblies.Add(Path.Combine(rootPath, "OpenSim.Region.ScriptEngine.Shared.dll")); | ||
426 | parameters.ReferencedAssemblies.Add(Path.Combine(rootPath, "OpenSim.Region.ScriptEngine.Shared.Api.Runtime.dll")); | ||
427 | |||
428 | if (lang == enumCompileType.yp) | ||
429 | { | ||
430 | parameters.ReferencedAssemblies.Add(Path.Combine(rootPath, "OpenSim.Region.ScriptEngine.Shared.YieldProlog.dll")); | ||
431 | } | ||
432 | |||
433 | //parameters.ReferencedAssemblies.Add("OpenSim.Region.Environment"); | ||
434 | parameters.GenerateExecutable = false; | ||
435 | parameters.OutputAssembly = OutFile; | ||
436 | parameters.IncludeDebugInformation = CompileWithDebugInformation; | ||
437 | //parameters.WarningLevel = 1; // Should be 4? | ||
438 | parameters.TreatWarningsAsErrors = false; | ||
439 | |||
440 | CompilerResults results; | ||
441 | switch (lang) | ||
442 | { | ||
443 | case enumCompileType.vb: | ||
444 | results = VBcodeProvider.CompileAssemblyFromSource(parameters, Script); | ||
445 | break; | ||
446 | case enumCompileType.cs: | ||
447 | results = CScodeProvider.CompileAssemblyFromSource(parameters, Script); | ||
448 | break; | ||
449 | case enumCompileType.js: | ||
450 | results = JScodeProvider.CompileAssemblyFromSource(parameters, Script); | ||
451 | break; | ||
452 | case enumCompileType.yp: | ||
453 | results = YPcodeProvider.CompileAssemblyFromSource(parameters, Script); | ||
454 | break; | ||
455 | default: | ||
456 | throw new Exception("Compiler is not able to recongnize language type \"" + lang.ToString() + "\""); | ||
457 | } | ||
458 | |||
459 | // Check result | ||
460 | // Go through errors | ||
461 | |||
462 | // | ||
463 | // WARNINGS AND ERRORS | ||
464 | // | ||
465 | if (results.Errors.Count > 0) | ||
466 | { | ||
467 | string errtext = String.Empty; | ||
468 | foreach (CompilerError CompErr in results.Errors) | ||
469 | { | ||
470 | KeyValuePair<int, int> lslPos; | ||
471 | |||
472 | try | ||
473 | { | ||
474 | lslPos = m_positionMap[new KeyValuePair<int, int>(CompErr.Line, CompErr.Column)]; | ||
475 | } | ||
476 | catch (KeyNotFoundException) // we don't have this line/column mapped | ||
477 | { | ||
478 | m_scriptEngine.Log.Debug(String.Format("[{0}]: Lookup of C# line {1}, column {2} failed.", m_scriptEngine.ScriptEngineName, CompErr.Line, CompErr.Column)); | ||
479 | lslPos = new KeyValuePair<int, int>(-CompErr.Line, -CompErr.Column); | ||
480 | } | ||
481 | |||
482 | // The Second Life viewer's script editor begins | ||
483 | // countingn lines and columns at 0, so we subtract 1. | ||
484 | errtext += String.Format("Line {0}, column {1}, Error Number: {2}, '{3}'\r\n", lslPos.Key - 1, lslPos.Value - 1, CompErr.ErrorNumber, CompErr.ErrorText); | ||
485 | //errtext += "Line number " + (CompErr.Line - LinesToRemoveOnError) + | ||
486 | // ", Error Number: " + CompErr.ErrorNumber + | ||
487 | // ", '" + CompErr.ErrorText + "'\r\n"; | ||
488 | } | ||
489 | Console.WriteLine("[COMPILER ERROR]:" + errtext); | ||
490 | if (!File.Exists(OutFile)) | ||
491 | { | ||
492 | throw new Exception(errtext); | ||
493 | } | ||
494 | } | ||
495 | |||
496 | |||
497 | // | ||
498 | // NO ERRORS, BUT NO COMPILED FILE | ||
499 | // | ||
500 | if (!File.Exists(OutFile)) | ||
501 | { | ||
502 | string errtext = String.Empty; | ||
503 | errtext += "No compile error. But not able to locate compiled file."; | ||
504 | throw new Exception(errtext); | ||
505 | } | ||
506 | return OutFile; | ||
507 | } | ||
508 | } | ||
509 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSCodeTransformer.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSCodeTransformer.cs deleted file mode 100644 index 8abf3b9..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/LSL2CSCodeTransformer.cs +++ /dev/null | |||
@@ -1,183 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using Tools; | ||
31 | |||
32 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | ||
33 | { | ||
34 | public class LSL2CSCodeTransformer | ||
35 | { | ||
36 | private SYMBOL m_astRoot = null; | ||
37 | private static Dictionary<string, string> m_datatypeLSL2OpenSim = null; | ||
38 | |||
39 | /// <summary> | ||
40 | /// Pass the new CodeTranformer an abstract syntax tree. | ||
41 | /// </summary> | ||
42 | /// <param name="astRoot">The root node of the AST.</param> | ||
43 | public LSL2CSCodeTransformer(SYMBOL astRoot) | ||
44 | { | ||
45 | m_astRoot = astRoot; | ||
46 | |||
47 | // let's populate the dictionary | ||
48 | if (null == m_datatypeLSL2OpenSim) | ||
49 | { | ||
50 | m_datatypeLSL2OpenSim = new Dictionary<string, string>(); | ||
51 | m_datatypeLSL2OpenSim.Add("integer", "LSL_Types.LSLInteger"); | ||
52 | m_datatypeLSL2OpenSim.Add("float", "LSL_Types.LSLFloat"); | ||
53 | //m_datatypeLSL2OpenSim.Add("key", "LSL_Types.key"); // key doesn't seem to be used | ||
54 | m_datatypeLSL2OpenSim.Add("key", "LSL_Types.LSLString"); | ||
55 | m_datatypeLSL2OpenSim.Add("string", "LSL_Types.LSLString"); | ||
56 | m_datatypeLSL2OpenSim.Add("vector", "LSL_Types.Vector3"); | ||
57 | m_datatypeLSL2OpenSim.Add("rotation", "LSL_Types.Quaternion"); | ||
58 | m_datatypeLSL2OpenSim.Add("list", "LSL_Types.list"); | ||
59 | } | ||
60 | } | ||
61 | |||
62 | /// <summary> | ||
63 | /// Transform the code in the AST we have. | ||
64 | /// </summary> | ||
65 | /// <returns>The root node of the transformed AST</returns> | ||
66 | public SYMBOL Transform() | ||
67 | { | ||
68 | foreach (SYMBOL s in m_astRoot.kids) | ||
69 | TransformNode(s); | ||
70 | |||
71 | return m_astRoot; | ||
72 | } | ||
73 | |||
74 | /// <summary> | ||
75 | /// Recursively called to transform each type of node. Will transform this | ||
76 | /// node, then all it's children. | ||
77 | /// </summary> | ||
78 | /// <param name="s">The current node to transform.</param> | ||
79 | private void TransformNode(SYMBOL s) | ||
80 | { | ||
81 | // make sure to put type lower in the inheritance hierarchy first | ||
82 | // ie: since IdentConstant and StringConstant inherit from Constant, | ||
83 | // put IdentConstant and StringConstant before Constant | ||
84 | if (s is Declaration) | ||
85 | ((Declaration) s).Datatype = m_datatypeLSL2OpenSim[((Declaration) s).Datatype]; | ||
86 | else if (s is Constant) | ||
87 | ((Constant) s).Type = m_datatypeLSL2OpenSim[((Constant) s).Type]; | ||
88 | else if (s is TypecastExpression) | ||
89 | ((TypecastExpression) s).TypecastType = m_datatypeLSL2OpenSim[((TypecastExpression) s).TypecastType]; | ||
90 | else if (s is GlobalFunctionDefinition && "void" != ((GlobalFunctionDefinition) s).ReturnType) // we don't need to translate "void" | ||
91 | ((GlobalFunctionDefinition) s).ReturnType = m_datatypeLSL2OpenSim[((GlobalFunctionDefinition) s).ReturnType]; | ||
92 | |||
93 | for (int i = 0; i < s.kids.Count; i++) | ||
94 | { | ||
95 | if (!(s is Assignment || s is ArgumentDeclarationList) && s.kids[i] is Declaration) | ||
96 | AddImplicitInitialization(s, i); | ||
97 | |||
98 | TransformNode((SYMBOL) s.kids[i]); | ||
99 | } | ||
100 | } | ||
101 | |||
102 | /// <summary> | ||
103 | /// Replaces an instance of the node at s.kids[didx] with an assignment | ||
104 | /// node. The assignment node has the Declaration node on the left hand | ||
105 | /// side and a default initializer on the right hand side. | ||
106 | /// </summary> | ||
107 | /// <param name="s"> | ||
108 | /// The node containing the Declaration node that needs replacing. | ||
109 | /// </param> | ||
110 | /// <param name="didx">Index of the Declaration node to replace.</param> | ||
111 | private void AddImplicitInitialization(SYMBOL s, int didx) | ||
112 | { | ||
113 | // We take the kids for a while to play with them. | ||
114 | int sKidSize = s.kids.Count; | ||
115 | object [] sKids = new object[sKidSize]; | ||
116 | for (int i = 0; i < sKidSize; i++) | ||
117 | sKids[i] = s.kids.Pop(); | ||
118 | |||
119 | // The child to be changed. | ||
120 | Declaration currentDeclaration = (Declaration) sKids[didx]; | ||
121 | |||
122 | // We need an assignment node. | ||
123 | Assignment newAssignment = new Assignment(currentDeclaration.yyps, | ||
124 | currentDeclaration, | ||
125 | GetZeroConstant(currentDeclaration.yyps, currentDeclaration.Datatype), | ||
126 | "="); | ||
127 | sKids[didx] = newAssignment; | ||
128 | |||
129 | // Put the kids back where they belong. | ||
130 | for (int i = 0; i < sKidSize; i++) | ||
131 | s.kids.Add(sKids[i]); | ||
132 | } | ||
133 | |||
134 | /// <summary> | ||
135 | /// Generates the node structure required to generate a default | ||
136 | /// initialization. | ||
137 | /// </summary> | ||
138 | /// <param name="p"> | ||
139 | /// Tools.Parser instance to use when instantiating nodes. | ||
140 | /// </param> | ||
141 | /// <param name="constantType">String describing the datatype.</param> | ||
142 | /// <returns> | ||
143 | /// A SYMBOL node conaining the appropriate structure for intializing a | ||
144 | /// constantType. | ||
145 | /// </returns> | ||
146 | private SYMBOL GetZeroConstant(Parser p, string constantType) | ||
147 | { | ||
148 | switch (constantType) | ||
149 | { | ||
150 | case "integer": | ||
151 | return new Constant(p, constantType, "0"); | ||
152 | case "float": | ||
153 | return new Constant(p, constantType, "0.0"); | ||
154 | case "string": | ||
155 | case "key": | ||
156 | return new Constant(p, constantType, ""); | ||
157 | case "list": | ||
158 | ArgumentList al = new ArgumentList(p); | ||
159 | return new ListConstant(p, al); | ||
160 | case "vector": | ||
161 | Constant vca = new Constant(p, "float", "0.0"); | ||
162 | Constant vcb = new Constant(p, "float", "0.0"); | ||
163 | Constant vcc = new Constant(p, "float", "0.0"); | ||
164 | ConstantExpression vcea = new ConstantExpression(p, vca); | ||
165 | ConstantExpression vceb = new ConstantExpression(p, vcb); | ||
166 | ConstantExpression vcec = new ConstantExpression(p, vcc); | ||
167 | return new VectorConstant(p, vcea, vceb, vcec); | ||
168 | case "rotation": | ||
169 | Constant rca = new Constant(p, "float", "0.0"); | ||
170 | Constant rcb = new Constant(p, "float", "0.0"); | ||
171 | Constant rcc = new Constant(p, "float", "0.0"); | ||
172 | Constant rcd = new Constant(p, "float", "0.0"); | ||
173 | ConstantExpression rcea = new ConstantExpression(p, rca); | ||
174 | ConstantExpression rceb = new ConstantExpression(p, rcb); | ||
175 | ConstantExpression rcec = new ConstantExpression(p, rcc); | ||
176 | ConstantExpression rced = new ConstantExpression(p, rcd); | ||
177 | return new RotationConstant(p, rcea, rceb, rcec, rced); | ||
178 | default: | ||
179 | return null; // this will probably break stuff | ||
180 | } | ||
181 | } | ||
182 | } | ||
183 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/YP2CSConverter.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/YP2CSConverter.cs deleted file mode 100644 index 8618d6c..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/YP2CSConverter.cs +++ /dev/null | |||
@@ -1,116 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | * | ||
27 | */ | ||
28 | |||
29 | using System; | ||
30 | using System.IO; | ||
31 | using System.Collections.Generic; | ||
32 | using System.Text; | ||
33 | using System.Text.RegularExpressions; | ||
34 | using OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.YieldProlog; | ||
35 | |||
36 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL | ||
37 | { | ||
38 | public class YP2CSConverter | ||
39 | { | ||
40 | public YP2CSConverter() | ||
41 | { | ||
42 | } | ||
43 | |||
44 | public string Convert(string Script) | ||
45 | { | ||
46 | string CS_code = GenCode(Script); | ||
47 | return CS_code; | ||
48 | } | ||
49 | |||
50 | static string GenCode(string myCode) | ||
51 | { | ||
52 | Variable TermList = new Variable(); | ||
53 | Variable FunctionCode = new Variable(); | ||
54 | |||
55 | string CS_code = ""; | ||
56 | |||
57 | int cs_pointer = myCode.IndexOf("\n//cs"); | ||
58 | if (cs_pointer > 0) | ||
59 | { | ||
60 | CS_code = myCode.Substring(cs_pointer); // CS code comes after | ||
61 | myCode = myCode.Substring(0, cs_pointer); | ||
62 | } | ||
63 | myCode.Replace("//yp", "%YPCode"); | ||
64 | |||
65 | StringWriter myCS_SW = new StringWriter(); | ||
66 | StringReader myCode_SR = new StringReader(" yp_nop_header_nop. \n "+myCode + "\n"); | ||
67 | |||
68 | YP.see(myCode_SR); | ||
69 | YP.tell(myCS_SW); | ||
70 | |||
71 | //Console.WriteLine("Mycode\n ===================================\n" + myCode+"\n"); | ||
72 | // disable warning on l1, don't see how we can | ||
73 | // code this differently | ||
74 | #pragma warning disable 0168 | ||
75 | foreach (bool l1 in Parser.parseInput(TermList)) | ||
76 | { | ||
77 | foreach (bool l2 in YPCompiler.makeFunctionPseudoCode(TermList, FunctionCode)) | ||
78 | { | ||
79 | // ListPair VFC = new ListPair(FunctionCode, new Variable()); | ||
80 | //Console.WriteLine("-------------------------") | ||
81 | //Console.WriteLine(FunctionCode.ToString()) | ||
82 | //Console.WriteLine("-------------------------") | ||
83 | YPCompiler.convertFunctionCSharp(FunctionCode); | ||
84 | //YPCompiler.convertStringCodesCSharp(VFC); | ||
85 | } | ||
86 | } | ||
87 | #pragma warning restore 0168 | ||
88 | YP.seen(); | ||
89 | myCS_SW.Close(); | ||
90 | YP.told(); | ||
91 | StringBuilder bu = myCS_SW.GetStringBuilder(); | ||
92 | string finalcode = "//YPEncoded\n" + bu.ToString(); | ||
93 | // FIX script events (we're in the same script) | ||
94 | // 'YP.script_event(Atom.a(@"sayit"),' ==> 'sayit(' | ||
95 | finalcode = Regex.Replace(finalcode, | ||
96 | @"YP.script_event\(Atom.a\(\@\""(.*?)""\)\,", | ||
97 | @"this.$1(", | ||
98 | RegexOptions.Compiled | RegexOptions.Singleline); | ||
99 | finalcode = Regex.Replace(finalcode, | ||
100 | @"YP.script_event\(Atom.a\(\""(.*?)""\)\,", | ||
101 | @"this.$1(", | ||
102 | RegexOptions.Compiled | RegexOptions.Singleline); | ||
103 | finalcode = Regex.Replace(finalcode, | ||
104 | @" static ", | ||
105 | @" ", | ||
106 | RegexOptions.Compiled | RegexOptions.Singleline); | ||
107 | |||
108 | finalcode = CS_code+"\n\r"+ finalcode; | ||
109 | finalcode = Regex.Replace(finalcode, | ||
110 | @"PrologCallback", | ||
111 | @"public IEnumerable<bool> ", | ||
112 | RegexOptions.Compiled | RegexOptions.Singleline); | ||
113 | return finalcode; | ||
114 | } | ||
115 | } | ||
116 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs deleted file mode 100644 index 6020dc3..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.lexer.cs +++ /dev/null | |||
@@ -1,18447 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System;using Tools; | ||
29 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL { | ||
30 | //%+STRING_CONSTANT+3 | ||
31 | public class STRING_CONSTANT : TOKEN{ | ||
32 | public override string yyname { get { return "STRING_CONSTANT"; }} | ||
33 | public override int yynum { get { return 3; }} | ||
34 | public STRING_CONSTANT(Lexer yyl):base(yyl){}} | ||
35 | //%INCREMENT+4 | ||
36 | public class INCREMENT : TOKEN{ public override string yyname { get { return "INCREMENT";}} | ||
37 | public override int yynum { get { return 4; }} | ||
38 | public INCREMENT(Lexer yyl):base(yyl) {}} | ||
39 | //%DECREMENT+5 | ||
40 | public class DECREMENT : TOKEN{ public override string yyname { get { return "DECREMENT";}} | ||
41 | public override int yynum { get { return 5; }} | ||
42 | public DECREMENT(Lexer yyl):base(yyl) {}} | ||
43 | //%PLUS_EQUALS+6 | ||
44 | public class PLUS_EQUALS : TOKEN{ public override string yyname { get { return "PLUS_EQUALS";}} | ||
45 | public override int yynum { get { return 6; }} | ||
46 | public PLUS_EQUALS(Lexer yyl):base(yyl) {}} | ||
47 | //%MINUS_EQUALS+7 | ||
48 | public class MINUS_EQUALS : TOKEN{ public override string yyname { get { return "MINUS_EQUALS";}} | ||
49 | public override int yynum { get { return 7; }} | ||
50 | public MINUS_EQUALS(Lexer yyl):base(yyl) {}} | ||
51 | //%STAR_EQUALS+8 | ||
52 | public class STAR_EQUALS : TOKEN{ public override string yyname { get { return "STAR_EQUALS";}} | ||
53 | public override int yynum { get { return 8; }} | ||
54 | public STAR_EQUALS(Lexer yyl):base(yyl) {}} | ||
55 | //%SLASH_EQUALS+9 | ||
56 | public class SLASH_EQUALS : TOKEN{ public override string yyname { get { return "SLASH_EQUALS";}} | ||
57 | public override int yynum { get { return 9; }} | ||
58 | public SLASH_EQUALS(Lexer yyl):base(yyl) {}} | ||
59 | //%PERCENT_EQUALS+10 | ||
60 | public class PERCENT_EQUALS : TOKEN{ public override string yyname { get { return "PERCENT_EQUALS";}} | ||
61 | public override int yynum { get { return 10; }} | ||
62 | public PERCENT_EQUALS(Lexer yyl):base(yyl) {}} | ||
63 | //%SEMICOLON+11 | ||
64 | public class SEMICOLON : TOKEN{ public override string yyname { get { return "SEMICOLON";}} | ||
65 | public override int yynum { get { return 11; }} | ||
66 | public SEMICOLON(Lexer yyl):base(yyl) {}} | ||
67 | //%LEFT_BRACE+12 | ||
68 | public class LEFT_BRACE : TOKEN{ public override string yyname { get { return "LEFT_BRACE";}} | ||
69 | public override int yynum { get { return 12; }} | ||
70 | public LEFT_BRACE(Lexer yyl):base(yyl) {}} | ||
71 | //%RIGHT_BRACE+13 | ||
72 | public class RIGHT_BRACE : TOKEN{ public override string yyname { get { return "RIGHT_BRACE";}} | ||
73 | public override int yynum { get { return 13; }} | ||
74 | public RIGHT_BRACE(Lexer yyl):base(yyl) {}} | ||
75 | //%COMMA+14 | ||
76 | public class COMMA : TOKEN{ public override string yyname { get { return "COMMA";}} | ||
77 | public override int yynum { get { return 14; }} | ||
78 | public COMMA(Lexer yyl):base(yyl) {}} | ||
79 | //%EQUALS+15 | ||
80 | public class EQUALS : TOKEN{ public override string yyname { get { return "EQUALS";}} | ||
81 | public override int yynum { get { return 15; }} | ||
82 | public EQUALS(Lexer yyl):base(yyl) {}} | ||
83 | //%LEFT_PAREN+16 | ||
84 | public class LEFT_PAREN : TOKEN{ public override string yyname { get { return "LEFT_PAREN";}} | ||
85 | public override int yynum { get { return 16; }} | ||
86 | public LEFT_PAREN(Lexer yyl):base(yyl) {}} | ||
87 | //%RIGHT_PAREN+17 | ||
88 | public class RIGHT_PAREN : TOKEN{ public override string yyname { get { return "RIGHT_PAREN";}} | ||
89 | public override int yynum { get { return 17; }} | ||
90 | public RIGHT_PAREN(Lexer yyl):base(yyl) {}} | ||
91 | //%PLUS+18 | ||
92 | public class PLUS : TOKEN{ public override string yyname { get { return "PLUS";}} | ||
93 | public override int yynum { get { return 18; }} | ||
94 | public PLUS(Lexer yyl):base(yyl) {}} | ||
95 | //%MINUS+19 | ||
96 | public class MINUS : TOKEN{ public override string yyname { get { return "MINUS";}} | ||
97 | public override int yynum { get { return 19; }} | ||
98 | public MINUS(Lexer yyl):base(yyl) {}} | ||
99 | //%STAR+20 | ||
100 | public class STAR : TOKEN{ public override string yyname { get { return "STAR";}} | ||
101 | public override int yynum { get { return 20; }} | ||
102 | public STAR(Lexer yyl):base(yyl) {}} | ||
103 | //%SLASH+21 | ||
104 | public class SLASH : TOKEN{ public override string yyname { get { return "SLASH";}} | ||
105 | public override int yynum { get { return 21; }} | ||
106 | public SLASH(Lexer yyl):base(yyl) {}} | ||
107 | //%PERCENT+22 | ||
108 | public class PERCENT : TOKEN{ public override string yyname { get { return "PERCENT";}} | ||
109 | public override int yynum { get { return 22; }} | ||
110 | public PERCENT(Lexer yyl):base(yyl) {}} | ||
111 | //%AT+23 | ||
112 | public class AT : TOKEN{ public override string yyname { get { return "AT";}} | ||
113 | public override int yynum { get { return 23; }} | ||
114 | public AT(Lexer yyl):base(yyl) {}} | ||
115 | //%PERIOD+24 | ||
116 | public class PERIOD : TOKEN{ public override string yyname { get { return "PERIOD";}} | ||
117 | public override int yynum { get { return 24; }} | ||
118 | public PERIOD(Lexer yyl):base(yyl) {}} | ||
119 | //%LEFT_ANGLE+25 | ||
120 | public class LEFT_ANGLE : TOKEN{ public override string yyname { get { return "LEFT_ANGLE";}} | ||
121 | public override int yynum { get { return 25; }} | ||
122 | public LEFT_ANGLE(Lexer yyl):base(yyl) {}} | ||
123 | //%RIGHT_ANGLE+26 | ||
124 | public class RIGHT_ANGLE : TOKEN{ public override string yyname { get { return "RIGHT_ANGLE";}} | ||
125 | public override int yynum { get { return 26; }} | ||
126 | public RIGHT_ANGLE(Lexer yyl):base(yyl) {}} | ||
127 | //%LEFT_BRACKET+27 | ||
128 | public class LEFT_BRACKET : TOKEN{ public override string yyname { get { return "LEFT_BRACKET";}} | ||
129 | public override int yynum { get { return 27; }} | ||
130 | public LEFT_BRACKET(Lexer yyl):base(yyl) {}} | ||
131 | //%RIGHT_BRACKET+28 | ||
132 | public class RIGHT_BRACKET : TOKEN{ public override string yyname { get { return "RIGHT_BRACKET";}} | ||
133 | public override int yynum { get { return 28; }} | ||
134 | public RIGHT_BRACKET(Lexer yyl):base(yyl) {}} | ||
135 | //%EQUALS_EQUALS+29 | ||
136 | public class EQUALS_EQUALS : TOKEN{ public override string yyname { get { return "EQUALS_EQUALS";}} | ||
137 | public override int yynum { get { return 29; }} | ||
138 | public EQUALS_EQUALS(Lexer yyl):base(yyl) {}} | ||
139 | //%EXCLAMATION_EQUALS+30 | ||
140 | public class EXCLAMATION_EQUALS : TOKEN{ public override string yyname { get { return "EXCLAMATION_EQUALS";}} | ||
141 | public override int yynum { get { return 30; }} | ||
142 | public EXCLAMATION_EQUALS(Lexer yyl):base(yyl) {}} | ||
143 | //%LESS_EQUALS+31 | ||
144 | public class LESS_EQUALS : TOKEN{ public override string yyname { get { return "LESS_EQUALS";}} | ||
145 | public override int yynum { get { return 31; }} | ||
146 | public LESS_EQUALS(Lexer yyl):base(yyl) {}} | ||
147 | //%GREATER_EQUALS+32 | ||
148 | public class GREATER_EQUALS : TOKEN{ public override string yyname { get { return "GREATER_EQUALS";}} | ||
149 | public override int yynum { get { return 32; }} | ||
150 | public GREATER_EQUALS(Lexer yyl):base(yyl) {}} | ||
151 | //%AMP+33 | ||
152 | public class AMP : TOKEN{ public override string yyname { get { return "AMP";}} | ||
153 | public override int yynum { get { return 33; }} | ||
154 | public AMP(Lexer yyl):base(yyl) {}} | ||
155 | //%STROKE+34 | ||
156 | public class STROKE : TOKEN{ public override string yyname { get { return "STROKE";}} | ||
157 | public override int yynum { get { return 34; }} | ||
158 | public STROKE(Lexer yyl):base(yyl) {}} | ||
159 | //%CARET+35 | ||
160 | public class CARET : TOKEN{ public override string yyname { get { return "CARET";}} | ||
161 | public override int yynum { get { return 35; }} | ||
162 | public CARET(Lexer yyl):base(yyl) {}} | ||
163 | //%TILDE+36 | ||
164 | public class TILDE : TOKEN{ public override string yyname { get { return "TILDE";}} | ||
165 | public override int yynum { get { return 36; }} | ||
166 | public TILDE(Lexer yyl):base(yyl) {}} | ||
167 | //%EXCLAMATION+37 | ||
168 | public class EXCLAMATION : TOKEN{ public override string yyname { get { return "EXCLAMATION";}} | ||
169 | public override int yynum { get { return 37; }} | ||
170 | public EXCLAMATION(Lexer yyl):base(yyl) {}} | ||
171 | //%AMP_AMP+38 | ||
172 | public class AMP_AMP : TOKEN{ public override string yyname { get { return "AMP_AMP";}} | ||
173 | public override int yynum { get { return 38; }} | ||
174 | public AMP_AMP(Lexer yyl):base(yyl) {}} | ||
175 | //%STROKE_STROKE+39 | ||
176 | public class STROKE_STROKE : TOKEN{ public override string yyname { get { return "STROKE_STROKE";}} | ||
177 | public override int yynum { get { return 39; }} | ||
178 | public STROKE_STROKE(Lexer yyl):base(yyl) {}} | ||
179 | //%LEFT_SHIFT+40 | ||
180 | public class LEFT_SHIFT : TOKEN{ public override string yyname { get { return "LEFT_SHIFT";}} | ||
181 | public override int yynum { get { return 40; }} | ||
182 | public LEFT_SHIFT(Lexer yyl):base(yyl) {}} | ||
183 | //%RIGHT_SHIFT+41 | ||
184 | public class RIGHT_SHIFT : TOKEN{ public override string yyname { get { return "RIGHT_SHIFT";}} | ||
185 | public override int yynum { get { return 41; }} | ||
186 | public RIGHT_SHIFT(Lexer yyl):base(yyl) {}} | ||
187 | //%IF+42 | ||
188 | public class IF : TOKEN{ public override string yyname { get { return "IF";}} | ||
189 | public override int yynum { get { return 42; }} | ||
190 | public IF(Lexer yyl):base(yyl) {}} | ||
191 | //%ELSE+43 | ||
192 | public class ELSE : TOKEN{ public override string yyname { get { return "ELSE";}} | ||
193 | public override int yynum { get { return 43; }} | ||
194 | public ELSE(Lexer yyl):base(yyl) {}} | ||
195 | //%DO+44 | ||
196 | public class DO : TOKEN{ public override string yyname { get { return "DO";}} | ||
197 | public override int yynum { get { return 44; }} | ||
198 | public DO(Lexer yyl):base(yyl) {}} | ||
199 | //%WHILE+45 | ||
200 | public class WHILE : TOKEN{ public override string yyname { get { return "WHILE";}} | ||
201 | public override int yynum { get { return 45; }} | ||
202 | public WHILE(Lexer yyl):base(yyl) {}} | ||
203 | //%FOR+46 | ||
204 | public class FOR : TOKEN{ public override string yyname { get { return "FOR";}} | ||
205 | public override int yynum { get { return 46; }} | ||
206 | public FOR(Lexer yyl):base(yyl) {}} | ||
207 | //%DEFAULT_STATE+47 | ||
208 | public class DEFAULT_STATE : TOKEN{ public override string yyname { get { return "DEFAULT_STATE";}} | ||
209 | public override int yynum { get { return 47; }} | ||
210 | public DEFAULT_STATE(Lexer yyl):base(yyl) {}} | ||
211 | //%STATE+48 | ||
212 | public class STATE : TOKEN{ public override string yyname { get { return "STATE";}} | ||
213 | public override int yynum { get { return 48; }} | ||
214 | public STATE(Lexer yyl):base(yyl) {}} | ||
215 | //%JUMP+49 | ||
216 | public class JUMP : TOKEN{ public override string yyname { get { return "JUMP";}} | ||
217 | public override int yynum { get { return 49; }} | ||
218 | public JUMP(Lexer yyl):base(yyl) {}} | ||
219 | //%RETURN+50 | ||
220 | public class RETURN : TOKEN{ public override string yyname { get { return "RETURN";}} | ||
221 | public override int yynum { get { return 50; }} | ||
222 | public RETURN(Lexer yyl):base(yyl) {}} | ||
223 | //%INTEGER_TYPE+51 | ||
224 | public class INTEGER_TYPE : TOKEN{ public override string yyname { get { return "INTEGER_TYPE";}} | ||
225 | public override int yynum { get { return 51; }} | ||
226 | public INTEGER_TYPE(Lexer yyl):base(yyl) {}} | ||
227 | //%FLOAT_TYPE+52 | ||
228 | public class FLOAT_TYPE : TOKEN{ public override string yyname { get { return "FLOAT_TYPE";}} | ||
229 | public override int yynum { get { return 52; }} | ||
230 | public FLOAT_TYPE(Lexer yyl):base(yyl) {}} | ||
231 | //%STRING_TYPE+53 | ||
232 | public class STRING_TYPE : TOKEN{ public override string yyname { get { return "STRING_TYPE";}} | ||
233 | public override int yynum { get { return 53; }} | ||
234 | public STRING_TYPE(Lexer yyl):base(yyl) {}} | ||
235 | //%KEY_TYPE+54 | ||
236 | public class KEY_TYPE : TOKEN{ public override string yyname { get { return "KEY_TYPE";}} | ||
237 | public override int yynum { get { return 54; }} | ||
238 | public KEY_TYPE(Lexer yyl):base(yyl) {}} | ||
239 | //%VECTOR_TYPE+55 | ||
240 | public class VECTOR_TYPE : TOKEN{ public override string yyname { get { return "VECTOR_TYPE";}} | ||
241 | public override int yynum { get { return 55; }} | ||
242 | public VECTOR_TYPE(Lexer yyl):base(yyl) {}} | ||
243 | //%ROTATION_TYPE+56 | ||
244 | public class ROTATION_TYPE : TOKEN{ public override string yyname { get { return "ROTATION_TYPE";}} | ||
245 | public override int yynum { get { return 56; }} | ||
246 | public ROTATION_TYPE(Lexer yyl):base(yyl) {}} | ||
247 | //%LIST_TYPE+57 | ||
248 | public class LIST_TYPE : TOKEN{ public override string yyname { get { return "LIST_TYPE";}} | ||
249 | public override int yynum { get { return 57; }} | ||
250 | public LIST_TYPE(Lexer yyl):base(yyl) {}} | ||
251 | //%AT_ROT_TARGET_EVENT+58 | ||
252 | public class AT_ROT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "AT_ROT_TARGET_EVENT";}} | ||
253 | public override int yynum { get { return 58; }} | ||
254 | public AT_ROT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
255 | //%AT_TARGET_EVENT+59 | ||
256 | public class AT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "AT_TARGET_EVENT";}} | ||
257 | public override int yynum { get { return 59; }} | ||
258 | public AT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
259 | //%ATTACH_EVENT+60 | ||
260 | public class ATTACH_EVENT : TOKEN{ public override string yyname { get { return "ATTACH_EVENT";}} | ||
261 | public override int yynum { get { return 60; }} | ||
262 | public ATTACH_EVENT(Lexer yyl):base(yyl) {}} | ||
263 | //%CHANGED_EVENT+61 | ||
264 | public class CHANGED_EVENT : TOKEN{ public override string yyname { get { return "CHANGED_EVENT";}} | ||
265 | public override int yynum { get { return 61; }} | ||
266 | public CHANGED_EVENT(Lexer yyl):base(yyl) {}} | ||
267 | //%COLLISION_EVENT+62 | ||
268 | public class COLLISION_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_EVENT";}} | ||
269 | public override int yynum { get { return 62; }} | ||
270 | public COLLISION_EVENT(Lexer yyl):base(yyl) {}} | ||
271 | //%COLLISION_END_EVENT+63 | ||
272 | public class COLLISION_END_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_END_EVENT";}} | ||
273 | public override int yynum { get { return 63; }} | ||
274 | public COLLISION_END_EVENT(Lexer yyl):base(yyl) {}} | ||
275 | //%COLLISION_START_EVENT+64 | ||
276 | public class COLLISION_START_EVENT : TOKEN{ public override string yyname { get { return "COLLISION_START_EVENT";}} | ||
277 | public override int yynum { get { return 64; }} | ||
278 | public COLLISION_START_EVENT(Lexer yyl):base(yyl) {}} | ||
279 | //%CONTROL_EVENT+65 | ||
280 | public class CONTROL_EVENT : TOKEN{ public override string yyname { get { return "CONTROL_EVENT";}} | ||
281 | public override int yynum { get { return 65; }} | ||
282 | public CONTROL_EVENT(Lexer yyl):base(yyl) {}} | ||
283 | //%DATASERVER_EVENT+66 | ||
284 | public class DATASERVER_EVENT : TOKEN{ public override string yyname { get { return "DATASERVER_EVENT";}} | ||
285 | public override int yynum { get { return 66; }} | ||
286 | public DATASERVER_EVENT(Lexer yyl):base(yyl) {}} | ||
287 | //%EMAIL_EVENT+67 | ||
288 | public class EMAIL_EVENT : TOKEN{ public override string yyname { get { return "EMAIL_EVENT";}} | ||
289 | public override int yynum { get { return 67; }} | ||
290 | public EMAIL_EVENT(Lexer yyl):base(yyl) {}} | ||
291 | //%HTTP_RESPONSE_EVENT+68 | ||
292 | public class HTTP_RESPONSE_EVENT : TOKEN{ public override string yyname { get { return "HTTP_RESPONSE_EVENT";}} | ||
293 | public override int yynum { get { return 68; }} | ||
294 | public HTTP_RESPONSE_EVENT(Lexer yyl):base(yyl) {}} | ||
295 | //%LAND_COLLISION_EVENT+69 | ||
296 | public class LAND_COLLISION_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_EVENT";}} | ||
297 | public override int yynum { get { return 69; }} | ||
298 | public LAND_COLLISION_EVENT(Lexer yyl):base(yyl) {}} | ||
299 | //%LAND_COLLISION_END_EVENT+70 | ||
300 | public class LAND_COLLISION_END_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_END_EVENT";}} | ||
301 | public override int yynum { get { return 70; }} | ||
302 | public LAND_COLLISION_END_EVENT(Lexer yyl):base(yyl) {}} | ||
303 | //%LAND_COLLISION_START_EVENT+71 | ||
304 | public class LAND_COLLISION_START_EVENT : TOKEN{ public override string yyname { get { return "LAND_COLLISION_START_EVENT";}} | ||
305 | public override int yynum { get { return 71; }} | ||
306 | public LAND_COLLISION_START_EVENT(Lexer yyl):base(yyl) {}} | ||
307 | //%LINK_MESSAGE_EVENT+72 | ||
308 | public class LINK_MESSAGE_EVENT : TOKEN{ public override string yyname { get { return "LINK_MESSAGE_EVENT";}} | ||
309 | public override int yynum { get { return 72; }} | ||
310 | public LINK_MESSAGE_EVENT(Lexer yyl):base(yyl) {}} | ||
311 | //%LISTEN_EVENT+73 | ||
312 | public class LISTEN_EVENT : TOKEN{ public override string yyname { get { return "LISTEN_EVENT";}} | ||
313 | public override int yynum { get { return 73; }} | ||
314 | public LISTEN_EVENT(Lexer yyl):base(yyl) {}} | ||
315 | //%MONEY_EVENT+74 | ||
316 | public class MONEY_EVENT : TOKEN{ public override string yyname { get { return "MONEY_EVENT";}} | ||
317 | public override int yynum { get { return 74; }} | ||
318 | public MONEY_EVENT(Lexer yyl):base(yyl) {}} | ||
319 | //%MOVING_END_EVENT+75 | ||
320 | public class MOVING_END_EVENT : TOKEN{ public override string yyname { get { return "MOVING_END_EVENT";}} | ||
321 | public override int yynum { get { return 75; }} | ||
322 | public MOVING_END_EVENT(Lexer yyl):base(yyl) {}} | ||
323 | //%MOVING_START_EVENT+76 | ||
324 | public class MOVING_START_EVENT : TOKEN{ public override string yyname { get { return "MOVING_START_EVENT";}} | ||
325 | public override int yynum { get { return 76; }} | ||
326 | public MOVING_START_EVENT(Lexer yyl):base(yyl) {}} | ||
327 | //%NO_SENSOR_EVENT+77 | ||
328 | public class NO_SENSOR_EVENT : TOKEN{ public override string yyname { get { return "NO_SENSOR_EVENT";}} | ||
329 | public override int yynum { get { return 77; }} | ||
330 | public NO_SENSOR_EVENT(Lexer yyl):base(yyl) {}} | ||
331 | //%NOT_AT_ROT_TARGET_EVENT+78 | ||
332 | public class NOT_AT_ROT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "NOT_AT_ROT_TARGET_EVENT";}} | ||
333 | public override int yynum { get { return 78; }} | ||
334 | public NOT_AT_ROT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
335 | //%NOT_AT_TARGET_EVENT+79 | ||
336 | public class NOT_AT_TARGET_EVENT : TOKEN{ public override string yyname { get { return "NOT_AT_TARGET_EVENT";}} | ||
337 | public override int yynum { get { return 79; }} | ||
338 | public NOT_AT_TARGET_EVENT(Lexer yyl):base(yyl) {}} | ||
339 | //%OBJECT_REZ_EVENT+80 | ||
340 | public class OBJECT_REZ_EVENT : TOKEN{ public override string yyname { get { return "OBJECT_REZ_EVENT";}} | ||
341 | public override int yynum { get { return 80; }} | ||
342 | public OBJECT_REZ_EVENT(Lexer yyl):base(yyl) {}} | ||
343 | //%ON_REZ_EVENT+81 | ||
344 | public class ON_REZ_EVENT : TOKEN{ public override string yyname { get { return "ON_REZ_EVENT";}} | ||
345 | public override int yynum { get { return 81; }} | ||
346 | public ON_REZ_EVENT(Lexer yyl):base(yyl) {}} | ||
347 | //%REMOTE_DATA_EVENT+82 | ||
348 | public class REMOTE_DATA_EVENT : TOKEN{ public override string yyname { get { return "REMOTE_DATA_EVENT";}} | ||
349 | public override int yynum { get { return 82; }} | ||
350 | public REMOTE_DATA_EVENT(Lexer yyl):base(yyl) {}} | ||
351 | //%RUN_TIME_PERMISSIONS_EVENT+83 | ||
352 | public class RUN_TIME_PERMISSIONS_EVENT : TOKEN{ public override string yyname { get { return "RUN_TIME_PERMISSIONS_EVENT";}} | ||
353 | public override int yynum { get { return 83; }} | ||
354 | public RUN_TIME_PERMISSIONS_EVENT(Lexer yyl):base(yyl) {}} | ||
355 | //%SENSOR_EVENT+84 | ||
356 | public class SENSOR_EVENT : TOKEN{ public override string yyname { get { return "SENSOR_EVENT";}} | ||
357 | public override int yynum { get { return 84; }} | ||
358 | public SENSOR_EVENT(Lexer yyl):base(yyl) {}} | ||
359 | //%STATE_ENTRY_EVENT+85 | ||
360 | public class STATE_ENTRY_EVENT : TOKEN{ public override string yyname { get { return "STATE_ENTRY_EVENT";}} | ||
361 | public override int yynum { get { return 85; }} | ||
362 | public STATE_ENTRY_EVENT(Lexer yyl):base(yyl) {}} | ||
363 | //%STATE_EXIT_EVENT+86 | ||
364 | public class STATE_EXIT_EVENT : TOKEN{ public override string yyname { get { return "STATE_EXIT_EVENT";}} | ||
365 | public override int yynum { get { return 86; }} | ||
366 | public STATE_EXIT_EVENT(Lexer yyl):base(yyl) {}} | ||
367 | //%TIMER_EVENT+87 | ||
368 | public class TIMER_EVENT : TOKEN{ public override string yyname { get { return "TIMER_EVENT";}} | ||
369 | public override int yynum { get { return 87; }} | ||
370 | public TIMER_EVENT(Lexer yyl):base(yyl) {}} | ||
371 | //%TOUCH_EVENT+88 | ||
372 | public class TOUCH_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_EVENT";}} | ||
373 | public override int yynum { get { return 88; }} | ||
374 | public TOUCH_EVENT(Lexer yyl):base(yyl) {}} | ||
375 | //%TOUCH_START_EVENT+89 | ||
376 | public class TOUCH_START_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_START_EVENT";}} | ||
377 | public override int yynum { get { return 89; }} | ||
378 | public TOUCH_START_EVENT(Lexer yyl):base(yyl) {}} | ||
379 | //%TOUCH_END_EVENT+90 | ||
380 | public class TOUCH_END_EVENT : TOKEN{ public override string yyname { get { return "TOUCH_END_EVENT";}} | ||
381 | public override int yynum { get { return 90; }} | ||
382 | public TOUCH_END_EVENT(Lexer yyl):base(yyl) {}} | ||
383 | //%IDENT+91 | ||
384 | public class IDENT : TOKEN{ public override string yyname { get { return "IDENT";}} | ||
385 | public override int yynum { get { return 91; }} | ||
386 | public IDENT(Lexer yyl):base(yyl) {}} | ||
387 | //%INTEGER_CONSTANT+92 | ||
388 | public class INTEGER_CONSTANT : TOKEN{ public override string yyname { get { return "INTEGER_CONSTANT";}} | ||
389 | public override int yynum { get { return 92; }} | ||
390 | public INTEGER_CONSTANT(Lexer yyl):base(yyl) {}} | ||
391 | //%HEX_INTEGER_CONSTANT+93 | ||
392 | public class HEX_INTEGER_CONSTANT : TOKEN{ public override string yyname { get { return "HEX_INTEGER_CONSTANT";}} | ||
393 | public override int yynum { get { return 93; }} | ||
394 | public HEX_INTEGER_CONSTANT(Lexer yyl):base(yyl) {}} | ||
395 | //%FLOAT_CONSTANT+94 | ||
396 | public class FLOAT_CONSTANT : TOKEN{ public override string yyname { get { return "FLOAT_CONSTANT";}} | ||
397 | public override int yynum { get { return 94; }} | ||
398 | public FLOAT_CONSTANT(Lexer yyl):base(yyl) {}} | ||
399 | //%|LSLTokens | ||
400 | public class yyLSLTokens : YyLexer { | ||
401 | public yyLSLTokens(ErrorHandler eh):base(eh) { arr = new int[] { | ||
402 | 101,4,6,52,0, | ||
403 | 46,0,53,0,6, | ||
404 | 102,4,16,117,0, | ||
405 | 115,0,45,0,97, | ||
406 | 0,115,0,99,0, | ||
407 | 105,0,105,0,2, | ||
408 | 0,103,5,27,7, | ||
409 | 0,104,9,1,0, | ||
410 | 3,192,0,105,5, | ||
411 | 27,3,65,0,2, | ||
412 | 1,3,66,0,2, | ||
413 | 1,3,67,0,2, | ||
414 | 1,3,68,0,2, | ||
415 | 1,3,69,0,2, | ||
416 | 1,3,70,0,2, | ||
417 | 1,3,71,0,2, | ||
418 | 1,3,72,0,2, | ||
419 | 1,3,73,0,2, | ||
420 | 1,3,74,0,2, | ||
421 | 1,3,75,0,2, | ||
422 | 1,3,76,0,2, | ||
423 | 1,3,77,0,2, | ||
424 | 1,3,78,0,2, | ||
425 | 1,3,79,0,2, | ||
426 | 1,3,80,0,2, | ||
427 | 1,3,81,0,2, | ||
428 | 1,3,82,0,2, | ||
429 | 1,3,83,0,2, | ||
430 | 1,3,84,0,2, | ||
431 | 1,3,85,0,2, | ||
432 | 1,3,86,0,2, | ||
433 | 1,3,87,0,2, | ||
434 | 1,3,88,0,2, | ||
435 | 1,3,89,0,2, | ||
436 | 1,3,90,0,2, | ||
437 | 1,3,192,0,2, | ||
438 | 1,7,1,106,9, | ||
439 | 1,1,3,170,0, | ||
440 | 107,5,27,3,109, | ||
441 | 0,2,1,3,110, | ||
442 | 0,2,1,3,111, | ||
443 | 0,2,1,3,112, | ||
444 | 0,2,1,3,113, | ||
445 | 0,2,1,3,114, | ||
446 | 0,2,1,3,115, | ||
447 | 0,2,1,3,116, | ||
448 | 0,2,1,3,117, | ||
449 | 0,2,1,3,118, | ||
450 | 0,2,1,3,119, | ||
451 | 0,2,1,3,120, | ||
452 | 0,2,1,3,121, | ||
453 | 0,2,1,3,122, | ||
454 | 0,2,1,3,170, | ||
455 | 0,2,1,3,97, | ||
456 | 0,2,1,3,98, | ||
457 | 0,2,1,3,99, | ||
458 | 0,2,1,3,100, | ||
459 | 0,2,1,3,101, | ||
460 | 0,2,1,3,102, | ||
461 | 0,2,1,3,103, | ||
462 | 0,2,1,3,104, | ||
463 | 0,2,1,3,105, | ||
464 | 0,2,1,3,106, | ||
465 | 0,2,1,3,107, | ||
466 | 0,2,1,3,108, | ||
467 | 0,2,1,7,2, | ||
468 | 108,9,1,2,3, | ||
469 | 197,1,109,5,1, | ||
470 | 3,197,1,2,1, | ||
471 | 7,3,110,9,1, | ||
472 | 3,3,176,2,111, | ||
473 | 5,1,3,176,2, | ||
474 | 2,1,7,4,112, | ||
475 | 9,1,4,3,187, | ||
476 | 1,113,5,1,3, | ||
477 | 187,1,2,1,7, | ||
478 | 5,114,9,1,5, | ||
479 | 3,0,3,115,5, | ||
480 | 1,3,0,3,2, | ||
481 | 1,7,6,116,9, | ||
482 | 1,6,3,3,9, | ||
483 | 117,5,1,3,3, | ||
484 | 9,2,1,7,7, | ||
485 | 118,9,1,7,3, | ||
486 | 136,4,119,5,1, | ||
487 | 3,136,4,2,1, | ||
488 | 7,8,120,9,1, | ||
489 | 8,3,96,6,121, | ||
490 | 5,11,3,96,6, | ||
491 | 2,1,3,48,0, | ||
492 | 2,1,3,49,0, | ||
493 | 2,1,3,50,0, | ||
494 | 2,1,3,51,0, | ||
495 | 2,1,3,52,0, | ||
496 | 2,1,3,53,0, | ||
497 | 2,1,3,54,0, | ||
498 | 2,1,3,55,0, | ||
499 | 2,1,3,56,0, | ||
500 | 2,1,3,57,0, | ||
501 | 2,1,7,9,122, | ||
502 | 9,1,9,3,96, | ||
503 | 33,123,5,1,3, | ||
504 | 96,33,2,1,7, | ||
505 | 10,124,9,1,10, | ||
506 | 3,178,0,125,5, | ||
507 | 1,3,178,0,2, | ||
508 | 1,7,11,126,9, | ||
509 | 1,11,3,160,0, | ||
510 | 127,5,2,3,160, | ||
511 | 0,2,1,3,32, | ||
512 | 0,2,1,7,12, | ||
513 | 128,9,1,12,3, | ||
514 | 40,32,129,5,1, | ||
515 | 3,40,32,2,1, | ||
516 | 7,13,130,9,1, | ||
517 | 13,3,41,32,131, | ||
518 | 5,1,3,41,32, | ||
519 | 2,1,7,14,132, | ||
520 | 9,1,14,3,1, | ||
521 | 0,133,5,5,3, | ||
522 | 0,0,2,1,3, | ||
523 | 1,0,2,1,3, | ||
524 | 13,0,2,1,3, | ||
525 | 9,0,2,1,3, | ||
526 | 10,0,2,1,7, | ||
527 | 15,134,9,1,15, | ||
528 | 3,15,7,135,5, | ||
529 | 1,3,15,7,2, | ||
530 | 1,7,17,136,9, | ||
531 | 1,17,3,0,224, | ||
532 | 137,5,1,3,0, | ||
533 | 224,2,1,7,18, | ||
534 | 138,9,1,18,3, | ||
535 | 63,32,139,5,2, | ||
536 | 3,63,32,2,1, | ||
537 | 3,95,0,2,1, | ||
538 | 7,19,140,9,1, | ||
539 | 19,3,173,0,141, | ||
540 | 5,2,3,45,0, | ||
541 | 2,1,3,173,0, | ||
542 | 2,1,7,20,142, | ||
543 | 9,1,20,3,58, | ||
544 | 15,143,5,4,3, | ||
545 | 123,0,2,1,3, | ||
546 | 91,0,2,1,3, | ||
547 | 58,15,2,1,3, | ||
548 | 40,0,2,1,7, | ||
549 | 21,144,9,1,21, | ||
550 | 3,59,15,145,5, | ||
551 | 4,3,59,15,2, | ||
552 | 1,3,125,0,2, | ||
553 | 1,3,93,0,2, | ||
554 | 1,3,41,0,2, | ||
555 | 1,7,22,146,9, | ||
556 | 1,22,3,171,0, | ||
557 | 147,5,1,3,171, | ||
558 | 0,2,1,7,23, | ||
559 | 148,9,1,23,3, | ||
560 | 187,0,149,5,1, | ||
561 | 3,187,0,2,1, | ||
562 | 7,24,150,9,1, | ||
563 | 24,3,35,0,151, | ||
564 | 5,12,3,37,0, | ||
565 | 2,1,3,38,0, | ||
566 | 2,1,3,42,0, | ||
567 | 2,1,3,44,0, | ||
568 | 2,1,3,46,0, | ||
569 | 2,1,3,47,0, | ||
570 | 2,1,3,92,0, | ||
571 | 2,1,3,59,0, | ||
572 | 2,1,3,64,0, | ||
573 | 2,1,3,33,0, | ||
574 | 2,1,3,34,0, | ||
575 | 2,1,3,35,0, | ||
576 | 2,1,7,25,152, | ||
577 | 9,1,25,3,172, | ||
578 | 0,153,5,7,3, | ||
579 | 172,0,2,1,3, | ||
580 | 124,0,2,1,3, | ||
581 | 126,0,2,1,3, | ||
582 | 60,0,2,1,3, | ||
583 | 61,0,2,1,3, | ||
584 | 62,0,2,1,3, | ||
585 | 43,0,2,1,7, | ||
586 | 26,154,9,1,26, | ||
587 | 3,36,0,155,5, | ||
588 | 1,3,36,0,2, | ||
589 | 1,7,27,156,9, | ||
590 | 1,27,3,96,0, | ||
591 | 157,5,2,3,94, | ||
592 | 0,2,1,3,96, | ||
593 | 0,2,1,7,27, | ||
594 | 2,0,158,5,2, | ||
595 | 159,4,18,89,0, | ||
596 | 89,0,73,0,78, | ||
597 | 0,73,0,84,0, | ||
598 | 73,0,65,0,76, | ||
599 | 0,160,12,1,1022, | ||
600 | 161,5,91,3,9, | ||
601 | 0,162,12,1,39257, | ||
602 | 163,5,0,164,11, | ||
603 | 1,999,0,165,4, | ||
604 | 0,1,-1,3,10, | ||
605 | 0,162,3,13,0, | ||
606 | 162,3,32,0,162, | ||
607 | 3,33,0,166,12, | ||
608 | 1,42170,167,5,1, | ||
609 | 3,61,0,168,12, | ||
610 | 1,42285,169,5,0, | ||
611 | 170,11,1,142,0, | ||
612 | 171,4,36,69,0, | ||
613 | 88,0,67,0,76, | ||
614 | 0,65,0,77,0, | ||
615 | 65,0,84,0,73, | ||
616 | 0,79,0,78,0, | ||
617 | 95,0,69,0,81, | ||
618 | 0,85,0,65,0, | ||
619 | 76,0,83,0,1, | ||
620 | -1,172,11,1,180, | ||
621 | 0,173,4,22,69, | ||
622 | 0,88,0,67,0, | ||
623 | 76,0,65,0,77, | ||
624 | 0,65,0,84,0, | ||
625 | 73,0,79,0,78, | ||
626 | 0,1,-1,3,34, | ||
627 | 0,174,12,1,42411, | ||
628 | 175,5,0,176,11, | ||
629 | 1,925,0,165,1, | ||
630 | -1,3,37,0,177, | ||
631 | 12,1,40481,178,5, | ||
632 | 1,3,61,0,179, | ||
633 | 12,1,40596,180,5, | ||
634 | 0,181,11,1,40, | ||
635 | 0,182,4,28,80, | ||
636 | 0,69,0,82,0, | ||
637 | 67,0,69,0,78, | ||
638 | 0,84,0,95,0, | ||
639 | 69,0,81,0,85, | ||
640 | 0,65,0,76,0, | ||
641 | 83,0,1,-1,183, | ||
642 | 11,1,101,0,184, | ||
643 | 4,14,80,0,69, | ||
644 | 0,82,0,67,0, | ||
645 | 69,0,78,0,84, | ||
646 | 0,1,-1,3,38, | ||
647 | 0,185,12,1,40722, | ||
648 | 186,5,1,3,38, | ||
649 | 0,187,12,1,40822, | ||
650 | 188,5,0,189,11, | ||
651 | 1,185,0,190,4, | ||
652 | 14,65,0,77,0, | ||
653 | 80,0,95,0,65, | ||
654 | 0,77,0,80,0, | ||
655 | 1,-1,191,11,1, | ||
656 | 160,0,192,4,6, | ||
657 | 65,0,77,0,80, | ||
658 | 0,1,-1,3,40, | ||
659 | 0,193,12,1,39994, | ||
660 | 194,5,0,195,11, | ||
661 | 1,71,0,196,4, | ||
662 | 20,76,0,69,0, | ||
663 | 70,0,84,0,95, | ||
664 | 0,80,0,65,0, | ||
665 | 82,0,69,0,78, | ||
666 | 0,1,-1,3,41, | ||
667 | 0,197,12,1,40358, | ||
668 | 198,5,0,199,11, | ||
669 | 1,76,0,200,4, | ||
670 | 22,82,0,73,0, | ||
671 | 71,0,72,0,84, | ||
672 | 0,95,0,80,0, | ||
673 | 65,0,82,0,69, | ||
674 | 0,78,0,1,-1, | ||
675 | 3,42,0,201,12, | ||
676 | 1,40963,202,5,1, | ||
677 | 3,61,0,203,12, | ||
678 | 1,41078,204,5,0, | ||
679 | 205,11,1,28,0, | ||
680 | 206,4,22,83,0, | ||
681 | 84,0,65,0,82, | ||
682 | 0,95,0,69,0, | ||
683 | 81,0,85,0,65, | ||
684 | 0,76,0,83,0, | ||
685 | 1,-1,207,11,1, | ||
686 | 91,0,208,4,8, | ||
687 | 83,0,84,0,65, | ||
688 | 0,82,0,1,-1, | ||
689 | 3,43,0,209,12, | ||
690 | 1,43859,210,5,2, | ||
691 | 3,61,0,211,12, | ||
692 | 1,43974,212,5,0, | ||
693 | 213,11,1,16,0, | ||
694 | 214,4,22,80,0, | ||
695 | 76,0,85,0,83, | ||
696 | 0,95,0,69,0, | ||
697 | 81,0,85,0,65, | ||
698 | 0,76,0,83,0, | ||
699 | 1,-1,3,43,0, | ||
700 | 215,12,1,44096,216, | ||
701 | 5,0,217,11,1, | ||
702 | 2,0,218,4,18, | ||
703 | 73,0,78,0,67, | ||
704 | 0,82,0,69,0, | ||
705 | 77,0,69,0,78, | ||
706 | 0,84,0,1,-1, | ||
707 | 219,11,1,81,0, | ||
708 | 220,4,8,80,0, | ||
709 | 76,0,85,0,83, | ||
710 | 0,1,-1,3,44, | ||
711 | 0,221,12,1,41204, | ||
712 | 222,5,0,223,11, | ||
713 | 1,61,0,224,4, | ||
714 | 10,67,0,79,0, | ||
715 | 77,0,77,0,65, | ||
716 | 0,1,-1,3,45, | ||
717 | 0,225,12,1,39389, | ||
718 | 226,5,2,3,45, | ||
719 | 0,227,12,1,39476, | ||
720 | 228,5,0,229,11, | ||
721 | 1,10,0,230,4, | ||
722 | 18,68,0,69,0, | ||
723 | 67,0,82,0,69, | ||
724 | 0,77,0,69,0, | ||
725 | 78,0,84,0,1, | ||
726 | -1,3,61,0,231, | ||
727 | 12,1,39624,232,5, | ||
728 | 0,233,11,1,22, | ||
729 | 0,234,4,24,77, | ||
730 | 0,73,0,78,0, | ||
731 | 85,0,83,0,95, | ||
732 | 0,69,0,81,0, | ||
733 | 85,0,65,0,76, | ||
734 | 0,83,0,1,-1, | ||
735 | 235,11,1,86,0, | ||
736 | 236,4,10,77,0, | ||
737 | 73,0,78,0,85, | ||
738 | 0,83,0,1,-1, | ||
739 | 3,46,0,237,12, | ||
740 | 1,41325,238,5,14, | ||
741 | 3,48,0,239,12, | ||
742 | 1,38991,240,5,14, | ||
743 | 3,48,0,239,3, | ||
744 | 49,0,239,3,50, | ||
745 | 0,239,3,51,0, | ||
746 | 239,3,52,0,239, | ||
747 | 3,53,0,239,3, | ||
748 | 54,0,239,3,55, | ||
749 | 0,239,3,56,0, | ||
750 | 239,3,57,0,239, | ||
751 | 3,101,0,241,12, | ||
752 | 1,38454,242,5,12, | ||
753 | 3,43,0,243,12, | ||
754 | 1,38781,244,5,10, | ||
755 | 3,48,0,245,12, | ||
756 | 1,38516,246,5,12, | ||
757 | 3,48,0,245,3, | ||
758 | 49,0,245,3,50, | ||
759 | 0,245,3,51,0, | ||
760 | 245,3,52,0,245, | ||
761 | 3,53,0,245,3, | ||
762 | 54,0,245,3,55, | ||
763 | 0,245,3,56,0, | ||
764 | 245,3,57,0,245, | ||
765 | 3,102,0,247,12, | ||
766 | 1,38522,248,5,0, | ||
767 | 249,11,1,866,0, | ||
768 | 250,4,28,70,0, | ||
769 | 76,0,79,0,65, | ||
770 | 0,84,0,95,0, | ||
771 | 67,0,79,0,78, | ||
772 | 0,83,0,84,0, | ||
773 | 65,0,78,0,84, | ||
774 | 0,1,-1,3,70, | ||
775 | 0,247,251,11,1, | ||
776 | 866,0,250,1,-1, | ||
777 | 3,49,0,245,3, | ||
778 | 50,0,245,3,51, | ||
779 | 0,245,3,52,0, | ||
780 | 245,3,53,0,245, | ||
781 | 3,54,0,245,3, | ||
782 | 55,0,245,3,56, | ||
783 | 0,245,3,57,0, | ||
784 | 245,0,165,1,-1, | ||
785 | 3,45,0,243,3, | ||
786 | 48,0,245,3,49, | ||
787 | 0,245,3,50,0, | ||
788 | 245,3,51,0,245, | ||
789 | 3,52,0,245,3, | ||
790 | 53,0,245,3,54, | ||
791 | 0,245,3,55,0, | ||
792 | 245,3,56,0,245, | ||
793 | 3,57,0,245,0, | ||
794 | 165,1,-1,3,102, | ||
795 | 0,247,3,69,0, | ||
796 | 241,3,70,0,247, | ||
797 | 252,11,1,866,0, | ||
798 | 250,1,-1,3,49, | ||
799 | 0,239,3,50,0, | ||
800 | 239,3,51,0,239, | ||
801 | 3,52,0,239,3, | ||
802 | 53,0,239,3,54, | ||
803 | 0,239,3,55,0, | ||
804 | 239,3,56,0,239, | ||
805 | 3,57,0,239,3, | ||
806 | 101,0,241,3,102, | ||
807 | 0,247,3,69,0, | ||
808 | 241,3,70,0,247, | ||
809 | 253,11,1,111,0, | ||
810 | 254,4,12,80,0, | ||
811 | 69,0,82,0,73, | ||
812 | 0,79,0,68,0, | ||
813 | 1,-1,3,47,0, | ||
814 | 255,12,1,41446,256, | ||
815 | 5,2,3,47,0, | ||
816 | 257,12,1,41550,258, | ||
817 | 5,118,3,1,0, | ||
818 | 259,12,1,41551,260, | ||
819 | 5,118,3,1,0, | ||
820 | 259,3,9,0,259, | ||
821 | 3,96,33,259,3, | ||
822 | 13,0,259,3,0, | ||
823 | 3,259,3,32,0, | ||
824 | 259,3,33,0,259, | ||
825 | 3,34,0,259,3, | ||
826 | 35,0,259,3,36, | ||
827 | 0,259,3,37,0, | ||
828 | 259,3,38,0,259, | ||
829 | 3,40,0,259,3, | ||
830 | 41,0,259,3,42, | ||
831 | 0,259,3,43,0, | ||
832 | 259,3,44,0,259, | ||
833 | 3,45,0,259,3, | ||
834 | 46,0,259,3,47, | ||
835 | 0,259,3,3,9, | ||
836 | 259,3,49,0,259, | ||
837 | 3,50,0,259,3, | ||
838 | 48,0,259,3,52, | ||
839 | 0,259,3,53,0, | ||
840 | 259,3,51,0,259, | ||
841 | 3,55,0,259,3, | ||
842 | 56,0,259,3,54, | ||
843 | 0,259,3,59,0, | ||
844 | 259,3,57,0,259, | ||
845 | 3,61,0,259,3, | ||
846 | 62,0,259,3,60, | ||
847 | 0,259,3,64,0, | ||
848 | 259,3,65,0,259, | ||
849 | 3,66,0,259,3, | ||
850 | 67,0,259,3,68, | ||
851 | 0,259,3,69,0, | ||
852 | 259,3,70,0,259, | ||
853 | 3,71,0,259,3, | ||
854 | 72,0,259,3,73, | ||
855 | 0,259,3,74,0, | ||
856 | 259,3,75,0,259, | ||
857 | 3,76,0,259,3, | ||
858 | 77,0,259,3,78, | ||
859 | 0,259,3,79,0, | ||
860 | 259,3,80,0,259, | ||
861 | 3,81,0,259,3, | ||
862 | 82,0,259,3,83, | ||
863 | 0,259,3,84,0, | ||
864 | 259,3,85,0,259, | ||
865 | 3,86,0,259,3, | ||
866 | 87,0,259,3,88, | ||
867 | 0,259,3,89,0, | ||
868 | 259,3,90,0,259, | ||
869 | 3,91,0,259,3, | ||
870 | 92,0,259,3,93, | ||
871 | 0,259,3,94,0, | ||
872 | 259,3,95,0,259, | ||
873 | 3,96,0,259,3, | ||
874 | 97,0,259,3,98, | ||
875 | 0,259,3,99,0, | ||
876 | 259,3,100,0,259, | ||
877 | 3,101,0,259,3, | ||
878 | 102,0,259,3,103, | ||
879 | 0,259,3,104,0, | ||
880 | 259,3,105,0,259, | ||
881 | 3,106,0,259,3, | ||
882 | 107,0,259,3,15, | ||
883 | 7,259,3,109,0, | ||
884 | 259,3,110,0,259, | ||
885 | 3,111,0,259,3, | ||
886 | 112,0,259,3,113, | ||
887 | 0,259,3,114,0, | ||
888 | 259,3,115,0,259, | ||
889 | 3,116,0,259,3, | ||
890 | 117,0,259,3,118, | ||
891 | 0,259,3,119,0, | ||
892 | 259,3,120,0,259, | ||
893 | 3,121,0,259,3, | ||
894 | 122,0,259,3,108, | ||
895 | 0,259,3,124,0, | ||
896 | 259,3,125,0,259, | ||
897 | 3,96,6,259,3, | ||
898 | 123,0,259,3,126, | ||
899 | 0,259,3,58,15, | ||
900 | 259,3,59,15,259, | ||
901 | 3,136,4,259,3, | ||
902 | 160,0,259,3,170, | ||
903 | 0,259,3,171,0, | ||
904 | 259,3,172,0,259, | ||
905 | 3,173,0,259,3, | ||
906 | 178,0,259,3,176, | ||
907 | 2,259,3,187,0, | ||
908 | 259,3,187,1,259, | ||
909 | 3,192,0,259,3, | ||
910 | 41,32,259,3,197, | ||
911 | 1,259,3,0,224, | ||
912 | 259,3,40,32,259, | ||
913 | 3,63,32,259,261, | ||
914 | 11,1,1003,0,165, | ||
915 | 1,-1,3,9,0, | ||
916 | 259,3,96,33,259, | ||
917 | 3,13,0,259,3, | ||
918 | 0,3,259,3,32, | ||
919 | 0,259,3,33,0, | ||
920 | 259,3,34,0,259, | ||
921 | 3,35,0,259,3, | ||
922 | 36,0,259,3,37, | ||
923 | 0,259,3,38,0, | ||
924 | 259,3,40,0,259, | ||
925 | 3,41,0,259,3, | ||
926 | 42,0,259,3,43, | ||
927 | 0,259,3,44,0, | ||
928 | 259,3,45,0,259, | ||
929 | 3,46,0,259,3, | ||
930 | 47,0,259,3,3, | ||
931 | 9,259,3,49,0, | ||
932 | 259,3,50,0,259, | ||
933 | 3,48,0,259,3, | ||
934 | 52,0,259,3,53, | ||
935 | 0,259,3,51,0, | ||
936 | 259,3,55,0,259, | ||
937 | 3,56,0,259,3, | ||
938 | 54,0,259,3,59, | ||
939 | 0,259,3,57,0, | ||
940 | 259,3,61,0,259, | ||
941 | 3,62,0,259,3, | ||
942 | 60,0,259,3,64, | ||
943 | 0,259,3,65,0, | ||
944 | 259,3,66,0,259, | ||
945 | 3,67,0,259,3, | ||
946 | 68,0,259,3,69, | ||
947 | 0,259,3,70,0, | ||
948 | 259,3,71,0,259, | ||
949 | 3,72,0,259,3, | ||
950 | 73,0,259,3,74, | ||
951 | 0,259,3,75,0, | ||
952 | 259,3,76,0,259, | ||
953 | 3,77,0,259,3, | ||
954 | 78,0,259,3,79, | ||
955 | 0,259,3,80,0, | ||
956 | 259,3,81,0,259, | ||
957 | 3,82,0,259,3, | ||
958 | 83,0,259,3,84, | ||
959 | 0,259,3,85,0, | ||
960 | 259,3,86,0,259, | ||
961 | 3,87,0,259,3, | ||
962 | 88,0,259,3,89, | ||
963 | 0,259,3,90,0, | ||
964 | 259,3,91,0,259, | ||
965 | 3,92,0,259,3, | ||
966 | 93,0,259,3,94, | ||
967 | 0,259,3,95,0, | ||
968 | 259,3,96,0,259, | ||
969 | 3,97,0,259,3, | ||
970 | 98,0,259,3,99, | ||
971 | 0,259,3,100,0, | ||
972 | 259,3,101,0,259, | ||
973 | 3,102,0,259,3, | ||
974 | 103,0,259,3,104, | ||
975 | 0,259,3,105,0, | ||
976 | 259,3,106,0,259, | ||
977 | 3,107,0,259,3, | ||
978 | 15,7,259,3,109, | ||
979 | 0,259,3,110,0, | ||
980 | 259,3,111,0,259, | ||
981 | 3,112,0,259,3, | ||
982 | 113,0,259,3,114, | ||
983 | 0,259,3,115,0, | ||
984 | 259,3,116,0,259, | ||
985 | 3,117,0,259,3, | ||
986 | 118,0,259,3,119, | ||
987 | 0,259,3,120,0, | ||
988 | 259,3,121,0,259, | ||
989 | 3,122,0,259,3, | ||
990 | 108,0,259,3,124, | ||
991 | 0,259,3,125,0, | ||
992 | 259,3,96,6,259, | ||
993 | 3,123,0,259,3, | ||
994 | 126,0,259,3,58, | ||
995 | 15,259,3,59,15, | ||
996 | 259,3,136,4,259, | ||
997 | 3,160,0,259,3, | ||
998 | 170,0,259,3,171, | ||
999 | 0,259,3,172,0, | ||
1000 | 259,3,173,0,259, | ||
1001 | 3,178,0,259,3, | ||
1002 | 176,2,259,3,187, | ||
1003 | 0,259,3,187,1, | ||
1004 | 259,3,192,0,259, | ||
1005 | 3,41,32,259,3, | ||
1006 | 197,1,259,3,0, | ||
1007 | 224,259,3,40,32, | ||
1008 | 259,3,63,32,259, | ||
1009 | 262,11,1,1003,0, | ||
1010 | 165,1,-1,3,61, | ||
1011 | 0,263,12,1,41801, | ||
1012 | 264,5,0,265,11, | ||
1013 | 1,34,0,266,4, | ||
1014 | 24,83,0,76,0, | ||
1015 | 65,0,83,0,72, | ||
1016 | 0,95,0,69,0, | ||
1017 | 81,0,85,0,65, | ||
1018 | 0,76,0,83,0, | ||
1019 | 1,-1,267,11,1, | ||
1020 | 96,0,268,4,10, | ||
1021 | 83,0,76,0,65, | ||
1022 | 0,83,0,72,0, | ||
1023 | 1,-1,3,48,0, | ||
1024 | 269,12,1,38044,270, | ||
1025 | 5,13,3,120,0, | ||
1026 | 271,12,1,38068,272, | ||
1027 | 5,22,3,102,0, | ||
1028 | 273,12,1,38069,274, | ||
1029 | 5,22,3,102,0, | ||
1030 | 273,3,48,0,273, | ||
1031 | 3,49,0,273,3, | ||
1032 | 50,0,273,3,51, | ||
1033 | 0,273,3,52,0, | ||
1034 | 273,3,53,0,273, | ||
1035 | 3,54,0,273,3, | ||
1036 | 55,0,273,3,56, | ||
1037 | 0,273,3,57,0, | ||
1038 | 273,3,97,0,273, | ||
1039 | 3,98,0,273,3, | ||
1040 | 99,0,273,3,100, | ||
1041 | 0,273,3,101,0, | ||
1042 | 273,3,65,0,273, | ||
1043 | 3,66,0,273,3, | ||
1044 | 67,0,273,3,68, | ||
1045 | 0,273,3,69,0, | ||
1046 | 273,3,70,0,273, | ||
1047 | 275,11,1,847,0, | ||
1048 | 276,4,40,72,0, | ||
1049 | 69,0,88,0,95, | ||
1050 | 0,73,0,78,0, | ||
1051 | 84,0,69,0,71, | ||
1052 | 0,69,0,82,0, | ||
1053 | 95,0,67,0,79, | ||
1054 | 0,78,0,83,0, | ||
1055 | 84,0,65,0,78, | ||
1056 | 0,84,0,1,-1, | ||
1057 | 3,48,0,273,3, | ||
1058 | 49,0,273,3,50, | ||
1059 | 0,273,3,51,0, | ||
1060 | 273,3,52,0,273, | ||
1061 | 3,53,0,273,3, | ||
1062 | 54,0,273,3,55, | ||
1063 | 0,273,3,56,0, | ||
1064 | 273,3,57,0,273, | ||
1065 | 3,97,0,273,3, | ||
1066 | 98,0,273,3,99, | ||
1067 | 0,273,3,100,0, | ||
1068 | 273,3,101,0,273, | ||
1069 | 3,65,0,273,3, | ||
1070 | 66,0,273,3,67, | ||
1071 | 0,273,3,68,0, | ||
1072 | 273,3,69,0,273, | ||
1073 | 3,70,0,273,0, | ||
1074 | 165,1,-1,3,48, | ||
1075 | 0,277,12,1,38346, | ||
1076 | 278,5,11,3,46, | ||
1077 | 0,279,12,1,38449, | ||
1078 | 280,5,14,3,48, | ||
1079 | 0,239,3,49,0, | ||
1080 | 239,3,50,0,239, | ||
1081 | 3,51,0,239,3, | ||
1082 | 52,0,239,3,53, | ||
1083 | 0,239,3,54,0, | ||
1084 | 239,3,55,0,239, | ||
1085 | 3,56,0,239,3, | ||
1086 | 57,0,239,3,101, | ||
1087 | 0,241,3,102,0, | ||
1088 | 247,3,69,0,241, | ||
1089 | 3,70,0,247,281, | ||
1090 | 11,1,866,0,250, | ||
1091 | 1,-1,3,48,0, | ||
1092 | 277,3,49,0,277, | ||
1093 | 3,50,0,277,3, | ||
1094 | 51,0,277,3,52, | ||
1095 | 0,277,3,53,0, | ||
1096 | 277,3,54,0,277, | ||
1097 | 3,55,0,277,3, | ||
1098 | 56,0,277,3,57, | ||
1099 | 0,277,282,11,1, | ||
1100 | 841,0,283,4,32, | ||
1101 | 73,0,78,0,84, | ||
1102 | 0,69,0,71,0, | ||
1103 | 69,0,82,0,95, | ||
1104 | 0,67,0,79,0, | ||
1105 | 78,0,83,0,84, | ||
1106 | 0,65,0,78,0, | ||
1107 | 84,0,1,-1,3, | ||
1108 | 49,0,277,3,50, | ||
1109 | 0,277,3,88,0, | ||
1110 | 271,3,52,0,277, | ||
1111 | 3,53,0,277,3, | ||
1112 | 51,0,277,3,55, | ||
1113 | 0,277,3,56,0, | ||
1114 | 277,3,54,0,277, | ||
1115 | 3,46,0,279,3, | ||
1116 | 57,0,277,284,11, | ||
1117 | 1,841,0,283,1, | ||
1118 | -1,3,49,0,277, | ||
1119 | 3,50,0,277,3, | ||
1120 | 51,0,277,3,52, | ||
1121 | 0,277,3,53,0, | ||
1122 | 277,3,54,0,277, | ||
1123 | 3,55,0,277,3, | ||
1124 | 56,0,277,3,57, | ||
1125 | 0,277,3,59,0, | ||
1126 | 285,12,1,41928,286, | ||
1127 | 5,0,287,11,1, | ||
1128 | 46,0,288,4,18, | ||
1129 | 83,0,69,0,77, | ||
1130 | 0,73,0,67,0, | ||
1131 | 79,0,76,0,79, | ||
1132 | 0,78,0,1,-1, | ||
1133 | 3,60,0,289,12, | ||
1134 | 1,42896,290,5,2, | ||
1135 | 3,60,0,291,12, | ||
1136 | 1,43010,292,5,0, | ||
1137 | 293,11,1,197,0, | ||
1138 | 294,4,20,76,0, | ||
1139 | 69,0,70,0,84, | ||
1140 | 0,95,0,83,0, | ||
1141 | 72,0,73,0,70, | ||
1142 | 0,84,0,1,-1, | ||
1143 | 3,61,0,295,12, | ||
1144 | 1,43131,296,5,0, | ||
1145 | 297,11,1,148,0, | ||
1146 | 298,4,22,76,0, | ||
1147 | 69,0,83,0,83, | ||
1148 | 0,95,0,69,0, | ||
1149 | 81,0,85,0,65, | ||
1150 | 0,76,0,83,0, | ||
1151 | 1,-1,299,11,1, | ||
1152 | 116,0,300,4,20, | ||
1153 | 76,0,69,0,70, | ||
1154 | 0,84,0,95,0, | ||
1155 | 65,0,78,0,71, | ||
1156 | 0,76,0,69,0, | ||
1157 | 1,-1,3,61,0, | ||
1158 | 301,12,1,43257,302, | ||
1159 | 5,1,3,61,0, | ||
1160 | 303,12,1,43372,304, | ||
1161 | 5,0,305,11,1, | ||
1162 | 136,0,306,4,26, | ||
1163 | 69,0,81,0,85, | ||
1164 | 0,65,0,76,0, | ||
1165 | 83,0,95,0,69, | ||
1166 | 0,81,0,85,0, | ||
1167 | 65,0,76,0,83, | ||
1168 | 0,1,-1,307,11, | ||
1169 | 1,66,0,308,4, | ||
1170 | 12,69,0,81,0, | ||
1171 | 85,0,65,0,76, | ||
1172 | 0,83,0,1,-1, | ||
1173 | 3,62,0,309,12, | ||
1174 | 1,43498,310,5,2, | ||
1175 | 3,61,0,311,12, | ||
1176 | 1,43613,312,5,0, | ||
1177 | 313,11,1,154,0, | ||
1178 | 314,4,28,71,0, | ||
1179 | 82,0,69,0,65, | ||
1180 | 0,84,0,69,0, | ||
1181 | 82,0,95,0,69, | ||
1182 | 0,81,0,85,0, | ||
1183 | 65,0,76,0,83, | ||
1184 | 0,1,-1,3,62, | ||
1185 | 0,315,12,1,43734, | ||
1186 | 316,5,0,317,11, | ||
1187 | 1,203,0,318,4, | ||
1188 | 22,82,0,73,0, | ||
1189 | 71,0,72,0,84, | ||
1190 | 0,95,0,83,0, | ||
1191 | 72,0,73,0,70, | ||
1192 | 0,84,0,1,-1, | ||
1193 | 319,11,1,121,0, | ||
1194 | 320,4,22,82,0, | ||
1195 | 73,0,71,0,72, | ||
1196 | 0,84,0,95,0, | ||
1197 | 65,0,78,0,71, | ||
1198 | 0,76,0,69,0, | ||
1199 | 1,-1,3,64,0, | ||
1200 | 321,12,1,42049,322, | ||
1201 | 5,0,323,11,1, | ||
1202 | 106,0,324,4,4, | ||
1203 | 65,0,84,0,1, | ||
1204 | -1,3,65,0,325, | ||
1205 | 12,1,1023,326,5, | ||
1206 | 63,3,109,0,327, | ||
1207 | 12,1,1024,328,5, | ||
1208 | 63,3,109,0,327, | ||
1209 | 3,110,0,327,3, | ||
1210 | 111,0,327,3,112, | ||
1211 | 0,327,3,113,0, | ||
1212 | 327,3,114,0,327, | ||
1213 | 3,115,0,327,3, | ||
1214 | 116,0,327,3,117, | ||
1215 | 0,327,3,118,0, | ||
1216 | 327,3,119,0,327, | ||
1217 | 3,120,0,327,3, | ||
1218 | 121,0,327,3,122, | ||
1219 | 0,327,3,48,0, | ||
1220 | 327,3,49,0,327, | ||
1221 | 3,50,0,327,3, | ||
1222 | 51,0,327,3,52, | ||
1223 | 0,327,3,53,0, | ||
1224 | 327,3,54,0,327, | ||
1225 | 3,55,0,327,3, | ||
1226 | 56,0,327,3,57, | ||
1227 | 0,327,3,65,0, | ||
1228 | 327,3,66,0,327, | ||
1229 | 3,67,0,327,3, | ||
1230 | 68,0,327,3,69, | ||
1231 | 0,327,3,70,0, | ||
1232 | 327,3,71,0,327, | ||
1233 | 3,72,0,327,3, | ||
1234 | 73,0,327,3,74, | ||
1235 | 0,327,3,75,0, | ||
1236 | 327,3,76,0,327, | ||
1237 | 3,77,0,327,3, | ||
1238 | 78,0,327,3,79, | ||
1239 | 0,327,3,80,0, | ||
1240 | 327,3,81,0,327, | ||
1241 | 3,82,0,327,3, | ||
1242 | 83,0,327,3,84, | ||
1243 | 0,327,3,85,0, | ||
1244 | 327,3,86,0,327, | ||
1245 | 3,87,0,327,3, | ||
1246 | 88,0,327,3,89, | ||
1247 | 0,327,3,90,0, | ||
1248 | 327,3,95,0,327, | ||
1249 | 3,97,0,327,3, | ||
1250 | 98,0,327,3,99, | ||
1251 | 0,327,3,100,0, | ||
1252 | 327,3,101,0,327, | ||
1253 | 3,102,0,327,3, | ||
1254 | 103,0,327,3,104, | ||
1255 | 0,327,3,105,0, | ||
1256 | 327,3,106,0,327, | ||
1257 | 3,107,0,327,3, | ||
1258 | 108,0,327,329,11, | ||
1259 | 1,829,0,330,4, | ||
1260 | 10,73,0,68,0, | ||
1261 | 69,0,78,0,84, | ||
1262 | 0,1,-1,3,110, | ||
1263 | 0,327,3,111,0, | ||
1264 | 327,3,112,0,327, | ||
1265 | 3,113,0,327,3, | ||
1266 | 114,0,327,3,115, | ||
1267 | 0,327,3,116,0, | ||
1268 | 327,3,117,0,327, | ||
1269 | 3,118,0,327,3, | ||
1270 | 119,0,327,3,120, | ||
1271 | 0,327,3,121,0, | ||
1272 | 327,3,122,0,327, | ||
1273 | 3,48,0,327,3, | ||
1274 | 49,0,327,3,50, | ||
1275 | 0,327,3,51,0, | ||
1276 | 327,3,52,0,327, | ||
1277 | 3,53,0,327,3, | ||
1278 | 54,0,327,3,55, | ||
1279 | 0,327,3,56,0, | ||
1280 | 327,3,57,0,327, | ||
1281 | 3,65,0,327,3, | ||
1282 | 66,0,327,3,67, | ||
1283 | 0,327,3,68,0, | ||
1284 | 327,3,69,0,327, | ||
1285 | 3,70,0,327,3, | ||
1286 | 71,0,327,3,72, | ||
1287 | 0,327,3,73,0, | ||
1288 | 327,3,74,0,327, | ||
1289 | 3,75,0,327,3, | ||
1290 | 76,0,327,3,77, | ||
1291 | 0,327,3,78,0, | ||
1292 | 327,3,79,0,327, | ||
1293 | 3,80,0,327,3, | ||
1294 | 81,0,327,3,82, | ||
1295 | 0,327,3,83,0, | ||
1296 | 327,3,84,0,327, | ||
1297 | 3,85,0,327,3, | ||
1298 | 86,0,327,3,87, | ||
1299 | 0,327,3,88,0, | ||
1300 | 327,3,89,0,327, | ||
1301 | 3,90,0,327,3, | ||
1302 | 95,0,327,3,97, | ||
1303 | 0,327,3,98,0, | ||
1304 | 327,3,99,0,327, | ||
1305 | 3,100,0,327,3, | ||
1306 | 101,0,327,3,102, | ||
1307 | 0,327,3,103,0, | ||
1308 | 327,3,104,0,327, | ||
1309 | 3,105,0,327,3, | ||
1310 | 106,0,327,3,107, | ||
1311 | 0,327,3,108,0, | ||
1312 | 327,331,11,1,829, | ||
1313 | 0,330,1,-1,3, | ||
1314 | 66,0,325,3,67, | ||
1315 | 0,325,3,68,0, | ||
1316 | 325,3,69,0,325, | ||
1317 | 3,70,0,325,3, | ||
1318 | 71,0,325,3,72, | ||
1319 | 0,325,3,73,0, | ||
1320 | 325,3,74,0,325, | ||
1321 | 3,75,0,325,3, | ||
1322 | 76,0,325,3,77, | ||
1323 | 0,325,3,78,0, | ||
1324 | 325,3,79,0,325, | ||
1325 | 3,80,0,325,3, | ||
1326 | 81,0,325,3,82, | ||
1327 | 0,325,3,83,0, | ||
1328 | 325,3,84,0,325, | ||
1329 | 3,85,0,325,3, | ||
1330 | 86,0,325,3,87, | ||
1331 | 0,325,3,88,0, | ||
1332 | 325,3,89,0,325, | ||
1333 | 3,90,0,325,3, | ||
1334 | 91,0,332,12,1, | ||
1335 | 39872,333,5,0,334, | ||
1336 | 11,1,126,0,335, | ||
1337 | 4,24,76,0,69, | ||
1338 | 0,70,0,84,0, | ||
1339 | 95,0,66,0,82, | ||
1340 | 0,65,0,67,0, | ||
1341 | 75,0,69,0,84, | ||
1342 | 0,1,-1,3,93, | ||
1343 | 0,336,12,1,40237, | ||
1344 | 337,5,0,338,11, | ||
1345 | 1,131,0,339,4, | ||
1346 | 26,82,0,73,0, | ||
1347 | 71,0,72,0,84, | ||
1348 | 0,95,0,66,0, | ||
1349 | 82,0,65,0,67, | ||
1350 | 0,75,0,69,0, | ||
1351 | 84,0,1,-1,3, | ||
1352 | 94,0,340,12,1, | ||
1353 | 44221,341,5,0,342, | ||
1354 | 11,1,170,0,343, | ||
1355 | 4,10,67,0,65, | ||
1356 | 0,82,0,69,0, | ||
1357 | 84,0,1,-1,3, | ||
1358 | 95,0,325,3,97, | ||
1359 | 0,344,12,1,20025, | ||
1360 | 345,5,63,3,109, | ||
1361 | 0,327,3,110,0, | ||
1362 | 327,3,111,0,327, | ||
1363 | 3,112,0,327,3, | ||
1364 | 113,0,327,3,114, | ||
1365 | 0,327,3,115,0, | ||
1366 | 327,3,116,0,346, | ||
1367 | 12,1,20060,347,5, | ||
1368 | 63,3,109,0,327, | ||
1369 | 3,110,0,327,3, | ||
1370 | 111,0,327,3,112, | ||
1371 | 0,327,3,113,0, | ||
1372 | 327,3,114,0,327, | ||
1373 | 3,115,0,327,3, | ||
1374 | 116,0,348,12,1, | ||
1375 | 20095,349,5,63,3, | ||
1376 | 109,0,327,3,110, | ||
1377 | 0,327,3,111,0, | ||
1378 | 327,3,112,0,327, | ||
1379 | 3,113,0,327,3, | ||
1380 | 114,0,327,3,115, | ||
1381 | 0,327,3,116,0, | ||
1382 | 327,3,117,0,327, | ||
1383 | 3,118,0,327,3, | ||
1384 | 119,0,327,3,120, | ||
1385 | 0,327,3,121,0, | ||
1386 | 327,3,122,0,327, | ||
1387 | 3,48,0,327,3, | ||
1388 | 49,0,327,3,50, | ||
1389 | 0,327,3,51,0, | ||
1390 | 327,3,52,0,327, | ||
1391 | 3,53,0,327,3, | ||
1392 | 54,0,327,3,55, | ||
1393 | 0,327,3,56,0, | ||
1394 | 327,3,57,0,327, | ||
1395 | 3,65,0,327,3, | ||
1396 | 66,0,327,3,67, | ||
1397 | 0,327,3,68,0, | ||
1398 | 327,3,69,0,327, | ||
1399 | 3,70,0,327,3, | ||
1400 | 71,0,327,3,72, | ||
1401 | 0,327,3,73,0, | ||
1402 | 327,3,74,0,327, | ||
1403 | 3,75,0,327,3, | ||
1404 | 76,0,327,3,77, | ||
1405 | 0,327,3,78,0, | ||
1406 | 327,3,79,0,327, | ||
1407 | 3,80,0,327,3, | ||
1408 | 81,0,327,3,82, | ||
1409 | 0,327,3,83,0, | ||
1410 | 327,3,84,0,327, | ||
1411 | 3,85,0,327,3, | ||
1412 | 86,0,327,3,87, | ||
1413 | 0,327,3,88,0, | ||
1414 | 327,3,89,0,327, | ||
1415 | 3,90,0,327,3, | ||
1416 | 95,0,327,3,97, | ||
1417 | 0,350,12,1,20138, | ||
1418 | 351,5,63,3,109, | ||
1419 | 0,327,3,110,0, | ||
1420 | 327,3,111,0,327, | ||
1421 | 3,112,0,327,3, | ||
1422 | 113,0,327,3,114, | ||
1423 | 0,327,3,115,0, | ||
1424 | 327,3,116,0,327, | ||
1425 | 3,117,0,327,3, | ||
1426 | 118,0,327,3,119, | ||
1427 | 0,327,3,120,0, | ||
1428 | 327,3,121,0,327, | ||
1429 | 3,122,0,327,3, | ||
1430 | 48,0,327,3,49, | ||
1431 | 0,327,3,50,0, | ||
1432 | 327,3,51,0,327, | ||
1433 | 3,52,0,327,3, | ||
1434 | 53,0,327,3,54, | ||
1435 | 0,327,3,55,0, | ||
1436 | 327,3,56,0,327, | ||
1437 | 3,57,0,327,3, | ||
1438 | 65,0,327,3,66, | ||
1439 | 0,327,3,67,0, | ||
1440 | 327,3,68,0,327, | ||
1441 | 3,69,0,327,3, | ||
1442 | 70,0,327,3,71, | ||
1443 | 0,327,3,72,0, | ||
1444 | 327,3,73,0,327, | ||
1445 | 3,74,0,327,3, | ||
1446 | 75,0,327,3,76, | ||
1447 | 0,327,3,77,0, | ||
1448 | 327,3,78,0,327, | ||
1449 | 3,79,0,327,3, | ||
1450 | 80,0,327,3,81, | ||
1451 | 0,327,3,82,0, | ||
1452 | 327,3,83,0,327, | ||
1453 | 3,84,0,327,3, | ||
1454 | 85,0,327,3,86, | ||
1455 | 0,327,3,87,0, | ||
1456 | 327,3,88,0,327, | ||
1457 | 3,89,0,327,3, | ||
1458 | 90,0,327,3,95, | ||
1459 | 0,327,3,97,0, | ||
1460 | 327,3,98,0,327, | ||
1461 | 3,99,0,352,12, | ||
1462 | 1,20183,353,5,63, | ||
1463 | 3,109,0,327,3, | ||
1464 | 110,0,327,3,111, | ||
1465 | 0,327,3,112,0, | ||
1466 | 327,3,113,0,327, | ||
1467 | 3,114,0,327,3, | ||
1468 | 115,0,327,3,116, | ||
1469 | 0,327,3,117,0, | ||
1470 | 327,3,118,0,327, | ||
1471 | 3,119,0,327,3, | ||
1472 | 120,0,327,3,121, | ||
1473 | 0,327,3,122,0, | ||
1474 | 327,3,48,0,327, | ||
1475 | 3,49,0,327,3, | ||
1476 | 50,0,327,3,51, | ||
1477 | 0,327,3,52,0, | ||
1478 | 327,3,53,0,327, | ||
1479 | 3,54,0,327,3, | ||
1480 | 55,0,327,3,56, | ||
1481 | 0,327,3,57,0, | ||
1482 | 327,3,65,0,327, | ||
1483 | 3,66,0,327,3, | ||
1484 | 67,0,327,3,68, | ||
1485 | 0,327,3,69,0, | ||
1486 | 327,3,70,0,327, | ||
1487 | 3,71,0,327,3, | ||
1488 | 72,0,327,3,73, | ||
1489 | 0,327,3,74,0, | ||
1490 | 327,3,75,0,327, | ||
1491 | 3,76,0,327,3, | ||
1492 | 77,0,327,3,78, | ||
1493 | 0,327,3,79,0, | ||
1494 | 327,3,80,0,327, | ||
1495 | 3,81,0,327,3, | ||
1496 | 82,0,327,3,83, | ||
1497 | 0,327,3,84,0, | ||
1498 | 327,3,85,0,327, | ||
1499 | 3,86,0,327,3, | ||
1500 | 87,0,327,3,88, | ||
1501 | 0,327,3,89,0, | ||
1502 | 327,3,90,0,327, | ||
1503 | 3,95,0,327,3, | ||
1504 | 97,0,327,3,98, | ||
1505 | 0,327,3,99,0, | ||
1506 | 327,3,100,0,327, | ||
1507 | 3,101,0,327,3, | ||
1508 | 102,0,327,3,103, | ||
1509 | 0,327,3,104,0, | ||
1510 | 354,12,1,20233,355, | ||
1511 | 5,63,3,109,0, | ||
1512 | 327,3,110,0,327, | ||
1513 | 3,111,0,327,3, | ||
1514 | 112,0,327,3,113, | ||
1515 | 0,327,3,114,0, | ||
1516 | 327,3,115,0,327, | ||
1517 | 3,116,0,327,3, | ||
1518 | 117,0,327,3,118, | ||
1519 | 0,327,3,119,0, | ||
1520 | 327,3,120,0,327, | ||
1521 | 3,121,0,327,3, | ||
1522 | 122,0,327,3,48, | ||
1523 | 0,327,3,49,0, | ||
1524 | 327,3,50,0,327, | ||
1525 | 3,51,0,327,3, | ||
1526 | 52,0,327,3,53, | ||
1527 | 0,327,3,54,0, | ||
1528 | 327,3,55,0,327, | ||
1529 | 3,56,0,327,3, | ||
1530 | 57,0,327,3,65, | ||
1531 | 0,327,3,66,0, | ||
1532 | 327,3,67,0,327, | ||
1533 | 3,68,0,327,3, | ||
1534 | 69,0,327,3,70, | ||
1535 | 0,327,3,71,0, | ||
1536 | 327,3,72,0,327, | ||
1537 | 3,73,0,327,3, | ||
1538 | 74,0,327,3,75, | ||
1539 | 0,327,3,76,0, | ||
1540 | 327,3,77,0,327, | ||
1541 | 3,78,0,327,3, | ||
1542 | 79,0,327,3,80, | ||
1543 | 0,327,3,81,0, | ||
1544 | 327,3,82,0,327, | ||
1545 | 3,83,0,327,3, | ||
1546 | 84,0,327,3,85, | ||
1547 | 0,327,3,86,0, | ||
1548 | 327,3,87,0,327, | ||
1549 | 3,88,0,327,3, | ||
1550 | 89,0,327,3,90, | ||
1551 | 0,327,3,95,0, | ||
1552 | 327,3,97,0,327, | ||
1553 | 3,98,0,327,3, | ||
1554 | 99,0,327,3,100, | ||
1555 | 0,327,3,101,0, | ||
1556 | 327,3,102,0,327, | ||
1557 | 3,103,0,327,3, | ||
1558 | 104,0,327,3,105, | ||
1559 | 0,327,3,106,0, | ||
1560 | 327,3,107,0,327, | ||
1561 | 3,108,0,327,356, | ||
1562 | 11,1,380,0,357, | ||
1563 | 4,24,65,0,84, | ||
1564 | 0,84,0,65,0, | ||
1565 | 67,0,72,0,95, | ||
1566 | 0,69,0,86,0, | ||
1567 | 69,0,78,0,84, | ||
1568 | 0,1,-1,3,105, | ||
1569 | 0,327,3,106,0, | ||
1570 | 327,3,107,0,327, | ||
1571 | 3,108,0,327,358, | ||
1572 | 11,1,829,0,330, | ||
1573 | 1,-1,3,100,0, | ||
1574 | 327,3,101,0,327, | ||
1575 | 3,102,0,327,3, | ||
1576 | 103,0,327,3,104, | ||
1577 | 0,327,3,105,0, | ||
1578 | 327,3,106,0,327, | ||
1579 | 3,107,0,327,3, | ||
1580 | 108,0,327,359,11, | ||
1581 | 1,829,0,330,1, | ||
1582 | -1,3,98,0,327, | ||
1583 | 3,99,0,327,3, | ||
1584 | 100,0,327,3,101, | ||
1585 | 0,327,3,102,0, | ||
1586 | 327,3,103,0,327, | ||
1587 | 3,104,0,327,3, | ||
1588 | 105,0,327,3,106, | ||
1589 | 0,327,3,107,0, | ||
1590 | 327,3,108,0,327, | ||
1591 | 360,11,1,829,0, | ||
1592 | 330,1,-1,3,117, | ||
1593 | 0,327,3,118,0, | ||
1594 | 327,3,119,0,327, | ||
1595 | 3,120,0,327,3, | ||
1596 | 121,0,327,3,122, | ||
1597 | 0,327,3,48,0, | ||
1598 | 327,3,49,0,327, | ||
1599 | 3,50,0,327,3, | ||
1600 | 51,0,327,3,52, | ||
1601 | 0,327,3,53,0, | ||
1602 | 327,3,54,0,327, | ||
1603 | 3,55,0,327,3, | ||
1604 | 56,0,327,3,57, | ||
1605 | 0,327,3,65,0, | ||
1606 | 327,3,66,0,327, | ||
1607 | 3,67,0,327,3, | ||
1608 | 68,0,327,3,69, | ||
1609 | 0,327,3,70,0, | ||
1610 | 327,3,71,0,327, | ||
1611 | 3,72,0,327,3, | ||
1612 | 73,0,327,3,74, | ||
1613 | 0,327,3,75,0, | ||
1614 | 327,3,76,0,327, | ||
1615 | 3,77,0,327,3, | ||
1616 | 78,0,327,3,79, | ||
1617 | 0,327,3,80,0, | ||
1618 | 327,3,81,0,327, | ||
1619 | 3,82,0,327,3, | ||
1620 | 83,0,327,3,84, | ||
1621 | 0,327,3,85,0, | ||
1622 | 327,3,86,0,327, | ||
1623 | 3,87,0,327,3, | ||
1624 | 88,0,327,3,89, | ||
1625 | 0,327,3,90,0, | ||
1626 | 327,3,95,0,361, | ||
1627 | 12,1,20626,362,5, | ||
1628 | 63,3,109,0,327, | ||
1629 | 3,110,0,327,3, | ||
1630 | 111,0,327,3,112, | ||
1631 | 0,327,3,113,0, | ||
1632 | 327,3,114,0,363, | ||
1633 | 12,1,20659,364,5, | ||
1634 | 63,3,109,0,327, | ||
1635 | 3,110,0,327,3, | ||
1636 | 111,0,365,12,1, | ||
1637 | 20689,366,5,63,3, | ||
1638 | 109,0,327,3,110, | ||
1639 | 0,327,3,111,0, | ||
1640 | 327,3,112,0,327, | ||
1641 | 3,113,0,327,3, | ||
1642 | 114,0,327,3,115, | ||
1643 | 0,327,3,116,0, | ||
1644 | 367,12,1,20724,368, | ||
1645 | 5,63,3,109,0, | ||
1646 | 327,3,110,0,327, | ||
1647 | 3,111,0,327,3, | ||
1648 | 112,0,327,3,113, | ||
1649 | 0,327,3,114,0, | ||
1650 | 327,3,115,0,327, | ||
1651 | 3,116,0,327,3, | ||
1652 | 117,0,327,3,118, | ||
1653 | 0,327,3,119,0, | ||
1654 | 327,3,120,0,327, | ||
1655 | 3,121,0,327,3, | ||
1656 | 122,0,327,3,48, | ||
1657 | 0,327,3,49,0, | ||
1658 | 327,3,50,0,327, | ||
1659 | 3,51,0,327,3, | ||
1660 | 52,0,327,3,53, | ||
1661 | 0,327,3,54,0, | ||
1662 | 327,3,55,0,327, | ||
1663 | 3,56,0,327,3, | ||
1664 | 57,0,327,3,65, | ||
1665 | 0,327,3,66,0, | ||
1666 | 327,3,67,0,327, | ||
1667 | 3,68,0,327,3, | ||
1668 | 69,0,327,3,70, | ||
1669 | 0,327,3,71,0, | ||
1670 | 327,3,72,0,327, | ||
1671 | 3,73,0,327,3, | ||
1672 | 74,0,327,3,75, | ||
1673 | 0,327,3,76,0, | ||
1674 | 327,3,77,0,327, | ||
1675 | 3,78,0,327,3, | ||
1676 | 79,0,327,3,80, | ||
1677 | 0,327,3,81,0, | ||
1678 | 327,3,82,0,327, | ||
1679 | 3,83,0,327,3, | ||
1680 | 84,0,327,3,85, | ||
1681 | 0,327,3,86,0, | ||
1682 | 327,3,87,0,327, | ||
1683 | 3,88,0,327,3, | ||
1684 | 89,0,327,3,90, | ||
1685 | 0,327,3,95,0, | ||
1686 | 369,12,1,20810,370, | ||
1687 | 5,63,3,109,0, | ||
1688 | 327,3,110,0,327, | ||
1689 | 3,111,0,327,3, | ||
1690 | 112,0,327,3,113, | ||
1691 | 0,327,3,114,0, | ||
1692 | 327,3,115,0,327, | ||
1693 | 3,116,0,371,12, | ||
1694 | 1,20845,372,5,63, | ||
1695 | 3,109,0,327,3, | ||
1696 | 110,0,327,3,111, | ||
1697 | 0,327,3,112,0, | ||
1698 | 327,3,113,0,327, | ||
1699 | 3,114,0,327,3, | ||
1700 | 115,0,327,3,116, | ||
1701 | 0,327,3,117,0, | ||
1702 | 327,3,118,0,327, | ||
1703 | 3,119,0,327,3, | ||
1704 | 120,0,327,3,121, | ||
1705 | 0,327,3,122,0, | ||
1706 | 327,3,48,0,327, | ||
1707 | 3,49,0,327,3, | ||
1708 | 50,0,327,3,51, | ||
1709 | 0,327,3,52,0, | ||
1710 | 327,3,53,0,327, | ||
1711 | 3,54,0,327,3, | ||
1712 | 55,0,327,3,56, | ||
1713 | 0,327,3,57,0, | ||
1714 | 327,3,65,0,327, | ||
1715 | 3,66,0,327,3, | ||
1716 | 67,0,327,3,68, | ||
1717 | 0,327,3,69,0, | ||
1718 | 327,3,70,0,327, | ||
1719 | 3,71,0,327,3, | ||
1720 | 72,0,327,3,73, | ||
1721 | 0,327,3,74,0, | ||
1722 | 327,3,75,0,327, | ||
1723 | 3,76,0,327,3, | ||
1724 | 77,0,327,3,78, | ||
1725 | 0,327,3,79,0, | ||
1726 | 327,3,80,0,327, | ||
1727 | 3,81,0,327,3, | ||
1728 | 82,0,327,3,83, | ||
1729 | 0,327,3,84,0, | ||
1730 | 327,3,85,0,327, | ||
1731 | 3,86,0,327,3, | ||
1732 | 87,0,327,3,88, | ||
1733 | 0,327,3,89,0, | ||
1734 | 327,3,90,0,327, | ||
1735 | 3,95,0,327,3, | ||
1736 | 97,0,373,12,1, | ||
1737 | 20888,374,5,63,3, | ||
1738 | 109,0,327,3,110, | ||
1739 | 0,327,3,111,0, | ||
1740 | 327,3,112,0,327, | ||
1741 | 3,113,0,327,3, | ||
1742 | 114,0,375,12,1, | ||
1743 | 20921,376,5,63,3, | ||
1744 | 109,0,327,3,110, | ||
1745 | 0,327,3,111,0, | ||
1746 | 327,3,112,0,327, | ||
1747 | 3,113,0,327,3, | ||
1748 | 114,0,327,3,115, | ||
1749 | 0,327,3,116,0, | ||
1750 | 327,3,117,0,327, | ||
1751 | 3,118,0,327,3, | ||
1752 | 119,0,327,3,120, | ||
1753 | 0,327,3,121,0, | ||
1754 | 327,3,122,0,327, | ||
1755 | 3,48,0,327,3, | ||
1756 | 49,0,327,3,50, | ||
1757 | 0,327,3,51,0, | ||
1758 | 327,3,52,0,327, | ||
1759 | 3,53,0,327,3, | ||
1760 | 54,0,327,3,55, | ||
1761 | 0,327,3,56,0, | ||
1762 | 327,3,57,0,327, | ||
1763 | 3,65,0,327,3, | ||
1764 | 66,0,327,3,67, | ||
1765 | 0,327,3,68,0, | ||
1766 | 327,3,69,0,327, | ||
1767 | 3,70,0,327,3, | ||
1768 | 71,0,327,3,72, | ||
1769 | 0,327,3,73,0, | ||
1770 | 327,3,74,0,327, | ||
1771 | 3,75,0,327,3, | ||
1772 | 76,0,327,3,77, | ||
1773 | 0,327,3,78,0, | ||
1774 | 327,3,79,0,327, | ||
1775 | 3,80,0,327,3, | ||
1776 | 81,0,327,3,82, | ||
1777 | 0,327,3,83,0, | ||
1778 | 327,3,84,0,327, | ||
1779 | 3,85,0,327,3, | ||
1780 | 86,0,327,3,87, | ||
1781 | 0,327,3,88,0, | ||
1782 | 327,3,89,0,327, | ||
1783 | 3,90,0,327,3, | ||
1784 | 95,0,327,3,97, | ||
1785 | 0,327,3,98,0, | ||
1786 | 327,3,99,0,327, | ||
1787 | 3,100,0,327,3, | ||
1788 | 101,0,327,3,102, | ||
1789 | 0,327,3,103,0, | ||
1790 | 377,12,1,20970,378, | ||
1791 | 5,63,3,109,0, | ||
1792 | 327,3,110,0,327, | ||
1793 | 3,111,0,327,3, | ||
1794 | 112,0,327,3,113, | ||
1795 | 0,327,3,114,0, | ||
1796 | 327,3,115,0,327, | ||
1797 | 3,116,0,327,3, | ||
1798 | 117,0,327,3,118, | ||
1799 | 0,327,3,119,0, | ||
1800 | 327,3,120,0,327, | ||
1801 | 3,121,0,327,3, | ||
1802 | 122,0,327,3,48, | ||
1803 | 0,327,3,49,0, | ||
1804 | 327,3,50,0,327, | ||
1805 | 3,51,0,327,3, | ||
1806 | 52,0,327,3,53, | ||
1807 | 0,327,3,54,0, | ||
1808 | 327,3,55,0,327, | ||
1809 | 3,56,0,327,3, | ||
1810 | 57,0,327,3,65, | ||
1811 | 0,327,3,66,0, | ||
1812 | 327,3,67,0,327, | ||
1813 | 3,68,0,327,3, | ||
1814 | 69,0,327,3,70, | ||
1815 | 0,327,3,71,0, | ||
1816 | 327,3,72,0,327, | ||
1817 | 3,73,0,327,3, | ||
1818 | 74,0,327,3,75, | ||
1819 | 0,327,3,76,0, | ||
1820 | 327,3,77,0,327, | ||
1821 | 3,78,0,327,3, | ||
1822 | 79,0,327,3,80, | ||
1823 | 0,327,3,81,0, | ||
1824 | 327,3,82,0,327, | ||
1825 | 3,83,0,327,3, | ||
1826 | 84,0,327,3,85, | ||
1827 | 0,327,3,86,0, | ||
1828 | 327,3,87,0,327, | ||
1829 | 3,88,0,327,3, | ||
1830 | 89,0,327,3,90, | ||
1831 | 0,327,3,95,0, | ||
1832 | 327,3,97,0,327, | ||
1833 | 3,98,0,327,3, | ||
1834 | 99,0,327,3,100, | ||
1835 | 0,327,3,101,0, | ||
1836 | 379,12,1,21017,380, | ||
1837 | 5,63,3,109,0, | ||
1838 | 327,3,110,0,327, | ||
1839 | 3,111,0,327,3, | ||
1840 | 112,0,327,3,113, | ||
1841 | 0,327,3,114,0, | ||
1842 | 327,3,115,0,327, | ||
1843 | 3,116,0,381,12, | ||
1844 | 1,21052,382,5,63, | ||
1845 | 3,109,0,327,3, | ||
1846 | 110,0,327,3,111, | ||
1847 | 0,327,3,112,0, | ||
1848 | 327,3,113,0,327, | ||
1849 | 3,114,0,327,3, | ||
1850 | 115,0,327,3,116, | ||
1851 | 0,327,3,117,0, | ||
1852 | 327,3,118,0,327, | ||
1853 | 3,119,0,327,3, | ||
1854 | 120,0,327,3,121, | ||
1855 | 0,327,3,122,0, | ||
1856 | 327,3,48,0,327, | ||
1857 | 3,49,0,327,3, | ||
1858 | 50,0,327,3,51, | ||
1859 | 0,327,3,52,0, | ||
1860 | 327,3,53,0,327, | ||
1861 | 3,54,0,327,3, | ||
1862 | 55,0,327,3,56, | ||
1863 | 0,327,3,57,0, | ||
1864 | 327,3,65,0,327, | ||
1865 | 3,66,0,327,3, | ||
1866 | 67,0,327,3,68, | ||
1867 | 0,327,3,69,0, | ||
1868 | 327,3,70,0,327, | ||
1869 | 3,71,0,327,3, | ||
1870 | 72,0,327,3,73, | ||
1871 | 0,327,3,74,0, | ||
1872 | 327,3,75,0,327, | ||
1873 | 3,76,0,327,3, | ||
1874 | 77,0,327,3,78, | ||
1875 | 0,327,3,79,0, | ||
1876 | 327,3,80,0,327, | ||
1877 | 3,81,0,327,3, | ||
1878 | 82,0,327,3,83, | ||
1879 | 0,327,3,84,0, | ||
1880 | 327,3,85,0,327, | ||
1881 | 3,86,0,327,3, | ||
1882 | 87,0,327,3,88, | ||
1883 | 0,327,3,89,0, | ||
1884 | 327,3,90,0,327, | ||
1885 | 3,95,0,327,3, | ||
1886 | 97,0,327,3,98, | ||
1887 | 0,327,3,99,0, | ||
1888 | 327,3,100,0,327, | ||
1889 | 3,101,0,327,3, | ||
1890 | 102,0,327,3,103, | ||
1891 | 0,327,3,104,0, | ||
1892 | 327,3,105,0,327, | ||
1893 | 3,106,0,327,3, | ||
1894 | 107,0,327,3,108, | ||
1895 | 0,327,383,11,1, | ||
1896 | 350,0,384,4,38, | ||
1897 | 65,0,84,0,95, | ||
1898 | 0,82,0,79,0, | ||
1899 | 84,0,95,0,84, | ||
1900 | 0,65,0,82,0, | ||
1901 | 71,0,69,0,84, | ||
1902 | 0,95,0,69,0, | ||
1903 | 86,0,69,0,78, | ||
1904 | 0,84,0,1,-1, | ||
1905 | 3,117,0,327,3, | ||
1906 | 118,0,327,3,119, | ||
1907 | 0,327,3,120,0, | ||
1908 | 327,3,121,0,327, | ||
1909 | 3,122,0,327,3, | ||
1910 | 48,0,327,3,49, | ||
1911 | 0,327,3,50,0, | ||
1912 | 327,3,51,0,327, | ||
1913 | 3,52,0,327,3, | ||
1914 | 53,0,327,3,54, | ||
1915 | 0,327,3,55,0, | ||
1916 | 327,3,56,0,327, | ||
1917 | 3,57,0,327,3, | ||
1918 | 65,0,327,3,66, | ||
1919 | 0,327,3,67,0, | ||
1920 | 327,3,68,0,327, | ||
1921 | 3,69,0,327,3, | ||
1922 | 70,0,327,3,71, | ||
1923 | 0,327,3,72,0, | ||
1924 | 327,3,73,0,327, | ||
1925 | 3,74,0,327,3, | ||
1926 | 75,0,327,3,76, | ||
1927 | 0,327,3,77,0, | ||
1928 | 327,3,78,0,327, | ||
1929 | 3,79,0,327,3, | ||
1930 | 80,0,327,3,81, | ||
1931 | 0,327,3,82,0, | ||
1932 | 327,3,83,0,327, | ||
1933 | 3,84,0,327,3, | ||
1934 | 85,0,327,3,86, | ||
1935 | 0,327,3,87,0, | ||
1936 | 327,3,88,0,327, | ||
1937 | 3,89,0,327,3, | ||
1938 | 90,0,327,3,95, | ||
1939 | 0,327,3,97,0, | ||
1940 | 327,3,98,0,327, | ||
1941 | 3,99,0,327,3, | ||
1942 | 100,0,327,3,101, | ||
1943 | 0,327,3,102,0, | ||
1944 | 327,3,103,0,327, | ||
1945 | 3,104,0,327,3, | ||
1946 | 105,0,327,3,106, | ||
1947 | 0,327,3,107,0, | ||
1948 | 327,3,108,0,327, | ||
1949 | 385,11,1,829,0, | ||
1950 | 330,1,-1,3,102, | ||
1951 | 0,327,3,103,0, | ||
1952 | 327,3,104,0,327, | ||
1953 | 3,105,0,327,3, | ||
1954 | 106,0,327,3,107, | ||
1955 | 0,327,3,108,0, | ||
1956 | 327,386,11,1,829, | ||
1957 | 0,330,1,-1,3, | ||
1958 | 104,0,327,3,105, | ||
1959 | 0,327,3,106,0, | ||
1960 | 327,3,107,0,327, | ||
1961 | 3,108,0,327,387, | ||
1962 | 11,1,829,0,330, | ||
1963 | 1,-1,3,115,0, | ||
1964 | 327,3,116,0,327, | ||
1965 | 3,117,0,327,3, | ||
1966 | 118,0,327,3,119, | ||
1967 | 0,327,3,120,0, | ||
1968 | 327,3,121,0,327, | ||
1969 | 3,122,0,327,3, | ||
1970 | 48,0,327,3,49, | ||
1971 | 0,327,3,50,0, | ||
1972 | 327,3,51,0,327, | ||
1973 | 3,52,0,327,3, | ||
1974 | 53,0,327,3,54, | ||
1975 | 0,327,3,55,0, | ||
1976 | 327,3,56,0,327, | ||
1977 | 3,57,0,327,3, | ||
1978 | 65,0,327,3,66, | ||
1979 | 0,327,3,67,0, | ||
1980 | 327,3,68,0,327, | ||
1981 | 3,69,0,327,3, | ||
1982 | 70,0,327,3,71, | ||
1983 | 0,327,3,72,0, | ||
1984 | 327,3,73,0,327, | ||
1985 | 3,74,0,327,3, | ||
1986 | 75,0,327,3,76, | ||
1987 | 0,327,3,77,0, | ||
1988 | 327,3,78,0,327, | ||
1989 | 3,79,0,327,3, | ||
1990 | 80,0,327,3,81, | ||
1991 | 0,327,3,82,0, | ||
1992 | 327,3,83,0,327, | ||
1993 | 3,84,0,327,3, | ||
1994 | 85,0,327,3,86, | ||
1995 | 0,327,3,87,0, | ||
1996 | 327,3,88,0,327, | ||
1997 | 3,89,0,327,3, | ||
1998 | 90,0,327,3,95, | ||
1999 | 0,327,3,97,0, | ||
2000 | 327,3,98,0,327, | ||
2001 | 3,99,0,327,3, | ||
2002 | 100,0,327,3,101, | ||
2003 | 0,327,3,102,0, | ||
2004 | 327,3,103,0,327, | ||
2005 | 3,104,0,327,3, | ||
2006 | 105,0,327,3,106, | ||
2007 | 0,327,3,107,0, | ||
2008 | 327,3,108,0,327, | ||
2009 | 388,11,1,829,0, | ||
2010 | 330,1,-1,3,98, | ||
2011 | 0,327,3,99,0, | ||
2012 | 327,3,100,0,327, | ||
2013 | 3,101,0,327,3, | ||
2014 | 102,0,327,3,103, | ||
2015 | 0,327,3,104,0, | ||
2016 | 327,3,105,0,327, | ||
2017 | 3,106,0,327,3, | ||
2018 | 107,0,327,3,108, | ||
2019 | 0,327,389,11,1, | ||
2020 | 829,0,330,1,-1, | ||
2021 | 3,117,0,327,3, | ||
2022 | 118,0,327,3,119, | ||
2023 | 0,327,3,120,0, | ||
2024 | 327,3,121,0,327, | ||
2025 | 3,122,0,327,3, | ||
2026 | 48,0,327,3,49, | ||
2027 | 0,327,3,50,0, | ||
2028 | 327,3,51,0,327, | ||
2029 | 3,52,0,327,3, | ||
2030 | 53,0,327,3,54, | ||
2031 | 0,327,3,55,0, | ||
2032 | 327,3,56,0,327, | ||
2033 | 3,57,0,327,3, | ||
2034 | 65,0,327,3,66, | ||
2035 | 0,327,3,67,0, | ||
2036 | 327,3,68,0,327, | ||
2037 | 3,69,0,327,3, | ||
2038 | 70,0,327,3,71, | ||
2039 | 0,327,3,72,0, | ||
2040 | 327,3,73,0,327, | ||
2041 | 3,74,0,327,3, | ||
2042 | 75,0,327,3,76, | ||
2043 | 0,327,3,77,0, | ||
2044 | 327,3,78,0,327, | ||
2045 | 3,79,0,327,3, | ||
2046 | 80,0,327,3,81, | ||
2047 | 0,327,3,82,0, | ||
2048 | 327,3,83,0,327, | ||
2049 | 3,84,0,327,3, | ||
2050 | 85,0,327,3,86, | ||
2051 | 0,327,3,87,0, | ||
2052 | 327,3,88,0,327, | ||
2053 | 3,89,0,327,3, | ||
2054 | 90,0,327,3,95, | ||
2055 | 0,327,3,97,0, | ||
2056 | 327,3,98,0,327, | ||
2057 | 3,99,0,327,3, | ||
2058 | 100,0,327,3,101, | ||
2059 | 0,327,3,102,0, | ||
2060 | 327,3,103,0,327, | ||
2061 | 3,104,0,327,3, | ||
2062 | 105,0,327,3,106, | ||
2063 | 0,327,3,107,0, | ||
2064 | 327,3,108,0,327, | ||
2065 | 390,11,1,829,0, | ||
2066 | 330,1,-1,3,97, | ||
2067 | 0,327,3,98,0, | ||
2068 | 327,3,99,0,327, | ||
2069 | 3,100,0,327,3, | ||
2070 | 101,0,327,3,102, | ||
2071 | 0,327,3,103,0, | ||
2072 | 327,3,104,0,327, | ||
2073 | 3,105,0,327,3, | ||
2074 | 106,0,327,3,107, | ||
2075 | 0,327,3,108,0, | ||
2076 | 327,391,11,1,829, | ||
2077 | 0,330,1,-1,3, | ||
2078 | 117,0,327,3,118, | ||
2079 | 0,327,3,119,0, | ||
2080 | 327,3,120,0,327, | ||
2081 | 3,121,0,327,3, | ||
2082 | 122,0,327,3,48, | ||
2083 | 0,327,3,49,0, | ||
2084 | 327,3,50,0,327, | ||
2085 | 3,51,0,327,3, | ||
2086 | 52,0,327,3,53, | ||
2087 | 0,327,3,54,0, | ||
2088 | 327,3,55,0,327, | ||
2089 | 3,56,0,327,3, | ||
2090 | 57,0,327,3,65, | ||
2091 | 0,327,3,66,0, | ||
2092 | 327,3,67,0,327, | ||
2093 | 3,68,0,327,3, | ||
2094 | 69,0,327,3,70, | ||
2095 | 0,327,3,71,0, | ||
2096 | 327,3,72,0,327, | ||
2097 | 3,73,0,327,3, | ||
2098 | 74,0,327,3,75, | ||
2099 | 0,327,3,76,0, | ||
2100 | 327,3,77,0,327, | ||
2101 | 3,78,0,327,3, | ||
2102 | 79,0,327,3,80, | ||
2103 | 0,327,3,81,0, | ||
2104 | 327,3,82,0,327, | ||
2105 | 3,83,0,327,3, | ||
2106 | 84,0,327,3,85, | ||
2107 | 0,327,3,86,0, | ||
2108 | 327,3,87,0,327, | ||
2109 | 3,88,0,327,3, | ||
2110 | 89,0,327,3,90, | ||
2111 | 0,327,3,95,0, | ||
2112 | 327,3,97,0,327, | ||
2113 | 3,98,0,327,3, | ||
2114 | 99,0,327,3,100, | ||
2115 | 0,327,3,101,0, | ||
2116 | 327,3,102,0,327, | ||
2117 | 3,103,0,327,3, | ||
2118 | 104,0,327,3,105, | ||
2119 | 0,327,3,106,0, | ||
2120 | 327,3,107,0,327, | ||
2121 | 3,108,0,327,392, | ||
2122 | 11,1,829,0,330, | ||
2123 | 1,-1,3,112,0, | ||
2124 | 327,3,113,0,327, | ||
2125 | 3,114,0,327,3, | ||
2126 | 115,0,327,3,116, | ||
2127 | 0,327,3,117,0, | ||
2128 | 327,3,118,0,327, | ||
2129 | 3,119,0,327,3, | ||
2130 | 120,0,327,3,121, | ||
2131 | 0,327,3,122,0, | ||
2132 | 327,3,48,0,327, | ||
2133 | 3,49,0,327,3, | ||
2134 | 50,0,327,3,51, | ||
2135 | 0,327,3,52,0, | ||
2136 | 327,3,53,0,327, | ||
2137 | 3,54,0,327,3, | ||
2138 | 55,0,327,3,56, | ||
2139 | 0,327,3,57,0, | ||
2140 | 327,3,65,0,327, | ||
2141 | 3,66,0,327,3, | ||
2142 | 67,0,327,3,68, | ||
2143 | 0,327,3,69,0, | ||
2144 | 327,3,70,0,327, | ||
2145 | 3,71,0,327,3, | ||
2146 | 72,0,327,3,73, | ||
2147 | 0,327,3,74,0, | ||
2148 | 327,3,75,0,327, | ||
2149 | 3,76,0,327,3, | ||
2150 | 77,0,327,3,78, | ||
2151 | 0,327,3,79,0, | ||
2152 | 327,3,80,0,327, | ||
2153 | 3,81,0,327,3, | ||
2154 | 82,0,327,3,83, | ||
2155 | 0,327,3,84,0, | ||
2156 | 327,3,85,0,327, | ||
2157 | 3,86,0,327,3, | ||
2158 | 87,0,327,3,88, | ||
2159 | 0,327,3,89,0, | ||
2160 | 327,3,90,0,327, | ||
2161 | 3,95,0,327,3, | ||
2162 | 97,0,327,3,98, | ||
2163 | 0,327,3,99,0, | ||
2164 | 327,3,100,0,327, | ||
2165 | 3,101,0,327,3, | ||
2166 | 102,0,327,3,103, | ||
2167 | 0,327,3,104,0, | ||
2168 | 327,3,105,0,327, | ||
2169 | 3,106,0,327,3, | ||
2170 | 107,0,327,3,108, | ||
2171 | 0,327,393,11,1, | ||
2172 | 829,0,330,1,-1, | ||
2173 | 3,115,0,327,3, | ||
2174 | 116,0,394,12,1, | ||
2175 | 21861,395,5,63,3, | ||
2176 | 109,0,327,3,110, | ||
2177 | 0,327,3,111,0, | ||
2178 | 327,3,112,0,327, | ||
2179 | 3,113,0,327,3, | ||
2180 | 114,0,327,3,115, | ||
2181 | 0,327,3,116,0, | ||
2182 | 327,3,117,0,327, | ||
2183 | 3,118,0,327,3, | ||
2184 | 119,0,327,3,120, | ||
2185 | 0,327,3,121,0, | ||
2186 | 327,3,122,0,327, | ||
2187 | 3,48,0,327,3, | ||
2188 | 49,0,327,3,50, | ||
2189 | 0,327,3,51,0, | ||
2190 | 327,3,52,0,327, | ||
2191 | 3,53,0,327,3, | ||
2192 | 54,0,327,3,55, | ||
2193 | 0,327,3,56,0, | ||
2194 | 327,3,57,0,327, | ||
2195 | 3,65,0,327,3, | ||
2196 | 66,0,327,3,67, | ||
2197 | 0,327,3,68,0, | ||
2198 | 327,3,69,0,327, | ||
2199 | 3,70,0,327,3, | ||
2200 | 71,0,327,3,72, | ||
2201 | 0,327,3,73,0, | ||
2202 | 327,3,74,0,327, | ||
2203 | 3,75,0,327,3, | ||
2204 | 76,0,327,3,77, | ||
2205 | 0,327,3,78,0, | ||
2206 | 327,3,79,0,327, | ||
2207 | 3,80,0,327,3, | ||
2208 | 81,0,327,3,82, | ||
2209 | 0,327,3,83,0, | ||
2210 | 327,3,84,0,327, | ||
2211 | 3,85,0,327,3, | ||
2212 | 86,0,327,3,87, | ||
2213 | 0,327,3,88,0, | ||
2214 | 327,3,89,0,327, | ||
2215 | 3,90,0,327,3, | ||
2216 | 95,0,327,3,97, | ||
2217 | 0,396,12,1,21904, | ||
2218 | 397,5,63,3,109, | ||
2219 | 0,327,3,110,0, | ||
2220 | 327,3,111,0,327, | ||
2221 | 3,112,0,327,3, | ||
2222 | 113,0,327,3,114, | ||
2223 | 0,398,12,1,21937, | ||
2224 | 399,5,63,3,109, | ||
2225 | 0,327,3,110,0, | ||
2226 | 327,3,111,0,327, | ||
2227 | 3,112,0,327,3, | ||
2228 | 113,0,327,3,114, | ||
2229 | 0,327,3,115,0, | ||
2230 | 327,3,116,0,327, | ||
2231 | 3,117,0,327,3, | ||
2232 | 118,0,327,3,119, | ||
2233 | 0,327,3,120,0, | ||
2234 | 327,3,121,0,327, | ||
2235 | 3,122,0,327,3, | ||
2236 | 48,0,327,3,49, | ||
2237 | 0,327,3,50,0, | ||
2238 | 327,3,51,0,327, | ||
2239 | 3,52,0,327,3, | ||
2240 | 53,0,327,3,54, | ||
2241 | 0,327,3,55,0, | ||
2242 | 327,3,56,0,327, | ||
2243 | 3,57,0,327,3, | ||
2244 | 65,0,327,3,66, | ||
2245 | 0,327,3,67,0, | ||
2246 | 327,3,68,0,327, | ||
2247 | 3,69,0,327,3, | ||
2248 | 70,0,327,3,71, | ||
2249 | 0,327,3,72,0, | ||
2250 | 327,3,73,0,327, | ||
2251 | 3,74,0,327,3, | ||
2252 | 75,0,327,3,76, | ||
2253 | 0,327,3,77,0, | ||
2254 | 327,3,78,0,327, | ||
2255 | 3,79,0,327,3, | ||
2256 | 80,0,327,3,81, | ||
2257 | 0,327,3,82,0, | ||
2258 | 327,3,83,0,327, | ||
2259 | 3,84,0,327,3, | ||
2260 | 85,0,327,3,86, | ||
2261 | 0,327,3,87,0, | ||
2262 | 327,3,88,0,327, | ||
2263 | 3,89,0,327,3, | ||
2264 | 90,0,327,3,95, | ||
2265 | 0,327,3,97,0, | ||
2266 | 327,3,98,0,327, | ||
2267 | 3,99,0,327,3, | ||
2268 | 100,0,327,3,101, | ||
2269 | 0,327,3,102,0, | ||
2270 | 327,3,103,0,400, | ||
2271 | 12,1,21986,401,5, | ||
2272 | 63,3,109,0,327, | ||
2273 | 3,110,0,327,3, | ||
2274 | 111,0,327,3,112, | ||
2275 | 0,327,3,113,0, | ||
2276 | 327,3,114,0,327, | ||
2277 | 3,115,0,327,3, | ||
2278 | 116,0,327,3,117, | ||
2279 | 0,327,3,118,0, | ||
2280 | 327,3,119,0,327, | ||
2281 | 3,120,0,327,3, | ||
2282 | 121,0,327,3,122, | ||
2283 | 0,327,3,48,0, | ||
2284 | 327,3,49,0,327, | ||
2285 | 3,50,0,327,3, | ||
2286 | 51,0,327,3,52, | ||
2287 | 0,327,3,53,0, | ||
2288 | 327,3,54,0,327, | ||
2289 | 3,55,0,327,3, | ||
2290 | 56,0,327,3,57, | ||
2291 | 0,327,3,65,0, | ||
2292 | 327,3,66,0,327, | ||
2293 | 3,67,0,327,3, | ||
2294 | 68,0,327,3,69, | ||
2295 | 0,327,3,70,0, | ||
2296 | 327,3,71,0,327, | ||
2297 | 3,72,0,327,3, | ||
2298 | 73,0,327,3,74, | ||
2299 | 0,327,3,75,0, | ||
2300 | 327,3,76,0,327, | ||
2301 | 3,77,0,327,3, | ||
2302 | 78,0,327,3,79, | ||
2303 | 0,327,3,80,0, | ||
2304 | 327,3,81,0,327, | ||
2305 | 3,82,0,327,3, | ||
2306 | 83,0,327,3,84, | ||
2307 | 0,327,3,85,0, | ||
2308 | 327,3,86,0,327, | ||
2309 | 3,87,0,327,3, | ||
2310 | 88,0,327,3,89, | ||
2311 | 0,327,3,90,0, | ||
2312 | 327,3,95,0,327, | ||
2313 | 3,97,0,327,3, | ||
2314 | 98,0,327,3,99, | ||
2315 | 0,327,3,100,0, | ||
2316 | 327,3,101,0,402, | ||
2317 | 12,1,22033,403,5, | ||
2318 | 63,3,109,0,327, | ||
2319 | 3,110,0,327,3, | ||
2320 | 111,0,327,3,112, | ||
2321 | 0,327,3,113,0, | ||
2322 | 327,3,114,0,327, | ||
2323 | 3,115,0,327,3, | ||
2324 | 116,0,404,12,1, | ||
2325 | 22068,405,5,63,3, | ||
2326 | 109,0,327,3,110, | ||
2327 | 0,327,3,111,0, | ||
2328 | 327,3,112,0,327, | ||
2329 | 3,113,0,327,3, | ||
2330 | 114,0,327,3,115, | ||
2331 | 0,327,3,116,0, | ||
2332 | 327,3,117,0,327, | ||
2333 | 3,118,0,327,3, | ||
2334 | 119,0,327,3,120, | ||
2335 | 0,327,3,121,0, | ||
2336 | 327,3,122,0,327, | ||
2337 | 3,48,0,327,3, | ||
2338 | 49,0,327,3,50, | ||
2339 | 0,327,3,51,0, | ||
2340 | 327,3,52,0,327, | ||
2341 | 3,53,0,327,3, | ||
2342 | 54,0,327,3,55, | ||
2343 | 0,327,3,56,0, | ||
2344 | 327,3,57,0,327, | ||
2345 | 3,65,0,327,3, | ||
2346 | 66,0,327,3,67, | ||
2347 | 0,327,3,68,0, | ||
2348 | 327,3,69,0,327, | ||
2349 | 3,70,0,327,3, | ||
2350 | 71,0,327,3,72, | ||
2351 | 0,327,3,73,0, | ||
2352 | 327,3,74,0,327, | ||
2353 | 3,75,0,327,3, | ||
2354 | 76,0,327,3,77, | ||
2355 | 0,327,3,78,0, | ||
2356 | 327,3,79,0,327, | ||
2357 | 3,80,0,327,3, | ||
2358 | 81,0,327,3,82, | ||
2359 | 0,327,3,83,0, | ||
2360 | 327,3,84,0,327, | ||
2361 | 3,85,0,327,3, | ||
2362 | 86,0,327,3,87, | ||
2363 | 0,327,3,88,0, | ||
2364 | 327,3,89,0,327, | ||
2365 | 3,90,0,327,3, | ||
2366 | 95,0,327,3,97, | ||
2367 | 0,327,3,98,0, | ||
2368 | 327,3,99,0,327, | ||
2369 | 3,100,0,327,3, | ||
2370 | 101,0,327,3,102, | ||
2371 | 0,327,3,103,0, | ||
2372 | 327,3,104,0,327, | ||
2373 | 3,105,0,327,3, | ||
2374 | 106,0,327,3,107, | ||
2375 | 0,327,3,108,0, | ||
2376 | 327,406,11,1,367, | ||
2377 | 0,407,4,30,65, | ||
2378 | 0,84,0,95,0, | ||
2379 | 84,0,65,0,82, | ||
2380 | 0,71,0,69,0, | ||
2381 | 84,0,95,0,69, | ||
2382 | 0,86,0,69,0, | ||
2383 | 78,0,84,0,1, | ||
2384 | -1,3,117,0,327, | ||
2385 | 3,118,0,327,3, | ||
2386 | 119,0,327,3,120, | ||
2387 | 0,327,3,121,0, | ||
2388 | 327,3,122,0,327, | ||
2389 | 3,48,0,327,3, | ||
2390 | 49,0,327,3,50, | ||
2391 | 0,327,3,51,0, | ||
2392 | 327,3,52,0,327, | ||
2393 | 3,53,0,327,3, | ||
2394 | 54,0,327,3,55, | ||
2395 | 0,327,3,56,0, | ||
2396 | 327,3,57,0,327, | ||
2397 | 3,65,0,327,3, | ||
2398 | 66,0,327,3,67, | ||
2399 | 0,327,3,68,0, | ||
2400 | 327,3,69,0,327, | ||
2401 | 3,70,0,327,3, | ||
2402 | 71,0,327,3,72, | ||
2403 | 0,327,3,73,0, | ||
2404 | 327,3,74,0,327, | ||
2405 | 3,75,0,327,3, | ||
2406 | 76,0,327,3,77, | ||
2407 | 0,327,3,78,0, | ||
2408 | 327,3,79,0,327, | ||
2409 | 3,80,0,327,3, | ||
2410 | 81,0,327,3,82, | ||
2411 | 0,327,3,83,0, | ||
2412 | 327,3,84,0,327, | ||
2413 | 3,85,0,327,3, | ||
2414 | 86,0,327,3,87, | ||
2415 | 0,327,3,88,0, | ||
2416 | 327,3,89,0,327, | ||
2417 | 3,90,0,327,3, | ||
2418 | 95,0,327,3,97, | ||
2419 | 0,327,3,98,0, | ||
2420 | 327,3,99,0,327, | ||
2421 | 3,100,0,327,3, | ||
2422 | 101,0,327,3,102, | ||
2423 | 0,327,3,103,0, | ||
2424 | 327,3,104,0,327, | ||
2425 | 3,105,0,327,3, | ||
2426 | 106,0,327,3,107, | ||
2427 | 0,327,3,108,0, | ||
2428 | 327,408,11,1,829, | ||
2429 | 0,330,1,-1,3, | ||
2430 | 102,0,327,3,103, | ||
2431 | 0,327,3,104,0, | ||
2432 | 327,3,105,0,327, | ||
2433 | 3,106,0,327,3, | ||
2434 | 107,0,327,3,108, | ||
2435 | 0,327,409,11,1, | ||
2436 | 829,0,330,1,-1, | ||
2437 | 3,104,0,327,3, | ||
2438 | 105,0,327,3,106, | ||
2439 | 0,327,3,107,0, | ||
2440 | 327,3,108,0,327, | ||
2441 | 410,11,1,829,0, | ||
2442 | 330,1,-1,3,115, | ||
2443 | 0,327,3,116,0, | ||
2444 | 327,3,117,0,327, | ||
2445 | 3,118,0,327,3, | ||
2446 | 119,0,327,3,120, | ||
2447 | 0,327,3,121,0, | ||
2448 | 327,3,122,0,327, | ||
2449 | 3,48,0,327,3, | ||
2450 | 49,0,327,3,50, | ||
2451 | 0,327,3,51,0, | ||
2452 | 327,3,52,0,327, | ||
2453 | 3,53,0,327,3, | ||
2454 | 54,0,327,3,55, | ||
2455 | 0,327,3,56,0, | ||
2456 | 327,3,57,0,327, | ||
2457 | 3,65,0,327,3, | ||
2458 | 66,0,327,3,67, | ||
2459 | 0,327,3,68,0, | ||
2460 | 327,3,69,0,327, | ||
2461 | 3,70,0,327,3, | ||
2462 | 71,0,327,3,72, | ||
2463 | 0,327,3,73,0, | ||
2464 | 327,3,74,0,327, | ||
2465 | 3,75,0,327,3, | ||
2466 | 76,0,327,3,77, | ||
2467 | 0,327,3,78,0, | ||
2468 | 327,3,79,0,327, | ||
2469 | 3,80,0,327,3, | ||
2470 | 81,0,327,3,82, | ||
2471 | 0,327,3,83,0, | ||
2472 | 327,3,84,0,327, | ||
2473 | 3,85,0,327,3, | ||
2474 | 86,0,327,3,87, | ||
2475 | 0,327,3,88,0, | ||
2476 | 327,3,89,0,327, | ||
2477 | 3,90,0,327,3, | ||
2478 | 95,0,327,3,97, | ||
2479 | 0,327,3,98,0, | ||
2480 | 327,3,99,0,327, | ||
2481 | 3,100,0,327,3, | ||
2482 | 101,0,327,3,102, | ||
2483 | 0,327,3,103,0, | ||
2484 | 327,3,104,0,327, | ||
2485 | 3,105,0,327,3, | ||
2486 | 106,0,327,3,107, | ||
2487 | 0,327,3,108,0, | ||
2488 | 327,411,11,1,829, | ||
2489 | 0,330,1,-1,3, | ||
2490 | 98,0,327,3,99, | ||
2491 | 0,327,3,100,0, | ||
2492 | 327,3,101,0,327, | ||
2493 | 3,102,0,327,3, | ||
2494 | 103,0,327,3,104, | ||
2495 | 0,327,3,105,0, | ||
2496 | 327,3,106,0,327, | ||
2497 | 3,107,0,327,3, | ||
2498 | 108,0,327,412,11, | ||
2499 | 1,829,0,330,1, | ||
2500 | -1,3,117,0,327, | ||
2501 | 3,118,0,327,3, | ||
2502 | 119,0,327,3,120, | ||
2503 | 0,327,3,121,0, | ||
2504 | 327,3,122,0,327, | ||
2505 | 3,48,0,327,3, | ||
2506 | 49,0,327,3,50, | ||
2507 | 0,327,3,51,0, | ||
2508 | 327,3,52,0,327, | ||
2509 | 3,53,0,327,3, | ||
2510 | 54,0,327,3,55, | ||
2511 | 0,327,3,56,0, | ||
2512 | 327,3,57,0,327, | ||
2513 | 3,65,0,327,3, | ||
2514 | 66,0,327,3,67, | ||
2515 | 0,327,3,68,0, | ||
2516 | 327,3,69,0,327, | ||
2517 | 3,70,0,327,3, | ||
2518 | 71,0,327,3,72, | ||
2519 | 0,327,3,73,0, | ||
2520 | 327,3,74,0,327, | ||
2521 | 3,75,0,327,3, | ||
2522 | 76,0,327,3,77, | ||
2523 | 0,327,3,78,0, | ||
2524 | 327,3,79,0,327, | ||
2525 | 3,80,0,327,3, | ||
2526 | 81,0,327,3,82, | ||
2527 | 0,327,3,83,0, | ||
2528 | 327,3,84,0,327, | ||
2529 | 3,85,0,327,3, | ||
2530 | 86,0,327,3,87, | ||
2531 | 0,327,3,88,0, | ||
2532 | 327,3,89,0,327, | ||
2533 | 3,90,0,327,3, | ||
2534 | 95,0,327,3,97, | ||
2535 | 0,327,3,98,0, | ||
2536 | 327,3,99,0,327, | ||
2537 | 3,100,0,327,3, | ||
2538 | 101,0,327,3,102, | ||
2539 | 0,327,3,103,0, | ||
2540 | 327,3,104,0,327, | ||
2541 | 3,105,0,327,3, | ||
2542 | 106,0,327,3,107, | ||
2543 | 0,327,3,108,0, | ||
2544 | 327,413,11,1,829, | ||
2545 | 0,330,1,-1,3, | ||
2546 | 97,0,327,3,98, | ||
2547 | 0,327,3,99,0, | ||
2548 | 327,3,100,0,327, | ||
2549 | 3,101,0,327,3, | ||
2550 | 102,0,327,3,103, | ||
2551 | 0,327,3,104,0, | ||
2552 | 327,3,105,0,327, | ||
2553 | 3,106,0,327,3, | ||
2554 | 107,0,327,3,108, | ||
2555 | 0,327,414,11,1, | ||
2556 | 829,0,330,1,-1, | ||
2557 | 3,117,0,327,3, | ||
2558 | 118,0,327,3,119, | ||
2559 | 0,327,3,120,0, | ||
2560 | 327,3,121,0,327, | ||
2561 | 3,122,0,327,3, | ||
2562 | 48,0,327,3,49, | ||
2563 | 0,327,3,50,0, | ||
2564 | 327,3,51,0,327, | ||
2565 | 3,52,0,327,3, | ||
2566 | 53,0,327,3,54, | ||
2567 | 0,327,3,55,0, | ||
2568 | 327,3,56,0,327, | ||
2569 | 3,57,0,327,3, | ||
2570 | 65,0,327,3,66, | ||
2571 | 0,327,3,67,0, | ||
2572 | 327,3,68,0,327, | ||
2573 | 3,69,0,327,3, | ||
2574 | 70,0,327,3,71, | ||
2575 | 0,327,3,72,0, | ||
2576 | 327,3,73,0,327, | ||
2577 | 3,74,0,327,3, | ||
2578 | 75,0,327,3,76, | ||
2579 | 0,327,3,77,0, | ||
2580 | 327,3,78,0,327, | ||
2581 | 3,79,0,327,3, | ||
2582 | 80,0,327,3,81, | ||
2583 | 0,327,3,82,0, | ||
2584 | 327,3,83,0,327, | ||
2585 | 3,84,0,327,3, | ||
2586 | 85,0,327,3,86, | ||
2587 | 0,327,3,87,0, | ||
2588 | 327,3,88,0,327, | ||
2589 | 3,89,0,327,3, | ||
2590 | 90,0,327,3,95, | ||
2591 | 0,327,3,97,0, | ||
2592 | 327,3,98,0,327, | ||
2593 | 3,99,0,327,3, | ||
2594 | 100,0,327,3,101, | ||
2595 | 0,327,3,102,0, | ||
2596 | 327,3,103,0,327, | ||
2597 | 3,104,0,327,3, | ||
2598 | 105,0,327,3,106, | ||
2599 | 0,327,3,107,0, | ||
2600 | 327,3,108,0,327, | ||
2601 | 415,11,1,829,0, | ||
2602 | 330,1,-1,3,98, | ||
2603 | 0,325,3,99,0, | ||
2604 | 416,12,1,22787,417, | ||
2605 | 5,63,3,109,0, | ||
2606 | 327,3,110,0,327, | ||
2607 | 3,111,0,418,12, | ||
2608 | 1,22817,419,5,63, | ||
2609 | 3,109,0,327,3, | ||
2610 | 110,0,420,12,1, | ||
2611 | 22846,421,5,63,3, | ||
2612 | 109,0,327,3,110, | ||
2613 | 0,327,3,111,0, | ||
2614 | 327,3,112,0,327, | ||
2615 | 3,113,0,327,3, | ||
2616 | 114,0,327,3,115, | ||
2617 | 0,327,3,116,0, | ||
2618 | 422,12,1,22881,423, | ||
2619 | 5,63,3,109,0, | ||
2620 | 327,3,110,0,327, | ||
2621 | 3,111,0,327,3, | ||
2622 | 112,0,327,3,113, | ||
2623 | 0,327,3,114,0, | ||
2624 | 424,12,1,22914,425, | ||
2625 | 5,63,3,109,0, | ||
2626 | 327,3,110,0,327, | ||
2627 | 3,111,0,426,12, | ||
2628 | 1,22944,427,5,63, | ||
2629 | 3,109,0,327,3, | ||
2630 | 110,0,327,3,111, | ||
2631 | 0,327,3,112,0, | ||
2632 | 327,3,113,0,327, | ||
2633 | 3,114,0,327,3, | ||
2634 | 115,0,327,3,116, | ||
2635 | 0,327,3,117,0, | ||
2636 | 327,3,118,0,327, | ||
2637 | 3,119,0,327,3, | ||
2638 | 120,0,327,3,121, | ||
2639 | 0,327,3,122,0, | ||
2640 | 327,3,48,0,327, | ||
2641 | 3,49,0,327,3, | ||
2642 | 50,0,327,3,51, | ||
2643 | 0,327,3,52,0, | ||
2644 | 327,3,53,0,327, | ||
2645 | 3,54,0,327,3, | ||
2646 | 55,0,327,3,56, | ||
2647 | 0,327,3,57,0, | ||
2648 | 327,3,65,0,327, | ||
2649 | 3,66,0,327,3, | ||
2650 | 67,0,327,3,68, | ||
2651 | 0,327,3,69,0, | ||
2652 | 327,3,70,0,327, | ||
2653 | 3,71,0,327,3, | ||
2654 | 72,0,327,3,73, | ||
2655 | 0,327,3,74,0, | ||
2656 | 327,3,75,0,327, | ||
2657 | 3,76,0,327,3, | ||
2658 | 77,0,327,3,78, | ||
2659 | 0,327,3,79,0, | ||
2660 | 327,3,80,0,327, | ||
2661 | 3,81,0,327,3, | ||
2662 | 82,0,327,3,83, | ||
2663 | 0,327,3,84,0, | ||
2664 | 327,3,85,0,327, | ||
2665 | 3,86,0,327,3, | ||
2666 | 87,0,327,3,88, | ||
2667 | 0,327,3,89,0, | ||
2668 | 327,3,90,0,327, | ||
2669 | 3,95,0,327,3, | ||
2670 | 97,0,327,3,98, | ||
2671 | 0,327,3,99,0, | ||
2672 | 327,3,100,0,327, | ||
2673 | 3,101,0,327,3, | ||
2674 | 102,0,327,3,103, | ||
2675 | 0,327,3,104,0, | ||
2676 | 327,3,105,0,327, | ||
2677 | 3,106,0,327,3, | ||
2678 | 107,0,327,3,108, | ||
2679 | 0,428,12,1,22998, | ||
2680 | 429,5,63,3,109, | ||
2681 | 0,327,3,110,0, | ||
2682 | 327,3,111,0,327, | ||
2683 | 3,112,0,327,3, | ||
2684 | 113,0,327,3,114, | ||
2685 | 0,327,3,115,0, | ||
2686 | 327,3,116,0,327, | ||
2687 | 3,117,0,327,3, | ||
2688 | 118,0,327,3,119, | ||
2689 | 0,327,3,120,0, | ||
2690 | 327,3,121,0,327, | ||
2691 | 3,122,0,327,3, | ||
2692 | 48,0,327,3,49, | ||
2693 | 0,327,3,50,0, | ||
2694 | 327,3,51,0,327, | ||
2695 | 3,52,0,327,3, | ||
2696 | 53,0,327,3,54, | ||
2697 | 0,327,3,55,0, | ||
2698 | 327,3,56,0,327, | ||
2699 | 3,57,0,327,3, | ||
2700 | 65,0,327,3,66, | ||
2701 | 0,327,3,67,0, | ||
2702 | 327,3,68,0,327, | ||
2703 | 3,69,0,327,3, | ||
2704 | 70,0,327,3,71, | ||
2705 | 0,327,3,72,0, | ||
2706 | 327,3,73,0,327, | ||
2707 | 3,74,0,327,3, | ||
2708 | 75,0,327,3,76, | ||
2709 | 0,327,3,77,0, | ||
2710 | 327,3,78,0,327, | ||
2711 | 3,79,0,327,3, | ||
2712 | 80,0,327,3,81, | ||
2713 | 0,327,3,82,0, | ||
2714 | 327,3,83,0,327, | ||
2715 | 3,84,0,327,3, | ||
2716 | 85,0,327,3,86, | ||
2717 | 0,327,3,87,0, | ||
2718 | 327,3,88,0,327, | ||
2719 | 3,89,0,327,3, | ||
2720 | 90,0,327,3,95, | ||
2721 | 0,327,3,97,0, | ||
2722 | 327,3,98,0,327, | ||
2723 | 3,99,0,327,3, | ||
2724 | 100,0,327,3,101, | ||
2725 | 0,327,3,102,0, | ||
2726 | 327,3,103,0,327, | ||
2727 | 3,104,0,327,3, | ||
2728 | 105,0,327,3,106, | ||
2729 | 0,327,3,107,0, | ||
2730 | 327,3,108,0,327, | ||
2731 | 430,11,1,450,0, | ||
2732 | 431,4,26,67,0, | ||
2733 | 79,0,78,0,84, | ||
2734 | 0,82,0,79,0, | ||
2735 | 76,0,95,0,69, | ||
2736 | 0,86,0,69,0, | ||
2737 | 78,0,84,0,1, | ||
2738 | -1,432,11,1,829, | ||
2739 | 0,330,1,-1,3, | ||
2740 | 112,0,327,3,113, | ||
2741 | 0,327,3,114,0, | ||
2742 | 327,3,115,0,327, | ||
2743 | 3,116,0,327,3, | ||
2744 | 117,0,327,3,118, | ||
2745 | 0,327,3,119,0, | ||
2746 | 327,3,120,0,327, | ||
2747 | 3,121,0,327,3, | ||
2748 | 122,0,327,3,48, | ||
2749 | 0,327,3,49,0, | ||
2750 | 327,3,50,0,327, | ||
2751 | 3,51,0,327,3, | ||
2752 | 52,0,327,3,53, | ||
2753 | 0,327,3,54,0, | ||
2754 | 327,3,55,0,327, | ||
2755 | 3,56,0,327,3, | ||
2756 | 57,0,327,3,65, | ||
2757 | 0,327,3,66,0, | ||
2758 | 327,3,67,0,327, | ||
2759 | 3,68,0,327,3, | ||
2760 | 69,0,327,3,70, | ||
2761 | 0,327,3,71,0, | ||
2762 | 327,3,72,0,327, | ||
2763 | 3,73,0,327,3, | ||
2764 | 74,0,327,3,75, | ||
2765 | 0,327,3,76,0, | ||
2766 | 327,3,77,0,327, | ||
2767 | 3,78,0,327,3, | ||
2768 | 79,0,327,3,80, | ||
2769 | 0,327,3,81,0, | ||
2770 | 327,3,82,0,327, | ||
2771 | 3,83,0,327,3, | ||
2772 | 84,0,327,3,85, | ||
2773 | 0,327,3,86,0, | ||
2774 | 327,3,87,0,327, | ||
2775 | 3,88,0,327,3, | ||
2776 | 89,0,327,3,90, | ||
2777 | 0,327,3,95,0, | ||
2778 | 327,3,97,0,327, | ||
2779 | 3,98,0,327,3, | ||
2780 | 99,0,327,3,100, | ||
2781 | 0,327,3,101,0, | ||
2782 | 327,3,102,0,327, | ||
2783 | 3,103,0,327,3, | ||
2784 | 104,0,327,3,105, | ||
2785 | 0,327,3,106,0, | ||
2786 | 327,3,107,0,327, | ||
2787 | 3,108,0,327,433, | ||
2788 | 11,1,829,0,330, | ||
2789 | 1,-1,3,115,0, | ||
2790 | 327,3,116,0,327, | ||
2791 | 3,117,0,327,3, | ||
2792 | 118,0,327,3,119, | ||
2793 | 0,327,3,120,0, | ||
2794 | 327,3,121,0,327, | ||
2795 | 3,122,0,327,3, | ||
2796 | 48,0,327,3,49, | ||
2797 | 0,327,3,50,0, | ||
2798 | 327,3,51,0,327, | ||
2799 | 3,52,0,327,3, | ||
2800 | 53,0,327,3,54, | ||
2801 | 0,327,3,55,0, | ||
2802 | 327,3,56,0,327, | ||
2803 | 3,57,0,327,3, | ||
2804 | 65,0,327,3,66, | ||
2805 | 0,327,3,67,0, | ||
2806 | 327,3,68,0,327, | ||
2807 | 3,69,0,327,3, | ||
2808 | 70,0,327,3,71, | ||
2809 | 0,327,3,72,0, | ||
2810 | 327,3,73,0,327, | ||
2811 | 3,74,0,327,3, | ||
2812 | 75,0,327,3,76, | ||
2813 | 0,327,3,77,0, | ||
2814 | 327,3,78,0,327, | ||
2815 | 3,79,0,327,3, | ||
2816 | 80,0,327,3,81, | ||
2817 | 0,327,3,82,0, | ||
2818 | 327,3,83,0,327, | ||
2819 | 3,84,0,327,3, | ||
2820 | 85,0,327,3,86, | ||
2821 | 0,327,3,87,0, | ||
2822 | 327,3,88,0,327, | ||
2823 | 3,89,0,327,3, | ||
2824 | 90,0,327,3,95, | ||
2825 | 0,327,3,97,0, | ||
2826 | 327,3,98,0,327, | ||
2827 | 3,99,0,327,3, | ||
2828 | 100,0,327,3,101, | ||
2829 | 0,327,3,102,0, | ||
2830 | 327,3,103,0,327, | ||
2831 | 3,104,0,327,3, | ||
2832 | 105,0,327,3,106, | ||
2833 | 0,327,3,107,0, | ||
2834 | 327,3,108,0,327, | ||
2835 | 434,11,1,829,0, | ||
2836 | 330,1,-1,3,117, | ||
2837 | 0,327,3,118,0, | ||
2838 | 327,3,119,0,327, | ||
2839 | 3,120,0,327,3, | ||
2840 | 121,0,327,3,122, | ||
2841 | 0,327,3,48,0, | ||
2842 | 327,3,49,0,327, | ||
2843 | 3,50,0,327,3, | ||
2844 | 51,0,327,3,52, | ||
2845 | 0,327,3,53,0, | ||
2846 | 327,3,54,0,327, | ||
2847 | 3,55,0,327,3, | ||
2848 | 56,0,327,3,57, | ||
2849 | 0,327,3,65,0, | ||
2850 | 327,3,66,0,327, | ||
2851 | 3,67,0,327,3, | ||
2852 | 68,0,327,3,69, | ||
2853 | 0,327,3,70,0, | ||
2854 | 327,3,71,0,327, | ||
2855 | 3,72,0,327,3, | ||
2856 | 73,0,327,3,74, | ||
2857 | 0,327,3,75,0, | ||
2858 | 327,3,76,0,327, | ||
2859 | 3,77,0,327,3, | ||
2860 | 78,0,327,3,79, | ||
2861 | 0,327,3,80,0, | ||
2862 | 327,3,81,0,327, | ||
2863 | 3,82,0,327,3, | ||
2864 | 83,0,327,3,84, | ||
2865 | 0,327,3,85,0, | ||
2866 | 327,3,86,0,327, | ||
2867 | 3,87,0,327,3, | ||
2868 | 88,0,327,3,89, | ||
2869 | 0,327,3,90,0, | ||
2870 | 327,3,95,0,327, | ||
2871 | 3,97,0,327,3, | ||
2872 | 98,0,327,3,99, | ||
2873 | 0,327,3,100,0, | ||
2874 | 327,3,101,0,327, | ||
2875 | 3,102,0,327,3, | ||
2876 | 103,0,327,3,104, | ||
2877 | 0,327,3,105,0, | ||
2878 | 327,3,106,0,327, | ||
2879 | 3,107,0,327,3, | ||
2880 | 108,0,327,435,11, | ||
2881 | 1,829,0,330,1, | ||
2882 | -1,3,111,0,327, | ||
2883 | 3,112,0,327,3, | ||
2884 | 113,0,327,3,114, | ||
2885 | 0,327,3,115,0, | ||
2886 | 327,3,116,0,327, | ||
2887 | 3,117,0,327,3, | ||
2888 | 118,0,327,3,119, | ||
2889 | 0,327,3,120,0, | ||
2890 | 327,3,121,0,327, | ||
2891 | 3,122,0,327,3, | ||
2892 | 48,0,327,3,49, | ||
2893 | 0,327,3,50,0, | ||
2894 | 327,3,51,0,327, | ||
2895 | 3,52,0,327,3, | ||
2896 | 53,0,327,3,54, | ||
2897 | 0,327,3,55,0, | ||
2898 | 327,3,56,0,327, | ||
2899 | 3,57,0,327,3, | ||
2900 | 65,0,327,3,66, | ||
2901 | 0,327,3,67,0, | ||
2902 | 327,3,68,0,327, | ||
2903 | 3,69,0,327,3, | ||
2904 | 70,0,327,3,71, | ||
2905 | 0,327,3,72,0, | ||
2906 | 327,3,73,0,327, | ||
2907 | 3,74,0,327,3, | ||
2908 | 75,0,327,3,76, | ||
2909 | 0,327,3,77,0, | ||
2910 | 327,3,78,0,327, | ||
2911 | 3,79,0,327,3, | ||
2912 | 80,0,327,3,81, | ||
2913 | 0,327,3,82,0, | ||
2914 | 327,3,83,0,327, | ||
2915 | 3,84,0,327,3, | ||
2916 | 85,0,327,3,86, | ||
2917 | 0,327,3,87,0, | ||
2918 | 327,3,88,0,327, | ||
2919 | 3,89,0,327,3, | ||
2920 | 90,0,327,3,95, | ||
2921 | 0,327,3,97,0, | ||
2922 | 327,3,98,0,327, | ||
2923 | 3,99,0,327,3, | ||
2924 | 100,0,327,3,101, | ||
2925 | 0,327,3,102,0, | ||
2926 | 327,3,103,0,327, | ||
2927 | 3,104,0,327,3, | ||
2928 | 105,0,327,3,106, | ||
2929 | 0,327,3,107,0, | ||
2930 | 327,3,108,0,436, | ||
2931 | 12,1,23471,437,5, | ||
2932 | 63,3,109,0,327, | ||
2933 | 3,110,0,327,3, | ||
2934 | 111,0,327,3,112, | ||
2935 | 0,327,3,113,0, | ||
2936 | 327,3,114,0,327, | ||
2937 | 3,115,0,327,3, | ||
2938 | 116,0,327,3,117, | ||
2939 | 0,327,3,118,0, | ||
2940 | 327,3,119,0,327, | ||
2941 | 3,120,0,327,3, | ||
2942 | 121,0,327,3,122, | ||
2943 | 0,327,3,48,0, | ||
2944 | 327,3,49,0,327, | ||
2945 | 3,50,0,327,3, | ||
2946 | 51,0,327,3,52, | ||
2947 | 0,327,3,53,0, | ||
2948 | 327,3,54,0,327, | ||
2949 | 3,55,0,327,3, | ||
2950 | 56,0,327,3,57, | ||
2951 | 0,327,3,65,0, | ||
2952 | 327,3,66,0,327, | ||
2953 | 3,67,0,327,3, | ||
2954 | 68,0,327,3,69, | ||
2955 | 0,327,3,70,0, | ||
2956 | 327,3,71,0,327, | ||
2957 | 3,72,0,327,3, | ||
2958 | 73,0,327,3,74, | ||
2959 | 0,327,3,75,0, | ||
2960 | 327,3,76,0,327, | ||
2961 | 3,77,0,327,3, | ||
2962 | 78,0,327,3,79, | ||
2963 | 0,327,3,80,0, | ||
2964 | 327,3,81,0,327, | ||
2965 | 3,82,0,327,3, | ||
2966 | 83,0,327,3,84, | ||
2967 | 0,327,3,85,0, | ||
2968 | 327,3,86,0,327, | ||
2969 | 3,87,0,327,3, | ||
2970 | 88,0,327,3,89, | ||
2971 | 0,327,3,90,0, | ||
2972 | 327,3,95,0,327, | ||
2973 | 3,97,0,327,3, | ||
2974 | 98,0,327,3,99, | ||
2975 | 0,327,3,100,0, | ||
2976 | 327,3,101,0,327, | ||
2977 | 3,102,0,327,3, | ||
2978 | 103,0,327,3,104, | ||
2979 | 0,327,3,105,0, | ||
2980 | 327,3,106,0,327, | ||
2981 | 3,107,0,327,3, | ||
2982 | 108,0,438,12,1, | ||
2983 | 23525,439,5,63,3, | ||
2984 | 109,0,327,3,110, | ||
2985 | 0,327,3,111,0, | ||
2986 | 327,3,112,0,327, | ||
2987 | 3,113,0,327,3, | ||
2988 | 114,0,327,3,115, | ||
2989 | 0,327,3,116,0, | ||
2990 | 327,3,117,0,327, | ||
2991 | 3,118,0,327,3, | ||
2992 | 119,0,327,3,120, | ||
2993 | 0,327,3,121,0, | ||
2994 | 327,3,122,0,327, | ||
2995 | 3,48,0,327,3, | ||
2996 | 49,0,327,3,50, | ||
2997 | 0,327,3,51,0, | ||
2998 | 327,3,52,0,327, | ||
2999 | 3,53,0,327,3, | ||
3000 | 54,0,327,3,55, | ||
3001 | 0,327,3,56,0, | ||
3002 | 327,3,57,0,327, | ||
3003 | 3,65,0,327,3, | ||
3004 | 66,0,327,3,67, | ||
3005 | 0,327,3,68,0, | ||
3006 | 327,3,69,0,327, | ||
3007 | 3,70,0,327,3, | ||
3008 | 71,0,327,3,72, | ||
3009 | 0,327,3,73,0, | ||
3010 | 327,3,74,0,327, | ||
3011 | 3,75,0,327,3, | ||
3012 | 76,0,327,3,77, | ||
3013 | 0,327,3,78,0, | ||
3014 | 327,3,79,0,327, | ||
3015 | 3,80,0,327,3, | ||
3016 | 81,0,327,3,82, | ||
3017 | 0,327,3,83,0, | ||
3018 | 327,3,84,0,327, | ||
3019 | 3,85,0,327,3, | ||
3020 | 86,0,327,3,87, | ||
3021 | 0,327,3,88,0, | ||
3022 | 327,3,89,0,327, | ||
3023 | 3,90,0,327,3, | ||
3024 | 95,0,327,3,97, | ||
3025 | 0,327,3,98,0, | ||
3026 | 327,3,99,0,327, | ||
3027 | 3,100,0,327,3, | ||
3028 | 101,0,327,3,102, | ||
3029 | 0,327,3,103,0, | ||
3030 | 327,3,104,0,327, | ||
3031 | 3,105,0,440,12, | ||
3032 | 1,23576,441,5,63, | ||
3033 | 3,109,0,327,3, | ||
3034 | 110,0,327,3,111, | ||
3035 | 0,327,3,112,0, | ||
3036 | 327,3,113,0,327, | ||
3037 | 3,114,0,327,3, | ||
3038 | 115,0,442,12,1, | ||
3039 | 23610,443,5,63,3, | ||
3040 | 109,0,327,3,110, | ||
3041 | 0,327,3,111,0, | ||
3042 | 327,3,112,0,327, | ||
3043 | 3,113,0,327,3, | ||
3044 | 114,0,327,3,115, | ||
3045 | 0,327,3,116,0, | ||
3046 | 327,3,117,0,327, | ||
3047 | 3,118,0,327,3, | ||
3048 | 119,0,327,3,120, | ||
3049 | 0,327,3,121,0, | ||
3050 | 327,3,122,0,327, | ||
3051 | 3,48,0,327,3, | ||
3052 | 49,0,327,3,50, | ||
3053 | 0,327,3,51,0, | ||
3054 | 327,3,52,0,327, | ||
3055 | 3,53,0,327,3, | ||
3056 | 54,0,327,3,55, | ||
3057 | 0,327,3,56,0, | ||
3058 | 327,3,57,0,327, | ||
3059 | 3,65,0,327,3, | ||
3060 | 66,0,327,3,67, | ||
3061 | 0,327,3,68,0, | ||
3062 | 327,3,69,0,327, | ||
3063 | 3,70,0,327,3, | ||
3064 | 71,0,327,3,72, | ||
3065 | 0,327,3,73,0, | ||
3066 | 327,3,74,0,327, | ||
3067 | 3,75,0,327,3, | ||
3068 | 76,0,327,3,77, | ||
3069 | 0,327,3,78,0, | ||
3070 | 327,3,79,0,327, | ||
3071 | 3,80,0,327,3, | ||
3072 | 81,0,327,3,82, | ||
3073 | 0,327,3,83,0, | ||
3074 | 327,3,84,0,327, | ||
3075 | 3,85,0,327,3, | ||
3076 | 86,0,327,3,87, | ||
3077 | 0,327,3,88,0, | ||
3078 | 327,3,89,0,327, | ||
3079 | 3,90,0,327,3, | ||
3080 | 95,0,327,3,97, | ||
3081 | 0,327,3,98,0, | ||
3082 | 327,3,99,0,327, | ||
3083 | 3,100,0,327,3, | ||
3084 | 101,0,327,3,102, | ||
3085 | 0,327,3,103,0, | ||
3086 | 327,3,104,0,327, | ||
3087 | 3,105,0,444,12, | ||
3088 | 1,23661,445,5,63, | ||
3089 | 3,109,0,327,3, | ||
3090 | 110,0,327,3,111, | ||
3091 | 0,446,12,1,23691, | ||
3092 | 447,5,63,3,109, | ||
3093 | 0,327,3,110,0, | ||
3094 | 448,12,1,23720,449, | ||
3095 | 5,63,3,109,0, | ||
3096 | 327,3,110,0,327, | ||
3097 | 3,111,0,327,3, | ||
3098 | 112,0,327,3,113, | ||
3099 | 0,327,3,114,0, | ||
3100 | 327,3,115,0,327, | ||
3101 | 3,116,0,327,3, | ||
3102 | 117,0,327,3,118, | ||
3103 | 0,327,3,119,0, | ||
3104 | 327,3,120,0,327, | ||
3105 | 3,121,0,327,3, | ||
3106 | 122,0,327,3,48, | ||
3107 | 0,327,3,49,0, | ||
3108 | 327,3,50,0,327, | ||
3109 | 3,51,0,327,3, | ||
3110 | 52,0,327,3,53, | ||
3111 | 0,327,3,54,0, | ||
3112 | 327,3,55,0,327, | ||
3113 | 3,56,0,327,3, | ||
3114 | 57,0,327,3,65, | ||
3115 | 0,327,3,66,0, | ||
3116 | 327,3,67,0,327, | ||
3117 | 3,68,0,327,3, | ||
3118 | 69,0,327,3,70, | ||
3119 | 0,327,3,71,0, | ||
3120 | 327,3,72,0,327, | ||
3121 | 3,73,0,327,3, | ||
3122 | 74,0,327,3,75, | ||
3123 | 0,327,3,76,0, | ||
3124 | 327,3,77,0,327, | ||
3125 | 3,78,0,327,3, | ||
3126 | 79,0,327,3,80, | ||
3127 | 0,327,3,81,0, | ||
3128 | 327,3,82,0,327, | ||
3129 | 3,83,0,327,3, | ||
3130 | 84,0,327,3,85, | ||
3131 | 0,327,3,86,0, | ||
3132 | 327,3,87,0,327, | ||
3133 | 3,88,0,327,3, | ||
3134 | 89,0,327,3,90, | ||
3135 | 0,327,3,95,0, | ||
3136 | 450,12,1,23806,451, | ||
3137 | 5,63,3,109,0, | ||
3138 | 327,3,110,0,327, | ||
3139 | 3,111,0,327,3, | ||
3140 | 112,0,327,3,113, | ||
3141 | 0,327,3,114,0, | ||
3142 | 327,3,115,0,452, | ||
3143 | 12,1,23840,453,5, | ||
3144 | 63,3,109,0,327, | ||
3145 | 3,110,0,327,3, | ||
3146 | 111,0,327,3,112, | ||
3147 | 0,327,3,113,0, | ||
3148 | 327,3,114,0,327, | ||
3149 | 3,115,0,327,3, | ||
3150 | 116,0,454,12,1, | ||
3151 | 23875,455,5,63,3, | ||
3152 | 109,0,327,3,110, | ||
3153 | 0,327,3,111,0, | ||
3154 | 327,3,112,0,327, | ||
3155 | 3,113,0,327,3, | ||
3156 | 114,0,327,3,115, | ||
3157 | 0,327,3,116,0, | ||
3158 | 327,3,117,0,327, | ||
3159 | 3,118,0,327,3, | ||
3160 | 119,0,327,3,120, | ||
3161 | 0,327,3,121,0, | ||
3162 | 327,3,122,0,327, | ||
3163 | 3,48,0,327,3, | ||
3164 | 49,0,327,3,50, | ||
3165 | 0,327,3,51,0, | ||
3166 | 327,3,52,0,327, | ||
3167 | 3,53,0,327,3, | ||
3168 | 54,0,327,3,55, | ||
3169 | 0,327,3,56,0, | ||
3170 | 327,3,57,0,327, | ||
3171 | 3,65,0,327,3, | ||
3172 | 66,0,327,3,67, | ||
3173 | 0,327,3,68,0, | ||
3174 | 327,3,69,0,327, | ||
3175 | 3,70,0,327,3, | ||
3176 | 71,0,327,3,72, | ||
3177 | 0,327,3,73,0, | ||
3178 | 327,3,74,0,327, | ||
3179 | 3,75,0,327,3, | ||
3180 | 76,0,327,3,77, | ||
3181 | 0,327,3,78,0, | ||
3182 | 327,3,79,0,327, | ||
3183 | 3,80,0,327,3, | ||
3184 | 81,0,327,3,82, | ||
3185 | 0,327,3,83,0, | ||
3186 | 327,3,84,0,327, | ||
3187 | 3,85,0,327,3, | ||
3188 | 86,0,327,3,87, | ||
3189 | 0,327,3,88,0, | ||
3190 | 327,3,89,0,327, | ||
3191 | 3,90,0,327,3, | ||
3192 | 95,0,327,3,97, | ||
3193 | 0,456,12,1,23918, | ||
3194 | 457,5,63,3,109, | ||
3195 | 0,327,3,110,0, | ||
3196 | 327,3,111,0,327, | ||
3197 | 3,112,0,327,3, | ||
3198 | 113,0,327,3,114, | ||
3199 | 0,458,12,1,23951, | ||
3200 | 459,5,63,3,109, | ||
3201 | 0,327,3,110,0, | ||
3202 | 327,3,111,0,327, | ||
3203 | 3,112,0,327,3, | ||
3204 | 113,0,327,3,114, | ||
3205 | 0,327,3,115,0, | ||
3206 | 327,3,116,0,460, | ||
3207 | 12,1,23986,461,5, | ||
3208 | 63,3,109,0,327, | ||
3209 | 3,110,0,327,3, | ||
3210 | 111,0,327,3,112, | ||
3211 | 0,327,3,113,0, | ||
3212 | 327,3,114,0,327, | ||
3213 | 3,115,0,327,3, | ||
3214 | 116,0,327,3,117, | ||
3215 | 0,327,3,118,0, | ||
3216 | 327,3,119,0,327, | ||
3217 | 3,120,0,327,3, | ||
3218 | 121,0,327,3,122, | ||
3219 | 0,327,3,48,0, | ||
3220 | 327,3,49,0,327, | ||
3221 | 3,50,0,327,3, | ||
3222 | 51,0,327,3,52, | ||
3223 | 0,327,3,53,0, | ||
3224 | 327,3,54,0,327, | ||
3225 | 3,55,0,327,3, | ||
3226 | 56,0,327,3,57, | ||
3227 | 0,327,3,65,0, | ||
3228 | 327,3,66,0,327, | ||
3229 | 3,67,0,327,3, | ||
3230 | 68,0,327,3,69, | ||
3231 | 0,327,3,70,0, | ||
3232 | 327,3,71,0,327, | ||
3233 | 3,72,0,327,3, | ||
3234 | 73,0,327,3,74, | ||
3235 | 0,327,3,75,0, | ||
3236 | 327,3,76,0,327, | ||
3237 | 3,77,0,327,3, | ||
3238 | 78,0,327,3,79, | ||
3239 | 0,327,3,80,0, | ||
3240 | 327,3,81,0,327, | ||
3241 | 3,82,0,327,3, | ||
3242 | 83,0,327,3,84, | ||
3243 | 0,327,3,85,0, | ||
3244 | 327,3,86,0,327, | ||
3245 | 3,87,0,327,3, | ||
3246 | 88,0,327,3,89, | ||
3247 | 0,327,3,90,0, | ||
3248 | 327,3,95,0,327, | ||
3249 | 3,97,0,327,3, | ||
3250 | 98,0,327,3,99, | ||
3251 | 0,327,3,100,0, | ||
3252 | 327,3,101,0,327, | ||
3253 | 3,102,0,327,3, | ||
3254 | 103,0,327,3,104, | ||
3255 | 0,327,3,105,0, | ||
3256 | 327,3,106,0,327, | ||
3257 | 3,107,0,327,3, | ||
3258 | 108,0,327,462,11, | ||
3259 | 1,431,0,463,4, | ||
3260 | 42,67,0,79,0, | ||
3261 | 76,0,76,0,73, | ||
3262 | 0,83,0,73,0, | ||
3263 | 79,0,78,0,95, | ||
3264 | 0,83,0,84,0, | ||
3265 | 65,0,82,0,84, | ||
3266 | 0,95,0,69,0, | ||
3267 | 86,0,69,0,78, | ||
3268 | 0,84,0,1,-1, | ||
3269 | 3,117,0,327,3, | ||
3270 | 118,0,327,3,119, | ||
3271 | 0,327,3,120,0, | ||
3272 | 327,3,121,0,327, | ||
3273 | 3,122,0,327,3, | ||
3274 | 48,0,327,3,49, | ||
3275 | 0,327,3,50,0, | ||
3276 | 327,3,51,0,327, | ||
3277 | 3,52,0,327,3, | ||
3278 | 53,0,327,3,54, | ||
3279 | 0,327,3,55,0, | ||
3280 | 327,3,56,0,327, | ||
3281 | 3,57,0,327,3, | ||
3282 | 65,0,327,3,66, | ||
3283 | 0,327,3,67,0, | ||
3284 | 327,3,68,0,327, | ||
3285 | 3,69,0,327,3, | ||
3286 | 70,0,327,3,71, | ||
3287 | 0,327,3,72,0, | ||
3288 | 327,3,73,0,327, | ||
3289 | 3,74,0,327,3, | ||
3290 | 75,0,327,3,76, | ||
3291 | 0,327,3,77,0, | ||
3292 | 327,3,78,0,327, | ||
3293 | 3,79,0,327,3, | ||
3294 | 80,0,327,3,81, | ||
3295 | 0,327,3,82,0, | ||
3296 | 327,3,83,0,327, | ||
3297 | 3,84,0,327,3, | ||
3298 | 85,0,327,3,86, | ||
3299 | 0,327,3,87,0, | ||
3300 | 327,3,88,0,327, | ||
3301 | 3,89,0,327,3, | ||
3302 | 90,0,327,3,95, | ||
3303 | 0,327,3,97,0, | ||
3304 | 327,3,98,0,327, | ||
3305 | 3,99,0,327,3, | ||
3306 | 100,0,327,3,101, | ||
3307 | 0,327,3,102,0, | ||
3308 | 327,3,103,0,327, | ||
3309 | 3,104,0,327,3, | ||
3310 | 105,0,327,3,106, | ||
3311 | 0,327,3,107,0, | ||
3312 | 327,3,108,0,327, | ||
3313 | 464,11,1,829,0, | ||
3314 | 330,1,-1,3,115, | ||
3315 | 0,327,3,116,0, | ||
3316 | 327,3,117,0,327, | ||
3317 | 3,118,0,327,3, | ||
3318 | 119,0,327,3,120, | ||
3319 | 0,327,3,121,0, | ||
3320 | 327,3,122,0,327, | ||
3321 | 3,48,0,327,3, | ||
3322 | 49,0,327,3,50, | ||
3323 | 0,327,3,51,0, | ||
3324 | 327,3,52,0,327, | ||
3325 | 3,53,0,327,3, | ||
3326 | 54,0,327,3,55, | ||
3327 | 0,327,3,56,0, | ||
3328 | 327,3,57,0,327, | ||
3329 | 3,65,0,327,3, | ||
3330 | 66,0,327,3,67, | ||
3331 | 0,327,3,68,0, | ||
3332 | 327,3,69,0,327, | ||
3333 | 3,70,0,327,3, | ||
3334 | 71,0,327,3,72, | ||
3335 | 0,327,3,73,0, | ||
3336 | 327,3,74,0,327, | ||
3337 | 3,75,0,327,3, | ||
3338 | 76,0,327,3,77, | ||
3339 | 0,327,3,78,0, | ||
3340 | 327,3,79,0,327, | ||
3341 | 3,80,0,327,3, | ||
3342 | 81,0,327,3,82, | ||
3343 | 0,327,3,83,0, | ||
3344 | 327,3,84,0,327, | ||
3345 | 3,85,0,327,3, | ||
3346 | 86,0,327,3,87, | ||
3347 | 0,327,3,88,0, | ||
3348 | 327,3,89,0,327, | ||
3349 | 3,90,0,327,3, | ||
3350 | 95,0,327,3,97, | ||
3351 | 0,327,3,98,0, | ||
3352 | 327,3,99,0,327, | ||
3353 | 3,100,0,327,3, | ||
3354 | 101,0,327,3,102, | ||
3355 | 0,327,3,103,0, | ||
3356 | 327,3,104,0,327, | ||
3357 | 3,105,0,327,3, | ||
3358 | 106,0,327,3,107, | ||
3359 | 0,327,3,108,0, | ||
3360 | 327,465,11,1,829, | ||
3361 | 0,330,1,-1,3, | ||
3362 | 98,0,327,3,99, | ||
3363 | 0,327,3,100,0, | ||
3364 | 327,3,101,0,327, | ||
3365 | 3,102,0,327,3, | ||
3366 | 103,0,327,3,104, | ||
3367 | 0,327,3,105,0, | ||
3368 | 327,3,106,0,327, | ||
3369 | 3,107,0,327,3, | ||
3370 | 108,0,327,466,11, | ||
3371 | 1,829,0,330,1, | ||
3372 | -1,3,117,0,327, | ||
3373 | 3,118,0,327,3, | ||
3374 | 119,0,327,3,120, | ||
3375 | 0,327,3,121,0, | ||
3376 | 327,3,122,0,327, | ||
3377 | 3,48,0,327,3, | ||
3378 | 49,0,327,3,50, | ||
3379 | 0,327,3,51,0, | ||
3380 | 327,3,52,0,327, | ||
3381 | 3,53,0,327,3, | ||
3382 | 54,0,327,3,55, | ||
3383 | 0,327,3,56,0, | ||
3384 | 327,3,57,0,327, | ||
3385 | 3,65,0,327,3, | ||
3386 | 66,0,327,3,67, | ||
3387 | 0,327,3,68,0, | ||
3388 | 327,3,69,0,327, | ||
3389 | 3,70,0,327,3, | ||
3390 | 71,0,327,3,72, | ||
3391 | 0,327,3,73,0, | ||
3392 | 327,3,74,0,327, | ||
3393 | 3,75,0,327,3, | ||
3394 | 76,0,327,3,77, | ||
3395 | 0,327,3,78,0, | ||
3396 | 327,3,79,0,327, | ||
3397 | 3,80,0,327,3, | ||
3398 | 81,0,327,3,82, | ||
3399 | 0,327,3,83,0, | ||
3400 | 327,3,84,0,327, | ||
3401 | 3,85,0,327,3, | ||
3402 | 86,0,327,3,87, | ||
3403 | 0,327,3,88,0, | ||
3404 | 327,3,89,0,327, | ||
3405 | 3,90,0,327,3, | ||
3406 | 95,0,327,3,97, | ||
3407 | 0,327,3,98,0, | ||
3408 | 327,3,99,0,327, | ||
3409 | 3,100,0,327,3, | ||
3410 | 101,0,327,3,102, | ||
3411 | 0,327,3,103,0, | ||
3412 | 327,3,104,0,327, | ||
3413 | 3,105,0,327,3, | ||
3414 | 106,0,327,3,107, | ||
3415 | 0,327,3,108,0, | ||
3416 | 327,467,11,1,829, | ||
3417 | 0,330,1,-1,3, | ||
3418 | 116,0,327,3,117, | ||
3419 | 0,327,3,118,0, | ||
3420 | 327,3,119,0,327, | ||
3421 | 3,120,0,327,3, | ||
3422 | 121,0,327,3,122, | ||
3423 | 0,327,3,48,0, | ||
3424 | 327,3,49,0,327, | ||
3425 | 3,50,0,327,3, | ||
3426 | 51,0,327,3,52, | ||
3427 | 0,327,3,53,0, | ||
3428 | 327,3,54,0,327, | ||
3429 | 3,55,0,327,3, | ||
3430 | 56,0,327,3,57, | ||
3431 | 0,327,3,65,0, | ||
3432 | 327,3,66,0,327, | ||
3433 | 3,67,0,327,3, | ||
3434 | 68,0,327,3,69, | ||
3435 | 0,327,3,70,0, | ||
3436 | 327,3,71,0,327, | ||
3437 | 3,72,0,327,3, | ||
3438 | 73,0,327,3,74, | ||
3439 | 0,327,3,75,0, | ||
3440 | 327,3,76,0,327, | ||
3441 | 3,77,0,327,3, | ||
3442 | 78,0,327,3,79, | ||
3443 | 0,327,3,80,0, | ||
3444 | 327,3,81,0,327, | ||
3445 | 3,82,0,327,3, | ||
3446 | 83,0,327,3,84, | ||
3447 | 0,327,3,85,0, | ||
3448 | 327,3,86,0,327, | ||
3449 | 3,87,0,327,3, | ||
3450 | 88,0,327,3,89, | ||
3451 | 0,327,3,90,0, | ||
3452 | 327,3,95,0,327, | ||
3453 | 3,97,0,327,3, | ||
3454 | 98,0,327,3,99, | ||
3455 | 0,327,3,100,0, | ||
3456 | 327,3,101,0,468, | ||
3457 | 12,1,24453,469,5, | ||
3458 | 63,3,109,0,327, | ||
3459 | 3,110,0,470,12, | ||
3460 | 1,24482,471,5,63, | ||
3461 | 3,109,0,327,3, | ||
3462 | 110,0,327,3,111, | ||
3463 | 0,327,3,112,0, | ||
3464 | 327,3,113,0,327, | ||
3465 | 3,114,0,327,3, | ||
3466 | 115,0,327,3,116, | ||
3467 | 0,327,3,117,0, | ||
3468 | 327,3,118,0,327, | ||
3469 | 3,119,0,327,3, | ||
3470 | 120,0,327,3,121, | ||
3471 | 0,327,3,122,0, | ||
3472 | 327,3,48,0,327, | ||
3473 | 3,49,0,327,3, | ||
3474 | 50,0,327,3,51, | ||
3475 | 0,327,3,52,0, | ||
3476 | 327,3,53,0,327, | ||
3477 | 3,54,0,327,3, | ||
3478 | 55,0,327,3,56, | ||
3479 | 0,327,3,57,0, | ||
3480 | 327,3,65,0,327, | ||
3481 | 3,66,0,327,3, | ||
3482 | 67,0,327,3,68, | ||
3483 | 0,327,3,69,0, | ||
3484 | 327,3,70,0,327, | ||
3485 | 3,71,0,327,3, | ||
3486 | 72,0,327,3,73, | ||
3487 | 0,327,3,74,0, | ||
3488 | 327,3,75,0,327, | ||
3489 | 3,76,0,327,3, | ||
3490 | 77,0,327,3,78, | ||
3491 | 0,327,3,79,0, | ||
3492 | 327,3,80,0,327, | ||
3493 | 3,81,0,327,3, | ||
3494 | 82,0,327,3,83, | ||
3495 | 0,327,3,84,0, | ||
3496 | 327,3,85,0,327, | ||
3497 | 3,86,0,327,3, | ||
3498 | 87,0,327,3,88, | ||
3499 | 0,327,3,89,0, | ||
3500 | 327,3,90,0,327, | ||
3501 | 3,95,0,327,3, | ||
3502 | 97,0,327,3,98, | ||
3503 | 0,327,3,99,0, | ||
3504 | 327,3,100,0,472, | ||
3505 | 12,1,24528,473,5, | ||
3506 | 63,3,109,0,327, | ||
3507 | 3,110,0,327,3, | ||
3508 | 111,0,327,3,112, | ||
3509 | 0,327,3,113,0, | ||
3510 | 327,3,114,0,327, | ||
3511 | 3,115,0,327,3, | ||
3512 | 116,0,327,3,117, | ||
3513 | 0,327,3,118,0, | ||
3514 | 327,3,119,0,327, | ||
3515 | 3,120,0,327,3, | ||
3516 | 121,0,327,3,122, | ||
3517 | 0,327,3,48,0, | ||
3518 | 327,3,49,0,327, | ||
3519 | 3,50,0,327,3, | ||
3520 | 51,0,327,3,52, | ||
3521 | 0,327,3,53,0, | ||
3522 | 327,3,54,0,327, | ||
3523 | 3,55,0,327,3, | ||
3524 | 56,0,327,3,57, | ||
3525 | 0,327,3,65,0, | ||
3526 | 327,3,66,0,327, | ||
3527 | 3,67,0,327,3, | ||
3528 | 68,0,327,3,69, | ||
3529 | 0,327,3,70,0, | ||
3530 | 327,3,71,0,327, | ||
3531 | 3,72,0,327,3, | ||
3532 | 73,0,327,3,74, | ||
3533 | 0,327,3,75,0, | ||
3534 | 327,3,76,0,327, | ||
3535 | 3,77,0,327,3, | ||
3536 | 78,0,327,3,79, | ||
3537 | 0,327,3,80,0, | ||
3538 | 327,3,81,0,327, | ||
3539 | 3,82,0,327,3, | ||
3540 | 83,0,327,3,84, | ||
3541 | 0,327,3,85,0, | ||
3542 | 327,3,86,0,327, | ||
3543 | 3,87,0,327,3, | ||
3544 | 88,0,327,3,89, | ||
3545 | 0,327,3,90,0, | ||
3546 | 327,3,95,0,327, | ||
3547 | 3,97,0,327,3, | ||
3548 | 98,0,327,3,99, | ||
3549 | 0,327,3,100,0, | ||
3550 | 327,3,101,0,327, | ||
3551 | 3,102,0,327,3, | ||
3552 | 103,0,327,3,104, | ||
3553 | 0,327,3,105,0, | ||
3554 | 327,3,106,0,327, | ||
3555 | 3,107,0,327,3, | ||
3556 | 108,0,327,474,11, | ||
3557 | 1,414,0,475,4, | ||
3558 | 38,67,0,79,0, | ||
3559 | 76,0,76,0,73, | ||
3560 | 0,83,0,73,0, | ||
3561 | 79,0,78,0,95, | ||
3562 | 0,69,0,78,0, | ||
3563 | 68,0,95,0,69, | ||
3564 | 0,86,0,69,0, | ||
3565 | 78,0,84,0,1, | ||
3566 | -1,3,101,0,327, | ||
3567 | 3,102,0,327,3, | ||
3568 | 103,0,327,3,104, | ||
3569 | 0,327,3,105,0, | ||
3570 | 327,3,106,0,327, | ||
3571 | 3,107,0,327,3, | ||
3572 | 108,0,327,476,11, | ||
3573 | 1,829,0,330,1, | ||
3574 | -1,3,111,0,327, | ||
3575 | 3,112,0,327,3, | ||
3576 | 113,0,327,3,114, | ||
3577 | 0,327,3,115,0, | ||
3578 | 327,3,116,0,327, | ||
3579 | 3,117,0,327,3, | ||
3580 | 118,0,327,3,119, | ||
3581 | 0,327,3,120,0, | ||
3582 | 327,3,121,0,327, | ||
3583 | 3,122,0,327,3, | ||
3584 | 48,0,327,3,49, | ||
3585 | 0,327,3,50,0, | ||
3586 | 327,3,51,0,327, | ||
3587 | 3,52,0,327,3, | ||
3588 | 53,0,327,3,54, | ||
3589 | 0,327,3,55,0, | ||
3590 | 327,3,56,0,327, | ||
3591 | 3,57,0,327,3, | ||
3592 | 65,0,327,3,66, | ||
3593 | 0,327,3,67,0, | ||
3594 | 327,3,68,0,327, | ||
3595 | 3,69,0,327,3, | ||
3596 | 70,0,327,3,71, | ||
3597 | 0,327,3,72,0, | ||
3598 | 327,3,73,0,327, | ||
3599 | 3,74,0,327,3, | ||
3600 | 75,0,327,3,76, | ||
3601 | 0,327,3,77,0, | ||
3602 | 327,3,78,0,327, | ||
3603 | 3,79,0,327,3, | ||
3604 | 80,0,327,3,81, | ||
3605 | 0,327,3,82,0, | ||
3606 | 327,3,83,0,327, | ||
3607 | 3,84,0,327,3, | ||
3608 | 85,0,327,3,86, | ||
3609 | 0,327,3,87,0, | ||
3610 | 327,3,88,0,327, | ||
3611 | 3,89,0,327,3, | ||
3612 | 90,0,327,3,95, | ||
3613 | 0,327,3,97,0, | ||
3614 | 327,3,98,0,327, | ||
3615 | 3,99,0,327,3, | ||
3616 | 100,0,327,3,101, | ||
3617 | 0,327,3,102,0, | ||
3618 | 327,3,103,0,327, | ||
3619 | 3,104,0,327,3, | ||
3620 | 105,0,327,3,106, | ||
3621 | 0,327,3,107,0, | ||
3622 | 327,3,108,0,327, | ||
3623 | 477,11,1,829,0, | ||
3624 | 330,1,-1,3,102, | ||
3625 | 0,327,3,103,0, | ||
3626 | 327,3,104,0,327, | ||
3627 | 3,105,0,327,3, | ||
3628 | 106,0,327,3,107, | ||
3629 | 0,327,3,108,0, | ||
3630 | 327,478,11,1,829, | ||
3631 | 0,330,1,-1,3, | ||
3632 | 97,0,327,3,98, | ||
3633 | 0,327,3,99,0, | ||
3634 | 327,3,100,0,327, | ||
3635 | 3,101,0,327,3, | ||
3636 | 102,0,327,3,103, | ||
3637 | 0,327,3,104,0, | ||
3638 | 327,3,105,0,327, | ||
3639 | 3,106,0,327,3, | ||
3640 | 107,0,327,3,108, | ||
3641 | 0,327,479,11,1, | ||
3642 | 401,0,480,4,30, | ||
3643 | 67,0,79,0,76, | ||
3644 | 0,76,0,73,0, | ||
3645 | 83,0,73,0,79, | ||
3646 | 0,78,0,95,0, | ||
3647 | 69,0,86,0,69, | ||
3648 | 0,78,0,84,0, | ||
3649 | 1,-1,3,111,0, | ||
3650 | 327,3,112,0,327, | ||
3651 | 3,113,0,327,3, | ||
3652 | 114,0,327,3,115, | ||
3653 | 0,327,3,116,0, | ||
3654 | 327,3,117,0,327, | ||
3655 | 3,118,0,327,3, | ||
3656 | 119,0,327,3,120, | ||
3657 | 0,327,3,121,0, | ||
3658 | 327,3,122,0,327, | ||
3659 | 3,48,0,327,3, | ||
3660 | 49,0,327,3,50, | ||
3661 | 0,327,3,51,0, | ||
3662 | 327,3,52,0,327, | ||
3663 | 3,53,0,327,3, | ||
3664 | 54,0,327,3,55, | ||
3665 | 0,327,3,56,0, | ||
3666 | 327,3,57,0,327, | ||
3667 | 3,65,0,327,3, | ||
3668 | 66,0,327,3,67, | ||
3669 | 0,327,3,68,0, | ||
3670 | 327,3,69,0,327, | ||
3671 | 3,70,0,327,3, | ||
3672 | 71,0,327,3,72, | ||
3673 | 0,327,3,73,0, | ||
3674 | 327,3,74,0,327, | ||
3675 | 3,75,0,327,3, | ||
3676 | 76,0,327,3,77, | ||
3677 | 0,327,3,78,0, | ||
3678 | 327,3,79,0,327, | ||
3679 | 3,80,0,327,3, | ||
3680 | 81,0,327,3,82, | ||
3681 | 0,327,3,83,0, | ||
3682 | 327,3,84,0,327, | ||
3683 | 3,85,0,327,3, | ||
3684 | 86,0,327,3,87, | ||
3685 | 0,327,3,88,0, | ||
3686 | 327,3,89,0,327, | ||
3687 | 3,90,0,327,3, | ||
3688 | 95,0,327,3,97, | ||
3689 | 0,327,3,98,0, | ||
3690 | 327,3,99,0,327, | ||
3691 | 3,100,0,327,3, | ||
3692 | 101,0,327,3,102, | ||
3693 | 0,327,3,103,0, | ||
3694 | 327,3,104,0,327, | ||
3695 | 3,105,0,327,3, | ||
3696 | 106,0,327,3,107, | ||
3697 | 0,327,3,108,0, | ||
3698 | 327,481,11,1,829, | ||
3699 | 0,330,1,-1,3, | ||
3700 | 112,0,327,3,113, | ||
3701 | 0,327,3,114,0, | ||
3702 | 327,3,115,0,327, | ||
3703 | 3,116,0,327,3, | ||
3704 | 117,0,327,3,118, | ||
3705 | 0,327,3,119,0, | ||
3706 | 327,3,120,0,327, | ||
3707 | 3,121,0,327,3, | ||
3708 | 122,0,327,3,48, | ||
3709 | 0,327,3,49,0, | ||
3710 | 327,3,50,0,327, | ||
3711 | 3,51,0,327,3, | ||
3712 | 52,0,327,3,53, | ||
3713 | 0,327,3,54,0, | ||
3714 | 327,3,55,0,327, | ||
3715 | 3,56,0,327,3, | ||
3716 | 57,0,327,3,65, | ||
3717 | 0,327,3,66,0, | ||
3718 | 327,3,67,0,327, | ||
3719 | 3,68,0,327,3, | ||
3720 | 69,0,327,3,70, | ||
3721 | 0,327,3,71,0, | ||
3722 | 327,3,72,0,327, | ||
3723 | 3,73,0,327,3, | ||
3724 | 74,0,327,3,75, | ||
3725 | 0,327,3,76,0, | ||
3726 | 327,3,77,0,327, | ||
3727 | 3,78,0,327,3, | ||
3728 | 79,0,327,3,80, | ||
3729 | 0,327,3,81,0, | ||
3730 | 327,3,82,0,327, | ||
3731 | 3,83,0,327,3, | ||
3732 | 84,0,327,3,85, | ||
3733 | 0,327,3,86,0, | ||
3734 | 327,3,87,0,327, | ||
3735 | 3,88,0,327,3, | ||
3736 | 89,0,327,3,90, | ||
3737 | 0,327,3,95,0, | ||
3738 | 327,3,97,0,327, | ||
3739 | 3,98,0,327,3, | ||
3740 | 99,0,327,3,100, | ||
3741 | 0,327,3,101,0, | ||
3742 | 327,3,102,0,327, | ||
3743 | 3,103,0,327,3, | ||
3744 | 104,0,327,3,105, | ||
3745 | 0,327,3,106,0, | ||
3746 | 327,3,107,0,327, | ||
3747 | 3,108,0,327,482, | ||
3748 | 11,1,829,0,330, | ||
3749 | 1,-1,3,106,0, | ||
3750 | 327,3,107,0,327, | ||
3751 | 3,108,0,327,483, | ||
3752 | 11,1,829,0,330, | ||
3753 | 1,-1,3,116,0, | ||
3754 | 327,3,117,0,327, | ||
3755 | 3,118,0,327,3, | ||
3756 | 119,0,327,3,120, | ||
3757 | 0,327,3,121,0, | ||
3758 | 327,3,122,0,327, | ||
3759 | 3,48,0,327,3, | ||
3760 | 49,0,327,3,50, | ||
3761 | 0,327,3,51,0, | ||
3762 | 327,3,52,0,327, | ||
3763 | 3,53,0,327,3, | ||
3764 | 54,0,327,3,55, | ||
3765 | 0,327,3,56,0, | ||
3766 | 327,3,57,0,327, | ||
3767 | 3,65,0,327,3, | ||
3768 | 66,0,327,3,67, | ||
3769 | 0,327,3,68,0, | ||
3770 | 327,3,69,0,327, | ||
3771 | 3,70,0,327,3, | ||
3772 | 71,0,327,3,72, | ||
3773 | 0,327,3,73,0, | ||
3774 | 327,3,74,0,327, | ||
3775 | 3,75,0,327,3, | ||
3776 | 76,0,327,3,77, | ||
3777 | 0,327,3,78,0, | ||
3778 | 327,3,79,0,327, | ||
3779 | 3,80,0,327,3, | ||
3780 | 81,0,327,3,82, | ||
3781 | 0,327,3,83,0, | ||
3782 | 327,3,84,0,327, | ||
3783 | 3,85,0,327,3, | ||
3784 | 86,0,327,3,87, | ||
3785 | 0,327,3,88,0, | ||
3786 | 327,3,89,0,327, | ||
3787 | 3,90,0,327,3, | ||
3788 | 95,0,327,3,97, | ||
3789 | 0,327,3,98,0, | ||
3790 | 327,3,99,0,327, | ||
3791 | 3,100,0,327,3, | ||
3792 | 101,0,327,3,102, | ||
3793 | 0,327,3,103,0, | ||
3794 | 327,3,104,0,327, | ||
3795 | 3,105,0,327,3, | ||
3796 | 106,0,327,3,107, | ||
3797 | 0,327,3,108,0, | ||
3798 | 327,484,11,1,829, | ||
3799 | 0,330,1,-1,3, | ||
3800 | 106,0,327,3,107, | ||
3801 | 0,327,3,108,0, | ||
3802 | 327,485,11,1,829, | ||
3803 | 0,330,1,-1,486, | ||
3804 | 11,1,829,0,330, | ||
3805 | 1,-1,487,11,1, | ||
3806 | 829,0,330,1,-1, | ||
3807 | 3,112,0,327,3, | ||
3808 | 113,0,327,3,114, | ||
3809 | 0,327,3,115,0, | ||
3810 | 327,3,116,0,327, | ||
3811 | 3,117,0,327,3, | ||
3812 | 118,0,327,3,119, | ||
3813 | 0,327,3,120,0, | ||
3814 | 327,3,121,0,327, | ||
3815 | 3,122,0,327,3, | ||
3816 | 48,0,327,3,49, | ||
3817 | 0,327,3,50,0, | ||
3818 | 327,3,51,0,327, | ||
3819 | 3,52,0,327,3, | ||
3820 | 53,0,327,3,54, | ||
3821 | 0,327,3,55,0, | ||
3822 | 327,3,56,0,327, | ||
3823 | 3,57,0,327,3, | ||
3824 | 65,0,327,3,66, | ||
3825 | 0,327,3,67,0, | ||
3826 | 327,3,68,0,327, | ||
3827 | 3,69,0,327,3, | ||
3828 | 70,0,327,3,71, | ||
3829 | 0,327,3,72,0, | ||
3830 | 327,3,73,0,327, | ||
3831 | 3,74,0,327,3, | ||
3832 | 75,0,327,3,76, | ||
3833 | 0,327,3,77,0, | ||
3834 | 327,3,78,0,327, | ||
3835 | 3,79,0,327,3, | ||
3836 | 80,0,327,3,81, | ||
3837 | 0,327,3,82,0, | ||
3838 | 327,3,83,0,327, | ||
3839 | 3,84,0,327,3, | ||
3840 | 85,0,327,3,86, | ||
3841 | 0,327,3,87,0, | ||
3842 | 327,3,88,0,327, | ||
3843 | 3,89,0,327,3, | ||
3844 | 90,0,327,3,95, | ||
3845 | 0,327,3,97,0, | ||
3846 | 327,3,98,0,327, | ||
3847 | 3,99,0,327,3, | ||
3848 | 100,0,327,3,101, | ||
3849 | 0,327,3,102,0, | ||
3850 | 327,3,103,0,327, | ||
3851 | 3,104,0,488,12, | ||
3852 | 1,25477,489,5,63, | ||
3853 | 3,109,0,327,3, | ||
3854 | 110,0,327,3,111, | ||
3855 | 0,327,3,112,0, | ||
3856 | 327,3,113,0,327, | ||
3857 | 3,114,0,327,3, | ||
3858 | 115,0,327,3,116, | ||
3859 | 0,327,3,117,0, | ||
3860 | 327,3,118,0,327, | ||
3861 | 3,119,0,327,3, | ||
3862 | 120,0,327,3,121, | ||
3863 | 0,327,3,122,0, | ||
3864 | 327,3,48,0,327, | ||
3865 | 3,49,0,327,3, | ||
3866 | 50,0,327,3,51, | ||
3867 | 0,327,3,52,0, | ||
3868 | 327,3,53,0,327, | ||
3869 | 3,54,0,327,3, | ||
3870 | 55,0,327,3,56, | ||
3871 | 0,327,3,57,0, | ||
3872 | 327,3,65,0,327, | ||
3873 | 3,66,0,327,3, | ||
3874 | 67,0,327,3,68, | ||
3875 | 0,327,3,69,0, | ||
3876 | 327,3,70,0,327, | ||
3877 | 3,71,0,327,3, | ||
3878 | 72,0,327,3,73, | ||
3879 | 0,327,3,74,0, | ||
3880 | 327,3,75,0,327, | ||
3881 | 3,76,0,327,3, | ||
3882 | 77,0,327,3,78, | ||
3883 | 0,327,3,79,0, | ||
3884 | 327,3,80,0,327, | ||
3885 | 3,81,0,327,3, | ||
3886 | 82,0,327,3,83, | ||
3887 | 0,327,3,84,0, | ||
3888 | 327,3,85,0,327, | ||
3889 | 3,86,0,327,3, | ||
3890 | 87,0,327,3,88, | ||
3891 | 0,327,3,89,0, | ||
3892 | 327,3,90,0,327, | ||
3893 | 3,95,0,327,3, | ||
3894 | 97,0,490,12,1, | ||
3895 | 25520,491,5,63,3, | ||
3896 | 109,0,327,3,110, | ||
3897 | 0,492,12,1,25549, | ||
3898 | 493,5,63,3,109, | ||
3899 | 0,327,3,110,0, | ||
3900 | 327,3,111,0,327, | ||
3901 | 3,112,0,327,3, | ||
3902 | 113,0,327,3,114, | ||
3903 | 0,327,3,115,0, | ||
3904 | 327,3,116,0,327, | ||
3905 | 3,117,0,327,3, | ||
3906 | 118,0,327,3,119, | ||
3907 | 0,327,3,120,0, | ||
3908 | 327,3,121,0,327, | ||
3909 | 3,122,0,327,3, | ||
3910 | 48,0,327,3,49, | ||
3911 | 0,327,3,50,0, | ||
3912 | 327,3,51,0,327, | ||
3913 | 3,52,0,327,3, | ||
3914 | 53,0,327,3,54, | ||
3915 | 0,327,3,55,0, | ||
3916 | 327,3,56,0,327, | ||
3917 | 3,57,0,327,3, | ||
3918 | 65,0,327,3,66, | ||
3919 | 0,327,3,67,0, | ||
3920 | 327,3,68,0,327, | ||
3921 | 3,69,0,327,3, | ||
3922 | 70,0,327,3,71, | ||
3923 | 0,327,3,72,0, | ||
3924 | 327,3,73,0,327, | ||
3925 | 3,74,0,327,3, | ||
3926 | 75,0,327,3,76, | ||
3927 | 0,327,3,77,0, | ||
3928 | 327,3,78,0,327, | ||
3929 | 3,79,0,327,3, | ||
3930 | 80,0,327,3,81, | ||
3931 | 0,327,3,82,0, | ||
3932 | 327,3,83,0,327, | ||
3933 | 3,84,0,327,3, | ||
3934 | 85,0,327,3,86, | ||
3935 | 0,327,3,87,0, | ||
3936 | 327,3,88,0,327, | ||
3937 | 3,89,0,327,3, | ||
3938 | 90,0,327,3,95, | ||
3939 | 0,327,3,97,0, | ||
3940 | 327,3,98,0,327, | ||
3941 | 3,99,0,327,3, | ||
3942 | 100,0,327,3,101, | ||
3943 | 0,327,3,102,0, | ||
3944 | 327,3,103,0,494, | ||
3945 | 12,1,25598,495,5, | ||
3946 | 63,3,109,0,327, | ||
3947 | 3,110,0,327,3, | ||
3948 | 111,0,327,3,112, | ||
3949 | 0,327,3,113,0, | ||
3950 | 327,3,114,0,327, | ||
3951 | 3,115,0,327,3, | ||
3952 | 116,0,327,3,117, | ||
3953 | 0,327,3,118,0, | ||
3954 | 327,3,119,0,327, | ||
3955 | 3,120,0,327,3, | ||
3956 | 121,0,327,3,122, | ||
3957 | 0,327,3,48,0, | ||
3958 | 327,3,49,0,327, | ||
3959 | 3,50,0,327,3, | ||
3960 | 51,0,327,3,52, | ||
3961 | 0,327,3,53,0, | ||
3962 | 327,3,54,0,327, | ||
3963 | 3,55,0,327,3, | ||
3964 | 56,0,327,3,57, | ||
3965 | 0,327,3,65,0, | ||
3966 | 327,3,66,0,327, | ||
3967 | 3,67,0,327,3, | ||
3968 | 68,0,327,3,69, | ||
3969 | 0,327,3,70,0, | ||
3970 | 327,3,71,0,327, | ||
3971 | 3,72,0,327,3, | ||
3972 | 73,0,327,3,74, | ||
3973 | 0,327,3,75,0, | ||
3974 | 327,3,76,0,327, | ||
3975 | 3,77,0,327,3, | ||
3976 | 78,0,327,3,79, | ||
3977 | 0,327,3,80,0, | ||
3978 | 327,3,81,0,327, | ||
3979 | 3,82,0,327,3, | ||
3980 | 83,0,327,3,84, | ||
3981 | 0,327,3,85,0, | ||
3982 | 327,3,86,0,327, | ||
3983 | 3,87,0,327,3, | ||
3984 | 88,0,327,3,89, | ||
3985 | 0,327,3,90,0, | ||
3986 | 327,3,95,0,327, | ||
3987 | 3,97,0,327,3, | ||
3988 | 98,0,327,3,99, | ||
3989 | 0,327,3,100,0, | ||
3990 | 327,3,101,0,496, | ||
3991 | 12,1,25645,497,5, | ||
3992 | 63,3,109,0,327, | ||
3993 | 3,110,0,327,3, | ||
3994 | 111,0,327,3,112, | ||
3995 | 0,327,3,113,0, | ||
3996 | 327,3,114,0,327, | ||
3997 | 3,115,0,327,3, | ||
3998 | 116,0,327,3,117, | ||
3999 | 0,327,3,118,0, | ||
4000 | 327,3,119,0,327, | ||
4001 | 3,120,0,327,3, | ||
4002 | 121,0,327,3,122, | ||
4003 | 0,327,3,48,0, | ||
4004 | 327,3,49,0,327, | ||
4005 | 3,50,0,327,3, | ||
4006 | 51,0,327,3,52, | ||
4007 | 0,327,3,53,0, | ||
4008 | 327,3,54,0,327, | ||
4009 | 3,55,0,327,3, | ||
4010 | 56,0,327,3,57, | ||
4011 | 0,327,3,65,0, | ||
4012 | 327,3,66,0,327, | ||
4013 | 3,67,0,327,3, | ||
4014 | 68,0,327,3,69, | ||
4015 | 0,327,3,70,0, | ||
4016 | 327,3,71,0,327, | ||
4017 | 3,72,0,327,3, | ||
4018 | 73,0,327,3,74, | ||
4019 | 0,327,3,75,0, | ||
4020 | 327,3,76,0,327, | ||
4021 | 3,77,0,327,3, | ||
4022 | 78,0,327,3,79, | ||
4023 | 0,327,3,80,0, | ||
4024 | 327,3,81,0,327, | ||
4025 | 3,82,0,327,3, | ||
4026 | 83,0,327,3,84, | ||
4027 | 0,327,3,85,0, | ||
4028 | 327,3,86,0,327, | ||
4029 | 3,87,0,327,3, | ||
4030 | 88,0,327,3,89, | ||
4031 | 0,327,3,90,0, | ||
4032 | 327,3,95,0,327, | ||
4033 | 3,97,0,327,3, | ||
4034 | 98,0,327,3,99, | ||
4035 | 0,327,3,100,0, | ||
4036 | 498,12,1,25691,499, | ||
4037 | 5,63,3,109,0, | ||
4038 | 327,3,110,0,327, | ||
4039 | 3,111,0,327,3, | ||
4040 | 112,0,327,3,113, | ||
4041 | 0,327,3,114,0, | ||
4042 | 327,3,115,0,327, | ||
4043 | 3,116,0,327,3, | ||
4044 | 117,0,327,3,118, | ||
4045 | 0,327,3,119,0, | ||
4046 | 327,3,120,0,327, | ||
4047 | 3,121,0,327,3, | ||
4048 | 122,0,327,3,48, | ||
4049 | 0,327,3,49,0, | ||
4050 | 327,3,50,0,327, | ||
4051 | 3,51,0,327,3, | ||
4052 | 52,0,327,3,53, | ||
4053 | 0,327,3,54,0, | ||
4054 | 327,3,55,0,327, | ||
4055 | 3,56,0,327,3, | ||
4056 | 57,0,327,3,65, | ||
4057 | 0,327,3,66,0, | ||
4058 | 327,3,67,0,327, | ||
4059 | 3,68,0,327,3, | ||
4060 | 69,0,327,3,70, | ||
4061 | 0,327,3,71,0, | ||
4062 | 327,3,72,0,327, | ||
4063 | 3,73,0,327,3, | ||
4064 | 74,0,327,3,75, | ||
4065 | 0,327,3,76,0, | ||
4066 | 327,3,77,0,327, | ||
4067 | 3,78,0,327,3, | ||
4068 | 79,0,327,3,80, | ||
4069 | 0,327,3,81,0, | ||
4070 | 327,3,82,0,327, | ||
4071 | 3,83,0,327,3, | ||
4072 | 84,0,327,3,85, | ||
4073 | 0,327,3,86,0, | ||
4074 | 327,3,87,0,327, | ||
4075 | 3,88,0,327,3, | ||
4076 | 89,0,327,3,90, | ||
4077 | 0,327,3,95,0, | ||
4078 | 327,3,97,0,327, | ||
4079 | 3,98,0,327,3, | ||
4080 | 99,0,327,3,100, | ||
4081 | 0,327,3,101,0, | ||
4082 | 327,3,102,0,327, | ||
4083 | 3,103,0,327,3, | ||
4084 | 104,0,327,3,105, | ||
4085 | 0,327,3,106,0, | ||
4086 | 327,3,107,0,327, | ||
4087 | 3,108,0,327,500, | ||
4088 | 11,1,390,0,501, | ||
4089 | 4,26,67,0,72, | ||
4090 | 0,65,0,78,0, | ||
4091 | 71,0,69,0,68, | ||
4092 | 0,95,0,69,0, | ||
4093 | 86,0,69,0,78, | ||
4094 | 0,84,0,1,-1, | ||
4095 | 3,101,0,327,3, | ||
4096 | 102,0,327,3,103, | ||
4097 | 0,327,3,104,0, | ||
4098 | 327,3,105,0,327, | ||
4099 | 3,106,0,327,3, | ||
4100 | 107,0,327,3,108, | ||
4101 | 0,327,502,11,1, | ||
4102 | 829,0,330,1,-1, | ||
4103 | 3,102,0,327,3, | ||
4104 | 103,0,327,3,104, | ||
4105 | 0,327,3,105,0, | ||
4106 | 327,3,106,0,327, | ||
4107 | 3,107,0,327,3, | ||
4108 | 108,0,327,503,11, | ||
4109 | 1,829,0,330,1, | ||
4110 | -1,3,104,0,327, | ||
4111 | 3,105,0,327,3, | ||
4112 | 106,0,327,3,107, | ||
4113 | 0,327,3,108,0, | ||
4114 | 327,504,11,1,829, | ||
4115 | 0,330,1,-1,3, | ||
4116 | 111,0,327,3,112, | ||
4117 | 0,327,3,113,0, | ||
4118 | 327,3,114,0,327, | ||
4119 | 3,115,0,327,3, | ||
4120 | 116,0,327,3,117, | ||
4121 | 0,327,3,118,0, | ||
4122 | 327,3,119,0,327, | ||
4123 | 3,120,0,327,3, | ||
4124 | 121,0,327,3,122, | ||
4125 | 0,327,3,48,0, | ||
4126 | 327,3,49,0,327, | ||
4127 | 3,50,0,327,3, | ||
4128 | 51,0,327,3,52, | ||
4129 | 0,327,3,53,0, | ||
4130 | 327,3,54,0,327, | ||
4131 | 3,55,0,327,3, | ||
4132 | 56,0,327,3,57, | ||
4133 | 0,327,3,65,0, | ||
4134 | 327,3,66,0,327, | ||
4135 | 3,67,0,327,3, | ||
4136 | 68,0,327,3,69, | ||
4137 | 0,327,3,70,0, | ||
4138 | 327,3,71,0,327, | ||
4139 | 3,72,0,327,3, | ||
4140 | 73,0,327,3,74, | ||
4141 | 0,327,3,75,0, | ||
4142 | 327,3,76,0,327, | ||
4143 | 3,77,0,327,3, | ||
4144 | 78,0,327,3,79, | ||
4145 | 0,327,3,80,0, | ||
4146 | 327,3,81,0,327, | ||
4147 | 3,82,0,327,3, | ||
4148 | 83,0,327,3,84, | ||
4149 | 0,327,3,85,0, | ||
4150 | 327,3,86,0,327, | ||
4151 | 3,87,0,327,3, | ||
4152 | 88,0,327,3,89, | ||
4153 | 0,327,3,90,0, | ||
4154 | 327,3,95,0,327, | ||
4155 | 3,97,0,327,3, | ||
4156 | 98,0,327,3,99, | ||
4157 | 0,327,3,100,0, | ||
4158 | 327,3,101,0,327, | ||
4159 | 3,102,0,327,3, | ||
4160 | 103,0,327,3,104, | ||
4161 | 0,327,3,105,0, | ||
4162 | 327,3,106,0,327, | ||
4163 | 3,107,0,327,3, | ||
4164 | 108,0,327,505,11, | ||
4165 | 1,829,0,330,1, | ||
4166 | -1,3,98,0,327, | ||
4167 | 3,99,0,327,3, | ||
4168 | 100,0,327,3,101, | ||
4169 | 0,327,3,102,0, | ||
4170 | 327,3,103,0,327, | ||
4171 | 3,104,0,327,3, | ||
4172 | 105,0,327,3,106, | ||
4173 | 0,327,3,107,0, | ||
4174 | 327,3,108,0,327, | ||
4175 | 506,11,1,829,0, | ||
4176 | 330,1,-1,3,105, | ||
4177 | 0,327,3,106,0, | ||
4178 | 327,3,107,0,327, | ||
4179 | 3,108,0,327,507, | ||
4180 | 11,1,829,0,330, | ||
4181 | 1,-1,3,100,0, | ||
4182 | 508,12,1,26268,509, | ||
4183 | 5,63,3,109,0, | ||
4184 | 327,3,110,0,327, | ||
4185 | 3,111,0,510,12, | ||
4186 | 1,26298,511,5,63, | ||
4187 | 3,109,0,327,3, | ||
4188 | 110,0,327,3,111, | ||
4189 | 0,327,3,112,0, | ||
4190 | 327,3,113,0,327, | ||
4191 | 3,114,0,327,3, | ||
4192 | 115,0,327,3,116, | ||
4193 | 0,327,3,117,0, | ||
4194 | 327,3,118,0,327, | ||
4195 | 3,119,0,327,3, | ||
4196 | 120,0,327,3,121, | ||
4197 | 0,327,3,122,0, | ||
4198 | 327,3,48,0,327, | ||
4199 | 3,49,0,327,3, | ||
4200 | 50,0,327,3,51, | ||
4201 | 0,327,3,52,0, | ||
4202 | 327,3,53,0,327, | ||
4203 | 3,54,0,327,3, | ||
4204 | 55,0,327,3,56, | ||
4205 | 0,327,3,57,0, | ||
4206 | 327,3,65,0,327, | ||
4207 | 3,66,0,327,3, | ||
4208 | 67,0,327,3,68, | ||
4209 | 0,327,3,69,0, | ||
4210 | 327,3,70,0,327, | ||
4211 | 3,71,0,327,3, | ||
4212 | 72,0,327,3,73, | ||
4213 | 0,327,3,74,0, | ||
4214 | 327,3,75,0,327, | ||
4215 | 3,76,0,327,3, | ||
4216 | 77,0,327,3,78, | ||
4217 | 0,327,3,79,0, | ||
4218 | 327,3,80,0,327, | ||
4219 | 3,81,0,327,3, | ||
4220 | 82,0,327,3,83, | ||
4221 | 0,327,3,84,0, | ||
4222 | 327,3,85,0,327, | ||
4223 | 3,86,0,327,3, | ||
4224 | 87,0,327,3,88, | ||
4225 | 0,327,3,89,0, | ||
4226 | 327,3,90,0,327, | ||
4227 | 3,95,0,327,3, | ||
4228 | 97,0,327,3,98, | ||
4229 | 0,327,3,99,0, | ||
4230 | 327,3,100,0,327, | ||
4231 | 3,101,0,327,3, | ||
4232 | 102,0,327,3,103, | ||
4233 | 0,327,3,104,0, | ||
4234 | 327,3,105,0,327, | ||
4235 | 3,106,0,327,3, | ||
4236 | 107,0,327,3,108, | ||
4237 | 0,327,512,11,1, | ||
4238 | 223,0,513,4,4, | ||
4239 | 68,0,79,0,1, | ||
4240 | -1,3,112,0,327, | ||
4241 | 3,113,0,327,3, | ||
4242 | 114,0,327,3,115, | ||
4243 | 0,327,3,116,0, | ||
4244 | 327,3,117,0,327, | ||
4245 | 3,118,0,327,3, | ||
4246 | 119,0,327,3,120, | ||
4247 | 0,327,3,121,0, | ||
4248 | 327,3,122,0,327, | ||
4249 | 3,48,0,327,3, | ||
4250 | 49,0,327,3,50, | ||
4251 | 0,327,3,51,0, | ||
4252 | 327,3,52,0,327, | ||
4253 | 3,53,0,327,3, | ||
4254 | 54,0,327,3,55, | ||
4255 | 0,327,3,56,0, | ||
4256 | 327,3,57,0,327, | ||
4257 | 3,65,0,327,3, | ||
4258 | 66,0,327,3,67, | ||
4259 | 0,327,3,68,0, | ||
4260 | 327,3,69,0,327, | ||
4261 | 3,70,0,327,3, | ||
4262 | 71,0,327,3,72, | ||
4263 | 0,327,3,73,0, | ||
4264 | 327,3,74,0,327, | ||
4265 | 3,75,0,327,3, | ||
4266 | 76,0,327,3,77, | ||
4267 | 0,327,3,78,0, | ||
4268 | 327,3,79,0,327, | ||
4269 | 3,80,0,327,3, | ||
4270 | 81,0,327,3,82, | ||
4271 | 0,327,3,83,0, | ||
4272 | 327,3,84,0,327, | ||
4273 | 3,85,0,327,3, | ||
4274 | 86,0,327,3,87, | ||
4275 | 0,327,3,88,0, | ||
4276 | 327,3,89,0,327, | ||
4277 | 3,90,0,327,3, | ||
4278 | 95,0,327,3,97, | ||
4279 | 0,514,12,1,26431, | ||
4280 | 515,5,63,3,109, | ||
4281 | 0,327,3,110,0, | ||
4282 | 327,3,111,0,327, | ||
4283 | 3,112,0,327,3, | ||
4284 | 113,0,327,3,114, | ||
4285 | 0,327,3,115,0, | ||
4286 | 327,3,116,0,516, | ||
4287 | 12,1,26466,517,5, | ||
4288 | 63,3,109,0,327, | ||
4289 | 3,110,0,327,3, | ||
4290 | 111,0,327,3,112, | ||
4291 | 0,327,3,113,0, | ||
4292 | 327,3,114,0,327, | ||
4293 | 3,115,0,327,3, | ||
4294 | 116,0,327,3,117, | ||
4295 | 0,327,3,118,0, | ||
4296 | 327,3,119,0,327, | ||
4297 | 3,120,0,327,3, | ||
4298 | 121,0,327,3,122, | ||
4299 | 0,327,3,48,0, | ||
4300 | 327,3,49,0,327, | ||
4301 | 3,50,0,327,3, | ||
4302 | 51,0,327,3,52, | ||
4303 | 0,327,3,53,0, | ||
4304 | 327,3,54,0,327, | ||
4305 | 3,55,0,327,3, | ||
4306 | 56,0,327,3,57, | ||
4307 | 0,327,3,65,0, | ||
4308 | 327,3,66,0,327, | ||
4309 | 3,67,0,327,3, | ||
4310 | 68,0,327,3,69, | ||
4311 | 0,327,3,70,0, | ||
4312 | 327,3,71,0,327, | ||
4313 | 3,72,0,327,3, | ||
4314 | 73,0,327,3,74, | ||
4315 | 0,327,3,75,0, | ||
4316 | 327,3,76,0,327, | ||
4317 | 3,77,0,327,3, | ||
4318 | 78,0,327,3,79, | ||
4319 | 0,327,3,80,0, | ||
4320 | 327,3,81,0,327, | ||
4321 | 3,82,0,327,3, | ||
4322 | 83,0,327,3,84, | ||
4323 | 0,327,3,85,0, | ||
4324 | 327,3,86,0,327, | ||
4325 | 3,87,0,327,3, | ||
4326 | 88,0,327,3,89, | ||
4327 | 0,327,3,90,0, | ||
4328 | 327,3,95,0,327, | ||
4329 | 3,97,0,518,12, | ||
4330 | 1,26509,519,5,63, | ||
4331 | 3,109,0,327,3, | ||
4332 | 110,0,327,3,111, | ||
4333 | 0,327,3,112,0, | ||
4334 | 327,3,113,0,327, | ||
4335 | 3,114,0,327,3, | ||
4336 | 115,0,520,12,1, | ||
4337 | 26543,521,5,63,3, | ||
4338 | 109,0,327,3,110, | ||
4339 | 0,327,3,111,0, | ||
4340 | 327,3,112,0,327, | ||
4341 | 3,113,0,327,3, | ||
4342 | 114,0,327,3,115, | ||
4343 | 0,327,3,116,0, | ||
4344 | 327,3,117,0,327, | ||
4345 | 3,118,0,327,3, | ||
4346 | 119,0,327,3,120, | ||
4347 | 0,327,3,121,0, | ||
4348 | 327,3,122,0,327, | ||
4349 | 3,48,0,327,3, | ||
4350 | 49,0,327,3,50, | ||
4351 | 0,327,3,51,0, | ||
4352 | 327,3,52,0,327, | ||
4353 | 3,53,0,327,3, | ||
4354 | 54,0,327,3,55, | ||
4355 | 0,327,3,56,0, | ||
4356 | 327,3,57,0,327, | ||
4357 | 3,65,0,327,3, | ||
4358 | 66,0,327,3,67, | ||
4359 | 0,327,3,68,0, | ||
4360 | 327,3,69,0,327, | ||
4361 | 3,70,0,327,3, | ||
4362 | 71,0,327,3,72, | ||
4363 | 0,327,3,73,0, | ||
4364 | 327,3,74,0,327, | ||
4365 | 3,75,0,327,3, | ||
4366 | 76,0,327,3,77, | ||
4367 | 0,327,3,78,0, | ||
4368 | 327,3,79,0,327, | ||
4369 | 3,80,0,327,3, | ||
4370 | 81,0,327,3,82, | ||
4371 | 0,327,3,83,0, | ||
4372 | 327,3,84,0,327, | ||
4373 | 3,85,0,327,3, | ||
4374 | 86,0,327,3,87, | ||
4375 | 0,327,3,88,0, | ||
4376 | 327,3,89,0,327, | ||
4377 | 3,90,0,327,3, | ||
4378 | 95,0,327,3,97, | ||
4379 | 0,327,3,98,0, | ||
4380 | 327,3,99,0,327, | ||
4381 | 3,100,0,327,3, | ||
4382 | 101,0,522,12,1, | ||
4383 | 26590,523,5,63,3, | ||
4384 | 109,0,327,3,110, | ||
4385 | 0,327,3,111,0, | ||
4386 | 327,3,112,0,327, | ||
4387 | 3,113,0,327,3, | ||
4388 | 114,0,524,12,1, | ||
4389 | 26623,525,5,63,3, | ||
4390 | 109,0,327,3,110, | ||
4391 | 0,327,3,111,0, | ||
4392 | 327,3,112,0,327, | ||
4393 | 3,113,0,327,3, | ||
4394 | 114,0,327,3,115, | ||
4395 | 0,327,3,116,0, | ||
4396 | 327,3,117,0,327, | ||
4397 | 3,118,0,526,12, | ||
4398 | 1,26660,527,5,63, | ||
4399 | 3,109,0,327,3, | ||
4400 | 110,0,327,3,111, | ||
4401 | 0,327,3,112,0, | ||
4402 | 327,3,113,0,327, | ||
4403 | 3,114,0,327,3, | ||
4404 | 115,0,327,3,116, | ||
4405 | 0,327,3,117,0, | ||
4406 | 327,3,118,0,327, | ||
4407 | 3,119,0,327,3, | ||
4408 | 120,0,327,3,121, | ||
4409 | 0,327,3,122,0, | ||
4410 | 327,3,48,0,327, | ||
4411 | 3,49,0,327,3, | ||
4412 | 50,0,327,3,51, | ||
4413 | 0,327,3,52,0, | ||
4414 | 327,3,53,0,327, | ||
4415 | 3,54,0,327,3, | ||
4416 | 55,0,327,3,56, | ||
4417 | 0,327,3,57,0, | ||
4418 | 327,3,65,0,327, | ||
4419 | 3,66,0,327,3, | ||
4420 | 67,0,327,3,68, | ||
4421 | 0,327,3,69,0, | ||
4422 | 327,3,70,0,327, | ||
4423 | 3,71,0,327,3, | ||
4424 | 72,0,327,3,73, | ||
4425 | 0,327,3,74,0, | ||
4426 | 327,3,75,0,327, | ||
4427 | 3,76,0,327,3, | ||
4428 | 77,0,327,3,78, | ||
4429 | 0,327,3,79,0, | ||
4430 | 327,3,80,0,327, | ||
4431 | 3,81,0,327,3, | ||
4432 | 82,0,327,3,83, | ||
4433 | 0,327,3,84,0, | ||
4434 | 327,3,85,0,327, | ||
4435 | 3,86,0,327,3, | ||
4436 | 87,0,327,3,88, | ||
4437 | 0,327,3,89,0, | ||
4438 | 327,3,90,0,327, | ||
4439 | 3,95,0,327,3, | ||
4440 | 97,0,327,3,98, | ||
4441 | 0,327,3,99,0, | ||
4442 | 327,3,100,0,327, | ||
4443 | 3,101,0,528,12, | ||
4444 | 1,26707,529,5,63, | ||
4445 | 3,109,0,327,3, | ||
4446 | 110,0,327,3,111, | ||
4447 | 0,327,3,112,0, | ||
4448 | 327,3,113,0,327, | ||
4449 | 3,114,0,530,12, | ||
4450 | 1,26740,531,5,63, | ||
4451 | 3,109,0,327,3, | ||
4452 | 110,0,327,3,111, | ||
4453 | 0,327,3,112,0, | ||
4454 | 327,3,113,0,327, | ||
4455 | 3,114,0,327,3, | ||
4456 | 115,0,327,3,116, | ||
4457 | 0,327,3,117,0, | ||
4458 | 327,3,118,0,327, | ||
4459 | 3,119,0,327,3, | ||
4460 | 120,0,327,3,121, | ||
4461 | 0,327,3,122,0, | ||
4462 | 327,3,48,0,327, | ||
4463 | 3,49,0,327,3, | ||
4464 | 50,0,327,3,51, | ||
4465 | 0,327,3,52,0, | ||
4466 | 327,3,53,0,327, | ||
4467 | 3,54,0,327,3, | ||
4468 | 55,0,327,3,56, | ||
4469 | 0,327,3,57,0, | ||
4470 | 327,3,65,0,327, | ||
4471 | 3,66,0,327,3, | ||
4472 | 67,0,327,3,68, | ||
4473 | 0,327,3,69,0, | ||
4474 | 327,3,70,0,327, | ||
4475 | 3,71,0,327,3, | ||
4476 | 72,0,327,3,73, | ||
4477 | 0,327,3,74,0, | ||
4478 | 327,3,75,0,327, | ||
4479 | 3,76,0,327,3, | ||
4480 | 77,0,327,3,78, | ||
4481 | 0,327,3,79,0, | ||
4482 | 327,3,80,0,327, | ||
4483 | 3,81,0,327,3, | ||
4484 | 82,0,327,3,83, | ||
4485 | 0,327,3,84,0, | ||
4486 | 327,3,85,0,327, | ||
4487 | 3,86,0,327,3, | ||
4488 | 87,0,327,3,88, | ||
4489 | 0,327,3,89,0, | ||
4490 | 327,3,90,0,327, | ||
4491 | 3,95,0,327,3, | ||
4492 | 97,0,327,3,98, | ||
4493 | 0,327,3,99,0, | ||
4494 | 327,3,100,0,327, | ||
4495 | 3,101,0,327,3, | ||
4496 | 102,0,327,3,103, | ||
4497 | 0,327,3,104,0, | ||
4498 | 327,3,105,0,327, | ||
4499 | 3,106,0,327,3, | ||
4500 | 107,0,327,3,108, | ||
4501 | 0,327,532,11,1, | ||
4502 | 461,0,533,4,32, | ||
4503 | 68,0,65,0,84, | ||
4504 | 0,65,0,83,0, | ||
4505 | 69,0,82,0,86, | ||
4506 | 0,69,0,82,0, | ||
4507 | 95,0,69,0,86, | ||
4508 | 0,69,0,78,0, | ||
4509 | 84,0,1,-1,3, | ||
4510 | 115,0,327,3,116, | ||
4511 | 0,327,3,117,0, | ||
4512 | 327,3,118,0,327, | ||
4513 | 3,119,0,327,3, | ||
4514 | 120,0,327,3,121, | ||
4515 | 0,327,3,122,0, | ||
4516 | 327,3,48,0,327, | ||
4517 | 3,49,0,327,3, | ||
4518 | 50,0,327,3,51, | ||
4519 | 0,327,3,52,0, | ||
4520 | 327,3,53,0,327, | ||
4521 | 3,54,0,327,3, | ||
4522 | 55,0,327,3,56, | ||
4523 | 0,327,3,57,0, | ||
4524 | 327,3,65,0,327, | ||
4525 | 3,66,0,327,3, | ||
4526 | 67,0,327,3,68, | ||
4527 | 0,327,3,69,0, | ||
4528 | 327,3,70,0,327, | ||
4529 | 3,71,0,327,3, | ||
4530 | 72,0,327,3,73, | ||
4531 | 0,327,3,74,0, | ||
4532 | 327,3,75,0,327, | ||
4533 | 3,76,0,327,3, | ||
4534 | 77,0,327,3,78, | ||
4535 | 0,327,3,79,0, | ||
4536 | 327,3,80,0,327, | ||
4537 | 3,81,0,327,3, | ||
4538 | 82,0,327,3,83, | ||
4539 | 0,327,3,84,0, | ||
4540 | 327,3,85,0,327, | ||
4541 | 3,86,0,327,3, | ||
4542 | 87,0,327,3,88, | ||
4543 | 0,327,3,89,0, | ||
4544 | 327,3,90,0,327, | ||
4545 | 3,95,0,327,3, | ||
4546 | 97,0,327,3,98, | ||
4547 | 0,327,3,99,0, | ||
4548 | 327,3,100,0,327, | ||
4549 | 3,101,0,327,3, | ||
4550 | 102,0,327,3,103, | ||
4551 | 0,327,3,104,0, | ||
4552 | 327,3,105,0,327, | ||
4553 | 3,106,0,327,3, | ||
4554 | 107,0,327,3,108, | ||
4555 | 0,327,534,11,1, | ||
4556 | 829,0,330,1,-1, | ||
4557 | 3,102,0,327,3, | ||
4558 | 103,0,327,3,104, | ||
4559 | 0,327,3,105,0, | ||
4560 | 327,3,106,0,327, | ||
4561 | 3,107,0,327,3, | ||
4562 | 108,0,327,535,11, | ||
4563 | 1,829,0,330,1, | ||
4564 | -1,3,119,0,327, | ||
4565 | 3,120,0,327,3, | ||
4566 | 121,0,327,3,122, | ||
4567 | 0,327,3,48,0, | ||
4568 | 327,3,49,0,327, | ||
4569 | 3,50,0,327,3, | ||
4570 | 51,0,327,3,52, | ||
4571 | 0,327,3,53,0, | ||
4572 | 327,3,54,0,327, | ||
4573 | 3,55,0,327,3, | ||
4574 | 56,0,327,3,57, | ||
4575 | 0,327,3,65,0, | ||
4576 | 327,3,66,0,327, | ||
4577 | 3,67,0,327,3, | ||
4578 | 68,0,327,3,69, | ||
4579 | 0,327,3,70,0, | ||
4580 | 327,3,71,0,327, | ||
4581 | 3,72,0,327,3, | ||
4582 | 73,0,327,3,74, | ||
4583 | 0,327,3,75,0, | ||
4584 | 327,3,76,0,327, | ||
4585 | 3,77,0,327,3, | ||
4586 | 78,0,327,3,79, | ||
4587 | 0,327,3,80,0, | ||
4588 | 327,3,81,0,327, | ||
4589 | 3,82,0,327,3, | ||
4590 | 83,0,327,3,84, | ||
4591 | 0,327,3,85,0, | ||
4592 | 327,3,86,0,327, | ||
4593 | 3,87,0,327,3, | ||
4594 | 88,0,327,3,89, | ||
4595 | 0,327,3,90,0, | ||
4596 | 327,3,95,0,327, | ||
4597 | 3,97,0,327,3, | ||
4598 | 98,0,327,3,99, | ||
4599 | 0,327,3,100,0, | ||
4600 | 327,3,101,0,327, | ||
4601 | 3,102,0,327,3, | ||
4602 | 103,0,327,3,104, | ||
4603 | 0,327,3,105,0, | ||
4604 | 327,3,106,0,327, | ||
4605 | 3,107,0,327,3, | ||
4606 | 108,0,327,536,11, | ||
4607 | 1,829,0,330,1, | ||
4608 | -1,3,115,0,327, | ||
4609 | 3,116,0,327,3, | ||
4610 | 117,0,327,3,118, | ||
4611 | 0,327,3,119,0, | ||
4612 | 327,3,120,0,327, | ||
4613 | 3,121,0,327,3, | ||
4614 | 122,0,327,3,48, | ||
4615 | 0,327,3,49,0, | ||
4616 | 327,3,50,0,327, | ||
4617 | 3,51,0,327,3, | ||
4618 | 52,0,327,3,53, | ||
4619 | 0,327,3,54,0, | ||
4620 | 327,3,55,0,327, | ||
4621 | 3,56,0,327,3, | ||
4622 | 57,0,327,3,65, | ||
4623 | 0,327,3,66,0, | ||
4624 | 327,3,67,0,327, | ||
4625 | 3,68,0,327,3, | ||
4626 | 69,0,327,3,70, | ||
4627 | 0,327,3,71,0, | ||
4628 | 327,3,72,0,327, | ||
4629 | 3,73,0,327,3, | ||
4630 | 74,0,327,3,75, | ||
4631 | 0,327,3,76,0, | ||
4632 | 327,3,77,0,327, | ||
4633 | 3,78,0,327,3, | ||
4634 | 79,0,327,3,80, | ||
4635 | 0,327,3,81,0, | ||
4636 | 327,3,82,0,327, | ||
4637 | 3,83,0,327,3, | ||
4638 | 84,0,327,3,85, | ||
4639 | 0,327,3,86,0, | ||
4640 | 327,3,87,0,327, | ||
4641 | 3,88,0,327,3, | ||
4642 | 89,0,327,3,90, | ||
4643 | 0,327,3,95,0, | ||
4644 | 327,3,97,0,327, | ||
4645 | 3,98,0,327,3, | ||
4646 | 99,0,327,3,100, | ||
4647 | 0,327,3,101,0, | ||
4648 | 327,3,102,0,327, | ||
4649 | 3,103,0,327,3, | ||
4650 | 104,0,327,3,105, | ||
4651 | 0,327,3,106,0, | ||
4652 | 327,3,107,0,327, | ||
4653 | 3,108,0,327,537, | ||
4654 | 11,1,829,0,330, | ||
4655 | 1,-1,3,102,0, | ||
4656 | 327,3,103,0,327, | ||
4657 | 3,104,0,327,3, | ||
4658 | 105,0,327,3,106, | ||
4659 | 0,327,3,107,0, | ||
4660 | 327,3,108,0,327, | ||
4661 | 538,11,1,829,0, | ||
4662 | 330,1,-1,3,116, | ||
4663 | 0,327,3,117,0, | ||
4664 | 327,3,118,0,327, | ||
4665 | 3,119,0,327,3, | ||
4666 | 120,0,327,3,121, | ||
4667 | 0,327,3,122,0, | ||
4668 | 327,3,48,0,327, | ||
4669 | 3,49,0,327,3, | ||
4670 | 50,0,327,3,51, | ||
4671 | 0,327,3,52,0, | ||
4672 | 327,3,53,0,327, | ||
4673 | 3,54,0,327,3, | ||
4674 | 55,0,327,3,56, | ||
4675 | 0,327,3,57,0, | ||
4676 | 327,3,65,0,327, | ||
4677 | 3,66,0,327,3, | ||
4678 | 67,0,327,3,68, | ||
4679 | 0,327,3,69,0, | ||
4680 | 327,3,70,0,327, | ||
4681 | 3,71,0,327,3, | ||
4682 | 72,0,327,3,73, | ||
4683 | 0,327,3,74,0, | ||
4684 | 327,3,75,0,327, | ||
4685 | 3,76,0,327,3, | ||
4686 | 77,0,327,3,78, | ||
4687 | 0,327,3,79,0, | ||
4688 | 327,3,80,0,327, | ||
4689 | 3,81,0,327,3, | ||
4690 | 82,0,327,3,83, | ||
4691 | 0,327,3,84,0, | ||
4692 | 327,3,85,0,327, | ||
4693 | 3,86,0,327,3, | ||
4694 | 87,0,327,3,88, | ||
4695 | 0,327,3,89,0, | ||
4696 | 327,3,90,0,327, | ||
4697 | 3,95,0,327,3, | ||
4698 | 97,0,327,3,98, | ||
4699 | 0,327,3,99,0, | ||
4700 | 327,3,100,0,327, | ||
4701 | 3,101,0,327,3, | ||
4702 | 102,0,327,3,103, | ||
4703 | 0,327,3,104,0, | ||
4704 | 327,3,105,0,327, | ||
4705 | 3,106,0,327,3, | ||
4706 | 107,0,327,3,108, | ||
4707 | 0,327,539,11,1, | ||
4708 | 829,0,330,1,-1, | ||
4709 | 3,98,0,327,3, | ||
4710 | 99,0,327,3,100, | ||
4711 | 0,327,3,101,0, | ||
4712 | 327,3,102,0,327, | ||
4713 | 3,103,0,327,3, | ||
4714 | 104,0,327,3,105, | ||
4715 | 0,327,3,106,0, | ||
4716 | 327,3,107,0,327, | ||
4717 | 3,108,0,327,540, | ||
4718 | 11,1,829,0,330, | ||
4719 | 1,-1,3,117,0, | ||
4720 | 327,3,118,0,327, | ||
4721 | 3,119,0,327,3, | ||
4722 | 120,0,327,3,121, | ||
4723 | 0,327,3,122,0, | ||
4724 | 327,3,48,0,327, | ||
4725 | 3,49,0,327,3, | ||
4726 | 50,0,327,3,51, | ||
4727 | 0,327,3,52,0, | ||
4728 | 327,3,53,0,327, | ||
4729 | 3,54,0,327,3, | ||
4730 | 55,0,327,3,56, | ||
4731 | 0,327,3,57,0, | ||
4732 | 327,3,65,0,327, | ||
4733 | 3,66,0,327,3, | ||
4734 | 67,0,327,3,68, | ||
4735 | 0,327,3,69,0, | ||
4736 | 327,3,70,0,327, | ||
4737 | 3,71,0,327,3, | ||
4738 | 72,0,327,3,73, | ||
4739 | 0,327,3,74,0, | ||
4740 | 327,3,75,0,327, | ||
4741 | 3,76,0,327,3, | ||
4742 | 77,0,327,3,78, | ||
4743 | 0,327,3,79,0, | ||
4744 | 327,3,80,0,327, | ||
4745 | 3,81,0,327,3, | ||
4746 | 82,0,327,3,83, | ||
4747 | 0,327,3,84,0, | ||
4748 | 327,3,85,0,327, | ||
4749 | 3,86,0,327,3, | ||
4750 | 87,0,327,3,88, | ||
4751 | 0,327,3,89,0, | ||
4752 | 327,3,90,0,327, | ||
4753 | 3,95,0,327,3, | ||
4754 | 97,0,327,3,98, | ||
4755 | 0,327,3,99,0, | ||
4756 | 327,3,100,0,327, | ||
4757 | 3,101,0,327,3, | ||
4758 | 102,0,327,3,103, | ||
4759 | 0,327,3,104,0, | ||
4760 | 327,3,105,0,327, | ||
4761 | 3,106,0,327,3, | ||
4762 | 107,0,327,3,108, | ||
4763 | 0,327,541,11,1, | ||
4764 | 829,0,330,1,-1, | ||
4765 | 3,98,0,327,3, | ||
4766 | 99,0,327,3,100, | ||
4767 | 0,327,3,101,0, | ||
4768 | 542,12,1,27515,543, | ||
4769 | 5,63,3,109,0, | ||
4770 | 327,3,110,0,327, | ||
4771 | 3,111,0,327,3, | ||
4772 | 112,0,327,3,113, | ||
4773 | 0,327,3,114,0, | ||
4774 | 327,3,115,0,327, | ||
4775 | 3,116,0,327,3, | ||
4776 | 117,0,327,3,118, | ||
4777 | 0,327,3,119,0, | ||
4778 | 327,3,120,0,327, | ||
4779 | 3,121,0,327,3, | ||
4780 | 122,0,327,3,48, | ||
4781 | 0,327,3,49,0, | ||
4782 | 327,3,50,0,327, | ||
4783 | 3,51,0,327,3, | ||
4784 | 52,0,327,3,53, | ||
4785 | 0,327,3,54,0, | ||
4786 | 327,3,55,0,327, | ||
4787 | 3,56,0,327,3, | ||
4788 | 57,0,327,3,65, | ||
4789 | 0,327,3,66,0, | ||
4790 | 327,3,67,0,327, | ||
4791 | 3,68,0,327,3, | ||
4792 | 69,0,327,3,70, | ||
4793 | 0,327,3,71,0, | ||
4794 | 327,3,72,0,327, | ||
4795 | 3,73,0,327,3, | ||
4796 | 74,0,327,3,75, | ||
4797 | 0,327,3,76,0, | ||
4798 | 327,3,77,0,327, | ||
4799 | 3,78,0,327,3, | ||
4800 | 79,0,327,3,80, | ||
4801 | 0,327,3,81,0, | ||
4802 | 327,3,82,0,327, | ||
4803 | 3,83,0,327,3, | ||
4804 | 84,0,327,3,85, | ||
4805 | 0,327,3,86,0, | ||
4806 | 327,3,87,0,327, | ||
4807 | 3,88,0,327,3, | ||
4808 | 89,0,327,3,90, | ||
4809 | 0,327,3,95,0, | ||
4810 | 327,3,97,0,327, | ||
4811 | 3,98,0,327,3, | ||
4812 | 99,0,327,3,100, | ||
4813 | 0,327,3,101,0, | ||
4814 | 327,3,102,0,544, | ||
4815 | 12,1,27563,545,5, | ||
4816 | 63,3,109,0,327, | ||
4817 | 3,110,0,327,3, | ||
4818 | 111,0,327,3,112, | ||
4819 | 0,327,3,113,0, | ||
4820 | 327,3,114,0,327, | ||
4821 | 3,115,0,327,3, | ||
4822 | 116,0,327,3,117, | ||
4823 | 0,327,3,118,0, | ||
4824 | 327,3,119,0,327, | ||
4825 | 3,120,0,327,3, | ||
4826 | 121,0,327,3,122, | ||
4827 | 0,327,3,48,0, | ||
4828 | 327,3,49,0,327, | ||
4829 | 3,50,0,327,3, | ||
4830 | 51,0,327,3,52, | ||
4831 | 0,327,3,53,0, | ||
4832 | 327,3,54,0,327, | ||
4833 | 3,55,0,327,3, | ||
4834 | 56,0,327,3,57, | ||
4835 | 0,327,3,65,0, | ||
4836 | 327,3,66,0,327, | ||
4837 | 3,67,0,327,3, | ||
4838 | 68,0,327,3,69, | ||
4839 | 0,327,3,70,0, | ||
4840 | 327,3,71,0,327, | ||
4841 | 3,72,0,327,3, | ||
4842 | 73,0,327,3,74, | ||
4843 | 0,327,3,75,0, | ||
4844 | 327,3,76,0,327, | ||
4845 | 3,77,0,327,3, | ||
4846 | 78,0,327,3,79, | ||
4847 | 0,327,3,80,0, | ||
4848 | 327,3,81,0,327, | ||
4849 | 3,82,0,327,3, | ||
4850 | 83,0,327,3,84, | ||
4851 | 0,327,3,85,0, | ||
4852 | 327,3,86,0,327, | ||
4853 | 3,87,0,327,3, | ||
4854 | 88,0,327,3,89, | ||
4855 | 0,327,3,90,0, | ||
4856 | 327,3,95,0,327, | ||
4857 | 3,97,0,546,12, | ||
4858 | 1,27606,547,5,63, | ||
4859 | 3,109,0,327,3, | ||
4860 | 110,0,327,3,111, | ||
4861 | 0,327,3,112,0, | ||
4862 | 327,3,113,0,327, | ||
4863 | 3,114,0,327,3, | ||
4864 | 115,0,327,3,116, | ||
4865 | 0,327,3,117,0, | ||
4866 | 548,12,1,27642,549, | ||
4867 | 5,63,3,109,0, | ||
4868 | 327,3,110,0,327, | ||
4869 | 3,111,0,327,3, | ||
4870 | 112,0,327,3,113, | ||
4871 | 0,327,3,114,0, | ||
4872 | 327,3,115,0,327, | ||
4873 | 3,116,0,327,3, | ||
4874 | 117,0,327,3,118, | ||
4875 | 0,327,3,119,0, | ||
4876 | 327,3,120,0,327, | ||
4877 | 3,121,0,327,3, | ||
4878 | 122,0,327,3,48, | ||
4879 | 0,327,3,49,0, | ||
4880 | 327,3,50,0,327, | ||
4881 | 3,51,0,327,3, | ||
4882 | 52,0,327,3,53, | ||
4883 | 0,327,3,54,0, | ||
4884 | 327,3,55,0,327, | ||
4885 | 3,56,0,327,3, | ||
4886 | 57,0,327,3,65, | ||
4887 | 0,327,3,66,0, | ||
4888 | 327,3,67,0,327, | ||
4889 | 3,68,0,327,3, | ||
4890 | 69,0,327,3,70, | ||
4891 | 0,327,3,71,0, | ||
4892 | 327,3,72,0,327, | ||
4893 | 3,73,0,327,3, | ||
4894 | 74,0,327,3,75, | ||
4895 | 0,327,3,76,0, | ||
4896 | 327,3,77,0,327, | ||
4897 | 3,78,0,327,3, | ||
4898 | 79,0,327,3,80, | ||
4899 | 0,327,3,81,0, | ||
4900 | 327,3,82,0,327, | ||
4901 | 3,83,0,327,3, | ||
4902 | 84,0,327,3,85, | ||
4903 | 0,327,3,86,0, | ||
4904 | 327,3,87,0,327, | ||
4905 | 3,88,0,327,3, | ||
4906 | 89,0,327,3,90, | ||
4907 | 0,327,3,95,0, | ||
4908 | 327,3,97,0,327, | ||
4909 | 3,98,0,327,3, | ||
4910 | 99,0,327,3,100, | ||
4911 | 0,327,3,101,0, | ||
4912 | 327,3,102,0,327, | ||
4913 | 3,103,0,327,3, | ||
4914 | 104,0,327,3,105, | ||
4915 | 0,327,3,106,0, | ||
4916 | 327,3,107,0,327, | ||
4917 | 3,108,0,550,12, | ||
4918 | 1,27696,551,5,63, | ||
4919 | 3,109,0,327,3, | ||
4920 | 110,0,327,3,111, | ||
4921 | 0,327,3,112,0, | ||
4922 | 327,3,113,0,327, | ||
4923 | 3,114,0,327,3, | ||
4924 | 115,0,327,3,116, | ||
4925 | 0,552,12,1,27731, | ||
4926 | 553,5,63,3,109, | ||
4927 | 0,327,3,110,0, | ||
4928 | 327,3,111,0,327, | ||
4929 | 3,112,0,327,3, | ||
4930 | 113,0,327,3,114, | ||
4931 | 0,327,3,115,0, | ||
4932 | 327,3,116,0,327, | ||
4933 | 3,117,0,327,3, | ||
4934 | 118,0,327,3,119, | ||
4935 | 0,327,3,120,0, | ||
4936 | 327,3,121,0,327, | ||
4937 | 3,122,0,327,3, | ||
4938 | 48,0,327,3,49, | ||
4939 | 0,327,3,50,0, | ||
4940 | 327,3,51,0,327, | ||
4941 | 3,52,0,327,3, | ||
4942 | 53,0,327,3,54, | ||
4943 | 0,327,3,55,0, | ||
4944 | 327,3,56,0,327, | ||
4945 | 3,57,0,327,3, | ||
4946 | 65,0,327,3,66, | ||
4947 | 0,327,3,67,0, | ||
4948 | 327,3,68,0,327, | ||
4949 | 3,69,0,327,3, | ||
4950 | 70,0,327,3,71, | ||
4951 | 0,327,3,72,0, | ||
4952 | 327,3,73,0,327, | ||
4953 | 3,74,0,327,3, | ||
4954 | 75,0,327,3,76, | ||
4955 | 0,327,3,77,0, | ||
4956 | 327,3,78,0,327, | ||
4957 | 3,79,0,327,3, | ||
4958 | 80,0,327,3,81, | ||
4959 | 0,327,3,82,0, | ||
4960 | 327,3,83,0,327, | ||
4961 | 3,84,0,327,3, | ||
4962 | 85,0,327,3,86, | ||
4963 | 0,327,3,87,0, | ||
4964 | 327,3,88,0,327, | ||
4965 | 3,89,0,327,3, | ||
4966 | 90,0,327,3,95, | ||
4967 | 0,327,3,97,0, | ||
4968 | 327,3,98,0,327, | ||
4969 | 3,99,0,327,3, | ||
4970 | 100,0,327,3,101, | ||
4971 | 0,327,3,102,0, | ||
4972 | 327,3,103,0,327, | ||
4973 | 3,104,0,327,3, | ||
4974 | 105,0,327,3,106, | ||
4975 | 0,327,3,107,0, | ||
4976 | 327,3,108,0,327, | ||
4977 | 554,11,1,245,0, | ||
4978 | 555,4,26,68,0, | ||
4979 | 69,0,70,0,65, | ||
4980 | 0,85,0,76,0, | ||
4981 | 84,0,95,0,83, | ||
4982 | 0,84,0,65,0, | ||
4983 | 84,0,69,0,1, | ||
4984 | -1,3,117,0,327, | ||
4985 | 3,118,0,327,3, | ||
4986 | 119,0,327,3,120, | ||
4987 | 0,327,3,121,0, | ||
4988 | 327,3,122,0,327, | ||
4989 | 3,48,0,327,3, | ||
4990 | 49,0,327,3,50, | ||
4991 | 0,327,3,51,0, | ||
4992 | 327,3,52,0,327, | ||
4993 | 3,53,0,327,3, | ||
4994 | 54,0,327,3,55, | ||
4995 | 0,327,3,56,0, | ||
4996 | 327,3,57,0,327, | ||
4997 | 3,65,0,327,3, | ||
4998 | 66,0,327,3,67, | ||
4999 | 0,327,3,68,0, | ||
5000 | 327,3,69,0,327, | ||
5001 | 3,70,0,327,3, | ||
5002 | 71,0,327,3,72, | ||
5003 | 0,327,3,73,0, | ||
5004 | 327,3,74,0,327, | ||
5005 | 3,75,0,327,3, | ||
5006 | 76,0,327,3,77, | ||
5007 | 0,327,3,78,0, | ||
5008 | 327,3,79,0,327, | ||
5009 | 3,80,0,327,3, | ||
5010 | 81,0,327,3,82, | ||
5011 | 0,327,3,83,0, | ||
5012 | 327,3,84,0,327, | ||
5013 | 3,85,0,327,3, | ||
5014 | 86,0,327,3,87, | ||
5015 | 0,327,3,88,0, | ||
5016 | 327,3,89,0,327, | ||
5017 | 3,90,0,327,3, | ||
5018 | 95,0,327,3,97, | ||
5019 | 0,327,3,98,0, | ||
5020 | 327,3,99,0,327, | ||
5021 | 3,100,0,327,3, | ||
5022 | 101,0,327,3,102, | ||
5023 | 0,327,3,103,0, | ||
5024 | 327,3,104,0,327, | ||
5025 | 3,105,0,327,3, | ||
5026 | 106,0,327,3,107, | ||
5027 | 0,327,3,108,0, | ||
5028 | 327,556,11,1,829, | ||
5029 | 0,330,1,-1,557, | ||
5030 | 11,1,829,0,330, | ||
5031 | 1,-1,3,118,0, | ||
5032 | 327,3,119,0,327, | ||
5033 | 3,120,0,327,3, | ||
5034 | 121,0,327,3,122, | ||
5035 | 0,327,3,48,0, | ||
5036 | 327,3,49,0,327, | ||
5037 | 3,50,0,327,3, | ||
5038 | 51,0,327,3,52, | ||
5039 | 0,327,3,53,0, | ||
5040 | 327,3,54,0,327, | ||
5041 | 3,55,0,327,3, | ||
5042 | 56,0,327,3,57, | ||
5043 | 0,327,3,65,0, | ||
5044 | 327,3,66,0,327, | ||
5045 | 3,67,0,327,3, | ||
5046 | 68,0,327,3,69, | ||
5047 | 0,327,3,70,0, | ||
5048 | 327,3,71,0,327, | ||
5049 | 3,72,0,327,3, | ||
5050 | 73,0,327,3,74, | ||
5051 | 0,327,3,75,0, | ||
5052 | 327,3,76,0,327, | ||
5053 | 3,77,0,327,3, | ||
5054 | 78,0,327,3,79, | ||
5055 | 0,327,3,80,0, | ||
5056 | 327,3,81,0,327, | ||
5057 | 3,82,0,327,3, | ||
5058 | 83,0,327,3,84, | ||
5059 | 0,327,3,85,0, | ||
5060 | 327,3,86,0,327, | ||
5061 | 3,87,0,327,3, | ||
5062 | 88,0,327,3,89, | ||
5063 | 0,327,3,90,0, | ||
5064 | 327,3,95,0,327, | ||
5065 | 3,97,0,327,3, | ||
5066 | 98,0,327,3,99, | ||
5067 | 0,327,3,100,0, | ||
5068 | 327,3,101,0,327, | ||
5069 | 3,102,0,327,3, | ||
5070 | 103,0,327,3,104, | ||
5071 | 0,327,3,105,0, | ||
5072 | 327,3,106,0,327, | ||
5073 | 3,107,0,327,3, | ||
5074 | 108,0,327,558,11, | ||
5075 | 1,829,0,330,1, | ||
5076 | -1,3,98,0,327, | ||
5077 | 3,99,0,327,3, | ||
5078 | 100,0,327,3,101, | ||
5079 | 0,327,3,102,0, | ||
5080 | 327,3,103,0,327, | ||
5081 | 3,104,0,327,3, | ||
5082 | 105,0,327,3,106, | ||
5083 | 0,327,3,107,0, | ||
5084 | 327,3,108,0,327, | ||
5085 | 559,11,1,829,0, | ||
5086 | 330,1,-1,3,103, | ||
5087 | 0,327,3,104,0, | ||
5088 | 327,3,105,0,327, | ||
5089 | 3,106,0,327,3, | ||
5090 | 107,0,327,3,108, | ||
5091 | 0,327,560,11,1, | ||
5092 | 829,0,330,1,-1, | ||
5093 | 3,102,0,327,3, | ||
5094 | 103,0,327,3,104, | ||
5095 | 0,327,3,105,0, | ||
5096 | 327,3,106,0,327, | ||
5097 | 3,107,0,327,3, | ||
5098 | 108,0,327,561,11, | ||
5099 | 1,829,0,330,1, | ||
5100 | -1,3,101,0,562, | ||
5101 | 12,1,28309,563,5, | ||
5102 | 63,3,109,0,564, | ||
5103 | 12,1,28337,565,5, | ||
5104 | 63,3,109,0,327, | ||
5105 | 3,110,0,327,3, | ||
5106 | 111,0,327,3,112, | ||
5107 | 0,327,3,113,0, | ||
5108 | 327,3,114,0,327, | ||
5109 | 3,115,0,327,3, | ||
5110 | 116,0,327,3,117, | ||
5111 | 0,327,3,118,0, | ||
5112 | 327,3,119,0,327, | ||
5113 | 3,120,0,327,3, | ||
5114 | 121,0,327,3,122, | ||
5115 | 0,327,3,48,0, | ||
5116 | 327,3,49,0,327, | ||
5117 | 3,50,0,327,3, | ||
5118 | 51,0,327,3,52, | ||
5119 | 0,327,3,53,0, | ||
5120 | 327,3,54,0,327, | ||
5121 | 3,55,0,327,3, | ||
5122 | 56,0,327,3,57, | ||
5123 | 0,327,3,65,0, | ||
5124 | 327,3,66,0,327, | ||
5125 | 3,67,0,327,3, | ||
5126 | 68,0,327,3,69, | ||
5127 | 0,327,3,70,0, | ||
5128 | 327,3,71,0,327, | ||
5129 | 3,72,0,327,3, | ||
5130 | 73,0,327,3,74, | ||
5131 | 0,327,3,75,0, | ||
5132 | 327,3,76,0,327, | ||
5133 | 3,77,0,327,3, | ||
5134 | 78,0,327,3,79, | ||
5135 | 0,327,3,80,0, | ||
5136 | 327,3,81,0,327, | ||
5137 | 3,82,0,327,3, | ||
5138 | 83,0,327,3,84, | ||
5139 | 0,327,3,85,0, | ||
5140 | 327,3,86,0,327, | ||
5141 | 3,87,0,327,3, | ||
5142 | 88,0,327,3,89, | ||
5143 | 0,327,3,90,0, | ||
5144 | 327,3,95,0,327, | ||
5145 | 3,97,0,566,12, | ||
5146 | 1,28380,567,5,63, | ||
5147 | 3,109,0,327,3, | ||
5148 | 110,0,327,3,111, | ||
5149 | 0,327,3,112,0, | ||
5150 | 327,3,113,0,327, | ||
5151 | 3,114,0,327,3, | ||
5152 | 115,0,327,3,116, | ||
5153 | 0,327,3,117,0, | ||
5154 | 327,3,118,0,327, | ||
5155 | 3,119,0,327,3, | ||
5156 | 120,0,327,3,121, | ||
5157 | 0,327,3,122,0, | ||
5158 | 327,3,48,0,327, | ||
5159 | 3,49,0,327,3, | ||
5160 | 50,0,327,3,51, | ||
5161 | 0,327,3,52,0, | ||
5162 | 327,3,53,0,327, | ||
5163 | 3,54,0,327,3, | ||
5164 | 55,0,327,3,56, | ||
5165 | 0,327,3,57,0, | ||
5166 | 327,3,65,0,327, | ||
5167 | 3,66,0,327,3, | ||
5168 | 67,0,327,3,68, | ||
5169 | 0,327,3,69,0, | ||
5170 | 327,3,70,0,327, | ||
5171 | 3,71,0,327,3, | ||
5172 | 72,0,327,3,73, | ||
5173 | 0,327,3,74,0, | ||
5174 | 327,3,75,0,327, | ||
5175 | 3,76,0,327,3, | ||
5176 | 77,0,327,3,78, | ||
5177 | 0,327,3,79,0, | ||
5178 | 327,3,80,0,327, | ||
5179 | 3,81,0,327,3, | ||
5180 | 82,0,327,3,83, | ||
5181 | 0,327,3,84,0, | ||
5182 | 327,3,85,0,327, | ||
5183 | 3,86,0,327,3, | ||
5184 | 87,0,327,3,88, | ||
5185 | 0,327,3,89,0, | ||
5186 | 327,3,90,0,327, | ||
5187 | 3,95,0,327,3, | ||
5188 | 97,0,327,3,98, | ||
5189 | 0,327,3,99,0, | ||
5190 | 327,3,100,0,327, | ||
5191 | 3,101,0,327,3, | ||
5192 | 102,0,327,3,103, | ||
5193 | 0,327,3,104,0, | ||
5194 | 327,3,105,0,568, | ||
5195 | 12,1,28431,569,5, | ||
5196 | 63,3,109,0,327, | ||
5197 | 3,110,0,327,3, | ||
5198 | 111,0,327,3,112, | ||
5199 | 0,327,3,113,0, | ||
5200 | 327,3,114,0,327, | ||
5201 | 3,115,0,327,3, | ||
5202 | 116,0,327,3,117, | ||
5203 | 0,327,3,118,0, | ||
5204 | 327,3,119,0,327, | ||
5205 | 3,120,0,327,3, | ||
5206 | 121,0,327,3,122, | ||
5207 | 0,327,3,48,0, | ||
5208 | 327,3,49,0,327, | ||
5209 | 3,50,0,327,3, | ||
5210 | 51,0,327,3,52, | ||
5211 | 0,327,3,53,0, | ||
5212 | 327,3,54,0,327, | ||
5213 | 3,55,0,327,3, | ||
5214 | 56,0,327,3,57, | ||
5215 | 0,327,3,65,0, | ||
5216 | 327,3,66,0,327, | ||
5217 | 3,67,0,327,3, | ||
5218 | 68,0,327,3,69, | ||
5219 | 0,327,3,70,0, | ||
5220 | 327,3,71,0,327, | ||
5221 | 3,72,0,327,3, | ||
5222 | 73,0,327,3,74, | ||
5223 | 0,327,3,75,0, | ||
5224 | 327,3,76,0,327, | ||
5225 | 3,77,0,327,3, | ||
5226 | 78,0,327,3,79, | ||
5227 | 0,327,3,80,0, | ||
5228 | 327,3,81,0,327, | ||
5229 | 3,82,0,327,3, | ||
5230 | 83,0,327,3,84, | ||
5231 | 0,327,3,85,0, | ||
5232 | 327,3,86,0,327, | ||
5233 | 3,87,0,327,3, | ||
5234 | 88,0,327,3,89, | ||
5235 | 0,327,3,90,0, | ||
5236 | 327,3,95,0,327, | ||
5237 | 3,97,0,327,3, | ||
5238 | 98,0,327,3,99, | ||
5239 | 0,327,3,100,0, | ||
5240 | 327,3,101,0,327, | ||
5241 | 3,102,0,327,3, | ||
5242 | 103,0,327,3,104, | ||
5243 | 0,327,3,105,0, | ||
5244 | 327,3,106,0,327, | ||
5245 | 3,107,0,327,3, | ||
5246 | 108,0,570,12,1, | ||
5247 | 28485,571,5,63,3, | ||
5248 | 109,0,327,3,110, | ||
5249 | 0,327,3,111,0, | ||
5250 | 327,3,112,0,327, | ||
5251 | 3,113,0,327,3, | ||
5252 | 114,0,327,3,115, | ||
5253 | 0,327,3,116,0, | ||
5254 | 327,3,117,0,327, | ||
5255 | 3,118,0,327,3, | ||
5256 | 119,0,327,3,120, | ||
5257 | 0,327,3,121,0, | ||
5258 | 327,3,122,0,327, | ||
5259 | 3,48,0,327,3, | ||
5260 | 49,0,327,3,50, | ||
5261 | 0,327,3,51,0, | ||
5262 | 327,3,52,0,327, | ||
5263 | 3,53,0,327,3, | ||
5264 | 54,0,327,3,55, | ||
5265 | 0,327,3,56,0, | ||
5266 | 327,3,57,0,327, | ||
5267 | 3,65,0,327,3, | ||
5268 | 66,0,327,3,67, | ||
5269 | 0,327,3,68,0, | ||
5270 | 327,3,69,0,327, | ||
5271 | 3,70,0,327,3, | ||
5272 | 71,0,327,3,72, | ||
5273 | 0,327,3,73,0, | ||
5274 | 327,3,74,0,327, | ||
5275 | 3,75,0,327,3, | ||
5276 | 76,0,327,3,77, | ||
5277 | 0,327,3,78,0, | ||
5278 | 327,3,79,0,327, | ||
5279 | 3,80,0,327,3, | ||
5280 | 81,0,327,3,82, | ||
5281 | 0,327,3,83,0, | ||
5282 | 327,3,84,0,327, | ||
5283 | 3,85,0,327,3, | ||
5284 | 86,0,327,3,87, | ||
5285 | 0,327,3,88,0, | ||
5286 | 327,3,89,0,327, | ||
5287 | 3,90,0,327,3, | ||
5288 | 95,0,327,3,97, | ||
5289 | 0,327,3,98,0, | ||
5290 | 327,3,99,0,327, | ||
5291 | 3,100,0,327,3, | ||
5292 | 101,0,327,3,102, | ||
5293 | 0,327,3,103,0, | ||
5294 | 327,3,104,0,327, | ||
5295 | 3,105,0,327,3, | ||
5296 | 106,0,327,3,107, | ||
5297 | 0,327,3,108,0, | ||
5298 | 327,572,11,1,475, | ||
5299 | 0,573,4,22,69, | ||
5300 | 0,77,0,65,0, | ||
5301 | 73,0,76,0,95, | ||
5302 | 0,69,0,86,0, | ||
5303 | 69,0,78,0,84, | ||
5304 | 0,1,-1,574,11, | ||
5305 | 1,829,0,330,1, | ||
5306 | -1,3,106,0,327, | ||
5307 | 3,107,0,327,3, | ||
5308 | 108,0,327,575,11, | ||
5309 | 1,829,0,330,1, | ||
5310 | -1,3,98,0,327, | ||
5311 | 3,99,0,327,3, | ||
5312 | 100,0,327,3,101, | ||
5313 | 0,327,3,102,0, | ||
5314 | 327,3,103,0,327, | ||
5315 | 3,104,0,327,3, | ||
5316 | 105,0,327,3,106, | ||
5317 | 0,327,3,107,0, | ||
5318 | 327,3,108,0,327, | ||
5319 | 576,11,1,829,0, | ||
5320 | 330,1,-1,3,110, | ||
5321 | 0,327,3,111,0, | ||
5322 | 327,3,112,0,327, | ||
5323 | 3,113,0,327,3, | ||
5324 | 114,0,327,3,115, | ||
5325 | 0,327,3,116,0, | ||
5326 | 327,3,117,0,327, | ||
5327 | 3,118,0,327,3, | ||
5328 | 119,0,327,3,120, | ||
5329 | 0,327,3,121,0, | ||
5330 | 327,3,122,0,327, | ||
5331 | 3,48,0,327,3, | ||
5332 | 49,0,327,3,50, | ||
5333 | 0,327,3,51,0, | ||
5334 | 327,3,52,0,327, | ||
5335 | 3,53,0,327,3, | ||
5336 | 54,0,327,3,55, | ||
5337 | 0,327,3,56,0, | ||
5338 | 327,3,57,0,327, | ||
5339 | 3,65,0,327,3, | ||
5340 | 66,0,327,3,67, | ||
5341 | 0,327,3,68,0, | ||
5342 | 327,3,69,0,327, | ||
5343 | 3,70,0,327,3, | ||
5344 | 71,0,327,3,72, | ||
5345 | 0,327,3,73,0, | ||
5346 | 327,3,74,0,327, | ||
5347 | 3,75,0,327,3, | ||
5348 | 76,0,327,3,77, | ||
5349 | 0,327,3,78,0, | ||
5350 | 327,3,79,0,327, | ||
5351 | 3,80,0,327,3, | ||
5352 | 81,0,327,3,82, | ||
5353 | 0,327,3,83,0, | ||
5354 | 327,3,84,0,327, | ||
5355 | 3,85,0,327,3, | ||
5356 | 86,0,327,3,87, | ||
5357 | 0,327,3,88,0, | ||
5358 | 327,3,89,0,327, | ||
5359 | 3,90,0,327,3, | ||
5360 | 95,0,327,3,97, | ||
5361 | 0,327,3,98,0, | ||
5362 | 327,3,99,0,327, | ||
5363 | 3,100,0,327,3, | ||
5364 | 101,0,327,3,102, | ||
5365 | 0,327,3,103,0, | ||
5366 | 327,3,104,0,327, | ||
5367 | 3,105,0,327,3, | ||
5368 | 106,0,327,3,107, | ||
5369 | 0,327,3,108,0, | ||
5370 | 577,12,1,28843,578, | ||
5371 | 5,63,3,109,0, | ||
5372 | 327,3,110,0,327, | ||
5373 | 3,111,0,327,3, | ||
5374 | 112,0,327,3,113, | ||
5375 | 0,327,3,114,0, | ||
5376 | 327,3,115,0,579, | ||
5377 | 12,1,28877,580,5, | ||
5378 | 63,3,109,0,327, | ||
5379 | 3,110,0,327,3, | ||
5380 | 111,0,327,3,112, | ||
5381 | 0,327,3,113,0, | ||
5382 | 327,3,114,0,327, | ||
5383 | 3,115,0,327,3, | ||
5384 | 116,0,327,3,117, | ||
5385 | 0,327,3,118,0, | ||
5386 | 327,3,119,0,327, | ||
5387 | 3,120,0,327,3, | ||
5388 | 121,0,327,3,122, | ||
5389 | 0,327,3,48,0, | ||
5390 | 327,3,49,0,327, | ||
5391 | 3,50,0,327,3, | ||
5392 | 51,0,327,3,52, | ||
5393 | 0,327,3,53,0, | ||
5394 | 327,3,54,0,327, | ||
5395 | 3,55,0,327,3, | ||
5396 | 56,0,327,3,57, | ||
5397 | 0,327,3,65,0, | ||
5398 | 327,3,66,0,327, | ||
5399 | 3,67,0,327,3, | ||
5400 | 68,0,327,3,69, | ||
5401 | 0,327,3,70,0, | ||
5402 | 327,3,71,0,327, | ||
5403 | 3,72,0,327,3, | ||
5404 | 73,0,327,3,74, | ||
5405 | 0,327,3,75,0, | ||
5406 | 327,3,76,0,327, | ||
5407 | 3,77,0,327,3, | ||
5408 | 78,0,327,3,79, | ||
5409 | 0,327,3,80,0, | ||
5410 | 327,3,81,0,327, | ||
5411 | 3,82,0,327,3, | ||
5412 | 83,0,327,3,84, | ||
5413 | 0,327,3,85,0, | ||
5414 | 327,3,86,0,327, | ||
5415 | 3,87,0,327,3, | ||
5416 | 88,0,327,3,89, | ||
5417 | 0,327,3,90,0, | ||
5418 | 327,3,95,0,327, | ||
5419 | 3,97,0,327,3, | ||
5420 | 98,0,327,3,99, | ||
5421 | 0,327,3,100,0, | ||
5422 | 327,3,101,0,581, | ||
5423 | 12,1,28924,582,5, | ||
5424 | 63,3,109,0,327, | ||
5425 | 3,110,0,327,3, | ||
5426 | 111,0,327,3,112, | ||
5427 | 0,327,3,113,0, | ||
5428 | 327,3,114,0,327, | ||
5429 | 3,115,0,327,3, | ||
5430 | 116,0,327,3,117, | ||
5431 | 0,327,3,118,0, | ||
5432 | 327,3,119,0,327, | ||
5433 | 3,120,0,327,3, | ||
5434 | 121,0,327,3,122, | ||
5435 | 0,327,3,48,0, | ||
5436 | 327,3,49,0,327, | ||
5437 | 3,50,0,327,3, | ||
5438 | 51,0,327,3,52, | ||
5439 | 0,327,3,53,0, | ||
5440 | 327,3,54,0,327, | ||
5441 | 3,55,0,327,3, | ||
5442 | 56,0,327,3,57, | ||
5443 | 0,327,3,65,0, | ||
5444 | 327,3,66,0,327, | ||
5445 | 3,67,0,327,3, | ||
5446 | 68,0,327,3,69, | ||
5447 | 0,327,3,70,0, | ||
5448 | 327,3,71,0,327, | ||
5449 | 3,72,0,327,3, | ||
5450 | 73,0,327,3,74, | ||
5451 | 0,327,3,75,0, | ||
5452 | 327,3,76,0,327, | ||
5453 | 3,77,0,327,3, | ||
5454 | 78,0,327,3,79, | ||
5455 | 0,327,3,80,0, | ||
5456 | 327,3,81,0,327, | ||
5457 | 3,82,0,327,3, | ||
5458 | 83,0,327,3,84, | ||
5459 | 0,327,3,85,0, | ||
5460 | 327,3,86,0,327, | ||
5461 | 3,87,0,327,3, | ||
5462 | 88,0,327,3,89, | ||
5463 | 0,327,3,90,0, | ||
5464 | 327,3,95,0,327, | ||
5465 | 3,97,0,327,3, | ||
5466 | 98,0,327,3,99, | ||
5467 | 0,327,3,100,0, | ||
5468 | 327,3,101,0,327, | ||
5469 | 3,102,0,327,3, | ||
5470 | 103,0,327,3,104, | ||
5471 | 0,327,3,105,0, | ||
5472 | 327,3,106,0,327, | ||
5473 | 3,107,0,327,3, | ||
5474 | 108,0,327,583,11, | ||
5475 | 1,215,0,584,4, | ||
5476 | 8,69,0,76,0, | ||
5477 | 83,0,69,0,1, | ||
5478 | -1,3,102,0,327, | ||
5479 | 3,103,0,327,3, | ||
5480 | 104,0,327,3,105, | ||
5481 | 0,327,3,106,0, | ||
5482 | 327,3,107,0,327, | ||
5483 | 3,108,0,327,585, | ||
5484 | 11,1,829,0,330, | ||
5485 | 1,-1,3,116,0, | ||
5486 | 327,3,117,0,327, | ||
5487 | 3,118,0,327,3, | ||
5488 | 119,0,327,3,120, | ||
5489 | 0,327,3,121,0, | ||
5490 | 327,3,122,0,327, | ||
5491 | 3,48,0,327,3, | ||
5492 | 49,0,327,3,50, | ||
5493 | 0,327,3,51,0, | ||
5494 | 327,3,52,0,327, | ||
5495 | 3,53,0,327,3, | ||
5496 | 54,0,327,3,55, | ||
5497 | 0,327,3,56,0, | ||
5498 | 327,3,57,0,327, | ||
5499 | 3,65,0,327,3, | ||
5500 | 66,0,327,3,67, | ||
5501 | 0,327,3,68,0, | ||
5502 | 327,3,69,0,327, | ||
5503 | 3,70,0,327,3, | ||
5504 | 71,0,327,3,72, | ||
5505 | 0,327,3,73,0, | ||
5506 | 327,3,74,0,327, | ||
5507 | 3,75,0,327,3, | ||
5508 | 76,0,327,3,77, | ||
5509 | 0,327,3,78,0, | ||
5510 | 327,3,79,0,327, | ||
5511 | 3,80,0,327,3, | ||
5512 | 81,0,327,3,82, | ||
5513 | 0,327,3,83,0, | ||
5514 | 327,3,84,0,327, | ||
5515 | 3,85,0,327,3, | ||
5516 | 86,0,327,3,87, | ||
5517 | 0,327,3,88,0, | ||
5518 | 327,3,89,0,327, | ||
5519 | 3,90,0,327,3, | ||
5520 | 95,0,327,3,97, | ||
5521 | 0,327,3,98,0, | ||
5522 | 327,3,99,0,327, | ||
5523 | 3,100,0,327,3, | ||
5524 | 101,0,327,3,102, | ||
5525 | 0,327,3,103,0, | ||
5526 | 327,3,104,0,327, | ||
5527 | 3,105,0,327,3, | ||
5528 | 106,0,327,3,107, | ||
5529 | 0,327,3,108,0, | ||
5530 | 327,586,11,1,829, | ||
5531 | 0,330,1,-1,587, | ||
5532 | 11,1,829,0,330, | ||
5533 | 1,-1,3,102,0, | ||
5534 | 588,12,1,29270,589, | ||
5535 | 5,63,3,109,0, | ||
5536 | 327,3,110,0,327, | ||
5537 | 3,111,0,590,12, | ||
5538 | 1,29300,591,5,63, | ||
5539 | 3,109,0,327,3, | ||
5540 | 110,0,327,3,111, | ||
5541 | 0,327,3,112,0, | ||
5542 | 327,3,113,0,327, | ||
5543 | 3,114,0,592,12, | ||
5544 | 1,29333,593,5,63, | ||
5545 | 3,109,0,327,3, | ||
5546 | 110,0,327,3,111, | ||
5547 | 0,327,3,112,0, | ||
5548 | 327,3,113,0,327, | ||
5549 | 3,114,0,327,3, | ||
5550 | 115,0,327,3,116, | ||
5551 | 0,327,3,117,0, | ||
5552 | 327,3,118,0,327, | ||
5553 | 3,119,0,327,3, | ||
5554 | 120,0,327,3,121, | ||
5555 | 0,327,3,122,0, | ||
5556 | 327,3,48,0,327, | ||
5557 | 3,49,0,327,3, | ||
5558 | 50,0,327,3,51, | ||
5559 | 0,327,3,52,0, | ||
5560 | 327,3,53,0,327, | ||
5561 | 3,54,0,327,3, | ||
5562 | 55,0,327,3,56, | ||
5563 | 0,327,3,57,0, | ||
5564 | 327,3,65,0,327, | ||
5565 | 3,66,0,327,3, | ||
5566 | 67,0,327,3,68, | ||
5567 | 0,327,3,69,0, | ||
5568 | 327,3,70,0,327, | ||
5569 | 3,71,0,327,3, | ||
5570 | 72,0,327,3,73, | ||
5571 | 0,327,3,74,0, | ||
5572 | 327,3,75,0,327, | ||
5573 | 3,76,0,327,3, | ||
5574 | 77,0,327,3,78, | ||
5575 | 0,327,3,79,0, | ||
5576 | 327,3,80,0,327, | ||
5577 | 3,81,0,327,3, | ||
5578 | 82,0,327,3,83, | ||
5579 | 0,327,3,84,0, | ||
5580 | 327,3,85,0,327, | ||
5581 | 3,86,0,327,3, | ||
5582 | 87,0,327,3,88, | ||
5583 | 0,327,3,89,0, | ||
5584 | 327,3,90,0,327, | ||
5585 | 3,95,0,327,3, | ||
5586 | 97,0,327,3,98, | ||
5587 | 0,327,3,99,0, | ||
5588 | 327,3,100,0,327, | ||
5589 | 3,101,0,327,3, | ||
5590 | 102,0,327,3,103, | ||
5591 | 0,327,3,104,0, | ||
5592 | 327,3,105,0,327, | ||
5593 | 3,106,0,327,3, | ||
5594 | 107,0,327,3,108, | ||
5595 | 0,327,594,11,1, | ||
5596 | 238,0,595,4,6, | ||
5597 | 70,0,79,0,82, | ||
5598 | 0,1,-1,3,115, | ||
5599 | 0,327,3,116,0, | ||
5600 | 327,3,117,0,327, | ||
5601 | 3,118,0,327,3, | ||
5602 | 119,0,327,3,120, | ||
5603 | 0,327,3,121,0, | ||
5604 | 327,3,122,0,327, | ||
5605 | 3,48,0,327,3, | ||
5606 | 49,0,327,3,50, | ||
5607 | 0,327,3,51,0, | ||
5608 | 327,3,52,0,327, | ||
5609 | 3,53,0,327,3, | ||
5610 | 54,0,327,3,55, | ||
5611 | 0,327,3,56,0, | ||
5612 | 327,3,57,0,327, | ||
5613 | 3,65,0,327,3, | ||
5614 | 66,0,327,3,67, | ||
5615 | 0,327,3,68,0, | ||
5616 | 327,3,69,0,327, | ||
5617 | 3,70,0,327,3, | ||
5618 | 71,0,327,3,72, | ||
5619 | 0,327,3,73,0, | ||
5620 | 327,3,74,0,327, | ||
5621 | 3,75,0,327,3, | ||
5622 | 76,0,327,3,77, | ||
5623 | 0,327,3,78,0, | ||
5624 | 327,3,79,0,327, | ||
5625 | 3,80,0,327,3, | ||
5626 | 81,0,327,3,82, | ||
5627 | 0,327,3,83,0, | ||
5628 | 327,3,84,0,327, | ||
5629 | 3,85,0,327,3, | ||
5630 | 86,0,327,3,87, | ||
5631 | 0,327,3,88,0, | ||
5632 | 327,3,89,0,327, | ||
5633 | 3,90,0,327,3, | ||
5634 | 95,0,327,3,97, | ||
5635 | 0,327,3,98,0, | ||
5636 | 327,3,99,0,327, | ||
5637 | 3,100,0,327,3, | ||
5638 | 101,0,327,3,102, | ||
5639 | 0,327,3,103,0, | ||
5640 | 327,3,104,0,327, | ||
5641 | 3,105,0,327,3, | ||
5642 | 106,0,327,3,107, | ||
5643 | 0,327,3,108,0, | ||
5644 | 327,596,11,1,829, | ||
5645 | 0,330,1,-1,3, | ||
5646 | 112,0,327,3,113, | ||
5647 | 0,327,3,114,0, | ||
5648 | 327,3,115,0,327, | ||
5649 | 3,116,0,327,3, | ||
5650 | 117,0,327,3,118, | ||
5651 | 0,327,3,119,0, | ||
5652 | 327,3,120,0,327, | ||
5653 | 3,121,0,327,3, | ||
5654 | 122,0,327,3,48, | ||
5655 | 0,327,3,49,0, | ||
5656 | 327,3,50,0,327, | ||
5657 | 3,51,0,327,3, | ||
5658 | 52,0,327,3,53, | ||
5659 | 0,327,3,54,0, | ||
5660 | 327,3,55,0,327, | ||
5661 | 3,56,0,327,3, | ||
5662 | 57,0,327,3,65, | ||
5663 | 0,327,3,66,0, | ||
5664 | 327,3,67,0,327, | ||
5665 | 3,68,0,327,3, | ||
5666 | 69,0,327,3,70, | ||
5667 | 0,327,3,71,0, | ||
5668 | 327,3,72,0,327, | ||
5669 | 3,73,0,327,3, | ||
5670 | 74,0,327,3,75, | ||
5671 | 0,327,3,76,0, | ||
5672 | 327,3,77,0,327, | ||
5673 | 3,78,0,327,3, | ||
5674 | 79,0,327,3,80, | ||
5675 | 0,327,3,81,0, | ||
5676 | 327,3,82,0,327, | ||
5677 | 3,83,0,327,3, | ||
5678 | 84,0,327,3,85, | ||
5679 | 0,327,3,86,0, | ||
5680 | 327,3,87,0,327, | ||
5681 | 3,88,0,327,3, | ||
5682 | 89,0,327,3,90, | ||
5683 | 0,327,3,95,0, | ||
5684 | 327,3,97,0,327, | ||
5685 | 3,98,0,327,3, | ||
5686 | 99,0,327,3,100, | ||
5687 | 0,327,3,101,0, | ||
5688 | 327,3,102,0,327, | ||
5689 | 3,103,0,327,3, | ||
5690 | 104,0,327,3,105, | ||
5691 | 0,327,3,106,0, | ||
5692 | 327,3,107,0,327, | ||
5693 | 3,108,0,597,12, | ||
5694 | 1,29564,598,5,63, | ||
5695 | 3,109,0,327,3, | ||
5696 | 110,0,327,3,111, | ||
5697 | 0,599,12,1,29594, | ||
5698 | 600,5,63,3,109, | ||
5699 | 0,327,3,110,0, | ||
5700 | 327,3,111,0,327, | ||
5701 | 3,112,0,327,3, | ||
5702 | 113,0,327,3,114, | ||
5703 | 0,327,3,115,0, | ||
5704 | 327,3,116,0,327, | ||
5705 | 3,117,0,327,3, | ||
5706 | 118,0,327,3,119, | ||
5707 | 0,327,3,120,0, | ||
5708 | 327,3,121,0,327, | ||
5709 | 3,122,0,327,3, | ||
5710 | 48,0,327,3,49, | ||
5711 | 0,327,3,50,0, | ||
5712 | 327,3,51,0,327, | ||
5713 | 3,52,0,327,3, | ||
5714 | 53,0,327,3,54, | ||
5715 | 0,327,3,55,0, | ||
5716 | 327,3,56,0,327, | ||
5717 | 3,57,0,327,3, | ||
5718 | 65,0,327,3,66, | ||
5719 | 0,327,3,67,0, | ||
5720 | 327,3,68,0,327, | ||
5721 | 3,69,0,327,3, | ||
5722 | 70,0,327,3,71, | ||
5723 | 0,327,3,72,0, | ||
5724 | 327,3,73,0,327, | ||
5725 | 3,74,0,327,3, | ||
5726 | 75,0,327,3,76, | ||
5727 | 0,327,3,77,0, | ||
5728 | 327,3,78,0,327, | ||
5729 | 3,79,0,327,3, | ||
5730 | 80,0,327,3,81, | ||
5731 | 0,327,3,82,0, | ||
5732 | 327,3,83,0,327, | ||
5733 | 3,84,0,327,3, | ||
5734 | 85,0,327,3,86, | ||
5735 | 0,327,3,87,0, | ||
5736 | 327,3,88,0,327, | ||
5737 | 3,89,0,327,3, | ||
5738 | 90,0,327,3,95, | ||
5739 | 0,327,3,97,0, | ||
5740 | 601,12,1,29637,602, | ||
5741 | 5,63,3,109,0, | ||
5742 | 327,3,110,0,327, | ||
5743 | 3,111,0,327,3, | ||
5744 | 112,0,327,3,113, | ||
5745 | 0,327,3,114,0, | ||
5746 | 327,3,115,0,327, | ||
5747 | 3,116,0,603,12, | ||
5748 | 1,29672,604,5,63, | ||
5749 | 3,109,0,327,3, | ||
5750 | 110,0,327,3,111, | ||
5751 | 0,327,3,112,0, | ||
5752 | 327,3,113,0,327, | ||
5753 | 3,114,0,327,3, | ||
5754 | 115,0,327,3,116, | ||
5755 | 0,327,3,117,0, | ||
5756 | 327,3,118,0,327, | ||
5757 | 3,119,0,327,3, | ||
5758 | 120,0,327,3,121, | ||
5759 | 0,327,3,122,0, | ||
5760 | 327,3,48,0,327, | ||
5761 | 3,49,0,327,3, | ||
5762 | 50,0,327,3,51, | ||
5763 | 0,327,3,52,0, | ||
5764 | 327,3,53,0,327, | ||
5765 | 3,54,0,327,3, | ||
5766 | 55,0,327,3,56, | ||
5767 | 0,327,3,57,0, | ||
5768 | 327,3,65,0,327, | ||
5769 | 3,66,0,327,3, | ||
5770 | 67,0,327,3,68, | ||
5771 | 0,327,3,69,0, | ||
5772 | 327,3,70,0,327, | ||
5773 | 3,71,0,327,3, | ||
5774 | 72,0,327,3,73, | ||
5775 | 0,327,3,74,0, | ||
5776 | 327,3,75,0,327, | ||
5777 | 3,76,0,327,3, | ||
5778 | 77,0,327,3,78, | ||
5779 | 0,327,3,79,0, | ||
5780 | 327,3,80,0,327, | ||
5781 | 3,81,0,327,3, | ||
5782 | 82,0,327,3,83, | ||
5783 | 0,327,3,84,0, | ||
5784 | 327,3,85,0,327, | ||
5785 | 3,86,0,327,3, | ||
5786 | 87,0,327,3,88, | ||
5787 | 0,327,3,89,0, | ||
5788 | 327,3,90,0,327, | ||
5789 | 3,95,0,327,3, | ||
5790 | 97,0,327,3,98, | ||
5791 | 0,327,3,99,0, | ||
5792 | 327,3,100,0,327, | ||
5793 | 3,101,0,327,3, | ||
5794 | 102,0,327,3,103, | ||
5795 | 0,327,3,104,0, | ||
5796 | 327,3,105,0,327, | ||
5797 | 3,106,0,327,3, | ||
5798 | 107,0,327,3,108, | ||
5799 | 0,327,605,11,1, | ||
5800 | 294,0,606,4,20, | ||
5801 | 70,0,76,0,79, | ||
5802 | 0,65,0,84,0, | ||
5803 | 95,0,84,0,89, | ||
5804 | 0,80,0,69,0, | ||
5805 | 1,-1,3,117,0, | ||
5806 | 327,3,118,0,327, | ||
5807 | 3,119,0,327,3, | ||
5808 | 120,0,327,3,121, | ||
5809 | 0,327,3,122,0, | ||
5810 | 327,3,48,0,327, | ||
5811 | 3,49,0,327,3, | ||
5812 | 50,0,327,3,51, | ||
5813 | 0,327,3,52,0, | ||
5814 | 327,3,53,0,327, | ||
5815 | 3,54,0,327,3, | ||
5816 | 55,0,327,3,56, | ||
5817 | 0,327,3,57,0, | ||
5818 | 327,3,65,0,327, | ||
5819 | 3,66,0,327,3, | ||
5820 | 67,0,327,3,68, | ||
5821 | 0,327,3,69,0, | ||
5822 | 327,3,70,0,327, | ||
5823 | 3,71,0,327,3, | ||
5824 | 72,0,327,3,73, | ||
5825 | 0,327,3,74,0, | ||
5826 | 327,3,75,0,327, | ||
5827 | 3,76,0,327,3, | ||
5828 | 77,0,327,3,78, | ||
5829 | 0,327,3,79,0, | ||
5830 | 327,3,80,0,327, | ||
5831 | 3,81,0,327,3, | ||
5832 | 82,0,327,3,83, | ||
5833 | 0,327,3,84,0, | ||
5834 | 327,3,85,0,327, | ||
5835 | 3,86,0,327,3, | ||
5836 | 87,0,327,3,88, | ||
5837 | 0,327,3,89,0, | ||
5838 | 327,3,90,0,327, | ||
5839 | 3,95,0,327,3, | ||
5840 | 97,0,327,3,98, | ||
5841 | 0,327,3,99,0, | ||
5842 | 327,3,100,0,327, | ||
5843 | 3,101,0,327,3, | ||
5844 | 102,0,327,3,103, | ||
5845 | 0,327,3,104,0, | ||
5846 | 327,3,105,0,327, | ||
5847 | 3,106,0,327,3, | ||
5848 | 107,0,327,3,108, | ||
5849 | 0,327,607,11,1, | ||
5850 | 829,0,330,1,-1, | ||
5851 | 3,98,0,327,3, | ||
5852 | 99,0,327,3,100, | ||
5853 | 0,327,3,101,0, | ||
5854 | 327,3,102,0,327, | ||
5855 | 3,103,0,327,3, | ||
5856 | 104,0,327,3,105, | ||
5857 | 0,327,3,106,0, | ||
5858 | 327,3,107,0,327, | ||
5859 | 3,108,0,327,608, | ||
5860 | 11,1,829,0,330, | ||
5861 | 1,-1,3,112,0, | ||
5862 | 327,3,113,0,327, | ||
5863 | 3,114,0,327,3, | ||
5864 | 115,0,327,3,116, | ||
5865 | 0,327,3,117,0, | ||
5866 | 327,3,118,0,327, | ||
5867 | 3,119,0,327,3, | ||
5868 | 120,0,327,3,121, | ||
5869 | 0,327,3,122,0, | ||
5870 | 327,3,48,0,327, | ||
5871 | 3,49,0,327,3, | ||
5872 | 50,0,327,3,51, | ||
5873 | 0,327,3,52,0, | ||
5874 | 327,3,53,0,327, | ||
5875 | 3,54,0,327,3, | ||
5876 | 55,0,327,3,56, | ||
5877 | 0,327,3,57,0, | ||
5878 | 327,3,65,0,327, | ||
5879 | 3,66,0,327,3, | ||
5880 | 67,0,327,3,68, | ||
5881 | 0,327,3,69,0, | ||
5882 | 327,3,70,0,327, | ||
5883 | 3,71,0,327,3, | ||
5884 | 72,0,327,3,73, | ||
5885 | 0,327,3,74,0, | ||
5886 | 327,3,75,0,327, | ||
5887 | 3,76,0,327,3, | ||
5888 | 77,0,327,3,78, | ||
5889 | 0,327,3,79,0, | ||
5890 | 327,3,80,0,327, | ||
5891 | 3,81,0,327,3, | ||
5892 | 82,0,327,3,83, | ||
5893 | 0,327,3,84,0, | ||
5894 | 327,3,85,0,327, | ||
5895 | 3,86,0,327,3, | ||
5896 | 87,0,327,3,88, | ||
5897 | 0,327,3,89,0, | ||
5898 | 327,3,90,0,327, | ||
5899 | 3,95,0,327,3, | ||
5900 | 97,0,327,3,98, | ||
5901 | 0,327,3,99,0, | ||
5902 | 327,3,100,0,327, | ||
5903 | 3,101,0,327,3, | ||
5904 | 102,0,327,3,103, | ||
5905 | 0,327,3,104,0, | ||
5906 | 327,3,105,0,327, | ||
5907 | 3,106,0,327,3, | ||
5908 | 107,0,327,3,108, | ||
5909 | 0,327,609,11,1, | ||
5910 | 829,0,330,1,-1, | ||
5911 | 610,11,1,829,0, | ||
5912 | 330,1,-1,3,103, | ||
5913 | 0,325,3,104,0, | ||
5914 | 611,12,1,30112,612, | ||
5915 | 5,63,3,109,0, | ||
5916 | 327,3,110,0,327, | ||
5917 | 3,111,0,327,3, | ||
5918 | 112,0,327,3,113, | ||
5919 | 0,327,3,114,0, | ||
5920 | 327,3,115,0,327, | ||
5921 | 3,116,0,613,12, | ||
5922 | 1,30147,614,5,63, | ||
5923 | 3,109,0,327,3, | ||
5924 | 110,0,327,3,111, | ||
5925 | 0,327,3,112,0, | ||
5926 | 327,3,113,0,327, | ||
5927 | 3,114,0,327,3, | ||
5928 | 115,0,327,3,116, | ||
5929 | 0,615,12,1,30182, | ||
5930 | 616,5,63,3,109, | ||
5931 | 0,327,3,110,0, | ||
5932 | 327,3,111,0,327, | ||
5933 | 3,112,0,617,12, | ||
5934 | 1,30213,618,5,63, | ||
5935 | 3,109,0,327,3, | ||
5936 | 110,0,327,3,111, | ||
5937 | 0,327,3,112,0, | ||
5938 | 327,3,113,0,327, | ||
5939 | 3,114,0,327,3, | ||
5940 | 115,0,327,3,116, | ||
5941 | 0,327,3,117,0, | ||
5942 | 327,3,118,0,327, | ||
5943 | 3,119,0,327,3, | ||
5944 | 120,0,327,3,121, | ||
5945 | 0,327,3,122,0, | ||
5946 | 327,3,48,0,327, | ||
5947 | 3,49,0,327,3, | ||
5948 | 50,0,327,3,51, | ||
5949 | 0,327,3,52,0, | ||
5950 | 327,3,53,0,327, | ||
5951 | 3,54,0,327,3, | ||
5952 | 55,0,327,3,56, | ||
5953 | 0,327,3,57,0, | ||
5954 | 327,3,65,0,327, | ||
5955 | 3,66,0,327,3, | ||
5956 | 67,0,327,3,68, | ||
5957 | 0,327,3,69,0, | ||
5958 | 327,3,70,0,327, | ||
5959 | 3,71,0,327,3, | ||
5960 | 72,0,327,3,73, | ||
5961 | 0,327,3,74,0, | ||
5962 | 327,3,75,0,327, | ||
5963 | 3,76,0,327,3, | ||
5964 | 77,0,327,3,78, | ||
5965 | 0,327,3,79,0, | ||
5966 | 327,3,80,0,327, | ||
5967 | 3,81,0,327,3, | ||
5968 | 82,0,327,3,83, | ||
5969 | 0,327,3,84,0, | ||
5970 | 327,3,85,0,327, | ||
5971 | 3,86,0,327,3, | ||
5972 | 87,0,327,3,88, | ||
5973 | 0,327,3,89,0, | ||
5974 | 327,3,90,0,327, | ||
5975 | 3,95,0,619,12, | ||
5976 | 1,30299,620,5,63, | ||
5977 | 3,109,0,327,3, | ||
5978 | 110,0,327,3,111, | ||
5979 | 0,327,3,112,0, | ||
5980 | 327,3,113,0,327, | ||
5981 | 3,114,0,621,12, | ||
5982 | 1,30332,622,5,63, | ||
5983 | 3,109,0,327,3, | ||
5984 | 110,0,327,3,111, | ||
5985 | 0,327,3,112,0, | ||
5986 | 327,3,113,0,327, | ||
5987 | 3,114,0,327,3, | ||
5988 | 115,0,327,3,116, | ||
5989 | 0,327,3,117,0, | ||
5990 | 327,3,118,0,327, | ||
5991 | 3,119,0,327,3, | ||
5992 | 120,0,327,3,121, | ||
5993 | 0,327,3,122,0, | ||
5994 | 327,3,48,0,327, | ||
5995 | 3,49,0,327,3, | ||
5996 | 50,0,327,3,51, | ||
5997 | 0,327,3,52,0, | ||
5998 | 327,3,53,0,327, | ||
5999 | 3,54,0,327,3, | ||
6000 | 55,0,327,3,56, | ||
6001 | 0,327,3,57,0, | ||
6002 | 327,3,65,0,327, | ||
6003 | 3,66,0,327,3, | ||
6004 | 67,0,327,3,68, | ||
6005 | 0,327,3,69,0, | ||
6006 | 327,3,70,0,327, | ||
6007 | 3,71,0,327,3, | ||
6008 | 72,0,327,3,73, | ||
6009 | 0,327,3,74,0, | ||
6010 | 327,3,75,0,327, | ||
6011 | 3,76,0,327,3, | ||
6012 | 77,0,327,3,78, | ||
6013 | 0,327,3,79,0, | ||
6014 | 327,3,80,0,327, | ||
6015 | 3,81,0,327,3, | ||
6016 | 82,0,327,3,83, | ||
6017 | 0,327,3,84,0, | ||
6018 | 327,3,85,0,327, | ||
6019 | 3,86,0,327,3, | ||
6020 | 87,0,327,3,88, | ||
6021 | 0,327,3,89,0, | ||
6022 | 327,3,90,0,327, | ||
6023 | 3,95,0,327,3, | ||
6024 | 97,0,327,3,98, | ||
6025 | 0,327,3,99,0, | ||
6026 | 327,3,100,0,327, | ||
6027 | 3,101,0,623,12, | ||
6028 | 1,30379,624,5,63, | ||
6029 | 3,109,0,327,3, | ||
6030 | 110,0,327,3,111, | ||
6031 | 0,327,3,112,0, | ||
6032 | 327,3,113,0,327, | ||
6033 | 3,114,0,327,3, | ||
6034 | 115,0,625,12,1, | ||
6035 | 30413,626,5,63,3, | ||
6036 | 109,0,327,3,110, | ||
6037 | 0,327,3,111,0, | ||
6038 | 327,3,112,0,627, | ||
6039 | 12,1,30444,628,5, | ||
6040 | 63,3,109,0,327, | ||
6041 | 3,110,0,327,3, | ||
6042 | 111,0,629,12,1, | ||
6043 | 30474,630,5,63,3, | ||
6044 | 109,0,327,3,110, | ||
6045 | 0,631,12,1,30503, | ||
6046 | 632,5,63,3,109, | ||
6047 | 0,327,3,110,0, | ||
6048 | 327,3,111,0,327, | ||
6049 | 3,112,0,327,3, | ||
6050 | 113,0,327,3,114, | ||
6051 | 0,327,3,115,0, | ||
6052 | 633,12,1,30537,634, | ||
6053 | 5,63,3,109,0, | ||
6054 | 327,3,110,0,327, | ||
6055 | 3,111,0,327,3, | ||
6056 | 112,0,327,3,113, | ||
6057 | 0,327,3,114,0, | ||
6058 | 327,3,115,0,327, | ||
6059 | 3,116,0,327,3, | ||
6060 | 117,0,327,3,118, | ||
6061 | 0,327,3,119,0, | ||
6062 | 327,3,120,0,327, | ||
6063 | 3,121,0,327,3, | ||
6064 | 122,0,327,3,48, | ||
6065 | 0,327,3,49,0, | ||
6066 | 327,3,50,0,327, | ||
6067 | 3,51,0,327,3, | ||
6068 | 52,0,327,3,53, | ||
6069 | 0,327,3,54,0, | ||
6070 | 327,3,55,0,327, | ||
6071 | 3,56,0,327,3, | ||
6072 | 57,0,327,3,65, | ||
6073 | 0,327,3,66,0, | ||
6074 | 327,3,67,0,327, | ||
6075 | 3,68,0,327,3, | ||
6076 | 69,0,327,3,70, | ||
6077 | 0,327,3,71,0, | ||
6078 | 327,3,72,0,327, | ||
6079 | 3,73,0,327,3, | ||
6080 | 74,0,327,3,75, | ||
6081 | 0,327,3,76,0, | ||
6082 | 327,3,77,0,327, | ||
6083 | 3,78,0,327,3, | ||
6084 | 79,0,327,3,80, | ||
6085 | 0,327,3,81,0, | ||
6086 | 327,3,82,0,327, | ||
6087 | 3,83,0,327,3, | ||
6088 | 84,0,327,3,85, | ||
6089 | 0,327,3,86,0, | ||
6090 | 327,3,87,0,327, | ||
6091 | 3,88,0,327,3, | ||
6092 | 89,0,327,3,90, | ||
6093 | 0,327,3,95,0, | ||
6094 | 327,3,97,0,327, | ||
6095 | 3,98,0,327,3, | ||
6096 | 99,0,327,3,100, | ||
6097 | 0,327,3,101,0, | ||
6098 | 635,12,1,30584,636, | ||
6099 | 5,63,3,109,0, | ||
6100 | 327,3,110,0,327, | ||
6101 | 3,111,0,327,3, | ||
6102 | 112,0,327,3,113, | ||
6103 | 0,327,3,114,0, | ||
6104 | 327,3,115,0,327, | ||
6105 | 3,116,0,327,3, | ||
6106 | 117,0,327,3,118, | ||
6107 | 0,327,3,119,0, | ||
6108 | 327,3,120,0,327, | ||
6109 | 3,121,0,327,3, | ||
6110 | 122,0,327,3,48, | ||
6111 | 0,327,3,49,0, | ||
6112 | 327,3,50,0,327, | ||
6113 | 3,51,0,327,3, | ||
6114 | 52,0,327,3,53, | ||
6115 | 0,327,3,54,0, | ||
6116 | 327,3,55,0,327, | ||
6117 | 3,56,0,327,3, | ||
6118 | 57,0,327,3,65, | ||
6119 | 0,327,3,66,0, | ||
6120 | 327,3,67,0,327, | ||
6121 | 3,68,0,327,3, | ||
6122 | 69,0,327,3,70, | ||
6123 | 0,327,3,71,0, | ||
6124 | 327,3,72,0,327, | ||
6125 | 3,73,0,327,3, | ||
6126 | 74,0,327,3,75, | ||
6127 | 0,327,3,76,0, | ||
6128 | 327,3,77,0,327, | ||
6129 | 3,78,0,327,3, | ||
6130 | 79,0,327,3,80, | ||
6131 | 0,327,3,81,0, | ||
6132 | 327,3,82,0,327, | ||
6133 | 3,83,0,327,3, | ||
6134 | 84,0,327,3,85, | ||
6135 | 0,327,3,86,0, | ||
6136 | 327,3,87,0,327, | ||
6137 | 3,88,0,327,3, | ||
6138 | 89,0,327,3,90, | ||
6139 | 0,327,3,95,0, | ||
6140 | 327,3,97,0,327, | ||
6141 | 3,98,0,327,3, | ||
6142 | 99,0,327,3,100, | ||
6143 | 0,327,3,101,0, | ||
6144 | 327,3,102,0,327, | ||
6145 | 3,103,0,327,3, | ||
6146 | 104,0,327,3,105, | ||
6147 | 0,327,3,106,0, | ||
6148 | 327,3,107,0,327, | ||
6149 | 3,108,0,327,637, | ||
6150 | 11,1,484,0,638, | ||
6151 | 4,38,72,0,84, | ||
6152 | 0,84,0,80,0, | ||
6153 | 95,0,82,0,69, | ||
6154 | 0,83,0,80,0, | ||
6155 | 79,0,78,0,83, | ||
6156 | 0,69,0,95,0, | ||
6157 | 69,0,86,0,69, | ||
6158 | 0,78,0,84,0, | ||
6159 | 1,-1,3,102,0, | ||
6160 | 327,3,103,0,327, | ||
6161 | 3,104,0,327,3, | ||
6162 | 105,0,327,3,106, | ||
6163 | 0,327,3,107,0, | ||
6164 | 327,3,108,0,327, | ||
6165 | 639,11,1,829,0, | ||
6166 | 330,1,-1,3,116, | ||
6167 | 0,327,3,117,0, | ||
6168 | 327,3,118,0,327, | ||
6169 | 3,119,0,327,3, | ||
6170 | 120,0,327,3,121, | ||
6171 | 0,327,3,122,0, | ||
6172 | 327,3,48,0,327, | ||
6173 | 3,49,0,327,3, | ||
6174 | 50,0,327,3,51, | ||
6175 | 0,327,3,52,0, | ||
6176 | 327,3,53,0,327, | ||
6177 | 3,54,0,327,3, | ||
6178 | 55,0,327,3,56, | ||
6179 | 0,327,3,57,0, | ||
6180 | 327,3,65,0,327, | ||
6181 | 3,66,0,327,3, | ||
6182 | 67,0,327,3,68, | ||
6183 | 0,327,3,69,0, | ||
6184 | 327,3,70,0,327, | ||
6185 | 3,71,0,327,3, | ||
6186 | 72,0,327,3,73, | ||
6187 | 0,327,3,74,0, | ||
6188 | 327,3,75,0,327, | ||
6189 | 3,76,0,327,3, | ||
6190 | 77,0,327,3,78, | ||
6191 | 0,327,3,79,0, | ||
6192 | 327,3,80,0,327, | ||
6193 | 3,81,0,327,3, | ||
6194 | 82,0,327,3,83, | ||
6195 | 0,327,3,84,0, | ||
6196 | 327,3,85,0,327, | ||
6197 | 3,86,0,327,3, | ||
6198 | 87,0,327,3,88, | ||
6199 | 0,327,3,89,0, | ||
6200 | 327,3,90,0,327, | ||
6201 | 3,95,0,327,3, | ||
6202 | 97,0,327,3,98, | ||
6203 | 0,327,3,99,0, | ||
6204 | 327,3,100,0,327, | ||
6205 | 3,101,0,327,3, | ||
6206 | 102,0,327,3,103, | ||
6207 | 0,327,3,104,0, | ||
6208 | 327,3,105,0,327, | ||
6209 | 3,106,0,327,3, | ||
6210 | 107,0,327,3,108, | ||
6211 | 0,327,640,11,1, | ||
6212 | 829,0,330,1,-1, | ||
6213 | 3,111,0,327,3, | ||
6214 | 112,0,327,3,113, | ||
6215 | 0,327,3,114,0, | ||
6216 | 327,3,115,0,327, | ||
6217 | 3,116,0,327,3, | ||
6218 | 117,0,327,3,118, | ||
6219 | 0,327,3,119,0, | ||
6220 | 327,3,120,0,327, | ||
6221 | 3,121,0,327,3, | ||
6222 | 122,0,327,3,48, | ||
6223 | 0,327,3,49,0, | ||
6224 | 327,3,50,0,327, | ||
6225 | 3,51,0,327,3, | ||
6226 | 52,0,327,3,53, | ||
6227 | 0,327,3,54,0, | ||
6228 | 327,3,55,0,327, | ||
6229 | 3,56,0,327,3, | ||
6230 | 57,0,327,3,65, | ||
6231 | 0,327,3,66,0, | ||
6232 | 327,3,67,0,327, | ||
6233 | 3,68,0,327,3, | ||
6234 | 69,0,327,3,70, | ||
6235 | 0,327,3,71,0, | ||
6236 | 327,3,72,0,327, | ||
6237 | 3,73,0,327,3, | ||
6238 | 74,0,327,3,75, | ||
6239 | 0,327,3,76,0, | ||
6240 | 327,3,77,0,327, | ||
6241 | 3,78,0,327,3, | ||
6242 | 79,0,327,3,80, | ||
6243 | 0,327,3,81,0, | ||
6244 | 327,3,82,0,327, | ||
6245 | 3,83,0,327,3, | ||
6246 | 84,0,327,3,85, | ||
6247 | 0,327,3,86,0, | ||
6248 | 327,3,87,0,327, | ||
6249 | 3,88,0,327,3, | ||
6250 | 89,0,327,3,90, | ||
6251 | 0,327,3,95,0, | ||
6252 | 327,3,97,0,327, | ||
6253 | 3,98,0,327,3, | ||
6254 | 99,0,327,3,100, | ||
6255 | 0,327,3,101,0, | ||
6256 | 327,3,102,0,327, | ||
6257 | 3,103,0,327,3, | ||
6258 | 104,0,327,3,105, | ||
6259 | 0,327,3,106,0, | ||
6260 | 327,3,107,0,327, | ||
6261 | 3,108,0,327,641, | ||
6262 | 11,1,829,0,330, | ||
6263 | 1,-1,3,112,0, | ||
6264 | 327,3,113,0,327, | ||
6265 | 3,114,0,327,3, | ||
6266 | 115,0,327,3,116, | ||
6267 | 0,327,3,117,0, | ||
6268 | 327,3,118,0,327, | ||
6269 | 3,119,0,327,3, | ||
6270 | 120,0,327,3,121, | ||
6271 | 0,327,3,122,0, | ||
6272 | 327,3,48,0,327, | ||
6273 | 3,49,0,327,3, | ||
6274 | 50,0,327,3,51, | ||
6275 | 0,327,3,52,0, | ||
6276 | 327,3,53,0,327, | ||
6277 | 3,54,0,327,3, | ||
6278 | 55,0,327,3,56, | ||
6279 | 0,327,3,57,0, | ||
6280 | 327,3,65,0,327, | ||
6281 | 3,66,0,327,3, | ||
6282 | 67,0,327,3,68, | ||
6283 | 0,327,3,69,0, | ||
6284 | 327,3,70,0,327, | ||
6285 | 3,71,0,327,3, | ||
6286 | 72,0,327,3,73, | ||
6287 | 0,327,3,74,0, | ||
6288 | 327,3,75,0,327, | ||
6289 | 3,76,0,327,3, | ||
6290 | 77,0,327,3,78, | ||
6291 | 0,327,3,79,0, | ||
6292 | 327,3,80,0,327, | ||
6293 | 3,81,0,327,3, | ||
6294 | 82,0,327,3,83, | ||
6295 | 0,327,3,84,0, | ||
6296 | 327,3,85,0,327, | ||
6297 | 3,86,0,327,3, | ||
6298 | 87,0,327,3,88, | ||
6299 | 0,327,3,89,0, | ||
6300 | 327,3,90,0,327, | ||
6301 | 3,95,0,327,3, | ||
6302 | 97,0,327,3,98, | ||
6303 | 0,327,3,99,0, | ||
6304 | 327,3,100,0,327, | ||
6305 | 3,101,0,327,3, | ||
6306 | 102,0,327,3,103, | ||
6307 | 0,327,3,104,0, | ||
6308 | 327,3,105,0,327, | ||
6309 | 3,106,0,327,3, | ||
6310 | 107,0,327,3,108, | ||
6311 | 0,327,642,11,1, | ||
6312 | 829,0,330,1,-1, | ||
6313 | 3,113,0,327,3, | ||
6314 | 114,0,327,3,115, | ||
6315 | 0,327,3,116,0, | ||
6316 | 327,3,117,0,327, | ||
6317 | 3,118,0,327,3, | ||
6318 | 119,0,327,3,120, | ||
6319 | 0,327,3,121,0, | ||
6320 | 327,3,122,0,327, | ||
6321 | 3,48,0,327,3, | ||
6322 | 49,0,327,3,50, | ||
6323 | 0,327,3,51,0, | ||
6324 | 327,3,52,0,327, | ||
6325 | 3,53,0,327,3, | ||
6326 | 54,0,327,3,55, | ||
6327 | 0,327,3,56,0, | ||
6328 | 327,3,57,0,327, | ||
6329 | 3,65,0,327,3, | ||
6330 | 66,0,327,3,67, | ||
6331 | 0,327,3,68,0, | ||
6332 | 327,3,69,0,327, | ||
6333 | 3,70,0,327,3, | ||
6334 | 71,0,327,3,72, | ||
6335 | 0,327,3,73,0, | ||
6336 | 327,3,74,0,327, | ||
6337 | 3,75,0,327,3, | ||
6338 | 76,0,327,3,77, | ||
6339 | 0,327,3,78,0, | ||
6340 | 327,3,79,0,327, | ||
6341 | 3,80,0,327,3, | ||
6342 | 81,0,327,3,82, | ||
6343 | 0,327,3,83,0, | ||
6344 | 327,3,84,0,327, | ||
6345 | 3,85,0,327,3, | ||
6346 | 86,0,327,3,87, | ||
6347 | 0,327,3,88,0, | ||
6348 | 327,3,89,0,327, | ||
6349 | 3,90,0,327,3, | ||
6350 | 95,0,327,3,97, | ||
6351 | 0,327,3,98,0, | ||
6352 | 327,3,99,0,327, | ||
6353 | 3,100,0,327,3, | ||
6354 | 101,0,327,3,102, | ||
6355 | 0,327,3,103,0, | ||
6356 | 327,3,104,0,327, | ||
6357 | 3,105,0,327,3, | ||
6358 | 106,0,327,3,107, | ||
6359 | 0,327,3,108,0, | ||
6360 | 327,643,11,1,829, | ||
6361 | 0,330,1,-1,3, | ||
6362 | 116,0,327,3,117, | ||
6363 | 0,327,3,118,0, | ||
6364 | 327,3,119,0,327, | ||
6365 | 3,120,0,327,3, | ||
6366 | 121,0,327,3,122, | ||
6367 | 0,327,3,48,0, | ||
6368 | 327,3,49,0,327, | ||
6369 | 3,50,0,327,3, | ||
6370 | 51,0,327,3,52, | ||
6371 | 0,327,3,53,0, | ||
6372 | 327,3,54,0,327, | ||
6373 | 3,55,0,327,3, | ||
6374 | 56,0,327,3,57, | ||
6375 | 0,327,3,65,0, | ||
6376 | 327,3,66,0,327, | ||
6377 | 3,67,0,327,3, | ||
6378 | 68,0,327,3,69, | ||
6379 | 0,327,3,70,0, | ||
6380 | 327,3,71,0,327, | ||
6381 | 3,72,0,327,3, | ||
6382 | 73,0,327,3,74, | ||
6383 | 0,327,3,75,0, | ||
6384 | 327,3,76,0,327, | ||
6385 | 3,77,0,327,3, | ||
6386 | 78,0,327,3,79, | ||
6387 | 0,327,3,80,0, | ||
6388 | 327,3,81,0,327, | ||
6389 | 3,82,0,327,3, | ||
6390 | 83,0,327,3,84, | ||
6391 | 0,327,3,85,0, | ||
6392 | 327,3,86,0,327, | ||
6393 | 3,87,0,327,3, | ||
6394 | 88,0,327,3,89, | ||
6395 | 0,327,3,90,0, | ||
6396 | 327,3,95,0,327, | ||
6397 | 3,97,0,327,3, | ||
6398 | 98,0,327,3,99, | ||
6399 | 0,327,3,100,0, | ||
6400 | 327,3,101,0,327, | ||
6401 | 3,102,0,327,3, | ||
6402 | 103,0,327,3,104, | ||
6403 | 0,327,3,105,0, | ||
6404 | 327,3,106,0,327, | ||
6405 | 3,107,0,327,3, | ||
6406 | 108,0,327,644,11, | ||
6407 | 1,829,0,330,1, | ||
6408 | -1,3,102,0,327, | ||
6409 | 3,103,0,327,3, | ||
6410 | 104,0,327,3,105, | ||
6411 | 0,327,3,106,0, | ||
6412 | 327,3,107,0,327, | ||
6413 | 3,108,0,327,645, | ||
6414 | 11,1,829,0,330, | ||
6415 | 1,-1,3,115,0, | ||
6416 | 327,3,116,0,327, | ||
6417 | 3,117,0,327,3, | ||
6418 | 118,0,327,3,119, | ||
6419 | 0,327,3,120,0, | ||
6420 | 327,3,121,0,327, | ||
6421 | 3,122,0,327,3, | ||
6422 | 48,0,327,3,49, | ||
6423 | 0,327,3,50,0, | ||
6424 | 327,3,51,0,327, | ||
6425 | 3,52,0,327,3, | ||
6426 | 53,0,327,3,54, | ||
6427 | 0,327,3,55,0, | ||
6428 | 327,3,56,0,327, | ||
6429 | 3,57,0,327,3, | ||
6430 | 65,0,327,3,66, | ||
6431 | 0,327,3,67,0, | ||
6432 | 327,3,68,0,327, | ||
6433 | 3,69,0,327,3, | ||
6434 | 70,0,327,3,71, | ||
6435 | 0,327,3,72,0, | ||
6436 | 327,3,73,0,327, | ||
6437 | 3,74,0,327,3, | ||
6438 | 75,0,327,3,76, | ||
6439 | 0,327,3,77,0, | ||
6440 | 327,3,78,0,327, | ||
6441 | 3,79,0,327,3, | ||
6442 | 80,0,327,3,81, | ||
6443 | 0,327,3,82,0, | ||
6444 | 327,3,83,0,327, | ||
6445 | 3,84,0,327,3, | ||
6446 | 85,0,327,3,86, | ||
6447 | 0,327,3,87,0, | ||
6448 | 327,3,88,0,327, | ||
6449 | 3,89,0,327,3, | ||
6450 | 90,0,327,3,95, | ||
6451 | 0,327,3,97,0, | ||
6452 | 327,3,98,0,327, | ||
6453 | 3,99,0,327,3, | ||
6454 | 100,0,327,3,101, | ||
6455 | 0,327,3,102,0, | ||
6456 | 327,3,103,0,327, | ||
6457 | 3,104,0,327,3, | ||
6458 | 105,0,327,3,106, | ||
6459 | 0,327,3,107,0, | ||
6460 | 327,3,108,0,327, | ||
6461 | 646,11,1,829,0, | ||
6462 | 330,1,-1,3,97, | ||
6463 | 0,327,3,98,0, | ||
6464 | 327,3,99,0,327, | ||
6465 | 3,100,0,327,3, | ||
6466 | 101,0,327,3,102, | ||
6467 | 0,327,3,103,0, | ||
6468 | 327,3,104,0,327, | ||
6469 | 3,105,0,327,3, | ||
6470 | 106,0,327,3,107, | ||
6471 | 0,327,3,108,0, | ||
6472 | 327,647,11,1,829, | ||
6473 | 0,330,1,-1,3, | ||
6474 | 113,0,327,3,114, | ||
6475 | 0,327,3,115,0, | ||
6476 | 327,3,116,0,327, | ||
6477 | 3,117,0,327,3, | ||
6478 | 118,0,327,3,119, | ||
6479 | 0,327,3,120,0, | ||
6480 | 327,3,121,0,327, | ||
6481 | 3,122,0,327,3, | ||
6482 | 48,0,327,3,49, | ||
6483 | 0,327,3,50,0, | ||
6484 | 327,3,51,0,327, | ||
6485 | 3,52,0,327,3, | ||
6486 | 53,0,327,3,54, | ||
6487 | 0,327,3,55,0, | ||
6488 | 327,3,56,0,327, | ||
6489 | 3,57,0,327,3, | ||
6490 | 65,0,327,3,66, | ||
6491 | 0,327,3,67,0, | ||
6492 | 327,3,68,0,327, | ||
6493 | 3,69,0,327,3, | ||
6494 | 70,0,327,3,71, | ||
6495 | 0,327,3,72,0, | ||
6496 | 327,3,73,0,327, | ||
6497 | 3,74,0,327,3, | ||
6498 | 75,0,327,3,76, | ||
6499 | 0,327,3,77,0, | ||
6500 | 327,3,78,0,327, | ||
6501 | 3,79,0,327,3, | ||
6502 | 80,0,327,3,81, | ||
6503 | 0,327,3,82,0, | ||
6504 | 327,3,83,0,327, | ||
6505 | 3,84,0,327,3, | ||
6506 | 85,0,327,3,86, | ||
6507 | 0,327,3,87,0, | ||
6508 | 327,3,88,0,327, | ||
6509 | 3,89,0,327,3, | ||
6510 | 90,0,327,3,95, | ||
6511 | 0,327,3,97,0, | ||
6512 | 327,3,98,0,327, | ||
6513 | 3,99,0,327,3, | ||
6514 | 100,0,327,3,101, | ||
6515 | 0,327,3,102,0, | ||
6516 | 327,3,103,0,327, | ||
6517 | 3,104,0,327,3, | ||
6518 | 105,0,327,3,106, | ||
6519 | 0,327,3,107,0, | ||
6520 | 327,3,108,0,327, | ||
6521 | 648,11,1,829,0, | ||
6522 | 330,1,-1,3,117, | ||
6523 | 0,327,3,118,0, | ||
6524 | 327,3,119,0,327, | ||
6525 | 3,120,0,327,3, | ||
6526 | 121,0,327,3,122, | ||
6527 | 0,327,3,48,0, | ||
6528 | 327,3,49,0,327, | ||
6529 | 3,50,0,327,3, | ||
6530 | 51,0,327,3,52, | ||
6531 | 0,327,3,53,0, | ||
6532 | 327,3,54,0,327, | ||
6533 | 3,55,0,327,3, | ||
6534 | 56,0,327,3,57, | ||
6535 | 0,327,3,65,0, | ||
6536 | 327,3,66,0,327, | ||
6537 | 3,67,0,327,3, | ||
6538 | 68,0,327,3,69, | ||
6539 | 0,327,3,70,0, | ||
6540 | 327,3,71,0,327, | ||
6541 | 3,72,0,327,3, | ||
6542 | 73,0,327,3,74, | ||
6543 | 0,327,3,75,0, | ||
6544 | 327,3,76,0,327, | ||
6545 | 3,77,0,327,3, | ||
6546 | 78,0,327,3,79, | ||
6547 | 0,327,3,80,0, | ||
6548 | 327,3,81,0,327, | ||
6549 | 3,82,0,327,3, | ||
6550 | 83,0,327,3,84, | ||
6551 | 0,327,3,85,0, | ||
6552 | 327,3,86,0,327, | ||
6553 | 3,87,0,327,3, | ||
6554 | 88,0,327,3,89, | ||
6555 | 0,327,3,90,0, | ||
6556 | 327,3,95,0,327, | ||
6557 | 3,97,0,327,3, | ||
6558 | 98,0,327,3,99, | ||
6559 | 0,327,3,100,0, | ||
6560 | 327,3,101,0,327, | ||
6561 | 3,102,0,327,3, | ||
6562 | 103,0,327,3,104, | ||
6563 | 0,327,3,105,0, | ||
6564 | 327,3,106,0,327, | ||
6565 | 3,107,0,327,3, | ||
6566 | 108,0,327,649,11, | ||
6567 | 1,829,0,330,1, | ||
6568 | -1,3,117,0,327, | ||
6569 | 3,118,0,327,3, | ||
6570 | 119,0,327,3,120, | ||
6571 | 0,327,3,121,0, | ||
6572 | 327,3,122,0,327, | ||
6573 | 3,48,0,327,3, | ||
6574 | 49,0,327,3,50, | ||
6575 | 0,327,3,51,0, | ||
6576 | 327,3,52,0,327, | ||
6577 | 3,53,0,327,3, | ||
6578 | 54,0,327,3,55, | ||
6579 | 0,327,3,56,0, | ||
6580 | 327,3,57,0,327, | ||
6581 | 3,65,0,327,3, | ||
6582 | 66,0,327,3,67, | ||
6583 | 0,327,3,68,0, | ||
6584 | 327,3,69,0,327, | ||
6585 | 3,70,0,327,3, | ||
6586 | 71,0,327,3,72, | ||
6587 | 0,327,3,73,0, | ||
6588 | 327,3,74,0,327, | ||
6589 | 3,75,0,327,3, | ||
6590 | 76,0,327,3,77, | ||
6591 | 0,327,3,78,0, | ||
6592 | 327,3,79,0,327, | ||
6593 | 3,80,0,327,3, | ||
6594 | 81,0,327,3,82, | ||
6595 | 0,327,3,83,0, | ||
6596 | 327,3,84,0,327, | ||
6597 | 3,85,0,327,3, | ||
6598 | 86,0,327,3,87, | ||
6599 | 0,327,3,88,0, | ||
6600 | 327,3,89,0,327, | ||
6601 | 3,90,0,327,3, | ||
6602 | 95,0,327,3,97, | ||
6603 | 0,327,3,98,0, | ||
6604 | 327,3,99,0,327, | ||
6605 | 3,100,0,327,3, | ||
6606 | 101,0,327,3,102, | ||
6607 | 0,327,3,103,0, | ||
6608 | 327,3,104,0,327, | ||
6609 | 3,105,0,327,3, | ||
6610 | 106,0,327,3,107, | ||
6611 | 0,327,3,108,0, | ||
6612 | 327,650,11,1,829, | ||
6613 | 0,330,1,-1,3, | ||
6614 | 105,0,651,12,1, | ||
6615 | 31673,652,5,63,3, | ||
6616 | 109,0,327,3,110, | ||
6617 | 0,653,12,1,31702, | ||
6618 | 654,5,63,3,109, | ||
6619 | 0,327,3,110,0, | ||
6620 | 327,3,111,0,327, | ||
6621 | 3,112,0,327,3, | ||
6622 | 113,0,327,3,114, | ||
6623 | 0,327,3,115,0, | ||
6624 | 327,3,116,0,655, | ||
6625 | 12,1,31737,656,5, | ||
6626 | 63,3,109,0,327, | ||
6627 | 3,110,0,327,3, | ||
6628 | 111,0,327,3,112, | ||
6629 | 0,327,3,113,0, | ||
6630 | 327,3,114,0,327, | ||
6631 | 3,115,0,327,3, | ||
6632 | 116,0,327,3,117, | ||
6633 | 0,327,3,118,0, | ||
6634 | 327,3,119,0,327, | ||
6635 | 3,120,0,327,3, | ||
6636 | 121,0,327,3,122, | ||
6637 | 0,327,3,48,0, | ||
6638 | 327,3,49,0,327, | ||
6639 | 3,50,0,327,3, | ||
6640 | 51,0,327,3,52, | ||
6641 | 0,327,3,53,0, | ||
6642 | 327,3,54,0,327, | ||
6643 | 3,55,0,327,3, | ||
6644 | 56,0,327,3,57, | ||
6645 | 0,327,3,65,0, | ||
6646 | 327,3,66,0,327, | ||
6647 | 3,67,0,327,3, | ||
6648 | 68,0,327,3,69, | ||
6649 | 0,327,3,70,0, | ||
6650 | 327,3,71,0,327, | ||
6651 | 3,72,0,327,3, | ||
6652 | 73,0,327,3,74, | ||
6653 | 0,327,3,75,0, | ||
6654 | 327,3,76,0,327, | ||
6655 | 3,77,0,327,3, | ||
6656 | 78,0,327,3,79, | ||
6657 | 0,327,3,80,0, | ||
6658 | 327,3,81,0,327, | ||
6659 | 3,82,0,327,3, | ||
6660 | 83,0,327,3,84, | ||
6661 | 0,327,3,85,0, | ||
6662 | 327,3,86,0,327, | ||
6663 | 3,87,0,327,3, | ||
6664 | 88,0,327,3,89, | ||
6665 | 0,327,3,90,0, | ||
6666 | 327,3,95,0,327, | ||
6667 | 3,97,0,327,3, | ||
6668 | 98,0,327,3,99, | ||
6669 | 0,327,3,100,0, | ||
6670 | 327,3,101,0,657, | ||
6671 | 12,1,31784,658,5, | ||
6672 | 63,3,109,0,327, | ||
6673 | 3,110,0,327,3, | ||
6674 | 111,0,327,3,112, | ||
6675 | 0,327,3,113,0, | ||
6676 | 327,3,114,0,327, | ||
6677 | 3,115,0,327,3, | ||
6678 | 116,0,327,3,117, | ||
6679 | 0,327,3,118,0, | ||
6680 | 327,3,119,0,327, | ||
6681 | 3,120,0,327,3, | ||
6682 | 121,0,327,3,122, | ||
6683 | 0,327,3,48,0, | ||
6684 | 327,3,49,0,327, | ||
6685 | 3,50,0,327,3, | ||
6686 | 51,0,327,3,52, | ||
6687 | 0,327,3,53,0, | ||
6688 | 327,3,54,0,327, | ||
6689 | 3,55,0,327,3, | ||
6690 | 56,0,327,3,57, | ||
6691 | 0,327,3,65,0, | ||
6692 | 327,3,66,0,327, | ||
6693 | 3,67,0,327,3, | ||
6694 | 68,0,327,3,69, | ||
6695 | 0,327,3,70,0, | ||
6696 | 327,3,71,0,327, | ||
6697 | 3,72,0,327,3, | ||
6698 | 73,0,327,3,74, | ||
6699 | 0,327,3,75,0, | ||
6700 | 327,3,76,0,327, | ||
6701 | 3,77,0,327,3, | ||
6702 | 78,0,327,3,79, | ||
6703 | 0,327,3,80,0, | ||
6704 | 327,3,81,0,327, | ||
6705 | 3,82,0,327,3, | ||
6706 | 83,0,327,3,84, | ||
6707 | 0,327,3,85,0, | ||
6708 | 327,3,86,0,327, | ||
6709 | 3,87,0,327,3, | ||
6710 | 88,0,327,3,89, | ||
6711 | 0,327,3,90,0, | ||
6712 | 327,3,95,0,327, | ||
6713 | 3,97,0,327,3, | ||
6714 | 98,0,327,3,99, | ||
6715 | 0,327,3,100,0, | ||
6716 | 327,3,101,0,327, | ||
6717 | 3,102,0,327,3, | ||
6718 | 103,0,659,12,1, | ||
6719 | 31833,660,5,63,3, | ||
6720 | 109,0,327,3,110, | ||
6721 | 0,327,3,111,0, | ||
6722 | 327,3,112,0,327, | ||
6723 | 3,113,0,327,3, | ||
6724 | 114,0,327,3,115, | ||
6725 | 0,327,3,116,0, | ||
6726 | 327,3,117,0,327, | ||
6727 | 3,118,0,327,3, | ||
6728 | 119,0,327,3,120, | ||
6729 | 0,327,3,121,0, | ||
6730 | 327,3,122,0,327, | ||
6731 | 3,48,0,327,3, | ||
6732 | 49,0,327,3,50, | ||
6733 | 0,327,3,51,0, | ||
6734 | 327,3,52,0,327, | ||
6735 | 3,53,0,327,3, | ||
6736 | 54,0,327,3,55, | ||
6737 | 0,327,3,56,0, | ||
6738 | 327,3,57,0,327, | ||
6739 | 3,65,0,327,3, | ||
6740 | 66,0,327,3,67, | ||
6741 | 0,327,3,68,0, | ||
6742 | 327,3,69,0,327, | ||
6743 | 3,70,0,327,3, | ||
6744 | 71,0,327,3,72, | ||
6745 | 0,327,3,73,0, | ||
6746 | 327,3,74,0,327, | ||
6747 | 3,75,0,327,3, | ||
6748 | 76,0,327,3,77, | ||
6749 | 0,327,3,78,0, | ||
6750 | 327,3,79,0,327, | ||
6751 | 3,80,0,327,3, | ||
6752 | 81,0,327,3,82, | ||
6753 | 0,327,3,83,0, | ||
6754 | 327,3,84,0,327, | ||
6755 | 3,85,0,327,3, | ||
6756 | 86,0,327,3,87, | ||
6757 | 0,327,3,88,0, | ||
6758 | 327,3,89,0,327, | ||
6759 | 3,90,0,327,3, | ||
6760 | 95,0,327,3,97, | ||
6761 | 0,327,3,98,0, | ||
6762 | 327,3,99,0,327, | ||
6763 | 3,100,0,327,3, | ||
6764 | 101,0,661,12,1, | ||
6765 | 31880,662,5,63,3, | ||
6766 | 109,0,327,3,110, | ||
6767 | 0,327,3,111,0, | ||
6768 | 327,3,112,0,327, | ||
6769 | 3,113,0,327,3, | ||
6770 | 114,0,663,12,1, | ||
6771 | 31913,664,5,63,3, | ||
6772 | 109,0,327,3,110, | ||
6773 | 0,327,3,111,0, | ||
6774 | 327,3,112,0,327, | ||
6775 | 3,113,0,327,3, | ||
6776 | 114,0,327,3,115, | ||
6777 | 0,327,3,116,0, | ||
6778 | 327,3,117,0,327, | ||
6779 | 3,118,0,327,3, | ||
6780 | 119,0,327,3,120, | ||
6781 | 0,327,3,121,0, | ||
6782 | 327,3,122,0,327, | ||
6783 | 3,48,0,327,3, | ||
6784 | 49,0,327,3,50, | ||
6785 | 0,327,3,51,0, | ||
6786 | 327,3,52,0,327, | ||
6787 | 3,53,0,327,3, | ||
6788 | 54,0,327,3,55, | ||
6789 | 0,327,3,56,0, | ||
6790 | 327,3,57,0,327, | ||
6791 | 3,65,0,327,3, | ||
6792 | 66,0,327,3,67, | ||
6793 | 0,327,3,68,0, | ||
6794 | 327,3,69,0,327, | ||
6795 | 3,70,0,327,3, | ||
6796 | 71,0,327,3,72, | ||
6797 | 0,327,3,73,0, | ||
6798 | 327,3,74,0,327, | ||
6799 | 3,75,0,327,3, | ||
6800 | 76,0,327,3,77, | ||
6801 | 0,327,3,78,0, | ||
6802 | 327,3,79,0,327, | ||
6803 | 3,80,0,327,3, | ||
6804 | 81,0,327,3,82, | ||
6805 | 0,327,3,83,0, | ||
6806 | 327,3,84,0,327, | ||
6807 | 3,85,0,327,3, | ||
6808 | 86,0,327,3,87, | ||
6809 | 0,327,3,88,0, | ||
6810 | 327,3,89,0,327, | ||
6811 | 3,90,0,327,3, | ||
6812 | 95,0,327,3,97, | ||
6813 | 0,327,3,98,0, | ||
6814 | 327,3,99,0,327, | ||
6815 | 3,100,0,327,3, | ||
6816 | 101,0,327,3,102, | ||
6817 | 0,327,3,103,0, | ||
6818 | 327,3,104,0,327, | ||
6819 | 3,105,0,327,3, | ||
6820 | 106,0,327,3,107, | ||
6821 | 0,327,3,108,0, | ||
6822 | 327,665,11,1,283, | ||
6823 | 0,666,4,24,73, | ||
6824 | 0,78,0,84,0, | ||
6825 | 69,0,71,0,69, | ||
6826 | 0,82,0,95,0, | ||
6827 | 84,0,89,0,80, | ||
6828 | 0,69,0,1,-1, | ||
6829 | 3,115,0,327,3, | ||
6830 | 116,0,327,3,117, | ||
6831 | 0,327,3,118,0, | ||
6832 | 327,3,119,0,327, | ||
6833 | 3,120,0,327,3, | ||
6834 | 121,0,327,3,122, | ||
6835 | 0,327,3,48,0, | ||
6836 | 327,3,49,0,327, | ||
6837 | 3,50,0,327,3, | ||
6838 | 51,0,327,3,52, | ||
6839 | 0,327,3,53,0, | ||
6840 | 327,3,54,0,327, | ||
6841 | 3,55,0,327,3, | ||
6842 | 56,0,327,3,57, | ||
6843 | 0,327,3,65,0, | ||
6844 | 327,3,66,0,327, | ||
6845 | 3,67,0,327,3, | ||
6846 | 68,0,327,3,69, | ||
6847 | 0,327,3,70,0, | ||
6848 | 327,3,71,0,327, | ||
6849 | 3,72,0,327,3, | ||
6850 | 73,0,327,3,74, | ||
6851 | 0,327,3,75,0, | ||
6852 | 327,3,76,0,327, | ||
6853 | 3,77,0,327,3, | ||
6854 | 78,0,327,3,79, | ||
6855 | 0,327,3,80,0, | ||
6856 | 327,3,81,0,327, | ||
6857 | 3,82,0,327,3, | ||
6858 | 83,0,327,3,84, | ||
6859 | 0,327,3,85,0, | ||
6860 | 327,3,86,0,327, | ||
6861 | 3,87,0,327,3, | ||
6862 | 88,0,327,3,89, | ||
6863 | 0,327,3,90,0, | ||
6864 | 327,3,95,0,327, | ||
6865 | 3,97,0,327,3, | ||
6866 | 98,0,327,3,99, | ||
6867 | 0,327,3,100,0, | ||
6868 | 327,3,101,0,327, | ||
6869 | 3,102,0,327,3, | ||
6870 | 103,0,327,3,104, | ||
6871 | 0,327,3,105,0, | ||
6872 | 327,3,106,0,327, | ||
6873 | 3,107,0,327,3, | ||
6874 | 108,0,327,667,11, | ||
6875 | 1,829,0,330,1, | ||
6876 | -1,3,102,0,327, | ||
6877 | 3,103,0,327,3, | ||
6878 | 104,0,327,3,105, | ||
6879 | 0,327,3,106,0, | ||
6880 | 327,3,107,0,327, | ||
6881 | 3,108,0,327,668, | ||
6882 | 11,1,829,0,330, | ||
6883 | 1,-1,3,104,0, | ||
6884 | 327,3,105,0,327, | ||
6885 | 3,106,0,327,3, | ||
6886 | 107,0,327,3,108, | ||
6887 | 0,327,669,11,1, | ||
6888 | 829,0,330,1,-1, | ||
6889 | 3,102,0,327,3, | ||
6890 | 103,0,327,3,104, | ||
6891 | 0,327,3,105,0, | ||
6892 | 327,3,106,0,327, | ||
6893 | 3,107,0,327,3, | ||
6894 | 108,0,327,670,11, | ||
6895 | 1,829,0,330,1, | ||
6896 | -1,3,117,0,327, | ||
6897 | 3,118,0,327,3, | ||
6898 | 119,0,327,3,120, | ||
6899 | 0,327,3,121,0, | ||
6900 | 327,3,122,0,327, | ||
6901 | 3,48,0,327,3, | ||
6902 | 49,0,327,3,50, | ||
6903 | 0,327,3,51,0, | ||
6904 | 327,3,52,0,327, | ||
6905 | 3,53,0,327,3, | ||
6906 | 54,0,327,3,55, | ||
6907 | 0,327,3,56,0, | ||
6908 | 327,3,57,0,327, | ||
6909 | 3,65,0,327,3, | ||
6910 | 66,0,327,3,67, | ||
6911 | 0,327,3,68,0, | ||
6912 | 327,3,69,0,327, | ||
6913 | 3,70,0,327,3, | ||
6914 | 71,0,327,3,72, | ||
6915 | 0,327,3,73,0, | ||
6916 | 327,3,74,0,327, | ||
6917 | 3,75,0,327,3, | ||
6918 | 76,0,327,3,77, | ||
6919 | 0,327,3,78,0, | ||
6920 | 327,3,79,0,327, | ||
6921 | 3,80,0,327,3, | ||
6922 | 81,0,327,3,82, | ||
6923 | 0,327,3,83,0, | ||
6924 | 327,3,84,0,327, | ||
6925 | 3,85,0,327,3, | ||
6926 | 86,0,327,3,87, | ||
6927 | 0,327,3,88,0, | ||
6928 | 327,3,89,0,327, | ||
6929 | 3,90,0,327,3, | ||
6930 | 95,0,327,3,97, | ||
6931 | 0,327,3,98,0, | ||
6932 | 327,3,99,0,327, | ||
6933 | 3,100,0,327,3, | ||
6934 | 101,0,327,3,102, | ||
6935 | 0,327,3,103,0, | ||
6936 | 327,3,104,0,327, | ||
6937 | 3,105,0,327,3, | ||
6938 | 106,0,327,3,107, | ||
6939 | 0,327,3,108,0, | ||
6940 | 327,671,11,1,829, | ||
6941 | 0,330,1,-1,3, | ||
6942 | 111,0,327,3,112, | ||
6943 | 0,327,3,113,0, | ||
6944 | 327,3,114,0,327, | ||
6945 | 3,115,0,327,3, | ||
6946 | 116,0,327,3,117, | ||
6947 | 0,327,3,118,0, | ||
6948 | 327,3,119,0,327, | ||
6949 | 3,120,0,327,3, | ||
6950 | 121,0,327,3,122, | ||
6951 | 0,327,3,48,0, | ||
6952 | 327,3,49,0,327, | ||
6953 | 3,50,0,327,3, | ||
6954 | 51,0,327,3,52, | ||
6955 | 0,327,3,53,0, | ||
6956 | 327,3,54,0,327, | ||
6957 | 3,55,0,327,3, | ||
6958 | 56,0,327,3,57, | ||
6959 | 0,327,3,65,0, | ||
6960 | 327,3,66,0,327, | ||
6961 | 3,67,0,327,3, | ||
6962 | 68,0,327,3,69, | ||
6963 | 0,327,3,70,0, | ||
6964 | 327,3,71,0,327, | ||
6965 | 3,72,0,327,3, | ||
6966 | 73,0,327,3,74, | ||
6967 | 0,327,3,75,0, | ||
6968 | 327,3,76,0,327, | ||
6969 | 3,77,0,327,3, | ||
6970 | 78,0,327,3,79, | ||
6971 | 0,327,3,80,0, | ||
6972 | 327,3,81,0,327, | ||
6973 | 3,82,0,327,3, | ||
6974 | 83,0,327,3,84, | ||
6975 | 0,327,3,85,0, | ||
6976 | 327,3,86,0,327, | ||
6977 | 3,87,0,327,3, | ||
6978 | 88,0,327,3,89, | ||
6979 | 0,327,3,90,0, | ||
6980 | 327,3,95,0,327, | ||
6981 | 3,97,0,327,3, | ||
6982 | 98,0,327,3,99, | ||
6983 | 0,327,3,100,0, | ||
6984 | 327,3,101,0,327, | ||
6985 | 3,102,0,672,12, | ||
6986 | 1,32441,673,5,63, | ||
6987 | 3,109,0,327,3, | ||
6988 | 110,0,327,3,111, | ||
6989 | 0,327,3,112,0, | ||
6990 | 327,3,113,0,327, | ||
6991 | 3,114,0,327,3, | ||
6992 | 115,0,327,3,116, | ||
6993 | 0,327,3,117,0, | ||
6994 | 327,3,118,0,327, | ||
6995 | 3,119,0,327,3, | ||
6996 | 120,0,327,3,121, | ||
6997 | 0,327,3,122,0, | ||
6998 | 327,3,48,0,327, | ||
6999 | 3,49,0,327,3, | ||
7000 | 50,0,327,3,51, | ||
7001 | 0,327,3,52,0, | ||
7002 | 327,3,53,0,327, | ||
7003 | 3,54,0,327,3, | ||
7004 | 55,0,327,3,56, | ||
7005 | 0,327,3,57,0, | ||
7006 | 327,3,65,0,327, | ||
7007 | 3,66,0,327,3, | ||
7008 | 67,0,327,3,68, | ||
7009 | 0,327,3,69,0, | ||
7010 | 327,3,70,0,327, | ||
7011 | 3,71,0,327,3, | ||
7012 | 72,0,327,3,73, | ||
7013 | 0,327,3,74,0, | ||
7014 | 327,3,75,0,327, | ||
7015 | 3,76,0,327,3, | ||
7016 | 77,0,327,3,78, | ||
7017 | 0,327,3,79,0, | ||
7018 | 327,3,80,0,327, | ||
7019 | 3,81,0,327,3, | ||
7020 | 82,0,327,3,83, | ||
7021 | 0,327,3,84,0, | ||
7022 | 327,3,85,0,327, | ||
7023 | 3,86,0,327,3, | ||
7024 | 87,0,327,3,88, | ||
7025 | 0,327,3,89,0, | ||
7026 | 327,3,90,0,327, | ||
7027 | 3,95,0,327,3, | ||
7028 | 97,0,327,3,98, | ||
7029 | 0,327,3,99,0, | ||
7030 | 327,3,100,0,327, | ||
7031 | 3,101,0,327,3, | ||
7032 | 102,0,327,3,103, | ||
7033 | 0,327,3,104,0, | ||
7034 | 327,3,105,0,327, | ||
7035 | 3,106,0,327,3, | ||
7036 | 107,0,327,3,108, | ||
7037 | 0,327,674,11,1, | ||
7038 | 209,0,675,4,4, | ||
7039 | 73,0,70,0,1, | ||
7040 | -1,3,103,0,327, | ||
7041 | 3,104,0,327,3, | ||
7042 | 105,0,327,3,106, | ||
7043 | 0,327,3,107,0, | ||
7044 | 327,3,108,0,327, | ||
7045 | 676,11,1,829,0, | ||
7046 | 330,1,-1,3,106, | ||
7047 | 0,677,12,1,32634, | ||
7048 | 678,5,63,3,109, | ||
7049 | 0,327,3,110,0, | ||
7050 | 327,3,111,0,327, | ||
7051 | 3,112,0,327,3, | ||
7052 | 113,0,327,3,114, | ||
7053 | 0,327,3,115,0, | ||
7054 | 327,3,116,0,327, | ||
7055 | 3,117,0,679,12, | ||
7056 | 1,32670,680,5,63, | ||
7057 | 3,109,0,681,12, | ||
7058 | 1,32698,682,5,63, | ||
7059 | 3,109,0,327,3, | ||
7060 | 110,0,327,3,111, | ||
7061 | 0,327,3,112,0, | ||
7062 | 683,12,1,32729,684, | ||
7063 | 5,63,3,109,0, | ||
7064 | 327,3,110,0,327, | ||
7065 | 3,111,0,327,3, | ||
7066 | 112,0,327,3,113, | ||
7067 | 0,327,3,114,0, | ||
7068 | 327,3,115,0,327, | ||
7069 | 3,116,0,327,3, | ||
7070 | 117,0,327,3,118, | ||
7071 | 0,327,3,119,0, | ||
7072 | 327,3,120,0,327, | ||
7073 | 3,121,0,327,3, | ||
7074 | 122,0,327,3,48, | ||
7075 | 0,327,3,49,0, | ||
7076 | 327,3,50,0,327, | ||
7077 | 3,51,0,327,3, | ||
7078 | 52,0,327,3,53, | ||
7079 | 0,327,3,54,0, | ||
7080 | 327,3,55,0,327, | ||
7081 | 3,56,0,327,3, | ||
7082 | 57,0,327,3,65, | ||
7083 | 0,327,3,66,0, | ||
7084 | 327,3,67,0,327, | ||
7085 | 3,68,0,327,3, | ||
7086 | 69,0,327,3,70, | ||
7087 | 0,327,3,71,0, | ||
7088 | 327,3,72,0,327, | ||
7089 | 3,73,0,327,3, | ||
7090 | 74,0,327,3,75, | ||
7091 | 0,327,3,76,0, | ||
7092 | 327,3,77,0,327, | ||
7093 | 3,78,0,327,3, | ||
7094 | 79,0,327,3,80, | ||
7095 | 0,327,3,81,0, | ||
7096 | 327,3,82,0,327, | ||
7097 | 3,83,0,327,3, | ||
7098 | 84,0,327,3,85, | ||
7099 | 0,327,3,86,0, | ||
7100 | 327,3,87,0,327, | ||
7101 | 3,88,0,327,3, | ||
7102 | 89,0,327,3,90, | ||
7103 | 0,327,3,95,0, | ||
7104 | 327,3,97,0,327, | ||
7105 | 3,98,0,327,3, | ||
7106 | 99,0,327,3,100, | ||
7107 | 0,327,3,101,0, | ||
7108 | 327,3,102,0,327, | ||
7109 | 3,103,0,327,3, | ||
7110 | 104,0,327,3,105, | ||
7111 | 0,327,3,106,0, | ||
7112 | 327,3,107,0,327, | ||
7113 | 3,108,0,327,685, | ||
7114 | 11,1,265,0,686, | ||
7115 | 4,8,74,0,85, | ||
7116 | 0,77,0,80,0, | ||
7117 | 1,-1,3,113,0, | ||
7118 | 327,3,114,0,327, | ||
7119 | 3,115,0,327,3, | ||
7120 | 116,0,327,3,117, | ||
7121 | 0,327,3,118,0, | ||
7122 | 327,3,119,0,327, | ||
7123 | 3,120,0,327,3, | ||
7124 | 121,0,327,3,122, | ||
7125 | 0,327,3,48,0, | ||
7126 | 327,3,49,0,327, | ||
7127 | 3,50,0,327,3, | ||
7128 | 51,0,327,3,52, | ||
7129 | 0,327,3,53,0, | ||
7130 | 327,3,54,0,327, | ||
7131 | 3,55,0,327,3, | ||
7132 | 56,0,327,3,57, | ||
7133 | 0,327,3,65,0, | ||
7134 | 327,3,66,0,327, | ||
7135 | 3,67,0,327,3, | ||
7136 | 68,0,327,3,69, | ||
7137 | 0,327,3,70,0, | ||
7138 | 327,3,71,0,327, | ||
7139 | 3,72,0,327,3, | ||
7140 | 73,0,327,3,74, | ||
7141 | 0,327,3,75,0, | ||
7142 | 327,3,76,0,327, | ||
7143 | 3,77,0,327,3, | ||
7144 | 78,0,327,3,79, | ||
7145 | 0,327,3,80,0, | ||
7146 | 327,3,81,0,327, | ||
7147 | 3,82,0,327,3, | ||
7148 | 83,0,327,3,84, | ||
7149 | 0,327,3,85,0, | ||
7150 | 327,3,86,0,327, | ||
7151 | 3,87,0,327,3, | ||
7152 | 88,0,327,3,89, | ||
7153 | 0,327,3,90,0, | ||
7154 | 327,3,95,0,327, | ||
7155 | 3,97,0,327,3, | ||
7156 | 98,0,327,3,99, | ||
7157 | 0,327,3,100,0, | ||
7158 | 327,3,101,0,327, | ||
7159 | 3,102,0,327,3, | ||
7160 | 103,0,327,3,104, | ||
7161 | 0,327,3,105,0, | ||
7162 | 327,3,106,0,327, | ||
7163 | 3,107,0,327,3, | ||
7164 | 108,0,327,687,11, | ||
7165 | 1,829,0,330,1, | ||
7166 | -1,3,110,0,327, | ||
7167 | 3,111,0,327,3, | ||
7168 | 112,0,327,3,113, | ||
7169 | 0,327,3,114,0, | ||
7170 | 327,3,115,0,327, | ||
7171 | 3,116,0,327,3, | ||
7172 | 117,0,327,3,118, | ||
7173 | 0,327,3,119,0, | ||
7174 | 327,3,120,0,327, | ||
7175 | 3,121,0,327,3, | ||
7176 | 122,0,327,3,48, | ||
7177 | 0,327,3,49,0, | ||
7178 | 327,3,50,0,327, | ||
7179 | 3,51,0,327,3, | ||
7180 | 52,0,327,3,53, | ||
7181 | 0,327,3,54,0, | ||
7182 | 327,3,55,0,327, | ||
7183 | 3,56,0,327,3, | ||
7184 | 57,0,327,3,65, | ||
7185 | 0,327,3,66,0, | ||
7186 | 327,3,67,0,327, | ||
7187 | 3,68,0,327,3, | ||
7188 | 69,0,327,3,70, | ||
7189 | 0,327,3,71,0, | ||
7190 | 327,3,72,0,327, | ||
7191 | 3,73,0,327,3, | ||
7192 | 74,0,327,3,75, | ||
7193 | 0,327,3,76,0, | ||
7194 | 327,3,77,0,327, | ||
7195 | 3,78,0,327,3, | ||
7196 | 79,0,327,3,80, | ||
7197 | 0,327,3,81,0, | ||
7198 | 327,3,82,0,327, | ||
7199 | 3,83,0,327,3, | ||
7200 | 84,0,327,3,85, | ||
7201 | 0,327,3,86,0, | ||
7202 | 327,3,87,0,327, | ||
7203 | 3,88,0,327,3, | ||
7204 | 89,0,327,3,90, | ||
7205 | 0,327,3,95,0, | ||
7206 | 327,3,97,0,327, | ||
7207 | 3,98,0,327,3, | ||
7208 | 99,0,327,3,100, | ||
7209 | 0,327,3,101,0, | ||
7210 | 327,3,102,0,327, | ||
7211 | 3,103,0,327,3, | ||
7212 | 104,0,327,3,105, | ||
7213 | 0,327,3,106,0, | ||
7214 | 327,3,107,0,327, | ||
7215 | 3,108,0,327,688, | ||
7216 | 11,1,829,0,330, | ||
7217 | 1,-1,3,118,0, | ||
7218 | 327,3,119,0,327, | ||
7219 | 3,120,0,327,3, | ||
7220 | 121,0,327,3,122, | ||
7221 | 0,327,3,48,0, | ||
7222 | 327,3,49,0,327, | ||
7223 | 3,50,0,327,3, | ||
7224 | 51,0,327,3,52, | ||
7225 | 0,327,3,53,0, | ||
7226 | 327,3,54,0,327, | ||
7227 | 3,55,0,327,3, | ||
7228 | 56,0,327,3,57, | ||
7229 | 0,327,3,65,0, | ||
7230 | 327,3,66,0,327, | ||
7231 | 3,67,0,327,3, | ||
7232 | 68,0,327,3,69, | ||
7233 | 0,327,3,70,0, | ||
7234 | 327,3,71,0,327, | ||
7235 | 3,72,0,327,3, | ||
7236 | 73,0,327,3,74, | ||
7237 | 0,327,3,75,0, | ||
7238 | 327,3,76,0,327, | ||
7239 | 3,77,0,327,3, | ||
7240 | 78,0,327,3,79, | ||
7241 | 0,327,3,80,0, | ||
7242 | 327,3,81,0,327, | ||
7243 | 3,82,0,327,3, | ||
7244 | 83,0,327,3,84, | ||
7245 | 0,327,3,85,0, | ||
7246 | 327,3,86,0,327, | ||
7247 | 3,87,0,327,3, | ||
7248 | 88,0,327,3,89, | ||
7249 | 0,327,3,90,0, | ||
7250 | 327,3,95,0,327, | ||
7251 | 3,97,0,327,3, | ||
7252 | 98,0,327,3,99, | ||
7253 | 0,327,3,100,0, | ||
7254 | 327,3,101,0,327, | ||
7255 | 3,102,0,327,3, | ||
7256 | 103,0,327,3,104, | ||
7257 | 0,327,3,105,0, | ||
7258 | 327,3,106,0,327, | ||
7259 | 3,107,0,327,3, | ||
7260 | 108,0,327,689,11, | ||
7261 | 1,829,0,330,1, | ||
7262 | -1,3,107,0,690, | ||
7263 | 12,1,33115,691,5, | ||
7264 | 63,3,109,0,327, | ||
7265 | 3,110,0,327,3, | ||
7266 | 111,0,327,3,112, | ||
7267 | 0,327,3,113,0, | ||
7268 | 327,3,114,0,327, | ||
7269 | 3,115,0,327,3, | ||
7270 | 116,0,327,3,117, | ||
7271 | 0,327,3,118,0, | ||
7272 | 327,3,119,0,327, | ||
7273 | 3,120,0,327,3, | ||
7274 | 121,0,327,3,122, | ||
7275 | 0,327,3,48,0, | ||
7276 | 327,3,49,0,327, | ||
7277 | 3,50,0,327,3, | ||
7278 | 51,0,327,3,52, | ||
7279 | 0,327,3,53,0, | ||
7280 | 327,3,54,0,327, | ||
7281 | 3,55,0,327,3, | ||
7282 | 56,0,327,3,57, | ||
7283 | 0,327,3,65,0, | ||
7284 | 327,3,66,0,327, | ||
7285 | 3,67,0,327,3, | ||
7286 | 68,0,327,3,69, | ||
7287 | 0,327,3,70,0, | ||
7288 | 327,3,71,0,327, | ||
7289 | 3,72,0,327,3, | ||
7290 | 73,0,327,3,74, | ||
7291 | 0,327,3,75,0, | ||
7292 | 327,3,76,0,327, | ||
7293 | 3,77,0,327,3, | ||
7294 | 78,0,327,3,79, | ||
7295 | 0,327,3,80,0, | ||
7296 | 327,3,81,0,327, | ||
7297 | 3,82,0,327,3, | ||
7298 | 83,0,327,3,84, | ||
7299 | 0,327,3,85,0, | ||
7300 | 327,3,86,0,327, | ||
7301 | 3,87,0,327,3, | ||
7302 | 88,0,327,3,89, | ||
7303 | 0,327,3,90,0, | ||
7304 | 327,3,95,0,327, | ||
7305 | 3,97,0,327,3, | ||
7306 | 98,0,327,3,99, | ||
7307 | 0,327,3,100,0, | ||
7308 | 327,3,101,0,692, | ||
7309 | 12,1,33162,693,5, | ||
7310 | 63,3,109,0,327, | ||
7311 | 3,110,0,327,3, | ||
7312 | 111,0,327,3,112, | ||
7313 | 0,327,3,113,0, | ||
7314 | 327,3,114,0,327, | ||
7315 | 3,115,0,327,3, | ||
7316 | 116,0,327,3,117, | ||
7317 | 0,327,3,118,0, | ||
7318 | 327,3,119,0,327, | ||
7319 | 3,120,0,327,3, | ||
7320 | 121,0,694,12,1, | ||
7321 | 33202,695,5,63,3, | ||
7322 | 109,0,327,3,110, | ||
7323 | 0,327,3,111,0, | ||
7324 | 327,3,112,0,327, | ||
7325 | 3,113,0,327,3, | ||
7326 | 114,0,327,3,115, | ||
7327 | 0,327,3,116,0, | ||
7328 | 327,3,117,0,327, | ||
7329 | 3,118,0,327,3, | ||
7330 | 119,0,327,3,120, | ||
7331 | 0,327,3,121,0, | ||
7332 | 327,3,122,0,327, | ||
7333 | 3,48,0,327,3, | ||
7334 | 49,0,327,3,50, | ||
7335 | 0,327,3,51,0, | ||
7336 | 327,3,52,0,327, | ||
7337 | 3,53,0,327,3, | ||
7338 | 54,0,327,3,55, | ||
7339 | 0,327,3,56,0, | ||
7340 | 327,3,57,0,327, | ||
7341 | 3,65,0,327,3, | ||
7342 | 66,0,327,3,67, | ||
7343 | 0,327,3,68,0, | ||
7344 | 327,3,69,0,327, | ||
7345 | 3,70,0,327,3, | ||
7346 | 71,0,327,3,72, | ||
7347 | 0,327,3,73,0, | ||
7348 | 327,3,74,0,327, | ||
7349 | 3,75,0,327,3, | ||
7350 | 76,0,327,3,77, | ||
7351 | 0,327,3,78,0, | ||
7352 | 327,3,79,0,327, | ||
7353 | 3,80,0,327,3, | ||
7354 | 81,0,327,3,82, | ||
7355 | 0,327,3,83,0, | ||
7356 | 327,3,84,0,327, | ||
7357 | 3,85,0,327,3, | ||
7358 | 86,0,327,3,87, | ||
7359 | 0,327,3,88,0, | ||
7360 | 327,3,89,0,327, | ||
7361 | 3,90,0,327,3, | ||
7362 | 95,0,327,3,97, | ||
7363 | 0,327,3,98,0, | ||
7364 | 327,3,99,0,327, | ||
7365 | 3,100,0,327,3, | ||
7366 | 101,0,327,3,102, | ||
7367 | 0,327,3,103,0, | ||
7368 | 327,3,104,0,327, | ||
7369 | 3,105,0,327,3, | ||
7370 | 106,0,327,3,107, | ||
7371 | 0,327,3,108,0, | ||
7372 | 327,696,11,1,313, | ||
7373 | 0,697,4,16,75, | ||
7374 | 0,69,0,89,0, | ||
7375 | 95,0,84,0,89, | ||
7376 | 0,80,0,69,0, | ||
7377 | 1,-1,3,122,0, | ||
7378 | 327,3,48,0,327, | ||
7379 | 3,49,0,327,3, | ||
7380 | 50,0,327,3,51, | ||
7381 | 0,327,3,52,0, | ||
7382 | 327,3,53,0,327, | ||
7383 | 3,54,0,327,3, | ||
7384 | 55,0,327,3,56, | ||
7385 | 0,327,3,57,0, | ||
7386 | 327,3,65,0,327, | ||
7387 | 3,66,0,327,3, | ||
7388 | 67,0,327,3,68, | ||
7389 | 0,327,3,69,0, | ||
7390 | 327,3,70,0,327, | ||
7391 | 3,71,0,327,3, | ||
7392 | 72,0,327,3,73, | ||
7393 | 0,327,3,74,0, | ||
7394 | 327,3,75,0,327, | ||
7395 | 3,76,0,327,3, | ||
7396 | 77,0,327,3,78, | ||
7397 | 0,327,3,79,0, | ||
7398 | 327,3,80,0,327, | ||
7399 | 3,81,0,327,3, | ||
7400 | 82,0,327,3,83, | ||
7401 | 0,327,3,84,0, | ||
7402 | 327,3,85,0,327, | ||
7403 | 3,86,0,327,3, | ||
7404 | 87,0,327,3,88, | ||
7405 | 0,327,3,89,0, | ||
7406 | 327,3,90,0,327, | ||
7407 | 3,95,0,327,3, | ||
7408 | 97,0,327,3,98, | ||
7409 | 0,327,3,99,0, | ||
7410 | 327,3,100,0,327, | ||
7411 | 3,101,0,327,3, | ||
7412 | 102,0,327,3,103, | ||
7413 | 0,327,3,104,0, | ||
7414 | 327,3,105,0,327, | ||
7415 | 3,106,0,327,3, | ||
7416 | 107,0,327,3,108, | ||
7417 | 0,327,698,11,1, | ||
7418 | 829,0,330,1,-1, | ||
7419 | 3,102,0,327,3, | ||
7420 | 103,0,327,3,104, | ||
7421 | 0,327,3,105,0, | ||
7422 | 327,3,106,0,327, | ||
7423 | 3,107,0,327,3, | ||
7424 | 108,0,327,699,11, | ||
7425 | 1,829,0,330,1, | ||
7426 | -1,3,108,0,700, | ||
7427 | 12,1,33476,701,5, | ||
7428 | 63,3,109,0,327, | ||
7429 | 3,110,0,327,3, | ||
7430 | 111,0,327,3,112, | ||
7431 | 0,327,3,113,0, | ||
7432 | 327,3,114,0,327, | ||
7433 | 3,115,0,327,3, | ||
7434 | 116,0,327,3,117, | ||
7435 | 0,327,3,118,0, | ||
7436 | 327,3,119,0,327, | ||
7437 | 3,120,0,327,3, | ||
7438 | 121,0,327,3,122, | ||
7439 | 0,327,3,48,0, | ||
7440 | 327,3,49,0,327, | ||
7441 | 3,50,0,327,3, | ||
7442 | 51,0,327,3,52, | ||
7443 | 0,327,3,53,0, | ||
7444 | 327,3,54,0,327, | ||
7445 | 3,55,0,327,3, | ||
7446 | 56,0,327,3,57, | ||
7447 | 0,327,3,65,0, | ||
7448 | 327,3,66,0,327, | ||
7449 | 3,67,0,327,3, | ||
7450 | 68,0,327,3,69, | ||
7451 | 0,327,3,70,0, | ||
7452 | 327,3,71,0,327, | ||
7453 | 3,72,0,327,3, | ||
7454 | 73,0,327,3,74, | ||
7455 | 0,327,3,75,0, | ||
7456 | 327,3,76,0,327, | ||
7457 | 3,77,0,327,3, | ||
7458 | 78,0,327,3,79, | ||
7459 | 0,327,3,80,0, | ||
7460 | 327,3,81,0,327, | ||
7461 | 3,82,0,327,3, | ||
7462 | 83,0,327,3,84, | ||
7463 | 0,327,3,85,0, | ||
7464 | 327,3,86,0,327, | ||
7465 | 3,87,0,327,3, | ||
7466 | 88,0,327,3,89, | ||
7467 | 0,327,3,90,0, | ||
7468 | 327,3,95,0,327, | ||
7469 | 3,97,0,702,12, | ||
7470 | 1,33519,703,5,63, | ||
7471 | 3,109,0,327,3, | ||
7472 | 110,0,704,12,1, | ||
7473 | 33548,705,5,63,3, | ||
7474 | 109,0,327,3,110, | ||
7475 | 0,327,3,111,0, | ||
7476 | 327,3,112,0,327, | ||
7477 | 3,113,0,327,3, | ||
7478 | 114,0,327,3,115, | ||
7479 | 0,327,3,116,0, | ||
7480 | 327,3,117,0,327, | ||
7481 | 3,118,0,327,3, | ||
7482 | 119,0,327,3,120, | ||
7483 | 0,327,3,121,0, | ||
7484 | 327,3,122,0,327, | ||
7485 | 3,48,0,327,3, | ||
7486 | 49,0,327,3,50, | ||
7487 | 0,327,3,51,0, | ||
7488 | 327,3,52,0,327, | ||
7489 | 3,53,0,327,3, | ||
7490 | 54,0,327,3,55, | ||
7491 | 0,327,3,56,0, | ||
7492 | 327,3,57,0,327, | ||
7493 | 3,65,0,327,3, | ||
7494 | 66,0,327,3,67, | ||
7495 | 0,327,3,68,0, | ||
7496 | 327,3,69,0,327, | ||
7497 | 3,70,0,327,3, | ||
7498 | 71,0,327,3,72, | ||
7499 | 0,327,3,73,0, | ||
7500 | 327,3,74,0,327, | ||
7501 | 3,75,0,327,3, | ||
7502 | 76,0,327,3,77, | ||
7503 | 0,327,3,78,0, | ||
7504 | 327,3,79,0,327, | ||
7505 | 3,80,0,327,3, | ||
7506 | 81,0,327,3,82, | ||
7507 | 0,327,3,83,0, | ||
7508 | 327,3,84,0,327, | ||
7509 | 3,85,0,327,3, | ||
7510 | 86,0,327,3,87, | ||
7511 | 0,327,3,88,0, | ||
7512 | 327,3,89,0,327, | ||
7513 | 3,90,0,327,3, | ||
7514 | 95,0,327,3,97, | ||
7515 | 0,327,3,98,0, | ||
7516 | 327,3,99,0,327, | ||
7517 | 3,100,0,706,12, | ||
7518 | 1,33594,707,5,63, | ||
7519 | 3,109,0,327,3, | ||
7520 | 110,0,327,3,111, | ||
7521 | 0,327,3,112,0, | ||
7522 | 327,3,113,0,327, | ||
7523 | 3,114,0,327,3, | ||
7524 | 115,0,327,3,116, | ||
7525 | 0,327,3,117,0, | ||
7526 | 327,3,118,0,327, | ||
7527 | 3,119,0,327,3, | ||
7528 | 120,0,327,3,121, | ||
7529 | 0,327,3,122,0, | ||
7530 | 327,3,48,0,327, | ||
7531 | 3,49,0,327,3, | ||
7532 | 50,0,327,3,51, | ||
7533 | 0,327,3,52,0, | ||
7534 | 327,3,53,0,327, | ||
7535 | 3,54,0,327,3, | ||
7536 | 55,0,327,3,56, | ||
7537 | 0,327,3,57,0, | ||
7538 | 327,3,65,0,327, | ||
7539 | 3,66,0,327,3, | ||
7540 | 67,0,327,3,68, | ||
7541 | 0,327,3,69,0, | ||
7542 | 327,3,70,0,327, | ||
7543 | 3,71,0,327,3, | ||
7544 | 72,0,327,3,73, | ||
7545 | 0,327,3,74,0, | ||
7546 | 327,3,75,0,327, | ||
7547 | 3,76,0,327,3, | ||
7548 | 77,0,327,3,78, | ||
7549 | 0,327,3,79,0, | ||
7550 | 327,3,80,0,327, | ||
7551 | 3,81,0,327,3, | ||
7552 | 82,0,327,3,83, | ||
7553 | 0,327,3,84,0, | ||
7554 | 327,3,85,0,327, | ||
7555 | 3,86,0,327,3, | ||
7556 | 87,0,327,3,88, | ||
7557 | 0,327,3,89,0, | ||
7558 | 327,3,90,0,327, | ||
7559 | 3,95,0,708,12, | ||
7560 | 1,33680,709,5,63, | ||
7561 | 3,109,0,327,3, | ||
7562 | 110,0,327,3,111, | ||
7563 | 0,327,3,112,0, | ||
7564 | 327,3,113,0,327, | ||
7565 | 3,114,0,327,3, | ||
7566 | 115,0,327,3,116, | ||
7567 | 0,327,3,117,0, | ||
7568 | 327,3,118,0,327, | ||
7569 | 3,119,0,327,3, | ||
7570 | 120,0,327,3,121, | ||
7571 | 0,327,3,122,0, | ||
7572 | 327,3,48,0,327, | ||
7573 | 3,49,0,327,3, | ||
7574 | 50,0,327,3,51, | ||
7575 | 0,327,3,52,0, | ||
7576 | 327,3,53,0,327, | ||
7577 | 3,54,0,327,3, | ||
7578 | 55,0,327,3,56, | ||
7579 | 0,327,3,57,0, | ||
7580 | 327,3,65,0,327, | ||
7581 | 3,66,0,327,3, | ||
7582 | 67,0,327,3,68, | ||
7583 | 0,327,3,69,0, | ||
7584 | 327,3,70,0,327, | ||
7585 | 3,71,0,327,3, | ||
7586 | 72,0,327,3,73, | ||
7587 | 0,327,3,74,0, | ||
7588 | 327,3,75,0,327, | ||
7589 | 3,76,0,327,3, | ||
7590 | 77,0,327,3,78, | ||
7591 | 0,327,3,79,0, | ||
7592 | 327,3,80,0,327, | ||
7593 | 3,81,0,327,3, | ||
7594 | 82,0,327,3,83, | ||
7595 | 0,327,3,84,0, | ||
7596 | 327,3,85,0,327, | ||
7597 | 3,86,0,327,3, | ||
7598 | 87,0,327,3,88, | ||
7599 | 0,327,3,89,0, | ||
7600 | 327,3,90,0,327, | ||
7601 | 3,95,0,327,3, | ||
7602 | 97,0,327,3,98, | ||
7603 | 0,327,3,99,0, | ||
7604 | 710,12,1,33725,711, | ||
7605 | 5,63,3,109,0, | ||
7606 | 327,3,110,0,327, | ||
7607 | 3,111,0,712,12, | ||
7608 | 1,33755,713,5,63, | ||
7609 | 3,109,0,327,3, | ||
7610 | 110,0,327,3,111, | ||
7611 | 0,327,3,112,0, | ||
7612 | 327,3,113,0,327, | ||
7613 | 3,114,0,327,3, | ||
7614 | 115,0,327,3,116, | ||
7615 | 0,327,3,117,0, | ||
7616 | 327,3,118,0,327, | ||
7617 | 3,119,0,327,3, | ||
7618 | 120,0,327,3,121, | ||
7619 | 0,327,3,122,0, | ||
7620 | 327,3,48,0,327, | ||
7621 | 3,49,0,327,3, | ||
7622 | 50,0,327,3,51, | ||
7623 | 0,327,3,52,0, | ||
7624 | 327,3,53,0,327, | ||
7625 | 3,54,0,327,3, | ||
7626 | 55,0,327,3,56, | ||
7627 | 0,327,3,57,0, | ||
7628 | 327,3,65,0,327, | ||
7629 | 3,66,0,327,3, | ||
7630 | 67,0,327,3,68, | ||
7631 | 0,327,3,69,0, | ||
7632 | 327,3,70,0,327, | ||
7633 | 3,71,0,327,3, | ||
7634 | 72,0,327,3,73, | ||
7635 | 0,327,3,74,0, | ||
7636 | 327,3,75,0,327, | ||
7637 | 3,76,0,327,3, | ||
7638 | 77,0,327,3,78, | ||
7639 | 0,327,3,79,0, | ||
7640 | 327,3,80,0,327, | ||
7641 | 3,81,0,327,3, | ||
7642 | 82,0,327,3,83, | ||
7643 | 0,327,3,84,0, | ||
7644 | 327,3,85,0,327, | ||
7645 | 3,86,0,327,3, | ||
7646 | 87,0,327,3,88, | ||
7647 | 0,327,3,89,0, | ||
7648 | 327,3,90,0,327, | ||
7649 | 3,95,0,327,3, | ||
7650 | 97,0,327,3,98, | ||
7651 | 0,327,3,99,0, | ||
7652 | 327,3,100,0,327, | ||
7653 | 3,101,0,327,3, | ||
7654 | 102,0,327,3,103, | ||
7655 | 0,327,3,104,0, | ||
7656 | 327,3,105,0,327, | ||
7657 | 3,106,0,327,3, | ||
7658 | 107,0,327,3,108, | ||
7659 | 0,714,12,1,33809, | ||
7660 | 715,5,63,3,109, | ||
7661 | 0,327,3,110,0, | ||
7662 | 327,3,111,0,327, | ||
7663 | 3,112,0,327,3, | ||
7664 | 113,0,327,3,114, | ||
7665 | 0,327,3,115,0, | ||
7666 | 327,3,116,0,327, | ||
7667 | 3,117,0,327,3, | ||
7668 | 118,0,327,3,119, | ||
7669 | 0,327,3,120,0, | ||
7670 | 327,3,121,0,327, | ||
7671 | 3,122,0,327,3, | ||
7672 | 48,0,327,3,49, | ||
7673 | 0,327,3,50,0, | ||
7674 | 327,3,51,0,327, | ||
7675 | 3,52,0,327,3, | ||
7676 | 53,0,327,3,54, | ||
7677 | 0,327,3,55,0, | ||
7678 | 327,3,56,0,327, | ||
7679 | 3,57,0,327,3, | ||
7680 | 65,0,327,3,66, | ||
7681 | 0,327,3,67,0, | ||
7682 | 327,3,68,0,327, | ||
7683 | 3,69,0,327,3, | ||
7684 | 70,0,327,3,71, | ||
7685 | 0,327,3,72,0, | ||
7686 | 327,3,73,0,327, | ||
7687 | 3,74,0,327,3, | ||
7688 | 75,0,327,3,76, | ||
7689 | 0,327,3,77,0, | ||
7690 | 327,3,78,0,327, | ||
7691 | 3,79,0,327,3, | ||
7692 | 80,0,327,3,81, | ||
7693 | 0,327,3,82,0, | ||
7694 | 327,3,83,0,327, | ||
7695 | 3,84,0,327,3, | ||
7696 | 85,0,327,3,86, | ||
7697 | 0,327,3,87,0, | ||
7698 | 327,3,88,0,327, | ||
7699 | 3,89,0,327,3, | ||
7700 | 90,0,327,3,95, | ||
7701 | 0,327,3,97,0, | ||
7702 | 327,3,98,0,327, | ||
7703 | 3,99,0,327,3, | ||
7704 | 100,0,327,3,101, | ||
7705 | 0,327,3,102,0, | ||
7706 | 327,3,103,0,327, | ||
7707 | 3,104,0,327,3, | ||
7708 | 105,0,327,3,106, | ||
7709 | 0,327,3,107,0, | ||
7710 | 327,3,108,0,716, | ||
7711 | 12,1,33863,717,5, | ||
7712 | 63,3,109,0,327, | ||
7713 | 3,110,0,327,3, | ||
7714 | 111,0,327,3,112, | ||
7715 | 0,327,3,113,0, | ||
7716 | 327,3,114,0,327, | ||
7717 | 3,115,0,327,3, | ||
7718 | 116,0,327,3,117, | ||
7719 | 0,327,3,118,0, | ||
7720 | 327,3,119,0,327, | ||
7721 | 3,120,0,327,3, | ||
7722 | 121,0,327,3,122, | ||
7723 | 0,327,3,48,0, | ||
7724 | 327,3,49,0,327, | ||
7725 | 3,50,0,327,3, | ||
7726 | 51,0,327,3,52, | ||
7727 | 0,327,3,53,0, | ||
7728 | 327,3,54,0,327, | ||
7729 | 3,55,0,327,3, | ||
7730 | 56,0,327,3,57, | ||
7731 | 0,327,3,65,0, | ||
7732 | 327,3,66,0,327, | ||
7733 | 3,67,0,327,3, | ||
7734 | 68,0,327,3,69, | ||
7735 | 0,327,3,70,0, | ||
7736 | 327,3,71,0,327, | ||
7737 | 3,72,0,327,3, | ||
7738 | 73,0,327,3,74, | ||
7739 | 0,327,3,75,0, | ||
7740 | 327,3,76,0,327, | ||
7741 | 3,77,0,327,3, | ||
7742 | 78,0,327,3,79, | ||
7743 | 0,327,3,80,0, | ||
7744 | 327,3,81,0,327, | ||
7745 | 3,82,0,327,3, | ||
7746 | 83,0,327,3,84, | ||
7747 | 0,327,3,85,0, | ||
7748 | 327,3,86,0,327, | ||
7749 | 3,87,0,327,3, | ||
7750 | 88,0,327,3,89, | ||
7751 | 0,327,3,90,0, | ||
7752 | 327,3,95,0,327, | ||
7753 | 3,97,0,327,3, | ||
7754 | 98,0,327,3,99, | ||
7755 | 0,327,3,100,0, | ||
7756 | 327,3,101,0,327, | ||
7757 | 3,102,0,327,3, | ||
7758 | 103,0,327,3,104, | ||
7759 | 0,327,3,105,0, | ||
7760 | 718,12,1,33914,719, | ||
7761 | 5,63,3,109,0, | ||
7762 | 327,3,110,0,327, | ||
7763 | 3,111,0,327,3, | ||
7764 | 112,0,327,3,113, | ||
7765 | 0,327,3,114,0, | ||
7766 | 327,3,115,0,720, | ||
7767 | 12,1,33948,721,5, | ||
7768 | 63,3,109,0,327, | ||
7769 | 3,110,0,327,3, | ||
7770 | 111,0,327,3,112, | ||
7771 | 0,327,3,113,0, | ||
7772 | 327,3,114,0,327, | ||
7773 | 3,115,0,327,3, | ||
7774 | 116,0,327,3,117, | ||
7775 | 0,327,3,118,0, | ||
7776 | 327,3,119,0,327, | ||
7777 | 3,120,0,327,3, | ||
7778 | 121,0,327,3,122, | ||
7779 | 0,327,3,48,0, | ||
7780 | 327,3,49,0,327, | ||
7781 | 3,50,0,327,3, | ||
7782 | 51,0,327,3,52, | ||
7783 | 0,327,3,53,0, | ||
7784 | 327,3,54,0,327, | ||
7785 | 3,55,0,327,3, | ||
7786 | 56,0,327,3,57, | ||
7787 | 0,327,3,65,0, | ||
7788 | 327,3,66,0,327, | ||
7789 | 3,67,0,327,3, | ||
7790 | 68,0,327,3,69, | ||
7791 | 0,327,3,70,0, | ||
7792 | 327,3,71,0,327, | ||
7793 | 3,72,0,327,3, | ||
7794 | 73,0,327,3,74, | ||
7795 | 0,327,3,75,0, | ||
7796 | 327,3,76,0,327, | ||
7797 | 3,77,0,327,3, | ||
7798 | 78,0,327,3,79, | ||
7799 | 0,327,3,80,0, | ||
7800 | 327,3,81,0,327, | ||
7801 | 3,82,0,327,3, | ||
7802 | 83,0,327,3,84, | ||
7803 | 0,327,3,85,0, | ||
7804 | 327,3,86,0,327, | ||
7805 | 3,87,0,327,3, | ||
7806 | 88,0,327,3,89, | ||
7807 | 0,327,3,90,0, | ||
7808 | 327,3,95,0,327, | ||
7809 | 3,97,0,327,3, | ||
7810 | 98,0,327,3,99, | ||
7811 | 0,327,3,100,0, | ||
7812 | 327,3,101,0,327, | ||
7813 | 3,102,0,327,3, | ||
7814 | 103,0,327,3,104, | ||
7815 | 0,327,3,105,0, | ||
7816 | 722,12,1,33999,723, | ||
7817 | 5,63,3,109,0, | ||
7818 | 327,3,110,0,327, | ||
7819 | 3,111,0,724,12, | ||
7820 | 1,34029,725,5,63, | ||
7821 | 3,109,0,327,3, | ||
7822 | 110,0,726,12,1, | ||
7823 | 34058,727,5,63,3, | ||
7824 | 109,0,327,3,110, | ||
7825 | 0,327,3,111,0, | ||
7826 | 327,3,112,0,327, | ||
7827 | 3,113,0,327,3, | ||
7828 | 114,0,327,3,115, | ||
7829 | 0,327,3,116,0, | ||
7830 | 327,3,117,0,327, | ||
7831 | 3,118,0,327,3, | ||
7832 | 119,0,327,3,120, | ||
7833 | 0,327,3,121,0, | ||
7834 | 327,3,122,0,327, | ||
7835 | 3,48,0,327,3, | ||
7836 | 49,0,327,3,50, | ||
7837 | 0,327,3,51,0, | ||
7838 | 327,3,52,0,327, | ||
7839 | 3,53,0,327,3, | ||
7840 | 54,0,327,3,55, | ||
7841 | 0,327,3,56,0, | ||
7842 | 327,3,57,0,327, | ||
7843 | 3,65,0,327,3, | ||
7844 | 66,0,327,3,67, | ||
7845 | 0,327,3,68,0, | ||
7846 | 327,3,69,0,327, | ||
7847 | 3,70,0,327,3, | ||
7848 | 71,0,327,3,72, | ||
7849 | 0,327,3,73,0, | ||
7850 | 327,3,74,0,327, | ||
7851 | 3,75,0,327,3, | ||
7852 | 76,0,327,3,77, | ||
7853 | 0,327,3,78,0, | ||
7854 | 327,3,79,0,327, | ||
7855 | 3,80,0,327,3, | ||
7856 | 81,0,327,3,82, | ||
7857 | 0,327,3,83,0, | ||
7858 | 327,3,84,0,327, | ||
7859 | 3,85,0,327,3, | ||
7860 | 86,0,327,3,87, | ||
7861 | 0,327,3,88,0, | ||
7862 | 327,3,89,0,327, | ||
7863 | 3,90,0,327,3, | ||
7864 | 95,0,728,12,1, | ||
7865 | 34144,729,5,63,3, | ||
7866 | 109,0,327,3,110, | ||
7867 | 0,327,3,111,0, | ||
7868 | 327,3,112,0,327, | ||
7869 | 3,113,0,327,3, | ||
7870 | 114,0,327,3,115, | ||
7871 | 0,730,12,1,34178, | ||
7872 | 731,5,63,3,109, | ||
7873 | 0,327,3,110,0, | ||
7874 | 327,3,111,0,327, | ||
7875 | 3,112,0,327,3, | ||
7876 | 113,0,327,3,114, | ||
7877 | 0,327,3,115,0, | ||
7878 | 327,3,116,0,732, | ||
7879 | 12,1,34213,733,5, | ||
7880 | 63,3,109,0,327, | ||
7881 | 3,110,0,327,3, | ||
7882 | 111,0,327,3,112, | ||
7883 | 0,327,3,113,0, | ||
7884 | 327,3,114,0,327, | ||
7885 | 3,115,0,327,3, | ||
7886 | 116,0,327,3,117, | ||
7887 | 0,327,3,118,0, | ||
7888 | 327,3,119,0,327, | ||
7889 | 3,120,0,327,3, | ||
7890 | 121,0,327,3,122, | ||
7891 | 0,327,3,48,0, | ||
7892 | 327,3,49,0,327, | ||
7893 | 3,50,0,327,3, | ||
7894 | 51,0,327,3,52, | ||
7895 | 0,327,3,53,0, | ||
7896 | 327,3,54,0,327, | ||
7897 | 3,55,0,327,3, | ||
7898 | 56,0,327,3,57, | ||
7899 | 0,327,3,65,0, | ||
7900 | 327,3,66,0,327, | ||
7901 | 3,67,0,327,3, | ||
7902 | 68,0,327,3,69, | ||
7903 | 0,327,3,70,0, | ||
7904 | 327,3,71,0,327, | ||
7905 | 3,72,0,327,3, | ||
7906 | 73,0,327,3,74, | ||
7907 | 0,327,3,75,0, | ||
7908 | 327,3,76,0,327, | ||
7909 | 3,77,0,327,3, | ||
7910 | 78,0,327,3,79, | ||
7911 | 0,327,3,80,0, | ||
7912 | 327,3,81,0,327, | ||
7913 | 3,82,0,327,3, | ||
7914 | 83,0,327,3,84, | ||
7915 | 0,327,3,85,0, | ||
7916 | 327,3,86,0,327, | ||
7917 | 3,87,0,327,3, | ||
7918 | 88,0,327,3,89, | ||
7919 | 0,327,3,90,0, | ||
7920 | 327,3,95,0,327, | ||
7921 | 3,97,0,734,12, | ||
7922 | 1,34256,735,5,63, | ||
7923 | 3,109,0,327,3, | ||
7924 | 110,0,327,3,111, | ||
7925 | 0,327,3,112,0, | ||
7926 | 327,3,113,0,327, | ||
7927 | 3,114,0,736,12, | ||
7928 | 1,34289,737,5,63, | ||
7929 | 3,109,0,327,3, | ||
7930 | 110,0,327,3,111, | ||
7931 | 0,327,3,112,0, | ||
7932 | 327,3,113,0,327, | ||
7933 | 3,114,0,327,3, | ||
7934 | 115,0,327,3,116, | ||
7935 | 0,738,12,1,34324, | ||
7936 | 739,5,63,3,109, | ||
7937 | 0,327,3,110,0, | ||
7938 | 327,3,111,0,327, | ||
7939 | 3,112,0,327,3, | ||
7940 | 113,0,327,3,114, | ||
7941 | 0,327,3,115,0, | ||
7942 | 327,3,116,0,327, | ||
7943 | 3,117,0,327,3, | ||
7944 | 118,0,327,3,119, | ||
7945 | 0,327,3,120,0, | ||
7946 | 327,3,121,0,327, | ||
7947 | 3,122,0,327,3, | ||
7948 | 48,0,327,3,49, | ||
7949 | 0,327,3,50,0, | ||
7950 | 327,3,51,0,327, | ||
7951 | 3,52,0,327,3, | ||
7952 | 53,0,327,3,54, | ||
7953 | 0,327,3,55,0, | ||
7954 | 327,3,56,0,327, | ||
7955 | 3,57,0,327,3, | ||
7956 | 65,0,327,3,66, | ||
7957 | 0,327,3,67,0, | ||
7958 | 327,3,68,0,327, | ||
7959 | 3,69,0,327,3, | ||
7960 | 70,0,327,3,71, | ||
7961 | 0,327,3,72,0, | ||
7962 | 327,3,73,0,327, | ||
7963 | 3,74,0,327,3, | ||
7964 | 75,0,327,3,76, | ||
7965 | 0,327,3,77,0, | ||
7966 | 327,3,78,0,327, | ||
7967 | 3,79,0,327,3, | ||
7968 | 80,0,327,3,81, | ||
7969 | 0,327,3,82,0, | ||
7970 | 327,3,83,0,327, | ||
7971 | 3,84,0,327,3, | ||
7972 | 85,0,327,3,86, | ||
7973 | 0,327,3,87,0, | ||
7974 | 327,3,88,0,327, | ||
7975 | 3,89,0,327,3, | ||
7976 | 90,0,327,3,95, | ||
7977 | 0,327,3,97,0, | ||
7978 | 327,3,98,0,327, | ||
7979 | 3,99,0,327,3, | ||
7980 | 100,0,327,3,101, | ||
7981 | 0,327,3,102,0, | ||
7982 | 327,3,103,0,327, | ||
7983 | 3,104,0,327,3, | ||
7984 | 105,0,327,3,106, | ||
7985 | 0,327,3,107,0, | ||
7986 | 327,3,108,0,327, | ||
7987 | 740,11,1,541,0, | ||
7988 | 741,4,52,76,0, | ||
7989 | 65,0,78,0,68, | ||
7990 | 0,95,0,67,0, | ||
7991 | 79,0,76,0,76, | ||
7992 | 0,73,0,83,0, | ||
7993 | 73,0,79,0,78, | ||
7994 | 0,95,0,83,0, | ||
7995 | 84,0,65,0,82, | ||
7996 | 0,84,0,95,0, | ||
7997 | 69,0,86,0,69, | ||
7998 | 0,78,0,84,0, | ||
7999 | 1,-1,3,117,0, | ||
8000 | 327,3,118,0,327, | ||
8001 | 3,119,0,327,3, | ||
8002 | 120,0,327,3,121, | ||
8003 | 0,327,3,122,0, | ||
8004 | 327,3,48,0,327, | ||
8005 | 3,49,0,327,3, | ||
8006 | 50,0,327,3,51, | ||
8007 | 0,327,3,52,0, | ||
8008 | 327,3,53,0,327, | ||
8009 | 3,54,0,327,3, | ||
8010 | 55,0,327,3,56, | ||
8011 | 0,327,3,57,0, | ||
8012 | 327,3,65,0,327, | ||
8013 | 3,66,0,327,3, | ||
8014 | 67,0,327,3,68, | ||
8015 | 0,327,3,69,0, | ||
8016 | 327,3,70,0,327, | ||
8017 | 3,71,0,327,3, | ||
8018 | 72,0,327,3,73, | ||
8019 | 0,327,3,74,0, | ||
8020 | 327,3,75,0,327, | ||
8021 | 3,76,0,327,3, | ||
8022 | 77,0,327,3,78, | ||
8023 | 0,327,3,79,0, | ||
8024 | 327,3,80,0,327, | ||
8025 | 3,81,0,327,3, | ||
8026 | 82,0,327,3,83, | ||
8027 | 0,327,3,84,0, | ||
8028 | 327,3,85,0,327, | ||
8029 | 3,86,0,327,3, | ||
8030 | 87,0,327,3,88, | ||
8031 | 0,327,3,89,0, | ||
8032 | 327,3,90,0,327, | ||
8033 | 3,95,0,327,3, | ||
8034 | 97,0,327,3,98, | ||
8035 | 0,327,3,99,0, | ||
8036 | 327,3,100,0,327, | ||
8037 | 3,101,0,327,3, | ||
8038 | 102,0,327,3,103, | ||
8039 | 0,327,3,104,0, | ||
8040 | 327,3,105,0,327, | ||
8041 | 3,106,0,327,3, | ||
8042 | 107,0,327,3,108, | ||
8043 | 0,327,742,11,1, | ||
8044 | 829,0,330,1,-1, | ||
8045 | 3,115,0,327,3, | ||
8046 | 116,0,327,3,117, | ||
8047 | 0,327,3,118,0, | ||
8048 | 327,3,119,0,327, | ||
8049 | 3,120,0,327,3, | ||
8050 | 121,0,327,3,122, | ||
8051 | 0,327,3,48,0, | ||
8052 | 327,3,49,0,327, | ||
8053 | 3,50,0,327,3, | ||
8054 | 51,0,327,3,52, | ||
8055 | 0,327,3,53,0, | ||
8056 | 327,3,54,0,327, | ||
8057 | 3,55,0,327,3, | ||
8058 | 56,0,327,3,57, | ||
8059 | 0,327,3,65,0, | ||
8060 | 327,3,66,0,327, | ||
8061 | 3,67,0,327,3, | ||
8062 | 68,0,327,3,69, | ||
8063 | 0,327,3,70,0, | ||
8064 | 327,3,71,0,327, | ||
8065 | 3,72,0,327,3, | ||
8066 | 73,0,327,3,74, | ||
8067 | 0,327,3,75,0, | ||
8068 | 327,3,76,0,327, | ||
8069 | 3,77,0,327,3, | ||
8070 | 78,0,327,3,79, | ||
8071 | 0,327,3,80,0, | ||
8072 | 327,3,81,0,327, | ||
8073 | 3,82,0,327,3, | ||
8074 | 83,0,327,3,84, | ||
8075 | 0,327,3,85,0, | ||
8076 | 327,3,86,0,327, | ||
8077 | 3,87,0,327,3, | ||
8078 | 88,0,327,3,89, | ||
8079 | 0,327,3,90,0, | ||
8080 | 327,3,95,0,327, | ||
8081 | 3,97,0,327,3, | ||
8082 | 98,0,327,3,99, | ||
8083 | 0,327,3,100,0, | ||
8084 | 327,3,101,0,327, | ||
8085 | 3,102,0,327,3, | ||
8086 | 103,0,327,3,104, | ||
8087 | 0,327,3,105,0, | ||
8088 | 327,3,106,0,327, | ||
8089 | 3,107,0,327,3, | ||
8090 | 108,0,327,743,11, | ||
8091 | 1,829,0,330,1, | ||
8092 | -1,3,98,0,327, | ||
8093 | 3,99,0,327,3, | ||
8094 | 100,0,327,3,101, | ||
8095 | 0,327,3,102,0, | ||
8096 | 327,3,103,0,327, | ||
8097 | 3,104,0,327,3, | ||
8098 | 105,0,327,3,106, | ||
8099 | 0,327,3,107,0, | ||
8100 | 327,3,108,0,327, | ||
8101 | 744,11,1,829,0, | ||
8102 | 330,1,-1,3,117, | ||
8103 | 0,327,3,118,0, | ||
8104 | 327,3,119,0,327, | ||
8105 | 3,120,0,327,3, | ||
8106 | 121,0,327,3,122, | ||
8107 | 0,327,3,48,0, | ||
8108 | 327,3,49,0,327, | ||
8109 | 3,50,0,327,3, | ||
8110 | 51,0,327,3,52, | ||
8111 | 0,327,3,53,0, | ||
8112 | 327,3,54,0,327, | ||
8113 | 3,55,0,327,3, | ||
8114 | 56,0,327,3,57, | ||
8115 | 0,327,3,65,0, | ||
8116 | 327,3,66,0,327, | ||
8117 | 3,67,0,327,3, | ||
8118 | 68,0,327,3,69, | ||
8119 | 0,327,3,70,0, | ||
8120 | 327,3,71,0,327, | ||
8121 | 3,72,0,327,3, | ||
8122 | 73,0,327,3,74, | ||
8123 | 0,327,3,75,0, | ||
8124 | 327,3,76,0,327, | ||
8125 | 3,77,0,327,3, | ||
8126 | 78,0,327,3,79, | ||
8127 | 0,327,3,80,0, | ||
8128 | 327,3,81,0,327, | ||
8129 | 3,82,0,327,3, | ||
8130 | 83,0,327,3,84, | ||
8131 | 0,327,3,85,0, | ||
8132 | 327,3,86,0,327, | ||
8133 | 3,87,0,327,3, | ||
8134 | 88,0,327,3,89, | ||
8135 | 0,327,3,90,0, | ||
8136 | 327,3,95,0,327, | ||
8137 | 3,97,0,327,3, | ||
8138 | 98,0,327,3,99, | ||
8139 | 0,327,3,100,0, | ||
8140 | 327,3,101,0,327, | ||
8141 | 3,102,0,327,3, | ||
8142 | 103,0,327,3,104, | ||
8143 | 0,327,3,105,0, | ||
8144 | 327,3,106,0,327, | ||
8145 | 3,107,0,327,3, | ||
8146 | 108,0,327,745,11, | ||
8147 | 1,829,0,330,1, | ||
8148 | -1,3,116,0,327, | ||
8149 | 3,117,0,327,3, | ||
8150 | 118,0,327,3,119, | ||
8151 | 0,327,3,120,0, | ||
8152 | 327,3,121,0,327, | ||
8153 | 3,122,0,327,3, | ||
8154 | 48,0,327,3,49, | ||
8155 | 0,327,3,50,0, | ||
8156 | 327,3,51,0,327, | ||
8157 | 3,52,0,327,3, | ||
8158 | 53,0,327,3,54, | ||
8159 | 0,327,3,55,0, | ||
8160 | 327,3,56,0,327, | ||
8161 | 3,57,0,327,3, | ||
8162 | 65,0,327,3,66, | ||
8163 | 0,327,3,67,0, | ||
8164 | 327,3,68,0,327, | ||
8165 | 3,69,0,327,3, | ||
8166 | 70,0,327,3,71, | ||
8167 | 0,327,3,72,0, | ||
8168 | 327,3,73,0,327, | ||
8169 | 3,74,0,327,3, | ||
8170 | 75,0,327,3,76, | ||
8171 | 0,327,3,77,0, | ||
8172 | 327,3,78,0,327, | ||
8173 | 3,79,0,327,3, | ||
8174 | 80,0,327,3,81, | ||
8175 | 0,327,3,82,0, | ||
8176 | 327,3,83,0,327, | ||
8177 | 3,84,0,327,3, | ||
8178 | 85,0,327,3,86, | ||
8179 | 0,327,3,87,0, | ||
8180 | 327,3,88,0,327, | ||
8181 | 3,89,0,327,3, | ||
8182 | 90,0,327,3,95, | ||
8183 | 0,327,3,97,0, | ||
8184 | 327,3,98,0,327, | ||
8185 | 3,99,0,327,3, | ||
8186 | 100,0,327,3,101, | ||
8187 | 0,746,12,1,34791, | ||
8188 | 747,5,63,3,109, | ||
8189 | 0,327,3,110,0, | ||
8190 | 748,12,1,34820,749, | ||
8191 | 5,63,3,109,0, | ||
8192 | 327,3,110,0,327, | ||
8193 | 3,111,0,327,3, | ||
8194 | 112,0,327,3,113, | ||
8195 | 0,327,3,114,0, | ||
8196 | 327,3,115,0,327, | ||
8197 | 3,116,0,327,3, | ||
8198 | 117,0,327,3,118, | ||
8199 | 0,327,3,119,0, | ||
8200 | 327,3,120,0,327, | ||
8201 | 3,121,0,327,3, | ||
8202 | 122,0,327,3,48, | ||
8203 | 0,327,3,49,0, | ||
8204 | 327,3,50,0,327, | ||
8205 | 3,51,0,327,3, | ||
8206 | 52,0,327,3,53, | ||
8207 | 0,327,3,54,0, | ||
8208 | 327,3,55,0,327, | ||
8209 | 3,56,0,327,3, | ||
8210 | 57,0,327,3,65, | ||
8211 | 0,327,3,66,0, | ||
8212 | 327,3,67,0,327, | ||
8213 | 3,68,0,327,3, | ||
8214 | 69,0,327,3,70, | ||
8215 | 0,327,3,71,0, | ||
8216 | 327,3,72,0,327, | ||
8217 | 3,73,0,327,3, | ||
8218 | 74,0,327,3,75, | ||
8219 | 0,327,3,76,0, | ||
8220 | 327,3,77,0,327, | ||
8221 | 3,78,0,327,3, | ||
8222 | 79,0,327,3,80, | ||
8223 | 0,327,3,81,0, | ||
8224 | 327,3,82,0,327, | ||
8225 | 3,83,0,327,3, | ||
8226 | 84,0,327,3,85, | ||
8227 | 0,327,3,86,0, | ||
8228 | 327,3,87,0,327, | ||
8229 | 3,88,0,327,3, | ||
8230 | 89,0,327,3,90, | ||
8231 | 0,327,3,95,0, | ||
8232 | 327,3,97,0,327, | ||
8233 | 3,98,0,327,3, | ||
8234 | 99,0,327,3,100, | ||
8235 | 0,750,12,1,34866, | ||
8236 | 751,5,63,3,109, | ||
8237 | 0,327,3,110,0, | ||
8238 | 327,3,111,0,327, | ||
8239 | 3,112,0,327,3, | ||
8240 | 113,0,327,3,114, | ||
8241 | 0,327,3,115,0, | ||
8242 | 327,3,116,0,327, | ||
8243 | 3,117,0,327,3, | ||
8244 | 118,0,327,3,119, | ||
8245 | 0,327,3,120,0, | ||
8246 | 327,3,121,0,327, | ||
8247 | 3,122,0,327,3, | ||
8248 | 48,0,327,3,49, | ||
8249 | 0,327,3,50,0, | ||
8250 | 327,3,51,0,327, | ||
8251 | 3,52,0,327,3, | ||
8252 | 53,0,327,3,54, | ||
8253 | 0,327,3,55,0, | ||
8254 | 327,3,56,0,327, | ||
8255 | 3,57,0,327,3, | ||
8256 | 65,0,327,3,66, | ||
8257 | 0,327,3,67,0, | ||
8258 | 327,3,68,0,327, | ||
8259 | 3,69,0,327,3, | ||
8260 | 70,0,327,3,71, | ||
8261 | 0,327,3,72,0, | ||
8262 | 327,3,73,0,327, | ||
8263 | 3,74,0,327,3, | ||
8264 | 75,0,327,3,76, | ||
8265 | 0,327,3,77,0, | ||
8266 | 327,3,78,0,327, | ||
8267 | 3,79,0,327,3, | ||
8268 | 80,0,327,3,81, | ||
8269 | 0,327,3,82,0, | ||
8270 | 327,3,83,0,327, | ||
8271 | 3,84,0,327,3, | ||
8272 | 85,0,327,3,86, | ||
8273 | 0,327,3,87,0, | ||
8274 | 327,3,88,0,327, | ||
8275 | 3,89,0,327,3, | ||
8276 | 90,0,327,3,95, | ||
8277 | 0,327,3,97,0, | ||
8278 | 327,3,98,0,327, | ||
8279 | 3,99,0,327,3, | ||
8280 | 100,0,327,3,101, | ||
8281 | 0,327,3,102,0, | ||
8282 | 327,3,103,0,327, | ||
8283 | 3,104,0,327,3, | ||
8284 | 105,0,327,3,106, | ||
8285 | 0,327,3,107,0, | ||
8286 | 327,3,108,0,327, | ||
8287 | 752,11,1,519,0, | ||
8288 | 753,4,48,76,0, | ||
8289 | 65,0,78,0,68, | ||
8290 | 0,95,0,67,0, | ||
8291 | 79,0,76,0,76, | ||
8292 | 0,73,0,83,0, | ||
8293 | 73,0,79,0,78, | ||
8294 | 0,95,0,69,0, | ||
8295 | 78,0,68,0,95, | ||
8296 | 0,69,0,86,0, | ||
8297 | 69,0,78,0,84, | ||
8298 | 0,1,-1,3,101, | ||
8299 | 0,327,3,102,0, | ||
8300 | 327,3,103,0,327, | ||
8301 | 3,104,0,327,3, | ||
8302 | 105,0,327,3,106, | ||
8303 | 0,327,3,107,0, | ||
8304 | 327,3,108,0,327, | ||
8305 | 754,11,1,829,0, | ||
8306 | 330,1,-1,3,111, | ||
8307 | 0,327,3,112,0, | ||
8308 | 327,3,113,0,327, | ||
8309 | 3,114,0,327,3, | ||
8310 | 115,0,327,3,116, | ||
8311 | 0,327,3,117,0, | ||
8312 | 327,3,118,0,327, | ||
8313 | 3,119,0,327,3, | ||
8314 | 120,0,327,3,121, | ||
8315 | 0,327,3,122,0, | ||
8316 | 327,3,48,0,327, | ||
8317 | 3,49,0,327,3, | ||
8318 | 50,0,327,3,51, | ||
8319 | 0,327,3,52,0, | ||
8320 | 327,3,53,0,327, | ||
8321 | 3,54,0,327,3, | ||
8322 | 55,0,327,3,56, | ||
8323 | 0,327,3,57,0, | ||
8324 | 327,3,65,0,327, | ||
8325 | 3,66,0,327,3, | ||
8326 | 67,0,327,3,68, | ||
8327 | 0,327,3,69,0, | ||
8328 | 327,3,70,0,327, | ||
8329 | 3,71,0,327,3, | ||
8330 | 72,0,327,3,73, | ||
8331 | 0,327,3,74,0, | ||
8332 | 327,3,75,0,327, | ||
8333 | 3,76,0,327,3, | ||
8334 | 77,0,327,3,78, | ||
8335 | 0,327,3,79,0, | ||
8336 | 327,3,80,0,327, | ||
8337 | 3,81,0,327,3, | ||
8338 | 82,0,327,3,83, | ||
8339 | 0,327,3,84,0, | ||
8340 | 327,3,85,0,327, | ||
8341 | 3,86,0,327,3, | ||
8342 | 87,0,327,3,88, | ||
8343 | 0,327,3,89,0, | ||
8344 | 327,3,90,0,327, | ||
8345 | 3,95,0,327,3, | ||
8346 | 97,0,327,3,98, | ||
8347 | 0,327,3,99,0, | ||
8348 | 327,3,100,0,327, | ||
8349 | 3,101,0,327,3, | ||
8350 | 102,0,327,3,103, | ||
8351 | 0,327,3,104,0, | ||
8352 | 327,3,105,0,327, | ||
8353 | 3,106,0,327,3, | ||
8354 | 107,0,327,3,108, | ||
8355 | 0,327,755,11,1, | ||
8356 | 829,0,330,1,-1, | ||
8357 | 3,102,0,327,3, | ||
8358 | 103,0,327,3,104, | ||
8359 | 0,327,3,105,0, | ||
8360 | 327,3,106,0,327, | ||
8361 | 3,107,0,327,3, | ||
8362 | 108,0,327,756,11, | ||
8363 | 1,829,0,330,1, | ||
8364 | -1,3,97,0,327, | ||
8365 | 3,98,0,327,3, | ||
8366 | 99,0,327,3,100, | ||
8367 | 0,327,3,101,0, | ||
8368 | 327,3,102,0,327, | ||
8369 | 3,103,0,327,3, | ||
8370 | 104,0,327,3,105, | ||
8371 | 0,327,3,106,0, | ||
8372 | 327,3,107,0,327, | ||
8373 | 3,108,0,327,757, | ||
8374 | 11,1,501,0,758, | ||
8375 | 4,40,76,0,65, | ||
8376 | 0,78,0,68,0, | ||
8377 | 95,0,67,0,79, | ||
8378 | 0,76,0,76,0, | ||
8379 | 73,0,83,0,73, | ||
8380 | 0,79,0,78,0, | ||
8381 | 95,0,69,0,86, | ||
8382 | 0,69,0,78,0, | ||
8383 | 84,0,1,-1,3, | ||
8384 | 111,0,327,3,112, | ||
8385 | 0,327,3,113,0, | ||
8386 | 327,3,114,0,327, | ||
8387 | 3,115,0,327,3, | ||
8388 | 116,0,327,3,117, | ||
8389 | 0,327,3,118,0, | ||
8390 | 327,3,119,0,327, | ||
8391 | 3,120,0,327,3, | ||
8392 | 121,0,327,3,122, | ||
8393 | 0,327,3,48,0, | ||
8394 | 327,3,49,0,327, | ||
8395 | 3,50,0,327,3, | ||
8396 | 51,0,327,3,52, | ||
8397 | 0,327,3,53,0, | ||
8398 | 327,3,54,0,327, | ||
8399 | 3,55,0,327,3, | ||
8400 | 56,0,327,3,57, | ||
8401 | 0,327,3,65,0, | ||
8402 | 327,3,66,0,327, | ||
8403 | 3,67,0,327,3, | ||
8404 | 68,0,327,3,69, | ||
8405 | 0,327,3,70,0, | ||
8406 | 327,3,71,0,327, | ||
8407 | 3,72,0,327,3, | ||
8408 | 73,0,327,3,74, | ||
8409 | 0,327,3,75,0, | ||
8410 | 327,3,76,0,327, | ||
8411 | 3,77,0,327,3, | ||
8412 | 78,0,327,3,79, | ||
8413 | 0,327,3,80,0, | ||
8414 | 327,3,81,0,327, | ||
8415 | 3,82,0,327,3, | ||
8416 | 83,0,327,3,84, | ||
8417 | 0,327,3,85,0, | ||
8418 | 327,3,86,0,327, | ||
8419 | 3,87,0,327,3, | ||
8420 | 88,0,327,3,89, | ||
8421 | 0,327,3,90,0, | ||
8422 | 327,3,95,0,327, | ||
8423 | 3,97,0,327,3, | ||
8424 | 98,0,327,3,99, | ||
8425 | 0,327,3,100,0, | ||
8426 | 327,3,101,0,327, | ||
8427 | 3,102,0,327,3, | ||
8428 | 103,0,327,3,104, | ||
8429 | 0,327,3,105,0, | ||
8430 | 327,3,106,0,327, | ||
8431 | 3,107,0,327,3, | ||
8432 | 108,0,327,759,11, | ||
8433 | 1,829,0,330,1, | ||
8434 | -1,3,112,0,327, | ||
8435 | 3,113,0,327,3, | ||
8436 | 114,0,327,3,115, | ||
8437 | 0,327,3,116,0, | ||
8438 | 327,3,117,0,327, | ||
8439 | 3,118,0,327,3, | ||
8440 | 119,0,327,3,120, | ||
8441 | 0,327,3,121,0, | ||
8442 | 327,3,122,0,327, | ||
8443 | 3,48,0,327,3, | ||
8444 | 49,0,327,3,50, | ||
8445 | 0,327,3,51,0, | ||
8446 | 327,3,52,0,327, | ||
8447 | 3,53,0,327,3, | ||
8448 | 54,0,327,3,55, | ||
8449 | 0,327,3,56,0, | ||
8450 | 327,3,57,0,327, | ||
8451 | 3,65,0,327,3, | ||
8452 | 66,0,327,3,67, | ||
8453 | 0,327,3,68,0, | ||
8454 | 327,3,69,0,327, | ||
8455 | 3,70,0,327,3, | ||
8456 | 71,0,327,3,72, | ||
8457 | 0,327,3,73,0, | ||
8458 | 327,3,74,0,327, | ||
8459 | 3,75,0,327,3, | ||
8460 | 76,0,327,3,77, | ||
8461 | 0,327,3,78,0, | ||
8462 | 327,3,79,0,327, | ||
8463 | 3,80,0,327,3, | ||
8464 | 81,0,327,3,82, | ||
8465 | 0,327,3,83,0, | ||
8466 | 327,3,84,0,327, | ||
8467 | 3,85,0,327,3, | ||
8468 | 86,0,327,3,87, | ||
8469 | 0,327,3,88,0, | ||
8470 | 327,3,89,0,327, | ||
8471 | 3,90,0,327,3, | ||
8472 | 95,0,327,3,97, | ||
8473 | 0,327,3,98,0, | ||
8474 | 327,3,99,0,327, | ||
8475 | 3,100,0,327,3, | ||
8476 | 101,0,327,3,102, | ||
8477 | 0,327,3,103,0, | ||
8478 | 327,3,104,0,327, | ||
8479 | 3,105,0,327,3, | ||
8480 | 106,0,327,3,107, | ||
8481 | 0,327,3,108,0, | ||
8482 | 327,760,11,1,829, | ||
8483 | 0,330,1,-1,3, | ||
8484 | 106,0,327,3,107, | ||
8485 | 0,327,3,108,0, | ||
8486 | 327,761,11,1,829, | ||
8487 | 0,330,1,-1,3, | ||
8488 | 116,0,327,3,117, | ||
8489 | 0,327,3,118,0, | ||
8490 | 327,3,119,0,327, | ||
8491 | 3,120,0,327,3, | ||
8492 | 121,0,327,3,122, | ||
8493 | 0,327,3,48,0, | ||
8494 | 327,3,49,0,327, | ||
8495 | 3,50,0,327,3, | ||
8496 | 51,0,327,3,52, | ||
8497 | 0,327,3,53,0, | ||
8498 | 327,3,54,0,327, | ||
8499 | 3,55,0,327,3, | ||
8500 | 56,0,327,3,57, | ||
8501 | 0,327,3,65,0, | ||
8502 | 327,3,66,0,327, | ||
8503 | 3,67,0,327,3, | ||
8504 | 68,0,327,3,69, | ||
8505 | 0,327,3,70,0, | ||
8506 | 327,3,71,0,327, | ||
8507 | 3,72,0,327,3, | ||
8508 | 73,0,327,3,74, | ||
8509 | 0,327,3,75,0, | ||
8510 | 327,3,76,0,327, | ||
8511 | 3,77,0,327,3, | ||
8512 | 78,0,327,3,79, | ||
8513 | 0,327,3,80,0, | ||
8514 | 327,3,81,0,327, | ||
8515 | 3,82,0,327,3, | ||
8516 | 83,0,327,3,84, | ||
8517 | 0,327,3,85,0, | ||
8518 | 327,3,86,0,327, | ||
8519 | 3,87,0,327,3, | ||
8520 | 88,0,327,3,89, | ||
8521 | 0,327,3,90,0, | ||
8522 | 327,3,95,0,327, | ||
8523 | 3,97,0,327,3, | ||
8524 | 98,0,327,3,99, | ||
8525 | 0,327,3,100,0, | ||
8526 | 327,3,101,0,327, | ||
8527 | 3,102,0,327,3, | ||
8528 | 103,0,327,3,104, | ||
8529 | 0,327,3,105,0, | ||
8530 | 327,3,106,0,327, | ||
8531 | 3,107,0,327,3, | ||
8532 | 108,0,327,762,11, | ||
8533 | 1,829,0,330,1, | ||
8534 | -1,3,106,0,327, | ||
8535 | 3,107,0,327,3, | ||
8536 | 108,0,327,763,11, | ||
8537 | 1,829,0,330,1, | ||
8538 | -1,764,11,1,829, | ||
8539 | 0,330,1,-1,765, | ||
8540 | 11,1,829,0,330, | ||
8541 | 1,-1,3,112,0, | ||
8542 | 327,3,113,0,327, | ||
8543 | 3,114,0,327,3, | ||
8544 | 115,0,327,3,116, | ||
8545 | 0,327,3,117,0, | ||
8546 | 327,3,118,0,327, | ||
8547 | 3,119,0,327,3, | ||
8548 | 120,0,327,3,121, | ||
8549 | 0,327,3,122,0, | ||
8550 | 327,3,48,0,327, | ||
8551 | 3,49,0,327,3, | ||
8552 | 50,0,327,3,51, | ||
8553 | 0,327,3,52,0, | ||
8554 | 327,3,53,0,327, | ||
8555 | 3,54,0,327,3, | ||
8556 | 55,0,327,3,56, | ||
8557 | 0,327,3,57,0, | ||
8558 | 327,3,65,0,327, | ||
8559 | 3,66,0,327,3, | ||
8560 | 67,0,327,3,68, | ||
8561 | 0,327,3,69,0, | ||
8562 | 327,3,70,0,327, | ||
8563 | 3,71,0,327,3, | ||
8564 | 72,0,327,3,73, | ||
8565 | 0,327,3,74,0, | ||
8566 | 327,3,75,0,327, | ||
8567 | 3,76,0,327,3, | ||
8568 | 77,0,327,3,78, | ||
8569 | 0,327,3,79,0, | ||
8570 | 327,3,80,0,327, | ||
8571 | 3,81,0,327,3, | ||
8572 | 82,0,327,3,83, | ||
8573 | 0,327,3,84,0, | ||
8574 | 327,3,85,0,327, | ||
8575 | 3,86,0,327,3, | ||
8576 | 87,0,327,3,88, | ||
8577 | 0,327,3,89,0, | ||
8578 | 327,3,90,0,327, | ||
8579 | 3,95,0,327,3, | ||
8580 | 97,0,327,3,98, | ||
8581 | 0,327,3,99,0, | ||
8582 | 327,3,100,0,327, | ||
8583 | 3,101,0,327,3, | ||
8584 | 102,0,327,3,103, | ||
8585 | 0,327,3,104,0, | ||
8586 | 327,3,105,0,327, | ||
8587 | 3,106,0,327,3, | ||
8588 | 107,0,327,3,108, | ||
8589 | 0,327,766,11,1, | ||
8590 | 829,0,330,1,-1, | ||
8591 | 3,100,0,327,3, | ||
8592 | 101,0,327,3,102, | ||
8593 | 0,327,3,103,0, | ||
8594 | 327,3,104,0,327, | ||
8595 | 3,105,0,327,3, | ||
8596 | 106,0,327,3,107, | ||
8597 | 0,327,3,108,0, | ||
8598 | 327,767,11,1,829, | ||
8599 | 0,330,1,-1,3, | ||
8600 | 97,0,327,3,98, | ||
8601 | 0,327,3,99,0, | ||
8602 | 327,3,100,0,327, | ||
8603 | 3,101,0,327,3, | ||
8604 | 102,0,327,3,103, | ||
8605 | 0,327,3,104,0, | ||
8606 | 327,3,105,0,327, | ||
8607 | 3,106,0,327,3, | ||
8608 | 107,0,327,3,108, | ||
8609 | 0,327,768,11,1, | ||
8610 | 829,0,330,1,-1, | ||
8611 | 3,101,0,327,3, | ||
8612 | 102,0,327,3,103, | ||
8613 | 0,327,3,104,0, | ||
8614 | 327,3,105,0,327, | ||
8615 | 3,106,0,327,3, | ||
8616 | 107,0,327,3,108, | ||
8617 | 0,327,769,11,1, | ||
8618 | 829,0,330,1,-1, | ||
8619 | 3,111,0,327,3, | ||
8620 | 112,0,327,3,113, | ||
8621 | 0,327,3,114,0, | ||
8622 | 327,3,115,0,327, | ||
8623 | 3,116,0,327,3, | ||
8624 | 117,0,327,3,118, | ||
8625 | 0,327,3,119,0, | ||
8626 | 327,3,120,0,327, | ||
8627 | 3,121,0,327,3, | ||
8628 | 122,0,327,3,48, | ||
8629 | 0,327,3,49,0, | ||
8630 | 327,3,50,0,327, | ||
8631 | 3,51,0,327,3, | ||
8632 | 52,0,327,3,53, | ||
8633 | 0,327,3,54,0, | ||
8634 | 327,3,55,0,327, | ||
8635 | 3,56,0,327,3, | ||
8636 | 57,0,327,3,65, | ||
8637 | 0,327,3,66,0, | ||
8638 | 327,3,67,0,327, | ||
8639 | 3,68,0,327,3, | ||
8640 | 69,0,327,3,70, | ||
8641 | 0,327,3,71,0, | ||
8642 | 327,3,72,0,327, | ||
8643 | 3,73,0,327,3, | ||
8644 | 74,0,327,3,75, | ||
8645 | 0,327,3,76,0, | ||
8646 | 327,3,77,0,327, | ||
8647 | 3,78,0,327,3, | ||
8648 | 79,0,327,3,80, | ||
8649 | 0,327,3,81,0, | ||
8650 | 327,3,82,0,327, | ||
8651 | 3,83,0,327,3, | ||
8652 | 84,0,327,3,85, | ||
8653 | 0,327,3,86,0, | ||
8654 | 327,3,87,0,327, | ||
8655 | 3,88,0,327,3, | ||
8656 | 89,0,327,3,90, | ||
8657 | 0,327,3,95,0, | ||
8658 | 327,3,97,0,327, | ||
8659 | 3,98,0,327,3, | ||
8660 | 99,0,327,3,100, | ||
8661 | 0,327,3,101,0, | ||
8662 | 327,3,102,0,327, | ||
8663 | 3,103,0,327,3, | ||
8664 | 104,0,327,3,105, | ||
8665 | 0,327,3,106,0, | ||
8666 | 327,3,107,0,327, | ||
8667 | 3,108,0,327,770, | ||
8668 | 11,1,829,0,330, | ||
8669 | 1,-1,3,98,0, | ||
8670 | 327,3,99,0,327, | ||
8671 | 3,100,0,327,3, | ||
8672 | 101,0,327,3,102, | ||
8673 | 0,327,3,103,0, | ||
8674 | 327,3,104,0,327, | ||
8675 | 3,105,0,771,12, | ||
8676 | 1,36167,772,5,63, | ||
8677 | 3,109,0,327,3, | ||
8678 | 110,0,773,12,1, | ||
8679 | 36196,774,5,63,3, | ||
8680 | 109,0,327,3,110, | ||
8681 | 0,327,3,111,0, | ||
8682 | 327,3,112,0,327, | ||
8683 | 3,113,0,327,3, | ||
8684 | 114,0,327,3,115, | ||
8685 | 0,327,3,116,0, | ||
8686 | 327,3,117,0,327, | ||
8687 | 3,118,0,327,3, | ||
8688 | 119,0,327,3,120, | ||
8689 | 0,327,3,121,0, | ||
8690 | 327,3,122,0,327, | ||
8691 | 3,48,0,327,3, | ||
8692 | 49,0,327,3,50, | ||
8693 | 0,327,3,51,0, | ||
8694 | 327,3,52,0,327, | ||
8695 | 3,53,0,327,3, | ||
8696 | 54,0,327,3,55, | ||
8697 | 0,327,3,56,0, | ||
8698 | 327,3,57,0,327, | ||
8699 | 3,65,0,327,3, | ||
8700 | 66,0,327,3,67, | ||
8701 | 0,327,3,68,0, | ||
8702 | 327,3,69,0,327, | ||
8703 | 3,70,0,327,3, | ||
8704 | 71,0,327,3,72, | ||
8705 | 0,327,3,73,0, | ||
8706 | 327,3,74,0,327, | ||
8707 | 3,75,0,327,3, | ||
8708 | 76,0,327,3,77, | ||
8709 | 0,327,3,78,0, | ||
8710 | 327,3,79,0,327, | ||
8711 | 3,80,0,327,3, | ||
8712 | 81,0,327,3,82, | ||
8713 | 0,327,3,83,0, | ||
8714 | 327,3,84,0,327, | ||
8715 | 3,85,0,327,3, | ||
8716 | 86,0,327,3,87, | ||
8717 | 0,327,3,88,0, | ||
8718 | 327,3,89,0,327, | ||
8719 | 3,90,0,327,3, | ||
8720 | 95,0,327,3,97, | ||
8721 | 0,327,3,98,0, | ||
8722 | 327,3,99,0,327, | ||
8723 | 3,100,0,327,3, | ||
8724 | 101,0,327,3,102, | ||
8725 | 0,327,3,103,0, | ||
8726 | 327,3,104,0,327, | ||
8727 | 3,105,0,327,3, | ||
8728 | 106,0,327,3,107, | ||
8729 | 0,775,12,1,36249, | ||
8730 | 776,5,63,3,109, | ||
8731 | 0,327,3,110,0, | ||
8732 | 327,3,111,0,327, | ||
8733 | 3,112,0,327,3, | ||
8734 | 113,0,327,3,114, | ||
8735 | 0,327,3,115,0, | ||
8736 | 327,3,116,0,327, | ||
8737 | 3,117,0,327,3, | ||
8738 | 118,0,327,3,119, | ||
8739 | 0,327,3,120,0, | ||
8740 | 327,3,121,0,327, | ||
8741 | 3,122,0,327,3, | ||
8742 | 48,0,327,3,49, | ||
8743 | 0,327,3,50,0, | ||
8744 | 327,3,51,0,327, | ||
8745 | 3,52,0,327,3, | ||
8746 | 53,0,327,3,54, | ||
8747 | 0,327,3,55,0, | ||
8748 | 327,3,56,0,327, | ||
8749 | 3,57,0,327,3, | ||
8750 | 65,0,327,3,66, | ||
8751 | 0,327,3,67,0, | ||
8752 | 327,3,68,0,327, | ||
8753 | 3,69,0,327,3, | ||
8754 | 70,0,327,3,71, | ||
8755 | 0,327,3,72,0, | ||
8756 | 327,3,73,0,327, | ||
8757 | 3,74,0,327,3, | ||
8758 | 75,0,327,3,76, | ||
8759 | 0,327,3,77,0, | ||
8760 | 327,3,78,0,327, | ||
8761 | 3,79,0,327,3, | ||
8762 | 80,0,327,3,81, | ||
8763 | 0,327,3,82,0, | ||
8764 | 327,3,83,0,327, | ||
8765 | 3,84,0,327,3, | ||
8766 | 85,0,327,3,86, | ||
8767 | 0,327,3,87,0, | ||
8768 | 327,3,88,0,327, | ||
8769 | 3,89,0,327,3, | ||
8770 | 90,0,327,3,95, | ||
8771 | 0,777,12,1,36335, | ||
8772 | 778,5,63,3,109, | ||
8773 | 0,779,12,1,36363, | ||
8774 | 780,5,63,3,109, | ||
8775 | 0,327,3,110,0, | ||
8776 | 327,3,111,0,327, | ||
8777 | 3,112,0,327,3, | ||
8778 | 113,0,327,3,114, | ||
8779 | 0,327,3,115,0, | ||
8780 | 327,3,116,0,327, | ||
8781 | 3,117,0,327,3, | ||
8782 | 118,0,327,3,119, | ||
8783 | 0,327,3,120,0, | ||
8784 | 327,3,121,0,327, | ||
8785 | 3,122,0,327,3, | ||
8786 | 48,0,327,3,49, | ||
8787 | 0,327,3,50,0, | ||
8788 | 327,3,51,0,327, | ||
8789 | 3,52,0,327,3, | ||
8790 | 53,0,327,3,54, | ||
8791 | 0,327,3,55,0, | ||
8792 | 327,3,56,0,327, | ||
8793 | 3,57,0,327,3, | ||
8794 | 65,0,327,3,66, | ||
8795 | 0,327,3,67,0, | ||
8796 | 327,3,68,0,327, | ||
8797 | 3,69,0,327,3, | ||
8798 | 70,0,327,3,71, | ||
8799 | 0,327,3,72,0, | ||
8800 | 327,3,73,0,327, | ||
8801 | 3,74,0,327,3, | ||
8802 | 75,0,327,3,76, | ||
8803 | 0,327,3,77,0, | ||
8804 | 327,3,78,0,327, | ||
8805 | 3,79,0,327,3, | ||
8806 | 80,0,327,3,81, | ||
8807 | 0,327,3,82,0, | ||
8808 | 327,3,83,0,327, | ||
8809 | 3,84,0,327,3, | ||
8810 | 85,0,327,3,86, | ||
8811 | 0,327,3,87,0, | ||
8812 | 327,3,88,0,327, | ||
8813 | 3,89,0,327,3, | ||
8814 | 90,0,327,3,95, | ||
8815 | 0,327,3,97,0, | ||
8816 | 327,3,98,0,327, | ||
8817 | 3,99,0,327,3, | ||
8818 | 100,0,327,3,101, | ||
8819 | 0,781,12,1,36410, | ||
8820 | 782,5,63,3,109, | ||
8821 | 0,327,3,110,0, | ||
8822 | 327,3,111,0,327, | ||
8823 | 3,112,0,327,3, | ||
8824 | 113,0,327,3,114, | ||
8825 | 0,327,3,115,0, | ||
8826 | 783,12,1,36444,784, | ||
8827 | 5,63,3,109,0, | ||
8828 | 327,3,110,0,327, | ||
8829 | 3,111,0,327,3, | ||
8830 | 112,0,327,3,113, | ||
8831 | 0,327,3,114,0, | ||
8832 | 327,3,115,0,785, | ||
8833 | 12,1,36478,786,5, | ||
8834 | 63,3,109,0,327, | ||
8835 | 3,110,0,327,3, | ||
8836 | 111,0,327,3,112, | ||
8837 | 0,327,3,113,0, | ||
8838 | 327,3,114,0,327, | ||
8839 | 3,115,0,327,3, | ||
8840 | 116,0,327,3,117, | ||
8841 | 0,327,3,118,0, | ||
8842 | 327,3,119,0,327, | ||
8843 | 3,120,0,327,3, | ||
8844 | 121,0,327,3,122, | ||
8845 | 0,327,3,48,0, | ||
8846 | 327,3,49,0,327, | ||
8847 | 3,50,0,327,3, | ||
8848 | 51,0,327,3,52, | ||
8849 | 0,327,3,53,0, | ||
8850 | 327,3,54,0,327, | ||
8851 | 3,55,0,327,3, | ||
8852 | 56,0,327,3,57, | ||
8853 | 0,327,3,65,0, | ||
8854 | 327,3,66,0,327, | ||
8855 | 3,67,0,327,3, | ||
8856 | 68,0,327,3,69, | ||
8857 | 0,327,3,70,0, | ||
8858 | 327,3,71,0,327, | ||
8859 | 3,72,0,327,3, | ||
8860 | 73,0,327,3,74, | ||
8861 | 0,327,3,75,0, | ||
8862 | 327,3,76,0,327, | ||
8863 | 3,77,0,327,3, | ||
8864 | 78,0,327,3,79, | ||
8865 | 0,327,3,80,0, | ||
8866 | 327,3,81,0,327, | ||
8867 | 3,82,0,327,3, | ||
8868 | 83,0,327,3,84, | ||
8869 | 0,327,3,85,0, | ||
8870 | 327,3,86,0,327, | ||
8871 | 3,87,0,327,3, | ||
8872 | 88,0,327,3,89, | ||
8873 | 0,327,3,90,0, | ||
8874 | 327,3,95,0,327, | ||
8875 | 3,97,0,787,12, | ||
8876 | 1,36521,788,5,63, | ||
8877 | 3,109,0,327,3, | ||
8878 | 110,0,327,3,111, | ||
8879 | 0,327,3,112,0, | ||
8880 | 327,3,113,0,327, | ||
8881 | 3,114,0,327,3, | ||
8882 | 115,0,327,3,116, | ||
8883 | 0,327,3,117,0, | ||
8884 | 327,3,118,0,327, | ||
8885 | 3,119,0,327,3, | ||
8886 | 120,0,327,3,121, | ||
8887 | 0,327,3,122,0, | ||
8888 | 327,3,48,0,327, | ||
8889 | 3,49,0,327,3, | ||
8890 | 50,0,327,3,51, | ||
8891 | 0,327,3,52,0, | ||
8892 | 327,3,53,0,327, | ||
8893 | 3,54,0,327,3, | ||
8894 | 55,0,327,3,56, | ||
8895 | 0,327,3,57,0, | ||
8896 | 327,3,65,0,327, | ||
8897 | 3,66,0,327,3, | ||
8898 | 67,0,327,3,68, | ||
8899 | 0,327,3,69,0, | ||
8900 | 327,3,70,0,327, | ||
8901 | 3,71,0,327,3, | ||
8902 | 72,0,327,3,73, | ||
8903 | 0,327,3,74,0, | ||
8904 | 327,3,75,0,327, | ||
8905 | 3,76,0,327,3, | ||
8906 | 77,0,327,3,78, | ||
8907 | 0,327,3,79,0, | ||
8908 | 327,3,80,0,327, | ||
8909 | 3,81,0,327,3, | ||
8910 | 82,0,327,3,83, | ||
8911 | 0,327,3,84,0, | ||
8912 | 327,3,85,0,327, | ||
8913 | 3,86,0,327,3, | ||
8914 | 87,0,327,3,88, | ||
8915 | 0,327,3,89,0, | ||
8916 | 327,3,90,0,327, | ||
8917 | 3,95,0,327,3, | ||
8918 | 97,0,327,3,98, | ||
8919 | 0,327,3,99,0, | ||
8920 | 327,3,100,0,327, | ||
8921 | 3,101,0,327,3, | ||
8922 | 102,0,327,3,103, | ||
8923 | 0,789,12,1,36570, | ||
8924 | 790,5,63,3,109, | ||
8925 | 0,327,3,110,0, | ||
8926 | 327,3,111,0,327, | ||
8927 | 3,112,0,327,3, | ||
8928 | 113,0,327,3,114, | ||
8929 | 0,327,3,115,0, | ||
8930 | 327,3,116,0,327, | ||
8931 | 3,117,0,327,3, | ||
8932 | 118,0,327,3,119, | ||
8933 | 0,327,3,120,0, | ||
8934 | 327,3,121,0,327, | ||
8935 | 3,122,0,327,3, | ||
8936 | 48,0,327,3,49, | ||
8937 | 0,327,3,50,0, | ||
8938 | 327,3,51,0,327, | ||
8939 | 3,52,0,327,3, | ||
8940 | 53,0,327,3,54, | ||
8941 | 0,327,3,55,0, | ||
8942 | 327,3,56,0,327, | ||
8943 | 3,57,0,327,3, | ||
8944 | 65,0,327,3,66, | ||
8945 | 0,327,3,67,0, | ||
8946 | 327,3,68,0,327, | ||
8947 | 3,69,0,327,3, | ||
8948 | 70,0,327,3,71, | ||
8949 | 0,327,3,72,0, | ||
8950 | 327,3,73,0,327, | ||
8951 | 3,74,0,327,3, | ||
8952 | 75,0,327,3,76, | ||
8953 | 0,327,3,77,0, | ||
8954 | 327,3,78,0,327, | ||
8955 | 3,79,0,327,3, | ||
8956 | 80,0,327,3,81, | ||
8957 | 0,327,3,82,0, | ||
8958 | 327,3,83,0,327, | ||
8959 | 3,84,0,327,3, | ||
8960 | 85,0,327,3,86, | ||
8961 | 0,327,3,87,0, | ||
8962 | 327,3,88,0,327, | ||
8963 | 3,89,0,327,3, | ||
8964 | 90,0,327,3,95, | ||
8965 | 0,327,3,97,0, | ||
8966 | 327,3,98,0,327, | ||
8967 | 3,99,0,327,3, | ||
8968 | 100,0,327,3,101, | ||
8969 | 0,791,12,1,36617, | ||
8970 | 792,5,63,3,109, | ||
8971 | 0,327,3,110,0, | ||
8972 | 327,3,111,0,327, | ||
8973 | 3,112,0,327,3, | ||
8974 | 113,0,327,3,114, | ||
8975 | 0,327,3,115,0, | ||
8976 | 327,3,116,0,327, | ||
8977 | 3,117,0,327,3, | ||
8978 | 118,0,327,3,119, | ||
8979 | 0,327,3,120,0, | ||
8980 | 327,3,121,0,327, | ||
8981 | 3,122,0,327,3, | ||
8982 | 48,0,327,3,49, | ||
8983 | 0,327,3,50,0, | ||
8984 | 327,3,51,0,327, | ||
8985 | 3,52,0,327,3, | ||
8986 | 53,0,327,3,54, | ||
8987 | 0,327,3,55,0, | ||
8988 | 327,3,56,0,327, | ||
8989 | 3,57,0,327,3, | ||
8990 | 65,0,327,3,66, | ||
8991 | 0,327,3,67,0, | ||
8992 | 327,3,68,0,327, | ||
8993 | 3,69,0,327,3, | ||
8994 | 70,0,327,3,71, | ||
8995 | 0,327,3,72,0, | ||
8996 | 327,3,73,0,327, | ||
8997 | 3,74,0,327,3, | ||
8998 | 75,0,327,3,76, | ||
8999 | 0,327,3,77,0, | ||
9000 | 327,3,78,0,327, | ||
9001 | 3,79,0,327,3, | ||
9002 | 80,0,327,3,81, | ||
9003 | 0,327,3,82,0, | ||
9004 | 327,3,83,0,327, | ||
9005 | 3,84,0,327,3, | ||
9006 | 85,0,327,3,86, | ||
9007 | 0,327,3,87,0, | ||
9008 | 327,3,88,0,327, | ||
9009 | 3,89,0,327,3, | ||
9010 | 90,0,327,3,95, | ||
9011 | 0,327,3,97,0, | ||
9012 | 327,3,98,0,327, | ||
9013 | 3,99,0,327,3, | ||
9014 | 100,0,327,3,101, | ||
9015 | 0,327,3,102,0, | ||
9016 | 327,3,103,0,327, | ||
9017 | 3,104,0,327,3, | ||
9018 | 105,0,327,3,106, | ||
9019 | 0,327,3,107,0, | ||
9020 | 327,3,108,0,327, | ||
9021 | 793,11,1,565,0, | ||
9022 | 794,4,36,76,0, | ||
9023 | 73,0,78,0,75, | ||
9024 | 0,95,0,77,0, | ||
9025 | 69,0,83,0,83, | ||
9026 | 0,65,0,71,0, | ||
9027 | 69,0,95,0,69, | ||
9028 | 0,86,0,69,0, | ||
9029 | 78,0,84,0,1, | ||
9030 | -1,3,102,0,327, | ||
9031 | 3,103,0,327,3, | ||
9032 | 104,0,327,3,105, | ||
9033 | 0,327,3,106,0, | ||
9034 | 327,3,107,0,327, | ||
9035 | 3,108,0,327,795, | ||
9036 | 11,1,829,0,330, | ||
9037 | 1,-1,3,104,0, | ||
9038 | 327,3,105,0,327, | ||
9039 | 3,106,0,327,3, | ||
9040 | 107,0,327,3,108, | ||
9041 | 0,327,796,11,1, | ||
9042 | 829,0,330,1,-1, | ||
9043 | 3,98,0,327,3, | ||
9044 | 99,0,327,3,100, | ||
9045 | 0,327,3,101,0, | ||
9046 | 327,3,102,0,327, | ||
9047 | 3,103,0,327,3, | ||
9048 | 104,0,327,3,105, | ||
9049 | 0,327,3,106,0, | ||
9050 | 327,3,107,0,327, | ||
9051 | 3,108,0,327,797, | ||
9052 | 11,1,829,0,330, | ||
9053 | 1,-1,3,116,0, | ||
9054 | 327,3,117,0,327, | ||
9055 | 3,118,0,327,3, | ||
9056 | 119,0,327,3,120, | ||
9057 | 0,327,3,121,0, | ||
9058 | 327,3,122,0,327, | ||
9059 | 3,48,0,327,3, | ||
9060 | 49,0,327,3,50, | ||
9061 | 0,327,3,51,0, | ||
9062 | 327,3,52,0,327, | ||
9063 | 3,53,0,327,3, | ||
9064 | 54,0,327,3,55, | ||
9065 | 0,327,3,56,0, | ||
9066 | 327,3,57,0,327, | ||
9067 | 3,65,0,327,3, | ||
9068 | 66,0,327,3,67, | ||
9069 | 0,327,3,68,0, | ||
9070 | 327,3,69,0,327, | ||
9071 | 3,70,0,327,3, | ||
9072 | 71,0,327,3,72, | ||
9073 | 0,327,3,73,0, | ||
9074 | 327,3,74,0,327, | ||
9075 | 3,75,0,327,3, | ||
9076 | 76,0,327,3,77, | ||
9077 | 0,327,3,78,0, | ||
9078 | 327,3,79,0,327, | ||
9079 | 3,80,0,327,3, | ||
9080 | 81,0,327,3,82, | ||
9081 | 0,327,3,83,0, | ||
9082 | 327,3,84,0,327, | ||
9083 | 3,85,0,327,3, | ||
9084 | 86,0,327,3,87, | ||
9085 | 0,327,3,88,0, | ||
9086 | 327,3,89,0,327, | ||
9087 | 3,90,0,327,3, | ||
9088 | 95,0,327,3,97, | ||
9089 | 0,327,3,98,0, | ||
9090 | 327,3,99,0,327, | ||
9091 | 3,100,0,327,3, | ||
9092 | 101,0,327,3,102, | ||
9093 | 0,327,3,103,0, | ||
9094 | 327,3,104,0,327, | ||
9095 | 3,105,0,327,3, | ||
9096 | 106,0,327,3,107, | ||
9097 | 0,327,3,108,0, | ||
9098 | 327,798,11,1,829, | ||
9099 | 0,330,1,-1,3, | ||
9100 | 116,0,327,3,117, | ||
9101 | 0,327,3,118,0, | ||
9102 | 327,3,119,0,327, | ||
9103 | 3,120,0,327,3, | ||
9104 | 121,0,327,3,122, | ||
9105 | 0,327,3,48,0, | ||
9106 | 327,3,49,0,327, | ||
9107 | 3,50,0,327,3, | ||
9108 | 51,0,327,3,52, | ||
9109 | 0,327,3,53,0, | ||
9110 | 327,3,54,0,327, | ||
9111 | 3,55,0,327,3, | ||
9112 | 56,0,327,3,57, | ||
9113 | 0,327,3,65,0, | ||
9114 | 327,3,66,0,327, | ||
9115 | 3,67,0,327,3, | ||
9116 | 68,0,327,3,69, | ||
9117 | 0,327,3,70,0, | ||
9118 | 327,3,71,0,327, | ||
9119 | 3,72,0,327,3, | ||
9120 | 73,0,327,3,74, | ||
9121 | 0,327,3,75,0, | ||
9122 | 327,3,76,0,327, | ||
9123 | 3,77,0,327,3, | ||
9124 | 78,0,327,3,79, | ||
9125 | 0,327,3,80,0, | ||
9126 | 327,3,81,0,327, | ||
9127 | 3,82,0,327,3, | ||
9128 | 83,0,327,3,84, | ||
9129 | 0,327,3,85,0, | ||
9130 | 327,3,86,0,327, | ||
9131 | 3,87,0,327,3, | ||
9132 | 88,0,327,3,89, | ||
9133 | 0,327,3,90,0, | ||
9134 | 327,3,95,0,327, | ||
9135 | 3,97,0,327,3, | ||
9136 | 98,0,327,3,99, | ||
9137 | 0,327,3,100,0, | ||
9138 | 327,3,101,0,327, | ||
9139 | 3,102,0,327,3, | ||
9140 | 103,0,327,3,104, | ||
9141 | 0,327,3,105,0, | ||
9142 | 327,3,106,0,327, | ||
9143 | 3,107,0,327,3, | ||
9144 | 108,0,327,799,11, | ||
9145 | 1,829,0,330,1, | ||
9146 | -1,3,102,0,327, | ||
9147 | 3,103,0,327,3, | ||
9148 | 104,0,327,3,105, | ||
9149 | 0,327,3,106,0, | ||
9150 | 327,3,107,0,327, | ||
9151 | 3,108,0,327,800, | ||
9152 | 11,1,829,0,330, | ||
9153 | 1,-1,3,110,0, | ||
9154 | 327,3,111,0,327, | ||
9155 | 3,112,0,327,3, | ||
9156 | 113,0,327,3,114, | ||
9157 | 0,327,3,115,0, | ||
9158 | 327,3,116,0,327, | ||
9159 | 3,117,0,327,3, | ||
9160 | 118,0,327,3,119, | ||
9161 | 0,327,3,120,0, | ||
9162 | 327,3,121,0,327, | ||
9163 | 3,122,0,327,3, | ||
9164 | 48,0,327,3,49, | ||
9165 | 0,327,3,50,0, | ||
9166 | 327,3,51,0,327, | ||
9167 | 3,52,0,327,3, | ||
9168 | 53,0,327,3,54, | ||
9169 | 0,327,3,55,0, | ||
9170 | 327,3,56,0,327, | ||
9171 | 3,57,0,327,3, | ||
9172 | 65,0,327,3,66, | ||
9173 | 0,327,3,67,0, | ||
9174 | 327,3,68,0,327, | ||
9175 | 3,69,0,327,3, | ||
9176 | 70,0,327,3,71, | ||
9177 | 0,327,3,72,0, | ||
9178 | 327,3,73,0,327, | ||
9179 | 3,74,0,327,3, | ||
9180 | 75,0,327,3,76, | ||
9181 | 0,327,3,77,0, | ||
9182 | 327,3,78,0,327, | ||
9183 | 3,79,0,327,3, | ||
9184 | 80,0,327,3,81, | ||
9185 | 0,327,3,82,0, | ||
9186 | 327,3,83,0,327, | ||
9187 | 3,84,0,327,3, | ||
9188 | 85,0,327,3,86, | ||
9189 | 0,327,3,87,0, | ||
9190 | 327,3,88,0,327, | ||
9191 | 3,89,0,327,3, | ||
9192 | 90,0,327,3,95, | ||
9193 | 0,327,3,97,0, | ||
9194 | 327,3,98,0,327, | ||
9195 | 3,99,0,327,3, | ||
9196 | 100,0,327,3,101, | ||
9197 | 0,327,3,102,0, | ||
9198 | 327,3,103,0,327, | ||
9199 | 3,104,0,327,3, | ||
9200 | 105,0,327,3,106, | ||
9201 | 0,327,3,107,0, | ||
9202 | 327,3,108,0,327, | ||
9203 | 801,11,1,829,0, | ||
9204 | 330,1,-1,3,97, | ||
9205 | 0,327,3,98,0, | ||
9206 | 327,3,99,0,327, | ||
9207 | 3,100,0,327,3, | ||
9208 | 101,0,327,3,102, | ||
9209 | 0,327,3,103,0, | ||
9210 | 327,3,104,0,327, | ||
9211 | 3,105,0,327,3, | ||
9212 | 106,0,327,3,107, | ||
9213 | 0,327,3,108,0, | ||
9214 | 327,802,11,1,829, | ||
9215 | 0,330,1,-1,3, | ||
9216 | 108,0,327,803,11, | ||
9217 | 1,829,0,330,1, | ||
9218 | -1,3,111,0,327, | ||
9219 | 3,112,0,327,3, | ||
9220 | 113,0,327,3,114, | ||
9221 | 0,327,3,115,0, | ||
9222 | 804,12,1,37401,805, | ||
9223 | 5,63,3,109,0, | ||
9224 | 327,3,110,0,327, | ||
9225 | 3,111,0,327,3, | ||
9226 | 112,0,327,3,113, | ||
9227 | 0,327,3,114,0, | ||
9228 | 327,3,115,0,327, | ||
9229 | 3,116,0,806,12, | ||
9230 | 1,37436,807,5,63, | ||
9231 | 3,109,0,327,3, | ||
9232 | 110,0,327,3,111, | ||
9233 | 0,327,3,112,0, | ||
9234 | 327,3,113,0,327, | ||
9235 | 3,114,0,327,3, | ||
9236 | 115,0,327,3,116, | ||
9237 | 0,327,3,117,0, | ||
9238 | 327,3,118,0,327, | ||
9239 | 3,119,0,327,3, | ||
9240 | 120,0,327,3,121, | ||
9241 | 0,327,3,122,0, | ||
9242 | 327,3,48,0,327, | ||
9243 | 3,49,0,327,3, | ||
9244 | 50,0,327,3,51, | ||
9245 | 0,327,3,52,0, | ||
9246 | 327,3,53,0,327, | ||
9247 | 3,54,0,327,3, | ||
9248 | 55,0,327,3,56, | ||
9249 | 0,327,3,57,0, | ||
9250 | 327,3,65,0,327, | ||
9251 | 3,66,0,327,3, | ||
9252 | 67,0,327,3,68, | ||
9253 | 0,327,3,69,0, | ||
9254 | 327,3,70,0,327, | ||
9255 | 3,71,0,327,3, | ||
9256 | 72,0,327,3,73, | ||
9257 | 0,327,3,74,0, | ||
9258 | 327,3,75,0,327, | ||
9259 | 3,76,0,327,3, | ||
9260 | 77,0,327,3,78, | ||
9261 | 0,327,3,79,0, | ||
9262 | 327,3,80,0,327, | ||
9263 | 3,81,0,327,3, | ||
9264 | 82,0,327,3,83, | ||
9265 | 0,327,3,84,0, | ||
9266 | 327,3,85,0,327, | ||
9267 | 3,86,0,327,3, | ||
9268 | 87,0,327,3,88, | ||
9269 | 0,327,3,89,0, | ||
9270 | 327,3,90,0,327, | ||
9271 | 3,95,0,327,3, | ||
9272 | 97,0,327,3,98, | ||
9273 | 0,327,3,99,0, | ||
9274 | 327,3,100,0,327, | ||
9275 | 3,101,0,808,12, | ||
9276 | 1,37483,809,5,63, | ||
9277 | 3,109,0,327,3, | ||
9278 | 110,0,810,12,1, | ||
9279 | 37512,811,5,63,3, | ||
9280 | 109,0,327,3,110, | ||
9281 | 0,327,3,111,0, | ||
9282 | 327,3,112,0,327, | ||
9283 | 3,113,0,327,3, | ||
9284 | 114,0,327,3,115, | ||
9285 | 0,327,3,116,0, | ||
9286 | 327,3,117,0,327, | ||
9287 | 3,118,0,327,3, | ||
9288 | 119,0,327,3,120, | ||
9289 | 0,327,3,121,0, | ||
9290 | 327,3,122,0,327, | ||
9291 | 3,48,0,327,3, | ||
9292 | 49,0,327,3,50, | ||
9293 | 0,327,3,51,0, | ||
9294 | 327,3,52,0,327, | ||
9295 | 3,53,0,327,3, | ||
9296 | 54,0,327,3,55, | ||
9297 | 0,327,3,56,0, | ||
9298 | 327,3,57,0,327, | ||
9299 | 3,65,0,327,3, | ||
9300 | 66,0,327,3,67, | ||
9301 | 0,327,3,68,0, | ||
9302 | 327,3,69,0,327, | ||
9303 | 3,70,0,327,3, | ||
9304 | 71,0,327,3,72, | ||
9305 | 0,327,3,73,0, | ||
9306 | 327,3,74,0,327, | ||
9307 | 3,75,0,327,3, | ||
9308 | 76,0,327,3,77, | ||
9309 | 0,327,3,78,0, | ||
9310 | 327,3,79,0,327, | ||
9311 | 3,80,0,327,3, | ||
9312 | 81,0,327,3,82, | ||
9313 | 0,327,3,83,0, | ||
9314 | 327,3,84,0,327, | ||
9315 | 3,85,0,327,3, | ||
9316 | 86,0,327,3,87, | ||
9317 | 0,327,3,88,0, | ||
9318 | 327,3,89,0,327, | ||
9319 | 3,90,0,327,3, | ||
9320 | 95,0,327,3,97, | ||
9321 | 0,327,3,98,0, | ||
9322 | 327,3,99,0,327, | ||
9323 | 3,100,0,327,3, | ||
9324 | 101,0,327,3,102, | ||
9325 | 0,327,3,103,0, | ||
9326 | 327,3,104,0,327, | ||
9327 | 3,105,0,327,3, | ||
9328 | 106,0,327,3,107, | ||
9329 | 0,327,3,108,0, | ||
9330 | 327,812,11,1,581, | ||
9331 | 0,813,4,24,76, | ||
9332 | 0,73,0,83,0, | ||
9333 | 84,0,69,0,78, | ||
9334 | 0,95,0,69,0, | ||
9335 | 86,0,69,0,78, | ||
9336 | 0,84,0,1,-1, | ||
9337 | 3,111,0,327,3, | ||
9338 | 112,0,327,3,113, | ||
9339 | 0,327,3,114,0, | ||
9340 | 327,3,115,0,327, | ||
9341 | 3,116,0,327,3, | ||
9342 | 117,0,327,3,118, | ||
9343 | 0,327,3,119,0, | ||
9344 | 327,3,120,0,327, | ||
9345 | 3,121,0,327,3, | ||
9346 | 122,0,327,3,48, | ||
9347 | 0,327,3,49,0, | ||
9348 | 327,3,50,0,327, | ||
9349 | 3,51,0,327,3, | ||
9350 | 52,0,327,3,53, | ||
9351 | 0,327,3,54,0, | ||
9352 | 327,3,55,0,327, | ||
9353 | 3,56,0,327,3, | ||
9354 | 57,0,327,3,65, | ||
9355 | 0,327,3,66,0, | ||
9356 | 327,3,67,0,327, | ||
9357 | 3,68,0,327,3, | ||
9358 | 69,0,327,3,70, | ||
9359 | 0,327,3,71,0, | ||
9360 | 327,3,72,0,327, | ||
9361 | 3,73,0,327,3, | ||
9362 | 74,0,327,3,75, | ||
9363 | 0,327,3,76,0, | ||
9364 | 327,3,77,0,327, | ||
9365 | 3,78,0,327,3, | ||
9366 | 79,0,327,3,80, | ||
9367 | 0,327,3,81,0, | ||
9368 | 327,3,82,0,327, | ||
9369 | 3,83,0,327,3, | ||
9370 | 84,0,327,3,85, | ||
9371 | 0,327,3,86,0, | ||
9372 | 327,3,87,0,327, | ||
9373 | 3,88,0,327,3, | ||
9374 | 89,0,327,3,90, | ||
9375 | 0,327,3,95,0, | ||
9376 | 327,3,97,0,327, | ||
9377 | 3,98,0,327,3, | ||
9378 | 99,0,327,3,100, | ||
9379 | 0,327,3,101,0, | ||
9380 | 327,3,102,0,327, | ||
9381 | 3,103,0,327,3, | ||
9382 | 104,0,327,3,105, | ||
9383 | 0,327,3,106,0, | ||
9384 | 327,3,107,0,327, | ||
9385 | 3,108,0,327,814, | ||
9386 | 11,1,829,0,330, | ||
9387 | 1,-1,3,102,0, | ||
9388 | 327,3,103,0,327, | ||
9389 | 3,104,0,327,3, | ||
9390 | 105,0,327,3,106, | ||
9391 | 0,327,3,107,0, | ||
9392 | 327,3,108,0,327, | ||
9393 | 815,11,1,342,0, | ||
9394 | 816,4,18,76,0, | ||
9395 | 73,0,83,0,84, | ||
9396 | 0,95,0,84,0, | ||
9397 | 89,0,80,0,69, | ||
9398 | 0,1,-1,3,117, | ||
9399 | 0,327,3,118,0, | ||
9400 | 327,3,119,0,327, | ||
9401 | 3,120,0,327,3, | ||
9402 | 121,0,327,3,122, | ||
9403 | 0,327,3,48,0, | ||
9404 | 327,3,49,0,327, | ||
9405 | 3,50,0,327,3, | ||
9406 | 51,0,327,3,52, | ||
9407 | 0,327,3,53,0, | ||
9408 | 327,3,54,0,327, | ||
9409 | 3,55,0,327,3, | ||
9410 | 56,0,327,3,57, | ||
9411 | 0,327,3,65,0, | ||
9412 | 327,3,66,0,327, | ||
9413 | 3,67,0,327,3, | ||
9414 | 68,0,327,3,69, | ||
9415 | 0,327,3,70,0, | ||
9416 | 327,3,71,0,327, | ||
9417 | 3,72,0,327,3, | ||
9418 | 73,0,327,3,74, | ||
9419 | 0,327,3,75,0, | ||
9420 | 327,3,76,0,327, | ||
9421 | 3,77,0,327,3, | ||
9422 | 78,0,327,3,79, | ||
9423 | 0,327,3,80,0, | ||
9424 | 327,3,81,0,327, | ||
9425 | 3,82,0,327,3, | ||
9426 | 83,0,327,3,84, | ||
9427 | 0,327,3,85,0, | ||
9428 | 327,3,86,0,327, | ||
9429 | 3,87,0,327,3, | ||
9430 | 88,0,327,3,89, | ||
9431 | 0,327,3,90,0, | ||
9432 | 327,3,95,0,327, | ||
9433 | 3,97,0,327,3, | ||
9434 | 98,0,327,3,99, | ||
9435 | 0,327,3,100,0, | ||
9436 | 327,3,101,0,327, | ||
9437 | 3,102,0,327,3, | ||
9438 | 103,0,327,3,104, | ||
9439 | 0,327,3,105,0, | ||
9440 | 327,3,106,0,327, | ||
9441 | 3,107,0,327,3, | ||
9442 | 108,0,327,817,11, | ||
9443 | 1,829,0,330,1, | ||
9444 | -1,3,116,0,327, | ||
9445 | 3,117,0,327,3, | ||
9446 | 118,0,327,3,119, | ||
9447 | 0,327,3,120,0, | ||
9448 | 327,3,121,0,327, | ||
9449 | 3,122,0,327,3, | ||
9450 | 48,0,327,3,49, | ||
9451 | 0,327,3,50,0, | ||
9452 | 327,3,51,0,327, | ||
9453 | 3,52,0,327,3, | ||
9454 | 53,0,327,3,54, | ||
9455 | 0,327,3,55,0, | ||
9456 | 327,3,56,0,327, | ||
9457 | 3,57,0,327,3, | ||
9458 | 65,0,327,3,66, | ||
9459 | 0,327,3,67,0, | ||
9460 | 327,3,68,0,327, | ||
9461 | 3,69,0,327,3, | ||
9462 | 70,0,327,3,71, | ||
9463 | 0,327,3,72,0, | ||
9464 | 327,3,73,0,327, | ||
9465 | 3,74,0,327,3, | ||
9466 | 75,0,327,3,76, | ||
9467 | 0,327,3,77,0, | ||
9468 | 327,3,78,0,327, | ||
9469 | 3,79,0,327,3, | ||
9470 | 80,0,327,3,81, | ||
9471 | 0,327,3,82,0, | ||
9472 | 327,3,83,0,327, | ||
9473 | 3,84,0,327,3, | ||
9474 | 85,0,327,3,86, | ||
9475 | 0,327,3,87,0, | ||
9476 | 327,3,88,0,327, | ||
9477 | 3,89,0,327,3, | ||
9478 | 90,0,327,3,95, | ||
9479 | 0,327,3,97,0, | ||
9480 | 327,3,98,0,327, | ||
9481 | 3,99,0,327,3, | ||
9482 | 100,0,327,3,101, | ||
9483 | 0,327,3,102,0, | ||
9484 | 327,3,103,0,327, | ||
9485 | 3,104,0,327,3, | ||
9486 | 105,0,327,3,106, | ||
9487 | 0,327,3,107,0, | ||
9488 | 327,3,108,0,327, | ||
9489 | 818,11,1,829,0, | ||
9490 | 330,1,-1,3,106, | ||
9491 | 0,327,3,107,0, | ||
9492 | 327,3,108,0,327, | ||
9493 | 819,11,1,829,0, | ||
9494 | 330,1,-1,3,109, | ||
9495 | 0,820,12,1,1290, | ||
9496 | 821,5,63,3,109, | ||
9497 | 0,327,3,110,0, | ||
9498 | 327,3,111,0,822, | ||
9499 | 12,1,1320,823,5, | ||
9500 | 63,3,109,0,327, | ||
9501 | 3,110,0,824,12, | ||
9502 | 1,1349,825,5,63, | ||
9503 | 3,109,0,327,3, | ||
9504 | 110,0,327,3,111, | ||
9505 | 0,327,3,112,0, | ||
9506 | 327,3,113,0,327, | ||
9507 | 3,114,0,327,3, | ||
9508 | 115,0,327,3,116, | ||
9509 | 0,327,3,117,0, | ||
9510 | 327,3,118,0,327, | ||
9511 | 3,119,0,327,3, | ||
9512 | 120,0,327,3,121, | ||
9513 | 0,327,3,122,0, | ||
9514 | 327,3,48,0,327, | ||
9515 | 3,49,0,327,3, | ||
9516 | 50,0,327,3,51, | ||
9517 | 0,327,3,52,0, | ||
9518 | 327,3,53,0,327, | ||
9519 | 3,54,0,327,3, | ||
9520 | 55,0,327,3,56, | ||
9521 | 0,327,3,57,0, | ||
9522 | 327,3,65,0,327, | ||
9523 | 3,66,0,327,3, | ||
9524 | 67,0,327,3,68, | ||
9525 | 0,327,3,69,0, | ||
9526 | 327,3,70,0,327, | ||
9527 | 3,71,0,327,3, | ||
9528 | 72,0,327,3,73, | ||
9529 | 0,327,3,74,0, | ||
9530 | 327,3,75,0,327, | ||
9531 | 3,76,0,327,3, | ||
9532 | 77,0,327,3,78, | ||
9533 | 0,327,3,79,0, | ||
9534 | 327,3,80,0,327, | ||
9535 | 3,81,0,327,3, | ||
9536 | 82,0,327,3,83, | ||
9537 | 0,327,3,84,0, | ||
9538 | 327,3,85,0,327, | ||
9539 | 3,86,0,327,3, | ||
9540 | 87,0,327,3,88, | ||
9541 | 0,327,3,89,0, | ||
9542 | 327,3,90,0,327, | ||
9543 | 3,95,0,327,3, | ||
9544 | 97,0,327,3,98, | ||
9545 | 0,327,3,99,0, | ||
9546 | 327,3,100,0,327, | ||
9547 | 3,101,0,826,12, | ||
9548 | 1,1396,827,5,63, | ||
9549 | 3,109,0,327,3, | ||
9550 | 110,0,327,3,111, | ||
9551 | 0,327,3,112,0, | ||
9552 | 327,3,113,0,327, | ||
9553 | 3,114,0,327,3, | ||
9554 | 115,0,327,3,116, | ||
9555 | 0,327,3,117,0, | ||
9556 | 327,3,118,0,327, | ||
9557 | 3,119,0,327,3, | ||
9558 | 120,0,327,3,121, | ||
9559 | 0,828,12,1,1436, | ||
9560 | 829,5,63,3,109, | ||
9561 | 0,327,3,110,0, | ||
9562 | 327,3,111,0,327, | ||
9563 | 3,112,0,327,3, | ||
9564 | 113,0,327,3,114, | ||
9565 | 0,327,3,115,0, | ||
9566 | 327,3,116,0,327, | ||
9567 | 3,117,0,327,3, | ||
9568 | 118,0,327,3,119, | ||
9569 | 0,327,3,120,0, | ||
9570 | 327,3,121,0,327, | ||
9571 | 3,122,0,327,3, | ||
9572 | 48,0,327,3,49, | ||
9573 | 0,327,3,50,0, | ||
9574 | 327,3,51,0,327, | ||
9575 | 3,52,0,327,3, | ||
9576 | 53,0,327,3,54, | ||
9577 | 0,327,3,55,0, | ||
9578 | 327,3,56,0,327, | ||
9579 | 3,57,0,327,3, | ||
9580 | 65,0,327,3,66, | ||
9581 | 0,327,3,67,0, | ||
9582 | 327,3,68,0,327, | ||
9583 | 3,69,0,327,3, | ||
9584 | 70,0,327,3,71, | ||
9585 | 0,327,3,72,0, | ||
9586 | 327,3,73,0,327, | ||
9587 | 3,74,0,327,3, | ||
9588 | 75,0,327,3,76, | ||
9589 | 0,327,3,77,0, | ||
9590 | 327,3,78,0,327, | ||
9591 | 3,79,0,327,3, | ||
9592 | 80,0,327,3,81, | ||
9593 | 0,327,3,82,0, | ||
9594 | 327,3,83,0,327, | ||
9595 | 3,84,0,327,3, | ||
9596 | 85,0,327,3,86, | ||
9597 | 0,327,3,87,0, | ||
9598 | 327,3,88,0,327, | ||
9599 | 3,89,0,327,3, | ||
9600 | 90,0,327,3,95, | ||
9601 | 0,327,3,97,0, | ||
9602 | 327,3,98,0,327, | ||
9603 | 3,99,0,327,3, | ||
9604 | 100,0,327,3,101, | ||
9605 | 0,327,3,102,0, | ||
9606 | 327,3,103,0,327, | ||
9607 | 3,104,0,327,3, | ||
9608 | 105,0,327,3,106, | ||
9609 | 0,327,3,107,0, | ||
9610 | 327,3,108,0,327, | ||
9611 | 830,11,1,591,0, | ||
9612 | 831,4,22,77,0, | ||
9613 | 79,0,78,0,69, | ||
9614 | 0,89,0,95,0, | ||
9615 | 69,0,86,0,69, | ||
9616 | 0,78,0,84,0, | ||
9617 | 1,-1,3,122,0, | ||
9618 | 327,3,48,0,327, | ||
9619 | 3,49,0,327,3, | ||
9620 | 50,0,327,3,51, | ||
9621 | 0,327,3,52,0, | ||
9622 | 327,3,53,0,327, | ||
9623 | 3,54,0,327,3, | ||
9624 | 55,0,327,3,56, | ||
9625 | 0,327,3,57,0, | ||
9626 | 327,3,65,0,327, | ||
9627 | 3,66,0,327,3, | ||
9628 | 67,0,327,3,68, | ||
9629 | 0,327,3,69,0, | ||
9630 | 327,3,70,0,327, | ||
9631 | 3,71,0,327,3, | ||
9632 | 72,0,327,3,73, | ||
9633 | 0,327,3,74,0, | ||
9634 | 327,3,75,0,327, | ||
9635 | 3,76,0,327,3, | ||
9636 | 77,0,327,3,78, | ||
9637 | 0,327,3,79,0, | ||
9638 | 327,3,80,0,327, | ||
9639 | 3,81,0,327,3, | ||
9640 | 82,0,327,3,83, | ||
9641 | 0,327,3,84,0, | ||
9642 | 327,3,85,0,327, | ||
9643 | 3,86,0,327,3, | ||
9644 | 87,0,327,3,88, | ||
9645 | 0,327,3,89,0, | ||
9646 | 327,3,90,0,327, | ||
9647 | 3,95,0,327,3, | ||
9648 | 97,0,327,3,98, | ||
9649 | 0,327,3,99,0, | ||
9650 | 327,3,100,0,327, | ||
9651 | 3,101,0,327,3, | ||
9652 | 102,0,327,3,103, | ||
9653 | 0,327,3,104,0, | ||
9654 | 327,3,105,0,327, | ||
9655 | 3,106,0,327,3, | ||
9656 | 107,0,327,3,108, | ||
9657 | 0,327,832,11,1, | ||
9658 | 829,0,330,1,-1, | ||
9659 | 3,102,0,327,3, | ||
9660 | 103,0,327,3,104, | ||
9661 | 0,327,3,105,0, | ||
9662 | 327,3,106,0,327, | ||
9663 | 3,107,0,327,3, | ||
9664 | 108,0,327,833,11, | ||
9665 | 1,829,0,330,1, | ||
9666 | -1,3,111,0,327, | ||
9667 | 3,112,0,327,3, | ||
9668 | 113,0,327,3,114, | ||
9669 | 0,327,3,115,0, | ||
9670 | 327,3,116,0,327, | ||
9671 | 3,117,0,327,3, | ||
9672 | 118,0,834,12,1, | ||
9673 | 1717,835,5,63,3, | ||
9674 | 109,0,327,3,110, | ||
9675 | 0,327,3,111,0, | ||
9676 | 327,3,112,0,327, | ||
9677 | 3,113,0,327,3, | ||
9678 | 114,0,327,3,115, | ||
9679 | 0,327,3,116,0, | ||
9680 | 327,3,117,0,327, | ||
9681 | 3,118,0,327,3, | ||
9682 | 119,0,327,3,120, | ||
9683 | 0,327,3,121,0, | ||
9684 | 327,3,122,0,327, | ||
9685 | 3,48,0,327,3, | ||
9686 | 49,0,327,3,50, | ||
9687 | 0,327,3,51,0, | ||
9688 | 327,3,52,0,327, | ||
9689 | 3,53,0,327,3, | ||
9690 | 54,0,327,3,55, | ||
9691 | 0,327,3,56,0, | ||
9692 | 327,3,57,0,327, | ||
9693 | 3,65,0,327,3, | ||
9694 | 66,0,327,3,67, | ||
9695 | 0,327,3,68,0, | ||
9696 | 327,3,69,0,327, | ||
9697 | 3,70,0,327,3, | ||
9698 | 71,0,327,3,72, | ||
9699 | 0,327,3,73,0, | ||
9700 | 327,3,74,0,327, | ||
9701 | 3,75,0,327,3, | ||
9702 | 76,0,327,3,77, | ||
9703 | 0,327,3,78,0, | ||
9704 | 327,3,79,0,327, | ||
9705 | 3,80,0,327,3, | ||
9706 | 81,0,327,3,82, | ||
9707 | 0,327,3,83,0, | ||
9708 | 327,3,84,0,327, | ||
9709 | 3,85,0,327,3, | ||
9710 | 86,0,327,3,87, | ||
9711 | 0,327,3,88,0, | ||
9712 | 327,3,89,0,327, | ||
9713 | 3,90,0,327,3, | ||
9714 | 95,0,327,3,97, | ||
9715 | 0,327,3,98,0, | ||
9716 | 327,3,99,0,327, | ||
9717 | 3,100,0,327,3, | ||
9718 | 101,0,327,3,102, | ||
9719 | 0,327,3,103,0, | ||
9720 | 327,3,104,0,327, | ||
9721 | 3,105,0,836,12, | ||
9722 | 1,1768,837,5,63, | ||
9723 | 3,109,0,327,3, | ||
9724 | 110,0,838,12,1, | ||
9725 | 1797,839,5,63,3, | ||
9726 | 109,0,327,3,110, | ||
9727 | 0,327,3,111,0, | ||
9728 | 327,3,112,0,327, | ||
9729 | 3,113,0,327,3, | ||
9730 | 114,0,327,3,115, | ||
9731 | 0,327,3,116,0, | ||
9732 | 327,3,117,0,327, | ||
9733 | 3,118,0,327,3, | ||
9734 | 119,0,327,3,120, | ||
9735 | 0,327,3,121,0, | ||
9736 | 327,3,122,0,327, | ||
9737 | 3,48,0,327,3, | ||
9738 | 49,0,327,3,50, | ||
9739 | 0,327,3,51,0, | ||
9740 | 327,3,52,0,327, | ||
9741 | 3,53,0,327,3, | ||
9742 | 54,0,327,3,55, | ||
9743 | 0,327,3,56,0, | ||
9744 | 327,3,57,0,327, | ||
9745 | 3,65,0,327,3, | ||
9746 | 66,0,327,3,67, | ||
9747 | 0,327,3,68,0, | ||
9748 | 327,3,69,0,327, | ||
9749 | 3,70,0,327,3, | ||
9750 | 71,0,327,3,72, | ||
9751 | 0,327,3,73,0, | ||
9752 | 327,3,74,0,327, | ||
9753 | 3,75,0,327,3, | ||
9754 | 76,0,327,3,77, | ||
9755 | 0,327,3,78,0, | ||
9756 | 327,3,79,0,327, | ||
9757 | 3,80,0,327,3, | ||
9758 | 81,0,327,3,82, | ||
9759 | 0,327,3,83,0, | ||
9760 | 327,3,84,0,327, | ||
9761 | 3,85,0,327,3, | ||
9762 | 86,0,327,3,87, | ||
9763 | 0,327,3,88,0, | ||
9764 | 327,3,89,0,327, | ||
9765 | 3,90,0,327,3, | ||
9766 | 95,0,327,3,97, | ||
9767 | 0,327,3,98,0, | ||
9768 | 327,3,99,0,327, | ||
9769 | 3,100,0,327,3, | ||
9770 | 101,0,327,3,102, | ||
9771 | 0,327,3,103,0, | ||
9772 | 840,12,1,1846,841, | ||
9773 | 5,63,3,109,0, | ||
9774 | 327,3,110,0,327, | ||
9775 | 3,111,0,327,3, | ||
9776 | 112,0,327,3,113, | ||
9777 | 0,327,3,114,0, | ||
9778 | 327,3,115,0,327, | ||
9779 | 3,116,0,327,3, | ||
9780 | 117,0,327,3,118, | ||
9781 | 0,327,3,119,0, | ||
9782 | 327,3,120,0,327, | ||
9783 | 3,121,0,327,3, | ||
9784 | 122,0,327,3,48, | ||
9785 | 0,327,3,49,0, | ||
9786 | 327,3,50,0,327, | ||
9787 | 3,51,0,327,3, | ||
9788 | 52,0,327,3,53, | ||
9789 | 0,327,3,54,0, | ||
9790 | 327,3,55,0,327, | ||
9791 | 3,56,0,327,3, | ||
9792 | 57,0,327,3,65, | ||
9793 | 0,327,3,66,0, | ||
9794 | 327,3,67,0,327, | ||
9795 | 3,68,0,327,3, | ||
9796 | 69,0,327,3,70, | ||
9797 | 0,327,3,71,0, | ||
9798 | 327,3,72,0,327, | ||
9799 | 3,73,0,327,3, | ||
9800 | 74,0,327,3,75, | ||
9801 | 0,327,3,76,0, | ||
9802 | 327,3,77,0,327, | ||
9803 | 3,78,0,327,3, | ||
9804 | 79,0,327,3,80, | ||
9805 | 0,327,3,81,0, | ||
9806 | 327,3,82,0,327, | ||
9807 | 3,83,0,327,3, | ||
9808 | 84,0,327,3,85, | ||
9809 | 0,327,3,86,0, | ||
9810 | 327,3,87,0,327, | ||
9811 | 3,88,0,327,3, | ||
9812 | 89,0,327,3,90, | ||
9813 | 0,327,3,95,0, | ||
9814 | 842,12,1,1932,843, | ||
9815 | 5,63,3,109,0, | ||
9816 | 327,3,110,0,327, | ||
9817 | 3,111,0,327,3, | ||
9818 | 112,0,327,3,113, | ||
9819 | 0,327,3,114,0, | ||
9820 | 327,3,115,0,844, | ||
9821 | 12,1,1966,845,5, | ||
9822 | 63,3,109,0,327, | ||
9823 | 3,110,0,327,3, | ||
9824 | 111,0,327,3,112, | ||
9825 | 0,327,3,113,0, | ||
9826 | 327,3,114,0,327, | ||
9827 | 3,115,0,327,3, | ||
9828 | 116,0,846,12,1, | ||
9829 | 2001,847,5,63,3, | ||
9830 | 109,0,327,3,110, | ||
9831 | 0,327,3,111,0, | ||
9832 | 327,3,112,0,327, | ||
9833 | 3,113,0,327,3, | ||
9834 | 114,0,327,3,115, | ||
9835 | 0,327,3,116,0, | ||
9836 | 327,3,117,0,327, | ||
9837 | 3,118,0,327,3, | ||
9838 | 119,0,327,3,120, | ||
9839 | 0,327,3,121,0, | ||
9840 | 327,3,122,0,327, | ||
9841 | 3,48,0,327,3, | ||
9842 | 49,0,327,3,50, | ||
9843 | 0,327,3,51,0, | ||
9844 | 327,3,52,0,327, | ||
9845 | 3,53,0,327,3, | ||
9846 | 54,0,327,3,55, | ||
9847 | 0,327,3,56,0, | ||
9848 | 327,3,57,0,327, | ||
9849 | 3,65,0,327,3, | ||
9850 | 66,0,327,3,67, | ||
9851 | 0,327,3,68,0, | ||
9852 | 327,3,69,0,327, | ||
9853 | 3,70,0,327,3, | ||
9854 | 71,0,327,3,72, | ||
9855 | 0,327,3,73,0, | ||
9856 | 327,3,74,0,327, | ||
9857 | 3,75,0,327,3, | ||
9858 | 76,0,327,3,77, | ||
9859 | 0,327,3,78,0, | ||
9860 | 327,3,79,0,327, | ||
9861 | 3,80,0,327,3, | ||
9862 | 81,0,327,3,82, | ||
9863 | 0,327,3,83,0, | ||
9864 | 327,3,84,0,327, | ||
9865 | 3,85,0,327,3, | ||
9866 | 86,0,327,3,87, | ||
9867 | 0,327,3,88,0, | ||
9868 | 327,3,89,0,327, | ||
9869 | 3,90,0,327,3, | ||
9870 | 95,0,327,3,97, | ||
9871 | 0,848,12,1,2044, | ||
9872 | 849,5,63,3,109, | ||
9873 | 0,327,3,110,0, | ||
9874 | 327,3,111,0,327, | ||
9875 | 3,112,0,327,3, | ||
9876 | 113,0,327,3,114, | ||
9877 | 0,850,12,1,2077, | ||
9878 | 851,5,63,3,109, | ||
9879 | 0,327,3,110,0, | ||
9880 | 327,3,111,0,327, | ||
9881 | 3,112,0,327,3, | ||
9882 | 113,0,327,3,114, | ||
9883 | 0,327,3,115,0, | ||
9884 | 327,3,116,0,852, | ||
9885 | 12,1,2112,853,5, | ||
9886 | 63,3,109,0,327, | ||
9887 | 3,110,0,327,3, | ||
9888 | 111,0,327,3,112, | ||
9889 | 0,327,3,113,0, | ||
9890 | 327,3,114,0,327, | ||
9891 | 3,115,0,327,3, | ||
9892 | 116,0,327,3,117, | ||
9893 | 0,327,3,118,0, | ||
9894 | 327,3,119,0,327, | ||
9895 | 3,120,0,327,3, | ||
9896 | 121,0,327,3,122, | ||
9897 | 0,327,3,48,0, | ||
9898 | 327,3,49,0,327, | ||
9899 | 3,50,0,327,3, | ||
9900 | 51,0,327,3,52, | ||
9901 | 0,327,3,53,0, | ||
9902 | 327,3,54,0,327, | ||
9903 | 3,55,0,327,3, | ||
9904 | 56,0,327,3,57, | ||
9905 | 0,327,3,65,0, | ||
9906 | 327,3,66,0,327, | ||
9907 | 3,67,0,327,3, | ||
9908 | 68,0,327,3,69, | ||
9909 | 0,327,3,70,0, | ||
9910 | 327,3,71,0,327, | ||
9911 | 3,72,0,327,3, | ||
9912 | 73,0,327,3,74, | ||
9913 | 0,327,3,75,0, | ||
9914 | 327,3,76,0,327, | ||
9915 | 3,77,0,327,3, | ||
9916 | 78,0,327,3,79, | ||
9917 | 0,327,3,80,0, | ||
9918 | 327,3,81,0,327, | ||
9919 | 3,82,0,327,3, | ||
9920 | 83,0,327,3,84, | ||
9921 | 0,327,3,85,0, | ||
9922 | 327,3,86,0,327, | ||
9923 | 3,87,0,327,3, | ||
9924 | 88,0,327,3,89, | ||
9925 | 0,327,3,90,0, | ||
9926 | 327,3,95,0,327, | ||
9927 | 3,97,0,327,3, | ||
9928 | 98,0,327,3,99, | ||
9929 | 0,327,3,100,0, | ||
9930 | 327,3,101,0,327, | ||
9931 | 3,102,0,327,3, | ||
9932 | 103,0,327,3,104, | ||
9933 | 0,327,3,105,0, | ||
9934 | 327,3,106,0,327, | ||
9935 | 3,107,0,327,3, | ||
9936 | 108,0,327,854,11, | ||
9937 | 1,614,0,855,4, | ||
9938 | 36,77,0,79,0, | ||
9939 | 86,0,73,0,78, | ||
9940 | 0,71,0,95,0, | ||
9941 | 83,0,84,0,65, | ||
9942 | 0,82,0,84,0, | ||
9943 | 95,0,69,0,86, | ||
9944 | 0,69,0,78,0, | ||
9945 | 84,0,1,-1,3, | ||
9946 | 117,0,327,3,118, | ||
9947 | 0,327,3,119,0, | ||
9948 | 327,3,120,0,327, | ||
9949 | 3,121,0,327,3, | ||
9950 | 122,0,327,3,48, | ||
9951 | 0,327,3,49,0, | ||
9952 | 327,3,50,0,327, | ||
9953 | 3,51,0,327,3, | ||
9954 | 52,0,327,3,53, | ||
9955 | 0,327,3,54,0, | ||
9956 | 327,3,55,0,327, | ||
9957 | 3,56,0,327,3, | ||
9958 | 57,0,327,3,65, | ||
9959 | 0,327,3,66,0, | ||
9960 | 327,3,67,0,327, | ||
9961 | 3,68,0,327,3, | ||
9962 | 69,0,327,3,70, | ||
9963 | 0,327,3,71,0, | ||
9964 | 327,3,72,0,327, | ||
9965 | 3,73,0,327,3, | ||
9966 | 74,0,327,3,75, | ||
9967 | 0,327,3,76,0, | ||
9968 | 327,3,77,0,327, | ||
9969 | 3,78,0,327,3, | ||
9970 | 79,0,327,3,80, | ||
9971 | 0,327,3,81,0, | ||
9972 | 327,3,82,0,327, | ||
9973 | 3,83,0,327,3, | ||
9974 | 84,0,327,3,85, | ||
9975 | 0,327,3,86,0, | ||
9976 | 327,3,87,0,327, | ||
9977 | 3,88,0,327,3, | ||
9978 | 89,0,327,3,90, | ||
9979 | 0,327,3,95,0, | ||
9980 | 327,3,97,0,327, | ||
9981 | 3,98,0,327,3, | ||
9982 | 99,0,327,3,100, | ||
9983 | 0,327,3,101,0, | ||
9984 | 327,3,102,0,327, | ||
9985 | 3,103,0,327,3, | ||
9986 | 104,0,327,3,105, | ||
9987 | 0,327,3,106,0, | ||
9988 | 327,3,107,0,327, | ||
9989 | 3,108,0,327,856, | ||
9990 | 11,1,829,0,330, | ||
9991 | 1,-1,3,115,0, | ||
9992 | 327,3,116,0,327, | ||
9993 | 3,117,0,327,3, | ||
9994 | 118,0,327,3,119, | ||
9995 | 0,327,3,120,0, | ||
9996 | 327,3,121,0,327, | ||
9997 | 3,122,0,327,3, | ||
9998 | 48,0,327,3,49, | ||
9999 | 0,327,3,50,0, | ||
10000 | 327,3,51,0,327, | ||
10001 | 3,52,0,327,3, | ||
10002 | 53,0,327,3,54, | ||
10003 | 0,327,3,55,0, | ||
10004 | 327,3,56,0,327, | ||
10005 | 3,57,0,327,3, | ||
10006 | 65,0,327,3,66, | ||
10007 | 0,327,3,67,0, | ||
10008 | 327,3,68,0,327, | ||
10009 | 3,69,0,327,3, | ||
10010 | 70,0,327,3,71, | ||
10011 | 0,327,3,72,0, | ||
10012 | 327,3,73,0,327, | ||
10013 | 3,74,0,327,3, | ||
10014 | 75,0,327,3,76, | ||
10015 | 0,327,3,77,0, | ||
10016 | 327,3,78,0,327, | ||
10017 | 3,79,0,327,3, | ||
10018 | 80,0,327,3,81, | ||
10019 | 0,327,3,82,0, | ||
10020 | 327,3,83,0,327, | ||
10021 | 3,84,0,327,3, | ||
10022 | 85,0,327,3,86, | ||
10023 | 0,327,3,87,0, | ||
10024 | 327,3,88,0,327, | ||
10025 | 3,89,0,327,3, | ||
10026 | 90,0,327,3,95, | ||
10027 | 0,327,3,97,0, | ||
10028 | 327,3,98,0,327, | ||
10029 | 3,99,0,327,3, | ||
10030 | 100,0,327,3,101, | ||
10031 | 0,327,3,102,0, | ||
10032 | 327,3,103,0,327, | ||
10033 | 3,104,0,327,3, | ||
10034 | 105,0,327,3,106, | ||
10035 | 0,327,3,107,0, | ||
10036 | 327,3,108,0,327, | ||
10037 | 857,11,1,829,0, | ||
10038 | 330,1,-1,3,98, | ||
10039 | 0,327,3,99,0, | ||
10040 | 327,3,100,0,327, | ||
10041 | 3,101,0,327,3, | ||
10042 | 102,0,327,3,103, | ||
10043 | 0,327,3,104,0, | ||
10044 | 327,3,105,0,327, | ||
10045 | 3,106,0,327,3, | ||
10046 | 107,0,327,3,108, | ||
10047 | 0,327,858,11,1, | ||
10048 | 829,0,330,1,-1, | ||
10049 | 3,117,0,327,3, | ||
10050 | 118,0,327,3,119, | ||
10051 | 0,327,3,120,0, | ||
10052 | 327,3,121,0,327, | ||
10053 | 3,122,0,327,3, | ||
10054 | 48,0,327,3,49, | ||
10055 | 0,327,3,50,0, | ||
10056 | 327,3,51,0,327, | ||
10057 | 3,52,0,327,3, | ||
10058 | 53,0,327,3,54, | ||
10059 | 0,327,3,55,0, | ||
10060 | 327,3,56,0,327, | ||
10061 | 3,57,0,327,3, | ||
10062 | 65,0,327,3,66, | ||
10063 | 0,327,3,67,0, | ||
10064 | 327,3,68,0,327, | ||
10065 | 3,69,0,327,3, | ||
10066 | 70,0,327,3,71, | ||
10067 | 0,327,3,72,0, | ||
10068 | 327,3,73,0,327, | ||
10069 | 3,74,0,327,3, | ||
10070 | 75,0,327,3,76, | ||
10071 | 0,327,3,77,0, | ||
10072 | 327,3,78,0,327, | ||
10073 | 3,79,0,327,3, | ||
10074 | 80,0,327,3,81, | ||
10075 | 0,327,3,82,0, | ||
10076 | 327,3,83,0,327, | ||
10077 | 3,84,0,327,3, | ||
10078 | 85,0,327,3,86, | ||
10079 | 0,327,3,87,0, | ||
10080 | 327,3,88,0,327, | ||
10081 | 3,89,0,327,3, | ||
10082 | 90,0,327,3,95, | ||
10083 | 0,327,3,97,0, | ||
10084 | 327,3,98,0,327, | ||
10085 | 3,99,0,327,3, | ||
10086 | 100,0,327,3,101, | ||
10087 | 0,327,3,102,0, | ||
10088 | 327,3,103,0,327, | ||
10089 | 3,104,0,327,3, | ||
10090 | 105,0,327,3,106, | ||
10091 | 0,327,3,107,0, | ||
10092 | 327,3,108,0,327, | ||
10093 | 859,11,1,829,0, | ||
10094 | 330,1,-1,3,116, | ||
10095 | 0,327,3,117,0, | ||
10096 | 327,3,118,0,327, | ||
10097 | 3,119,0,327,3, | ||
10098 | 120,0,327,3,121, | ||
10099 | 0,327,3,122,0, | ||
10100 | 327,3,48,0,327, | ||
10101 | 3,49,0,327,3, | ||
10102 | 50,0,327,3,51, | ||
10103 | 0,327,3,52,0, | ||
10104 | 327,3,53,0,327, | ||
10105 | 3,54,0,327,3, | ||
10106 | 55,0,327,3,56, | ||
10107 | 0,327,3,57,0, | ||
10108 | 327,3,65,0,327, | ||
10109 | 3,66,0,327,3, | ||
10110 | 67,0,327,3,68, | ||
10111 | 0,327,3,69,0, | ||
10112 | 327,3,70,0,327, | ||
10113 | 3,71,0,327,3, | ||
10114 | 72,0,327,3,73, | ||
10115 | 0,327,3,74,0, | ||
10116 | 327,3,75,0,327, | ||
10117 | 3,76,0,327,3, | ||
10118 | 77,0,327,3,78, | ||
10119 | 0,327,3,79,0, | ||
10120 | 327,3,80,0,327, | ||
10121 | 3,81,0,327,3, | ||
10122 | 82,0,327,3,83, | ||
10123 | 0,327,3,84,0, | ||
10124 | 327,3,85,0,327, | ||
10125 | 3,86,0,327,3, | ||
10126 | 87,0,327,3,88, | ||
10127 | 0,327,3,89,0, | ||
10128 | 327,3,90,0,327, | ||
10129 | 3,95,0,327,3, | ||
10130 | 97,0,327,3,98, | ||
10131 | 0,327,3,99,0, | ||
10132 | 327,3,100,0,327, | ||
10133 | 3,101,0,860,12, | ||
10134 | 1,2579,861,5,63, | ||
10135 | 3,109,0,327,3, | ||
10136 | 110,0,862,12,1, | ||
10137 | 2608,863,5,63,3, | ||
10138 | 109,0,327,3,110, | ||
10139 | 0,327,3,111,0, | ||
10140 | 327,3,112,0,327, | ||
10141 | 3,113,0,327,3, | ||
10142 | 114,0,327,3,115, | ||
10143 | 0,327,3,116,0, | ||
10144 | 327,3,117,0,327, | ||
10145 | 3,118,0,327,3, | ||
10146 | 119,0,327,3,120, | ||
10147 | 0,327,3,121,0, | ||
10148 | 327,3,122,0,327, | ||
10149 | 3,48,0,327,3, | ||
10150 | 49,0,327,3,50, | ||
10151 | 0,327,3,51,0, | ||
10152 | 327,3,52,0,327, | ||
10153 | 3,53,0,327,3, | ||
10154 | 54,0,327,3,55, | ||
10155 | 0,327,3,56,0, | ||
10156 | 327,3,57,0,327, | ||
10157 | 3,65,0,327,3, | ||
10158 | 66,0,327,3,67, | ||
10159 | 0,327,3,68,0, | ||
10160 | 327,3,69,0,327, | ||
10161 | 3,70,0,327,3, | ||
10162 | 71,0,327,3,72, | ||
10163 | 0,327,3,73,0, | ||
10164 | 327,3,74,0,327, | ||
10165 | 3,75,0,327,3, | ||
10166 | 76,0,327,3,77, | ||
10167 | 0,327,3,78,0, | ||
10168 | 327,3,79,0,327, | ||
10169 | 3,80,0,327,3, | ||
10170 | 81,0,327,3,82, | ||
10171 | 0,327,3,83,0, | ||
10172 | 327,3,84,0,327, | ||
10173 | 3,85,0,327,3, | ||
10174 | 86,0,327,3,87, | ||
10175 | 0,327,3,88,0, | ||
10176 | 327,3,89,0,327, | ||
10177 | 3,90,0,327,3, | ||
10178 | 95,0,327,3,97, | ||
10179 | 0,327,3,98,0, | ||
10180 | 327,3,99,0,327, | ||
10181 | 3,100,0,864,12, | ||
10182 | 1,2654,865,5,63, | ||
10183 | 3,109,0,327,3, | ||
10184 | 110,0,327,3,111, | ||
10185 | 0,327,3,112,0, | ||
10186 | 327,3,113,0,327, | ||
10187 | 3,114,0,327,3, | ||
10188 | 115,0,327,3,116, | ||
10189 | 0,327,3,117,0, | ||
10190 | 327,3,118,0,327, | ||
10191 | 3,119,0,327,3, | ||
10192 | 120,0,327,3,121, | ||
10193 | 0,327,3,122,0, | ||
10194 | 327,3,48,0,327, | ||
10195 | 3,49,0,327,3, | ||
10196 | 50,0,327,3,51, | ||
10197 | 0,327,3,52,0, | ||
10198 | 327,3,53,0,327, | ||
10199 | 3,54,0,327,3, | ||
10200 | 55,0,327,3,56, | ||
10201 | 0,327,3,57,0, | ||
10202 | 327,3,65,0,327, | ||
10203 | 3,66,0,327,3, | ||
10204 | 67,0,327,3,68, | ||
10205 | 0,327,3,69,0, | ||
10206 | 327,3,70,0,327, | ||
10207 | 3,71,0,327,3, | ||
10208 | 72,0,327,3,73, | ||
10209 | 0,327,3,74,0, | ||
10210 | 327,3,75,0,327, | ||
10211 | 3,76,0,327,3, | ||
10212 | 77,0,327,3,78, | ||
10213 | 0,327,3,79,0, | ||
10214 | 327,3,80,0,327, | ||
10215 | 3,81,0,327,3, | ||
10216 | 82,0,327,3,83, | ||
10217 | 0,327,3,84,0, | ||
10218 | 327,3,85,0,327, | ||
10219 | 3,86,0,327,3, | ||
10220 | 87,0,327,3,88, | ||
10221 | 0,327,3,89,0, | ||
10222 | 327,3,90,0,327, | ||
10223 | 3,95,0,327,3, | ||
10224 | 97,0,327,3,98, | ||
10225 | 0,327,3,99,0, | ||
10226 | 327,3,100,0,327, | ||
10227 | 3,101,0,327,3, | ||
10228 | 102,0,327,3,103, | ||
10229 | 0,327,3,104,0, | ||
10230 | 327,3,105,0,327, | ||
10231 | 3,106,0,327,3, | ||
10232 | 107,0,327,3,108, | ||
10233 | 0,327,866,11,1, | ||
10234 | 600,0,867,4,32, | ||
10235 | 77,0,79,0,86, | ||
10236 | 0,73,0,78,0, | ||
10237 | 71,0,95,0,69, | ||
10238 | 0,78,0,68,0, | ||
10239 | 95,0,69,0,86, | ||
10240 | 0,69,0,78,0, | ||
10241 | 84,0,1,-1,3, | ||
10242 | 101,0,327,3,102, | ||
10243 | 0,327,3,103,0, | ||
10244 | 327,3,104,0,327, | ||
10245 | 3,105,0,327,3, | ||
10246 | 106,0,327,3,107, | ||
10247 | 0,327,3,108,0, | ||
10248 | 327,868,11,1,829, | ||
10249 | 0,330,1,-1,3, | ||
10250 | 111,0,327,3,112, | ||
10251 | 0,327,3,113,0, | ||
10252 | 327,3,114,0,327, | ||
10253 | 3,115,0,327,3, | ||
10254 | 116,0,327,3,117, | ||
10255 | 0,327,3,118,0, | ||
10256 | 327,3,119,0,327, | ||
10257 | 3,120,0,327,3, | ||
10258 | 121,0,327,3,122, | ||
10259 | 0,327,3,48,0, | ||
10260 | 327,3,49,0,327, | ||
10261 | 3,50,0,327,3, | ||
10262 | 51,0,327,3,52, | ||
10263 | 0,327,3,53,0, | ||
10264 | 327,3,54,0,327, | ||
10265 | 3,55,0,327,3, | ||
10266 | 56,0,327,3,57, | ||
10267 | 0,327,3,65,0, | ||
10268 | 327,3,66,0,327, | ||
10269 | 3,67,0,327,3, | ||
10270 | 68,0,327,3,69, | ||
10271 | 0,327,3,70,0, | ||
10272 | 327,3,71,0,327, | ||
10273 | 3,72,0,327,3, | ||
10274 | 73,0,327,3,74, | ||
10275 | 0,327,3,75,0, | ||
10276 | 327,3,76,0,327, | ||
10277 | 3,77,0,327,3, | ||
10278 | 78,0,327,3,79, | ||
10279 | 0,327,3,80,0, | ||
10280 | 327,3,81,0,327, | ||
10281 | 3,82,0,327,3, | ||
10282 | 83,0,327,3,84, | ||
10283 | 0,327,3,85,0, | ||
10284 | 327,3,86,0,327, | ||
10285 | 3,87,0,327,3, | ||
10286 | 88,0,327,3,89, | ||
10287 | 0,327,3,90,0, | ||
10288 | 327,3,95,0,327, | ||
10289 | 3,97,0,327,3, | ||
10290 | 98,0,327,3,99, | ||
10291 | 0,327,3,100,0, | ||
10292 | 327,3,101,0,327, | ||
10293 | 3,102,0,327,3, | ||
10294 | 103,0,327,3,104, | ||
10295 | 0,327,3,105,0, | ||
10296 | 327,3,106,0,327, | ||
10297 | 3,107,0,327,3, | ||
10298 | 108,0,327,869,11, | ||
10299 | 1,829,0,330,1, | ||
10300 | -1,3,102,0,327, | ||
10301 | 3,103,0,327,3, | ||
10302 | 104,0,327,3,105, | ||
10303 | 0,327,3,106,0, | ||
10304 | 327,3,107,0,327, | ||
10305 | 3,108,0,327,870, | ||
10306 | 11,1,829,0,330, | ||
10307 | 1,-1,3,97,0, | ||
10308 | 327,3,98,0,327, | ||
10309 | 3,99,0,327,3, | ||
10310 | 100,0,327,3,101, | ||
10311 | 0,327,3,102,0, | ||
10312 | 327,3,103,0,327, | ||
10313 | 3,104,0,327,3, | ||
10314 | 105,0,327,3,106, | ||
10315 | 0,327,3,107,0, | ||
10316 | 327,3,108,0,327, | ||
10317 | 871,11,1,829,0, | ||
10318 | 330,1,-1,3,104, | ||
10319 | 0,327,3,105,0, | ||
10320 | 327,3,106,0,327, | ||
10321 | 3,107,0,327,3, | ||
10322 | 108,0,327,872,11, | ||
10323 | 1,829,0,330,1, | ||
10324 | -1,3,111,0,327, | ||
10325 | 3,112,0,327,3, | ||
10326 | 113,0,327,3,114, | ||
10327 | 0,327,3,115,0, | ||
10328 | 327,3,116,0,327, | ||
10329 | 3,117,0,327,3, | ||
10330 | 118,0,327,3,119, | ||
10331 | 0,327,3,120,0, | ||
10332 | 327,3,121,0,327, | ||
10333 | 3,122,0,327,3, | ||
10334 | 48,0,327,3,49, | ||
10335 | 0,327,3,50,0, | ||
10336 | 327,3,51,0,327, | ||
10337 | 3,52,0,327,3, | ||
10338 | 53,0,327,3,54, | ||
10339 | 0,327,3,55,0, | ||
10340 | 327,3,56,0,327, | ||
10341 | 3,57,0,327,3, | ||
10342 | 65,0,327,3,66, | ||
10343 | 0,327,3,67,0, | ||
10344 | 327,3,68,0,327, | ||
10345 | 3,69,0,327,3, | ||
10346 | 70,0,327,3,71, | ||
10347 | 0,327,3,72,0, | ||
10348 | 327,3,73,0,327, | ||
10349 | 3,74,0,327,3, | ||
10350 | 75,0,327,3,76, | ||
10351 | 0,327,3,77,0, | ||
10352 | 327,3,78,0,327, | ||
10353 | 3,79,0,327,3, | ||
10354 | 80,0,327,3,81, | ||
10355 | 0,327,3,82,0, | ||
10356 | 327,3,83,0,327, | ||
10357 | 3,84,0,327,3, | ||
10358 | 85,0,327,3,86, | ||
10359 | 0,327,3,87,0, | ||
10360 | 327,3,88,0,327, | ||
10361 | 3,89,0,327,3, | ||
10362 | 90,0,327,3,95, | ||
10363 | 0,327,3,97,0, | ||
10364 | 327,3,98,0,327, | ||
10365 | 3,99,0,327,3, | ||
10366 | 100,0,327,3,101, | ||
10367 | 0,327,3,102,0, | ||
10368 | 327,3,103,0,327, | ||
10369 | 3,104,0,327,3, | ||
10370 | 105,0,327,3,106, | ||
10371 | 0,327,3,107,0, | ||
10372 | 327,3,108,0,327, | ||
10373 | 873,11,1,829,0, | ||
10374 | 330,1,-1,3,106, | ||
10375 | 0,327,3,107,0, | ||
10376 | 327,3,108,0,327, | ||
10377 | 874,11,1,829,0, | ||
10378 | 330,1,-1,3,119, | ||
10379 | 0,327,3,120,0, | ||
10380 | 327,3,121,0,327, | ||
10381 | 3,122,0,327,3, | ||
10382 | 48,0,327,3,49, | ||
10383 | 0,327,3,50,0, | ||
10384 | 327,3,51,0,327, | ||
10385 | 3,52,0,327,3, | ||
10386 | 53,0,327,3,54, | ||
10387 | 0,327,3,55,0, | ||
10388 | 327,3,56,0,327, | ||
10389 | 3,57,0,327,3, | ||
10390 | 65,0,327,3,66, | ||
10391 | 0,327,3,67,0, | ||
10392 | 327,3,68,0,327, | ||
10393 | 3,69,0,327,3, | ||
10394 | 70,0,327,3,71, | ||
10395 | 0,327,3,72,0, | ||
10396 | 327,3,73,0,327, | ||
10397 | 3,74,0,327,3, | ||
10398 | 75,0,327,3,76, | ||
10399 | 0,327,3,77,0, | ||
10400 | 327,3,78,0,327, | ||
10401 | 3,79,0,327,3, | ||
10402 | 80,0,327,3,81, | ||
10403 | 0,327,3,82,0, | ||
10404 | 327,3,83,0,327, | ||
10405 | 3,84,0,327,3, | ||
10406 | 85,0,327,3,86, | ||
10407 | 0,327,3,87,0, | ||
10408 | 327,3,88,0,327, | ||
10409 | 3,89,0,327,3, | ||
10410 | 90,0,327,3,95, | ||
10411 | 0,327,3,97,0, | ||
10412 | 327,3,98,0,327, | ||
10413 | 3,99,0,327,3, | ||
10414 | 100,0,327,3,101, | ||
10415 | 0,327,3,102,0, | ||
10416 | 327,3,103,0,327, | ||
10417 | 3,104,0,327,3, | ||
10418 | 105,0,327,3,106, | ||
10419 | 0,327,3,107,0, | ||
10420 | 327,3,108,0,327, | ||
10421 | 875,11,1,829,0, | ||
10422 | 330,1,-1,3,112, | ||
10423 | 0,327,3,113,0, | ||
10424 | 327,3,114,0,327, | ||
10425 | 3,115,0,327,3, | ||
10426 | 116,0,327,3,117, | ||
10427 | 0,327,3,118,0, | ||
10428 | 327,3,119,0,327, | ||
10429 | 3,120,0,327,3, | ||
10430 | 121,0,327,3,122, | ||
10431 | 0,327,3,48,0, | ||
10432 | 327,3,49,0,327, | ||
10433 | 3,50,0,327,3, | ||
10434 | 51,0,327,3,52, | ||
10435 | 0,327,3,53,0, | ||
10436 | 327,3,54,0,327, | ||
10437 | 3,55,0,327,3, | ||
10438 | 56,0,327,3,57, | ||
10439 | 0,327,3,65,0, | ||
10440 | 327,3,66,0,327, | ||
10441 | 3,67,0,327,3, | ||
10442 | 68,0,327,3,69, | ||
10443 | 0,327,3,70,0, | ||
10444 | 327,3,71,0,327, | ||
10445 | 3,72,0,327,3, | ||
10446 | 73,0,327,3,74, | ||
10447 | 0,327,3,75,0, | ||
10448 | 327,3,76,0,327, | ||
10449 | 3,77,0,327,3, | ||
10450 | 78,0,327,3,79, | ||
10451 | 0,327,3,80,0, | ||
10452 | 327,3,81,0,327, | ||
10453 | 3,82,0,327,3, | ||
10454 | 83,0,327,3,84, | ||
10455 | 0,327,3,85,0, | ||
10456 | 327,3,86,0,327, | ||
10457 | 3,87,0,327,3, | ||
10458 | 88,0,327,3,89, | ||
10459 | 0,327,3,90,0, | ||
10460 | 327,3,95,0,327, | ||
10461 | 3,97,0,327,3, | ||
10462 | 98,0,327,3,99, | ||
10463 | 0,327,3,100,0, | ||
10464 | 327,3,101,0,327, | ||
10465 | 3,102,0,327,3, | ||
10466 | 103,0,327,3,104, | ||
10467 | 0,327,3,105,0, | ||
10468 | 327,3,106,0,327, | ||
10469 | 3,107,0,327,3, | ||
10470 | 108,0,327,876,11, | ||
10471 | 1,829,0,330,1, | ||
10472 | -1,3,110,0,877, | ||
10473 | 12,1,3451,878,5, | ||
10474 | 63,3,109,0,327, | ||
10475 | 3,110,0,327,3, | ||
10476 | 111,0,879,12,1, | ||
10477 | 3481,880,5,63,3, | ||
10478 | 109,0,327,3,110, | ||
10479 | 0,327,3,111,0, | ||
10480 | 327,3,112,0,327, | ||
10481 | 3,113,0,327,3, | ||
10482 | 114,0,327,3,115, | ||
10483 | 0,327,3,116,0, | ||
10484 | 881,12,1,3516,882, | ||
10485 | 5,63,3,109,0, | ||
10486 | 327,3,110,0,327, | ||
10487 | 3,111,0,327,3, | ||
10488 | 112,0,327,3,113, | ||
10489 | 0,327,3,114,0, | ||
10490 | 327,3,115,0,327, | ||
10491 | 3,116,0,327,3, | ||
10492 | 117,0,327,3,118, | ||
10493 | 0,327,3,119,0, | ||
10494 | 327,3,120,0,327, | ||
10495 | 3,121,0,327,3, | ||
10496 | 122,0,327,3,48, | ||
10497 | 0,327,3,49,0, | ||
10498 | 327,3,50,0,327, | ||
10499 | 3,51,0,327,3, | ||
10500 | 52,0,327,3,53, | ||
10501 | 0,327,3,54,0, | ||
10502 | 327,3,55,0,327, | ||
10503 | 3,56,0,327,3, | ||
10504 | 57,0,327,3,65, | ||
10505 | 0,327,3,66,0, | ||
10506 | 327,3,67,0,327, | ||
10507 | 3,68,0,327,3, | ||
10508 | 69,0,327,3,70, | ||
10509 | 0,327,3,71,0, | ||
10510 | 327,3,72,0,327, | ||
10511 | 3,73,0,327,3, | ||
10512 | 74,0,327,3,75, | ||
10513 | 0,327,3,76,0, | ||
10514 | 327,3,77,0,327, | ||
10515 | 3,78,0,327,3, | ||
10516 | 79,0,327,3,80, | ||
10517 | 0,327,3,81,0, | ||
10518 | 327,3,82,0,327, | ||
10519 | 3,83,0,327,3, | ||
10520 | 84,0,327,3,85, | ||
10521 | 0,327,3,86,0, | ||
10522 | 327,3,87,0,327, | ||
10523 | 3,88,0,327,3, | ||
10524 | 89,0,327,3,90, | ||
10525 | 0,327,3,95,0, | ||
10526 | 883,12,1,3602,884, | ||
10527 | 5,63,3,109,0, | ||
10528 | 327,3,110,0,327, | ||
10529 | 3,111,0,327,3, | ||
10530 | 112,0,327,3,113, | ||
10531 | 0,327,3,114,0, | ||
10532 | 327,3,115,0,327, | ||
10533 | 3,116,0,327,3, | ||
10534 | 117,0,327,3,118, | ||
10535 | 0,327,3,119,0, | ||
10536 | 327,3,120,0,327, | ||
10537 | 3,121,0,327,3, | ||
10538 | 122,0,327,3,48, | ||
10539 | 0,327,3,49,0, | ||
10540 | 327,3,50,0,327, | ||
10541 | 3,51,0,327,3, | ||
10542 | 52,0,327,3,53, | ||
10543 | 0,327,3,54,0, | ||
10544 | 327,3,55,0,327, | ||
10545 | 3,56,0,327,3, | ||
10546 | 57,0,327,3,65, | ||
10547 | 0,327,3,66,0, | ||
10548 | 327,3,67,0,327, | ||
10549 | 3,68,0,327,3, | ||
10550 | 69,0,327,3,70, | ||
10551 | 0,327,3,71,0, | ||
10552 | 327,3,72,0,327, | ||
10553 | 3,73,0,327,3, | ||
10554 | 74,0,327,3,75, | ||
10555 | 0,327,3,76,0, | ||
10556 | 327,3,77,0,327, | ||
10557 | 3,78,0,327,3, | ||
10558 | 79,0,327,3,80, | ||
10559 | 0,327,3,81,0, | ||
10560 | 327,3,82,0,327, | ||
10561 | 3,83,0,327,3, | ||
10562 | 84,0,327,3,85, | ||
10563 | 0,327,3,86,0, | ||
10564 | 327,3,87,0,327, | ||
10565 | 3,88,0,327,3, | ||
10566 | 89,0,327,3,90, | ||
10567 | 0,327,3,95,0, | ||
10568 | 327,3,97,0,885, | ||
10569 | 12,1,3645,886,5, | ||
10570 | 63,3,109,0,327, | ||
10571 | 3,110,0,327,3, | ||
10572 | 111,0,327,3,112, | ||
10573 | 0,327,3,113,0, | ||
10574 | 327,3,114,0,327, | ||
10575 | 3,115,0,327,3, | ||
10576 | 116,0,887,12,1, | ||
10577 | 3680,888,5,63,3, | ||
10578 | 109,0,327,3,110, | ||
10579 | 0,327,3,111,0, | ||
10580 | 327,3,112,0,327, | ||
10581 | 3,113,0,327,3, | ||
10582 | 114,0,327,3,115, | ||
10583 | 0,327,3,116,0, | ||
10584 | 327,3,117,0,327, | ||
10585 | 3,118,0,327,3, | ||
10586 | 119,0,327,3,120, | ||
10587 | 0,327,3,121,0, | ||
10588 | 327,3,122,0,327, | ||
10589 | 3,48,0,327,3, | ||
10590 | 49,0,327,3,50, | ||
10591 | 0,327,3,51,0, | ||
10592 | 327,3,52,0,327, | ||
10593 | 3,53,0,327,3, | ||
10594 | 54,0,327,3,55, | ||
10595 | 0,327,3,56,0, | ||
10596 | 327,3,57,0,327, | ||
10597 | 3,65,0,327,3, | ||
10598 | 66,0,327,3,67, | ||
10599 | 0,327,3,68,0, | ||
10600 | 327,3,69,0,327, | ||
10601 | 3,70,0,327,3, | ||
10602 | 71,0,327,3,72, | ||
10603 | 0,327,3,73,0, | ||
10604 | 327,3,74,0,327, | ||
10605 | 3,75,0,327,3, | ||
10606 | 76,0,327,3,77, | ||
10607 | 0,327,3,78,0, | ||
10608 | 327,3,79,0,327, | ||
10609 | 3,80,0,327,3, | ||
10610 | 81,0,327,3,82, | ||
10611 | 0,327,3,83,0, | ||
10612 | 327,3,84,0,327, | ||
10613 | 3,85,0,327,3, | ||
10614 | 86,0,327,3,87, | ||
10615 | 0,327,3,88,0, | ||
10616 | 327,3,89,0,327, | ||
10617 | 3,90,0,327,3, | ||
10618 | 95,0,889,12,1, | ||
10619 | 3766,890,5,63,3, | ||
10620 | 109,0,327,3,110, | ||
10621 | 0,327,3,111,0, | ||
10622 | 327,3,112,0,327, | ||
10623 | 3,113,0,327,3, | ||
10624 | 114,0,891,12,1, | ||
10625 | 3799,892,5,63,3, | ||
10626 | 109,0,327,3,110, | ||
10627 | 0,327,3,111,0, | ||
10628 | 893,12,1,3829,894, | ||
10629 | 5,63,3,109,0, | ||
10630 | 327,3,110,0,327, | ||
10631 | 3,111,0,327,3, | ||
10632 | 112,0,327,3,113, | ||
10633 | 0,327,3,114,0, | ||
10634 | 327,3,115,0,327, | ||
10635 | 3,116,0,895,12, | ||
10636 | 1,3864,896,5,63, | ||
10637 | 3,109,0,327,3, | ||
10638 | 110,0,327,3,111, | ||
10639 | 0,327,3,112,0, | ||
10640 | 327,3,113,0,327, | ||
10641 | 3,114,0,327,3, | ||
10642 | 115,0,327,3,116, | ||
10643 | 0,327,3,117,0, | ||
10644 | 327,3,118,0,327, | ||
10645 | 3,119,0,327,3, | ||
10646 | 120,0,327,3,121, | ||
10647 | 0,327,3,122,0, | ||
10648 | 327,3,48,0,327, | ||
10649 | 3,49,0,327,3, | ||
10650 | 50,0,327,3,51, | ||
10651 | 0,327,3,52,0, | ||
10652 | 327,3,53,0,327, | ||
10653 | 3,54,0,327,3, | ||
10654 | 55,0,327,3,56, | ||
10655 | 0,327,3,57,0, | ||
10656 | 327,3,65,0,327, | ||
10657 | 3,66,0,327,3, | ||
10658 | 67,0,327,3,68, | ||
10659 | 0,327,3,69,0, | ||
10660 | 327,3,70,0,327, | ||
10661 | 3,71,0,327,3, | ||
10662 | 72,0,327,3,73, | ||
10663 | 0,327,3,74,0, | ||
10664 | 327,3,75,0,327, | ||
10665 | 3,76,0,327,3, | ||
10666 | 77,0,327,3,78, | ||
10667 | 0,327,3,79,0, | ||
10668 | 327,3,80,0,327, | ||
10669 | 3,81,0,327,3, | ||
10670 | 82,0,327,3,83, | ||
10671 | 0,327,3,84,0, | ||
10672 | 327,3,85,0,327, | ||
10673 | 3,86,0,327,3, | ||
10674 | 87,0,327,3,88, | ||
10675 | 0,327,3,89,0, | ||
10676 | 327,3,90,0,327, | ||
10677 | 3,95,0,897,12, | ||
10678 | 1,3950,898,5,63, | ||
10679 | 3,109,0,327,3, | ||
10680 | 110,0,327,3,111, | ||
10681 | 0,327,3,112,0, | ||
10682 | 327,3,113,0,327, | ||
10683 | 3,114,0,327,3, | ||
10684 | 115,0,327,3,116, | ||
10685 | 0,899,12,1,3985, | ||
10686 | 900,5,63,3,109, | ||
10687 | 0,327,3,110,0, | ||
10688 | 327,3,111,0,327, | ||
10689 | 3,112,0,327,3, | ||
10690 | 113,0,327,3,114, | ||
10691 | 0,327,3,115,0, | ||
10692 | 327,3,116,0,327, | ||
10693 | 3,117,0,327,3, | ||
10694 | 118,0,327,3,119, | ||
10695 | 0,327,3,120,0, | ||
10696 | 327,3,121,0,327, | ||
10697 | 3,122,0,327,3, | ||
10698 | 48,0,327,3,49, | ||
10699 | 0,327,3,50,0, | ||
10700 | 327,3,51,0,327, | ||
10701 | 3,52,0,327,3, | ||
10702 | 53,0,327,3,54, | ||
10703 | 0,327,3,55,0, | ||
10704 | 327,3,56,0,327, | ||
10705 | 3,57,0,327,3, | ||
10706 | 65,0,327,3,66, | ||
10707 | 0,327,3,67,0, | ||
10708 | 327,3,68,0,327, | ||
10709 | 3,69,0,327,3, | ||
10710 | 70,0,327,3,71, | ||
10711 | 0,327,3,72,0, | ||
10712 | 327,3,73,0,327, | ||
10713 | 3,74,0,327,3, | ||
10714 | 75,0,327,3,76, | ||
10715 | 0,327,3,77,0, | ||
10716 | 327,3,78,0,327, | ||
10717 | 3,79,0,327,3, | ||
10718 | 80,0,327,3,81, | ||
10719 | 0,327,3,82,0, | ||
10720 | 327,3,83,0,327, | ||
10721 | 3,84,0,327,3, | ||
10722 | 85,0,327,3,86, | ||
10723 | 0,327,3,87,0, | ||
10724 | 327,3,88,0,327, | ||
10725 | 3,89,0,327,3, | ||
10726 | 90,0,327,3,95, | ||
10727 | 0,327,3,97,0, | ||
10728 | 901,12,1,4028,902, | ||
10729 | 5,63,3,109,0, | ||
10730 | 327,3,110,0,327, | ||
10731 | 3,111,0,327,3, | ||
10732 | 112,0,327,3,113, | ||
10733 | 0,327,3,114,0, | ||
10734 | 903,12,1,4061,904, | ||
10735 | 5,63,3,109,0, | ||
10736 | 327,3,110,0,327, | ||
10737 | 3,111,0,327,3, | ||
10738 | 112,0,327,3,113, | ||
10739 | 0,327,3,114,0, | ||
10740 | 327,3,115,0,327, | ||
10741 | 3,116,0,327,3, | ||
10742 | 117,0,327,3,118, | ||
10743 | 0,327,3,119,0, | ||
10744 | 327,3,120,0,327, | ||
10745 | 3,121,0,327,3, | ||
10746 | 122,0,327,3,48, | ||
10747 | 0,327,3,49,0, | ||
10748 | 327,3,50,0,327, | ||
10749 | 3,51,0,327,3, | ||
10750 | 52,0,327,3,53, | ||
10751 | 0,327,3,54,0, | ||
10752 | 327,3,55,0,327, | ||
10753 | 3,56,0,327,3, | ||
10754 | 57,0,327,3,65, | ||
10755 | 0,327,3,66,0, | ||
10756 | 327,3,67,0,327, | ||
10757 | 3,68,0,327,3, | ||
10758 | 69,0,327,3,70, | ||
10759 | 0,327,3,71,0, | ||
10760 | 327,3,72,0,327, | ||
10761 | 3,73,0,327,3, | ||
10762 | 74,0,327,3,75, | ||
10763 | 0,327,3,76,0, | ||
10764 | 327,3,77,0,327, | ||
10765 | 3,78,0,327,3, | ||
10766 | 79,0,327,3,80, | ||
10767 | 0,327,3,81,0, | ||
10768 | 327,3,82,0,327, | ||
10769 | 3,83,0,327,3, | ||
10770 | 84,0,327,3,85, | ||
10771 | 0,327,3,86,0, | ||
10772 | 327,3,87,0,327, | ||
10773 | 3,88,0,327,3, | ||
10774 | 89,0,327,3,90, | ||
10775 | 0,327,3,95,0, | ||
10776 | 327,3,97,0,327, | ||
10777 | 3,98,0,327,3, | ||
10778 | 99,0,327,3,100, | ||
10779 | 0,327,3,101,0, | ||
10780 | 327,3,102,0,327, | ||
10781 | 3,103,0,905,12, | ||
10782 | 1,4110,906,5,63, | ||
10783 | 3,109,0,327,3, | ||
10784 | 110,0,327,3,111, | ||
10785 | 0,327,3,112,0, | ||
10786 | 327,3,113,0,327, | ||
10787 | 3,114,0,327,3, | ||
10788 | 115,0,327,3,116, | ||
10789 | 0,327,3,117,0, | ||
10790 | 327,3,118,0,327, | ||
10791 | 3,119,0,327,3, | ||
10792 | 120,0,327,3,121, | ||
10793 | 0,327,3,122,0, | ||
10794 | 327,3,48,0,327, | ||
10795 | 3,49,0,327,3, | ||
10796 | 50,0,327,3,51, | ||
10797 | 0,327,3,52,0, | ||
10798 | 327,3,53,0,327, | ||
10799 | 3,54,0,327,3, | ||
10800 | 55,0,327,3,56, | ||
10801 | 0,327,3,57,0, | ||
10802 | 327,3,65,0,327, | ||
10803 | 3,66,0,327,3, | ||
10804 | 67,0,327,3,68, | ||
10805 | 0,327,3,69,0, | ||
10806 | 327,3,70,0,327, | ||
10807 | 3,71,0,327,3, | ||
10808 | 72,0,327,3,73, | ||
10809 | 0,327,3,74,0, | ||
10810 | 327,3,75,0,327, | ||
10811 | 3,76,0,327,3, | ||
10812 | 77,0,327,3,78, | ||
10813 | 0,327,3,79,0, | ||
10814 | 327,3,80,0,327, | ||
10815 | 3,81,0,327,3, | ||
10816 | 82,0,327,3,83, | ||
10817 | 0,327,3,84,0, | ||
10818 | 327,3,85,0,327, | ||
10819 | 3,86,0,327,3, | ||
10820 | 87,0,327,3,88, | ||
10821 | 0,327,3,89,0, | ||
10822 | 327,3,90,0,327, | ||
10823 | 3,95,0,327,3, | ||
10824 | 97,0,327,3,98, | ||
10825 | 0,327,3,99,0, | ||
10826 | 327,3,100,0,327, | ||
10827 | 3,101,0,907,12, | ||
10828 | 1,4157,908,5,63, | ||
10829 | 3,109,0,327,3, | ||
10830 | 110,0,327,3,111, | ||
10831 | 0,327,3,112,0, | ||
10832 | 327,3,113,0,327, | ||
10833 | 3,114,0,327,3, | ||
10834 | 115,0,327,3,116, | ||
10835 | 0,909,12,1,4192, | ||
10836 | 910,5,63,3,109, | ||
10837 | 0,327,3,110,0, | ||
10838 | 327,3,111,0,327, | ||
10839 | 3,112,0,327,3, | ||
10840 | 113,0,327,3,114, | ||
10841 | 0,327,3,115,0, | ||
10842 | 327,3,116,0,327, | ||
10843 | 3,117,0,327,3, | ||
10844 | 118,0,327,3,119, | ||
10845 | 0,327,3,120,0, | ||
10846 | 327,3,121,0,327, | ||
10847 | 3,122,0,327,3, | ||
10848 | 48,0,327,3,49, | ||
10849 | 0,327,3,50,0, | ||
10850 | 327,3,51,0,327, | ||
10851 | 3,52,0,327,3, | ||
10852 | 53,0,327,3,54, | ||
10853 | 0,327,3,55,0, | ||
10854 | 327,3,56,0,327, | ||
10855 | 3,57,0,327,3, | ||
10856 | 65,0,327,3,66, | ||
10857 | 0,327,3,67,0, | ||
10858 | 327,3,68,0,327, | ||
10859 | 3,69,0,327,3, | ||
10860 | 70,0,327,3,71, | ||
10861 | 0,327,3,72,0, | ||
10862 | 327,3,73,0,327, | ||
10863 | 3,74,0,327,3, | ||
10864 | 75,0,327,3,76, | ||
10865 | 0,327,3,77,0, | ||
10866 | 327,3,78,0,327, | ||
10867 | 3,79,0,327,3, | ||
10868 | 80,0,327,3,81, | ||
10869 | 0,327,3,82,0, | ||
10870 | 327,3,83,0,327, | ||
10871 | 3,84,0,327,3, | ||
10872 | 85,0,327,3,86, | ||
10873 | 0,327,3,87,0, | ||
10874 | 327,3,88,0,327, | ||
10875 | 3,89,0,327,3, | ||
10876 | 90,0,327,3,95, | ||
10877 | 0,327,3,97,0, | ||
10878 | 327,3,98,0,327, | ||
10879 | 3,99,0,327,3, | ||
10880 | 100,0,327,3,101, | ||
10881 | 0,327,3,102,0, | ||
10882 | 327,3,103,0,327, | ||
10883 | 3,104,0,327,3, | ||
10884 | 105,0,327,3,106, | ||
10885 | 0,327,3,107,0, | ||
10886 | 327,3,108,0,327, | ||
10887 | 911,11,1,643,0, | ||
10888 | 912,4,46,78,0, | ||
10889 | 79,0,84,0,95, | ||
10890 | 0,65,0,84,0, | ||
10891 | 95,0,82,0,79, | ||
10892 | 0,84,0,95,0, | ||
10893 | 84,0,65,0,82, | ||
10894 | 0,71,0,69,0, | ||
10895 | 84,0,95,0,69, | ||
10896 | 0,86,0,69,0, | ||
10897 | 78,0,84,0,1, | ||
10898 | -1,3,117,0,327, | ||
10899 | 3,118,0,327,3, | ||
10900 | 119,0,327,3,120, | ||
10901 | 0,327,3,121,0, | ||
10902 | 327,3,122,0,327, | ||
10903 | 3,48,0,327,3, | ||
10904 | 49,0,327,3,50, | ||
10905 | 0,327,3,51,0, | ||
10906 | 327,3,52,0,327, | ||
10907 | 3,53,0,327,3, | ||
10908 | 54,0,327,3,55, | ||
10909 | 0,327,3,56,0, | ||
10910 | 327,3,57,0,327, | ||
10911 | 3,65,0,327,3, | ||
10912 | 66,0,327,3,67, | ||
10913 | 0,327,3,68,0, | ||
10914 | 327,3,69,0,327, | ||
10915 | 3,70,0,327,3, | ||
10916 | 71,0,327,3,72, | ||
10917 | 0,327,3,73,0, | ||
10918 | 327,3,74,0,327, | ||
10919 | 3,75,0,327,3, | ||
10920 | 76,0,327,3,77, | ||
10921 | 0,327,3,78,0, | ||
10922 | 327,3,79,0,327, | ||
10923 | 3,80,0,327,3, | ||
10924 | 81,0,327,3,82, | ||
10925 | 0,327,3,83,0, | ||
10926 | 327,3,84,0,327, | ||
10927 | 3,85,0,327,3, | ||
10928 | 86,0,327,3,87, | ||
10929 | 0,327,3,88,0, | ||
10930 | 327,3,89,0,327, | ||
10931 | 3,90,0,327,3, | ||
10932 | 95,0,327,3,97, | ||
10933 | 0,327,3,98,0, | ||
10934 | 327,3,99,0,327, | ||
10935 | 3,100,0,327,3, | ||
10936 | 101,0,327,3,102, | ||
10937 | 0,327,3,103,0, | ||
10938 | 327,3,104,0,327, | ||
10939 | 3,105,0,327,3, | ||
10940 | 106,0,327,3,107, | ||
10941 | 0,327,3,108,0, | ||
10942 | 327,913,11,1,829, | ||
10943 | 0,330,1,-1,3, | ||
10944 | 102,0,327,3,103, | ||
10945 | 0,327,3,104,0, | ||
10946 | 327,3,105,0,327, | ||
10947 | 3,106,0,327,3, | ||
10948 | 107,0,327,3,108, | ||
10949 | 0,327,914,11,1, | ||
10950 | 829,0,330,1,-1, | ||
10951 | 3,104,0,327,3, | ||
10952 | 105,0,327,3,106, | ||
10953 | 0,327,3,107,0, | ||
10954 | 327,3,108,0,327, | ||
10955 | 915,11,1,829,0, | ||
10956 | 330,1,-1,3,115, | ||
10957 | 0,327,3,116,0, | ||
10958 | 327,3,117,0,327, | ||
10959 | 3,118,0,327,3, | ||
10960 | 119,0,327,3,120, | ||
10961 | 0,327,3,121,0, | ||
10962 | 327,3,122,0,327, | ||
10963 | 3,48,0,327,3, | ||
10964 | 49,0,327,3,50, | ||
10965 | 0,327,3,51,0, | ||
10966 | 327,3,52,0,327, | ||
10967 | 3,53,0,327,3, | ||
10968 | 54,0,327,3,55, | ||
10969 | 0,327,3,56,0, | ||
10970 | 327,3,57,0,327, | ||
10971 | 3,65,0,327,3, | ||
10972 | 66,0,327,3,67, | ||
10973 | 0,327,3,68,0, | ||
10974 | 327,3,69,0,327, | ||
10975 | 3,70,0,327,3, | ||
10976 | 71,0,327,3,72, | ||
10977 | 0,327,3,73,0, | ||
10978 | 327,3,74,0,327, | ||
10979 | 3,75,0,327,3, | ||
10980 | 76,0,327,3,77, | ||
10981 | 0,327,3,78,0, | ||
10982 | 327,3,79,0,327, | ||
10983 | 3,80,0,327,3, | ||
10984 | 81,0,327,3,82, | ||
10985 | 0,327,3,83,0, | ||
10986 | 327,3,84,0,327, | ||
10987 | 3,85,0,327,3, | ||
10988 | 86,0,327,3,87, | ||
10989 | 0,327,3,88,0, | ||
10990 | 327,3,89,0,327, | ||
10991 | 3,90,0,327,3, | ||
10992 | 95,0,327,3,97, | ||
10993 | 0,327,3,98,0, | ||
10994 | 327,3,99,0,327, | ||
10995 | 3,100,0,327,3, | ||
10996 | 101,0,327,3,102, | ||
10997 | 0,327,3,103,0, | ||
10998 | 327,3,104,0,327, | ||
10999 | 3,105,0,327,3, | ||
11000 | 106,0,327,3,107, | ||
11001 | 0,327,3,108,0, | ||
11002 | 327,916,11,1,829, | ||
11003 | 0,330,1,-1,3, | ||
11004 | 98,0,327,3,99, | ||
11005 | 0,327,3,100,0, | ||
11006 | 327,3,101,0,327, | ||
11007 | 3,102,0,327,3, | ||
11008 | 103,0,327,3,104, | ||
11009 | 0,327,3,105,0, | ||
11010 | 327,3,106,0,327, | ||
11011 | 3,107,0,327,3, | ||
11012 | 108,0,327,917,11, | ||
11013 | 1,829,0,330,1, | ||
11014 | -1,3,117,0,327, | ||
11015 | 3,118,0,327,3, | ||
11016 | 119,0,327,3,120, | ||
11017 | 0,327,3,121,0, | ||
11018 | 327,3,122,0,327, | ||
11019 | 3,48,0,327,3, | ||
11020 | 49,0,327,3,50, | ||
11021 | 0,327,3,51,0, | ||
11022 | 327,3,52,0,327, | ||
11023 | 3,53,0,327,3, | ||
11024 | 54,0,327,3,55, | ||
11025 | 0,327,3,56,0, | ||
11026 | 327,3,57,0,327, | ||
11027 | 3,65,0,327,3, | ||
11028 | 66,0,327,3,67, | ||
11029 | 0,327,3,68,0, | ||
11030 | 327,3,69,0,327, | ||
11031 | 3,70,0,327,3, | ||
11032 | 71,0,327,3,72, | ||
11033 | 0,327,3,73,0, | ||
11034 | 327,3,74,0,327, | ||
11035 | 3,75,0,327,3, | ||
11036 | 76,0,327,3,77, | ||
11037 | 0,327,3,78,0, | ||
11038 | 327,3,79,0,327, | ||
11039 | 3,80,0,327,3, | ||
11040 | 81,0,327,3,82, | ||
11041 | 0,327,3,83,0, | ||
11042 | 327,3,84,0,327, | ||
11043 | 3,85,0,327,3, | ||
11044 | 86,0,327,3,87, | ||
11045 | 0,327,3,88,0, | ||
11046 | 327,3,89,0,327, | ||
11047 | 3,90,0,327,3, | ||
11048 | 95,0,327,3,97, | ||
11049 | 0,327,3,98,0, | ||
11050 | 327,3,99,0,327, | ||
11051 | 3,100,0,327,3, | ||
11052 | 101,0,327,3,102, | ||
11053 | 0,327,3,103,0, | ||
11054 | 327,3,104,0,327, | ||
11055 | 3,105,0,327,3, | ||
11056 | 106,0,327,3,107, | ||
11057 | 0,327,3,108,0, | ||
11058 | 327,918,11,1,829, | ||
11059 | 0,330,1,-1,3, | ||
11060 | 97,0,327,3,98, | ||
11061 | 0,327,3,99,0, | ||
11062 | 327,3,100,0,327, | ||
11063 | 3,101,0,327,3, | ||
11064 | 102,0,327,3,103, | ||
11065 | 0,327,3,104,0, | ||
11066 | 327,3,105,0,327, | ||
11067 | 3,106,0,327,3, | ||
11068 | 107,0,327,3,108, | ||
11069 | 0,327,919,11,1, | ||
11070 | 829,0,330,1,-1, | ||
11071 | 3,117,0,327,3, | ||
11072 | 118,0,327,3,119, | ||
11073 | 0,327,3,120,0, | ||
11074 | 327,3,121,0,327, | ||
11075 | 3,122,0,327,3, | ||
11076 | 48,0,327,3,49, | ||
11077 | 0,327,3,50,0, | ||
11078 | 327,3,51,0,327, | ||
11079 | 3,52,0,327,3, | ||
11080 | 53,0,327,3,54, | ||
11081 | 0,327,3,55,0, | ||
11082 | 327,3,56,0,327, | ||
11083 | 3,57,0,327,3, | ||
11084 | 65,0,327,3,66, | ||
11085 | 0,327,3,67,0, | ||
11086 | 327,3,68,0,327, | ||
11087 | 3,69,0,327,3, | ||
11088 | 70,0,327,3,71, | ||
11089 | 0,327,3,72,0, | ||
11090 | 327,3,73,0,327, | ||
11091 | 3,74,0,327,3, | ||
11092 | 75,0,327,3,76, | ||
11093 | 0,327,3,77,0, | ||
11094 | 327,3,78,0,327, | ||
11095 | 3,79,0,327,3, | ||
11096 | 80,0,327,3,81, | ||
11097 | 0,327,3,82,0, | ||
11098 | 327,3,83,0,327, | ||
11099 | 3,84,0,327,3, | ||
11100 | 85,0,327,3,86, | ||
11101 | 0,327,3,87,0, | ||
11102 | 327,3,88,0,327, | ||
11103 | 3,89,0,327,3, | ||
11104 | 90,0,327,3,95, | ||
11105 | 0,327,3,97,0, | ||
11106 | 327,3,98,0,327, | ||
11107 | 3,99,0,327,3, | ||
11108 | 100,0,327,3,101, | ||
11109 | 0,327,3,102,0, | ||
11110 | 327,3,103,0,327, | ||
11111 | 3,104,0,327,3, | ||
11112 | 105,0,327,3,106, | ||
11113 | 0,327,3,107,0, | ||
11114 | 327,3,108,0,327, | ||
11115 | 920,11,1,829,0, | ||
11116 | 330,1,-1,3,112, | ||
11117 | 0,327,3,113,0, | ||
11118 | 327,3,114,0,327, | ||
11119 | 3,115,0,327,3, | ||
11120 | 116,0,327,3,117, | ||
11121 | 0,327,3,118,0, | ||
11122 | 327,3,119,0,327, | ||
11123 | 3,120,0,327,3, | ||
11124 | 121,0,327,3,122, | ||
11125 | 0,327,3,48,0, | ||
11126 | 327,3,49,0,327, | ||
11127 | 3,50,0,327,3, | ||
11128 | 51,0,327,3,52, | ||
11129 | 0,327,3,53,0, | ||
11130 | 327,3,54,0,327, | ||
11131 | 3,55,0,327,3, | ||
11132 | 56,0,327,3,57, | ||
11133 | 0,327,3,65,0, | ||
11134 | 327,3,66,0,327, | ||
11135 | 3,67,0,327,3, | ||
11136 | 68,0,327,3,69, | ||
11137 | 0,327,3,70,0, | ||
11138 | 327,3,71,0,327, | ||
11139 | 3,72,0,327,3, | ||
11140 | 73,0,327,3,74, | ||
11141 | 0,327,3,75,0, | ||
11142 | 327,3,76,0,327, | ||
11143 | 3,77,0,327,3, | ||
11144 | 78,0,327,3,79, | ||
11145 | 0,327,3,80,0, | ||
11146 | 327,3,81,0,327, | ||
11147 | 3,82,0,327,3, | ||
11148 | 83,0,327,3,84, | ||
11149 | 0,327,3,85,0, | ||
11150 | 327,3,86,0,327, | ||
11151 | 3,87,0,327,3, | ||
11152 | 88,0,327,3,89, | ||
11153 | 0,327,3,90,0, | ||
11154 | 327,3,95,0,327, | ||
11155 | 3,97,0,327,3, | ||
11156 | 98,0,327,3,99, | ||
11157 | 0,327,3,100,0, | ||
11158 | 327,3,101,0,327, | ||
11159 | 3,102,0,327,3, | ||
11160 | 103,0,327,3,104, | ||
11161 | 0,327,3,105,0, | ||
11162 | 327,3,106,0,327, | ||
11163 | 3,107,0,327,3, | ||
11164 | 108,0,327,921,11, | ||
11165 | 1,829,0,330,1, | ||
11166 | -1,3,115,0,327, | ||
11167 | 3,116,0,922,12, | ||
11168 | 1,5001,923,5,63, | ||
11169 | 3,109,0,327,3, | ||
11170 | 110,0,327,3,111, | ||
11171 | 0,327,3,112,0, | ||
11172 | 327,3,113,0,327, | ||
11173 | 3,114,0,327,3, | ||
11174 | 115,0,327,3,116, | ||
11175 | 0,327,3,117,0, | ||
11176 | 327,3,118,0,327, | ||
11177 | 3,119,0,327,3, | ||
11178 | 120,0,327,3,121, | ||
11179 | 0,327,3,122,0, | ||
11180 | 327,3,48,0,327, | ||
11181 | 3,49,0,327,3, | ||
11182 | 50,0,327,3,51, | ||
11183 | 0,327,3,52,0, | ||
11184 | 327,3,53,0,327, | ||
11185 | 3,54,0,327,3, | ||
11186 | 55,0,327,3,56, | ||
11187 | 0,327,3,57,0, | ||
11188 | 327,3,65,0,327, | ||
11189 | 3,66,0,327,3, | ||
11190 | 67,0,327,3,68, | ||
11191 | 0,327,3,69,0, | ||
11192 | 327,3,70,0,327, | ||
11193 | 3,71,0,327,3, | ||
11194 | 72,0,327,3,73, | ||
11195 | 0,327,3,74,0, | ||
11196 | 327,3,75,0,327, | ||
11197 | 3,76,0,327,3, | ||
11198 | 77,0,327,3,78, | ||
11199 | 0,327,3,79,0, | ||
11200 | 327,3,80,0,327, | ||
11201 | 3,81,0,327,3, | ||
11202 | 82,0,327,3,83, | ||
11203 | 0,327,3,84,0, | ||
11204 | 327,3,85,0,327, | ||
11205 | 3,86,0,327,3, | ||
11206 | 87,0,327,3,88, | ||
11207 | 0,327,3,89,0, | ||
11208 | 327,3,90,0,327, | ||
11209 | 3,95,0,327,3, | ||
11210 | 97,0,924,12,1, | ||
11211 | 5044,925,5,63,3, | ||
11212 | 109,0,327,3,110, | ||
11213 | 0,327,3,111,0, | ||
11214 | 327,3,112,0,327, | ||
11215 | 3,113,0,327,3, | ||
11216 | 114,0,926,12,1, | ||
11217 | 5077,927,5,63,3, | ||
11218 | 109,0,327,3,110, | ||
11219 | 0,327,3,111,0, | ||
11220 | 327,3,112,0,327, | ||
11221 | 3,113,0,327,3, | ||
11222 | 114,0,327,3,115, | ||
11223 | 0,327,3,116,0, | ||
11224 | 327,3,117,0,327, | ||
11225 | 3,118,0,327,3, | ||
11226 | 119,0,327,3,120, | ||
11227 | 0,327,3,121,0, | ||
11228 | 327,3,122,0,327, | ||
11229 | 3,48,0,327,3, | ||
11230 | 49,0,327,3,50, | ||
11231 | 0,327,3,51,0, | ||
11232 | 327,3,52,0,327, | ||
11233 | 3,53,0,327,3, | ||
11234 | 54,0,327,3,55, | ||
11235 | 0,327,3,56,0, | ||
11236 | 327,3,57,0,327, | ||
11237 | 3,65,0,327,3, | ||
11238 | 66,0,327,3,67, | ||
11239 | 0,327,3,68,0, | ||
11240 | 327,3,69,0,327, | ||
11241 | 3,70,0,327,3, | ||
11242 | 71,0,327,3,72, | ||
11243 | 0,327,3,73,0, | ||
11244 | 327,3,74,0,327, | ||
11245 | 3,75,0,327,3, | ||
11246 | 76,0,327,3,77, | ||
11247 | 0,327,3,78,0, | ||
11248 | 327,3,79,0,327, | ||
11249 | 3,80,0,327,3, | ||
11250 | 81,0,327,3,82, | ||
11251 | 0,327,3,83,0, | ||
11252 | 327,3,84,0,327, | ||
11253 | 3,85,0,327,3, | ||
11254 | 86,0,327,3,87, | ||
11255 | 0,327,3,88,0, | ||
11256 | 327,3,89,0,327, | ||
11257 | 3,90,0,327,3, | ||
11258 | 95,0,327,3,97, | ||
11259 | 0,327,3,98,0, | ||
11260 | 327,3,99,0,327, | ||
11261 | 3,100,0,327,3, | ||
11262 | 101,0,327,3,102, | ||
11263 | 0,327,3,103,0, | ||
11264 | 928,12,1,5126,929, | ||
11265 | 5,63,3,109,0, | ||
11266 | 327,3,110,0,327, | ||
11267 | 3,111,0,327,3, | ||
11268 | 112,0,327,3,113, | ||
11269 | 0,327,3,114,0, | ||
11270 | 327,3,115,0,327, | ||
11271 | 3,116,0,327,3, | ||
11272 | 117,0,327,3,118, | ||
11273 | 0,327,3,119,0, | ||
11274 | 327,3,120,0,327, | ||
11275 | 3,121,0,327,3, | ||
11276 | 122,0,327,3,48, | ||
11277 | 0,327,3,49,0, | ||
11278 | 327,3,50,0,327, | ||
11279 | 3,51,0,327,3, | ||
11280 | 52,0,327,3,53, | ||
11281 | 0,327,3,54,0, | ||
11282 | 327,3,55,0,327, | ||
11283 | 3,56,0,327,3, | ||
11284 | 57,0,327,3,65, | ||
11285 | 0,327,3,66,0, | ||
11286 | 327,3,67,0,327, | ||
11287 | 3,68,0,327,3, | ||
11288 | 69,0,327,3,70, | ||
11289 | 0,327,3,71,0, | ||
11290 | 327,3,72,0,327, | ||
11291 | 3,73,0,327,3, | ||
11292 | 74,0,327,3,75, | ||
11293 | 0,327,3,76,0, | ||
11294 | 327,3,77,0,327, | ||
11295 | 3,78,0,327,3, | ||
11296 | 79,0,327,3,80, | ||
11297 | 0,327,3,81,0, | ||
11298 | 327,3,82,0,327, | ||
11299 | 3,83,0,327,3, | ||
11300 | 84,0,327,3,85, | ||
11301 | 0,327,3,86,0, | ||
11302 | 327,3,87,0,327, | ||
11303 | 3,88,0,327,3, | ||
11304 | 89,0,327,3,90, | ||
11305 | 0,327,3,95,0, | ||
11306 | 327,3,97,0,327, | ||
11307 | 3,98,0,327,3, | ||
11308 | 99,0,327,3,100, | ||
11309 | 0,327,3,101,0, | ||
11310 | 930,12,1,5173,931, | ||
11311 | 5,63,3,109,0, | ||
11312 | 327,3,110,0,327, | ||
11313 | 3,111,0,327,3, | ||
11314 | 112,0,327,3,113, | ||
11315 | 0,327,3,114,0, | ||
11316 | 327,3,115,0,327, | ||
11317 | 3,116,0,932,12, | ||
11318 | 1,5208,933,5,63, | ||
11319 | 3,109,0,327,3, | ||
11320 | 110,0,327,3,111, | ||
11321 | 0,327,3,112,0, | ||
11322 | 327,3,113,0,327, | ||
11323 | 3,114,0,327,3, | ||
11324 | 115,0,327,3,116, | ||
11325 | 0,327,3,117,0, | ||
11326 | 327,3,118,0,327, | ||
11327 | 3,119,0,327,3, | ||
11328 | 120,0,327,3,121, | ||
11329 | 0,327,3,122,0, | ||
11330 | 327,3,48,0,327, | ||
11331 | 3,49,0,327,3, | ||
11332 | 50,0,327,3,51, | ||
11333 | 0,327,3,52,0, | ||
11334 | 327,3,53,0,327, | ||
11335 | 3,54,0,327,3, | ||
11336 | 55,0,327,3,56, | ||
11337 | 0,327,3,57,0, | ||
11338 | 327,3,65,0,327, | ||
11339 | 3,66,0,327,3, | ||
11340 | 67,0,327,3,68, | ||
11341 | 0,327,3,69,0, | ||
11342 | 327,3,70,0,327, | ||
11343 | 3,71,0,327,3, | ||
11344 | 72,0,327,3,73, | ||
11345 | 0,327,3,74,0, | ||
11346 | 327,3,75,0,327, | ||
11347 | 3,76,0,327,3, | ||
11348 | 77,0,327,3,78, | ||
11349 | 0,327,3,79,0, | ||
11350 | 327,3,80,0,327, | ||
11351 | 3,81,0,327,3, | ||
11352 | 82,0,327,3,83, | ||
11353 | 0,327,3,84,0, | ||
11354 | 327,3,85,0,327, | ||
11355 | 3,86,0,327,3, | ||
11356 | 87,0,327,3,88, | ||
11357 | 0,327,3,89,0, | ||
11358 | 327,3,90,0,327, | ||
11359 | 3,95,0,327,3, | ||
11360 | 97,0,327,3,98, | ||
11361 | 0,327,3,99,0, | ||
11362 | 327,3,100,0,327, | ||
11363 | 3,101,0,327,3, | ||
11364 | 102,0,327,3,103, | ||
11365 | 0,327,3,104,0, | ||
11366 | 327,3,105,0,327, | ||
11367 | 3,106,0,327,3, | ||
11368 | 107,0,327,3,108, | ||
11369 | 0,327,934,11,1, | ||
11370 | 664,0,935,4,38, | ||
11371 | 78,0,79,0,84, | ||
11372 | 0,95,0,65,0, | ||
11373 | 84,0,95,0,84, | ||
11374 | 0,65,0,82,0, | ||
11375 | 71,0,69,0,84, | ||
11376 | 0,95,0,69,0, | ||
11377 | 86,0,69,0,78, | ||
11378 | 0,84,0,1,-1, | ||
11379 | 3,117,0,327,3, | ||
11380 | 118,0,327,3,119, | ||
11381 | 0,327,3,120,0, | ||
11382 | 327,3,121,0,327, | ||
11383 | 3,122,0,327,3, | ||
11384 | 48,0,327,3,49, | ||
11385 | 0,327,3,50,0, | ||
11386 | 327,3,51,0,327, | ||
11387 | 3,52,0,327,3, | ||
11388 | 53,0,327,3,54, | ||
11389 | 0,327,3,55,0, | ||
11390 | 327,3,56,0,327, | ||
11391 | 3,57,0,327,3, | ||
11392 | 65,0,327,3,66, | ||
11393 | 0,327,3,67,0, | ||
11394 | 327,3,68,0,327, | ||
11395 | 3,69,0,327,3, | ||
11396 | 70,0,327,3,71, | ||
11397 | 0,327,3,72,0, | ||
11398 | 327,3,73,0,327, | ||
11399 | 3,74,0,327,3, | ||
11400 | 75,0,327,3,76, | ||
11401 | 0,327,3,77,0, | ||
11402 | 327,3,78,0,327, | ||
11403 | 3,79,0,327,3, | ||
11404 | 80,0,327,3,81, | ||
11405 | 0,327,3,82,0, | ||
11406 | 327,3,83,0,327, | ||
11407 | 3,84,0,327,3, | ||
11408 | 85,0,327,3,86, | ||
11409 | 0,327,3,87,0, | ||
11410 | 327,3,88,0,327, | ||
11411 | 3,89,0,327,3, | ||
11412 | 90,0,327,3,95, | ||
11413 | 0,327,3,97,0, | ||
11414 | 327,3,98,0,327, | ||
11415 | 3,99,0,327,3, | ||
11416 | 100,0,327,3,101, | ||
11417 | 0,327,3,102,0, | ||
11418 | 327,3,103,0,327, | ||
11419 | 3,104,0,327,3, | ||
11420 | 105,0,327,3,106, | ||
11421 | 0,327,3,107,0, | ||
11422 | 327,3,108,0,327, | ||
11423 | 936,11,1,829,0, | ||
11424 | 330,1,-1,3,102, | ||
11425 | 0,327,3,103,0, | ||
11426 | 327,3,104,0,327, | ||
11427 | 3,105,0,327,3, | ||
11428 | 106,0,327,3,107, | ||
11429 | 0,327,3,108,0, | ||
11430 | 327,937,11,1,829, | ||
11431 | 0,330,1,-1,3, | ||
11432 | 104,0,327,3,105, | ||
11433 | 0,327,3,106,0, | ||
11434 | 327,3,107,0,327, | ||
11435 | 3,108,0,327,938, | ||
11436 | 11,1,829,0,330, | ||
11437 | 1,-1,3,115,0, | ||
11438 | 327,3,116,0,327, | ||
11439 | 3,117,0,327,3, | ||
11440 | 118,0,327,3,119, | ||
11441 | 0,327,3,120,0, | ||
11442 | 327,3,121,0,327, | ||
11443 | 3,122,0,327,3, | ||
11444 | 48,0,327,3,49, | ||
11445 | 0,327,3,50,0, | ||
11446 | 327,3,51,0,327, | ||
11447 | 3,52,0,327,3, | ||
11448 | 53,0,327,3,54, | ||
11449 | 0,327,3,55,0, | ||
11450 | 327,3,56,0,327, | ||
11451 | 3,57,0,327,3, | ||
11452 | 65,0,327,3,66, | ||
11453 | 0,327,3,67,0, | ||
11454 | 327,3,68,0,327, | ||
11455 | 3,69,0,327,3, | ||
11456 | 70,0,327,3,71, | ||
11457 | 0,327,3,72,0, | ||
11458 | 327,3,73,0,327, | ||
11459 | 3,74,0,327,3, | ||
11460 | 75,0,327,3,76, | ||
11461 | 0,327,3,77,0, | ||
11462 | 327,3,78,0,327, | ||
11463 | 3,79,0,327,3, | ||
11464 | 80,0,327,3,81, | ||
11465 | 0,327,3,82,0, | ||
11466 | 327,3,83,0,327, | ||
11467 | 3,84,0,327,3, | ||
11468 | 85,0,327,3,86, | ||
11469 | 0,327,3,87,0, | ||
11470 | 327,3,88,0,327, | ||
11471 | 3,89,0,327,3, | ||
11472 | 90,0,327,3,95, | ||
11473 | 0,327,3,97,0, | ||
11474 | 327,3,98,0,327, | ||
11475 | 3,99,0,327,3, | ||
11476 | 100,0,327,3,101, | ||
11477 | 0,327,3,102,0, | ||
11478 | 327,3,103,0,327, | ||
11479 | 3,104,0,327,3, | ||
11480 | 105,0,327,3,106, | ||
11481 | 0,327,3,107,0, | ||
11482 | 327,3,108,0,327, | ||
11483 | 939,11,1,829,0, | ||
11484 | 330,1,-1,3,98, | ||
11485 | 0,327,3,99,0, | ||
11486 | 327,3,100,0,327, | ||
11487 | 3,101,0,327,3, | ||
11488 | 102,0,327,3,103, | ||
11489 | 0,327,3,104,0, | ||
11490 | 327,3,105,0,327, | ||
11491 | 3,106,0,327,3, | ||
11492 | 107,0,327,3,108, | ||
11493 | 0,327,940,11,1, | ||
11494 | 829,0,330,1,-1, | ||
11495 | 3,117,0,327,3, | ||
11496 | 118,0,327,3,119, | ||
11497 | 0,327,3,120,0, | ||
11498 | 327,3,121,0,327, | ||
11499 | 3,122,0,327,3, | ||
11500 | 48,0,327,3,49, | ||
11501 | 0,327,3,50,0, | ||
11502 | 327,3,51,0,327, | ||
11503 | 3,52,0,327,3, | ||
11504 | 53,0,327,3,54, | ||
11505 | 0,327,3,55,0, | ||
11506 | 327,3,56,0,327, | ||
11507 | 3,57,0,327,3, | ||
11508 | 65,0,327,3,66, | ||
11509 | 0,327,3,67,0, | ||
11510 | 327,3,68,0,327, | ||
11511 | 3,69,0,327,3, | ||
11512 | 70,0,327,3,71, | ||
11513 | 0,327,3,72,0, | ||
11514 | 327,3,73,0,327, | ||
11515 | 3,74,0,327,3, | ||
11516 | 75,0,327,3,76, | ||
11517 | 0,327,3,77,0, | ||
11518 | 327,3,78,0,327, | ||
11519 | 3,79,0,327,3, | ||
11520 | 80,0,327,3,81, | ||
11521 | 0,327,3,82,0, | ||
11522 | 327,3,83,0,327, | ||
11523 | 3,84,0,327,3, | ||
11524 | 85,0,327,3,86, | ||
11525 | 0,327,3,87,0, | ||
11526 | 327,3,88,0,327, | ||
11527 | 3,89,0,327,3, | ||
11528 | 90,0,327,3,95, | ||
11529 | 0,327,3,97,0, | ||
11530 | 327,3,98,0,327, | ||
11531 | 3,99,0,327,3, | ||
11532 | 100,0,327,3,101, | ||
11533 | 0,327,3,102,0, | ||
11534 | 327,3,103,0,327, | ||
11535 | 3,104,0,327,3, | ||
11536 | 105,0,327,3,106, | ||
11537 | 0,327,3,107,0, | ||
11538 | 327,3,108,0,327, | ||
11539 | 941,11,1,829,0, | ||
11540 | 330,1,-1,3,97, | ||
11541 | 0,327,3,98,0, | ||
11542 | 327,3,99,0,327, | ||
11543 | 3,100,0,327,3, | ||
11544 | 101,0,327,3,102, | ||
11545 | 0,327,3,103,0, | ||
11546 | 327,3,104,0,327, | ||
11547 | 3,105,0,327,3, | ||
11548 | 106,0,327,3,107, | ||
11549 | 0,327,3,108,0, | ||
11550 | 327,942,11,1,829, | ||
11551 | 0,330,1,-1,3, | ||
11552 | 117,0,327,3,118, | ||
11553 | 0,327,3,119,0, | ||
11554 | 327,3,120,0,327, | ||
11555 | 3,121,0,327,3, | ||
11556 | 122,0,327,3,48, | ||
11557 | 0,327,3,49,0, | ||
11558 | 327,3,50,0,327, | ||
11559 | 3,51,0,327,3, | ||
11560 | 52,0,327,3,53, | ||
11561 | 0,327,3,54,0, | ||
11562 | 327,3,55,0,327, | ||
11563 | 3,56,0,327,3, | ||
11564 | 57,0,327,3,65, | ||
11565 | 0,327,3,66,0, | ||
11566 | 327,3,67,0,327, | ||
11567 | 3,68,0,327,3, | ||
11568 | 69,0,327,3,70, | ||
11569 | 0,327,3,71,0, | ||
11570 | 327,3,72,0,327, | ||
11571 | 3,73,0,327,3, | ||
11572 | 74,0,327,3,75, | ||
11573 | 0,327,3,76,0, | ||
11574 | 327,3,77,0,327, | ||
11575 | 3,78,0,327,3, | ||
11576 | 79,0,327,3,80, | ||
11577 | 0,327,3,81,0, | ||
11578 | 327,3,82,0,327, | ||
11579 | 3,83,0,327,3, | ||
11580 | 84,0,327,3,85, | ||
11581 | 0,327,3,86,0, | ||
11582 | 327,3,87,0,327, | ||
11583 | 3,88,0,327,3, | ||
11584 | 89,0,327,3,90, | ||
11585 | 0,327,3,95,0, | ||
11586 | 327,3,97,0,327, | ||
11587 | 3,98,0,327,3, | ||
11588 | 99,0,327,3,100, | ||
11589 | 0,327,3,101,0, | ||
11590 | 327,3,102,0,327, | ||
11591 | 3,103,0,327,3, | ||
11592 | 104,0,327,3,105, | ||
11593 | 0,327,3,106,0, | ||
11594 | 327,3,107,0,327, | ||
11595 | 3,108,0,327,943, | ||
11596 | 11,1,829,0,330, | ||
11597 | 1,-1,3,98,0, | ||
11598 | 327,3,99,0,327, | ||
11599 | 3,100,0,327,3, | ||
11600 | 101,0,327,3,102, | ||
11601 | 0,327,3,103,0, | ||
11602 | 327,3,104,0,327, | ||
11603 | 3,105,0,327,3, | ||
11604 | 106,0,327,3,107, | ||
11605 | 0,327,3,108,0, | ||
11606 | 327,944,11,1,829, | ||
11607 | 0,330,1,-1,3, | ||
11608 | 97,0,327,3,98, | ||
11609 | 0,327,3,99,0, | ||
11610 | 327,3,100,0,327, | ||
11611 | 3,101,0,327,3, | ||
11612 | 102,0,327,3,103, | ||
11613 | 0,327,3,104,0, | ||
11614 | 327,3,105,0,327, | ||
11615 | 3,106,0,327,3, | ||
11616 | 107,0,327,3,108, | ||
11617 | 0,327,945,11,1, | ||
11618 | 829,0,330,1,-1, | ||
11619 | 3,117,0,327,3, | ||
11620 | 118,0,327,3,119, | ||
11621 | 0,327,3,120,0, | ||
11622 | 327,3,121,0,327, | ||
11623 | 3,122,0,327,3, | ||
11624 | 48,0,327,3,49, | ||
11625 | 0,327,3,50,0, | ||
11626 | 327,3,51,0,327, | ||
11627 | 3,52,0,327,3, | ||
11628 | 53,0,327,3,54, | ||
11629 | 0,327,3,55,0, | ||
11630 | 327,3,56,0,327, | ||
11631 | 3,57,0,327,3, | ||
11632 | 65,0,327,3,66, | ||
11633 | 0,327,3,67,0, | ||
11634 | 327,3,68,0,327, | ||
11635 | 3,69,0,327,3, | ||
11636 | 70,0,327,3,71, | ||
11637 | 0,327,3,72,0, | ||
11638 | 327,3,73,0,327, | ||
11639 | 3,74,0,327,3, | ||
11640 | 75,0,327,3,76, | ||
11641 | 0,327,3,77,0, | ||
11642 | 327,3,78,0,327, | ||
11643 | 3,79,0,327,3, | ||
11644 | 80,0,327,3,81, | ||
11645 | 0,327,3,82,0, | ||
11646 | 327,3,83,0,327, | ||
11647 | 3,84,0,327,3, | ||
11648 | 85,0,327,3,86, | ||
11649 | 0,327,3,87,0, | ||
11650 | 327,3,88,0,327, | ||
11651 | 3,89,0,327,3, | ||
11652 | 90,0,327,3,95, | ||
11653 | 0,946,12,1,6087, | ||
11654 | 947,5,63,3,109, | ||
11655 | 0,327,3,110,0, | ||
11656 | 327,3,111,0,327, | ||
11657 | 3,112,0,327,3, | ||
11658 | 113,0,327,3,114, | ||
11659 | 0,327,3,115,0, | ||
11660 | 948,12,1,6121,949, | ||
11661 | 5,63,3,109,0, | ||
11662 | 327,3,110,0,327, | ||
11663 | 3,111,0,327,3, | ||
11664 | 112,0,327,3,113, | ||
11665 | 0,327,3,114,0, | ||
11666 | 327,3,115,0,327, | ||
11667 | 3,116,0,327,3, | ||
11668 | 117,0,327,3,118, | ||
11669 | 0,327,3,119,0, | ||
11670 | 327,3,120,0,327, | ||
11671 | 3,121,0,327,3, | ||
11672 | 122,0,327,3,48, | ||
11673 | 0,327,3,49,0, | ||
11674 | 327,3,50,0,327, | ||
11675 | 3,51,0,327,3, | ||
11676 | 52,0,327,3,53, | ||
11677 | 0,327,3,54,0, | ||
11678 | 327,3,55,0,327, | ||
11679 | 3,56,0,327,3, | ||
11680 | 57,0,327,3,65, | ||
11681 | 0,327,3,66,0, | ||
11682 | 327,3,67,0,327, | ||
11683 | 3,68,0,327,3, | ||
11684 | 69,0,327,3,70, | ||
11685 | 0,327,3,71,0, | ||
11686 | 327,3,72,0,327, | ||
11687 | 3,73,0,327,3, | ||
11688 | 74,0,327,3,75, | ||
11689 | 0,327,3,76,0, | ||
11690 | 327,3,77,0,327, | ||
11691 | 3,78,0,327,3, | ||
11692 | 79,0,327,3,80, | ||
11693 | 0,327,3,81,0, | ||
11694 | 327,3,82,0,327, | ||
11695 | 3,83,0,327,3, | ||
11696 | 84,0,327,3,85, | ||
11697 | 0,327,3,86,0, | ||
11698 | 327,3,87,0,327, | ||
11699 | 3,88,0,327,3, | ||
11700 | 89,0,327,3,90, | ||
11701 | 0,327,3,95,0, | ||
11702 | 327,3,97,0,327, | ||
11703 | 3,98,0,327,3, | ||
11704 | 99,0,327,3,100, | ||
11705 | 0,327,3,101,0, | ||
11706 | 950,12,1,6168,951, | ||
11707 | 5,63,3,109,0, | ||
11708 | 327,3,110,0,952, | ||
11709 | 12,1,6197,953,5, | ||
11710 | 63,3,109,0,327, | ||
11711 | 3,110,0,327,3, | ||
11712 | 111,0,327,3,112, | ||
11713 | 0,327,3,113,0, | ||
11714 | 327,3,114,0,327, | ||
11715 | 3,115,0,954,12, | ||
11716 | 1,6231,955,5,63, | ||
11717 | 3,109,0,327,3, | ||
11718 | 110,0,327,3,111, | ||
11719 | 0,956,12,1,6261, | ||
11720 | 957,5,63,3,109, | ||
11721 | 0,327,3,110,0, | ||
11722 | 327,3,111,0,327, | ||
11723 | 3,112,0,327,3, | ||
11724 | 113,0,327,3,114, | ||
11725 | 0,958,12,1,6294, | ||
11726 | 959,5,63,3,109, | ||
11727 | 0,327,3,110,0, | ||
11728 | 327,3,111,0,327, | ||
11729 | 3,112,0,327,3, | ||
11730 | 113,0,327,3,114, | ||
11731 | 0,327,3,115,0, | ||
11732 | 327,3,116,0,327, | ||
11733 | 3,117,0,327,3, | ||
11734 | 118,0,327,3,119, | ||
11735 | 0,327,3,120,0, | ||
11736 | 327,3,121,0,327, | ||
11737 | 3,122,0,327,3, | ||
11738 | 48,0,327,3,49, | ||
11739 | 0,327,3,50,0, | ||
11740 | 327,3,51,0,327, | ||
11741 | 3,52,0,327,3, | ||
11742 | 53,0,327,3,54, | ||
11743 | 0,327,3,55,0, | ||
11744 | 327,3,56,0,327, | ||
11745 | 3,57,0,327,3, | ||
11746 | 65,0,327,3,66, | ||
11747 | 0,327,3,67,0, | ||
11748 | 327,3,68,0,327, | ||
11749 | 3,69,0,327,3, | ||
11750 | 70,0,327,3,71, | ||
11751 | 0,327,3,72,0, | ||
11752 | 327,3,73,0,327, | ||
11753 | 3,74,0,327,3, | ||
11754 | 75,0,327,3,76, | ||
11755 | 0,327,3,77,0, | ||
11756 | 327,3,78,0,327, | ||
11757 | 3,79,0,327,3, | ||
11758 | 80,0,327,3,81, | ||
11759 | 0,327,3,82,0, | ||
11760 | 327,3,83,0,327, | ||
11761 | 3,84,0,327,3, | ||
11762 | 85,0,327,3,86, | ||
11763 | 0,327,3,87,0, | ||
11764 | 327,3,88,0,327, | ||
11765 | 3,89,0,327,3, | ||
11766 | 90,0,327,3,95, | ||
11767 | 0,327,3,97,0, | ||
11768 | 327,3,98,0,327, | ||
11769 | 3,99,0,327,3, | ||
11770 | 100,0,327,3,101, | ||
11771 | 0,327,3,102,0, | ||
11772 | 327,3,103,0,327, | ||
11773 | 3,104,0,327,3, | ||
11774 | 105,0,327,3,106, | ||
11775 | 0,327,3,107,0, | ||
11776 | 327,3,108,0,327, | ||
11777 | 960,11,1,630,0, | ||
11778 | 961,4,30,78,0, | ||
11779 | 79,0,95,0,83, | ||
11780 | 0,69,0,78,0, | ||
11781 | 83,0,79,0,82, | ||
11782 | 0,95,0,69,0, | ||
11783 | 86,0,69,0,78, | ||
11784 | 0,84,0,1,-1, | ||
11785 | 3,115,0,327,3, | ||
11786 | 116,0,327,3,117, | ||
11787 | 0,327,3,118,0, | ||
11788 | 327,3,119,0,327, | ||
11789 | 3,120,0,327,3, | ||
11790 | 121,0,327,3,122, | ||
11791 | 0,327,3,48,0, | ||
11792 | 327,3,49,0,327, | ||
11793 | 3,50,0,327,3, | ||
11794 | 51,0,327,3,52, | ||
11795 | 0,327,3,53,0, | ||
11796 | 327,3,54,0,327, | ||
11797 | 3,55,0,327,3, | ||
11798 | 56,0,327,3,57, | ||
11799 | 0,327,3,65,0, | ||
11800 | 327,3,66,0,327, | ||
11801 | 3,67,0,327,3, | ||
11802 | 68,0,327,3,69, | ||
11803 | 0,327,3,70,0, | ||
11804 | 327,3,71,0,327, | ||
11805 | 3,72,0,327,3, | ||
11806 | 73,0,327,3,74, | ||
11807 | 0,327,3,75,0, | ||
11808 | 327,3,76,0,327, | ||
11809 | 3,77,0,327,3, | ||
11810 | 78,0,327,3,79, | ||
11811 | 0,327,3,80,0, | ||
11812 | 327,3,81,0,327, | ||
11813 | 3,82,0,327,3, | ||
11814 | 83,0,327,3,84, | ||
11815 | 0,327,3,85,0, | ||
11816 | 327,3,86,0,327, | ||
11817 | 3,87,0,327,3, | ||
11818 | 88,0,327,3,89, | ||
11819 | 0,327,3,90,0, | ||
11820 | 327,3,95,0,327, | ||
11821 | 3,97,0,327,3, | ||
11822 | 98,0,327,3,99, | ||
11823 | 0,327,3,100,0, | ||
11824 | 327,3,101,0,327, | ||
11825 | 3,102,0,327,3, | ||
11826 | 103,0,327,3,104, | ||
11827 | 0,327,3,105,0, | ||
11828 | 327,3,106,0,327, | ||
11829 | 3,107,0,327,3, | ||
11830 | 108,0,327,962,11, | ||
11831 | 1,829,0,330,1, | ||
11832 | -1,3,112,0,327, | ||
11833 | 3,113,0,327,3, | ||
11834 | 114,0,327,3,115, | ||
11835 | 0,327,3,116,0, | ||
11836 | 327,3,117,0,327, | ||
11837 | 3,118,0,327,3, | ||
11838 | 119,0,327,3,120, | ||
11839 | 0,327,3,121,0, | ||
11840 | 327,3,122,0,327, | ||
11841 | 3,48,0,327,3, | ||
11842 | 49,0,327,3,50, | ||
11843 | 0,327,3,51,0, | ||
11844 | 327,3,52,0,327, | ||
11845 | 3,53,0,327,3, | ||
11846 | 54,0,327,3,55, | ||
11847 | 0,327,3,56,0, | ||
11848 | 327,3,57,0,327, | ||
11849 | 3,65,0,327,3, | ||
11850 | 66,0,327,3,67, | ||
11851 | 0,327,3,68,0, | ||
11852 | 327,3,69,0,327, | ||
11853 | 3,70,0,327,3, | ||
11854 | 71,0,327,3,72, | ||
11855 | 0,327,3,73,0, | ||
11856 | 327,3,74,0,327, | ||
11857 | 3,75,0,327,3, | ||
11858 | 76,0,327,3,77, | ||
11859 | 0,327,3,78,0, | ||
11860 | 327,3,79,0,327, | ||
11861 | 3,80,0,327,3, | ||
11862 | 81,0,327,3,82, | ||
11863 | 0,327,3,83,0, | ||
11864 | 327,3,84,0,327, | ||
11865 | 3,85,0,327,3, | ||
11866 | 86,0,327,3,87, | ||
11867 | 0,327,3,88,0, | ||
11868 | 327,3,89,0,327, | ||
11869 | 3,90,0,327,3, | ||
11870 | 95,0,327,3,97, | ||
11871 | 0,327,3,98,0, | ||
11872 | 327,3,99,0,327, | ||
11873 | 3,100,0,327,3, | ||
11874 | 101,0,327,3,102, | ||
11875 | 0,327,3,103,0, | ||
11876 | 327,3,104,0,327, | ||
11877 | 3,105,0,327,3, | ||
11878 | 106,0,327,3,107, | ||
11879 | 0,327,3,108,0, | ||
11880 | 327,963,11,1,829, | ||
11881 | 0,330,1,-1,3, | ||
11882 | 116,0,327,3,117, | ||
11883 | 0,327,3,118,0, | ||
11884 | 327,3,119,0,327, | ||
11885 | 3,120,0,327,3, | ||
11886 | 121,0,327,3,122, | ||
11887 | 0,327,3,48,0, | ||
11888 | 327,3,49,0,327, | ||
11889 | 3,50,0,327,3, | ||
11890 | 51,0,327,3,52, | ||
11891 | 0,327,3,53,0, | ||
11892 | 327,3,54,0,327, | ||
11893 | 3,55,0,327,3, | ||
11894 | 56,0,327,3,57, | ||
11895 | 0,327,3,65,0, | ||
11896 | 327,3,66,0,327, | ||
11897 | 3,67,0,327,3, | ||
11898 | 68,0,327,3,69, | ||
11899 | 0,327,3,70,0, | ||
11900 | 327,3,71,0,327, | ||
11901 | 3,72,0,327,3, | ||
11902 | 73,0,327,3,74, | ||
11903 | 0,327,3,75,0, | ||
11904 | 327,3,76,0,327, | ||
11905 | 3,77,0,327,3, | ||
11906 | 78,0,327,3,79, | ||
11907 | 0,327,3,80,0, | ||
11908 | 327,3,81,0,327, | ||
11909 | 3,82,0,327,3, | ||
11910 | 83,0,327,3,84, | ||
11911 | 0,327,3,85,0, | ||
11912 | 327,3,86,0,327, | ||
11913 | 3,87,0,327,3, | ||
11914 | 88,0,327,3,89, | ||
11915 | 0,327,3,90,0, | ||
11916 | 327,3,95,0,327, | ||
11917 | 3,97,0,327,3, | ||
11918 | 98,0,327,3,99, | ||
11919 | 0,327,3,100,0, | ||
11920 | 327,3,101,0,327, | ||
11921 | 3,102,0,327,3, | ||
11922 | 103,0,327,3,104, | ||
11923 | 0,327,3,105,0, | ||
11924 | 327,3,106,0,327, | ||
11925 | 3,107,0,327,3, | ||
11926 | 108,0,327,964,11, | ||
11927 | 1,829,0,330,1, | ||
11928 | -1,3,111,0,327, | ||
11929 | 3,112,0,327,3, | ||
11930 | 113,0,327,3,114, | ||
11931 | 0,327,3,115,0, | ||
11932 | 327,3,116,0,327, | ||
11933 | 3,117,0,327,3, | ||
11934 | 118,0,327,3,119, | ||
11935 | 0,327,3,120,0, | ||
11936 | 327,3,121,0,327, | ||
11937 | 3,122,0,327,3, | ||
11938 | 48,0,327,3,49, | ||
11939 | 0,327,3,50,0, | ||
11940 | 327,3,51,0,327, | ||
11941 | 3,52,0,327,3, | ||
11942 | 53,0,327,3,54, | ||
11943 | 0,327,3,55,0, | ||
11944 | 327,3,56,0,327, | ||
11945 | 3,57,0,327,3, | ||
11946 | 65,0,327,3,66, | ||
11947 | 0,327,3,67,0, | ||
11948 | 327,3,68,0,327, | ||
11949 | 3,69,0,327,3, | ||
11950 | 70,0,327,3,71, | ||
11951 | 0,327,3,72,0, | ||
11952 | 327,3,73,0,327, | ||
11953 | 3,74,0,327,3, | ||
11954 | 75,0,327,3,76, | ||
11955 | 0,327,3,77,0, | ||
11956 | 327,3,78,0,327, | ||
11957 | 3,79,0,327,3, | ||
11958 | 80,0,327,3,81, | ||
11959 | 0,327,3,82,0, | ||
11960 | 327,3,83,0,327, | ||
11961 | 3,84,0,327,3, | ||
11962 | 85,0,327,3,86, | ||
11963 | 0,327,3,87,0, | ||
11964 | 327,3,88,0,327, | ||
11965 | 3,89,0,327,3, | ||
11966 | 90,0,327,3,95, | ||
11967 | 0,327,3,97,0, | ||
11968 | 327,3,98,0,327, | ||
11969 | 3,99,0,327,3, | ||
11970 | 100,0,327,3,101, | ||
11971 | 0,327,3,102,0, | ||
11972 | 327,3,103,0,327, | ||
11973 | 3,104,0,327,3, | ||
11974 | 105,0,327,3,106, | ||
11975 | 0,327,3,107,0, | ||
11976 | 327,3,108,0,327, | ||
11977 | 965,11,1,829,0, | ||
11978 | 330,1,-1,3,102, | ||
11979 | 0,327,3,103,0, | ||
11980 | 327,3,104,0,327, | ||
11981 | 3,105,0,327,3, | ||
11982 | 106,0,327,3,107, | ||
11983 | 0,327,3,108,0, | ||
11984 | 327,966,11,1,829, | ||
11985 | 0,330,1,-1,3, | ||
11986 | 116,0,327,3,117, | ||
11987 | 0,327,3,118,0, | ||
11988 | 327,3,119,0,327, | ||
11989 | 3,120,0,327,3, | ||
11990 | 121,0,327,3,122, | ||
11991 | 0,327,3,48,0, | ||
11992 | 327,3,49,0,327, | ||
11993 | 3,50,0,327,3, | ||
11994 | 51,0,327,3,52, | ||
11995 | 0,327,3,53,0, | ||
11996 | 327,3,54,0,327, | ||
11997 | 3,55,0,327,3, | ||
11998 | 56,0,327,3,57, | ||
11999 | 0,327,3,65,0, | ||
12000 | 327,3,66,0,327, | ||
12001 | 3,67,0,327,3, | ||
12002 | 68,0,327,3,69, | ||
12003 | 0,327,3,70,0, | ||
12004 | 327,3,71,0,327, | ||
12005 | 3,72,0,327,3, | ||
12006 | 73,0,327,3,74, | ||
12007 | 0,327,3,75,0, | ||
12008 | 327,3,76,0,327, | ||
12009 | 3,77,0,327,3, | ||
12010 | 78,0,327,3,79, | ||
12011 | 0,327,3,80,0, | ||
12012 | 327,3,81,0,327, | ||
12013 | 3,82,0,327,3, | ||
12014 | 83,0,327,3,84, | ||
12015 | 0,327,3,85,0, | ||
12016 | 327,3,86,0,327, | ||
12017 | 3,87,0,327,3, | ||
12018 | 88,0,327,3,89, | ||
12019 | 0,327,3,90,0, | ||
12020 | 327,3,95,0,327, | ||
12021 | 3,97,0,327,3, | ||
12022 | 98,0,327,3,99, | ||
12023 | 0,327,3,100,0, | ||
12024 | 327,3,101,0,327, | ||
12025 | 3,102,0,327,3, | ||
12026 | 103,0,327,3,104, | ||
12027 | 0,327,3,105,0, | ||
12028 | 327,3,106,0,327, | ||
12029 | 3,107,0,327,3, | ||
12030 | 108,0,327,967,11, | ||
12031 | 1,829,0,330,1, | ||
12032 | -1,3,97,0,327, | ||
12033 | 3,98,0,327,3, | ||
12034 | 99,0,327,3,100, | ||
12035 | 0,327,3,101,0, | ||
12036 | 327,3,102,0,327, | ||
12037 | 3,103,0,327,3, | ||
12038 | 104,0,327,3,105, | ||
12039 | 0,327,3,106,0, | ||
12040 | 327,3,107,0,327, | ||
12041 | 3,108,0,327,968, | ||
12042 | 11,1,829,0,330, | ||
12043 | 1,-1,3,112,0, | ||
12044 | 327,3,113,0,327, | ||
12045 | 3,114,0,327,3, | ||
12046 | 115,0,327,3,116, | ||
12047 | 0,327,3,117,0, | ||
12048 | 327,3,118,0,327, | ||
12049 | 3,119,0,327,3, | ||
12050 | 120,0,327,3,121, | ||
12051 | 0,327,3,122,0, | ||
12052 | 327,3,48,0,327, | ||
12053 | 3,49,0,327,3, | ||
12054 | 50,0,327,3,51, | ||
12055 | 0,327,3,52,0, | ||
12056 | 327,3,53,0,327, | ||
12057 | 3,54,0,327,3, | ||
12058 | 55,0,327,3,56, | ||
12059 | 0,327,3,57,0, | ||
12060 | 327,3,65,0,327, | ||
12061 | 3,66,0,327,3, | ||
12062 | 67,0,327,3,68, | ||
12063 | 0,327,3,69,0, | ||
12064 | 327,3,70,0,327, | ||
12065 | 3,71,0,327,3, | ||
12066 | 72,0,327,3,73, | ||
12067 | 0,327,3,74,0, | ||
12068 | 327,3,75,0,327, | ||
12069 | 3,76,0,327,3, | ||
12070 | 77,0,327,3,78, | ||
12071 | 0,327,3,79,0, | ||
12072 | 327,3,80,0,327, | ||
12073 | 3,81,0,327,3, | ||
12074 | 82,0,327,3,83, | ||
12075 | 0,327,3,84,0, | ||
12076 | 327,3,85,0,327, | ||
12077 | 3,86,0,327,3, | ||
12078 | 87,0,327,3,88, | ||
12079 | 0,327,3,89,0, | ||
12080 | 327,3,90,0,327, | ||
12081 | 3,95,0,327,3, | ||
12082 | 97,0,327,3,98, | ||
12083 | 0,327,3,99,0, | ||
12084 | 327,3,100,0,327, | ||
12085 | 3,101,0,327,3, | ||
12086 | 102,0,327,3,103, | ||
12087 | 0,327,3,104,0, | ||
12088 | 327,3,105,0,327, | ||
12089 | 3,106,0,327,3, | ||
12090 | 107,0,327,3,108, | ||
12091 | 0,327,969,11,1, | ||
12092 | 829,0,330,1,-1, | ||
12093 | 3,111,0,970,12, | ||
12094 | 1,7052,971,5,63, | ||
12095 | 3,109,0,327,3, | ||
12096 | 110,0,972,12,1, | ||
12097 | 7081,973,5,63,3, | ||
12098 | 109,0,327,3,110, | ||
12099 | 0,327,3,111,0, | ||
12100 | 327,3,112,0,327, | ||
12101 | 3,113,0,327,3, | ||
12102 | 114,0,327,3,115, | ||
12103 | 0,327,3,116,0, | ||
12104 | 327,3,117,0,327, | ||
12105 | 3,118,0,327,3, | ||
12106 | 119,0,327,3,120, | ||
12107 | 0,327,3,121,0, | ||
12108 | 327,3,122,0,327, | ||
12109 | 3,48,0,327,3, | ||
12110 | 49,0,327,3,50, | ||
12111 | 0,327,3,51,0, | ||
12112 | 327,3,52,0,327, | ||
12113 | 3,53,0,327,3, | ||
12114 | 54,0,327,3,55, | ||
12115 | 0,327,3,56,0, | ||
12116 | 327,3,57,0,327, | ||
12117 | 3,65,0,327,3, | ||
12118 | 66,0,327,3,67, | ||
12119 | 0,327,3,68,0, | ||
12120 | 327,3,69,0,327, | ||
12121 | 3,70,0,327,3, | ||
12122 | 71,0,327,3,72, | ||
12123 | 0,327,3,73,0, | ||
12124 | 327,3,74,0,327, | ||
12125 | 3,75,0,327,3, | ||
12126 | 76,0,327,3,77, | ||
12127 | 0,327,3,78,0, | ||
12128 | 327,3,79,0,327, | ||
12129 | 3,80,0,327,3, | ||
12130 | 81,0,327,3,82, | ||
12131 | 0,327,3,83,0, | ||
12132 | 327,3,84,0,327, | ||
12133 | 3,85,0,327,3, | ||
12134 | 86,0,327,3,87, | ||
12135 | 0,327,3,88,0, | ||
12136 | 327,3,89,0,327, | ||
12137 | 3,90,0,327,3, | ||
12138 | 95,0,974,12,1, | ||
12139 | 7167,975,5,63,3, | ||
12140 | 109,0,327,3,110, | ||
12141 | 0,327,3,111,0, | ||
12142 | 327,3,112,0,327, | ||
12143 | 3,113,0,327,3, | ||
12144 | 114,0,976,12,1, | ||
12145 | 7200,977,5,63,3, | ||
12146 | 109,0,327,3,110, | ||
12147 | 0,327,3,111,0, | ||
12148 | 327,3,112,0,327, | ||
12149 | 3,113,0,327,3, | ||
12150 | 114,0,327,3,115, | ||
12151 | 0,327,3,116,0, | ||
12152 | 327,3,117,0,327, | ||
12153 | 3,118,0,327,3, | ||
12154 | 119,0,327,3,120, | ||
12155 | 0,327,3,121,0, | ||
12156 | 327,3,122,0,327, | ||
12157 | 3,48,0,327,3, | ||
12158 | 49,0,327,3,50, | ||
12159 | 0,327,3,51,0, | ||
12160 | 327,3,52,0,327, | ||
12161 | 3,53,0,327,3, | ||
12162 | 54,0,327,3,55, | ||
12163 | 0,327,3,56,0, | ||
12164 | 327,3,57,0,327, | ||
12165 | 3,65,0,327,3, | ||
12166 | 66,0,327,3,67, | ||
12167 | 0,327,3,68,0, | ||
12168 | 327,3,69,0,327, | ||
12169 | 3,70,0,327,3, | ||
12170 | 71,0,327,3,72, | ||
12171 | 0,327,3,73,0, | ||
12172 | 327,3,74,0,327, | ||
12173 | 3,75,0,327,3, | ||
12174 | 76,0,327,3,77, | ||
12175 | 0,327,3,78,0, | ||
12176 | 327,3,79,0,327, | ||
12177 | 3,80,0,327,3, | ||
12178 | 81,0,327,3,82, | ||
12179 | 0,327,3,83,0, | ||
12180 | 327,3,84,0,327, | ||
12181 | 3,85,0,327,3, | ||
12182 | 86,0,327,3,87, | ||
12183 | 0,327,3,88,0, | ||
12184 | 327,3,89,0,327, | ||
12185 | 3,90,0,327,3, | ||
12186 | 95,0,327,3,97, | ||
12187 | 0,327,3,98,0, | ||
12188 | 327,3,99,0,327, | ||
12189 | 3,100,0,327,3, | ||
12190 | 101,0,978,12,1, | ||
12191 | 7247,979,5,63,3, | ||
12192 | 109,0,327,3,110, | ||
12193 | 0,327,3,111,0, | ||
12194 | 327,3,112,0,327, | ||
12195 | 3,113,0,327,3, | ||
12196 | 114,0,327,3,115, | ||
12197 | 0,327,3,116,0, | ||
12198 | 327,3,117,0,327, | ||
12199 | 3,118,0,327,3, | ||
12200 | 119,0,327,3,120, | ||
12201 | 0,327,3,121,0, | ||
12202 | 327,3,122,0,980, | ||
12203 | 12,1,7288,981,5, | ||
12204 | 63,3,109,0,327, | ||
12205 | 3,110,0,327,3, | ||
12206 | 111,0,327,3,112, | ||
12207 | 0,327,3,113,0, | ||
12208 | 327,3,114,0,327, | ||
12209 | 3,115,0,327,3, | ||
12210 | 116,0,327,3,117, | ||
12211 | 0,327,3,118,0, | ||
12212 | 327,3,119,0,327, | ||
12213 | 3,120,0,327,3, | ||
12214 | 121,0,327,3,122, | ||
12215 | 0,327,3,48,0, | ||
12216 | 327,3,49,0,327, | ||
12217 | 3,50,0,327,3, | ||
12218 | 51,0,327,3,52, | ||
12219 | 0,327,3,53,0, | ||
12220 | 327,3,54,0,327, | ||
12221 | 3,55,0,327,3, | ||
12222 | 56,0,327,3,57, | ||
12223 | 0,327,3,65,0, | ||
12224 | 327,3,66,0,327, | ||
12225 | 3,67,0,327,3, | ||
12226 | 68,0,327,3,69, | ||
12227 | 0,327,3,70,0, | ||
12228 | 327,3,71,0,327, | ||
12229 | 3,72,0,327,3, | ||
12230 | 73,0,327,3,74, | ||
12231 | 0,327,3,75,0, | ||
12232 | 327,3,76,0,327, | ||
12233 | 3,77,0,327,3, | ||
12234 | 78,0,327,3,79, | ||
12235 | 0,327,3,80,0, | ||
12236 | 327,3,81,0,327, | ||
12237 | 3,82,0,327,3, | ||
12238 | 83,0,327,3,84, | ||
12239 | 0,327,3,85,0, | ||
12240 | 327,3,86,0,327, | ||
12241 | 3,87,0,327,3, | ||
12242 | 88,0,327,3,89, | ||
12243 | 0,327,3,90,0, | ||
12244 | 327,3,95,0,327, | ||
12245 | 3,97,0,327,3, | ||
12246 | 98,0,327,3,99, | ||
12247 | 0,327,3,100,0, | ||
12248 | 327,3,101,0,327, | ||
12249 | 3,102,0,327,3, | ||
12250 | 103,0,327,3,104, | ||
12251 | 0,327,3,105,0, | ||
12252 | 327,3,106,0,327, | ||
12253 | 3,107,0,327,3, | ||
12254 | 108,0,327,982,11, | ||
12255 | 1,695,0,983,4, | ||
12256 | 24,79,0,78,0, | ||
12257 | 95,0,82,0,69, | ||
12258 | 0,90,0,95,0, | ||
12259 | 69,0,86,0,69, | ||
12260 | 0,78,0,84,0, | ||
12261 | 1,-1,3,48,0, | ||
12262 | 327,3,49,0,327, | ||
12263 | 3,50,0,327,3, | ||
12264 | 51,0,327,3,52, | ||
12265 | 0,327,3,53,0, | ||
12266 | 327,3,54,0,327, | ||
12267 | 3,55,0,327,3, | ||
12268 | 56,0,327,3,57, | ||
12269 | 0,327,3,65,0, | ||
12270 | 327,3,66,0,327, | ||
12271 | 3,67,0,327,3, | ||
12272 | 68,0,327,3,69, | ||
12273 | 0,327,3,70,0, | ||
12274 | 327,3,71,0,327, | ||
12275 | 3,72,0,327,3, | ||
12276 | 73,0,327,3,74, | ||
12277 | 0,327,3,75,0, | ||
12278 | 327,3,76,0,327, | ||
12279 | 3,77,0,327,3, | ||
12280 | 78,0,327,3,79, | ||
12281 | 0,327,3,80,0, | ||
12282 | 327,3,81,0,327, | ||
12283 | 3,82,0,327,3, | ||
12284 | 83,0,327,3,84, | ||
12285 | 0,327,3,85,0, | ||
12286 | 327,3,86,0,327, | ||
12287 | 3,87,0,327,3, | ||
12288 | 88,0,327,3,89, | ||
12289 | 0,327,3,90,0, | ||
12290 | 327,3,95,0,327, | ||
12291 | 3,97,0,327,3, | ||
12292 | 98,0,327,3,99, | ||
12293 | 0,327,3,100,0, | ||
12294 | 327,3,101,0,327, | ||
12295 | 3,102,0,327,3, | ||
12296 | 103,0,327,3,104, | ||
12297 | 0,327,3,105,0, | ||
12298 | 327,3,106,0,327, | ||
12299 | 3,107,0,327,3, | ||
12300 | 108,0,327,984,11, | ||
12301 | 1,829,0,330,1, | ||
12302 | -1,3,102,0,327, | ||
12303 | 3,103,0,327,3, | ||
12304 | 104,0,327,3,105, | ||
12305 | 0,327,3,106,0, | ||
12306 | 327,3,107,0,327, | ||
12307 | 3,108,0,327,985, | ||
12308 | 11,1,829,0,330, | ||
12309 | 1,-1,3,115,0, | ||
12310 | 327,3,116,0,327, | ||
12311 | 3,117,0,327,3, | ||
12312 | 118,0,327,3,119, | ||
12313 | 0,327,3,120,0, | ||
12314 | 327,3,121,0,327, | ||
12315 | 3,122,0,327,3, | ||
12316 | 48,0,327,3,49, | ||
12317 | 0,327,3,50,0, | ||
12318 | 327,3,51,0,327, | ||
12319 | 3,52,0,327,3, | ||
12320 | 53,0,327,3,54, | ||
12321 | 0,327,3,55,0, | ||
12322 | 327,3,56,0,327, | ||
12323 | 3,57,0,327,3, | ||
12324 | 65,0,327,3,66, | ||
12325 | 0,327,3,67,0, | ||
12326 | 327,3,68,0,327, | ||
12327 | 3,69,0,327,3, | ||
12328 | 70,0,327,3,71, | ||
12329 | 0,327,3,72,0, | ||
12330 | 327,3,73,0,327, | ||
12331 | 3,74,0,327,3, | ||
12332 | 75,0,327,3,76, | ||
12333 | 0,327,3,77,0, | ||
12334 | 327,3,78,0,327, | ||
12335 | 3,79,0,327,3, | ||
12336 | 80,0,327,3,81, | ||
12337 | 0,327,3,82,0, | ||
12338 | 327,3,83,0,327, | ||
12339 | 3,84,0,327,3, | ||
12340 | 85,0,327,3,86, | ||
12341 | 0,327,3,87,0, | ||
12342 | 327,3,88,0,327, | ||
12343 | 3,89,0,327,3, | ||
12344 | 90,0,327,3,95, | ||
12345 | 0,327,3,97,0, | ||
12346 | 327,3,98,0,327, | ||
12347 | 3,99,0,327,3, | ||
12348 | 100,0,327,3,101, | ||
12349 | 0,327,3,102,0, | ||
12350 | 327,3,103,0,327, | ||
12351 | 3,104,0,327,3, | ||
12352 | 105,0,327,3,106, | ||
12353 | 0,327,3,107,0, | ||
12354 | 327,3,108,0,327, | ||
12355 | 986,11,1,829,0, | ||
12356 | 330,1,-1,3,97, | ||
12357 | 0,327,3,98,0, | ||
12358 | 327,3,99,0,327, | ||
12359 | 3,100,0,327,3, | ||
12360 | 101,0,327,3,102, | ||
12361 | 0,327,3,103,0, | ||
12362 | 327,3,104,0,327, | ||
12363 | 3,105,0,327,3, | ||
12364 | 106,0,327,3,107, | ||
12365 | 0,327,3,108,0, | ||
12366 | 327,987,11,1,829, | ||
12367 | 0,330,1,-1,3, | ||
12368 | 111,0,327,3,112, | ||
12369 | 0,327,3,113,0, | ||
12370 | 327,3,114,0,327, | ||
12371 | 3,115,0,327,3, | ||
12372 | 116,0,327,3,117, | ||
12373 | 0,327,3,118,0, | ||
12374 | 327,3,119,0,327, | ||
12375 | 3,120,0,327,3, | ||
12376 | 121,0,327,3,122, | ||
12377 | 0,327,3,48,0, | ||
12378 | 327,3,49,0,327, | ||
12379 | 3,50,0,327,3, | ||
12380 | 51,0,327,3,52, | ||
12381 | 0,327,3,53,0, | ||
12382 | 327,3,54,0,327, | ||
12383 | 3,55,0,327,3, | ||
12384 | 56,0,327,3,57, | ||
12385 | 0,327,3,65,0, | ||
12386 | 327,3,66,0,327, | ||
12387 | 3,67,0,327,3, | ||
12388 | 68,0,327,3,69, | ||
12389 | 0,327,3,70,0, | ||
12390 | 327,3,71,0,327, | ||
12391 | 3,72,0,327,3, | ||
12392 | 73,0,327,3,74, | ||
12393 | 0,327,3,75,0, | ||
12394 | 327,3,76,0,327, | ||
12395 | 3,77,0,327,3, | ||
12396 | 78,0,327,3,79, | ||
12397 | 0,327,3,80,0, | ||
12398 | 327,3,81,0,327, | ||
12399 | 3,82,0,327,3, | ||
12400 | 83,0,327,3,84, | ||
12401 | 0,327,3,85,0, | ||
12402 | 327,3,86,0,327, | ||
12403 | 3,87,0,327,3, | ||
12404 | 88,0,327,3,89, | ||
12405 | 0,327,3,90,0, | ||
12406 | 327,3,95,0,327, | ||
12407 | 3,97,0,327,3, | ||
12408 | 98,0,988,12,1, | ||
12409 | 7696,989,5,63,3, | ||
12410 | 109,0,327,3,110, | ||
12411 | 0,327,3,111,0, | ||
12412 | 327,3,112,0,327, | ||
12413 | 3,113,0,327,3, | ||
12414 | 114,0,327,3,115, | ||
12415 | 0,327,3,116,0, | ||
12416 | 327,3,117,0,327, | ||
12417 | 3,118,0,327,3, | ||
12418 | 119,0,327,3,120, | ||
12419 | 0,327,3,121,0, | ||
12420 | 327,3,122,0,327, | ||
12421 | 3,48,0,327,3, | ||
12422 | 49,0,327,3,50, | ||
12423 | 0,327,3,51,0, | ||
12424 | 327,3,52,0,327, | ||
12425 | 3,53,0,327,3, | ||
12426 | 54,0,327,3,55, | ||
12427 | 0,327,3,56,0, | ||
12428 | 327,3,57,0,327, | ||
12429 | 3,65,0,327,3, | ||
12430 | 66,0,327,3,67, | ||
12431 | 0,327,3,68,0, | ||
12432 | 327,3,69,0,327, | ||
12433 | 3,70,0,327,3, | ||
12434 | 71,0,327,3,72, | ||
12435 | 0,327,3,73,0, | ||
12436 | 327,3,74,0,327, | ||
12437 | 3,75,0,327,3, | ||
12438 | 76,0,327,3,77, | ||
12439 | 0,327,3,78,0, | ||
12440 | 327,3,79,0,327, | ||
12441 | 3,80,0,327,3, | ||
12442 | 81,0,327,3,82, | ||
12443 | 0,327,3,83,0, | ||
12444 | 327,3,84,0,327, | ||
12445 | 3,85,0,327,3, | ||
12446 | 86,0,327,3,87, | ||
12447 | 0,327,3,88,0, | ||
12448 | 327,3,89,0,327, | ||
12449 | 3,90,0,327,3, | ||
12450 | 95,0,327,3,97, | ||
12451 | 0,327,3,98,0, | ||
12452 | 327,3,99,0,327, | ||
12453 | 3,100,0,327,3, | ||
12454 | 101,0,327,3,102, | ||
12455 | 0,327,3,103,0, | ||
12456 | 327,3,104,0,327, | ||
12457 | 3,105,0,327,3, | ||
12458 | 106,0,990,12,1, | ||
12459 | 7748,991,5,63,3, | ||
12460 | 109,0,327,3,110, | ||
12461 | 0,327,3,111,0, | ||
12462 | 327,3,112,0,327, | ||
12463 | 3,113,0,327,3, | ||
12464 | 114,0,327,3,115, | ||
12465 | 0,327,3,116,0, | ||
12466 | 327,3,117,0,327, | ||
12467 | 3,118,0,327,3, | ||
12468 | 119,0,327,3,120, | ||
12469 | 0,327,3,121,0, | ||
12470 | 327,3,122,0,327, | ||
12471 | 3,48,0,327,3, | ||
12472 | 49,0,327,3,50, | ||
12473 | 0,327,3,51,0, | ||
12474 | 327,3,52,0,327, | ||
12475 | 3,53,0,327,3, | ||
12476 | 54,0,327,3,55, | ||
12477 | 0,327,3,56,0, | ||
12478 | 327,3,57,0,327, | ||
12479 | 3,65,0,327,3, | ||
12480 | 66,0,327,3,67, | ||
12481 | 0,327,3,68,0, | ||
12482 | 327,3,69,0,327, | ||
12483 | 3,70,0,327,3, | ||
12484 | 71,0,327,3,72, | ||
12485 | 0,327,3,73,0, | ||
12486 | 327,3,74,0,327, | ||
12487 | 3,75,0,327,3, | ||
12488 | 76,0,327,3,77, | ||
12489 | 0,327,3,78,0, | ||
12490 | 327,3,79,0,327, | ||
12491 | 3,80,0,327,3, | ||
12492 | 81,0,327,3,82, | ||
12493 | 0,327,3,83,0, | ||
12494 | 327,3,84,0,327, | ||
12495 | 3,85,0,327,3, | ||
12496 | 86,0,327,3,87, | ||
12497 | 0,327,3,88,0, | ||
12498 | 327,3,89,0,327, | ||
12499 | 3,90,0,327,3, | ||
12500 | 95,0,327,3,97, | ||
12501 | 0,327,3,98,0, | ||
12502 | 327,3,99,0,327, | ||
12503 | 3,100,0,327,3, | ||
12504 | 101,0,992,12,1, | ||
12505 | 7795,993,5,63,3, | ||
12506 | 109,0,327,3,110, | ||
12507 | 0,327,3,111,0, | ||
12508 | 327,3,112,0,327, | ||
12509 | 3,113,0,327,3, | ||
12510 | 114,0,327,3,115, | ||
12511 | 0,327,3,116,0, | ||
12512 | 327,3,117,0,327, | ||
12513 | 3,118,0,327,3, | ||
12514 | 119,0,327,3,120, | ||
12515 | 0,327,3,121,0, | ||
12516 | 327,3,122,0,327, | ||
12517 | 3,48,0,327,3, | ||
12518 | 49,0,327,3,50, | ||
12519 | 0,327,3,51,0, | ||
12520 | 327,3,52,0,327, | ||
12521 | 3,53,0,327,3, | ||
12522 | 54,0,327,3,55, | ||
12523 | 0,327,3,56,0, | ||
12524 | 327,3,57,0,327, | ||
12525 | 3,65,0,327,3, | ||
12526 | 66,0,327,3,67, | ||
12527 | 0,327,3,68,0, | ||
12528 | 327,3,69,0,327, | ||
12529 | 3,70,0,327,3, | ||
12530 | 71,0,327,3,72, | ||
12531 | 0,327,3,73,0, | ||
12532 | 327,3,74,0,327, | ||
12533 | 3,75,0,327,3, | ||
12534 | 76,0,327,3,77, | ||
12535 | 0,327,3,78,0, | ||
12536 | 327,3,79,0,327, | ||
12537 | 3,80,0,327,3, | ||
12538 | 81,0,327,3,82, | ||
12539 | 0,327,3,83,0, | ||
12540 | 327,3,84,0,327, | ||
12541 | 3,85,0,327,3, | ||
12542 | 86,0,327,3,87, | ||
12543 | 0,327,3,88,0, | ||
12544 | 327,3,89,0,327, | ||
12545 | 3,90,0,327,3, | ||
12546 | 95,0,327,3,97, | ||
12547 | 0,327,3,98,0, | ||
12548 | 327,3,99,0,994, | ||
12549 | 12,1,7840,995,5, | ||
12550 | 63,3,109,0,327, | ||
12551 | 3,110,0,327,3, | ||
12552 | 111,0,327,3,112, | ||
12553 | 0,327,3,113,0, | ||
12554 | 327,3,114,0,327, | ||
12555 | 3,115,0,327,3, | ||
12556 | 116,0,996,12,1, | ||
12557 | 7875,997,5,63,3, | ||
12558 | 109,0,327,3,110, | ||
12559 | 0,327,3,111,0, | ||
12560 | 327,3,112,0,327, | ||
12561 | 3,113,0,327,3, | ||
12562 | 114,0,327,3,115, | ||
12563 | 0,327,3,116,0, | ||
12564 | 327,3,117,0,327, | ||
12565 | 3,118,0,327,3, | ||
12566 | 119,0,327,3,120, | ||
12567 | 0,327,3,121,0, | ||
12568 | 327,3,122,0,327, | ||
12569 | 3,48,0,327,3, | ||
12570 | 49,0,327,3,50, | ||
12571 | 0,327,3,51,0, | ||
12572 | 327,3,52,0,327, | ||
12573 | 3,53,0,327,3, | ||
12574 | 54,0,327,3,55, | ||
12575 | 0,327,3,56,0, | ||
12576 | 327,3,57,0,327, | ||
12577 | 3,65,0,327,3, | ||
12578 | 66,0,327,3,67, | ||
12579 | 0,327,3,68,0, | ||
12580 | 327,3,69,0,327, | ||
12581 | 3,70,0,327,3, | ||
12582 | 71,0,327,3,72, | ||
12583 | 0,327,3,73,0, | ||
12584 | 327,3,74,0,327, | ||
12585 | 3,75,0,327,3, | ||
12586 | 76,0,327,3,77, | ||
12587 | 0,327,3,78,0, | ||
12588 | 327,3,79,0,327, | ||
12589 | 3,80,0,327,3, | ||
12590 | 81,0,327,3,82, | ||
12591 | 0,327,3,83,0, | ||
12592 | 327,3,84,0,327, | ||
12593 | 3,85,0,327,3, | ||
12594 | 86,0,327,3,87, | ||
12595 | 0,327,3,88,0, | ||
12596 | 327,3,89,0,327, | ||
12597 | 3,90,0,327,3, | ||
12598 | 95,0,998,12,1, | ||
12599 | 7961,999,5,63,3, | ||
12600 | 109,0,327,3,110, | ||
12601 | 0,327,3,111,0, | ||
12602 | 327,3,112,0,327, | ||
12603 | 3,113,0,327,3, | ||
12604 | 114,0,1000,12,1, | ||
12605 | 7994,1001,5,63,3, | ||
12606 | 109,0,327,3,110, | ||
12607 | 0,327,3,111,0, | ||
12608 | 327,3,112,0,327, | ||
12609 | 3,113,0,327,3, | ||
12610 | 114,0,327,3,115, | ||
12611 | 0,327,3,116,0, | ||
12612 | 327,3,117,0,327, | ||
12613 | 3,118,0,327,3, | ||
12614 | 119,0,327,3,120, | ||
12615 | 0,327,3,121,0, | ||
12616 | 327,3,122,0,327, | ||
12617 | 3,48,0,327,3, | ||
12618 | 49,0,327,3,50, | ||
12619 | 0,327,3,51,0, | ||
12620 | 327,3,52,0,327, | ||
12621 | 3,53,0,327,3, | ||
12622 | 54,0,327,3,55, | ||
12623 | 0,327,3,56,0, | ||
12624 | 327,3,57,0,327, | ||
12625 | 3,65,0,327,3, | ||
12626 | 66,0,327,3,67, | ||
12627 | 0,327,3,68,0, | ||
12628 | 327,3,69,0,327, | ||
12629 | 3,70,0,327,3, | ||
12630 | 71,0,327,3,72, | ||
12631 | 0,327,3,73,0, | ||
12632 | 327,3,74,0,327, | ||
12633 | 3,75,0,327,3, | ||
12634 | 76,0,327,3,77, | ||
12635 | 0,327,3,78,0, | ||
12636 | 327,3,79,0,327, | ||
12637 | 3,80,0,327,3, | ||
12638 | 81,0,327,3,82, | ||
12639 | 0,327,3,83,0, | ||
12640 | 327,3,84,0,327, | ||
12641 | 3,85,0,327,3, | ||
12642 | 86,0,327,3,87, | ||
12643 | 0,327,3,88,0, | ||
12644 | 327,3,89,0,327, | ||
12645 | 3,90,0,327,3, | ||
12646 | 95,0,327,3,97, | ||
12647 | 0,327,3,98,0, | ||
12648 | 327,3,99,0,327, | ||
12649 | 3,100,0,327,3, | ||
12650 | 101,0,1002,12,1, | ||
12651 | 8041,1003,5,63,3, | ||
12652 | 109,0,327,3,110, | ||
12653 | 0,327,3,111,0, | ||
12654 | 327,3,112,0,327, | ||
12655 | 3,113,0,327,3, | ||
12656 | 114,0,327,3,115, | ||
12657 | 0,327,3,116,0, | ||
12658 | 327,3,117,0,327, | ||
12659 | 3,118,0,327,3, | ||
12660 | 119,0,327,3,120, | ||
12661 | 0,327,3,121,0, | ||
12662 | 327,3,122,0,1004, | ||
12663 | 12,1,8082,1005,5, | ||
12664 | 63,3,109,0,327, | ||
12665 | 3,110,0,327,3, | ||
12666 | 111,0,327,3,112, | ||
12667 | 0,327,3,113,0, | ||
12668 | 327,3,114,0,327, | ||
12669 | 3,115,0,327,3, | ||
12670 | 116,0,327,3,117, | ||
12671 | 0,327,3,118,0, | ||
12672 | 327,3,119,0,327, | ||
12673 | 3,120,0,327,3, | ||
12674 | 121,0,327,3,122, | ||
12675 | 0,327,3,48,0, | ||
12676 | 327,3,49,0,327, | ||
12677 | 3,50,0,327,3, | ||
12678 | 51,0,327,3,52, | ||
12679 | 0,327,3,53,0, | ||
12680 | 327,3,54,0,327, | ||
12681 | 3,55,0,327,3, | ||
12682 | 56,0,327,3,57, | ||
12683 | 0,327,3,65,0, | ||
12684 | 327,3,66,0,327, | ||
12685 | 3,67,0,327,3, | ||
12686 | 68,0,327,3,69, | ||
12687 | 0,327,3,70,0, | ||
12688 | 327,3,71,0,327, | ||
12689 | 3,72,0,327,3, | ||
12690 | 73,0,327,3,74, | ||
12691 | 0,327,3,75,0, | ||
12692 | 327,3,76,0,327, | ||
12693 | 3,77,0,327,3, | ||
12694 | 78,0,327,3,79, | ||
12695 | 0,327,3,80,0, | ||
12696 | 327,3,81,0,327, | ||
12697 | 3,82,0,327,3, | ||
12698 | 83,0,327,3,84, | ||
12699 | 0,327,3,85,0, | ||
12700 | 327,3,86,0,327, | ||
12701 | 3,87,0,327,3, | ||
12702 | 88,0,327,3,89, | ||
12703 | 0,327,3,90,0, | ||
12704 | 327,3,95,0,327, | ||
12705 | 3,97,0,327,3, | ||
12706 | 98,0,327,3,99, | ||
12707 | 0,327,3,100,0, | ||
12708 | 327,3,101,0,327, | ||
12709 | 3,102,0,327,3, | ||
12710 | 103,0,327,3,104, | ||
12711 | 0,327,3,105,0, | ||
12712 | 327,3,106,0,327, | ||
12713 | 3,107,0,327,3, | ||
12714 | 108,0,327,1006,11, | ||
12715 | 1,681,0,1007,4, | ||
12716 | 32,79,0,66,0, | ||
12717 | 74,0,69,0,67, | ||
12718 | 0,84,0,95,0, | ||
12719 | 82,0,69,0,90, | ||
12720 | 0,95,0,69,0, | ||
12721 | 86,0,69,0,78, | ||
12722 | 0,84,0,1,-1, | ||
12723 | 3,48,0,327,3, | ||
12724 | 49,0,327,3,50, | ||
12725 | 0,327,3,51,0, | ||
12726 | 327,3,52,0,327, | ||
12727 | 3,53,0,327,3, | ||
12728 | 54,0,327,3,55, | ||
12729 | 0,327,3,56,0, | ||
12730 | 327,3,57,0,327, | ||
12731 | 3,65,0,327,3, | ||
12732 | 66,0,327,3,67, | ||
12733 | 0,327,3,68,0, | ||
12734 | 327,3,69,0,327, | ||
12735 | 3,70,0,327,3, | ||
12736 | 71,0,327,3,72, | ||
12737 | 0,327,3,73,0, | ||
12738 | 327,3,74,0,327, | ||
12739 | 3,75,0,327,3, | ||
12740 | 76,0,327,3,77, | ||
12741 | 0,327,3,78,0, | ||
12742 | 327,3,79,0,327, | ||
12743 | 3,80,0,327,3, | ||
12744 | 81,0,327,3,82, | ||
12745 | 0,327,3,83,0, | ||
12746 | 327,3,84,0,327, | ||
12747 | 3,85,0,327,3, | ||
12748 | 86,0,327,3,87, | ||
12749 | 0,327,3,88,0, | ||
12750 | 327,3,89,0,327, | ||
12751 | 3,90,0,327,3, | ||
12752 | 95,0,327,3,97, | ||
12753 | 0,327,3,98,0, | ||
12754 | 327,3,99,0,327, | ||
12755 | 3,100,0,327,3, | ||
12756 | 101,0,327,3,102, | ||
12757 | 0,327,3,103,0, | ||
12758 | 327,3,104,0,327, | ||
12759 | 3,105,0,327,3, | ||
12760 | 106,0,327,3,107, | ||
12761 | 0,327,3,108,0, | ||
12762 | 327,1008,11,1,829, | ||
12763 | 0,330,1,-1,3, | ||
12764 | 102,0,327,3,103, | ||
12765 | 0,327,3,104,0, | ||
12766 | 327,3,105,0,327, | ||
12767 | 3,106,0,327,3, | ||
12768 | 107,0,327,3,108, | ||
12769 | 0,327,1009,11,1, | ||
12770 | 829,0,330,1,-1, | ||
12771 | 3,115,0,327,3, | ||
12772 | 116,0,327,3,117, | ||
12773 | 0,327,3,118,0, | ||
12774 | 327,3,119,0,327, | ||
12775 | 3,120,0,327,3, | ||
12776 | 121,0,327,3,122, | ||
12777 | 0,327,3,48,0, | ||
12778 | 327,3,49,0,327, | ||
12779 | 3,50,0,327,3, | ||
12780 | 51,0,327,3,52, | ||
12781 | 0,327,3,53,0, | ||
12782 | 327,3,54,0,327, | ||
12783 | 3,55,0,327,3, | ||
12784 | 56,0,327,3,57, | ||
12785 | 0,327,3,65,0, | ||
12786 | 327,3,66,0,327, | ||
12787 | 3,67,0,327,3, | ||
12788 | 68,0,327,3,69, | ||
12789 | 0,327,3,70,0, | ||
12790 | 327,3,71,0,327, | ||
12791 | 3,72,0,327,3, | ||
12792 | 73,0,327,3,74, | ||
12793 | 0,327,3,75,0, | ||
12794 | 327,3,76,0,327, | ||
12795 | 3,77,0,327,3, | ||
12796 | 78,0,327,3,79, | ||
12797 | 0,327,3,80,0, | ||
12798 | 327,3,81,0,327, | ||
12799 | 3,82,0,327,3, | ||
12800 | 83,0,327,3,84, | ||
12801 | 0,327,3,85,0, | ||
12802 | 327,3,86,0,327, | ||
12803 | 3,87,0,327,3, | ||
12804 | 88,0,327,3,89, | ||
12805 | 0,327,3,90,0, | ||
12806 | 327,3,95,0,327, | ||
12807 | 3,97,0,327,3, | ||
12808 | 98,0,327,3,99, | ||
12809 | 0,327,3,100,0, | ||
12810 | 327,3,101,0,327, | ||
12811 | 3,102,0,327,3, | ||
12812 | 103,0,327,3,104, | ||
12813 | 0,327,3,105,0, | ||
12814 | 327,3,106,0,327, | ||
12815 | 3,107,0,327,3, | ||
12816 | 108,0,327,1010,11, | ||
12817 | 1,829,0,330,1, | ||
12818 | -1,3,97,0,327, | ||
12819 | 3,98,0,327,3, | ||
12820 | 99,0,327,3,100, | ||
12821 | 0,327,3,101,0, | ||
12822 | 327,3,102,0,327, | ||
12823 | 3,103,0,327,3, | ||
12824 | 104,0,327,3,105, | ||
12825 | 0,327,3,106,0, | ||
12826 | 327,3,107,0,327, | ||
12827 | 3,108,0,327,1011, | ||
12828 | 11,1,829,0,330, | ||
12829 | 1,-1,3,117,0, | ||
12830 | 327,3,118,0,327, | ||
12831 | 3,119,0,327,3, | ||
12832 | 120,0,327,3,121, | ||
12833 | 0,327,3,122,0, | ||
12834 | 327,3,48,0,327, | ||
12835 | 3,49,0,327,3, | ||
12836 | 50,0,327,3,51, | ||
12837 | 0,327,3,52,0, | ||
12838 | 327,3,53,0,327, | ||
12839 | 3,54,0,327,3, | ||
12840 | 55,0,327,3,56, | ||
12841 | 0,327,3,57,0, | ||
12842 | 327,3,65,0,327, | ||
12843 | 3,66,0,327,3, | ||
12844 | 67,0,327,3,68, | ||
12845 | 0,327,3,69,0, | ||
12846 | 327,3,70,0,327, | ||
12847 | 3,71,0,327,3, | ||
12848 | 72,0,327,3,73, | ||
12849 | 0,327,3,74,0, | ||
12850 | 327,3,75,0,327, | ||
12851 | 3,76,0,327,3, | ||
12852 | 77,0,327,3,78, | ||
12853 | 0,327,3,79,0, | ||
12854 | 327,3,80,0,327, | ||
12855 | 3,81,0,327,3, | ||
12856 | 82,0,327,3,83, | ||
12857 | 0,327,3,84,0, | ||
12858 | 327,3,85,0,327, | ||
12859 | 3,86,0,327,3, | ||
12860 | 87,0,327,3,88, | ||
12861 | 0,327,3,89,0, | ||
12862 | 327,3,90,0,327, | ||
12863 | 3,95,0,327,3, | ||
12864 | 97,0,327,3,98, | ||
12865 | 0,327,3,99,0, | ||
12866 | 327,3,100,0,327, | ||
12867 | 3,101,0,327,3, | ||
12868 | 102,0,327,3,103, | ||
12869 | 0,327,3,104,0, | ||
12870 | 327,3,105,0,327, | ||
12871 | 3,106,0,327,3, | ||
12872 | 107,0,327,3,108, | ||
12873 | 0,327,1012,11,1, | ||
12874 | 829,0,330,1,-1, | ||
12875 | 3,100,0,327,3, | ||
12876 | 101,0,327,3,102, | ||
12877 | 0,327,3,103,0, | ||
12878 | 327,3,104,0,327, | ||
12879 | 3,105,0,327,3, | ||
12880 | 106,0,327,3,107, | ||
12881 | 0,327,3,108,0, | ||
12882 | 327,1013,11,1,829, | ||
12883 | 0,330,1,-1,3, | ||
12884 | 102,0,327,3,103, | ||
12885 | 0,327,3,104,0, | ||
12886 | 327,3,105,0,327, | ||
12887 | 3,106,0,327,3, | ||
12888 | 107,0,327,3,108, | ||
12889 | 0,327,1014,11,1, | ||
12890 | 829,0,330,1,-1, | ||
12891 | 3,107,0,327,3, | ||
12892 | 108,0,327,1015,11, | ||
12893 | 1,829,0,330,1, | ||
12894 | -1,3,99,0,327, | ||
12895 | 3,100,0,327,3, | ||
12896 | 101,0,327,3,102, | ||
12897 | 0,327,3,103,0, | ||
12898 | 327,3,104,0,327, | ||
12899 | 3,105,0,327,3, | ||
12900 | 106,0,327,3,107, | ||
12901 | 0,327,3,108,0, | ||
12902 | 327,1016,11,1,829, | ||
12903 | 0,330,1,-1,3, | ||
12904 | 112,0,325,3,113, | ||
12905 | 0,325,3,114,0, | ||
12906 | 1017,12,1,8855,1018, | ||
12907 | 5,63,3,109,0, | ||
12908 | 327,3,110,0,327, | ||
12909 | 3,111,0,1019,12, | ||
12910 | 1,8885,1020,5,63, | ||
12911 | 3,109,0,327,3, | ||
12912 | 110,0,327,3,111, | ||
12913 | 0,327,3,112,0, | ||
12914 | 327,3,113,0,327, | ||
12915 | 3,114,0,327,3, | ||
12916 | 115,0,327,3,116, | ||
12917 | 0,1021,12,1,8920, | ||
12918 | 1022,5,63,3,109, | ||
12919 | 0,327,3,110,0, | ||
12920 | 327,3,111,0,327, | ||
12921 | 3,112,0,327,3, | ||
12922 | 113,0,327,3,114, | ||
12923 | 0,327,3,115,0, | ||
12924 | 327,3,116,0,327, | ||
12925 | 3,117,0,327,3, | ||
12926 | 118,0,327,3,119, | ||
12927 | 0,327,3,120,0, | ||
12928 | 327,3,121,0,327, | ||
12929 | 3,122,0,327,3, | ||
12930 | 48,0,327,3,49, | ||
12931 | 0,327,3,50,0, | ||
12932 | 327,3,51,0,327, | ||
12933 | 3,52,0,327,3, | ||
12934 | 53,0,327,3,54, | ||
12935 | 0,327,3,55,0, | ||
12936 | 327,3,56,0,327, | ||
12937 | 3,57,0,327,3, | ||
12938 | 65,0,327,3,66, | ||
12939 | 0,327,3,67,0, | ||
12940 | 327,3,68,0,327, | ||
12941 | 3,69,0,327,3, | ||
12942 | 70,0,327,3,71, | ||
12943 | 0,327,3,72,0, | ||
12944 | 327,3,73,0,327, | ||
12945 | 3,74,0,327,3, | ||
12946 | 75,0,327,3,76, | ||
12947 | 0,327,3,77,0, | ||
12948 | 327,3,78,0,327, | ||
12949 | 3,79,0,327,3, | ||
12950 | 80,0,327,3,81, | ||
12951 | 0,327,3,82,0, | ||
12952 | 327,3,83,0,327, | ||
12953 | 3,84,0,327,3, | ||
12954 | 85,0,327,3,86, | ||
12955 | 0,327,3,87,0, | ||
12956 | 327,3,88,0,327, | ||
12957 | 3,89,0,327,3, | ||
12958 | 90,0,327,3,95, | ||
12959 | 0,327,3,97,0, | ||
12960 | 1023,12,1,8963,1024, | ||
12961 | 5,63,3,109,0, | ||
12962 | 327,3,110,0,327, | ||
12963 | 3,111,0,327,3, | ||
12964 | 112,0,327,3,113, | ||
12965 | 0,327,3,114,0, | ||
12966 | 327,3,115,0,327, | ||
12967 | 3,116,0,1025,12, | ||
12968 | 1,8998,1026,5,63, | ||
12969 | 3,109,0,327,3, | ||
12970 | 110,0,327,3,111, | ||
12971 | 0,327,3,112,0, | ||
12972 | 327,3,113,0,327, | ||
12973 | 3,114,0,327,3, | ||
12974 | 115,0,327,3,116, | ||
12975 | 0,327,3,117,0, | ||
12976 | 327,3,118,0,327, | ||
12977 | 3,119,0,327,3, | ||
12978 | 120,0,327,3,121, | ||
12979 | 0,327,3,122,0, | ||
12980 | 327,3,48,0,327, | ||
12981 | 3,49,0,327,3, | ||
12982 | 50,0,327,3,51, | ||
12983 | 0,327,3,52,0, | ||
12984 | 327,3,53,0,327, | ||
12985 | 3,54,0,327,3, | ||
12986 | 55,0,327,3,56, | ||
12987 | 0,327,3,57,0, | ||
12988 | 327,3,65,0,327, | ||
12989 | 3,66,0,327,3, | ||
12990 | 67,0,327,3,68, | ||
12991 | 0,327,3,69,0, | ||
12992 | 327,3,70,0,327, | ||
12993 | 3,71,0,327,3, | ||
12994 | 72,0,327,3,73, | ||
12995 | 0,327,3,74,0, | ||
12996 | 327,3,75,0,327, | ||
12997 | 3,76,0,327,3, | ||
12998 | 77,0,327,3,78, | ||
12999 | 0,327,3,79,0, | ||
13000 | 327,3,80,0,327, | ||
13001 | 3,81,0,327,3, | ||
13002 | 82,0,327,3,83, | ||
13003 | 0,327,3,84,0, | ||
13004 | 327,3,85,0,327, | ||
13005 | 3,86,0,327,3, | ||
13006 | 87,0,327,3,88, | ||
13007 | 0,327,3,89,0, | ||
13008 | 327,3,90,0,327, | ||
13009 | 3,95,0,327,3, | ||
13010 | 97,0,327,3,98, | ||
13011 | 0,327,3,99,0, | ||
13012 | 327,3,100,0,327, | ||
13013 | 3,101,0,327,3, | ||
13014 | 102,0,327,3,103, | ||
13015 | 0,327,3,104,0, | ||
13016 | 327,3,105,0,1027, | ||
13017 | 12,1,9049,1028,5, | ||
13018 | 63,3,109,0,327, | ||
13019 | 3,110,0,327,3, | ||
13020 | 111,0,1029,12,1, | ||
13021 | 9079,1030,5,63,3, | ||
13022 | 109,0,327,3,110, | ||
13023 | 0,1031,12,1,9108, | ||
13024 | 1032,5,63,3,109, | ||
13025 | 0,327,3,110,0, | ||
13026 | 327,3,111,0,327, | ||
13027 | 3,112,0,327,3, | ||
13028 | 113,0,327,3,114, | ||
13029 | 0,327,3,115,0, | ||
13030 | 327,3,116,0,327, | ||
13031 | 3,117,0,327,3, | ||
13032 | 118,0,327,3,119, | ||
13033 | 0,327,3,120,0, | ||
13034 | 327,3,121,0,327, | ||
13035 | 3,122,0,327,3, | ||
13036 | 48,0,327,3,49, | ||
13037 | 0,327,3,50,0, | ||
13038 | 327,3,51,0,327, | ||
13039 | 3,52,0,327,3, | ||
13040 | 53,0,327,3,54, | ||
13041 | 0,327,3,55,0, | ||
13042 | 327,3,56,0,327, | ||
13043 | 3,57,0,327,3, | ||
13044 | 65,0,327,3,66, | ||
13045 | 0,327,3,67,0, | ||
13046 | 327,3,68,0,327, | ||
13047 | 3,69,0,327,3, | ||
13048 | 70,0,327,3,71, | ||
13049 | 0,327,3,72,0, | ||
13050 | 327,3,73,0,327, | ||
13051 | 3,74,0,327,3, | ||
13052 | 75,0,327,3,76, | ||
13053 | 0,327,3,77,0, | ||
13054 | 327,3,78,0,327, | ||
13055 | 3,79,0,327,3, | ||
13056 | 80,0,327,3,81, | ||
13057 | 0,327,3,82,0, | ||
13058 | 327,3,83,0,327, | ||
13059 | 3,84,0,327,3, | ||
13060 | 85,0,327,3,86, | ||
13061 | 0,327,3,87,0, | ||
13062 | 327,3,88,0,327, | ||
13063 | 3,89,0,327,3, | ||
13064 | 90,0,327,3,95, | ||
13065 | 0,327,3,97,0, | ||
13066 | 327,3,98,0,327, | ||
13067 | 3,99,0,327,3, | ||
13068 | 100,0,327,3,101, | ||
13069 | 0,327,3,102,0, | ||
13070 | 327,3,103,0,327, | ||
13071 | 3,104,0,327,3, | ||
13072 | 105,0,327,3,106, | ||
13073 | 0,327,3,107,0, | ||
13074 | 327,3,108,0,327, | ||
13075 | 1033,11,1,330,0, | ||
13076 | 1034,4,26,82,0, | ||
13077 | 79,0,84,0,65, | ||
13078 | 0,84,0,73,0, | ||
13079 | 79,0,78,0,95, | ||
13080 | 0,84,0,89,0, | ||
13081 | 80,0,69,0,1, | ||
13082 | -1,3,111,0,327, | ||
13083 | 3,112,0,327,3, | ||
13084 | 113,0,327,3,114, | ||
13085 | 0,327,3,115,0, | ||
13086 | 327,3,116,0,327, | ||
13087 | 3,117,0,327,3, | ||
13088 | 118,0,327,3,119, | ||
13089 | 0,327,3,120,0, | ||
13090 | 327,3,121,0,327, | ||
13091 | 3,122,0,327,3, | ||
13092 | 48,0,327,3,49, | ||
13093 | 0,327,3,50,0, | ||
13094 | 327,3,51,0,327, | ||
13095 | 3,52,0,327,3, | ||
13096 | 53,0,327,3,54, | ||
13097 | 0,327,3,55,0, | ||
13098 | 327,3,56,0,327, | ||
13099 | 3,57,0,327,3, | ||
13100 | 65,0,327,3,66, | ||
13101 | 0,327,3,67,0, | ||
13102 | 327,3,68,0,327, | ||
13103 | 3,69,0,327,3, | ||
13104 | 70,0,327,3,71, | ||
13105 | 0,327,3,72,0, | ||
13106 | 327,3,73,0,327, | ||
13107 | 3,74,0,327,3, | ||
13108 | 75,0,327,3,76, | ||
13109 | 0,327,3,77,0, | ||
13110 | 327,3,78,0,327, | ||
13111 | 3,79,0,327,3, | ||
13112 | 80,0,327,3,81, | ||
13113 | 0,327,3,82,0, | ||
13114 | 327,3,83,0,327, | ||
13115 | 3,84,0,327,3, | ||
13116 | 85,0,327,3,86, | ||
13117 | 0,327,3,87,0, | ||
13118 | 327,3,88,0,327, | ||
13119 | 3,89,0,327,3, | ||
13120 | 90,0,327,3,95, | ||
13121 | 0,327,3,97,0, | ||
13122 | 327,3,98,0,327, | ||
13123 | 3,99,0,327,3, | ||
13124 | 100,0,327,3,101, | ||
13125 | 0,327,3,102,0, | ||
13126 | 327,3,103,0,327, | ||
13127 | 3,104,0,327,3, | ||
13128 | 105,0,327,3,106, | ||
13129 | 0,327,3,107,0, | ||
13130 | 327,3,108,0,327, | ||
13131 | 1035,11,1,829,0, | ||
13132 | 330,1,-1,3,112, | ||
13133 | 0,327,3,113,0, | ||
13134 | 327,3,114,0,327, | ||
13135 | 3,115,0,327,3, | ||
13136 | 116,0,327,3,117, | ||
13137 | 0,327,3,118,0, | ||
13138 | 327,3,119,0,327, | ||
13139 | 3,120,0,327,3, | ||
13140 | 121,0,327,3,122, | ||
13141 | 0,327,3,48,0, | ||
13142 | 327,3,49,0,327, | ||
13143 | 3,50,0,327,3, | ||
13144 | 51,0,327,3,52, | ||
13145 | 0,327,3,53,0, | ||
13146 | 327,3,54,0,327, | ||
13147 | 3,55,0,327,3, | ||
13148 | 56,0,327,3,57, | ||
13149 | 0,327,3,65,0, | ||
13150 | 327,3,66,0,327, | ||
13151 | 3,67,0,327,3, | ||
13152 | 68,0,327,3,69, | ||
13153 | 0,327,3,70,0, | ||
13154 | 327,3,71,0,327, | ||
13155 | 3,72,0,327,3, | ||
13156 | 73,0,327,3,74, | ||
13157 | 0,327,3,75,0, | ||
13158 | 327,3,76,0,327, | ||
13159 | 3,77,0,327,3, | ||
13160 | 78,0,327,3,79, | ||
13161 | 0,327,3,80,0, | ||
13162 | 327,3,81,0,327, | ||
13163 | 3,82,0,327,3, | ||
13164 | 83,0,327,3,84, | ||
13165 | 0,327,3,85,0, | ||
13166 | 327,3,86,0,327, | ||
13167 | 3,87,0,327,3, | ||
13168 | 88,0,327,3,89, | ||
13169 | 0,327,3,90,0, | ||
13170 | 327,3,95,0,327, | ||
13171 | 3,97,0,327,3, | ||
13172 | 98,0,327,3,99, | ||
13173 | 0,327,3,100,0, | ||
13174 | 327,3,101,0,327, | ||
13175 | 3,102,0,327,3, | ||
13176 | 103,0,327,3,104, | ||
13177 | 0,327,3,105,0, | ||
13178 | 327,3,106,0,327, | ||
13179 | 3,107,0,327,3, | ||
13180 | 108,0,327,1036,11, | ||
13181 | 1,829,0,330,1, | ||
13182 | -1,3,106,0,327, | ||
13183 | 3,107,0,327,3, | ||
13184 | 108,0,327,1037,11, | ||
13185 | 1,829,0,330,1, | ||
13186 | -1,3,117,0,327, | ||
13187 | 3,118,0,327,3, | ||
13188 | 119,0,327,3,120, | ||
13189 | 0,327,3,121,0, | ||
13190 | 327,3,122,0,327, | ||
13191 | 3,48,0,327,3, | ||
13192 | 49,0,327,3,50, | ||
13193 | 0,327,3,51,0, | ||
13194 | 327,3,52,0,327, | ||
13195 | 3,53,0,327,3, | ||
13196 | 54,0,327,3,55, | ||
13197 | 0,327,3,56,0, | ||
13198 | 327,3,57,0,327, | ||
13199 | 3,65,0,327,3, | ||
13200 | 66,0,327,3,67, | ||
13201 | 0,327,3,68,0, | ||
13202 | 327,3,69,0,327, | ||
13203 | 3,70,0,327,3, | ||
13204 | 71,0,327,3,72, | ||
13205 | 0,327,3,73,0, | ||
13206 | 327,3,74,0,327, | ||
13207 | 3,75,0,327,3, | ||
13208 | 76,0,327,3,77, | ||
13209 | 0,327,3,78,0, | ||
13210 | 327,3,79,0,327, | ||
13211 | 3,80,0,327,3, | ||
13212 | 81,0,327,3,82, | ||
13213 | 0,327,3,83,0, | ||
13214 | 327,3,84,0,327, | ||
13215 | 3,85,0,327,3, | ||
13216 | 86,0,327,3,87, | ||
13217 | 0,327,3,88,0, | ||
13218 | 327,3,89,0,327, | ||
13219 | 3,90,0,327,3, | ||
13220 | 95,0,327,3,97, | ||
13221 | 0,327,3,98,0, | ||
13222 | 327,3,99,0,327, | ||
13223 | 3,100,0,327,3, | ||
13224 | 101,0,327,3,102, | ||
13225 | 0,327,3,103,0, | ||
13226 | 327,3,104,0,327, | ||
13227 | 3,105,0,327,3, | ||
13228 | 106,0,327,3,107, | ||
13229 | 0,327,3,108,0, | ||
13230 | 327,1038,11,1,829, | ||
13231 | 0,330,1,-1,3, | ||
13232 | 98,0,327,3,99, | ||
13233 | 0,327,3,100,0, | ||
13234 | 327,3,101,0,327, | ||
13235 | 3,102,0,327,3, | ||
13236 | 103,0,327,3,104, | ||
13237 | 0,327,3,105,0, | ||
13238 | 327,3,106,0,327, | ||
13239 | 3,107,0,327,3, | ||
13240 | 108,0,327,1039,11, | ||
13241 | 1,829,0,330,1, | ||
13242 | -1,3,117,0,327, | ||
13243 | 3,118,0,327,3, | ||
13244 | 119,0,327,3,120, | ||
13245 | 0,327,3,121,0, | ||
13246 | 327,3,122,0,327, | ||
13247 | 3,48,0,327,3, | ||
13248 | 49,0,327,3,50, | ||
13249 | 0,327,3,51,0, | ||
13250 | 327,3,52,0,327, | ||
13251 | 3,53,0,327,3, | ||
13252 | 54,0,327,3,55, | ||
13253 | 0,327,3,56,0, | ||
13254 | 327,3,57,0,327, | ||
13255 | 3,65,0,327,3, | ||
13256 | 66,0,327,3,67, | ||
13257 | 0,327,3,68,0, | ||
13258 | 327,3,69,0,327, | ||
13259 | 3,70,0,327,3, | ||
13260 | 71,0,327,3,72, | ||
13261 | 0,327,3,73,0, | ||
13262 | 327,3,74,0,327, | ||
13263 | 3,75,0,327,3, | ||
13264 | 76,0,327,3,77, | ||
13265 | 0,327,3,78,0, | ||
13266 | 327,3,79,0,327, | ||
13267 | 3,80,0,327,3, | ||
13268 | 81,0,327,3,82, | ||
13269 | 0,327,3,83,0, | ||
13270 | 327,3,84,0,327, | ||
13271 | 3,85,0,327,3, | ||
13272 | 86,0,327,3,87, | ||
13273 | 0,327,3,88,0, | ||
13274 | 327,3,89,0,327, | ||
13275 | 3,90,0,327,3, | ||
13276 | 95,0,327,3,97, | ||
13277 | 0,327,3,98,0, | ||
13278 | 327,3,99,0,327, | ||
13279 | 3,100,0,327,3, | ||
13280 | 101,0,327,3,102, | ||
13281 | 0,327,3,103,0, | ||
13282 | 327,3,104,0,327, | ||
13283 | 3,105,0,327,3, | ||
13284 | 106,0,327,3,107, | ||
13285 | 0,327,3,108,0, | ||
13286 | 327,1040,11,1,829, | ||
13287 | 0,330,1,-1,3, | ||
13288 | 112,0,327,3,113, | ||
13289 | 0,327,3,114,0, | ||
13290 | 327,3,115,0,327, | ||
13291 | 3,116,0,327,3, | ||
13292 | 117,0,1041,12,1, | ||
13293 | 9731,1042,5,63,3, | ||
13294 | 109,0,327,3,110, | ||
13295 | 0,1043,12,1,9760, | ||
13296 | 1044,5,63,3,109, | ||
13297 | 0,327,3,110,0, | ||
13298 | 327,3,111,0,327, | ||
13299 | 3,112,0,327,3, | ||
13300 | 113,0,327,3,114, | ||
13301 | 0,327,3,115,0, | ||
13302 | 327,3,116,0,327, | ||
13303 | 3,117,0,327,3, | ||
13304 | 118,0,327,3,119, | ||
13305 | 0,327,3,120,0, | ||
13306 | 327,3,121,0,327, | ||
13307 | 3,122,0,327,3, | ||
13308 | 48,0,327,3,49, | ||
13309 | 0,327,3,50,0, | ||
13310 | 327,3,51,0,327, | ||
13311 | 3,52,0,327,3, | ||
13312 | 53,0,327,3,54, | ||
13313 | 0,327,3,55,0, | ||
13314 | 327,3,56,0,327, | ||
13315 | 3,57,0,327,3, | ||
13316 | 65,0,327,3,66, | ||
13317 | 0,327,3,67,0, | ||
13318 | 327,3,68,0,327, | ||
13319 | 3,69,0,327,3, | ||
13320 | 70,0,327,3,71, | ||
13321 | 0,327,3,72,0, | ||
13322 | 327,3,73,0,327, | ||
13323 | 3,74,0,327,3, | ||
13324 | 75,0,327,3,76, | ||
13325 | 0,327,3,77,0, | ||
13326 | 327,3,78,0,327, | ||
13327 | 3,79,0,327,3, | ||
13328 | 80,0,327,3,81, | ||
13329 | 0,327,3,82,0, | ||
13330 | 327,3,83,0,327, | ||
13331 | 3,84,0,327,3, | ||
13332 | 85,0,327,3,86, | ||
13333 | 0,327,3,87,0, | ||
13334 | 327,3,88,0,327, | ||
13335 | 3,89,0,327,3, | ||
13336 | 90,0,327,3,95, | ||
13337 | 0,1045,12,1,9846, | ||
13338 | 1046,5,63,3,109, | ||
13339 | 0,327,3,110,0, | ||
13340 | 327,3,111,0,327, | ||
13341 | 3,112,0,327,3, | ||
13342 | 113,0,327,3,114, | ||
13343 | 0,327,3,115,0, | ||
13344 | 327,3,116,0,1047, | ||
13345 | 12,1,9881,1048,5, | ||
13346 | 63,3,109,0,327, | ||
13347 | 3,110,0,327,3, | ||
13348 | 111,0,327,3,112, | ||
13349 | 0,327,3,113,0, | ||
13350 | 327,3,114,0,327, | ||
13351 | 3,115,0,327,3, | ||
13352 | 116,0,327,3,117, | ||
13353 | 0,327,3,118,0, | ||
13354 | 327,3,119,0,327, | ||
13355 | 3,120,0,327,3, | ||
13356 | 121,0,327,3,122, | ||
13357 | 0,327,3,48,0, | ||
13358 | 327,3,49,0,327, | ||
13359 | 3,50,0,327,3, | ||
13360 | 51,0,327,3,52, | ||
13361 | 0,327,3,53,0, | ||
13362 | 327,3,54,0,327, | ||
13363 | 3,55,0,327,3, | ||
13364 | 56,0,327,3,57, | ||
13365 | 0,327,3,65,0, | ||
13366 | 327,3,66,0,327, | ||
13367 | 3,67,0,327,3, | ||
13368 | 68,0,327,3,69, | ||
13369 | 0,327,3,70,0, | ||
13370 | 327,3,71,0,327, | ||
13371 | 3,72,0,327,3, | ||
13372 | 73,0,327,3,74, | ||
13373 | 0,327,3,75,0, | ||
13374 | 327,3,76,0,327, | ||
13375 | 3,77,0,327,3, | ||
13376 | 78,0,327,3,79, | ||
13377 | 0,327,3,80,0, | ||
13378 | 327,3,81,0,327, | ||
13379 | 3,82,0,327,3, | ||
13380 | 83,0,327,3,84, | ||
13381 | 0,327,3,85,0, | ||
13382 | 327,3,86,0,327, | ||
13383 | 3,87,0,327,3, | ||
13384 | 88,0,327,3,89, | ||
13385 | 0,327,3,90,0, | ||
13386 | 327,3,95,0,327, | ||
13387 | 3,97,0,327,3, | ||
13388 | 98,0,327,3,99, | ||
13389 | 0,327,3,100,0, | ||
13390 | 327,3,101,0,327, | ||
13391 | 3,102,0,327,3, | ||
13392 | 103,0,327,3,104, | ||
13393 | 0,327,3,105,0, | ||
13394 | 1049,12,1,9932,1050, | ||
13395 | 5,63,3,109,0, | ||
13396 | 1051,12,1,9960,1052, | ||
13397 | 5,63,3,109,0, | ||
13398 | 327,3,110,0,327, | ||
13399 | 3,111,0,327,3, | ||
13400 | 112,0,327,3,113, | ||
13401 | 0,327,3,114,0, | ||
13402 | 327,3,115,0,327, | ||
13403 | 3,116,0,327,3, | ||
13404 | 117,0,327,3,118, | ||
13405 | 0,327,3,119,0, | ||
13406 | 327,3,120,0,327, | ||
13407 | 3,121,0,327,3, | ||
13408 | 122,0,327,3,48, | ||
13409 | 0,327,3,49,0, | ||
13410 | 327,3,50,0,327, | ||
13411 | 3,51,0,327,3, | ||
13412 | 52,0,327,3,53, | ||
13413 | 0,327,3,54,0, | ||
13414 | 327,3,55,0,327, | ||
13415 | 3,56,0,327,3, | ||
13416 | 57,0,327,3,65, | ||
13417 | 0,327,3,66,0, | ||
13418 | 327,3,67,0,327, | ||
13419 | 3,68,0,327,3, | ||
13420 | 69,0,327,3,70, | ||
13421 | 0,327,3,71,0, | ||
13422 | 327,3,72,0,327, | ||
13423 | 3,73,0,327,3, | ||
13424 | 74,0,327,3,75, | ||
13425 | 0,327,3,76,0, | ||
13426 | 327,3,77,0,327, | ||
13427 | 3,78,0,327,3, | ||
13428 | 79,0,327,3,80, | ||
13429 | 0,327,3,81,0, | ||
13430 | 327,3,82,0,327, | ||
13431 | 3,83,0,327,3, | ||
13432 | 84,0,327,3,85, | ||
13433 | 0,327,3,86,0, | ||
13434 | 327,3,87,0,327, | ||
13435 | 3,88,0,327,3, | ||
13436 | 89,0,327,3,90, | ||
13437 | 0,327,3,95,0, | ||
13438 | 327,3,97,0,327, | ||
13439 | 3,98,0,327,3, | ||
13440 | 99,0,327,3,100, | ||
13441 | 0,327,3,101,0, | ||
13442 | 1053,12,1,10007,1054, | ||
13443 | 5,63,3,109,0, | ||
13444 | 327,3,110,0,327, | ||
13445 | 3,111,0,327,3, | ||
13446 | 112,0,327,3,113, | ||
13447 | 0,327,3,114,0, | ||
13448 | 327,3,115,0,327, | ||
13449 | 3,116,0,327,3, | ||
13450 | 117,0,327,3,118, | ||
13451 | 0,327,3,119,0, | ||
13452 | 327,3,120,0,327, | ||
13453 | 3,121,0,327,3, | ||
13454 | 122,0,327,3,48, | ||
13455 | 0,327,3,49,0, | ||
13456 | 327,3,50,0,327, | ||
13457 | 3,51,0,327,3, | ||
13458 | 52,0,327,3,53, | ||
13459 | 0,327,3,54,0, | ||
13460 | 327,3,55,0,327, | ||
13461 | 3,56,0,327,3, | ||
13462 | 57,0,327,3,65, | ||
13463 | 0,327,3,66,0, | ||
13464 | 327,3,67,0,327, | ||
13465 | 3,68,0,327,3, | ||
13466 | 69,0,327,3,70, | ||
13467 | 0,327,3,71,0, | ||
13468 | 327,3,72,0,327, | ||
13469 | 3,73,0,327,3, | ||
13470 | 74,0,327,3,75, | ||
13471 | 0,327,3,76,0, | ||
13472 | 327,3,77,0,327, | ||
13473 | 3,78,0,327,3, | ||
13474 | 79,0,327,3,80, | ||
13475 | 0,327,3,81,0, | ||
13476 | 327,3,82,0,327, | ||
13477 | 3,83,0,327,3, | ||
13478 | 84,0,327,3,85, | ||
13479 | 0,327,3,86,0, | ||
13480 | 327,3,87,0,327, | ||
13481 | 3,88,0,327,3, | ||
13482 | 89,0,327,3,90, | ||
13483 | 0,327,3,95,0, | ||
13484 | 1055,12,1,10093,1056, | ||
13485 | 5,63,3,109,0, | ||
13486 | 327,3,110,0,327, | ||
13487 | 3,111,0,327,3, | ||
13488 | 112,0,1057,12,1, | ||
13489 | 10124,1058,5,63,3, | ||
13490 | 109,0,327,3,110, | ||
13491 | 0,327,3,111,0, | ||
13492 | 327,3,112,0,327, | ||
13493 | 3,113,0,327,3, | ||
13494 | 114,0,327,3,115, | ||
13495 | 0,327,3,116,0, | ||
13496 | 327,3,117,0,327, | ||
13497 | 3,118,0,327,3, | ||
13498 | 119,0,327,3,120, | ||
13499 | 0,327,3,121,0, | ||
13500 | 327,3,122,0,327, | ||
13501 | 3,48,0,327,3, | ||
13502 | 49,0,327,3,50, | ||
13503 | 0,327,3,51,0, | ||
13504 | 327,3,52,0,327, | ||
13505 | 3,53,0,327,3, | ||
13506 | 54,0,327,3,55, | ||
13507 | 0,327,3,56,0, | ||
13508 | 327,3,57,0,327, | ||
13509 | 3,65,0,327,3, | ||
13510 | 66,0,327,3,67, | ||
13511 | 0,327,3,68,0, | ||
13512 | 327,3,69,0,327, | ||
13513 | 3,70,0,327,3, | ||
13514 | 71,0,327,3,72, | ||
13515 | 0,327,3,73,0, | ||
13516 | 327,3,74,0,327, | ||
13517 | 3,75,0,327,3, | ||
13518 | 76,0,327,3,77, | ||
13519 | 0,327,3,78,0, | ||
13520 | 327,3,79,0,327, | ||
13521 | 3,80,0,327,3, | ||
13522 | 81,0,327,3,82, | ||
13523 | 0,327,3,83,0, | ||
13524 | 327,3,84,0,327, | ||
13525 | 3,85,0,327,3, | ||
13526 | 86,0,327,3,87, | ||
13527 | 0,327,3,88,0, | ||
13528 | 327,3,89,0,327, | ||
13529 | 3,90,0,327,3, | ||
13530 | 95,0,327,3,97, | ||
13531 | 0,327,3,98,0, | ||
13532 | 327,3,99,0,327, | ||
13533 | 3,100,0,327,3, | ||
13534 | 101,0,1059,12,1, | ||
13535 | 10171,1060,5,63,3, | ||
13536 | 109,0,327,3,110, | ||
13537 | 0,327,3,111,0, | ||
13538 | 327,3,112,0,327, | ||
13539 | 3,113,0,327,3, | ||
13540 | 114,0,1061,12,1, | ||
13541 | 10204,1062,5,63,3, | ||
13542 | 109,0,1063,12,1, | ||
13543 | 10232,1064,5,63,3, | ||
13544 | 109,0,327,3,110, | ||
13545 | 0,327,3,111,0, | ||
13546 | 327,3,112,0,327, | ||
13547 | 3,113,0,327,3, | ||
13548 | 114,0,327,3,115, | ||
13549 | 0,327,3,116,0, | ||
13550 | 327,3,117,0,327, | ||
13551 | 3,118,0,327,3, | ||
13552 | 119,0,327,3,120, | ||
13553 | 0,327,3,121,0, | ||
13554 | 327,3,122,0,327, | ||
13555 | 3,48,0,327,3, | ||
13556 | 49,0,327,3,50, | ||
13557 | 0,327,3,51,0, | ||
13558 | 327,3,52,0,327, | ||
13559 | 3,53,0,327,3, | ||
13560 | 54,0,327,3,55, | ||
13561 | 0,327,3,56,0, | ||
13562 | 327,3,57,0,327, | ||
13563 | 3,65,0,327,3, | ||
13564 | 66,0,327,3,67, | ||
13565 | 0,327,3,68,0, | ||
13566 | 327,3,69,0,327, | ||
13567 | 3,70,0,327,3, | ||
13568 | 71,0,327,3,72, | ||
13569 | 0,327,3,73,0, | ||
13570 | 327,3,74,0,327, | ||
13571 | 3,75,0,327,3, | ||
13572 | 76,0,327,3,77, | ||
13573 | 0,327,3,78,0, | ||
13574 | 327,3,79,0,327, | ||
13575 | 3,80,0,327,3, | ||
13576 | 81,0,327,3,82, | ||
13577 | 0,327,3,83,0, | ||
13578 | 327,3,84,0,327, | ||
13579 | 3,85,0,327,3, | ||
13580 | 86,0,327,3,87, | ||
13581 | 0,327,3,88,0, | ||
13582 | 327,3,89,0,327, | ||
13583 | 3,90,0,327,3, | ||
13584 | 95,0,327,3,97, | ||
13585 | 0,327,3,98,0, | ||
13586 | 327,3,99,0,327, | ||
13587 | 3,100,0,327,3, | ||
13588 | 101,0,327,3,102, | ||
13589 | 0,327,3,103,0, | ||
13590 | 327,3,104,0,327, | ||
13591 | 3,105,0,1065,12, | ||
13592 | 1,10283,1066,5,63, | ||
13593 | 3,109,0,327,3, | ||
13594 | 110,0,327,3,111, | ||
13595 | 0,327,3,112,0, | ||
13596 | 327,3,113,0,327, | ||
13597 | 3,114,0,327,3, | ||
13598 | 115,0,1067,12,1, | ||
13599 | 10317,1068,5,63,3, | ||
13600 | 109,0,327,3,110, | ||
13601 | 0,327,3,111,0, | ||
13602 | 327,3,112,0,327, | ||
13603 | 3,113,0,327,3, | ||
13604 | 114,0,327,3,115, | ||
13605 | 0,1069,12,1,10351, | ||
13606 | 1070,5,63,3,109, | ||
13607 | 0,327,3,110,0, | ||
13608 | 327,3,111,0,327, | ||
13609 | 3,112,0,327,3, | ||
13610 | 113,0,327,3,114, | ||
13611 | 0,327,3,115,0, | ||
13612 | 327,3,116,0,327, | ||
13613 | 3,117,0,327,3, | ||
13614 | 118,0,327,3,119, | ||
13615 | 0,327,3,120,0, | ||
13616 | 327,3,121,0,327, | ||
13617 | 3,122,0,327,3, | ||
13618 | 48,0,327,3,49, | ||
13619 | 0,327,3,50,0, | ||
13620 | 327,3,51,0,327, | ||
13621 | 3,52,0,327,3, | ||
13622 | 53,0,327,3,54, | ||
13623 | 0,327,3,55,0, | ||
13624 | 327,3,56,0,327, | ||
13625 | 3,57,0,327,3, | ||
13626 | 65,0,327,3,66, | ||
13627 | 0,327,3,67,0, | ||
13628 | 327,3,68,0,327, | ||
13629 | 3,69,0,327,3, | ||
13630 | 70,0,327,3,71, | ||
13631 | 0,327,3,72,0, | ||
13632 | 327,3,73,0,327, | ||
13633 | 3,74,0,327,3, | ||
13634 | 75,0,327,3,76, | ||
13635 | 0,327,3,77,0, | ||
13636 | 327,3,78,0,327, | ||
13637 | 3,79,0,327,3, | ||
13638 | 80,0,327,3,81, | ||
13639 | 0,327,3,82,0, | ||
13640 | 327,3,83,0,327, | ||
13641 | 3,84,0,327,3, | ||
13642 | 85,0,327,3,86, | ||
13643 | 0,327,3,87,0, | ||
13644 | 327,3,88,0,327, | ||
13645 | 3,89,0,327,3, | ||
13646 | 90,0,327,3,95, | ||
13647 | 0,327,3,97,0, | ||
13648 | 327,3,98,0,327, | ||
13649 | 3,99,0,327,3, | ||
13650 | 100,0,327,3,101, | ||
13651 | 0,327,3,102,0, | ||
13652 | 327,3,103,0,327, | ||
13653 | 3,104,0,327,3, | ||
13654 | 105,0,1071,12,1, | ||
13655 | 10402,1072,5,63,3, | ||
13656 | 109,0,327,3,110, | ||
13657 | 0,327,3,111,0, | ||
13658 | 1073,12,1,10432,1074, | ||
13659 | 5,63,3,109,0, | ||
13660 | 327,3,110,0,1075, | ||
13661 | 12,1,10461,1076,5, | ||
13662 | 63,3,109,0,327, | ||
13663 | 3,110,0,327,3, | ||
13664 | 111,0,327,3,112, | ||
13665 | 0,327,3,113,0, | ||
13666 | 327,3,114,0,327, | ||
13667 | 3,115,0,1077,12, | ||
13668 | 1,10495,1078,5,63, | ||
13669 | 3,109,0,327,3, | ||
13670 | 110,0,327,3,111, | ||
13671 | 0,327,3,112,0, | ||
13672 | 327,3,113,0,327, | ||
13673 | 3,114,0,327,3, | ||
13674 | 115,0,327,3,116, | ||
13675 | 0,327,3,117,0, | ||
13676 | 327,3,118,0,327, | ||
13677 | 3,119,0,327,3, | ||
13678 | 120,0,327,3,121, | ||
13679 | 0,327,3,122,0, | ||
13680 | 327,3,48,0,327, | ||
13681 | 3,49,0,327,3, | ||
13682 | 50,0,327,3,51, | ||
13683 | 0,327,3,52,0, | ||
13684 | 327,3,53,0,327, | ||
13685 | 3,54,0,327,3, | ||
13686 | 55,0,327,3,56, | ||
13687 | 0,327,3,57,0, | ||
13688 | 327,3,65,0,327, | ||
13689 | 3,66,0,327,3, | ||
13690 | 67,0,327,3,68, | ||
13691 | 0,327,3,69,0, | ||
13692 | 327,3,70,0,327, | ||
13693 | 3,71,0,327,3, | ||
13694 | 72,0,327,3,73, | ||
13695 | 0,327,3,74,0, | ||
13696 | 327,3,75,0,327, | ||
13697 | 3,76,0,327,3, | ||
13698 | 77,0,327,3,78, | ||
13699 | 0,327,3,79,0, | ||
13700 | 327,3,80,0,327, | ||
13701 | 3,81,0,327,3, | ||
13702 | 82,0,327,3,83, | ||
13703 | 0,327,3,84,0, | ||
13704 | 327,3,85,0,327, | ||
13705 | 3,86,0,327,3, | ||
13706 | 87,0,327,3,88, | ||
13707 | 0,327,3,89,0, | ||
13708 | 327,3,90,0,327, | ||
13709 | 3,95,0,327,3, | ||
13710 | 97,0,327,3,98, | ||
13711 | 0,327,3,99,0, | ||
13712 | 327,3,100,0,327, | ||
13713 | 3,101,0,327,3, | ||
13714 | 102,0,327,3,103, | ||
13715 | 0,327,3,104,0, | ||
13716 | 327,3,105,0,327, | ||
13717 | 3,106,0,327,3, | ||
13718 | 107,0,327,3,108, | ||
13719 | 0,327,1079,11,1, | ||
13720 | 720,0,1080,4,52, | ||
13721 | 82,0,85,0,78, | ||
13722 | 0,95,0,84,0, | ||
13723 | 73,0,77,0,69, | ||
13724 | 0,95,0,80,0, | ||
13725 | 69,0,82,0,77, | ||
13726 | 0,73,0,83,0, | ||
13727 | 83,0,73,0,79, | ||
13728 | 0,78,0,83,0, | ||
13729 | 95,0,69,0,86, | ||
13730 | 0,69,0,78,0, | ||
13731 | 84,0,1,-1,3, | ||
13732 | 116,0,327,3,117, | ||
13733 | 0,327,3,118,0, | ||
13734 | 327,3,119,0,327, | ||
13735 | 3,120,0,327,3, | ||
13736 | 121,0,327,3,122, | ||
13737 | 0,327,3,48,0, | ||
13738 | 327,3,49,0,327, | ||
13739 | 3,50,0,327,3, | ||
13740 | 51,0,327,3,52, | ||
13741 | 0,327,3,53,0, | ||
13742 | 327,3,54,0,327, | ||
13743 | 3,55,0,327,3, | ||
13744 | 56,0,327,3,57, | ||
13745 | 0,327,3,65,0, | ||
13746 | 327,3,66,0,327, | ||
13747 | 3,67,0,327,3, | ||
13748 | 68,0,327,3,69, | ||
13749 | 0,327,3,70,0, | ||
13750 | 327,3,71,0,327, | ||
13751 | 3,72,0,327,3, | ||
13752 | 73,0,327,3,74, | ||
13753 | 0,327,3,75,0, | ||
13754 | 327,3,76,0,327, | ||
13755 | 3,77,0,327,3, | ||
13756 | 78,0,327,3,79, | ||
13757 | 0,327,3,80,0, | ||
13758 | 327,3,81,0,327, | ||
13759 | 3,82,0,327,3, | ||
13760 | 83,0,327,3,84, | ||
13761 | 0,327,3,85,0, | ||
13762 | 327,3,86,0,327, | ||
13763 | 3,87,0,327,3, | ||
13764 | 88,0,327,3,89, | ||
13765 | 0,327,3,90,0, | ||
13766 | 327,3,95,0,327, | ||
13767 | 3,97,0,327,3, | ||
13768 | 98,0,327,3,99, | ||
13769 | 0,327,3,100,0, | ||
13770 | 327,3,101,0,327, | ||
13771 | 3,102,0,327,3, | ||
13772 | 103,0,327,3,104, | ||
13773 | 0,327,3,105,0, | ||
13774 | 327,3,106,0,327, | ||
13775 | 3,107,0,327,3, | ||
13776 | 108,0,327,1081,11, | ||
13777 | 1,829,0,330,1, | ||
13778 | -1,3,111,0,327, | ||
13779 | 3,112,0,327,3, | ||
13780 | 113,0,327,3,114, | ||
13781 | 0,327,3,115,0, | ||
13782 | 327,3,116,0,327, | ||
13783 | 3,117,0,327,3, | ||
13784 | 118,0,327,3,119, | ||
13785 | 0,327,3,120,0, | ||
13786 | 327,3,121,0,327, | ||
13787 | 3,122,0,327,3, | ||
13788 | 48,0,327,3,49, | ||
13789 | 0,327,3,50,0, | ||
13790 | 327,3,51,0,327, | ||
13791 | 3,52,0,327,3, | ||
13792 | 53,0,327,3,54, | ||
13793 | 0,327,3,55,0, | ||
13794 | 327,3,56,0,327, | ||
13795 | 3,57,0,327,3, | ||
13796 | 65,0,327,3,66, | ||
13797 | 0,327,3,67,0, | ||
13798 | 327,3,68,0,327, | ||
13799 | 3,69,0,327,3, | ||
13800 | 70,0,327,3,71, | ||
13801 | 0,327,3,72,0, | ||
13802 | 327,3,73,0,327, | ||
13803 | 3,74,0,327,3, | ||
13804 | 75,0,327,3,76, | ||
13805 | 0,327,3,77,0, | ||
13806 | 327,3,78,0,327, | ||
13807 | 3,79,0,327,3, | ||
13808 | 80,0,327,3,81, | ||
13809 | 0,327,3,82,0, | ||
13810 | 327,3,83,0,327, | ||
13811 | 3,84,0,327,3, | ||
13812 | 85,0,327,3,86, | ||
13813 | 0,327,3,87,0, | ||
13814 | 327,3,88,0,327, | ||
13815 | 3,89,0,327,3, | ||
13816 | 90,0,327,3,95, | ||
13817 | 0,327,3,97,0, | ||
13818 | 327,3,98,0,327, | ||
13819 | 3,99,0,327,3, | ||
13820 | 100,0,327,3,101, | ||
13821 | 0,327,3,102,0, | ||
13822 | 327,3,103,0,327, | ||
13823 | 3,104,0,327,3, | ||
13824 | 105,0,327,3,106, | ||
13825 | 0,327,3,107,0, | ||
13826 | 327,3,108,0,327, | ||
13827 | 1082,11,1,829,0, | ||
13828 | 330,1,-1,3,112, | ||
13829 | 0,327,3,113,0, | ||
13830 | 327,3,114,0,327, | ||
13831 | 3,115,0,327,3, | ||
13832 | 116,0,327,3,117, | ||
13833 | 0,327,3,118,0, | ||
13834 | 327,3,119,0,327, | ||
13835 | 3,120,0,327,3, | ||
13836 | 121,0,327,3,122, | ||
13837 | 0,327,3,48,0, | ||
13838 | 327,3,49,0,327, | ||
13839 | 3,50,0,327,3, | ||
13840 | 51,0,327,3,52, | ||
13841 | 0,327,3,53,0, | ||
13842 | 327,3,54,0,327, | ||
13843 | 3,55,0,327,3, | ||
13844 | 56,0,327,3,57, | ||
13845 | 0,327,3,65,0, | ||
13846 | 327,3,66,0,327, | ||
13847 | 3,67,0,327,3, | ||
13848 | 68,0,327,3,69, | ||
13849 | 0,327,3,70,0, | ||
13850 | 327,3,71,0,327, | ||
13851 | 3,72,0,327,3, | ||
13852 | 73,0,327,3,74, | ||
13853 | 0,327,3,75,0, | ||
13854 | 327,3,76,0,327, | ||
13855 | 3,77,0,327,3, | ||
13856 | 78,0,327,3,79, | ||
13857 | 0,327,3,80,0, | ||
13858 | 327,3,81,0,327, | ||
13859 | 3,82,0,327,3, | ||
13860 | 83,0,327,3,84, | ||
13861 | 0,327,3,85,0, | ||
13862 | 327,3,86,0,327, | ||
13863 | 3,87,0,327,3, | ||
13864 | 88,0,327,3,89, | ||
13865 | 0,327,3,90,0, | ||
13866 | 327,3,95,0,327, | ||
13867 | 3,97,0,327,3, | ||
13868 | 98,0,327,3,99, | ||
13869 | 0,327,3,100,0, | ||
13870 | 327,3,101,0,327, | ||
13871 | 3,102,0,327,3, | ||
13872 | 103,0,327,3,104, | ||
13873 | 0,327,3,105,0, | ||
13874 | 327,3,106,0,327, | ||
13875 | 3,107,0,327,3, | ||
13876 | 108,0,327,1083,11, | ||
13877 | 1,829,0,330,1, | ||
13878 | -1,3,106,0,327, | ||
13879 | 3,107,0,327,3, | ||
13880 | 108,0,327,1084,11, | ||
13881 | 1,829,0,330,1, | ||
13882 | -1,3,116,0,327, | ||
13883 | 3,117,0,327,3, | ||
13884 | 118,0,327,3,119, | ||
13885 | 0,327,3,120,0, | ||
13886 | 327,3,121,0,327, | ||
13887 | 3,122,0,327,3, | ||
13888 | 48,0,327,3,49, | ||
13889 | 0,327,3,50,0, | ||
13890 | 327,3,51,0,327, | ||
13891 | 3,52,0,327,3, | ||
13892 | 53,0,327,3,54, | ||
13893 | 0,327,3,55,0, | ||
13894 | 327,3,56,0,327, | ||
13895 | 3,57,0,327,3, | ||
13896 | 65,0,327,3,66, | ||
13897 | 0,327,3,67,0, | ||
13898 | 327,3,68,0,327, | ||
13899 | 3,69,0,327,3, | ||
13900 | 70,0,327,3,71, | ||
13901 | 0,327,3,72,0, | ||
13902 | 327,3,73,0,327, | ||
13903 | 3,74,0,327,3, | ||
13904 | 75,0,327,3,76, | ||
13905 | 0,327,3,77,0, | ||
13906 | 327,3,78,0,327, | ||
13907 | 3,79,0,327,3, | ||
13908 | 80,0,327,3,81, | ||
13909 | 0,327,3,82,0, | ||
13910 | 327,3,83,0,327, | ||
13911 | 3,84,0,327,3, | ||
13912 | 85,0,327,3,86, | ||
13913 | 0,327,3,87,0, | ||
13914 | 327,3,88,0,327, | ||
13915 | 3,89,0,327,3, | ||
13916 | 90,0,327,3,95, | ||
13917 | 0,327,3,97,0, | ||
13918 | 327,3,98,0,327, | ||
13919 | 3,99,0,327,3, | ||
13920 | 100,0,327,3,101, | ||
13921 | 0,327,3,102,0, | ||
13922 | 327,3,103,0,327, | ||
13923 | 3,104,0,327,3, | ||
13924 | 105,0,327,3,106, | ||
13925 | 0,327,3,107,0, | ||
13926 | 327,3,108,0,327, | ||
13927 | 1085,11,1,829,0, | ||
13928 | 330,1,-1,3,116, | ||
13929 | 0,327,3,117,0, | ||
13930 | 327,3,118,0,327, | ||
13931 | 3,119,0,327,3, | ||
13932 | 120,0,327,3,121, | ||
13933 | 0,327,3,122,0, | ||
13934 | 327,3,48,0,327, | ||
13935 | 3,49,0,327,3, | ||
13936 | 50,0,327,3,51, | ||
13937 | 0,327,3,52,0, | ||
13938 | 327,3,53,0,327, | ||
13939 | 3,54,0,327,3, | ||
13940 | 55,0,327,3,56, | ||
13941 | 0,327,3,57,0, | ||
13942 | 327,3,65,0,327, | ||
13943 | 3,66,0,327,3, | ||
13944 | 67,0,327,3,68, | ||
13945 | 0,327,3,69,0, | ||
13946 | 327,3,70,0,327, | ||
13947 | 3,71,0,327,3, | ||
13948 | 72,0,327,3,73, | ||
13949 | 0,327,3,74,0, | ||
13950 | 327,3,75,0,327, | ||
13951 | 3,76,0,327,3, | ||
13952 | 77,0,327,3,78, | ||
13953 | 0,327,3,79,0, | ||
13954 | 327,3,80,0,327, | ||
13955 | 3,81,0,327,3, | ||
13956 | 82,0,327,3,83, | ||
13957 | 0,327,3,84,0, | ||
13958 | 327,3,85,0,327, | ||
13959 | 3,86,0,327,3, | ||
13960 | 87,0,327,3,88, | ||
13961 | 0,327,3,89,0, | ||
13962 | 327,3,90,0,327, | ||
13963 | 3,95,0,327,3, | ||
13964 | 97,0,327,3,98, | ||
13965 | 0,327,3,99,0, | ||
13966 | 327,3,100,0,327, | ||
13967 | 3,101,0,327,3, | ||
13968 | 102,0,327,3,103, | ||
13969 | 0,327,3,104,0, | ||
13970 | 327,3,105,0,327, | ||
13971 | 3,106,0,327,3, | ||
13972 | 107,0,327,3,108, | ||
13973 | 0,327,1086,11,1, | ||
13974 | 829,0,330,1,-1, | ||
13975 | 3,106,0,327,3, | ||
13976 | 107,0,327,3,108, | ||
13977 | 0,327,1087,11,1, | ||
13978 | 829,0,330,1,-1, | ||
13979 | 3,110,0,327,3, | ||
13980 | 111,0,327,3,112, | ||
13981 | 0,327,3,113,0, | ||
13982 | 327,3,114,0,327, | ||
13983 | 3,115,0,327,3, | ||
13984 | 116,0,327,3,117, | ||
13985 | 0,327,3,118,0, | ||
13986 | 327,3,119,0,327, | ||
13987 | 3,120,0,327,3, | ||
13988 | 121,0,327,3,122, | ||
13989 | 0,327,3,48,0, | ||
13990 | 327,3,49,0,327, | ||
13991 | 3,50,0,327,3, | ||
13992 | 51,0,327,3,52, | ||
13993 | 0,327,3,53,0, | ||
13994 | 327,3,54,0,327, | ||
13995 | 3,55,0,327,3, | ||
13996 | 56,0,327,3,57, | ||
13997 | 0,327,3,65,0, | ||
13998 | 327,3,66,0,327, | ||
13999 | 3,67,0,327,3, | ||
14000 | 68,0,327,3,69, | ||
14001 | 0,327,3,70,0, | ||
14002 | 327,3,71,0,327, | ||
14003 | 3,72,0,327,3, | ||
14004 | 73,0,327,3,74, | ||
14005 | 0,327,3,75,0, | ||
14006 | 327,3,76,0,327, | ||
14007 | 3,77,0,327,3, | ||
14008 | 78,0,327,3,79, | ||
14009 | 0,327,3,80,0, | ||
14010 | 327,3,81,0,327, | ||
14011 | 3,82,0,327,3, | ||
14012 | 83,0,327,3,84, | ||
14013 | 0,327,3,85,0, | ||
14014 | 327,3,86,0,327, | ||
14015 | 3,87,0,327,3, | ||
14016 | 88,0,327,3,89, | ||
14017 | 0,327,3,90,0, | ||
14018 | 327,3,95,0,327, | ||
14019 | 3,97,0,327,3, | ||
14020 | 98,0,327,3,99, | ||
14021 | 0,327,3,100,0, | ||
14022 | 327,3,101,0,327, | ||
14023 | 3,102,0,327,3, | ||
14024 | 103,0,327,3,104, | ||
14025 | 0,327,3,105,0, | ||
14026 | 327,3,106,0,327, | ||
14027 | 3,107,0,327,3, | ||
14028 | 108,0,327,1088,11, | ||
14029 | 1,829,0,330,1, | ||
14030 | -1,3,115,0,327, | ||
14031 | 3,116,0,327,3, | ||
14032 | 117,0,327,3,118, | ||
14033 | 0,327,3,119,0, | ||
14034 | 327,3,120,0,327, | ||
14035 | 3,121,0,327,3, | ||
14036 | 122,0,327,3,48, | ||
14037 | 0,327,3,49,0, | ||
14038 | 327,3,50,0,327, | ||
14039 | 3,51,0,327,3, | ||
14040 | 52,0,327,3,53, | ||
14041 | 0,327,3,54,0, | ||
14042 | 327,3,55,0,327, | ||
14043 | 3,56,0,327,3, | ||
14044 | 57,0,327,3,65, | ||
14045 | 0,327,3,66,0, | ||
14046 | 327,3,67,0,327, | ||
14047 | 3,68,0,327,3, | ||
14048 | 69,0,327,3,70, | ||
14049 | 0,327,3,71,0, | ||
14050 | 327,3,72,0,327, | ||
14051 | 3,73,0,327,3, | ||
14052 | 74,0,327,3,75, | ||
14053 | 0,327,3,76,0, | ||
14054 | 327,3,77,0,327, | ||
14055 | 3,78,0,327,3, | ||
14056 | 79,0,327,3,80, | ||
14057 | 0,327,3,81,0, | ||
14058 | 327,3,82,0,327, | ||
14059 | 3,83,0,327,3, | ||
14060 | 84,0,327,3,85, | ||
14061 | 0,327,3,86,0, | ||
14062 | 327,3,87,0,327, | ||
14063 | 3,88,0,327,3, | ||
14064 | 89,0,327,3,90, | ||
14065 | 0,327,3,95,0, | ||
14066 | 327,3,97,0,327, | ||
14067 | 3,98,0,327,3, | ||
14068 | 99,0,327,3,100, | ||
14069 | 0,327,3,101,0, | ||
14070 | 327,3,102,0,327, | ||
14071 | 3,103,0,327,3, | ||
14072 | 104,0,327,3,105, | ||
14073 | 0,327,3,106,0, | ||
14074 | 327,3,107,0,327, | ||
14075 | 3,108,0,327,1089, | ||
14076 | 11,1,829,0,330, | ||
14077 | 1,-1,3,102,0, | ||
14078 | 327,3,103,0,327, | ||
14079 | 3,104,0,327,3, | ||
14080 | 105,0,327,3,106, | ||
14081 | 0,327,3,107,0, | ||
14082 | 327,3,108,0,327, | ||
14083 | 1090,11,1,829,0, | ||
14084 | 330,1,-1,3,113, | ||
14085 | 0,327,3,114,0, | ||
14086 | 327,3,115,0,327, | ||
14087 | 3,116,0,327,3, | ||
14088 | 117,0,327,3,118, | ||
14089 | 0,327,3,119,0, | ||
14090 | 327,3,120,0,327, | ||
14091 | 3,121,0,327,3, | ||
14092 | 122,0,327,3,48, | ||
14093 | 0,327,3,49,0, | ||
14094 | 327,3,50,0,327, | ||
14095 | 3,51,0,327,3, | ||
14096 | 52,0,327,3,53, | ||
14097 | 0,327,3,54,0, | ||
14098 | 327,3,55,0,327, | ||
14099 | 3,56,0,327,3, | ||
14100 | 57,0,327,3,65, | ||
14101 | 0,327,3,66,0, | ||
14102 | 327,3,67,0,327, | ||
14103 | 3,68,0,327,3, | ||
14104 | 69,0,327,3,70, | ||
14105 | 0,327,3,71,0, | ||
14106 | 327,3,72,0,327, | ||
14107 | 3,73,0,327,3, | ||
14108 | 74,0,327,3,75, | ||
14109 | 0,327,3,76,0, | ||
14110 | 327,3,77,0,327, | ||
14111 | 3,78,0,327,3, | ||
14112 | 79,0,327,3,80, | ||
14113 | 0,327,3,81,0, | ||
14114 | 327,3,82,0,327, | ||
14115 | 3,83,0,327,3, | ||
14116 | 84,0,327,3,85, | ||
14117 | 0,327,3,86,0, | ||
14118 | 327,3,87,0,327, | ||
14119 | 3,88,0,327,3, | ||
14120 | 89,0,327,3,90, | ||
14121 | 0,327,3,95,0, | ||
14122 | 327,3,97,0,327, | ||
14123 | 3,98,0,327,3, | ||
14124 | 99,0,327,3,100, | ||
14125 | 0,327,3,101,0, | ||
14126 | 327,3,102,0,327, | ||
14127 | 3,103,0,327,3, | ||
14128 | 104,0,327,3,105, | ||
14129 | 0,327,3,106,0, | ||
14130 | 327,3,107,0,327, | ||
14131 | 3,108,0,327,1091, | ||
14132 | 11,1,829,0,330, | ||
14133 | 1,-1,3,97,0, | ||
14134 | 327,3,98,0,327, | ||
14135 | 3,99,0,327,3, | ||
14136 | 100,0,327,3,101, | ||
14137 | 0,327,3,102,0, | ||
14138 | 327,3,103,0,327, | ||
14139 | 3,104,0,327,3, | ||
14140 | 105,0,327,3,106, | ||
14141 | 0,327,3,107,0, | ||
14142 | 327,3,108,0,327, | ||
14143 | 1092,11,1,829,0, | ||
14144 | 330,1,-1,3,102, | ||
14145 | 0,327,3,103,0, | ||
14146 | 327,3,104,0,327, | ||
14147 | 3,105,0,327,3, | ||
14148 | 106,0,327,3,107, | ||
14149 | 0,327,3,108,0, | ||
14150 | 327,1093,11,1,829, | ||
14151 | 0,330,1,-1,3, | ||
14152 | 110,0,327,3,111, | ||
14153 | 0,327,3,112,0, | ||
14154 | 327,3,113,0,327, | ||
14155 | 3,114,0,327,3, | ||
14156 | 115,0,327,3,116, | ||
14157 | 0,327,3,117,0, | ||
14158 | 327,3,118,0,327, | ||
14159 | 3,119,0,327,3, | ||
14160 | 120,0,327,3,121, | ||
14161 | 0,327,3,122,0, | ||
14162 | 327,3,48,0,327, | ||
14163 | 3,49,0,327,3, | ||
14164 | 50,0,327,3,51, | ||
14165 | 0,327,3,52,0, | ||
14166 | 327,3,53,0,327, | ||
14167 | 3,54,0,327,3, | ||
14168 | 55,0,327,3,56, | ||
14169 | 0,327,3,57,0, | ||
14170 | 327,3,65,0,327, | ||
14171 | 3,66,0,327,3, | ||
14172 | 67,0,327,3,68, | ||
14173 | 0,327,3,69,0, | ||
14174 | 327,3,70,0,327, | ||
14175 | 3,71,0,327,3, | ||
14176 | 72,0,327,3,73, | ||
14177 | 0,327,3,74,0, | ||
14178 | 327,3,75,0,327, | ||
14179 | 3,76,0,327,3, | ||
14180 | 77,0,327,3,78, | ||
14181 | 0,327,3,79,0, | ||
14182 | 327,3,80,0,327, | ||
14183 | 3,81,0,327,3, | ||
14184 | 82,0,327,3,83, | ||
14185 | 0,327,3,84,0, | ||
14186 | 327,3,85,0,327, | ||
14187 | 3,86,0,327,3, | ||
14188 | 87,0,327,3,88, | ||
14189 | 0,327,3,89,0, | ||
14190 | 327,3,90,0,327, | ||
14191 | 3,95,0,327,3, | ||
14192 | 97,0,327,3,98, | ||
14193 | 0,327,3,99,0, | ||
14194 | 327,3,100,0,327, | ||
14195 | 3,101,0,327,3, | ||
14196 | 102,0,327,3,103, | ||
14197 | 0,327,3,104,0, | ||
14198 | 327,3,105,0,327, | ||
14199 | 3,106,0,327,3, | ||
14200 | 107,0,327,3,108, | ||
14201 | 0,327,1094,11,1, | ||
14202 | 829,0,330,1,-1, | ||
14203 | 3,106,0,327,3, | ||
14204 | 107,0,327,3,108, | ||
14205 | 0,327,1095,11,1, | ||
14206 | 829,0,330,1,-1, | ||
14207 | 3,117,0,327,3, | ||
14208 | 118,0,327,3,119, | ||
14209 | 0,327,3,120,0, | ||
14210 | 327,3,121,0,327, | ||
14211 | 3,122,0,327,3, | ||
14212 | 48,0,327,3,49, | ||
14213 | 0,327,3,50,0, | ||
14214 | 327,3,51,0,327, | ||
14215 | 3,52,0,327,3, | ||
14216 | 53,0,327,3,54, | ||
14217 | 0,327,3,55,0, | ||
14218 | 327,3,56,0,327, | ||
14219 | 3,57,0,327,3, | ||
14220 | 65,0,327,3,66, | ||
14221 | 0,327,3,67,0, | ||
14222 | 327,3,68,0,327, | ||
14223 | 3,69,0,327,3, | ||
14224 | 70,0,327,3,71, | ||
14225 | 0,327,3,72,0, | ||
14226 | 327,3,73,0,327, | ||
14227 | 3,74,0,327,3, | ||
14228 | 75,0,327,3,76, | ||
14229 | 0,327,3,77,0, | ||
14230 | 327,3,78,0,327, | ||
14231 | 3,79,0,327,3, | ||
14232 | 80,0,327,3,81, | ||
14233 | 0,327,3,82,0, | ||
14234 | 327,3,83,0,327, | ||
14235 | 3,84,0,327,3, | ||
14236 | 85,0,327,3,86, | ||
14237 | 0,327,3,87,0, | ||
14238 | 327,3,88,0,327, | ||
14239 | 3,89,0,327,3, | ||
14240 | 90,0,327,3,95, | ||
14241 | 0,327,3,97,0, | ||
14242 | 327,3,98,0,327, | ||
14243 | 3,99,0,327,3, | ||
14244 | 100,0,327,3,101, | ||
14245 | 0,327,3,102,0, | ||
14246 | 327,3,103,0,327, | ||
14247 | 3,104,0,327,3, | ||
14248 | 105,0,327,3,106, | ||
14249 | 0,327,3,107,0, | ||
14250 | 327,3,108,0,327, | ||
14251 | 1096,11,1,829,0, | ||
14252 | 330,1,-1,3,97, | ||
14253 | 0,327,3,98,0, | ||
14254 | 327,3,99,0,327, | ||
14255 | 3,100,0,327,3, | ||
14256 | 101,0,327,3,102, | ||
14257 | 0,327,3,103,0, | ||
14258 | 327,3,104,0,327, | ||
14259 | 3,105,0,327,3, | ||
14260 | 106,0,327,3,107, | ||
14261 | 0,327,3,108,0, | ||
14262 | 327,1097,11,1,829, | ||
14263 | 0,330,1,-1,3, | ||
14264 | 111,0,327,3,112, | ||
14265 | 0,327,3,113,0, | ||
14266 | 327,3,114,0,327, | ||
14267 | 3,115,0,327,3, | ||
14268 | 116,0,327,3,117, | ||
14269 | 0,327,3,118,0, | ||
14270 | 327,3,119,0,327, | ||
14271 | 3,120,0,327,3, | ||
14272 | 121,0,327,3,122, | ||
14273 | 0,327,3,48,0, | ||
14274 | 327,3,49,0,327, | ||
14275 | 3,50,0,327,3, | ||
14276 | 51,0,327,3,52, | ||
14277 | 0,327,3,53,0, | ||
14278 | 327,3,54,0,327, | ||
14279 | 3,55,0,327,3, | ||
14280 | 56,0,327,3,57, | ||
14281 | 0,327,3,65,0, | ||
14282 | 327,3,66,0,327, | ||
14283 | 3,67,0,327,3, | ||
14284 | 68,0,327,3,69, | ||
14285 | 0,327,3,70,0, | ||
14286 | 327,3,71,0,327, | ||
14287 | 3,72,0,327,3, | ||
14288 | 73,0,327,3,74, | ||
14289 | 0,327,3,75,0, | ||
14290 | 327,3,76,0,327, | ||
14291 | 3,77,0,327,3, | ||
14292 | 78,0,327,3,79, | ||
14293 | 0,327,3,80,0, | ||
14294 | 327,3,81,0,327, | ||
14295 | 3,82,0,327,3, | ||
14296 | 83,0,327,3,84, | ||
14297 | 0,327,3,85,0, | ||
14298 | 327,3,86,0,327, | ||
14299 | 3,87,0,327,3, | ||
14300 | 88,0,327,3,89, | ||
14301 | 0,327,3,90,0, | ||
14302 | 327,3,95,0,327, | ||
14303 | 3,97,0,327,3, | ||
14304 | 98,0,327,3,99, | ||
14305 | 0,327,3,100,0, | ||
14306 | 327,3,101,0,327, | ||
14307 | 3,102,0,327,3, | ||
14308 | 103,0,327,3,104, | ||
14309 | 0,327,3,105,0, | ||
14310 | 327,3,106,0,327, | ||
14311 | 3,107,0,327,3, | ||
14312 | 108,0,327,1098,11, | ||
14313 | 1,829,0,330,1, | ||
14314 | -1,3,118,0,327, | ||
14315 | 3,119,0,327,3, | ||
14316 | 120,0,327,3,121, | ||
14317 | 0,327,3,122,0, | ||
14318 | 327,3,48,0,327, | ||
14319 | 3,49,0,327,3, | ||
14320 | 50,0,327,3,51, | ||
14321 | 0,327,3,52,0, | ||
14322 | 327,3,53,0,327, | ||
14323 | 3,54,0,327,3, | ||
14324 | 55,0,327,3,56, | ||
14325 | 0,327,3,57,0, | ||
14326 | 327,3,65,0,327, | ||
14327 | 3,66,0,327,3, | ||
14328 | 67,0,327,3,68, | ||
14329 | 0,327,3,69,0, | ||
14330 | 327,3,70,0,327, | ||
14331 | 3,71,0,327,3, | ||
14332 | 72,0,327,3,73, | ||
14333 | 0,327,3,74,0, | ||
14334 | 327,3,75,0,327, | ||
14335 | 3,76,0,327,3, | ||
14336 | 77,0,327,3,78, | ||
14337 | 0,327,3,79,0, | ||
14338 | 327,3,80,0,327, | ||
14339 | 3,81,0,327,3, | ||
14340 | 82,0,327,3,83, | ||
14341 | 0,327,3,84,0, | ||
14342 | 327,3,85,0,327, | ||
14343 | 3,86,0,327,3, | ||
14344 | 87,0,327,3,88, | ||
14345 | 0,327,3,89,0, | ||
14346 | 327,3,90,0,327, | ||
14347 | 3,95,0,327,3, | ||
14348 | 97,0,327,3,98, | ||
14349 | 0,327,3,99,0, | ||
14350 | 327,3,100,0,327, | ||
14351 | 3,101,0,1099,12, | ||
14352 | 1,12022,1100,5,63, | ||
14353 | 3,109,0,1101,12, | ||
14354 | 1,12050,1102,5,63, | ||
14355 | 3,109,0,327,3, | ||
14356 | 110,0,327,3,111, | ||
14357 | 0,1103,12,1,12080, | ||
14358 | 1104,5,63,3,109, | ||
14359 | 0,327,3,110,0, | ||
14360 | 327,3,111,0,327, | ||
14361 | 3,112,0,327,3, | ||
14362 | 113,0,327,3,114, | ||
14363 | 0,327,3,115,0, | ||
14364 | 327,3,116,0,1105, | ||
14365 | 12,1,12115,1106,5, | ||
14366 | 63,3,109,0,327, | ||
14367 | 3,110,0,327,3, | ||
14368 | 111,0,327,3,112, | ||
14369 | 0,327,3,113,0, | ||
14370 | 327,3,114,0,327, | ||
14371 | 3,115,0,327,3, | ||
14372 | 116,0,327,3,117, | ||
14373 | 0,327,3,118,0, | ||
14374 | 327,3,119,0,327, | ||
14375 | 3,120,0,327,3, | ||
14376 | 121,0,327,3,122, | ||
14377 | 0,327,3,48,0, | ||
14378 | 327,3,49,0,327, | ||
14379 | 3,50,0,327,3, | ||
14380 | 51,0,327,3,52, | ||
14381 | 0,327,3,53,0, | ||
14382 | 327,3,54,0,327, | ||
14383 | 3,55,0,327,3, | ||
14384 | 56,0,327,3,57, | ||
14385 | 0,327,3,65,0, | ||
14386 | 327,3,66,0,327, | ||
14387 | 3,67,0,327,3, | ||
14388 | 68,0,327,3,69, | ||
14389 | 0,327,3,70,0, | ||
14390 | 327,3,71,0,327, | ||
14391 | 3,72,0,327,3, | ||
14392 | 73,0,327,3,74, | ||
14393 | 0,327,3,75,0, | ||
14394 | 327,3,76,0,327, | ||
14395 | 3,77,0,327,3, | ||
14396 | 78,0,327,3,79, | ||
14397 | 0,327,3,80,0, | ||
14398 | 327,3,81,0,327, | ||
14399 | 3,82,0,327,3, | ||
14400 | 83,0,327,3,84, | ||
14401 | 0,327,3,85,0, | ||
14402 | 327,3,86,0,327, | ||
14403 | 3,87,0,327,3, | ||
14404 | 88,0,327,3,89, | ||
14405 | 0,327,3,90,0, | ||
14406 | 327,3,95,0,327, | ||
14407 | 3,97,0,327,3, | ||
14408 | 98,0,327,3,99, | ||
14409 | 0,327,3,100,0, | ||
14410 | 327,3,101,0,1107, | ||
14411 | 12,1,12162,1108,5, | ||
14412 | 63,3,109,0,327, | ||
14413 | 3,110,0,327,3, | ||
14414 | 111,0,327,3,112, | ||
14415 | 0,327,3,113,0, | ||
14416 | 327,3,114,0,327, | ||
14417 | 3,115,0,327,3, | ||
14418 | 116,0,327,3,117, | ||
14419 | 0,327,3,118,0, | ||
14420 | 327,3,119,0,327, | ||
14421 | 3,120,0,327,3, | ||
14422 | 121,0,327,3,122, | ||
14423 | 0,327,3,48,0, | ||
14424 | 327,3,49,0,327, | ||
14425 | 3,50,0,327,3, | ||
14426 | 51,0,327,3,52, | ||
14427 | 0,327,3,53,0, | ||
14428 | 327,3,54,0,327, | ||
14429 | 3,55,0,327,3, | ||
14430 | 56,0,327,3,57, | ||
14431 | 0,327,3,65,0, | ||
14432 | 327,3,66,0,327, | ||
14433 | 3,67,0,327,3, | ||
14434 | 68,0,327,3,69, | ||
14435 | 0,327,3,70,0, | ||
14436 | 327,3,71,0,327, | ||
14437 | 3,72,0,327,3, | ||
14438 | 73,0,327,3,74, | ||
14439 | 0,327,3,75,0, | ||
14440 | 327,3,76,0,327, | ||
14441 | 3,77,0,327,3, | ||
14442 | 78,0,327,3,79, | ||
14443 | 0,327,3,80,0, | ||
14444 | 327,3,81,0,327, | ||
14445 | 3,82,0,327,3, | ||
14446 | 83,0,327,3,84, | ||
14447 | 0,327,3,85,0, | ||
14448 | 327,3,86,0,327, | ||
14449 | 3,87,0,327,3, | ||
14450 | 88,0,327,3,89, | ||
14451 | 0,327,3,90,0, | ||
14452 | 327,3,95,0,1109, | ||
14453 | 12,1,12248,1110,5, | ||
14454 | 63,3,109,0,327, | ||
14455 | 3,110,0,327,3, | ||
14456 | 111,0,327,3,112, | ||
14457 | 0,327,3,113,0, | ||
14458 | 327,3,114,0,327, | ||
14459 | 3,115,0,327,3, | ||
14460 | 116,0,327,3,117, | ||
14461 | 0,327,3,118,0, | ||
14462 | 327,3,119,0,327, | ||
14463 | 3,120,0,327,3, | ||
14464 | 121,0,327,3,122, | ||
14465 | 0,327,3,48,0, | ||
14466 | 327,3,49,0,327, | ||
14467 | 3,50,0,327,3, | ||
14468 | 51,0,327,3,52, | ||
14469 | 0,327,3,53,0, | ||
14470 | 327,3,54,0,327, | ||
14471 | 3,55,0,327,3, | ||
14472 | 56,0,327,3,57, | ||
14473 | 0,327,3,65,0, | ||
14474 | 327,3,66,0,327, | ||
14475 | 3,67,0,327,3, | ||
14476 | 68,0,327,3,69, | ||
14477 | 0,327,3,70,0, | ||
14478 | 327,3,71,0,327, | ||
14479 | 3,72,0,327,3, | ||
14480 | 73,0,327,3,74, | ||
14481 | 0,327,3,75,0, | ||
14482 | 327,3,76,0,327, | ||
14483 | 3,77,0,327,3, | ||
14484 | 78,0,327,3,79, | ||
14485 | 0,327,3,80,0, | ||
14486 | 327,3,81,0,327, | ||
14487 | 3,82,0,327,3, | ||
14488 | 83,0,327,3,84, | ||
14489 | 0,327,3,85,0, | ||
14490 | 327,3,86,0,327, | ||
14491 | 3,87,0,327,3, | ||
14492 | 88,0,327,3,89, | ||
14493 | 0,327,3,90,0, | ||
14494 | 327,3,95,0,327, | ||
14495 | 3,97,0,327,3, | ||
14496 | 98,0,327,3,99, | ||
14497 | 0,327,3,100,0, | ||
14498 | 1111,12,1,12294,1112, | ||
14499 | 5,63,3,109,0, | ||
14500 | 327,3,110,0,327, | ||
14501 | 3,111,0,327,3, | ||
14502 | 112,0,327,3,113, | ||
14503 | 0,327,3,114,0, | ||
14504 | 327,3,115,0,327, | ||
14505 | 3,116,0,327,3, | ||
14506 | 117,0,327,3,118, | ||
14507 | 0,327,3,119,0, | ||
14508 | 327,3,120,0,327, | ||
14509 | 3,121,0,327,3, | ||
14510 | 122,0,327,3,48, | ||
14511 | 0,327,3,49,0, | ||
14512 | 327,3,50,0,327, | ||
14513 | 3,51,0,327,3, | ||
14514 | 52,0,327,3,53, | ||
14515 | 0,327,3,54,0, | ||
14516 | 327,3,55,0,327, | ||
14517 | 3,56,0,327,3, | ||
14518 | 57,0,327,3,65, | ||
14519 | 0,327,3,66,0, | ||
14520 | 327,3,67,0,327, | ||
14521 | 3,68,0,327,3, | ||
14522 | 69,0,327,3,70, | ||
14523 | 0,327,3,71,0, | ||
14524 | 327,3,72,0,327, | ||
14525 | 3,73,0,327,3, | ||
14526 | 74,0,327,3,75, | ||
14527 | 0,327,3,76,0, | ||
14528 | 327,3,77,0,327, | ||
14529 | 3,78,0,327,3, | ||
14530 | 79,0,327,3,80, | ||
14531 | 0,327,3,81,0, | ||
14532 | 327,3,82,0,327, | ||
14533 | 3,83,0,327,3, | ||
14534 | 84,0,327,3,85, | ||
14535 | 0,327,3,86,0, | ||
14536 | 327,3,87,0,327, | ||
14537 | 3,88,0,327,3, | ||
14538 | 89,0,327,3,90, | ||
14539 | 0,327,3,95,0, | ||
14540 | 327,3,97,0,1113, | ||
14541 | 12,1,12337,1114,5, | ||
14542 | 63,3,109,0,327, | ||
14543 | 3,110,0,327,3, | ||
14544 | 111,0,327,3,112, | ||
14545 | 0,327,3,113,0, | ||
14546 | 327,3,114,0,327, | ||
14547 | 3,115,0,327,3, | ||
14548 | 116,0,1115,12,1, | ||
14549 | 12372,1116,5,63,3, | ||
14550 | 109,0,327,3,110, | ||
14551 | 0,327,3,111,0, | ||
14552 | 327,3,112,0,327, | ||
14553 | 3,113,0,327,3, | ||
14554 | 114,0,327,3,115, | ||
14555 | 0,327,3,116,0, | ||
14556 | 327,3,117,0,327, | ||
14557 | 3,118,0,327,3, | ||
14558 | 119,0,327,3,120, | ||
14559 | 0,327,3,121,0, | ||
14560 | 327,3,122,0,327, | ||
14561 | 3,48,0,327,3, | ||
14562 | 49,0,327,3,50, | ||
14563 | 0,327,3,51,0, | ||
14564 | 327,3,52,0,327, | ||
14565 | 3,53,0,327,3, | ||
14566 | 54,0,327,3,55, | ||
14567 | 0,327,3,56,0, | ||
14568 | 327,3,57,0,327, | ||
14569 | 3,65,0,327,3, | ||
14570 | 66,0,327,3,67, | ||
14571 | 0,327,3,68,0, | ||
14572 | 327,3,69,0,327, | ||
14573 | 3,70,0,327,3, | ||
14574 | 71,0,327,3,72, | ||
14575 | 0,327,3,73,0, | ||
14576 | 327,3,74,0,327, | ||
14577 | 3,75,0,327,3, | ||
14578 | 76,0,327,3,77, | ||
14579 | 0,327,3,78,0, | ||
14580 | 327,3,79,0,327, | ||
14581 | 3,80,0,327,3, | ||
14582 | 81,0,327,3,82, | ||
14583 | 0,327,3,83,0, | ||
14584 | 327,3,84,0,327, | ||
14585 | 3,85,0,327,3, | ||
14586 | 86,0,327,3,87, | ||
14587 | 0,327,3,88,0, | ||
14588 | 327,3,89,0,327, | ||
14589 | 3,90,0,327,3, | ||
14590 | 95,0,327,3,97, | ||
14591 | 0,1117,12,1,12415, | ||
14592 | 1118,5,63,3,109, | ||
14593 | 0,327,3,110,0, | ||
14594 | 327,3,111,0,327, | ||
14595 | 3,112,0,327,3, | ||
14596 | 113,0,327,3,114, | ||
14597 | 0,327,3,115,0, | ||
14598 | 327,3,116,0,327, | ||
14599 | 3,117,0,327,3, | ||
14600 | 118,0,327,3,119, | ||
14601 | 0,327,3,120,0, | ||
14602 | 327,3,121,0,327, | ||
14603 | 3,122,0,327,3, | ||
14604 | 48,0,327,3,49, | ||
14605 | 0,327,3,50,0, | ||
14606 | 327,3,51,0,327, | ||
14607 | 3,52,0,327,3, | ||
14608 | 53,0,327,3,54, | ||
14609 | 0,327,3,55,0, | ||
14610 | 327,3,56,0,327, | ||
14611 | 3,57,0,327,3, | ||
14612 | 65,0,327,3,66, | ||
14613 | 0,327,3,67,0, | ||
14614 | 327,3,68,0,327, | ||
14615 | 3,69,0,327,3, | ||
14616 | 70,0,327,3,71, | ||
14617 | 0,327,3,72,0, | ||
14618 | 327,3,73,0,327, | ||
14619 | 3,74,0,327,3, | ||
14620 | 75,0,327,3,76, | ||
14621 | 0,327,3,77,0, | ||
14622 | 327,3,78,0,327, | ||
14623 | 3,79,0,327,3, | ||
14624 | 80,0,327,3,81, | ||
14625 | 0,327,3,82,0, | ||
14626 | 327,3,83,0,327, | ||
14627 | 3,84,0,327,3, | ||
14628 | 85,0,327,3,86, | ||
14629 | 0,327,3,87,0, | ||
14630 | 327,3,88,0,327, | ||
14631 | 3,89,0,327,3, | ||
14632 | 90,0,327,3,95, | ||
14633 | 0,327,3,97,0, | ||
14634 | 327,3,98,0,327, | ||
14635 | 3,99,0,327,3, | ||
14636 | 100,0,327,3,101, | ||
14637 | 0,327,3,102,0, | ||
14638 | 327,3,103,0,327, | ||
14639 | 3,104,0,327,3, | ||
14640 | 105,0,327,3,106, | ||
14641 | 0,327,3,107,0, | ||
14642 | 327,3,108,0,327, | ||
14643 | 1119,11,1,705,0, | ||
14644 | 1120,4,34,82,0, | ||
14645 | 69,0,77,0,79, | ||
14646 | 0,84,0,69,0, | ||
14647 | 95,0,68,0,65, | ||
14648 | 0,84,0,65,0, | ||
14649 | 95,0,69,0,86, | ||
14650 | 0,69,0,78,0, | ||
14651 | 84,0,1,-1,3, | ||
14652 | 98,0,327,3,99, | ||
14653 | 0,327,3,100,0, | ||
14654 | 327,3,101,0,327, | ||
14655 | 3,102,0,327,3, | ||
14656 | 103,0,327,3,104, | ||
14657 | 0,327,3,105,0, | ||
14658 | 327,3,106,0,327, | ||
14659 | 3,107,0,327,3, | ||
14660 | 108,0,327,1121,11, | ||
14661 | 1,829,0,330,1, | ||
14662 | -1,3,117,0,327, | ||
14663 | 3,118,0,327,3, | ||
14664 | 119,0,327,3,120, | ||
14665 | 0,327,3,121,0, | ||
14666 | 327,3,122,0,327, | ||
14667 | 3,48,0,327,3, | ||
14668 | 49,0,327,3,50, | ||
14669 | 0,327,3,51,0, | ||
14670 | 327,3,52,0,327, | ||
14671 | 3,53,0,327,3, | ||
14672 | 54,0,327,3,55, | ||
14673 | 0,327,3,56,0, | ||
14674 | 327,3,57,0,327, | ||
14675 | 3,65,0,327,3, | ||
14676 | 66,0,327,3,67, | ||
14677 | 0,327,3,68,0, | ||
14678 | 327,3,69,0,327, | ||
14679 | 3,70,0,327,3, | ||
14680 | 71,0,327,3,72, | ||
14681 | 0,327,3,73,0, | ||
14682 | 327,3,74,0,327, | ||
14683 | 3,75,0,327,3, | ||
14684 | 76,0,327,3,77, | ||
14685 | 0,327,3,78,0, | ||
14686 | 327,3,79,0,327, | ||
14687 | 3,80,0,327,3, | ||
14688 | 81,0,327,3,82, | ||
14689 | 0,327,3,83,0, | ||
14690 | 327,3,84,0,327, | ||
14691 | 3,85,0,327,3, | ||
14692 | 86,0,327,3,87, | ||
14693 | 0,327,3,88,0, | ||
14694 | 327,3,89,0,327, | ||
14695 | 3,90,0,327,3, | ||
14696 | 95,0,327,3,97, | ||
14697 | 0,327,3,98,0, | ||
14698 | 327,3,99,0,327, | ||
14699 | 3,100,0,327,3, | ||
14700 | 101,0,327,3,102, | ||
14701 | 0,327,3,103,0, | ||
14702 | 327,3,104,0,327, | ||
14703 | 3,105,0,327,3, | ||
14704 | 106,0,327,3,107, | ||
14705 | 0,327,3,108,0, | ||
14706 | 327,1122,11,1,829, | ||
14707 | 0,330,1,-1,3, | ||
14708 | 98,0,327,3,99, | ||
14709 | 0,327,3,100,0, | ||
14710 | 327,3,101,0,327, | ||
14711 | 3,102,0,327,3, | ||
14712 | 103,0,327,3,104, | ||
14713 | 0,327,3,105,0, | ||
14714 | 327,3,106,0,327, | ||
14715 | 3,107,0,327,3, | ||
14716 | 108,0,327,1123,11, | ||
14717 | 1,829,0,330,1, | ||
14718 | -1,3,101,0,327, | ||
14719 | 3,102,0,327,3, | ||
14720 | 103,0,327,3,104, | ||
14721 | 0,327,3,105,0, | ||
14722 | 327,3,106,0,327, | ||
14723 | 3,107,0,327,3, | ||
14724 | 108,0,327,1124,11, | ||
14725 | 1,829,0,330,1, | ||
14726 | -1,3,97,0,327, | ||
14727 | 3,98,0,327,3, | ||
14728 | 99,0,327,3,100, | ||
14729 | 0,327,3,101,0, | ||
14730 | 327,3,102,0,327, | ||
14731 | 3,103,0,327,3, | ||
14732 | 104,0,327,3,105, | ||
14733 | 0,327,3,106,0, | ||
14734 | 327,3,107,0,327, | ||
14735 | 3,108,0,327,1125, | ||
14736 | 11,1,829,0,330, | ||
14737 | 1,-1,3,102,0, | ||
14738 | 327,3,103,0,327, | ||
14739 | 3,104,0,327,3, | ||
14740 | 105,0,327,3,106, | ||
14741 | 0,327,3,107,0, | ||
14742 | 327,3,108,0,327, | ||
14743 | 1126,11,1,829,0, | ||
14744 | 330,1,-1,3,117, | ||
14745 | 0,327,3,118,0, | ||
14746 | 327,3,119,0,327, | ||
14747 | 3,120,0,327,3, | ||
14748 | 121,0,327,3,122, | ||
14749 | 0,327,3,48,0, | ||
14750 | 327,3,49,0,327, | ||
14751 | 3,50,0,327,3, | ||
14752 | 51,0,327,3,52, | ||
14753 | 0,327,3,53,0, | ||
14754 | 327,3,54,0,327, | ||
14755 | 3,55,0,327,3, | ||
14756 | 56,0,327,3,57, | ||
14757 | 0,327,3,65,0, | ||
14758 | 327,3,66,0,327, | ||
14759 | 3,67,0,327,3, | ||
14760 | 68,0,327,3,69, | ||
14761 | 0,327,3,70,0, | ||
14762 | 327,3,71,0,327, | ||
14763 | 3,72,0,327,3, | ||
14764 | 73,0,327,3,74, | ||
14765 | 0,327,3,75,0, | ||
14766 | 327,3,76,0,327, | ||
14767 | 3,77,0,327,3, | ||
14768 | 78,0,327,3,79, | ||
14769 | 0,327,3,80,0, | ||
14770 | 327,3,81,0,327, | ||
14771 | 3,82,0,327,3, | ||
14772 | 83,0,327,3,84, | ||
14773 | 0,327,3,85,0, | ||
14774 | 327,3,86,0,327, | ||
14775 | 3,87,0,327,3, | ||
14776 | 88,0,327,3,89, | ||
14777 | 0,327,3,90,0, | ||
14778 | 327,3,95,0,327, | ||
14779 | 3,97,0,327,3, | ||
14780 | 98,0,327,3,99, | ||
14781 | 0,327,3,100,0, | ||
14782 | 327,3,101,0,327, | ||
14783 | 3,102,0,327,3, | ||
14784 | 103,0,327,3,104, | ||
14785 | 0,327,3,105,0, | ||
14786 | 327,3,106,0,327, | ||
14787 | 3,107,0,327,3, | ||
14788 | 108,0,327,1127,11, | ||
14789 | 1,829,0,330,1, | ||
14790 | -1,3,112,0,327, | ||
14791 | 3,113,0,327,3, | ||
14792 | 114,0,327,3,115, | ||
14793 | 0,327,3,116,0, | ||
14794 | 327,3,117,0,327, | ||
14795 | 3,118,0,327,3, | ||
14796 | 119,0,327,3,120, | ||
14797 | 0,327,3,121,0, | ||
14798 | 327,3,122,0,327, | ||
14799 | 3,48,0,327,3, | ||
14800 | 49,0,327,3,50, | ||
14801 | 0,327,3,51,0, | ||
14802 | 327,3,52,0,327, | ||
14803 | 3,53,0,327,3, | ||
14804 | 54,0,327,3,55, | ||
14805 | 0,327,3,56,0, | ||
14806 | 327,3,57,0,327, | ||
14807 | 3,65,0,327,3, | ||
14808 | 66,0,327,3,67, | ||
14809 | 0,327,3,68,0, | ||
14810 | 327,3,69,0,327, | ||
14811 | 3,70,0,327,3, | ||
14812 | 71,0,327,3,72, | ||
14813 | 0,327,3,73,0, | ||
14814 | 327,3,74,0,327, | ||
14815 | 3,75,0,327,3, | ||
14816 | 76,0,327,3,77, | ||
14817 | 0,327,3,78,0, | ||
14818 | 327,3,79,0,327, | ||
14819 | 3,80,0,327,3, | ||
14820 | 81,0,327,3,82, | ||
14821 | 0,327,3,83,0, | ||
14822 | 327,3,84,0,327, | ||
14823 | 3,85,0,327,3, | ||
14824 | 86,0,327,3,87, | ||
14825 | 0,327,3,88,0, | ||
14826 | 327,3,89,0,327, | ||
14827 | 3,90,0,327,3, | ||
14828 | 95,0,327,3,97, | ||
14829 | 0,327,3,98,0, | ||
14830 | 327,3,99,0,327, | ||
14831 | 3,100,0,327,3, | ||
14832 | 101,0,327,3,102, | ||
14833 | 0,327,3,103,0, | ||
14834 | 327,3,104,0,327, | ||
14835 | 3,105,0,327,3, | ||
14836 | 106,0,327,3,107, | ||
14837 | 0,327,3,108,0, | ||
14838 | 327,1128,11,1,829, | ||
14839 | 0,330,1,-1,3, | ||
14840 | 110,0,327,3,111, | ||
14841 | 0,327,3,112,0, | ||
14842 | 327,3,113,0,327, | ||
14843 | 3,114,0,327,3, | ||
14844 | 115,0,327,3,116, | ||
14845 | 0,1129,12,1,13137, | ||
14846 | 1130,5,63,3,109, | ||
14847 | 0,327,3,110,0, | ||
14848 | 327,3,111,0,327, | ||
14849 | 3,112,0,327,3, | ||
14850 | 113,0,327,3,114, | ||
14851 | 0,327,3,115,0, | ||
14852 | 327,3,116,0,327, | ||
14853 | 3,117,0,1131,12, | ||
14854 | 1,13173,1132,5,63, | ||
14855 | 3,109,0,327,3, | ||
14856 | 110,0,327,3,111, | ||
14857 | 0,327,3,112,0, | ||
14858 | 327,3,113,0,327, | ||
14859 | 3,114,0,1133,12, | ||
14860 | 1,13206,1134,5,63, | ||
14861 | 3,109,0,327,3, | ||
14862 | 110,0,1135,12,1, | ||
14863 | 13235,1136,5,63,3, | ||
14864 | 109,0,327,3,110, | ||
14865 | 0,327,3,111,0, | ||
14866 | 327,3,112,0,327, | ||
14867 | 3,113,0,327,3, | ||
14868 | 114,0,327,3,115, | ||
14869 | 0,327,3,116,0, | ||
14870 | 327,3,117,0,327, | ||
14871 | 3,118,0,327,3, | ||
14872 | 119,0,327,3,120, | ||
14873 | 0,327,3,121,0, | ||
14874 | 327,3,122,0,327, | ||
14875 | 3,48,0,327,3, | ||
14876 | 49,0,327,3,50, | ||
14877 | 0,327,3,51,0, | ||
14878 | 327,3,52,0,327, | ||
14879 | 3,53,0,327,3, | ||
14880 | 54,0,327,3,55, | ||
14881 | 0,327,3,56,0, | ||
14882 | 327,3,57,0,327, | ||
14883 | 3,65,0,327,3, | ||
14884 | 66,0,327,3,67, | ||
14885 | 0,327,3,68,0, | ||
14886 | 327,3,69,0,327, | ||
14887 | 3,70,0,327,3, | ||
14888 | 71,0,327,3,72, | ||
14889 | 0,327,3,73,0, | ||
14890 | 327,3,74,0,327, | ||
14891 | 3,75,0,327,3, | ||
14892 | 76,0,327,3,77, | ||
14893 | 0,327,3,78,0, | ||
14894 | 327,3,79,0,327, | ||
14895 | 3,80,0,327,3, | ||
14896 | 81,0,327,3,82, | ||
14897 | 0,327,3,83,0, | ||
14898 | 327,3,84,0,327, | ||
14899 | 3,85,0,327,3, | ||
14900 | 86,0,327,3,87, | ||
14901 | 0,327,3,88,0, | ||
14902 | 327,3,89,0,327, | ||
14903 | 3,90,0,327,3, | ||
14904 | 95,0,327,3,97, | ||
14905 | 0,327,3,98,0, | ||
14906 | 327,3,99,0,327, | ||
14907 | 3,100,0,327,3, | ||
14908 | 101,0,327,3,102, | ||
14909 | 0,327,3,103,0, | ||
14910 | 327,3,104,0,327, | ||
14911 | 3,105,0,327,3, | ||
14912 | 106,0,327,3,107, | ||
14913 | 0,327,3,108,0, | ||
14914 | 327,1137,11,1,273, | ||
14915 | 0,1138,4,12,82, | ||
14916 | 0,69,0,84,0, | ||
14917 | 85,0,82,0,78, | ||
14918 | 0,1,-1,3,111, | ||
14919 | 0,327,3,112,0, | ||
14920 | 327,3,113,0,327, | ||
14921 | 3,114,0,327,3, | ||
14922 | 115,0,327,3,116, | ||
14923 | 0,327,3,117,0, | ||
14924 | 327,3,118,0,327, | ||
14925 | 3,119,0,327,3, | ||
14926 | 120,0,327,3,121, | ||
14927 | 0,327,3,122,0, | ||
14928 | 327,3,48,0,327, | ||
14929 | 3,49,0,327,3, | ||
14930 | 50,0,327,3,51, | ||
14931 | 0,327,3,52,0, | ||
14932 | 327,3,53,0,327, | ||
14933 | 3,54,0,327,3, | ||
14934 | 55,0,327,3,56, | ||
14935 | 0,327,3,57,0, | ||
14936 | 327,3,65,0,327, | ||
14937 | 3,66,0,327,3, | ||
14938 | 67,0,327,3,68, | ||
14939 | 0,327,3,69,0, | ||
14940 | 327,3,70,0,327, | ||
14941 | 3,71,0,327,3, | ||
14942 | 72,0,327,3,73, | ||
14943 | 0,327,3,74,0, | ||
14944 | 327,3,75,0,327, | ||
14945 | 3,76,0,327,3, | ||
14946 | 77,0,327,3,78, | ||
14947 | 0,327,3,79,0, | ||
14948 | 327,3,80,0,327, | ||
14949 | 3,81,0,327,3, | ||
14950 | 82,0,327,3,83, | ||
14951 | 0,327,3,84,0, | ||
14952 | 327,3,85,0,327, | ||
14953 | 3,86,0,327,3, | ||
14954 | 87,0,327,3,88, | ||
14955 | 0,327,3,89,0, | ||
14956 | 327,3,90,0,327, | ||
14957 | 3,95,0,327,3, | ||
14958 | 97,0,327,3,98, | ||
14959 | 0,327,3,99,0, | ||
14960 | 327,3,100,0,327, | ||
14961 | 3,101,0,327,3, | ||
14962 | 102,0,327,3,103, | ||
14963 | 0,327,3,104,0, | ||
14964 | 327,3,105,0,327, | ||
14965 | 3,106,0,327,3, | ||
14966 | 107,0,327,3,108, | ||
14967 | 0,327,1139,11,1, | ||
14968 | 829,0,330,1,-1, | ||
14969 | 3,115,0,327,3, | ||
14970 | 116,0,327,3,117, | ||
14971 | 0,327,3,118,0, | ||
14972 | 327,3,119,0,327, | ||
14973 | 3,120,0,327,3, | ||
14974 | 121,0,327,3,122, | ||
14975 | 0,327,3,48,0, | ||
14976 | 327,3,49,0,327, | ||
14977 | 3,50,0,327,3, | ||
14978 | 51,0,327,3,52, | ||
14979 | 0,327,3,53,0, | ||
14980 | 327,3,54,0,327, | ||
14981 | 3,55,0,327,3, | ||
14982 | 56,0,327,3,57, | ||
14983 | 0,327,3,65,0, | ||
14984 | 327,3,66,0,327, | ||
14985 | 3,67,0,327,3, | ||
14986 | 68,0,327,3,69, | ||
14987 | 0,327,3,70,0, | ||
14988 | 327,3,71,0,327, | ||
14989 | 3,72,0,327,3, | ||
14990 | 73,0,327,3,74, | ||
14991 | 0,327,3,75,0, | ||
14992 | 327,3,76,0,327, | ||
14993 | 3,77,0,327,3, | ||
14994 | 78,0,327,3,79, | ||
14995 | 0,327,3,80,0, | ||
14996 | 327,3,81,0,327, | ||
14997 | 3,82,0,327,3, | ||
14998 | 83,0,327,3,84, | ||
14999 | 0,327,3,85,0, | ||
15000 | 327,3,86,0,327, | ||
15001 | 3,87,0,327,3, | ||
15002 | 88,0,327,3,89, | ||
15003 | 0,327,3,90,0, | ||
15004 | 327,3,95,0,327, | ||
15005 | 3,97,0,327,3, | ||
15006 | 98,0,327,3,99, | ||
15007 | 0,327,3,100,0, | ||
15008 | 327,3,101,0,327, | ||
15009 | 3,102,0,327,3, | ||
15010 | 103,0,327,3,104, | ||
15011 | 0,327,3,105,0, | ||
15012 | 327,3,106,0,327, | ||
15013 | 3,107,0,327,3, | ||
15014 | 108,0,327,1140,11, | ||
15015 | 1,829,0,330,1, | ||
15016 | -1,3,118,0,327, | ||
15017 | 3,119,0,327,3, | ||
15018 | 120,0,327,3,121, | ||
15019 | 0,327,3,122,0, | ||
15020 | 327,3,48,0,327, | ||
15021 | 3,49,0,327,3, | ||
15022 | 50,0,327,3,51, | ||
15023 | 0,327,3,52,0, | ||
15024 | 327,3,53,0,327, | ||
15025 | 3,54,0,327,3, | ||
15026 | 55,0,327,3,56, | ||
15027 | 0,327,3,57,0, | ||
15028 | 327,3,65,0,327, | ||
15029 | 3,66,0,327,3, | ||
15030 | 67,0,327,3,68, | ||
15031 | 0,327,3,69,0, | ||
15032 | 327,3,70,0,327, | ||
15033 | 3,71,0,327,3, | ||
15034 | 72,0,327,3,73, | ||
15035 | 0,327,3,74,0, | ||
15036 | 327,3,75,0,327, | ||
15037 | 3,76,0,327,3, | ||
15038 | 77,0,327,3,78, | ||
15039 | 0,327,3,79,0, | ||
15040 | 327,3,80,0,327, | ||
15041 | 3,81,0,327,3, | ||
15042 | 82,0,327,3,83, | ||
15043 | 0,327,3,84,0, | ||
15044 | 327,3,85,0,327, | ||
15045 | 3,86,0,327,3, | ||
15046 | 87,0,327,3,88, | ||
15047 | 0,327,3,89,0, | ||
15048 | 327,3,90,0,327, | ||
15049 | 3,95,0,327,3, | ||
15050 | 97,0,327,3,98, | ||
15051 | 0,327,3,99,0, | ||
15052 | 327,3,100,0,327, | ||
15053 | 3,101,0,327,3, | ||
15054 | 102,0,327,3,103, | ||
15055 | 0,327,3,104,0, | ||
15056 | 327,3,105,0,327, | ||
15057 | 3,106,0,327,3, | ||
15058 | 107,0,327,3,108, | ||
15059 | 0,327,1141,11,1, | ||
15060 | 829,0,330,1,-1, | ||
15061 | 3,117,0,327,3, | ||
15062 | 118,0,327,3,119, | ||
15063 | 0,327,3,120,0, | ||
15064 | 327,3,121,0,327, | ||
15065 | 3,122,0,327,3, | ||
15066 | 48,0,327,3,49, | ||
15067 | 0,327,3,50,0, | ||
15068 | 327,3,51,0,327, | ||
15069 | 3,52,0,327,3, | ||
15070 | 53,0,327,3,54, | ||
15071 | 0,327,3,55,0, | ||
15072 | 327,3,56,0,327, | ||
15073 | 3,57,0,327,3, | ||
15074 | 65,0,327,3,66, | ||
15075 | 0,327,3,67,0, | ||
15076 | 327,3,68,0,327, | ||
15077 | 3,69,0,327,3, | ||
15078 | 70,0,327,3,71, | ||
15079 | 0,327,3,72,0, | ||
15080 | 327,3,73,0,327, | ||
15081 | 3,74,0,327,3, | ||
15082 | 75,0,327,3,76, | ||
15083 | 0,327,3,77,0, | ||
15084 | 327,3,78,0,327, | ||
15085 | 3,79,0,327,3, | ||
15086 | 80,0,327,3,81, | ||
15087 | 0,327,3,82,0, | ||
15088 | 327,3,83,0,327, | ||
15089 | 3,84,0,327,3, | ||
15090 | 85,0,327,3,86, | ||
15091 | 0,327,3,87,0, | ||
15092 | 327,3,88,0,327, | ||
15093 | 3,89,0,327,3, | ||
15094 | 90,0,327,3,95, | ||
15095 | 0,327,3,97,0, | ||
15096 | 327,3,98,0,327, | ||
15097 | 3,99,0,327,3, | ||
15098 | 100,0,327,3,101, | ||
15099 | 0,327,3,102,0, | ||
15100 | 327,3,103,0,327, | ||
15101 | 3,104,0,327,3, | ||
15102 | 105,0,327,3,106, | ||
15103 | 0,327,3,107,0, | ||
15104 | 327,3,108,0,327, | ||
15105 | 1142,11,1,829,0, | ||
15106 | 330,1,-1,3,102, | ||
15107 | 0,327,3,103,0, | ||
15108 | 327,3,104,0,327, | ||
15109 | 3,105,0,327,3, | ||
15110 | 106,0,327,3,107, | ||
15111 | 0,327,3,108,0, | ||
15112 | 327,1143,11,1,829, | ||
15113 | 0,330,1,-1,3, | ||
15114 | 115,0,1144,12,1, | ||
15115 | 13776,1145,5,63,3, | ||
15116 | 109,0,327,3,110, | ||
15117 | 0,327,3,111,0, | ||
15118 | 327,3,112,0,327, | ||
15119 | 3,113,0,327,3, | ||
15120 | 114,0,327,3,115, | ||
15121 | 0,327,3,116,0, | ||
15122 | 1146,12,1,13811,1147, | ||
15123 | 5,63,3,109,0, | ||
15124 | 327,3,110,0,327, | ||
15125 | 3,111,0,327,3, | ||
15126 | 112,0,327,3,113, | ||
15127 | 0,327,3,114,0, | ||
15128 | 1148,12,1,13844,1149, | ||
15129 | 5,63,3,109,0, | ||
15130 | 327,3,110,0,327, | ||
15131 | 3,111,0,327,3, | ||
15132 | 112,0,327,3,113, | ||
15133 | 0,327,3,114,0, | ||
15134 | 327,3,115,0,327, | ||
15135 | 3,116,0,327,3, | ||
15136 | 117,0,327,3,118, | ||
15137 | 0,327,3,119,0, | ||
15138 | 327,3,120,0,327, | ||
15139 | 3,121,0,327,3, | ||
15140 | 122,0,327,3,48, | ||
15141 | 0,327,3,49,0, | ||
15142 | 327,3,50,0,327, | ||
15143 | 3,51,0,327,3, | ||
15144 | 52,0,327,3,53, | ||
15145 | 0,327,3,54,0, | ||
15146 | 327,3,55,0,327, | ||
15147 | 3,56,0,327,3, | ||
15148 | 57,0,327,3,65, | ||
15149 | 0,327,3,66,0, | ||
15150 | 327,3,67,0,327, | ||
15151 | 3,68,0,327,3, | ||
15152 | 69,0,327,3,70, | ||
15153 | 0,327,3,71,0, | ||
15154 | 327,3,72,0,327, | ||
15155 | 3,73,0,327,3, | ||
15156 | 74,0,327,3,75, | ||
15157 | 0,327,3,76,0, | ||
15158 | 327,3,77,0,327, | ||
15159 | 3,78,0,327,3, | ||
15160 | 79,0,327,3,80, | ||
15161 | 0,327,3,81,0, | ||
15162 | 327,3,82,0,327, | ||
15163 | 3,83,0,327,3, | ||
15164 | 84,0,327,3,85, | ||
15165 | 0,327,3,86,0, | ||
15166 | 327,3,87,0,327, | ||
15167 | 3,88,0,327,3, | ||
15168 | 89,0,327,3,90, | ||
15169 | 0,327,3,95,0, | ||
15170 | 327,3,97,0,327, | ||
15171 | 3,98,0,327,3, | ||
15172 | 99,0,327,3,100, | ||
15173 | 0,327,3,101,0, | ||
15174 | 327,3,102,0,327, | ||
15175 | 3,103,0,327,3, | ||
15176 | 104,0,327,3,105, | ||
15177 | 0,1150,12,1,13895, | ||
15178 | 1151,5,63,3,109, | ||
15179 | 0,327,3,110,0, | ||
15180 | 1152,12,1,13924,1153, | ||
15181 | 5,63,3,109,0, | ||
15182 | 327,3,110,0,327, | ||
15183 | 3,111,0,327,3, | ||
15184 | 112,0,327,3,113, | ||
15185 | 0,327,3,114,0, | ||
15186 | 327,3,115,0,327, | ||
15187 | 3,116,0,327,3, | ||
15188 | 117,0,327,3,118, | ||
15189 | 0,327,3,119,0, | ||
15190 | 327,3,120,0,327, | ||
15191 | 3,121,0,327,3, | ||
15192 | 122,0,327,3,48, | ||
15193 | 0,327,3,49,0, | ||
15194 | 327,3,50,0,327, | ||
15195 | 3,51,0,327,3, | ||
15196 | 52,0,327,3,53, | ||
15197 | 0,327,3,54,0, | ||
15198 | 327,3,55,0,327, | ||
15199 | 3,56,0,327,3, | ||
15200 | 57,0,327,3,65, | ||
15201 | 0,327,3,66,0, | ||
15202 | 327,3,67,0,327, | ||
15203 | 3,68,0,327,3, | ||
15204 | 69,0,327,3,70, | ||
15205 | 0,327,3,71,0, | ||
15206 | 327,3,72,0,327, | ||
15207 | 3,73,0,327,3, | ||
15208 | 74,0,327,3,75, | ||
15209 | 0,327,3,76,0, | ||
15210 | 327,3,77,0,327, | ||
15211 | 3,78,0,327,3, | ||
15212 | 79,0,327,3,80, | ||
15213 | 0,327,3,81,0, | ||
15214 | 327,3,82,0,327, | ||
15215 | 3,83,0,327,3, | ||
15216 | 84,0,327,3,85, | ||
15217 | 0,327,3,86,0, | ||
15218 | 327,3,87,0,327, | ||
15219 | 3,88,0,327,3, | ||
15220 | 89,0,327,3,90, | ||
15221 | 0,327,3,95,0, | ||
15222 | 327,3,97,0,327, | ||
15223 | 3,98,0,327,3, | ||
15224 | 99,0,327,3,100, | ||
15225 | 0,327,3,101,0, | ||
15226 | 327,3,102,0,327, | ||
15227 | 3,103,0,1154,12, | ||
15228 | 1,13973,1155,5,63, | ||
15229 | 3,109,0,327,3, | ||
15230 | 110,0,327,3,111, | ||
15231 | 0,327,3,112,0, | ||
15232 | 327,3,113,0,327, | ||
15233 | 3,114,0,327,3, | ||
15234 | 115,0,327,3,116, | ||
15235 | 0,327,3,117,0, | ||
15236 | 327,3,118,0,327, | ||
15237 | 3,119,0,327,3, | ||
15238 | 120,0,327,3,121, | ||
15239 | 0,327,3,122,0, | ||
15240 | 327,3,48,0,327, | ||
15241 | 3,49,0,327,3, | ||
15242 | 50,0,327,3,51, | ||
15243 | 0,327,3,52,0, | ||
15244 | 327,3,53,0,327, | ||
15245 | 3,54,0,327,3, | ||
15246 | 55,0,327,3,56, | ||
15247 | 0,327,3,57,0, | ||
15248 | 327,3,65,0,327, | ||
15249 | 3,66,0,327,3, | ||
15250 | 67,0,327,3,68, | ||
15251 | 0,327,3,69,0, | ||
15252 | 327,3,70,0,327, | ||
15253 | 3,71,0,327,3, | ||
15254 | 72,0,327,3,73, | ||
15255 | 0,327,3,74,0, | ||
15256 | 327,3,75,0,327, | ||
15257 | 3,76,0,327,3, | ||
15258 | 77,0,327,3,78, | ||
15259 | 0,327,3,79,0, | ||
15260 | 327,3,80,0,327, | ||
15261 | 3,81,0,327,3, | ||
15262 | 82,0,327,3,83, | ||
15263 | 0,327,3,84,0, | ||
15264 | 327,3,85,0,327, | ||
15265 | 3,86,0,327,3, | ||
15266 | 87,0,327,3,88, | ||
15267 | 0,327,3,89,0, | ||
15268 | 327,3,90,0,327, | ||
15269 | 3,95,0,327,3, | ||
15270 | 97,0,327,3,98, | ||
15271 | 0,327,3,99,0, | ||
15272 | 327,3,100,0,327, | ||
15273 | 3,101,0,327,3, | ||
15274 | 102,0,327,3,103, | ||
15275 | 0,327,3,104,0, | ||
15276 | 327,3,105,0,327, | ||
15277 | 3,106,0,327,3, | ||
15278 | 107,0,327,3,108, | ||
15279 | 0,327,1156,11,1, | ||
15280 | 303,0,1157,4,22, | ||
15281 | 83,0,84,0,82, | ||
15282 | 0,73,0,78,0, | ||
15283 | 71,0,95,0,84, | ||
15284 | 0,89,0,80,0, | ||
15285 | 69,0,1,-1,3, | ||
15286 | 104,0,327,3,105, | ||
15287 | 0,327,3,106,0, | ||
15288 | 327,3,107,0,327, | ||
15289 | 3,108,0,327,1158, | ||
15290 | 11,1,829,0,330, | ||
15291 | 1,-1,3,111,0, | ||
15292 | 327,3,112,0,327, | ||
15293 | 3,113,0,327,3, | ||
15294 | 114,0,327,3,115, | ||
15295 | 0,327,3,116,0, | ||
15296 | 327,3,117,0,327, | ||
15297 | 3,118,0,327,3, | ||
15298 | 119,0,327,3,120, | ||
15299 | 0,327,3,121,0, | ||
15300 | 327,3,122,0,327, | ||
15301 | 3,48,0,327,3, | ||
15302 | 49,0,327,3,50, | ||
15303 | 0,327,3,51,0, | ||
15304 | 327,3,52,0,327, | ||
15305 | 3,53,0,327,3, | ||
15306 | 54,0,327,3,55, | ||
15307 | 0,327,3,56,0, | ||
15308 | 327,3,57,0,327, | ||
15309 | 3,65,0,327,3, | ||
15310 | 66,0,327,3,67, | ||
15311 | 0,327,3,68,0, | ||
15312 | 327,3,69,0,327, | ||
15313 | 3,70,0,327,3, | ||
15314 | 71,0,327,3,72, | ||
15315 | 0,327,3,73,0, | ||
15316 | 327,3,74,0,327, | ||
15317 | 3,75,0,327,3, | ||
15318 | 76,0,327,3,77, | ||
15319 | 0,327,3,78,0, | ||
15320 | 327,3,79,0,327, | ||
15321 | 3,80,0,327,3, | ||
15322 | 81,0,327,3,82, | ||
15323 | 0,327,3,83,0, | ||
15324 | 327,3,84,0,327, | ||
15325 | 3,85,0,327,3, | ||
15326 | 86,0,327,3,87, | ||
15327 | 0,327,3,88,0, | ||
15328 | 327,3,89,0,327, | ||
15329 | 3,90,0,327,3, | ||
15330 | 95,0,327,3,97, | ||
15331 | 0,327,3,98,0, | ||
15332 | 327,3,99,0,327, | ||
15333 | 3,100,0,327,3, | ||
15334 | 101,0,327,3,102, | ||
15335 | 0,327,3,103,0, | ||
15336 | 327,3,104,0,327, | ||
15337 | 3,105,0,327,3, | ||
15338 | 106,0,327,3,107, | ||
15339 | 0,327,3,108,0, | ||
15340 | 327,1159,11,1,829, | ||
15341 | 0,330,1,-1,3, | ||
15342 | 106,0,327,3,107, | ||
15343 | 0,327,3,108,0, | ||
15344 | 327,1160,11,1,829, | ||
15345 | 0,330,1,-1,3, | ||
15346 | 115,0,327,3,116, | ||
15347 | 0,327,3,117,0, | ||
15348 | 327,3,118,0,327, | ||
15349 | 3,119,0,327,3, | ||
15350 | 120,0,327,3,121, | ||
15351 | 0,327,3,122,0, | ||
15352 | 327,3,48,0,327, | ||
15353 | 3,49,0,327,3, | ||
15354 | 50,0,327,3,51, | ||
15355 | 0,327,3,52,0, | ||
15356 | 327,3,53,0,327, | ||
15357 | 3,54,0,327,3, | ||
15358 | 55,0,327,3,56, | ||
15359 | 0,327,3,57,0, | ||
15360 | 327,3,65,0,327, | ||
15361 | 3,66,0,327,3, | ||
15362 | 67,0,327,3,68, | ||
15363 | 0,327,3,69,0, | ||
15364 | 327,3,70,0,327, | ||
15365 | 3,71,0,327,3, | ||
15366 | 72,0,327,3,73, | ||
15367 | 0,327,3,74,0, | ||
15368 | 327,3,75,0,327, | ||
15369 | 3,76,0,327,3, | ||
15370 | 77,0,327,3,78, | ||
15371 | 0,327,3,79,0, | ||
15372 | 327,3,80,0,327, | ||
15373 | 3,81,0,327,3, | ||
15374 | 82,0,327,3,83, | ||
15375 | 0,327,3,84,0, | ||
15376 | 327,3,85,0,327, | ||
15377 | 3,86,0,327,3, | ||
15378 | 87,0,327,3,88, | ||
15379 | 0,327,3,89,0, | ||
15380 | 327,3,90,0,327, | ||
15381 | 3,95,0,327,3, | ||
15382 | 97,0,1161,12,1, | ||
15383 | 14334,1162,5,63,3, | ||
15384 | 109,0,327,3,110, | ||
15385 | 0,327,3,111,0, | ||
15386 | 327,3,112,0,327, | ||
15387 | 3,113,0,327,3, | ||
15388 | 114,0,327,3,115, | ||
15389 | 0,327,3,116,0, | ||
15390 | 1163,12,1,14369,1164, | ||
15391 | 5,63,3,109,0, | ||
15392 | 327,3,110,0,327, | ||
15393 | 3,111,0,327,3, | ||
15394 | 112,0,327,3,113, | ||
15395 | 0,327,3,114,0, | ||
15396 | 327,3,115,0,327, | ||
15397 | 3,116,0,327,3, | ||
15398 | 117,0,327,3,118, | ||
15399 | 0,327,3,119,0, | ||
15400 | 327,3,120,0,327, | ||
15401 | 3,121,0,327,3, | ||
15402 | 122,0,327,3,48, | ||
15403 | 0,327,3,49,0, | ||
15404 | 327,3,50,0,327, | ||
15405 | 3,51,0,327,3, | ||
15406 | 52,0,327,3,53, | ||
15407 | 0,327,3,54,0, | ||
15408 | 327,3,55,0,327, | ||
15409 | 3,56,0,327,3, | ||
15410 | 57,0,327,3,65, | ||
15411 | 0,327,3,66,0, | ||
15412 | 327,3,67,0,327, | ||
15413 | 3,68,0,327,3, | ||
15414 | 69,0,327,3,70, | ||
15415 | 0,327,3,71,0, | ||
15416 | 327,3,72,0,327, | ||
15417 | 3,73,0,327,3, | ||
15418 | 74,0,327,3,75, | ||
15419 | 0,327,3,76,0, | ||
15420 | 327,3,77,0,327, | ||
15421 | 3,78,0,327,3, | ||
15422 | 79,0,327,3,80, | ||
15423 | 0,327,3,81,0, | ||
15424 | 327,3,82,0,327, | ||
15425 | 3,83,0,327,3, | ||
15426 | 84,0,327,3,85, | ||
15427 | 0,327,3,86,0, | ||
15428 | 327,3,87,0,327, | ||
15429 | 3,88,0,327,3, | ||
15430 | 89,0,327,3,90, | ||
15431 | 0,327,3,95,0, | ||
15432 | 327,3,97,0,327, | ||
15433 | 3,98,0,327,3, | ||
15434 | 99,0,327,3,100, | ||
15435 | 0,327,3,101,0, | ||
15436 | 1165,12,1,14416,1166, | ||
15437 | 5,63,3,109,0, | ||
15438 | 327,3,110,0,327, | ||
15439 | 3,111,0,327,3, | ||
15440 | 112,0,327,3,113, | ||
15441 | 0,327,3,114,0, | ||
15442 | 327,3,115,0,327, | ||
15443 | 3,116,0,327,3, | ||
15444 | 117,0,327,3,118, | ||
15445 | 0,327,3,119,0, | ||
15446 | 327,3,120,0,327, | ||
15447 | 3,121,0,327,3, | ||
15448 | 122,0,327,3,48, | ||
15449 | 0,327,3,49,0, | ||
15450 | 327,3,50,0,327, | ||
15451 | 3,51,0,327,3, | ||
15452 | 52,0,327,3,53, | ||
15453 | 0,327,3,54,0, | ||
15454 | 327,3,55,0,327, | ||
15455 | 3,56,0,327,3, | ||
15456 | 57,0,327,3,65, | ||
15457 | 0,327,3,66,0, | ||
15458 | 327,3,67,0,327, | ||
15459 | 3,68,0,327,3, | ||
15460 | 69,0,327,3,70, | ||
15461 | 0,327,3,71,0, | ||
15462 | 327,3,72,0,327, | ||
15463 | 3,73,0,327,3, | ||
15464 | 74,0,327,3,75, | ||
15465 | 0,327,3,76,0, | ||
15466 | 327,3,77,0,327, | ||
15467 | 3,78,0,327,3, | ||
15468 | 79,0,327,3,80, | ||
15469 | 0,327,3,81,0, | ||
15470 | 327,3,82,0,327, | ||
15471 | 3,83,0,327,3, | ||
15472 | 84,0,327,3,85, | ||
15473 | 0,327,3,86,0, | ||
15474 | 327,3,87,0,327, | ||
15475 | 3,88,0,327,3, | ||
15476 | 89,0,327,3,90, | ||
15477 | 0,327,3,95,0, | ||
15478 | 1167,12,1,14502,1168, | ||
15479 | 5,63,3,109,0, | ||
15480 | 327,3,110,0,327, | ||
15481 | 3,111,0,327,3, | ||
15482 | 112,0,327,3,113, | ||
15483 | 0,327,3,114,0, | ||
15484 | 327,3,115,0,327, | ||
15485 | 3,116,0,327,3, | ||
15486 | 117,0,327,3,118, | ||
15487 | 0,327,3,119,0, | ||
15488 | 327,3,120,0,327, | ||
15489 | 3,121,0,327,3, | ||
15490 | 122,0,327,3,48, | ||
15491 | 0,327,3,49,0, | ||
15492 | 327,3,50,0,327, | ||
15493 | 3,51,0,327,3, | ||
15494 | 52,0,327,3,53, | ||
15495 | 0,327,3,54,0, | ||
15496 | 327,3,55,0,327, | ||
15497 | 3,56,0,327,3, | ||
15498 | 57,0,327,3,65, | ||
15499 | 0,327,3,66,0, | ||
15500 | 327,3,67,0,327, | ||
15501 | 3,68,0,327,3, | ||
15502 | 69,0,327,3,70, | ||
15503 | 0,327,3,71,0, | ||
15504 | 327,3,72,0,327, | ||
15505 | 3,73,0,327,3, | ||
15506 | 74,0,327,3,75, | ||
15507 | 0,327,3,76,0, | ||
15508 | 327,3,77,0,327, | ||
15509 | 3,78,0,327,3, | ||
15510 | 79,0,327,3,80, | ||
15511 | 0,327,3,81,0, | ||
15512 | 327,3,82,0,327, | ||
15513 | 3,83,0,327,3, | ||
15514 | 84,0,327,3,85, | ||
15515 | 0,327,3,86,0, | ||
15516 | 327,3,87,0,327, | ||
15517 | 3,88,0,327,3, | ||
15518 | 89,0,327,3,90, | ||
15519 | 0,327,3,95,0, | ||
15520 | 327,3,97,0,327, | ||
15521 | 3,98,0,327,3, | ||
15522 | 99,0,327,3,100, | ||
15523 | 0,327,3,101,0, | ||
15524 | 1169,12,1,14549,1170, | ||
15525 | 5,63,3,109,0, | ||
15526 | 327,3,110,0,1171, | ||
15527 | 12,1,14578,1172,5, | ||
15528 | 63,3,109,0,327, | ||
15529 | 3,110,0,327,3, | ||
15530 | 111,0,327,3,112, | ||
15531 | 0,327,3,113,0, | ||
15532 | 327,3,114,0,327, | ||
15533 | 3,115,0,327,3, | ||
15534 | 116,0,1173,12,1, | ||
15535 | 14613,1174,5,63,3, | ||
15536 | 109,0,327,3,110, | ||
15537 | 0,327,3,111,0, | ||
15538 | 327,3,112,0,327, | ||
15539 | 3,113,0,327,3, | ||
15540 | 114,0,1175,12,1, | ||
15541 | 14646,1176,5,63,3, | ||
15542 | 109,0,327,3,110, | ||
15543 | 0,327,3,111,0, | ||
15544 | 327,3,112,0,327, | ||
15545 | 3,113,0,327,3, | ||
15546 | 114,0,327,3,115, | ||
15547 | 0,327,3,116,0, | ||
15548 | 327,3,117,0,327, | ||
15549 | 3,118,0,327,3, | ||
15550 | 119,0,327,3,120, | ||
15551 | 0,327,3,121,0, | ||
15552 | 1177,12,1,14686,1178, | ||
15553 | 5,63,3,109,0, | ||
15554 | 327,3,110,0,327, | ||
15555 | 3,111,0,327,3, | ||
15556 | 112,0,327,3,113, | ||
15557 | 0,327,3,114,0, | ||
15558 | 327,3,115,0,327, | ||
15559 | 3,116,0,327,3, | ||
15560 | 117,0,327,3,118, | ||
15561 | 0,327,3,119,0, | ||
15562 | 327,3,120,0,327, | ||
15563 | 3,121,0,327,3, | ||
15564 | 122,0,327,3,48, | ||
15565 | 0,327,3,49,0, | ||
15566 | 327,3,50,0,327, | ||
15567 | 3,51,0,327,3, | ||
15568 | 52,0,327,3,53, | ||
15569 | 0,327,3,54,0, | ||
15570 | 327,3,55,0,327, | ||
15571 | 3,56,0,327,3, | ||
15572 | 57,0,327,3,65, | ||
15573 | 0,327,3,66,0, | ||
15574 | 327,3,67,0,327, | ||
15575 | 3,68,0,327,3, | ||
15576 | 69,0,327,3,70, | ||
15577 | 0,327,3,71,0, | ||
15578 | 327,3,72,0,327, | ||
15579 | 3,73,0,327,3, | ||
15580 | 74,0,327,3,75, | ||
15581 | 0,327,3,76,0, | ||
15582 | 327,3,77,0,327, | ||
15583 | 3,78,0,327,3, | ||
15584 | 79,0,327,3,80, | ||
15585 | 0,327,3,81,0, | ||
15586 | 327,3,82,0,327, | ||
15587 | 3,83,0,327,3, | ||
15588 | 84,0,327,3,85, | ||
15589 | 0,327,3,86,0, | ||
15590 | 327,3,87,0,327, | ||
15591 | 3,88,0,327,3, | ||
15592 | 89,0,327,3,90, | ||
15593 | 0,327,3,95,0, | ||
15594 | 327,3,97,0,327, | ||
15595 | 3,98,0,327,3, | ||
15596 | 99,0,327,3,100, | ||
15597 | 0,327,3,101,0, | ||
15598 | 327,3,102,0,327, | ||
15599 | 3,103,0,327,3, | ||
15600 | 104,0,327,3,105, | ||
15601 | 0,327,3,106,0, | ||
15602 | 327,3,107,0,327, | ||
15603 | 3,108,0,327,1179, | ||
15604 | 11,1,754,0,1180, | ||
15605 | 4,34,83,0,84, | ||
15606 | 0,65,0,84,0, | ||
15607 | 69,0,95,0,69, | ||
15608 | 0,78,0,84,0, | ||
15609 | 82,0,89,0,95, | ||
15610 | 0,69,0,86,0, | ||
15611 | 69,0,78,0,84, | ||
15612 | 0,1,-1,3,122, | ||
15613 | 0,327,3,48,0, | ||
15614 | 327,3,49,0,327, | ||
15615 | 3,50,0,327,3, | ||
15616 | 51,0,327,3,52, | ||
15617 | 0,327,3,53,0, | ||
15618 | 327,3,54,0,327, | ||
15619 | 3,55,0,327,3, | ||
15620 | 56,0,327,3,57, | ||
15621 | 0,327,3,65,0, | ||
15622 | 327,3,66,0,327, | ||
15623 | 3,67,0,327,3, | ||
15624 | 68,0,327,3,69, | ||
15625 | 0,327,3,70,0, | ||
15626 | 327,3,71,0,327, | ||
15627 | 3,72,0,327,3, | ||
15628 | 73,0,327,3,74, | ||
15629 | 0,327,3,75,0, | ||
15630 | 327,3,76,0,327, | ||
15631 | 3,77,0,327,3, | ||
15632 | 78,0,327,3,79, | ||
15633 | 0,327,3,80,0, | ||
15634 | 327,3,81,0,327, | ||
15635 | 3,82,0,327,3, | ||
15636 | 83,0,327,3,84, | ||
15637 | 0,327,3,85,0, | ||
15638 | 327,3,86,0,327, | ||
15639 | 3,87,0,327,3, | ||
15640 | 88,0,327,3,89, | ||
15641 | 0,327,3,90,0, | ||
15642 | 327,3,95,0,327, | ||
15643 | 3,97,0,327,3, | ||
15644 | 98,0,327,3,99, | ||
15645 | 0,327,3,100,0, | ||
15646 | 327,3,101,0,327, | ||
15647 | 3,102,0,327,3, | ||
15648 | 103,0,327,3,104, | ||
15649 | 0,327,3,105,0, | ||
15650 | 327,3,106,0,327, | ||
15651 | 3,107,0,327,3, | ||
15652 | 108,0,327,1181,11, | ||
15653 | 1,829,0,330,1, | ||
15654 | -1,3,115,0,327, | ||
15655 | 3,116,0,327,3, | ||
15656 | 117,0,327,3,118, | ||
15657 | 0,327,3,119,0, | ||
15658 | 327,3,120,0,327, | ||
15659 | 3,121,0,327,3, | ||
15660 | 122,0,327,3,48, | ||
15661 | 0,327,3,49,0, | ||
15662 | 327,3,50,0,327, | ||
15663 | 3,51,0,327,3, | ||
15664 | 52,0,327,3,53, | ||
15665 | 0,327,3,54,0, | ||
15666 | 327,3,55,0,327, | ||
15667 | 3,56,0,327,3, | ||
15668 | 57,0,327,3,65, | ||
15669 | 0,327,3,66,0, | ||
15670 | 327,3,67,0,327, | ||
15671 | 3,68,0,327,3, | ||
15672 | 69,0,327,3,70, | ||
15673 | 0,327,3,71,0, | ||
15674 | 327,3,72,0,327, | ||
15675 | 3,73,0,327,3, | ||
15676 | 74,0,327,3,75, | ||
15677 | 0,327,3,76,0, | ||
15678 | 327,3,77,0,327, | ||
15679 | 3,78,0,327,3, | ||
15680 | 79,0,327,3,80, | ||
15681 | 0,327,3,81,0, | ||
15682 | 327,3,82,0,327, | ||
15683 | 3,83,0,327,3, | ||
15684 | 84,0,327,3,85, | ||
15685 | 0,327,3,86,0, | ||
15686 | 327,3,87,0,327, | ||
15687 | 3,88,0,327,3, | ||
15688 | 89,0,327,3,90, | ||
15689 | 0,327,3,95,0, | ||
15690 | 327,3,97,0,327, | ||
15691 | 3,98,0,327,3, | ||
15692 | 99,0,327,3,100, | ||
15693 | 0,327,3,101,0, | ||
15694 | 327,3,102,0,327, | ||
15695 | 3,103,0,327,3, | ||
15696 | 104,0,327,3,105, | ||
15697 | 0,327,3,106,0, | ||
15698 | 327,3,107,0,327, | ||
15699 | 3,108,0,327,1182, | ||
15700 | 11,1,829,0,330, | ||
15701 | 1,-1,3,117,0, | ||
15702 | 327,3,118,0,327, | ||
15703 | 3,119,0,327,3, | ||
15704 | 120,0,327,3,121, | ||
15705 | 0,327,3,122,0, | ||
15706 | 327,3,48,0,327, | ||
15707 | 3,49,0,327,3, | ||
15708 | 50,0,327,3,51, | ||
15709 | 0,327,3,52,0, | ||
15710 | 327,3,53,0,327, | ||
15711 | 3,54,0,327,3, | ||
15712 | 55,0,327,3,56, | ||
15713 | 0,327,3,57,0, | ||
15714 | 327,3,65,0,327, | ||
15715 | 3,66,0,327,3, | ||
15716 | 67,0,327,3,68, | ||
15717 | 0,327,3,69,0, | ||
15718 | 327,3,70,0,327, | ||
15719 | 3,71,0,327,3, | ||
15720 | 72,0,327,3,73, | ||
15721 | 0,327,3,74,0, | ||
15722 | 327,3,75,0,327, | ||
15723 | 3,76,0,327,3, | ||
15724 | 77,0,327,3,78, | ||
15725 | 0,327,3,79,0, | ||
15726 | 327,3,80,0,327, | ||
15727 | 3,81,0,327,3, | ||
15728 | 82,0,327,3,83, | ||
15729 | 0,327,3,84,0, | ||
15730 | 327,3,85,0,327, | ||
15731 | 3,86,0,327,3, | ||
15732 | 87,0,327,3,88, | ||
15733 | 0,327,3,89,0, | ||
15734 | 327,3,90,0,327, | ||
15735 | 3,95,0,327,3, | ||
15736 | 97,0,327,3,98, | ||
15737 | 0,327,3,99,0, | ||
15738 | 327,3,100,0,327, | ||
15739 | 3,101,0,327,3, | ||
15740 | 102,0,327,3,103, | ||
15741 | 0,327,3,104,0, | ||
15742 | 327,3,105,0,327, | ||
15743 | 3,106,0,327,3, | ||
15744 | 107,0,327,3,108, | ||
15745 | 0,327,1183,11,1, | ||
15746 | 829,0,330,1,-1, | ||
15747 | 3,111,0,327,3, | ||
15748 | 112,0,327,3,113, | ||
15749 | 0,327,3,114,0, | ||
15750 | 327,3,115,0,327, | ||
15751 | 3,116,0,327,3, | ||
15752 | 117,0,327,3,118, | ||
15753 | 0,327,3,119,0, | ||
15754 | 327,3,120,0,1184, | ||
15755 | 12,1,15068,1185,5, | ||
15756 | 63,3,109,0,327, | ||
15757 | 3,110,0,327,3, | ||
15758 | 111,0,327,3,112, | ||
15759 | 0,327,3,113,0, | ||
15760 | 327,3,114,0,327, | ||
15761 | 3,115,0,327,3, | ||
15762 | 116,0,327,3,117, | ||
15763 | 0,327,3,118,0, | ||
15764 | 327,3,119,0,327, | ||
15765 | 3,120,0,327,3, | ||
15766 | 121,0,327,3,122, | ||
15767 | 0,327,3,48,0, | ||
15768 | 327,3,49,0,327, | ||
15769 | 3,50,0,327,3, | ||
15770 | 51,0,327,3,52, | ||
15771 | 0,327,3,53,0, | ||
15772 | 327,3,54,0,327, | ||
15773 | 3,55,0,327,3, | ||
15774 | 56,0,327,3,57, | ||
15775 | 0,327,3,65,0, | ||
15776 | 327,3,66,0,327, | ||
15777 | 3,67,0,327,3, | ||
15778 | 68,0,327,3,69, | ||
15779 | 0,327,3,70,0, | ||
15780 | 327,3,71,0,327, | ||
15781 | 3,72,0,327,3, | ||
15782 | 73,0,327,3,74, | ||
15783 | 0,327,3,75,0, | ||
15784 | 327,3,76,0,327, | ||
15785 | 3,77,0,327,3, | ||
15786 | 78,0,327,3,79, | ||
15787 | 0,327,3,80,0, | ||
15788 | 327,3,81,0,327, | ||
15789 | 3,82,0,327,3, | ||
15790 | 83,0,327,3,84, | ||
15791 | 0,327,3,85,0, | ||
15792 | 327,3,86,0,327, | ||
15793 | 3,87,0,327,3, | ||
15794 | 88,0,327,3,89, | ||
15795 | 0,327,3,90,0, | ||
15796 | 327,3,95,0,327, | ||
15797 | 3,97,0,327,3, | ||
15798 | 98,0,327,3,99, | ||
15799 | 0,327,3,100,0, | ||
15800 | 327,3,101,0,327, | ||
15801 | 3,102,0,327,3, | ||
15802 | 103,0,327,3,104, | ||
15803 | 0,327,3,105,0, | ||
15804 | 1186,12,1,15119,1187, | ||
15805 | 5,63,3,109,0, | ||
15806 | 327,3,110,0,327, | ||
15807 | 3,111,0,327,3, | ||
15808 | 112,0,327,3,113, | ||
15809 | 0,327,3,114,0, | ||
15810 | 327,3,115,0,327, | ||
15811 | 3,116,0,1188,12, | ||
15812 | 1,15154,1189,5,63, | ||
15813 | 3,109,0,327,3, | ||
15814 | 110,0,327,3,111, | ||
15815 | 0,327,3,112,0, | ||
15816 | 327,3,113,0,327, | ||
15817 | 3,114,0,327,3, | ||
15818 | 115,0,327,3,116, | ||
15819 | 0,327,3,117,0, | ||
15820 | 327,3,118,0,327, | ||
15821 | 3,119,0,327,3, | ||
15822 | 120,0,327,3,121, | ||
15823 | 0,327,3,122,0, | ||
15824 | 327,3,48,0,327, | ||
15825 | 3,49,0,327,3, | ||
15826 | 50,0,327,3,51, | ||
15827 | 0,327,3,52,0, | ||
15828 | 327,3,53,0,327, | ||
15829 | 3,54,0,327,3, | ||
15830 | 55,0,327,3,56, | ||
15831 | 0,327,3,57,0, | ||
15832 | 327,3,65,0,327, | ||
15833 | 3,66,0,327,3, | ||
15834 | 67,0,327,3,68, | ||
15835 | 0,327,3,69,0, | ||
15836 | 327,3,70,0,327, | ||
15837 | 3,71,0,327,3, | ||
15838 | 72,0,327,3,73, | ||
15839 | 0,327,3,74,0, | ||
15840 | 327,3,75,0,327, | ||
15841 | 3,76,0,327,3, | ||
15842 | 77,0,327,3,78, | ||
15843 | 0,327,3,79,0, | ||
15844 | 327,3,80,0,327, | ||
15845 | 3,81,0,327,3, | ||
15846 | 82,0,327,3,83, | ||
15847 | 0,327,3,84,0, | ||
15848 | 327,3,85,0,327, | ||
15849 | 3,86,0,327,3, | ||
15850 | 87,0,327,3,88, | ||
15851 | 0,327,3,89,0, | ||
15852 | 327,3,90,0,327, | ||
15853 | 3,95,0,327,3, | ||
15854 | 97,0,327,3,98, | ||
15855 | 0,327,3,99,0, | ||
15856 | 327,3,100,0,327, | ||
15857 | 3,101,0,327,3, | ||
15858 | 102,0,327,3,103, | ||
15859 | 0,327,3,104,0, | ||
15860 | 327,3,105,0,327, | ||
15861 | 3,106,0,327,3, | ||
15862 | 107,0,327,3,108, | ||
15863 | 0,327,1190,11,1, | ||
15864 | 769,0,1191,4,32, | ||
15865 | 83,0,84,0,65, | ||
15866 | 0,84,0,69,0, | ||
15867 | 95,0,69,0,88, | ||
15868 | 0,73,0,84,0, | ||
15869 | 95,0,69,0,86, | ||
15870 | 0,69,0,78,0, | ||
15871 | 84,0,1,-1,3, | ||
15872 | 117,0,327,3,118, | ||
15873 | 0,327,3,119,0, | ||
15874 | 327,3,120,0,327, | ||
15875 | 3,121,0,327,3, | ||
15876 | 122,0,327,3,48, | ||
15877 | 0,327,3,49,0, | ||
15878 | 327,3,50,0,327, | ||
15879 | 3,51,0,327,3, | ||
15880 | 52,0,327,3,53, | ||
15881 | 0,327,3,54,0, | ||
15882 | 327,3,55,0,327, | ||
15883 | 3,56,0,327,3, | ||
15884 | 57,0,327,3,65, | ||
15885 | 0,327,3,66,0, | ||
15886 | 327,3,67,0,327, | ||
15887 | 3,68,0,327,3, | ||
15888 | 69,0,327,3,70, | ||
15889 | 0,327,3,71,0, | ||
15890 | 327,3,72,0,327, | ||
15891 | 3,73,0,327,3, | ||
15892 | 74,0,327,3,75, | ||
15893 | 0,327,3,76,0, | ||
15894 | 327,3,77,0,327, | ||
15895 | 3,78,0,327,3, | ||
15896 | 79,0,327,3,80, | ||
15897 | 0,327,3,81,0, | ||
15898 | 327,3,82,0,327, | ||
15899 | 3,83,0,327,3, | ||
15900 | 84,0,327,3,85, | ||
15901 | 0,327,3,86,0, | ||
15902 | 327,3,87,0,327, | ||
15903 | 3,88,0,327,3, | ||
15904 | 89,0,327,3,90, | ||
15905 | 0,327,3,95,0, | ||
15906 | 327,3,97,0,327, | ||
15907 | 3,98,0,327,3, | ||
15908 | 99,0,327,3,100, | ||
15909 | 0,327,3,101,0, | ||
15910 | 327,3,102,0,327, | ||
15911 | 3,103,0,327,3, | ||
15912 | 104,0,327,3,105, | ||
15913 | 0,327,3,106,0, | ||
15914 | 327,3,107,0,327, | ||
15915 | 3,108,0,327,1192, | ||
15916 | 11,1,829,0,330, | ||
15917 | 1,-1,3,106,0, | ||
15918 | 327,3,107,0,327, | ||
15919 | 3,108,0,327,1193, | ||
15920 | 11,1,829,0,330, | ||
15921 | 1,-1,3,121,0, | ||
15922 | 327,3,122,0,327, | ||
15923 | 3,48,0,327,3, | ||
15924 | 49,0,327,3,50, | ||
15925 | 0,327,3,51,0, | ||
15926 | 327,3,52,0,327, | ||
15927 | 3,53,0,327,3, | ||
15928 | 54,0,327,3,55, | ||
15929 | 0,327,3,56,0, | ||
15930 | 327,3,57,0,327, | ||
15931 | 3,65,0,327,3, | ||
15932 | 66,0,327,3,67, | ||
15933 | 0,327,3,68,0, | ||
15934 | 327,3,69,0,327, | ||
15935 | 3,70,0,327,3, | ||
15936 | 71,0,327,3,72, | ||
15937 | 0,327,3,73,0, | ||
15938 | 327,3,74,0,327, | ||
15939 | 3,75,0,327,3, | ||
15940 | 76,0,327,3,77, | ||
15941 | 0,327,3,78,0, | ||
15942 | 327,3,79,0,327, | ||
15943 | 3,80,0,327,3, | ||
15944 | 81,0,327,3,82, | ||
15945 | 0,327,3,83,0, | ||
15946 | 327,3,84,0,327, | ||
15947 | 3,85,0,327,3, | ||
15948 | 86,0,327,3,87, | ||
15949 | 0,327,3,88,0, | ||
15950 | 327,3,89,0,327, | ||
15951 | 3,90,0,327,3, | ||
15952 | 95,0,327,3,97, | ||
15953 | 0,327,3,98,0, | ||
15954 | 327,3,99,0,327, | ||
15955 | 3,100,0,327,3, | ||
15956 | 101,0,327,3,102, | ||
15957 | 0,327,3,103,0, | ||
15958 | 327,3,104,0,327, | ||
15959 | 3,105,0,327,3, | ||
15960 | 106,0,327,3,107, | ||
15961 | 0,327,3,108,0, | ||
15962 | 327,1194,11,1,829, | ||
15963 | 0,330,1,-1,3, | ||
15964 | 102,0,327,3,103, | ||
15965 | 0,327,3,104,0, | ||
15966 | 327,3,105,0,327, | ||
15967 | 3,106,0,327,3, | ||
15968 | 107,0,327,3,108, | ||
15969 | 0,327,1195,11,1, | ||
15970 | 829,0,330,1,-1, | ||
15971 | 3,97,0,327,3, | ||
15972 | 98,0,327,3,99, | ||
15973 | 0,327,3,100,0, | ||
15974 | 327,3,101,0,327, | ||
15975 | 3,102,0,327,3, | ||
15976 | 103,0,327,3,104, | ||
15977 | 0,327,3,105,0, | ||
15978 | 327,3,106,0,327, | ||
15979 | 3,107,0,327,3, | ||
15980 | 108,0,327,1196,11, | ||
15981 | 1,256,0,1197,4, | ||
15982 | 10,83,0,84,0, | ||
15983 | 65,0,84,0,69, | ||
15984 | 0,1,-1,3,102, | ||
15985 | 0,327,3,103,0, | ||
15986 | 327,3,104,0,327, | ||
15987 | 3,105,0,327,3, | ||
15988 | 106,0,327,3,107, | ||
15989 | 0,327,3,108,0, | ||
15990 | 327,1198,11,1,829, | ||
15991 | 0,330,1,-1,3, | ||
15992 | 117,0,327,3,118, | ||
15993 | 0,327,3,119,0, | ||
15994 | 327,3,120,0,327, | ||
15995 | 3,121,0,327,3, | ||
15996 | 122,0,327,3,48, | ||
15997 | 0,327,3,49,0, | ||
15998 | 327,3,50,0,327, | ||
15999 | 3,51,0,327,3, | ||
16000 | 52,0,327,3,53, | ||
16001 | 0,327,3,54,0, | ||
16002 | 327,3,55,0,327, | ||
16003 | 3,56,0,327,3, | ||
16004 | 57,0,327,3,65, | ||
16005 | 0,327,3,66,0, | ||
16006 | 327,3,67,0,327, | ||
16007 | 3,68,0,327,3, | ||
16008 | 69,0,327,3,70, | ||
16009 | 0,327,3,71,0, | ||
16010 | 327,3,72,0,327, | ||
16011 | 3,73,0,327,3, | ||
16012 | 74,0,327,3,75, | ||
16013 | 0,327,3,76,0, | ||
16014 | 327,3,77,0,327, | ||
16015 | 3,78,0,327,3, | ||
16016 | 79,0,327,3,80, | ||
16017 | 0,327,3,81,0, | ||
16018 | 327,3,82,0,327, | ||
16019 | 3,83,0,327,3, | ||
16020 | 84,0,327,3,85, | ||
16021 | 0,327,3,86,0, | ||
16022 | 327,3,87,0,327, | ||
16023 | 3,88,0,327,3, | ||
16024 | 89,0,327,3,90, | ||
16025 | 0,327,3,95,0, | ||
16026 | 327,3,97,0,327, | ||
16027 | 3,98,0,327,3, | ||
16028 | 99,0,327,3,100, | ||
16029 | 0,327,3,101,0, | ||
16030 | 327,3,102,0,327, | ||
16031 | 3,103,0,327,3, | ||
16032 | 104,0,327,3,105, | ||
16033 | 0,327,3,106,0, | ||
16034 | 327,3,107,0,327, | ||
16035 | 3,108,0,327,1199, | ||
16036 | 11,1,829,0,330, | ||
16037 | 1,-1,3,98,0, | ||
16038 | 327,3,99,0,327, | ||
16039 | 3,100,0,327,3, | ||
16040 | 101,0,327,3,102, | ||
16041 | 0,327,3,103,0, | ||
16042 | 327,3,104,0,327, | ||
16043 | 3,105,0,327,3, | ||
16044 | 106,0,327,3,107, | ||
16045 | 0,327,3,108,0, | ||
16046 | 327,1200,11,1,829, | ||
16047 | 0,330,1,-1,3, | ||
16048 | 117,0,327,3,118, | ||
16049 | 0,327,3,119,0, | ||
16050 | 327,3,120,0,327, | ||
16051 | 3,121,0,327,3, | ||
16052 | 122,0,327,3,48, | ||
16053 | 0,327,3,49,0, | ||
16054 | 327,3,50,0,327, | ||
16055 | 3,51,0,327,3, | ||
16056 | 52,0,327,3,53, | ||
16057 | 0,327,3,54,0, | ||
16058 | 327,3,55,0,327, | ||
16059 | 3,56,0,327,3, | ||
16060 | 57,0,327,3,65, | ||
16061 | 0,327,3,66,0, | ||
16062 | 327,3,67,0,327, | ||
16063 | 3,68,0,327,3, | ||
16064 | 69,0,327,3,70, | ||
16065 | 0,327,3,71,0, | ||
16066 | 327,3,72,0,327, | ||
16067 | 3,73,0,327,3, | ||
16068 | 74,0,327,3,75, | ||
16069 | 0,327,3,76,0, | ||
16070 | 327,3,77,0,327, | ||
16071 | 3,78,0,327,3, | ||
16072 | 79,0,327,3,80, | ||
16073 | 0,327,3,81,0, | ||
16074 | 327,3,82,0,327, | ||
16075 | 3,83,0,327,3, | ||
16076 | 84,0,327,3,85, | ||
16077 | 0,327,3,86,0, | ||
16078 | 327,3,87,0,327, | ||
16079 | 3,88,0,327,3, | ||
16080 | 89,0,327,3,90, | ||
16081 | 0,327,3,95,0, | ||
16082 | 327,3,97,0,327, | ||
16083 | 3,98,0,327,3, | ||
16084 | 99,0,327,3,100, | ||
16085 | 0,327,3,101,0, | ||
16086 | 1201,12,1,15863,1202, | ||
16087 | 5,63,3,109,0, | ||
16088 | 327,3,110,0,1203, | ||
16089 | 12,1,15892,1204,5, | ||
16090 | 63,3,109,0,327, | ||
16091 | 3,110,0,327,3, | ||
16092 | 111,0,327,3,112, | ||
16093 | 0,327,3,113,0, | ||
16094 | 327,3,114,0,327, | ||
16095 | 3,115,0,1205,12, | ||
16096 | 1,15926,1206,5,63, | ||
16097 | 3,109,0,327,3, | ||
16098 | 110,0,327,3,111, | ||
16099 | 0,1207,12,1,15956, | ||
16100 | 1208,5,63,3,109, | ||
16101 | 0,327,3,110,0, | ||
16102 | 327,3,111,0,327, | ||
16103 | 3,112,0,327,3, | ||
16104 | 113,0,327,3,114, | ||
16105 | 0,1209,12,1,15989, | ||
16106 | 1210,5,63,3,109, | ||
16107 | 0,327,3,110,0, | ||
16108 | 327,3,111,0,327, | ||
16109 | 3,112,0,327,3, | ||
16110 | 113,0,327,3,114, | ||
16111 | 0,327,3,115,0, | ||
16112 | 327,3,116,0,327, | ||
16113 | 3,117,0,327,3, | ||
16114 | 118,0,327,3,119, | ||
16115 | 0,327,3,120,0, | ||
16116 | 327,3,121,0,327, | ||
16117 | 3,122,0,327,3, | ||
16118 | 48,0,327,3,49, | ||
16119 | 0,327,3,50,0, | ||
16120 | 327,3,51,0,327, | ||
16121 | 3,52,0,327,3, | ||
16122 | 53,0,327,3,54, | ||
16123 | 0,327,3,55,0, | ||
16124 | 327,3,56,0,327, | ||
16125 | 3,57,0,327,3, | ||
16126 | 65,0,327,3,66, | ||
16127 | 0,327,3,67,0, | ||
16128 | 327,3,68,0,327, | ||
16129 | 3,69,0,327,3, | ||
16130 | 70,0,327,3,71, | ||
16131 | 0,327,3,72,0, | ||
16132 | 327,3,73,0,327, | ||
16133 | 3,74,0,327,3, | ||
16134 | 75,0,327,3,76, | ||
16135 | 0,327,3,77,0, | ||
16136 | 327,3,78,0,327, | ||
16137 | 3,79,0,327,3, | ||
16138 | 80,0,327,3,81, | ||
16139 | 0,327,3,82,0, | ||
16140 | 327,3,83,0,327, | ||
16141 | 3,84,0,327,3, | ||
16142 | 85,0,327,3,86, | ||
16143 | 0,327,3,87,0, | ||
16144 | 327,3,88,0,327, | ||
16145 | 3,89,0,327,3, | ||
16146 | 90,0,327,3,95, | ||
16147 | 0,327,3,97,0, | ||
16148 | 327,3,98,0,327, | ||
16149 | 3,99,0,327,3, | ||
16150 | 100,0,327,3,101, | ||
16151 | 0,327,3,102,0, | ||
16152 | 327,3,103,0,327, | ||
16153 | 3,104,0,327,3, | ||
16154 | 105,0,327,3,106, | ||
16155 | 0,327,3,107,0, | ||
16156 | 327,3,108,0,327, | ||
16157 | 1211,11,1,744,0, | ||
16158 | 1212,4,24,83,0, | ||
16159 | 69,0,78,0,83, | ||
16160 | 0,79,0,82,0, | ||
16161 | 95,0,69,0,86, | ||
16162 | 0,69,0,78,0, | ||
16163 | 84,0,1,-1,3, | ||
16164 | 115,0,327,3,116, | ||
16165 | 0,327,3,117,0, | ||
16166 | 327,3,118,0,327, | ||
16167 | 3,119,0,327,3, | ||
16168 | 120,0,327,3,121, | ||
16169 | 0,327,3,122,0, | ||
16170 | 327,3,48,0,327, | ||
16171 | 3,49,0,327,3, | ||
16172 | 50,0,327,3,51, | ||
16173 | 0,327,3,52,0, | ||
16174 | 327,3,53,0,327, | ||
16175 | 3,54,0,327,3, | ||
16176 | 55,0,327,3,56, | ||
16177 | 0,327,3,57,0, | ||
16178 | 327,3,65,0,327, | ||
16179 | 3,66,0,327,3, | ||
16180 | 67,0,327,3,68, | ||
16181 | 0,327,3,69,0, | ||
16182 | 327,3,70,0,327, | ||
16183 | 3,71,0,327,3, | ||
16184 | 72,0,327,3,73, | ||
16185 | 0,327,3,74,0, | ||
16186 | 327,3,75,0,327, | ||
16187 | 3,76,0,327,3, | ||
16188 | 77,0,327,3,78, | ||
16189 | 0,327,3,79,0, | ||
16190 | 327,3,80,0,327, | ||
16191 | 3,81,0,327,3, | ||
16192 | 82,0,327,3,83, | ||
16193 | 0,327,3,84,0, | ||
16194 | 327,3,85,0,327, | ||
16195 | 3,86,0,327,3, | ||
16196 | 87,0,327,3,88, | ||
16197 | 0,327,3,89,0, | ||
16198 | 327,3,90,0,327, | ||
16199 | 3,95,0,327,3, | ||
16200 | 97,0,327,3,98, | ||
16201 | 0,327,3,99,0, | ||
16202 | 327,3,100,0,327, | ||
16203 | 3,101,0,327,3, | ||
16204 | 102,0,327,3,103, | ||
16205 | 0,327,3,104,0, | ||
16206 | 327,3,105,0,327, | ||
16207 | 3,106,0,327,3, | ||
16208 | 107,0,327,3,108, | ||
16209 | 0,327,1213,11,1, | ||
16210 | 829,0,330,1,-1, | ||
16211 | 3,112,0,327,3, | ||
16212 | 113,0,327,3,114, | ||
16213 | 0,327,3,115,0, | ||
16214 | 327,3,116,0,327, | ||
16215 | 3,117,0,327,3, | ||
16216 | 118,0,327,3,119, | ||
16217 | 0,327,3,120,0, | ||
16218 | 327,3,121,0,327, | ||
16219 | 3,122,0,327,3, | ||
16220 | 48,0,327,3,49, | ||
16221 | 0,327,3,50,0, | ||
16222 | 327,3,51,0,327, | ||
16223 | 3,52,0,327,3, | ||
16224 | 53,0,327,3,54, | ||
16225 | 0,327,3,55,0, | ||
16226 | 327,3,56,0,327, | ||
16227 | 3,57,0,327,3, | ||
16228 | 65,0,327,3,66, | ||
16229 | 0,327,3,67,0, | ||
16230 | 327,3,68,0,327, | ||
16231 | 3,69,0,327,3, | ||
16232 | 70,0,327,3,71, | ||
16233 | 0,327,3,72,0, | ||
16234 | 327,3,73,0,327, | ||
16235 | 3,74,0,327,3, | ||
16236 | 75,0,327,3,76, | ||
16237 | 0,327,3,77,0, | ||
16238 | 327,3,78,0,327, | ||
16239 | 3,79,0,327,3, | ||
16240 | 80,0,327,3,81, | ||
16241 | 0,327,3,82,0, | ||
16242 | 327,3,83,0,327, | ||
16243 | 3,84,0,327,3, | ||
16244 | 85,0,327,3,86, | ||
16245 | 0,327,3,87,0, | ||
16246 | 327,3,88,0,327, | ||
16247 | 3,89,0,327,3, | ||
16248 | 90,0,327,3,95, | ||
16249 | 0,327,3,97,0, | ||
16250 | 327,3,98,0,327, | ||
16251 | 3,99,0,327,3, | ||
16252 | 100,0,327,3,101, | ||
16253 | 0,327,3,102,0, | ||
16254 | 327,3,103,0,327, | ||
16255 | 3,104,0,327,3, | ||
16256 | 105,0,327,3,106, | ||
16257 | 0,327,3,107,0, | ||
16258 | 327,3,108,0,327, | ||
16259 | 1214,11,1,829,0, | ||
16260 | 330,1,-1,3,116, | ||
16261 | 0,327,3,117,0, | ||
16262 | 327,3,118,0,327, | ||
16263 | 3,119,0,327,3, | ||
16264 | 120,0,327,3,121, | ||
16265 | 0,327,3,122,0, | ||
16266 | 327,3,48,0,327, | ||
16267 | 3,49,0,327,3, | ||
16268 | 50,0,327,3,51, | ||
16269 | 0,327,3,52,0, | ||
16270 | 327,3,53,0,327, | ||
16271 | 3,54,0,327,3, | ||
16272 | 55,0,327,3,56, | ||
16273 | 0,327,3,57,0, | ||
16274 | 327,3,65,0,327, | ||
16275 | 3,66,0,327,3, | ||
16276 | 67,0,327,3,68, | ||
16277 | 0,327,3,69,0, | ||
16278 | 327,3,70,0,327, | ||
16279 | 3,71,0,327,3, | ||
16280 | 72,0,327,3,73, | ||
16281 | 0,327,3,74,0, | ||
16282 | 327,3,75,0,327, | ||
16283 | 3,76,0,327,3, | ||
16284 | 77,0,327,3,78, | ||
16285 | 0,327,3,79,0, | ||
16286 | 327,3,80,0,327, | ||
16287 | 3,81,0,327,3, | ||
16288 | 82,0,327,3,83, | ||
16289 | 0,327,3,84,0, | ||
16290 | 327,3,85,0,327, | ||
16291 | 3,86,0,327,3, | ||
16292 | 87,0,327,3,88, | ||
16293 | 0,327,3,89,0, | ||
16294 | 327,3,90,0,327, | ||
16295 | 3,95,0,327,3, | ||
16296 | 97,0,327,3,98, | ||
16297 | 0,327,3,99,0, | ||
16298 | 327,3,100,0,327, | ||
16299 | 3,101,0,327,3, | ||
16300 | 102,0,327,3,103, | ||
16301 | 0,327,3,104,0, | ||
16302 | 327,3,105,0,327, | ||
16303 | 3,106,0,327,3, | ||
16304 | 107,0,327,3,108, | ||
16305 | 0,327,1215,11,1, | ||
16306 | 829,0,330,1,-1, | ||
16307 | 3,111,0,327,3, | ||
16308 | 112,0,327,3,113, | ||
16309 | 0,327,3,114,0, | ||
16310 | 327,3,115,0,327, | ||
16311 | 3,116,0,327,3, | ||
16312 | 117,0,327,3,118, | ||
16313 | 0,327,3,119,0, | ||
16314 | 327,3,120,0,327, | ||
16315 | 3,121,0,327,3, | ||
16316 | 122,0,327,3,48, | ||
16317 | 0,327,3,49,0, | ||
16318 | 327,3,50,0,327, | ||
16319 | 3,51,0,327,3, | ||
16320 | 52,0,327,3,53, | ||
16321 | 0,327,3,54,0, | ||
16322 | 327,3,55,0,327, | ||
16323 | 3,56,0,327,3, | ||
16324 | 57,0,327,3,65, | ||
16325 | 0,327,3,66,0, | ||
16326 | 327,3,67,0,327, | ||
16327 | 3,68,0,327,3, | ||
16328 | 69,0,327,3,70, | ||
16329 | 0,327,3,71,0, | ||
16330 | 327,3,72,0,327, | ||
16331 | 3,73,0,327,3, | ||
16332 | 74,0,327,3,75, | ||
16333 | 0,327,3,76,0, | ||
16334 | 327,3,77,0,327, | ||
16335 | 3,78,0,327,3, | ||
16336 | 79,0,327,3,80, | ||
16337 | 0,327,3,81,0, | ||
16338 | 327,3,82,0,327, | ||
16339 | 3,83,0,327,3, | ||
16340 | 84,0,327,3,85, | ||
16341 | 0,327,3,86,0, | ||
16342 | 327,3,87,0,327, | ||
16343 | 3,88,0,327,3, | ||
16344 | 89,0,327,3,90, | ||
16345 | 0,327,3,95,0, | ||
16346 | 327,3,97,0,327, | ||
16347 | 3,98,0,327,3, | ||
16348 | 99,0,327,3,100, | ||
16349 | 0,327,3,101,0, | ||
16350 | 327,3,102,0,327, | ||
16351 | 3,103,0,327,3, | ||
16352 | 104,0,327,3,105, | ||
16353 | 0,327,3,106,0, | ||
16354 | 327,3,107,0,327, | ||
16355 | 3,108,0,327,1216, | ||
16356 | 11,1,829,0,330, | ||
16357 | 1,-1,3,102,0, | ||
16358 | 327,3,103,0,327, | ||
16359 | 3,104,0,327,3, | ||
16360 | 105,0,327,3,106, | ||
16361 | 0,327,3,107,0, | ||
16362 | 327,3,108,0,327, | ||
16363 | 1217,11,1,829,0, | ||
16364 | 330,1,-1,3,116, | ||
16365 | 0,1218,12,1,16537, | ||
16366 | 1219,5,63,3,109, | ||
16367 | 0,327,3,110,0, | ||
16368 | 327,3,111,0,1220, | ||
16369 | 12,1,16567,1221,5, | ||
16370 | 63,3,109,0,327, | ||
16371 | 3,110,0,327,3, | ||
16372 | 111,0,327,3,112, | ||
16373 | 0,327,3,113,0, | ||
16374 | 327,3,114,0,327, | ||
16375 | 3,115,0,327,3, | ||
16376 | 116,0,327,3,117, | ||
16377 | 0,1222,12,1,16603, | ||
16378 | 1223,5,63,3,109, | ||
16379 | 0,327,3,110,0, | ||
16380 | 327,3,111,0,327, | ||
16381 | 3,112,0,327,3, | ||
16382 | 113,0,327,3,114, | ||
16383 | 0,327,3,115,0, | ||
16384 | 327,3,116,0,327, | ||
16385 | 3,117,0,327,3, | ||
16386 | 118,0,327,3,119, | ||
16387 | 0,327,3,120,0, | ||
16388 | 327,3,121,0,327, | ||
16389 | 3,122,0,327,3, | ||
16390 | 48,0,327,3,49, | ||
16391 | 0,327,3,50,0, | ||
16392 | 327,3,51,0,327, | ||
16393 | 3,52,0,327,3, | ||
16394 | 53,0,327,3,54, | ||
16395 | 0,327,3,55,0, | ||
16396 | 327,3,56,0,327, | ||
16397 | 3,57,0,327,3, | ||
16398 | 65,0,327,3,66, | ||
16399 | 0,327,3,67,0, | ||
16400 | 327,3,68,0,327, | ||
16401 | 3,69,0,327,3, | ||
16402 | 70,0,327,3,71, | ||
16403 | 0,327,3,72,0, | ||
16404 | 327,3,73,0,327, | ||
16405 | 3,74,0,327,3, | ||
16406 | 75,0,327,3,76, | ||
16407 | 0,327,3,77,0, | ||
16408 | 327,3,78,0,327, | ||
16409 | 3,79,0,327,3, | ||
16410 | 80,0,327,3,81, | ||
16411 | 0,327,3,82,0, | ||
16412 | 327,3,83,0,327, | ||
16413 | 3,84,0,327,3, | ||
16414 | 85,0,327,3,86, | ||
16415 | 0,327,3,87,0, | ||
16416 | 327,3,88,0,327, | ||
16417 | 3,89,0,327,3, | ||
16418 | 90,0,327,3,95, | ||
16419 | 0,327,3,97,0, | ||
16420 | 327,3,98,0,327, | ||
16421 | 3,99,0,1224,12, | ||
16422 | 1,16648,1225,5,63, | ||
16423 | 3,109,0,327,3, | ||
16424 | 110,0,327,3,111, | ||
16425 | 0,327,3,112,0, | ||
16426 | 327,3,113,0,327, | ||
16427 | 3,114,0,327,3, | ||
16428 | 115,0,327,3,116, | ||
16429 | 0,327,3,117,0, | ||
16430 | 327,3,118,0,327, | ||
16431 | 3,119,0,327,3, | ||
16432 | 120,0,327,3,121, | ||
16433 | 0,327,3,122,0, | ||
16434 | 327,3,48,0,327, | ||
16435 | 3,49,0,327,3, | ||
16436 | 50,0,327,3,51, | ||
16437 | 0,327,3,52,0, | ||
16438 | 327,3,53,0,327, | ||
16439 | 3,54,0,327,3, | ||
16440 | 55,0,327,3,56, | ||
16441 | 0,327,3,57,0, | ||
16442 | 327,3,65,0,327, | ||
16443 | 3,66,0,327,3, | ||
16444 | 67,0,327,3,68, | ||
16445 | 0,327,3,69,0, | ||
16446 | 327,3,70,0,327, | ||
16447 | 3,71,0,327,3, | ||
16448 | 72,0,327,3,73, | ||
16449 | 0,327,3,74,0, | ||
16450 | 327,3,75,0,327, | ||
16451 | 3,76,0,327,3, | ||
16452 | 77,0,327,3,78, | ||
16453 | 0,327,3,79,0, | ||
16454 | 327,3,80,0,327, | ||
16455 | 3,81,0,327,3, | ||
16456 | 82,0,327,3,83, | ||
16457 | 0,327,3,84,0, | ||
16458 | 327,3,85,0,327, | ||
16459 | 3,86,0,327,3, | ||
16460 | 87,0,327,3,88, | ||
16461 | 0,327,3,89,0, | ||
16462 | 327,3,90,0,327, | ||
16463 | 3,95,0,327,3, | ||
16464 | 97,0,327,3,98, | ||
16465 | 0,327,3,99,0, | ||
16466 | 327,3,100,0,327, | ||
16467 | 3,101,0,327,3, | ||
16468 | 102,0,327,3,103, | ||
16469 | 0,327,3,104,0, | ||
16470 | 1226,12,1,16698,1227, | ||
16471 | 5,63,3,109,0, | ||
16472 | 327,3,110,0,327, | ||
16473 | 3,111,0,327,3, | ||
16474 | 112,0,327,3,113, | ||
16475 | 0,327,3,114,0, | ||
16476 | 327,3,115,0,327, | ||
16477 | 3,116,0,327,3, | ||
16478 | 117,0,327,3,118, | ||
16479 | 0,327,3,119,0, | ||
16480 | 327,3,120,0,327, | ||
16481 | 3,121,0,327,3, | ||
16482 | 122,0,327,3,48, | ||
16483 | 0,327,3,49,0, | ||
16484 | 327,3,50,0,327, | ||
16485 | 3,51,0,327,3, | ||
16486 | 52,0,327,3,53, | ||
16487 | 0,327,3,54,0, | ||
16488 | 327,3,55,0,327, | ||
16489 | 3,56,0,327,3, | ||
16490 | 57,0,327,3,65, | ||
16491 | 0,327,3,66,0, | ||
16492 | 327,3,67,0,327, | ||
16493 | 3,68,0,327,3, | ||
16494 | 69,0,327,3,70, | ||
16495 | 0,327,3,71,0, | ||
16496 | 327,3,72,0,327, | ||
16497 | 3,73,0,327,3, | ||
16498 | 74,0,327,3,75, | ||
16499 | 0,327,3,76,0, | ||
16500 | 327,3,77,0,327, | ||
16501 | 3,78,0,327,3, | ||
16502 | 79,0,327,3,80, | ||
16503 | 0,327,3,81,0, | ||
16504 | 327,3,82,0,327, | ||
16505 | 3,83,0,327,3, | ||
16506 | 84,0,327,3,85, | ||
16507 | 0,327,3,86,0, | ||
16508 | 327,3,87,0,327, | ||
16509 | 3,88,0,327,3, | ||
16510 | 89,0,327,3,90, | ||
16511 | 0,327,3,95,0, | ||
16512 | 1228,12,1,16784,1229, | ||
16513 | 5,63,3,109,0, | ||
16514 | 327,3,110,0,327, | ||
16515 | 3,111,0,327,3, | ||
16516 | 112,0,327,3,113, | ||
16517 | 0,327,3,114,0, | ||
16518 | 327,3,115,0,1230, | ||
16519 | 12,1,16818,1231,5, | ||
16520 | 63,3,109,0,327, | ||
16521 | 3,110,0,327,3, | ||
16522 | 111,0,327,3,112, | ||
16523 | 0,327,3,113,0, | ||
16524 | 327,3,114,0,327, | ||
16525 | 3,115,0,327,3, | ||
16526 | 116,0,1232,12,1, | ||
16527 | 16853,1233,5,63,3, | ||
16528 | 109,0,327,3,110, | ||
16529 | 0,327,3,111,0, | ||
16530 | 327,3,112,0,327, | ||
16531 | 3,113,0,327,3, | ||
16532 | 114,0,327,3,115, | ||
16533 | 0,327,3,116,0, | ||
16534 | 327,3,117,0,327, | ||
16535 | 3,118,0,327,3, | ||
16536 | 119,0,327,3,120, | ||
16537 | 0,327,3,121,0, | ||
16538 | 327,3,122,0,327, | ||
16539 | 3,48,0,327,3, | ||
16540 | 49,0,327,3,50, | ||
16541 | 0,327,3,51,0, | ||
16542 | 327,3,52,0,327, | ||
16543 | 3,53,0,327,3, | ||
16544 | 54,0,327,3,55, | ||
16545 | 0,327,3,56,0, | ||
16546 | 327,3,57,0,327, | ||
16547 | 3,65,0,327,3, | ||
16548 | 66,0,327,3,67, | ||
16549 | 0,327,3,68,0, | ||
16550 | 327,3,69,0,327, | ||
16551 | 3,70,0,327,3, | ||
16552 | 71,0,327,3,72, | ||
16553 | 0,327,3,73,0, | ||
16554 | 327,3,74,0,327, | ||
16555 | 3,75,0,327,3, | ||
16556 | 76,0,327,3,77, | ||
16557 | 0,327,3,78,0, | ||
16558 | 327,3,79,0,327, | ||
16559 | 3,80,0,327,3, | ||
16560 | 81,0,327,3,82, | ||
16561 | 0,327,3,83,0, | ||
16562 | 327,3,84,0,327, | ||
16563 | 3,85,0,327,3, | ||
16564 | 86,0,327,3,87, | ||
16565 | 0,327,3,88,0, | ||
16566 | 327,3,89,0,327, | ||
16567 | 3,90,0,327,3, | ||
16568 | 95,0,327,3,97, | ||
16569 | 0,1234,12,1,16896, | ||
16570 | 1235,5,63,3,109, | ||
16571 | 0,327,3,110,0, | ||
16572 | 327,3,111,0,327, | ||
16573 | 3,112,0,327,3, | ||
16574 | 113,0,327,3,114, | ||
16575 | 0,1236,12,1,16929, | ||
16576 | 1237,5,63,3,109, | ||
16577 | 0,327,3,110,0, | ||
16578 | 327,3,111,0,327, | ||
16579 | 3,112,0,327,3, | ||
16580 | 113,0,327,3,114, | ||
16581 | 0,327,3,115,0, | ||
16582 | 327,3,116,0,1238, | ||
16583 | 12,1,16964,1239,5, | ||
16584 | 63,3,109,0,327, | ||
16585 | 3,110,0,327,3, | ||
16586 | 111,0,327,3,112, | ||
16587 | 0,327,3,113,0, | ||
16588 | 327,3,114,0,327, | ||
16589 | 3,115,0,327,3, | ||
16590 | 116,0,327,3,117, | ||
16591 | 0,327,3,118,0, | ||
16592 | 327,3,119,0,327, | ||
16593 | 3,120,0,327,3, | ||
16594 | 121,0,327,3,122, | ||
16595 | 0,327,3,48,0, | ||
16596 | 327,3,49,0,327, | ||
16597 | 3,50,0,327,3, | ||
16598 | 51,0,327,3,52, | ||
16599 | 0,327,3,53,0, | ||
16600 | 327,3,54,0,327, | ||
16601 | 3,55,0,327,3, | ||
16602 | 56,0,327,3,57, | ||
16603 | 0,327,3,65,0, | ||
16604 | 327,3,66,0,327, | ||
16605 | 3,67,0,327,3, | ||
16606 | 68,0,327,3,69, | ||
16607 | 0,327,3,70,0, | ||
16608 | 327,3,71,0,327, | ||
16609 | 3,72,0,327,3, | ||
16610 | 73,0,327,3,74, | ||
16611 | 0,327,3,75,0, | ||
16612 | 327,3,76,0,327, | ||
16613 | 3,77,0,327,3, | ||
16614 | 78,0,327,3,79, | ||
16615 | 0,327,3,80,0, | ||
16616 | 327,3,81,0,327, | ||
16617 | 3,82,0,327,3, | ||
16618 | 83,0,327,3,84, | ||
16619 | 0,327,3,85,0, | ||
16620 | 327,3,86,0,327, | ||
16621 | 3,87,0,327,3, | ||
16622 | 88,0,327,3,89, | ||
16623 | 0,327,3,90,0, | ||
16624 | 327,3,95,0,327, | ||
16625 | 3,97,0,327,3, | ||
16626 | 98,0,327,3,99, | ||
16627 | 0,327,3,100,0, | ||
16628 | 327,3,101,0,327, | ||
16629 | 3,102,0,327,3, | ||
16630 | 103,0,327,3,104, | ||
16631 | 0,327,3,105,0, | ||
16632 | 327,3,106,0,327, | ||
16633 | 3,107,0,327,3, | ||
16634 | 108,0,327,1240,11, | ||
16635 | 1,801,0,1241,4, | ||
16636 | 34,84,0,79,0, | ||
16637 | 85,0,67,0,72, | ||
16638 | 0,95,0,83,0, | ||
16639 | 84,0,65,0,82, | ||
16640 | 0,84,0,95,0, | ||
16641 | 69,0,86,0,69, | ||
16642 | 0,78,0,84,0, | ||
16643 | 1,-1,3,117,0, | ||
16644 | 327,3,118,0,327, | ||
16645 | 3,119,0,327,3, | ||
16646 | 120,0,327,3,121, | ||
16647 | 0,327,3,122,0, | ||
16648 | 327,3,48,0,327, | ||
16649 | 3,49,0,327,3, | ||
16650 | 50,0,327,3,51, | ||
16651 | 0,327,3,52,0, | ||
16652 | 327,3,53,0,327, | ||
16653 | 3,54,0,327,3, | ||
16654 | 55,0,327,3,56, | ||
16655 | 0,327,3,57,0, | ||
16656 | 327,3,65,0,327, | ||
16657 | 3,66,0,327,3, | ||
16658 | 67,0,327,3,68, | ||
16659 | 0,327,3,69,0, | ||
16660 | 327,3,70,0,327, | ||
16661 | 3,71,0,327,3, | ||
16662 | 72,0,327,3,73, | ||
16663 | 0,327,3,74,0, | ||
16664 | 327,3,75,0,327, | ||
16665 | 3,76,0,327,3, | ||
16666 | 77,0,327,3,78, | ||
16667 | 0,327,3,79,0, | ||
16668 | 327,3,80,0,327, | ||
16669 | 3,81,0,327,3, | ||
16670 | 82,0,327,3,83, | ||
16671 | 0,327,3,84,0, | ||
16672 | 327,3,85,0,327, | ||
16673 | 3,86,0,327,3, | ||
16674 | 87,0,327,3,88, | ||
16675 | 0,327,3,89,0, | ||
16676 | 327,3,90,0,327, | ||
16677 | 3,95,0,327,3, | ||
16678 | 97,0,327,3,98, | ||
16679 | 0,327,3,99,0, | ||
16680 | 327,3,100,0,327, | ||
16681 | 3,101,0,327,3, | ||
16682 | 102,0,327,3,103, | ||
16683 | 0,327,3,104,0, | ||
16684 | 327,3,105,0,327, | ||
16685 | 3,106,0,327,3, | ||
16686 | 107,0,327,3,108, | ||
16687 | 0,327,1242,11,1, | ||
16688 | 829,0,330,1,-1, | ||
16689 | 3,115,0,327,3, | ||
16690 | 116,0,327,3,117, | ||
16691 | 0,327,3,118,0, | ||
16692 | 327,3,119,0,327, | ||
16693 | 3,120,0,327,3, | ||
16694 | 121,0,327,3,122, | ||
16695 | 0,327,3,48,0, | ||
16696 | 327,3,49,0,327, | ||
16697 | 3,50,0,327,3, | ||
16698 | 51,0,327,3,52, | ||
16699 | 0,327,3,53,0, | ||
16700 | 327,3,54,0,327, | ||
16701 | 3,55,0,327,3, | ||
16702 | 56,0,327,3,57, | ||
16703 | 0,327,3,65,0, | ||
16704 | 327,3,66,0,327, | ||
16705 | 3,67,0,327,3, | ||
16706 | 68,0,327,3,69, | ||
16707 | 0,327,3,70,0, | ||
16708 | 327,3,71,0,327, | ||
16709 | 3,72,0,327,3, | ||
16710 | 73,0,327,3,74, | ||
16711 | 0,327,3,75,0, | ||
16712 | 327,3,76,0,327, | ||
16713 | 3,77,0,327,3, | ||
16714 | 78,0,327,3,79, | ||
16715 | 0,327,3,80,0, | ||
16716 | 327,3,81,0,327, | ||
16717 | 3,82,0,327,3, | ||
16718 | 83,0,327,3,84, | ||
16719 | 0,327,3,85,0, | ||
16720 | 327,3,86,0,327, | ||
16721 | 3,87,0,327,3, | ||
16722 | 88,0,327,3,89, | ||
16723 | 0,327,3,90,0, | ||
16724 | 327,3,95,0,327, | ||
16725 | 3,97,0,327,3, | ||
16726 | 98,0,327,3,99, | ||
16727 | 0,327,3,100,0, | ||
16728 | 327,3,101,0,327, | ||
16729 | 3,102,0,327,3, | ||
16730 | 103,0,327,3,104, | ||
16731 | 0,327,3,105,0, | ||
16732 | 327,3,106,0,327, | ||
16733 | 3,107,0,327,3, | ||
16734 | 108,0,327,1243,11, | ||
16735 | 1,829,0,330,1, | ||
16736 | -1,3,98,0,327, | ||
16737 | 3,99,0,327,3, | ||
16738 | 100,0,327,3,101, | ||
16739 | 0,327,3,102,0, | ||
16740 | 327,3,103,0,327, | ||
16741 | 3,104,0,327,3, | ||
16742 | 105,0,327,3,106, | ||
16743 | 0,327,3,107,0, | ||
16744 | 327,3,108,0,327, | ||
16745 | 1244,11,1,829,0, | ||
16746 | 330,1,-1,3,117, | ||
16747 | 0,327,3,118,0, | ||
16748 | 327,3,119,0,327, | ||
16749 | 3,120,0,327,3, | ||
16750 | 121,0,327,3,122, | ||
16751 | 0,327,3,48,0, | ||
16752 | 327,3,49,0,327, | ||
16753 | 3,50,0,327,3, | ||
16754 | 51,0,327,3,52, | ||
16755 | 0,327,3,53,0, | ||
16756 | 327,3,54,0,327, | ||
16757 | 3,55,0,327,3, | ||
16758 | 56,0,327,3,57, | ||
16759 | 0,327,3,65,0, | ||
16760 | 327,3,66,0,327, | ||
16761 | 3,67,0,327,3, | ||
16762 | 68,0,327,3,69, | ||
16763 | 0,327,3,70,0, | ||
16764 | 327,3,71,0,327, | ||
16765 | 3,72,0,327,3, | ||
16766 | 73,0,327,3,74, | ||
16767 | 0,327,3,75,0, | ||
16768 | 327,3,76,0,327, | ||
16769 | 3,77,0,327,3, | ||
16770 | 78,0,327,3,79, | ||
16771 | 0,327,3,80,0, | ||
16772 | 327,3,81,0,327, | ||
16773 | 3,82,0,327,3, | ||
16774 | 83,0,327,3,84, | ||
16775 | 0,327,3,85,0, | ||
16776 | 327,3,86,0,327, | ||
16777 | 3,87,0,327,3, | ||
16778 | 88,0,327,3,89, | ||
16779 | 0,327,3,90,0, | ||
16780 | 327,3,95,0,327, | ||
16781 | 3,97,0,327,3, | ||
16782 | 98,0,327,3,99, | ||
16783 | 0,327,3,100,0, | ||
16784 | 327,3,101,0,327, | ||
16785 | 3,102,0,327,3, | ||
16786 | 103,0,327,3,104, | ||
16787 | 0,327,3,105,0, | ||
16788 | 327,3,106,0,327, | ||
16789 | 3,107,0,327,3, | ||
16790 | 108,0,327,1245,11, | ||
16791 | 1,829,0,330,1, | ||
16792 | -1,3,116,0,327, | ||
16793 | 3,117,0,327,3, | ||
16794 | 118,0,327,3,119, | ||
16795 | 0,327,3,120,0, | ||
16796 | 327,3,121,0,327, | ||
16797 | 3,122,0,327,3, | ||
16798 | 48,0,327,3,49, | ||
16799 | 0,327,3,50,0, | ||
16800 | 327,3,51,0,327, | ||
16801 | 3,52,0,327,3, | ||
16802 | 53,0,327,3,54, | ||
16803 | 0,327,3,55,0, | ||
16804 | 327,3,56,0,327, | ||
16805 | 3,57,0,327,3, | ||
16806 | 65,0,327,3,66, | ||
16807 | 0,327,3,67,0, | ||
16808 | 327,3,68,0,327, | ||
16809 | 3,69,0,327,3, | ||
16810 | 70,0,327,3,71, | ||
16811 | 0,327,3,72,0, | ||
16812 | 327,3,73,0,327, | ||
16813 | 3,74,0,327,3, | ||
16814 | 75,0,327,3,76, | ||
16815 | 0,327,3,77,0, | ||
16816 | 327,3,78,0,327, | ||
16817 | 3,79,0,327,3, | ||
16818 | 80,0,327,3,81, | ||
16819 | 0,327,3,82,0, | ||
16820 | 327,3,83,0,327, | ||
16821 | 3,84,0,327,3, | ||
16822 | 85,0,327,3,86, | ||
16823 | 0,327,3,87,0, | ||
16824 | 327,3,88,0,327, | ||
16825 | 3,89,0,327,3, | ||
16826 | 90,0,327,3,95, | ||
16827 | 0,327,3,97,0, | ||
16828 | 327,3,98,0,327, | ||
16829 | 3,99,0,327,3, | ||
16830 | 100,0,327,3,101, | ||
16831 | 0,1246,12,1,17431, | ||
16832 | 1247,5,63,3,109, | ||
16833 | 0,327,3,110,0, | ||
16834 | 1248,12,1,17460,1249, | ||
16835 | 5,63,3,109,0, | ||
16836 | 327,3,110,0,327, | ||
16837 | 3,111,0,327,3, | ||
16838 | 112,0,327,3,113, | ||
16839 | 0,327,3,114,0, | ||
16840 | 327,3,115,0,327, | ||
16841 | 3,116,0,327,3, | ||
16842 | 117,0,327,3,118, | ||
16843 | 0,327,3,119,0, | ||
16844 | 327,3,120,0,327, | ||
16845 | 3,121,0,327,3, | ||
16846 | 122,0,327,3,48, | ||
16847 | 0,327,3,49,0, | ||
16848 | 327,3,50,0,327, | ||
16849 | 3,51,0,327,3, | ||
16850 | 52,0,327,3,53, | ||
16851 | 0,327,3,54,0, | ||
16852 | 327,3,55,0,327, | ||
16853 | 3,56,0,327,3, | ||
16854 | 57,0,327,3,65, | ||
16855 | 0,327,3,66,0, | ||
16856 | 327,3,67,0,327, | ||
16857 | 3,68,0,327,3, | ||
16858 | 69,0,327,3,70, | ||
16859 | 0,327,3,71,0, | ||
16860 | 327,3,72,0,327, | ||
16861 | 3,73,0,327,3, | ||
16862 | 74,0,327,3,75, | ||
16863 | 0,327,3,76,0, | ||
16864 | 327,3,77,0,327, | ||
16865 | 3,78,0,327,3, | ||
16866 | 79,0,327,3,80, | ||
16867 | 0,327,3,81,0, | ||
16868 | 327,3,82,0,327, | ||
16869 | 3,83,0,327,3, | ||
16870 | 84,0,327,3,85, | ||
16871 | 0,327,3,86,0, | ||
16872 | 327,3,87,0,327, | ||
16873 | 3,88,0,327,3, | ||
16874 | 89,0,327,3,90, | ||
16875 | 0,327,3,95,0, | ||
16876 | 327,3,97,0,327, | ||
16877 | 3,98,0,327,3, | ||
16878 | 99,0,327,3,100, | ||
16879 | 0,1250,12,1,17506, | ||
16880 | 1251,5,63,3,109, | ||
16881 | 0,327,3,110,0, | ||
16882 | 327,3,111,0,327, | ||
16883 | 3,112,0,327,3, | ||
16884 | 113,0,327,3,114, | ||
16885 | 0,327,3,115,0, | ||
16886 | 327,3,116,0,327, | ||
16887 | 3,117,0,327,3, | ||
16888 | 118,0,327,3,119, | ||
16889 | 0,327,3,120,0, | ||
16890 | 327,3,121,0,327, | ||
16891 | 3,122,0,327,3, | ||
16892 | 48,0,327,3,49, | ||
16893 | 0,327,3,50,0, | ||
16894 | 327,3,51,0,327, | ||
16895 | 3,52,0,327,3, | ||
16896 | 53,0,327,3,54, | ||
16897 | 0,327,3,55,0, | ||
16898 | 327,3,56,0,327, | ||
16899 | 3,57,0,327,3, | ||
16900 | 65,0,327,3,66, | ||
16901 | 0,327,3,67,0, | ||
16902 | 327,3,68,0,327, | ||
16903 | 3,69,0,327,3, | ||
16904 | 70,0,327,3,71, | ||
16905 | 0,327,3,72,0, | ||
16906 | 327,3,73,0,327, | ||
16907 | 3,74,0,327,3, | ||
16908 | 75,0,327,3,76, | ||
16909 | 0,327,3,77,0, | ||
16910 | 327,3,78,0,327, | ||
16911 | 3,79,0,327,3, | ||
16912 | 80,0,327,3,81, | ||
16913 | 0,327,3,82,0, | ||
16914 | 327,3,83,0,327, | ||
16915 | 3,84,0,327,3, | ||
16916 | 85,0,327,3,86, | ||
16917 | 0,327,3,87,0, | ||
16918 | 327,3,88,0,327, | ||
16919 | 3,89,0,327,3, | ||
16920 | 90,0,327,3,95, | ||
16921 | 0,327,3,97,0, | ||
16922 | 327,3,98,0,327, | ||
16923 | 3,99,0,327,3, | ||
16924 | 100,0,327,3,101, | ||
16925 | 0,327,3,102,0, | ||
16926 | 327,3,103,0,327, | ||
16927 | 3,104,0,327,3, | ||
16928 | 105,0,327,3,106, | ||
16929 | 0,327,3,107,0, | ||
16930 | 327,3,108,0,327, | ||
16931 | 1252,11,1,816,0, | ||
16932 | 1253,4,30,84,0, | ||
16933 | 79,0,85,0,67, | ||
16934 | 0,72,0,95,0, | ||
16935 | 69,0,78,0,68, | ||
16936 | 0,95,0,69,0, | ||
16937 | 86,0,69,0,78, | ||
16938 | 0,84,0,1,-1, | ||
16939 | 3,101,0,327,3, | ||
16940 | 102,0,327,3,103, | ||
16941 | 0,327,3,104,0, | ||
16942 | 327,3,105,0,327, | ||
16943 | 3,106,0,327,3, | ||
16944 | 107,0,327,3,108, | ||
16945 | 0,327,1254,11,1, | ||
16946 | 829,0,330,1,-1, | ||
16947 | 3,111,0,327,3, | ||
16948 | 112,0,327,3,113, | ||
16949 | 0,327,3,114,0, | ||
16950 | 327,3,115,0,327, | ||
16951 | 3,116,0,327,3, | ||
16952 | 117,0,327,3,118, | ||
16953 | 0,327,3,119,0, | ||
16954 | 327,3,120,0,327, | ||
16955 | 3,121,0,327,3, | ||
16956 | 122,0,327,3,48, | ||
16957 | 0,327,3,49,0, | ||
16958 | 327,3,50,0,327, | ||
16959 | 3,51,0,327,3, | ||
16960 | 52,0,327,3,53, | ||
16961 | 0,327,3,54,0, | ||
16962 | 327,3,55,0,327, | ||
16963 | 3,56,0,327,3, | ||
16964 | 57,0,327,3,65, | ||
16965 | 0,327,3,66,0, | ||
16966 | 327,3,67,0,327, | ||
16967 | 3,68,0,327,3, | ||
16968 | 69,0,327,3,70, | ||
16969 | 0,327,3,71,0, | ||
16970 | 327,3,72,0,327, | ||
16971 | 3,73,0,327,3, | ||
16972 | 74,0,327,3,75, | ||
16973 | 0,327,3,76,0, | ||
16974 | 327,3,77,0,327, | ||
16975 | 3,78,0,327,3, | ||
16976 | 79,0,327,3,80, | ||
16977 | 0,327,3,81,0, | ||
16978 | 327,3,82,0,327, | ||
16979 | 3,83,0,327,3, | ||
16980 | 84,0,327,3,85, | ||
16981 | 0,327,3,86,0, | ||
16982 | 327,3,87,0,327, | ||
16983 | 3,88,0,327,3, | ||
16984 | 89,0,327,3,90, | ||
16985 | 0,327,3,95,0, | ||
16986 | 327,3,97,0,327, | ||
16987 | 3,98,0,327,3, | ||
16988 | 99,0,327,3,100, | ||
16989 | 0,327,3,101,0, | ||
16990 | 327,3,102,0,327, | ||
16991 | 3,103,0,327,3, | ||
16992 | 104,0,327,3,105, | ||
16993 | 0,327,3,106,0, | ||
16994 | 327,3,107,0,327, | ||
16995 | 3,108,0,327,1255, | ||
16996 | 11,1,829,0,330, | ||
16997 | 1,-1,3,102,0, | ||
16998 | 327,3,103,0,327, | ||
16999 | 3,104,0,327,3, | ||
17000 | 105,0,327,3,106, | ||
17001 | 0,327,3,107,0, | ||
17002 | 327,3,108,0,327, | ||
17003 | 1256,11,1,829,0, | ||
17004 | 330,1,-1,3,97, | ||
17005 | 0,327,3,98,0, | ||
17006 | 327,3,99,0,327, | ||
17007 | 3,100,0,327,3, | ||
17008 | 101,0,327,3,102, | ||
17009 | 0,327,3,103,0, | ||
17010 | 327,3,104,0,327, | ||
17011 | 3,105,0,327,3, | ||
17012 | 106,0,327,3,107, | ||
17013 | 0,327,3,108,0, | ||
17014 | 327,1257,11,1,792, | ||
17015 | 0,1258,4,22,84, | ||
17016 | 0,79,0,85,0, | ||
17017 | 67,0,72,0,95, | ||
17018 | 0,69,0,86,0, | ||
17019 | 69,0,78,0,84, | ||
17020 | 0,1,-1,3,105, | ||
17021 | 0,327,3,106,0, | ||
17022 | 327,3,107,0,327, | ||
17023 | 3,108,0,327,1259, | ||
17024 | 11,1,829,0,330, | ||
17025 | 1,-1,3,100,0, | ||
17026 | 327,3,101,0,327, | ||
17027 | 3,102,0,327,3, | ||
17028 | 103,0,327,3,104, | ||
17029 | 0,327,3,105,0, | ||
17030 | 327,3,106,0,327, | ||
17031 | 3,107,0,327,3, | ||
17032 | 108,0,327,1260,11, | ||
17033 | 1,829,0,330,1, | ||
17034 | -1,3,118,0,327, | ||
17035 | 3,119,0,327,3, | ||
17036 | 120,0,327,3,121, | ||
17037 | 0,327,3,122,0, | ||
17038 | 327,3,48,0,327, | ||
17039 | 3,49,0,327,3, | ||
17040 | 50,0,327,3,51, | ||
17041 | 0,327,3,52,0, | ||
17042 | 327,3,53,0,327, | ||
17043 | 3,54,0,327,3, | ||
17044 | 55,0,327,3,56, | ||
17045 | 0,327,3,57,0, | ||
17046 | 327,3,65,0,327, | ||
17047 | 3,66,0,327,3, | ||
17048 | 67,0,327,3,68, | ||
17049 | 0,327,3,69,0, | ||
17050 | 327,3,70,0,327, | ||
17051 | 3,71,0,327,3, | ||
17052 | 72,0,327,3,73, | ||
17053 | 0,327,3,74,0, | ||
17054 | 327,3,75,0,327, | ||
17055 | 3,76,0,327,3, | ||
17056 | 77,0,327,3,78, | ||
17057 | 0,327,3,79,0, | ||
17058 | 327,3,80,0,327, | ||
17059 | 3,81,0,327,3, | ||
17060 | 82,0,327,3,83, | ||
17061 | 0,327,3,84,0, | ||
17062 | 327,3,85,0,327, | ||
17063 | 3,86,0,327,3, | ||
17064 | 87,0,327,3,88, | ||
17065 | 0,327,3,89,0, | ||
17066 | 327,3,90,0,327, | ||
17067 | 3,95,0,327,3, | ||
17068 | 97,0,327,3,98, | ||
17069 | 0,327,3,99,0, | ||
17070 | 327,3,100,0,327, | ||
17071 | 3,101,0,327,3, | ||
17072 | 102,0,327,3,103, | ||
17073 | 0,327,3,104,0, | ||
17074 | 327,3,105,0,327, | ||
17075 | 3,106,0,327,3, | ||
17076 | 107,0,327,3,108, | ||
17077 | 0,327,1261,11,1, | ||
17078 | 829,0,330,1,-1, | ||
17079 | 3,112,0,327,3, | ||
17080 | 113,0,327,3,114, | ||
17081 | 0,327,3,115,0, | ||
17082 | 327,3,116,0,327, | ||
17083 | 3,117,0,327,3, | ||
17084 | 118,0,327,3,119, | ||
17085 | 0,327,3,120,0, | ||
17086 | 327,3,121,0,327, | ||
17087 | 3,122,0,327,3, | ||
17088 | 48,0,327,3,49, | ||
17089 | 0,327,3,50,0, | ||
17090 | 327,3,51,0,327, | ||
17091 | 3,52,0,327,3, | ||
17092 | 53,0,327,3,54, | ||
17093 | 0,327,3,55,0, | ||
17094 | 327,3,56,0,327, | ||
17095 | 3,57,0,327,3, | ||
17096 | 65,0,327,3,66, | ||
17097 | 0,327,3,67,0, | ||
17098 | 327,3,68,0,327, | ||
17099 | 3,69,0,327,3, | ||
17100 | 70,0,327,3,71, | ||
17101 | 0,327,3,72,0, | ||
17102 | 327,3,73,0,327, | ||
17103 | 3,74,0,327,3, | ||
17104 | 75,0,327,3,76, | ||
17105 | 0,327,3,77,0, | ||
17106 | 327,3,78,0,327, | ||
17107 | 3,79,0,327,3, | ||
17108 | 80,0,327,3,81, | ||
17109 | 0,327,3,82,0, | ||
17110 | 327,3,83,0,327, | ||
17111 | 3,84,0,327,3, | ||
17112 | 85,0,327,3,86, | ||
17113 | 0,327,3,87,0, | ||
17114 | 327,3,88,0,327, | ||
17115 | 3,89,0,327,3, | ||
17116 | 90,0,327,3,95, | ||
17117 | 0,327,3,97,0, | ||
17118 | 327,3,98,0,327, | ||
17119 | 3,99,0,327,3, | ||
17120 | 100,0,327,3,101, | ||
17121 | 0,327,3,102,0, | ||
17122 | 327,3,103,0,327, | ||
17123 | 3,104,0,327,3, | ||
17124 | 105,0,1262,12,1, | ||
17125 | 18148,1263,5,63,3, | ||
17126 | 109,0,1264,12,1, | ||
17127 | 18176,1265,5,63,3, | ||
17128 | 109,0,327,3,110, | ||
17129 | 0,327,3,111,0, | ||
17130 | 327,3,112,0,327, | ||
17131 | 3,113,0,327,3, | ||
17132 | 114,0,327,3,115, | ||
17133 | 0,327,3,116,0, | ||
17134 | 327,3,117,0,327, | ||
17135 | 3,118,0,327,3, | ||
17136 | 119,0,327,3,120, | ||
17137 | 0,327,3,121,0, | ||
17138 | 327,3,122,0,327, | ||
17139 | 3,48,0,327,3, | ||
17140 | 49,0,327,3,50, | ||
17141 | 0,327,3,51,0, | ||
17142 | 327,3,52,0,327, | ||
17143 | 3,53,0,327,3, | ||
17144 | 54,0,327,3,55, | ||
17145 | 0,327,3,56,0, | ||
17146 | 327,3,57,0,327, | ||
17147 | 3,65,0,327,3, | ||
17148 | 66,0,327,3,67, | ||
17149 | 0,327,3,68,0, | ||
17150 | 327,3,69,0,327, | ||
17151 | 3,70,0,327,3, | ||
17152 | 71,0,327,3,72, | ||
17153 | 0,327,3,73,0, | ||
17154 | 327,3,74,0,327, | ||
17155 | 3,75,0,327,3, | ||
17156 | 76,0,327,3,77, | ||
17157 | 0,327,3,78,0, | ||
17158 | 327,3,79,0,327, | ||
17159 | 3,80,0,327,3, | ||
17160 | 81,0,327,3,82, | ||
17161 | 0,327,3,83,0, | ||
17162 | 327,3,84,0,327, | ||
17163 | 3,85,0,327,3, | ||
17164 | 86,0,327,3,87, | ||
17165 | 0,327,3,88,0, | ||
17166 | 327,3,89,0,327, | ||
17167 | 3,90,0,327,3, | ||
17168 | 95,0,327,3,97, | ||
17169 | 0,327,3,98,0, | ||
17170 | 327,3,99,0,327, | ||
17171 | 3,100,0,327,3, | ||
17172 | 101,0,1266,12,1, | ||
17173 | 18223,1267,5,63,3, | ||
17174 | 109,0,327,3,110, | ||
17175 | 0,327,3,111,0, | ||
17176 | 327,3,112,0,327, | ||
17177 | 3,113,0,327,3, | ||
17178 | 114,0,1268,12,1, | ||
17179 | 18256,1269,5,63,3, | ||
17180 | 109,0,327,3,110, | ||
17181 | 0,327,3,111,0, | ||
17182 | 327,3,112,0,327, | ||
17183 | 3,113,0,327,3, | ||
17184 | 114,0,327,3,115, | ||
17185 | 0,327,3,116,0, | ||
17186 | 327,3,117,0,327, | ||
17187 | 3,118,0,327,3, | ||
17188 | 119,0,327,3,120, | ||
17189 | 0,327,3,121,0, | ||
17190 | 327,3,122,0,327, | ||
17191 | 3,48,0,327,3, | ||
17192 | 49,0,327,3,50, | ||
17193 | 0,327,3,51,0, | ||
17194 | 327,3,52,0,327, | ||
17195 | 3,53,0,327,3, | ||
17196 | 54,0,327,3,55, | ||
17197 | 0,327,3,56,0, | ||
17198 | 327,3,57,0,327, | ||
17199 | 3,65,0,327,3, | ||
17200 | 66,0,327,3,67, | ||
17201 | 0,327,3,68,0, | ||
17202 | 327,3,69,0,327, | ||
17203 | 3,70,0,327,3, | ||
17204 | 71,0,327,3,72, | ||
17205 | 0,327,3,73,0, | ||
17206 | 327,3,74,0,327, | ||
17207 | 3,75,0,327,3, | ||
17208 | 76,0,327,3,77, | ||
17209 | 0,327,3,78,0, | ||
17210 | 327,3,79,0,327, | ||
17211 | 3,80,0,327,3, | ||
17212 | 81,0,327,3,82, | ||
17213 | 0,327,3,83,0, | ||
17214 | 327,3,84,0,327, | ||
17215 | 3,85,0,327,3, | ||
17216 | 86,0,327,3,87, | ||
17217 | 0,327,3,88,0, | ||
17218 | 327,3,89,0,327, | ||
17219 | 3,90,0,327,3, | ||
17220 | 95,0,327,3,97, | ||
17221 | 0,327,3,98,0, | ||
17222 | 327,3,99,0,327, | ||
17223 | 3,100,0,327,3, | ||
17224 | 101,0,327,3,102, | ||
17225 | 0,327,3,103,0, | ||
17226 | 327,3,104,0,327, | ||
17227 | 3,105,0,327,3, | ||
17228 | 106,0,327,3,107, | ||
17229 | 0,327,3,108,0, | ||
17230 | 327,1270,11,1,783, | ||
17231 | 0,1271,4,22,84, | ||
17232 | 0,73,0,77,0, | ||
17233 | 69,0,82,0,95, | ||
17234 | 0,69,0,86,0, | ||
17235 | 69,0,78,0,84, | ||
17236 | 0,1,-1,3,115, | ||
17237 | 0,327,3,116,0, | ||
17238 | 327,3,117,0,327, | ||
17239 | 3,118,0,327,3, | ||
17240 | 119,0,327,3,120, | ||
17241 | 0,327,3,121,0, | ||
17242 | 327,3,122,0,327, | ||
17243 | 3,48,0,327,3, | ||
17244 | 49,0,327,3,50, | ||
17245 | 0,327,3,51,0, | ||
17246 | 327,3,52,0,327, | ||
17247 | 3,53,0,327,3, | ||
17248 | 54,0,327,3,55, | ||
17249 | 0,327,3,56,0, | ||
17250 | 327,3,57,0,327, | ||
17251 | 3,65,0,327,3, | ||
17252 | 66,0,327,3,67, | ||
17253 | 0,327,3,68,0, | ||
17254 | 327,3,69,0,327, | ||
17255 | 3,70,0,327,3, | ||
17256 | 71,0,327,3,72, | ||
17257 | 0,327,3,73,0, | ||
17258 | 327,3,74,0,327, | ||
17259 | 3,75,0,327,3, | ||
17260 | 76,0,327,3,77, | ||
17261 | 0,327,3,78,0, | ||
17262 | 327,3,79,0,327, | ||
17263 | 3,80,0,327,3, | ||
17264 | 81,0,327,3,82, | ||
17265 | 0,327,3,83,0, | ||
17266 | 327,3,84,0,327, | ||
17267 | 3,85,0,327,3, | ||
17268 | 86,0,327,3,87, | ||
17269 | 0,327,3,88,0, | ||
17270 | 327,3,89,0,327, | ||
17271 | 3,90,0,327,3, | ||
17272 | 95,0,327,3,97, | ||
17273 | 0,327,3,98,0, | ||
17274 | 327,3,99,0,327, | ||
17275 | 3,100,0,327,3, | ||
17276 | 101,0,327,3,102, | ||
17277 | 0,327,3,103,0, | ||
17278 | 327,3,104,0,327, | ||
17279 | 3,105,0,327,3, | ||
17280 | 106,0,327,3,107, | ||
17281 | 0,327,3,108,0, | ||
17282 | 327,1272,11,1,829, | ||
17283 | 0,330,1,-1,3, | ||
17284 | 102,0,327,3,103, | ||
17285 | 0,327,3,104,0, | ||
17286 | 327,3,105,0,327, | ||
17287 | 3,106,0,327,3, | ||
17288 | 107,0,327,3,108, | ||
17289 | 0,327,1273,11,1, | ||
17290 | 829,0,330,1,-1, | ||
17291 | 3,110,0,327,3, | ||
17292 | 111,0,327,3,112, | ||
17293 | 0,327,3,113,0, | ||
17294 | 327,3,114,0,327, | ||
17295 | 3,115,0,327,3, | ||
17296 | 116,0,327,3,117, | ||
17297 | 0,327,3,118,0, | ||
17298 | 327,3,119,0,327, | ||
17299 | 3,120,0,327,3, | ||
17300 | 121,0,327,3,122, | ||
17301 | 0,327,3,48,0, | ||
17302 | 327,3,49,0,327, | ||
17303 | 3,50,0,327,3, | ||
17304 | 51,0,327,3,52, | ||
17305 | 0,327,3,53,0, | ||
17306 | 327,3,54,0,327, | ||
17307 | 3,55,0,327,3, | ||
17308 | 56,0,327,3,57, | ||
17309 | 0,327,3,65,0, | ||
17310 | 327,3,66,0,327, | ||
17311 | 3,67,0,327,3, | ||
17312 | 68,0,327,3,69, | ||
17313 | 0,327,3,70,0, | ||
17314 | 327,3,71,0,327, | ||
17315 | 3,72,0,327,3, | ||
17316 | 73,0,327,3,74, | ||
17317 | 0,327,3,75,0, | ||
17318 | 327,3,76,0,327, | ||
17319 | 3,77,0,327,3, | ||
17320 | 78,0,327,3,79, | ||
17321 | 0,327,3,80,0, | ||
17322 | 327,3,81,0,327, | ||
17323 | 3,82,0,327,3, | ||
17324 | 83,0,327,3,84, | ||
17325 | 0,327,3,85,0, | ||
17326 | 327,3,86,0,327, | ||
17327 | 3,87,0,327,3, | ||
17328 | 88,0,327,3,89, | ||
17329 | 0,327,3,90,0, | ||
17330 | 327,3,95,0,327, | ||
17331 | 3,97,0,327,3, | ||
17332 | 98,0,327,3,99, | ||
17333 | 0,327,3,100,0, | ||
17334 | 327,3,101,0,327, | ||
17335 | 3,102,0,327,3, | ||
17336 | 103,0,327,3,104, | ||
17337 | 0,327,3,105,0, | ||
17338 | 327,3,106,0,327, | ||
17339 | 3,107,0,327,3, | ||
17340 | 108,0,327,1274,11, | ||
17341 | 1,829,0,330,1, | ||
17342 | -1,3,106,0,327, | ||
17343 | 3,107,0,327,3, | ||
17344 | 108,0,327,1275,11, | ||
17345 | 1,829,0,330,1, | ||
17346 | -1,3,117,0,325, | ||
17347 | 3,118,0,1276,12, | ||
17348 | 1,18699,1277,5,63, | ||
17349 | 3,109,0,327,3, | ||
17350 | 110,0,327,3,111, | ||
17351 | 0,327,3,112,0, | ||
17352 | 327,3,113,0,327, | ||
17353 | 3,114,0,327,3, | ||
17354 | 115,0,327,3,116, | ||
17355 | 0,327,3,117,0, | ||
17356 | 327,3,118,0,327, | ||
17357 | 3,119,0,327,3, | ||
17358 | 120,0,327,3,121, | ||
17359 | 0,327,3,122,0, | ||
17360 | 327,3,48,0,327, | ||
17361 | 3,49,0,327,3, | ||
17362 | 50,0,327,3,51, | ||
17363 | 0,327,3,52,0, | ||
17364 | 327,3,53,0,327, | ||
17365 | 3,54,0,327,3, | ||
17366 | 55,0,327,3,56, | ||
17367 | 0,327,3,57,0, | ||
17368 | 327,3,65,0,327, | ||
17369 | 3,66,0,327,3, | ||
17370 | 67,0,327,3,68, | ||
17371 | 0,327,3,69,0, | ||
17372 | 327,3,70,0,327, | ||
17373 | 3,71,0,327,3, | ||
17374 | 72,0,327,3,73, | ||
17375 | 0,327,3,74,0, | ||
17376 | 327,3,75,0,327, | ||
17377 | 3,76,0,327,3, | ||
17378 | 77,0,327,3,78, | ||
17379 | 0,327,3,79,0, | ||
17380 | 327,3,80,0,327, | ||
17381 | 3,81,0,327,3, | ||
17382 | 82,0,327,3,83, | ||
17383 | 0,327,3,84,0, | ||
17384 | 327,3,85,0,327, | ||
17385 | 3,86,0,327,3, | ||
17386 | 87,0,327,3,88, | ||
17387 | 0,327,3,89,0, | ||
17388 | 327,3,90,0,327, | ||
17389 | 3,95,0,327,3, | ||
17390 | 97,0,327,3,98, | ||
17391 | 0,327,3,99,0, | ||
17392 | 327,3,100,0,327, | ||
17393 | 3,101,0,1278,12, | ||
17394 | 1,18746,1279,5,63, | ||
17395 | 3,109,0,327,3, | ||
17396 | 110,0,327,3,111, | ||
17397 | 0,327,3,112,0, | ||
17398 | 327,3,113,0,327, | ||
17399 | 3,114,0,327,3, | ||
17400 | 115,0,327,3,116, | ||
17401 | 0,327,3,117,0, | ||
17402 | 327,3,118,0,327, | ||
17403 | 3,119,0,327,3, | ||
17404 | 120,0,327,3,121, | ||
17405 | 0,327,3,122,0, | ||
17406 | 327,3,48,0,327, | ||
17407 | 3,49,0,327,3, | ||
17408 | 50,0,327,3,51, | ||
17409 | 0,327,3,52,0, | ||
17410 | 327,3,53,0,327, | ||
17411 | 3,54,0,327,3, | ||
17412 | 55,0,327,3,56, | ||
17413 | 0,327,3,57,0, | ||
17414 | 327,3,65,0,327, | ||
17415 | 3,66,0,327,3, | ||
17416 | 67,0,327,3,68, | ||
17417 | 0,327,3,69,0, | ||
17418 | 327,3,70,0,327, | ||
17419 | 3,71,0,327,3, | ||
17420 | 72,0,327,3,73, | ||
17421 | 0,327,3,74,0, | ||
17422 | 327,3,75,0,327, | ||
17423 | 3,76,0,327,3, | ||
17424 | 77,0,327,3,78, | ||
17425 | 0,327,3,79,0, | ||
17426 | 327,3,80,0,327, | ||
17427 | 3,81,0,327,3, | ||
17428 | 82,0,327,3,83, | ||
17429 | 0,327,3,84,0, | ||
17430 | 327,3,85,0,327, | ||
17431 | 3,86,0,327,3, | ||
17432 | 87,0,327,3,88, | ||
17433 | 0,327,3,89,0, | ||
17434 | 327,3,90,0,327, | ||
17435 | 3,95,0,327,3, | ||
17436 | 97,0,327,3,98, | ||
17437 | 0,327,3,99,0, | ||
17438 | 1280,12,1,18791,1281, | ||
17439 | 5,63,3,109,0, | ||
17440 | 327,3,110,0,327, | ||
17441 | 3,111,0,327,3, | ||
17442 | 112,0,327,3,113, | ||
17443 | 0,327,3,114,0, | ||
17444 | 327,3,115,0,327, | ||
17445 | 3,116,0,1282,12, | ||
17446 | 1,18826,1283,5,63, | ||
17447 | 3,109,0,327,3, | ||
17448 | 110,0,327,3,111, | ||
17449 | 0,1284,12,1,18856, | ||
17450 | 1285,5,63,3,109, | ||
17451 | 0,327,3,110,0, | ||
17452 | 327,3,111,0,327, | ||
17453 | 3,112,0,327,3, | ||
17454 | 113,0,327,3,114, | ||
17455 | 0,1286,12,1,18889, | ||
17456 | 1287,5,63,3,109, | ||
17457 | 0,327,3,110,0, | ||
17458 | 327,3,111,0,327, | ||
17459 | 3,112,0,327,3, | ||
17460 | 113,0,327,3,114, | ||
17461 | 0,327,3,115,0, | ||
17462 | 327,3,116,0,327, | ||
17463 | 3,117,0,327,3, | ||
17464 | 118,0,327,3,119, | ||
17465 | 0,327,3,120,0, | ||
17466 | 327,3,121,0,327, | ||
17467 | 3,122,0,327,3, | ||
17468 | 48,0,327,3,49, | ||
17469 | 0,327,3,50,0, | ||
17470 | 327,3,51,0,327, | ||
17471 | 3,52,0,327,3, | ||
17472 | 53,0,327,3,54, | ||
17473 | 0,327,3,55,0, | ||
17474 | 327,3,56,0,327, | ||
17475 | 3,57,0,327,3, | ||
17476 | 65,0,327,3,66, | ||
17477 | 0,327,3,67,0, | ||
17478 | 327,3,68,0,327, | ||
17479 | 3,69,0,327,3, | ||
17480 | 70,0,327,3,71, | ||
17481 | 0,327,3,72,0, | ||
17482 | 327,3,73,0,327, | ||
17483 | 3,74,0,327,3, | ||
17484 | 75,0,327,3,76, | ||
17485 | 0,327,3,77,0, | ||
17486 | 327,3,78,0,327, | ||
17487 | 3,79,0,327,3, | ||
17488 | 80,0,327,3,81, | ||
17489 | 0,327,3,82,0, | ||
17490 | 327,3,83,0,327, | ||
17491 | 3,84,0,327,3, | ||
17492 | 85,0,327,3,86, | ||
17493 | 0,327,3,87,0, | ||
17494 | 327,3,88,0,327, | ||
17495 | 3,89,0,327,3, | ||
17496 | 90,0,327,3,95, | ||
17497 | 0,327,3,97,0, | ||
17498 | 327,3,98,0,327, | ||
17499 | 3,99,0,327,3, | ||
17500 | 100,0,327,3,101, | ||
17501 | 0,327,3,102,0, | ||
17502 | 327,3,103,0,327, | ||
17503 | 3,104,0,327,3, | ||
17504 | 105,0,327,3,106, | ||
17505 | 0,327,3,107,0, | ||
17506 | 327,3,108,0,327, | ||
17507 | 1288,11,1,320,0, | ||
17508 | 1289,4,22,86,0, | ||
17509 | 69,0,67,0,84, | ||
17510 | 0,79,0,82,0, | ||
17511 | 95,0,84,0,89, | ||
17512 | 0,80,0,69,0, | ||
17513 | 1,-1,3,115,0, | ||
17514 | 327,3,116,0,327, | ||
17515 | 3,117,0,327,3, | ||
17516 | 118,0,327,3,119, | ||
17517 | 0,327,3,120,0, | ||
17518 | 327,3,121,0,327, | ||
17519 | 3,122,0,327,3, | ||
17520 | 48,0,327,3,49, | ||
17521 | 0,327,3,50,0, | ||
17522 | 327,3,51,0,327, | ||
17523 | 3,52,0,327,3, | ||
17524 | 53,0,327,3,54, | ||
17525 | 0,327,3,55,0, | ||
17526 | 327,3,56,0,327, | ||
17527 | 3,57,0,327,3, | ||
17528 | 65,0,327,3,66, | ||
17529 | 0,327,3,67,0, | ||
17530 | 327,3,68,0,327, | ||
17531 | 3,69,0,327,3, | ||
17532 | 70,0,327,3,71, | ||
17533 | 0,327,3,72,0, | ||
17534 | 327,3,73,0,327, | ||
17535 | 3,74,0,327,3, | ||
17536 | 75,0,327,3,76, | ||
17537 | 0,327,3,77,0, | ||
17538 | 327,3,78,0,327, | ||
17539 | 3,79,0,327,3, | ||
17540 | 80,0,327,3,81, | ||
17541 | 0,327,3,82,0, | ||
17542 | 327,3,83,0,327, | ||
17543 | 3,84,0,327,3, | ||
17544 | 85,0,327,3,86, | ||
17545 | 0,327,3,87,0, | ||
17546 | 327,3,88,0,327, | ||
17547 | 3,89,0,327,3, | ||
17548 | 90,0,327,3,95, | ||
17549 | 0,327,3,97,0, | ||
17550 | 327,3,98,0,327, | ||
17551 | 3,99,0,327,3, | ||
17552 | 100,0,327,3,101, | ||
17553 | 0,327,3,102,0, | ||
17554 | 327,3,103,0,327, | ||
17555 | 3,104,0,327,3, | ||
17556 | 105,0,327,3,106, | ||
17557 | 0,327,3,107,0, | ||
17558 | 327,3,108,0,327, | ||
17559 | 1290,11,1,829,0, | ||
17560 | 330,1,-1,3,112, | ||
17561 | 0,327,3,113,0, | ||
17562 | 327,3,114,0,327, | ||
17563 | 3,115,0,327,3, | ||
17564 | 116,0,327,3,117, | ||
17565 | 0,327,3,118,0, | ||
17566 | 327,3,119,0,327, | ||
17567 | 3,120,0,327,3, | ||
17568 | 121,0,327,3,122, | ||
17569 | 0,327,3,48,0, | ||
17570 | 327,3,49,0,327, | ||
17571 | 3,50,0,327,3, | ||
17572 | 51,0,327,3,52, | ||
17573 | 0,327,3,53,0, | ||
17574 | 327,3,54,0,327, | ||
17575 | 3,55,0,327,3, | ||
17576 | 56,0,327,3,57, | ||
17577 | 0,327,3,65,0, | ||
17578 | 327,3,66,0,327, | ||
17579 | 3,67,0,327,3, | ||
17580 | 68,0,327,3,69, | ||
17581 | 0,327,3,70,0, | ||
17582 | 327,3,71,0,327, | ||
17583 | 3,72,0,327,3, | ||
17584 | 73,0,327,3,74, | ||
17585 | 0,327,3,75,0, | ||
17586 | 327,3,76,0,327, | ||
17587 | 3,77,0,327,3, | ||
17588 | 78,0,327,3,79, | ||
17589 | 0,327,3,80,0, | ||
17590 | 327,3,81,0,327, | ||
17591 | 3,82,0,327,3, | ||
17592 | 83,0,327,3,84, | ||
17593 | 0,327,3,85,0, | ||
17594 | 327,3,86,0,327, | ||
17595 | 3,87,0,327,3, | ||
17596 | 88,0,327,3,89, | ||
17597 | 0,327,3,90,0, | ||
17598 | 327,3,95,0,327, | ||
17599 | 3,97,0,327,3, | ||
17600 | 98,0,327,3,99, | ||
17601 | 0,327,3,100,0, | ||
17602 | 327,3,101,0,327, | ||
17603 | 3,102,0,327,3, | ||
17604 | 103,0,327,3,104, | ||
17605 | 0,327,3,105,0, | ||
17606 | 327,3,106,0,327, | ||
17607 | 3,107,0,327,3, | ||
17608 | 108,0,327,1291,11, | ||
17609 | 1,829,0,330,1, | ||
17610 | -1,3,117,0,327, | ||
17611 | 3,118,0,327,3, | ||
17612 | 119,0,327,3,120, | ||
17613 | 0,327,3,121,0, | ||
17614 | 327,3,122,0,327, | ||
17615 | 3,48,0,327,3, | ||
17616 | 49,0,327,3,50, | ||
17617 | 0,327,3,51,0, | ||
17618 | 327,3,52,0,327, | ||
17619 | 3,53,0,327,3, | ||
17620 | 54,0,327,3,55, | ||
17621 | 0,327,3,56,0, | ||
17622 | 327,3,57,0,327, | ||
17623 | 3,65,0,327,3, | ||
17624 | 66,0,327,3,67, | ||
17625 | 0,327,3,68,0, | ||
17626 | 327,3,69,0,327, | ||
17627 | 3,70,0,327,3, | ||
17628 | 71,0,327,3,72, | ||
17629 | 0,327,3,73,0, | ||
17630 | 327,3,74,0,327, | ||
17631 | 3,75,0,327,3, | ||
17632 | 76,0,327,3,77, | ||
17633 | 0,327,3,78,0, | ||
17634 | 327,3,79,0,327, | ||
17635 | 3,80,0,327,3, | ||
17636 | 81,0,327,3,82, | ||
17637 | 0,327,3,83,0, | ||
17638 | 327,3,84,0,327, | ||
17639 | 3,85,0,327,3, | ||
17640 | 86,0,327,3,87, | ||
17641 | 0,327,3,88,0, | ||
17642 | 327,3,89,0,327, | ||
17643 | 3,90,0,327,3, | ||
17644 | 95,0,327,3,97, | ||
17645 | 0,327,3,98,0, | ||
17646 | 327,3,99,0,327, | ||
17647 | 3,100,0,327,3, | ||
17648 | 101,0,327,3,102, | ||
17649 | 0,327,3,103,0, | ||
17650 | 327,3,104,0,327, | ||
17651 | 3,105,0,327,3, | ||
17652 | 106,0,327,3,107, | ||
17653 | 0,327,3,108,0, | ||
17654 | 327,1292,11,1,829, | ||
17655 | 0,330,1,-1,3, | ||
17656 | 100,0,327,3,101, | ||
17657 | 0,327,3,102,0, | ||
17658 | 327,3,103,0,327, | ||
17659 | 3,104,0,327,3, | ||
17660 | 105,0,327,3,106, | ||
17661 | 0,327,3,107,0, | ||
17662 | 327,3,108,0,327, | ||
17663 | 1293,11,1,829,0, | ||
17664 | 330,1,-1,3,102, | ||
17665 | 0,327,3,103,0, | ||
17666 | 327,3,104,0,327, | ||
17667 | 3,105,0,327,3, | ||
17668 | 106,0,327,3,107, | ||
17669 | 0,327,3,108,0, | ||
17670 | 327,1294,11,1,829, | ||
17671 | 0,330,1,-1,3, | ||
17672 | 119,0,1295,12,1, | ||
17673 | 19420,1296,5,63,3, | ||
17674 | 109,0,327,3,110, | ||
17675 | 0,327,3,111,0, | ||
17676 | 327,3,112,0,327, | ||
17677 | 3,113,0,327,3, | ||
17678 | 114,0,327,3,115, | ||
17679 | 0,327,3,116,0, | ||
17680 | 327,3,117,0,327, | ||
17681 | 3,118,0,327,3, | ||
17682 | 119,0,327,3,120, | ||
17683 | 0,327,3,121,0, | ||
17684 | 327,3,122,0,327, | ||
17685 | 3,48,0,327,3, | ||
17686 | 49,0,327,3,50, | ||
17687 | 0,327,3,51,0, | ||
17688 | 327,3,52,0,327, | ||
17689 | 3,53,0,327,3, | ||
17690 | 54,0,327,3,55, | ||
17691 | 0,327,3,56,0, | ||
17692 | 327,3,57,0,327, | ||
17693 | 3,65,0,327,3, | ||
17694 | 66,0,327,3,67, | ||
17695 | 0,327,3,68,0, | ||
17696 | 327,3,69,0,327, | ||
17697 | 3,70,0,327,3, | ||
17698 | 71,0,327,3,72, | ||
17699 | 0,327,3,73,0, | ||
17700 | 327,3,74,0,327, | ||
17701 | 3,75,0,327,3, | ||
17702 | 76,0,327,3,77, | ||
17703 | 0,327,3,78,0, | ||
17704 | 327,3,79,0,327, | ||
17705 | 3,80,0,327,3, | ||
17706 | 81,0,327,3,82, | ||
17707 | 0,327,3,83,0, | ||
17708 | 327,3,84,0,327, | ||
17709 | 3,85,0,327,3, | ||
17710 | 86,0,327,3,87, | ||
17711 | 0,327,3,88,0, | ||
17712 | 327,3,89,0,327, | ||
17713 | 3,90,0,327,3, | ||
17714 | 95,0,327,3,97, | ||
17715 | 0,327,3,98,0, | ||
17716 | 327,3,99,0,327, | ||
17717 | 3,100,0,327,3, | ||
17718 | 101,0,327,3,102, | ||
17719 | 0,327,3,103,0, | ||
17720 | 327,3,104,0,1297, | ||
17721 | 12,1,19470,1298,5, | ||
17722 | 63,3,109,0,327, | ||
17723 | 3,110,0,327,3, | ||
17724 | 111,0,327,3,112, | ||
17725 | 0,327,3,113,0, | ||
17726 | 327,3,114,0,327, | ||
17727 | 3,115,0,327,3, | ||
17728 | 116,0,327,3,117, | ||
17729 | 0,327,3,118,0, | ||
17730 | 327,3,119,0,327, | ||
17731 | 3,120,0,327,3, | ||
17732 | 121,0,327,3,122, | ||
17733 | 0,327,3,48,0, | ||
17734 | 327,3,49,0,327, | ||
17735 | 3,50,0,327,3, | ||
17736 | 51,0,327,3,52, | ||
17737 | 0,327,3,53,0, | ||
17738 | 327,3,54,0,327, | ||
17739 | 3,55,0,327,3, | ||
17740 | 56,0,327,3,57, | ||
17741 | 0,327,3,65,0, | ||
17742 | 327,3,66,0,327, | ||
17743 | 3,67,0,327,3, | ||
17744 | 68,0,327,3,69, | ||
17745 | 0,327,3,70,0, | ||
17746 | 327,3,71,0,327, | ||
17747 | 3,72,0,327,3, | ||
17748 | 73,0,327,3,74, | ||
17749 | 0,327,3,75,0, | ||
17750 | 327,3,76,0,327, | ||
17751 | 3,77,0,327,3, | ||
17752 | 78,0,327,3,79, | ||
17753 | 0,327,3,80,0, | ||
17754 | 327,3,81,0,327, | ||
17755 | 3,82,0,327,3, | ||
17756 | 83,0,327,3,84, | ||
17757 | 0,327,3,85,0, | ||
17758 | 327,3,86,0,327, | ||
17759 | 3,87,0,327,3, | ||
17760 | 88,0,327,3,89, | ||
17761 | 0,327,3,90,0, | ||
17762 | 327,3,95,0,327, | ||
17763 | 3,97,0,327,3, | ||
17764 | 98,0,327,3,99, | ||
17765 | 0,327,3,100,0, | ||
17766 | 327,3,101,0,327, | ||
17767 | 3,102,0,327,3, | ||
17768 | 103,0,327,3,104, | ||
17769 | 0,327,3,105,0, | ||
17770 | 1299,12,1,19521,1300, | ||
17771 | 5,63,3,109,0, | ||
17772 | 327,3,110,0,327, | ||
17773 | 3,111,0,327,3, | ||
17774 | 112,0,327,3,113, | ||
17775 | 0,327,3,114,0, | ||
17776 | 327,3,115,0,327, | ||
17777 | 3,116,0,327,3, | ||
17778 | 117,0,327,3,118, | ||
17779 | 0,327,3,119,0, | ||
17780 | 327,3,120,0,327, | ||
17781 | 3,121,0,327,3, | ||
17782 | 122,0,327,3,48, | ||
17783 | 0,327,3,49,0, | ||
17784 | 327,3,50,0,327, | ||
17785 | 3,51,0,327,3, | ||
17786 | 52,0,327,3,53, | ||
17787 | 0,327,3,54,0, | ||
17788 | 327,3,55,0,327, | ||
17789 | 3,56,0,327,3, | ||
17790 | 57,0,327,3,65, | ||
17791 | 0,327,3,66,0, | ||
17792 | 327,3,67,0,327, | ||
17793 | 3,68,0,327,3, | ||
17794 | 69,0,327,3,70, | ||
17795 | 0,327,3,71,0, | ||
17796 | 327,3,72,0,327, | ||
17797 | 3,73,0,327,3, | ||
17798 | 74,0,327,3,75, | ||
17799 | 0,327,3,76,0, | ||
17800 | 327,3,77,0,327, | ||
17801 | 3,78,0,327,3, | ||
17802 | 79,0,327,3,80, | ||
17803 | 0,327,3,81,0, | ||
17804 | 327,3,82,0,327, | ||
17805 | 3,83,0,327,3, | ||
17806 | 84,0,327,3,85, | ||
17807 | 0,327,3,86,0, | ||
17808 | 327,3,87,0,327, | ||
17809 | 3,88,0,327,3, | ||
17810 | 89,0,327,3,90, | ||
17811 | 0,327,3,95,0, | ||
17812 | 327,3,97,0,327, | ||
17813 | 3,98,0,327,3, | ||
17814 | 99,0,327,3,100, | ||
17815 | 0,327,3,101,0, | ||
17816 | 327,3,102,0,327, | ||
17817 | 3,103,0,327,3, | ||
17818 | 104,0,327,3,105, | ||
17819 | 0,327,3,106,0, | ||
17820 | 327,3,107,0,327, | ||
17821 | 3,108,0,1301,12, | ||
17822 | 1,19575,1302,5,63, | ||
17823 | 3,109,0,327,3, | ||
17824 | 110,0,327,3,111, | ||
17825 | 0,327,3,112,0, | ||
17826 | 327,3,113,0,327, | ||
17827 | 3,114,0,327,3, | ||
17828 | 115,0,327,3,116, | ||
17829 | 0,327,3,117,0, | ||
17830 | 327,3,118,0,327, | ||
17831 | 3,119,0,327,3, | ||
17832 | 120,0,327,3,121, | ||
17833 | 0,327,3,122,0, | ||
17834 | 327,3,48,0,327, | ||
17835 | 3,49,0,327,3, | ||
17836 | 50,0,327,3,51, | ||
17837 | 0,327,3,52,0, | ||
17838 | 327,3,53,0,327, | ||
17839 | 3,54,0,327,3, | ||
17840 | 55,0,327,3,56, | ||
17841 | 0,327,3,57,0, | ||
17842 | 327,3,65,0,327, | ||
17843 | 3,66,0,327,3, | ||
17844 | 67,0,327,3,68, | ||
17845 | 0,327,3,69,0, | ||
17846 | 327,3,70,0,327, | ||
17847 | 3,71,0,327,3, | ||
17848 | 72,0,327,3,73, | ||
17849 | 0,327,3,74,0, | ||
17850 | 327,3,75,0,327, | ||
17851 | 3,76,0,327,3, | ||
17852 | 77,0,327,3,78, | ||
17853 | 0,327,3,79,0, | ||
17854 | 327,3,80,0,327, | ||
17855 | 3,81,0,327,3, | ||
17856 | 82,0,327,3,83, | ||
17857 | 0,327,3,84,0, | ||
17858 | 327,3,85,0,327, | ||
17859 | 3,86,0,327,3, | ||
17860 | 87,0,327,3,88, | ||
17861 | 0,327,3,89,0, | ||
17862 | 327,3,90,0,327, | ||
17863 | 3,95,0,327,3, | ||
17864 | 97,0,327,3,98, | ||
17865 | 0,327,3,99,0, | ||
17866 | 327,3,100,0,327, | ||
17867 | 3,101,0,1303,12, | ||
17868 | 1,19622,1304,5,63, | ||
17869 | 3,109,0,327,3, | ||
17870 | 110,0,327,3,111, | ||
17871 | 0,327,3,112,0, | ||
17872 | 327,3,113,0,327, | ||
17873 | 3,114,0,327,3, | ||
17874 | 115,0,327,3,116, | ||
17875 | 0,327,3,117,0, | ||
17876 | 327,3,118,0,327, | ||
17877 | 3,119,0,327,3, | ||
17878 | 120,0,327,3,121, | ||
17879 | 0,327,3,122,0, | ||
17880 | 327,3,48,0,327, | ||
17881 | 3,49,0,327,3, | ||
17882 | 50,0,327,3,51, | ||
17883 | 0,327,3,52,0, | ||
17884 | 327,3,53,0,327, | ||
17885 | 3,54,0,327,3, | ||
17886 | 55,0,327,3,56, | ||
17887 | 0,327,3,57,0, | ||
17888 | 327,3,65,0,327, | ||
17889 | 3,66,0,327,3, | ||
17890 | 67,0,327,3,68, | ||
17891 | 0,327,3,69,0, | ||
17892 | 327,3,70,0,327, | ||
17893 | 3,71,0,327,3, | ||
17894 | 72,0,327,3,73, | ||
17895 | 0,327,3,74,0, | ||
17896 | 327,3,75,0,327, | ||
17897 | 3,76,0,327,3, | ||
17898 | 77,0,327,3,78, | ||
17899 | 0,327,3,79,0, | ||
17900 | 327,3,80,0,327, | ||
17901 | 3,81,0,327,3, | ||
17902 | 82,0,327,3,83, | ||
17903 | 0,327,3,84,0, | ||
17904 | 327,3,85,0,327, | ||
17905 | 3,86,0,327,3, | ||
17906 | 87,0,327,3,88, | ||
17907 | 0,327,3,89,0, | ||
17908 | 327,3,90,0,327, | ||
17909 | 3,95,0,327,3, | ||
17910 | 97,0,327,3,98, | ||
17911 | 0,327,3,99,0, | ||
17912 | 327,3,100,0,327, | ||
17913 | 3,101,0,327,3, | ||
17914 | 102,0,327,3,103, | ||
17915 | 0,327,3,104,0, | ||
17916 | 327,3,105,0,327, | ||
17917 | 3,106,0,327,3, | ||
17918 | 107,0,327,3,108, | ||
17919 | 0,327,1305,11,1, | ||
17920 | 229,0,1306,4,10, | ||
17921 | 87,0,72,0,73, | ||
17922 | 0,76,0,69,0, | ||
17923 | 1,-1,3,102,0, | ||
17924 | 327,3,103,0,327, | ||
17925 | 3,104,0,327,3, | ||
17926 | 105,0,327,3,106, | ||
17927 | 0,327,3,107,0, | ||
17928 | 327,3,108,0,327, | ||
17929 | 1307,11,1,829,0, | ||
17930 | 330,1,-1,1308,11, | ||
17931 | 1,829,0,330,1, | ||
17932 | -1,3,106,0,327, | ||
17933 | 3,107,0,327,3, | ||
17934 | 108,0,327,1309,11, | ||
17935 | 1,829,0,330,1, | ||
17936 | -1,3,105,0,327, | ||
17937 | 3,106,0,327,3, | ||
17938 | 107,0,327,3,108, | ||
17939 | 0,327,1310,11,1, | ||
17940 | 829,0,330,1,-1, | ||
17941 | 3,120,0,325,3, | ||
17942 | 121,0,325,3,122, | ||
17943 | 0,325,3,123,0, | ||
17944 | 1311,12,1,39751,1312, | ||
17945 | 5,0,1313,11,1, | ||
17946 | 51,0,1314,4,20, | ||
17947 | 76,0,69,0,70, | ||
17948 | 0,84,0,95,0, | ||
17949 | 66,0,82,0,65, | ||
17950 | 0,67,0,69,0, | ||
17951 | 1,-1,3,124,0, | ||
17952 | 1315,12,1,42534,1316, | ||
17953 | 5,1,3,124,0, | ||
17954 | 1317,12,1,42646,1318, | ||
17955 | 5,0,1319,11,1, | ||
17956 | 191,0,1320,4,26, | ||
17957 | 83,0,84,0,82, | ||
17958 | 0,79,0,75,0, | ||
17959 | 69,0,95,0,83, | ||
17960 | 0,84,0,82,0, | ||
17961 | 79,0,75,0,69, | ||
17962 | 0,1,-1,1321,11, | ||
17963 | 1,165,0,1322,4, | ||
17964 | 12,83,0,84,0, | ||
17965 | 82,0,79,0,75, | ||
17966 | 0,69,0,1,-1, | ||
17967 | 3,125,0,1323,12, | ||
17968 | 1,40116,1324,5,0, | ||
17969 | 1325,11,1,56,0, | ||
17970 | 1326,4,22,82,0, | ||
17971 | 73,0,71,0,72, | ||
17972 | 0,84,0,95,0, | ||
17973 | 66,0,82,0,65, | ||
17974 | 0,67,0,69,0, | ||
17975 | 1,-1,3,126,0, | ||
17976 | 1327,12,1,42775,1328, | ||
17977 | 5,0,1329,11,1, | ||
17978 | 175,0,1330,4,10, | ||
17979 | 84,0,73,0,76, | ||
17980 | 0,68,0,69,0, | ||
17981 | 1,-1,0,165,1, | ||
17982 | -1,1331,4,12,83, | ||
17983 | 0,84,0,82,0, | ||
17984 | 73,0,78,0,71, | ||
17985 | 0,1332,12,1,44343, | ||
17986 | 1333,5,119,3,1, | ||
17987 | 0,1334,12,1,44344, | ||
17988 | 1335,5,0,1336,11, | ||
17989 | 1,930,0,165,1, | ||
17990 | -1,3,9,0,1334, | ||
17991 | 3,10,0,1337,12, | ||
17992 | 1,44545,1338,5,0, | ||
17993 | 1339,11,1,936,0, | ||
17994 | 165,1,-1,3,13, | ||
17995 | 0,1334,3,0,3, | ||
17996 | 1334,3,96,33,1334, | ||
17997 | 3,32,0,1334,3, | ||
17998 | 33,0,1334,3,34, | ||
17999 | 0,1340,12,1,45292, | ||
18000 | 1341,5,0,1342,11, | ||
18001 | 1,994,0,165,1, | ||
18002 | -1,3,35,0,1334, | ||
18003 | 3,36,0,1334,3, | ||
18004 | 37,0,1334,3,38, | ||
18005 | 0,1334,3,40,0, | ||
18006 | 1334,3,41,0,1334, | ||
18007 | 3,42,0,1334,3, | ||
18008 | 43,0,1334,3,44, | ||
18009 | 0,1334,3,45,0, | ||
18010 | 1334,3,46,0,1334, | ||
18011 | 3,47,0,1334,3, | ||
18012 | 3,9,1334,3,49, | ||
18013 | 0,1334,3,50,0, | ||
18014 | 1334,3,48,0,1334, | ||
18015 | 3,52,0,1334,3, | ||
18016 | 53,0,1334,3,51, | ||
18017 | 0,1334,3,55,0, | ||
18018 | 1334,3,56,0,1334, | ||
18019 | 3,54,0,1334,3, | ||
18020 | 59,0,1334,3,57, | ||
18021 | 0,1334,3,61,0, | ||
18022 | 1334,3,62,0,1334, | ||
18023 | 3,60,0,1334,3, | ||
18024 | 64,0,1334,3,65, | ||
18025 | 0,1334,3,66,0, | ||
18026 | 1334,3,67,0,1334, | ||
18027 | 3,68,0,1334,3, | ||
18028 | 69,0,1334,3,70, | ||
18029 | 0,1334,3,71,0, | ||
18030 | 1334,3,72,0,1334, | ||
18031 | 3,73,0,1334,3, | ||
18032 | 74,0,1334,3,75, | ||
18033 | 0,1334,3,76,0, | ||
18034 | 1334,3,77,0,1334, | ||
18035 | 3,78,0,1334,3, | ||
18036 | 79,0,1334,3,80, | ||
18037 | 0,1334,3,81,0, | ||
18038 | 1334,3,82,0,1334, | ||
18039 | 3,83,0,1334,3, | ||
18040 | 84,0,1334,3,85, | ||
18041 | 0,1334,3,86,0, | ||
18042 | 1334,3,87,0,1334, | ||
18043 | 3,88,0,1334,3, | ||
18044 | 89,0,1334,3,90, | ||
18045 | 0,1334,3,91,0, | ||
18046 | 1334,3,92,0,1343, | ||
18047 | 12,1,44688,1344,5, | ||
18048 | 4,3,110,0,1345, | ||
18049 | 12,1,44717,1346,5, | ||
18050 | 0,1347,11,1,941, | ||
18051 | 0,165,1,-1,3, | ||
18052 | 34,0,1348,12,1, | ||
18053 | 45157,1349,5,0,1350, | ||
18054 | 11,1,965,0,165, | ||
18055 | 1,-1,3,92,0, | ||
18056 | 1351,12,1,45033,1352, | ||
18057 | 5,0,1353,11,1, | ||
18058 | 977,0,165,1,-1, | ||
18059 | 3,116,0,1354,12, | ||
18060 | 1,44843,1355,5,0, | ||
18061 | 1356,11,1,953,0, | ||
18062 | 165,1,-1,1357,11, | ||
18063 | 1,989,0,165,1, | ||
18064 | -1,3,93,0,1334, | ||
18065 | 3,94,0,1334,3, | ||
18066 | 95,0,1334,3,96, | ||
18067 | 0,1334,3,97,0, | ||
18068 | 1334,3,98,0,1334, | ||
18069 | 3,99,0,1334,3, | ||
18070 | 100,0,1334,3,101, | ||
18071 | 0,1334,3,102,0, | ||
18072 | 1334,3,103,0,1334, | ||
18073 | 3,104,0,1334,3, | ||
18074 | 105,0,1334,3,106, | ||
18075 | 0,1334,3,107,0, | ||
18076 | 1334,3,108,0,1334, | ||
18077 | 3,109,0,1334,3, | ||
18078 | 110,0,1334,3,111, | ||
18079 | 0,1334,3,112,0, | ||
18080 | 1334,3,113,0,1334, | ||
18081 | 3,114,0,1334,3, | ||
18082 | 115,0,1334,3,116, | ||
18083 | 0,1334,3,117,0, | ||
18084 | 1334,3,118,0,1334, | ||
18085 | 3,119,0,1334,3, | ||
18086 | 120,0,1334,3,121, | ||
18087 | 0,1334,3,122,0, | ||
18088 | 1334,3,123,0,1334, | ||
18089 | 3,124,0,1334,3, | ||
18090 | 125,0,1334,3,96, | ||
18091 | 6,1334,3,126,0, | ||
18092 | 1334,3,58,15,1334, | ||
18093 | 3,59,15,1334,3, | ||
18094 | 136,4,1334,3,160, | ||
18095 | 0,1334,3,15,7, | ||
18096 | 1334,3,170,0,1334, | ||
18097 | 3,171,0,1334,3, | ||
18098 | 172,0,1334,3,173, | ||
18099 | 0,1334,3,178,0, | ||
18100 | 1334,3,176,2,1334, | ||
18101 | 3,187,0,1334,3, | ||
18102 | 187,1,1334,3,192, | ||
18103 | 0,1334,3,41,32, | ||
18104 | 1334,3,197,1,1334, | ||
18105 | 3,0,224,1334,3, | ||
18106 | 40,32,1334,3,63, | ||
18107 | 32,1334,0,165,1, | ||
18108 | -1,1358,5,92,236, | ||
18109 | 1359,10,236,1,19, | ||
18110 | 555,1360,10,555,1, | ||
18111 | 47,283,1361,10,283, | ||
18112 | 1,92,1138,1362,10, | ||
18113 | 1138,1,50,1007,1363, | ||
18114 | 10,1007,1,80,1157, | ||
18115 | 1364,10,1157,1,53, | ||
18116 | 173,1365,10,173,1, | ||
18117 | 37,584,1366,10,584, | ||
18118 | 1,43,666,1367,10, | ||
18119 | 666,1,51,595,1368, | ||
18120 | 10,595,1,46,196, | ||
18121 | 1369,10,196,1,16, | ||
18122 | 200,1370,10,200,1, | ||
18123 | 17,638,1371,10,638, | ||
18124 | 1,68,867,1372,10, | ||
18125 | 867,1,75,343,1373, | ||
18126 | 10,343,1,35,208, | ||
18127 | 1374,10,208,1,20, | ||
18128 | 214,1375,10,214,1, | ||
18129 | 6,184,1376,10,184, | ||
18130 | 1,22,268,1377,10, | ||
18131 | 268,1,21,250,1378, | ||
18132 | 10,250,1,94,1258, | ||
18133 | 1379,10,1258,1,88, | ||
18134 | 463,1380,10,463,1, | ||
18135 | 64,686,1381,10,686, | ||
18136 | 1,49,339,1382,10, | ||
18137 | 339,1,28,300,1383, | ||
18138 | 10,300,1,25,675, | ||
18139 | 1384,10,675,1,42, | ||
18140 | 758,1385,10,758,1, | ||
18141 | 69,1197,1386,10,1197, | ||
18142 | 1,48,318,1387,10, | ||
18143 | 318,1,41,816,1388, | ||
18144 | 10,816,1,57,218, | ||
18145 | 1389,10,218,1,4, | ||
18146 | 324,1390,10,324,1, | ||
18147 | 23,475,1391,10,475, | ||
18148 | 1,63,1212,1392,10, | ||
18149 | 1212,1,84,306,1393, | ||
18150 | 10,306,1,29,230, | ||
18151 | 1394,10,230,1,5, | ||
18152 | 298,1395,10,298,1, | ||
18153 | 31,606,1396,10,606, | ||
18154 | 1,52,855,1397,10, | ||
18155 | 855,1,76,1080,1398, | ||
18156 | 10,1080,1,83,983, | ||
18157 | 1399,10,983,1,81, | ||
18158 | 961,1400,10,961,1, | ||
18159 | 77,171,1401,10,171, | ||
18160 | 1,30,234,1402,10, | ||
18161 | 234,1,7,813,1403, | ||
18162 | 10,813,1,73,182, | ||
18163 | 1404,10,182,1,10, | ||
18164 | 335,1405,10,335,1, | ||
18165 | 27,276,1406,10,276, | ||
18166 | 1,93,224,1407,10, | ||
18167 | 224,1,14,254,1408, | ||
18168 | 10,254,1,24,697, | ||
18169 | 1409,10,697,1,54, | ||
18170 | 266,1410,10,266,1, | ||
18171 | 9,1191,1411,10,1191, | ||
18172 | 1,86,480,1412,10, | ||
18173 | 480,1,62,1413,4, | ||
18174 | 30,83,0,84,0, | ||
18175 | 82,0,73,0,78, | ||
18176 | 0,71,0,95,0, | ||
18177 | 67,0,79,0,78, | ||
18178 | 0,83,0,84,0, | ||
18179 | 65,0,78,0,84, | ||
18180 | 0,1414,10,1413,1, | ||
18181 | 3,1306,1415,10,1306, | ||
18182 | 1,45,330,1416,10, | ||
18183 | 330,1,91,533,1417, | ||
18184 | 10,533,1,66,1034, | ||
18185 | 1418,10,1034,1,56, | ||
18186 | 384,1419,10,384,1, | ||
18187 | 58,1314,1420,10,1314, | ||
18188 | 1,12,513,1421,10, | ||
18189 | 513,1,44,294,1422, | ||
18190 | 10,294,1,40,1120, | ||
18191 | 1423,10,1120,1,82, | ||
18192 | 573,1424,10,573,1, | ||
18193 | 67,912,1425,10,912, | ||
18194 | 1,78,1330,1426,10, | ||
18195 | 1330,1,36,1322,1427, | ||
18196 | 10,1322,1,34,753, | ||
18197 | 1428,10,753,1,70, | ||
18198 | 1271,1429,10,1271,1, | ||
18199 | 87,831,1430,10,831, | ||
18200 | 1,74,320,1431,10, | ||
18201 | 320,1,26,407,1432, | ||
18202 | 10,407,1,59,192, | ||
18203 | 1433,10,192,1,33, | ||
18204 | 288,1434,10,288,1, | ||
18205 | 11,190,1435,10,190, | ||
18206 | 1,38,501,1436,10, | ||
18207 | 501,1,61,794,1437, | ||
18208 | 10,794,1,72,1253, | ||
18209 | 1438,10,1253,1,90, | ||
18210 | 308,1439,10,308,1, | ||
18211 | 15,935,1440,10,935, | ||
18212 | 1,79,1320,1441,10, | ||
18213 | 1320,1,39,314,1442, | ||
18214 | 10,314,1,32,1241, | ||
18215 | 1443,10,1241,1,89, | ||
18216 | 357,1444,10,357,1, | ||
18217 | 60,1289,1445,10,1289, | ||
18218 | 1,55,1326,1446,10, | ||
18219 | 1326,1,13,1180,1447, | ||
18220 | 10,1180,1,85,220, | ||
18221 | 1448,10,220,1,18, | ||
18222 | 206,1449,10,206,1, | ||
18223 | 8,741,1450,10,741, | ||
18224 | 1,71,431,1451,10, | ||
18225 | 431,1,65,1452,5, | ||
18226 | 0,0}; | ||
18227 | new Tfactory(this,"MINUS",new TCreator(MINUS_factory)); | ||
18228 | new Tfactory(this,"DEFAULT_STATE",new TCreator(DEFAULT_STATE_factory)); | ||
18229 | new Tfactory(this,"INTEGER_CONSTANT",new TCreator(INTEGER_CONSTANT_factory)); | ||
18230 | new Tfactory(this,"RETURN",new TCreator(RETURN_factory)); | ||
18231 | new Tfactory(this,"OBJECT_REZ_EVENT",new TCreator(OBJECT_REZ_EVENT_factory)); | ||
18232 | new Tfactory(this,"STRING_TYPE",new TCreator(STRING_TYPE_factory)); | ||
18233 | new Tfactory(this,"EXCLAMATION",new TCreator(EXCLAMATION_factory)); | ||
18234 | new Tfactory(this,"ELSE",new TCreator(ELSE_factory)); | ||
18235 | new Tfactory(this,"INTEGER_TYPE",new TCreator(INTEGER_TYPE_factory)); | ||
18236 | new Tfactory(this,"FOR",new TCreator(FOR_factory)); | ||
18237 | new Tfactory(this,"LEFT_PAREN",new TCreator(LEFT_PAREN_factory)); | ||
18238 | new Tfactory(this,"RIGHT_PAREN",new TCreator(RIGHT_PAREN_factory)); | ||
18239 | new Tfactory(this,"HTTP_RESPONSE_EVENT",new TCreator(HTTP_RESPONSE_EVENT_factory)); | ||
18240 | new Tfactory(this,"MOVING_END_EVENT",new TCreator(MOVING_END_EVENT_factory)); | ||
18241 | new Tfactory(this,"CARET",new TCreator(CARET_factory)); | ||
18242 | new Tfactory(this,"STAR",new TCreator(STAR_factory)); | ||
18243 | new Tfactory(this,"PLUS_EQUALS",new TCreator(PLUS_EQUALS_factory)); | ||
18244 | new Tfactory(this,"PERCENT",new TCreator(PERCENT_factory)); | ||
18245 | new Tfactory(this,"SLASH",new TCreator(SLASH_factory)); | ||
18246 | new Tfactory(this,"FLOAT_CONSTANT",new TCreator(FLOAT_CONSTANT_factory)); | ||
18247 | new Tfactory(this,"TOUCH_EVENT",new TCreator(TOUCH_EVENT_factory)); | ||
18248 | new Tfactory(this,"COLLISION_START_EVENT",new TCreator(COLLISION_START_EVENT_factory)); | ||
18249 | new Tfactory(this,"JUMP",new TCreator(JUMP_factory)); | ||
18250 | new Tfactory(this,"RIGHT_BRACKET",new TCreator(RIGHT_BRACKET_factory)); | ||
18251 | new Tfactory(this,"LEFT_ANGLE",new TCreator(LEFT_ANGLE_factory)); | ||
18252 | new Tfactory(this,"IF",new TCreator(IF_factory)); | ||
18253 | new Tfactory(this,"LAND_COLLISION_EVENT",new TCreator(LAND_COLLISION_EVENT_factory)); | ||
18254 | new Tfactory(this,"STATE",new TCreator(STATE_factory)); | ||
18255 | new Tfactory(this,"RIGHT_SHIFT",new TCreator(RIGHT_SHIFT_factory)); | ||
18256 | new Tfactory(this,"LIST_TYPE",new TCreator(LIST_TYPE_factory)); | ||
18257 | new Tfactory(this,"INCREMENT",new TCreator(INCREMENT_factory)); | ||
18258 | new Tfactory(this,"AT",new TCreator(AT_factory)); | ||
18259 | new Tfactory(this,"COLLISION_END_EVENT",new TCreator(COLLISION_END_EVENT_factory)); | ||
18260 | new Tfactory(this,"SENSOR_EVENT",new TCreator(SENSOR_EVENT_factory)); | ||
18261 | new Tfactory(this,"EQUALS_EQUALS",new TCreator(EQUALS_EQUALS_factory)); | ||
18262 | new Tfactory(this,"DECREMENT",new TCreator(DECREMENT_factory)); | ||
18263 | new Tfactory(this,"LESS_EQUALS",new TCreator(LESS_EQUALS_factory)); | ||
18264 | new Tfactory(this,"FLOAT_TYPE",new TCreator(FLOAT_TYPE_factory)); | ||
18265 | new Tfactory(this,"MOVING_START_EVENT",new TCreator(MOVING_START_EVENT_factory)); | ||
18266 | new Tfactory(this,"RUN_TIME_PERMISSIONS_EVENT",new TCreator(RUN_TIME_PERMISSIONS_EVENT_factory)); | ||
18267 | new Tfactory(this,"ON_REZ_EVENT",new TCreator(ON_REZ_EVENT_factory)); | ||
18268 | new Tfactory(this,"NO_SENSOR_EVENT",new TCreator(NO_SENSOR_EVENT_factory)); | ||
18269 | new Tfactory(this,"EXCLAMATION_EQUALS",new TCreator(EXCLAMATION_EQUALS_factory)); | ||
18270 | new Tfactory(this,"MINUS_EQUALS",new TCreator(MINUS_EQUALS_factory)); | ||
18271 | new Tfactory(this,"LISTEN_EVENT",new TCreator(LISTEN_EVENT_factory)); | ||
18272 | new Tfactory(this,"PERCENT_EQUALS",new TCreator(PERCENT_EQUALS_factory)); | ||
18273 | new Tfactory(this,"LEFT_BRACKET",new TCreator(LEFT_BRACKET_factory)); | ||
18274 | new Tfactory(this,"HEX_INTEGER_CONSTANT",new TCreator(HEX_INTEGER_CONSTANT_factory)); | ||
18275 | new Tfactory(this,"COMMA",new TCreator(COMMA_factory)); | ||
18276 | new Tfactory(this,"PERIOD",new TCreator(PERIOD_factory)); | ||
18277 | new Tfactory(this,"KEY_TYPE",new TCreator(KEY_TYPE_factory)); | ||
18278 | new Tfactory(this,"SLASH_EQUALS",new TCreator(SLASH_EQUALS_factory)); | ||
18279 | new Tfactory(this,"STATE_EXIT_EVENT",new TCreator(STATE_EXIT_EVENT_factory)); | ||
18280 | new Tfactory(this,"COLLISION_EVENT",new TCreator(COLLISION_EVENT_factory)); | ||
18281 | new Tfactory(this,"STRING_CONSTANT",new TCreator(STRING_CONSTANT_factory)); | ||
18282 | new Tfactory(this,"WHILE",new TCreator(WHILE_factory)); | ||
18283 | new Tfactory(this,"IDENT",new TCreator(IDENT_factory)); | ||
18284 | new Tfactory(this,"DATASERVER_EVENT",new TCreator(DATASERVER_EVENT_factory)); | ||
18285 | new Tfactory(this,"ROTATION_TYPE",new TCreator(ROTATION_TYPE_factory)); | ||
18286 | new Tfactory(this,"AT_ROT_TARGET_EVENT",new TCreator(AT_ROT_TARGET_EVENT_factory)); | ||
18287 | new Tfactory(this,"LEFT_BRACE",new TCreator(LEFT_BRACE_factory)); | ||
18288 | new Tfactory(this,"DO",new TCreator(DO_factory)); | ||
18289 | new Tfactory(this,"LEFT_SHIFT",new TCreator(LEFT_SHIFT_factory)); | ||
18290 | new Tfactory(this,"REMOTE_DATA_EVENT",new TCreator(REMOTE_DATA_EVENT_factory)); | ||
18291 | new Tfactory(this,"EMAIL_EVENT",new TCreator(EMAIL_EVENT_factory)); | ||
18292 | new Tfactory(this,"NOT_AT_ROT_TARGET_EVENT",new TCreator(NOT_AT_ROT_TARGET_EVENT_factory)); | ||
18293 | new Tfactory(this,"TILDE",new TCreator(TILDE_factory)); | ||
18294 | new Tfactory(this,"STROKE",new TCreator(STROKE_factory)); | ||
18295 | new Tfactory(this,"LAND_COLLISION_END_EVENT",new TCreator(LAND_COLLISION_END_EVENT_factory)); | ||
18296 | new Tfactory(this,"TIMER_EVENT",new TCreator(TIMER_EVENT_factory)); | ||
18297 | new Tfactory(this,"MONEY_EVENT",new TCreator(MONEY_EVENT_factory)); | ||
18298 | new Tfactory(this,"RIGHT_ANGLE",new TCreator(RIGHT_ANGLE_factory)); | ||
18299 | new Tfactory(this,"AT_TARGET_EVENT",new TCreator(AT_TARGET_EVENT_factory)); | ||
18300 | new Tfactory(this,"AMP",new TCreator(AMP_factory)); | ||
18301 | new Tfactory(this,"SEMICOLON",new TCreator(SEMICOLON_factory)); | ||
18302 | new Tfactory(this,"AMP_AMP",new TCreator(AMP_AMP_factory)); | ||
18303 | new Tfactory(this,"CHANGED_EVENT",new TCreator(CHANGED_EVENT_factory)); | ||
18304 | new Tfactory(this,"LINK_MESSAGE_EVENT",new TCreator(LINK_MESSAGE_EVENT_factory)); | ||
18305 | new Tfactory(this,"TOUCH_END_EVENT",new TCreator(TOUCH_END_EVENT_factory)); | ||
18306 | new Tfactory(this,"EQUALS",new TCreator(EQUALS_factory)); | ||
18307 | new Tfactory(this,"NOT_AT_TARGET_EVENT",new TCreator(NOT_AT_TARGET_EVENT_factory)); | ||
18308 | new Tfactory(this,"STROKE_STROKE",new TCreator(STROKE_STROKE_factory)); | ||
18309 | new Tfactory(this,"GREATER_EQUALS",new TCreator(GREATER_EQUALS_factory)); | ||
18310 | new Tfactory(this,"TOUCH_START_EVENT",new TCreator(TOUCH_START_EVENT_factory)); | ||
18311 | new Tfactory(this,"ATTACH_EVENT",new TCreator(ATTACH_EVENT_factory)); | ||
18312 | new Tfactory(this,"VECTOR_TYPE",new TCreator(VECTOR_TYPE_factory)); | ||
18313 | new Tfactory(this,"RIGHT_BRACE",new TCreator(RIGHT_BRACE_factory)); | ||
18314 | new Tfactory(this,"STATE_ENTRY_EVENT",new TCreator(STATE_ENTRY_EVENT_factory)); | ||
18315 | new Tfactory(this,"PLUS",new TCreator(PLUS_factory)); | ||
18316 | new Tfactory(this,"STAR_EQUALS",new TCreator(STAR_EQUALS_factory)); | ||
18317 | new Tfactory(this,"LAND_COLLISION_START_EVENT",new TCreator(LAND_COLLISION_START_EVENT_factory)); | ||
18318 | new Tfactory(this,"CONTROL_EVENT",new TCreator(CONTROL_EVENT_factory)); | ||
18319 | } | ||
18320 | public static object MINUS_factory(Lexer yyl) { return new MINUS(yyl);} | ||
18321 | public static object DEFAULT_STATE_factory(Lexer yyl) { return new DEFAULT_STATE(yyl);} | ||
18322 | public static object INTEGER_CONSTANT_factory(Lexer yyl) { return new INTEGER_CONSTANT(yyl);} | ||
18323 | public static object RETURN_factory(Lexer yyl) { return new RETURN(yyl);} | ||
18324 | public static object OBJECT_REZ_EVENT_factory(Lexer yyl) { return new OBJECT_REZ_EVENT(yyl);} | ||
18325 | public static object STRING_TYPE_factory(Lexer yyl) { return new STRING_TYPE(yyl);} | ||
18326 | public static object EXCLAMATION_factory(Lexer yyl) { return new EXCLAMATION(yyl);} | ||
18327 | public static object ELSE_factory(Lexer yyl) { return new ELSE(yyl);} | ||
18328 | public static object INTEGER_TYPE_factory(Lexer yyl) { return new INTEGER_TYPE(yyl);} | ||
18329 | public static object FOR_factory(Lexer yyl) { return new FOR(yyl);} | ||
18330 | public static object LEFT_PAREN_factory(Lexer yyl) { return new LEFT_PAREN(yyl);} | ||
18331 | public static object RIGHT_PAREN_factory(Lexer yyl) { return new RIGHT_PAREN(yyl);} | ||
18332 | public static object HTTP_RESPONSE_EVENT_factory(Lexer yyl) { return new HTTP_RESPONSE_EVENT(yyl);} | ||
18333 | public static object MOVING_END_EVENT_factory(Lexer yyl) { return new MOVING_END_EVENT(yyl);} | ||
18334 | public static object CARET_factory(Lexer yyl) { return new CARET(yyl);} | ||
18335 | public static object STAR_factory(Lexer yyl) { return new STAR(yyl);} | ||
18336 | public static object PLUS_EQUALS_factory(Lexer yyl) { return new PLUS_EQUALS(yyl);} | ||
18337 | public static object PERCENT_factory(Lexer yyl) { return new PERCENT(yyl);} | ||
18338 | public static object SLASH_factory(Lexer yyl) { return new SLASH(yyl);} | ||
18339 | public static object FLOAT_CONSTANT_factory(Lexer yyl) { return new FLOAT_CONSTANT(yyl);} | ||
18340 | public static object TOUCH_EVENT_factory(Lexer yyl) { return new TOUCH_EVENT(yyl);} | ||
18341 | public static object COLLISION_START_EVENT_factory(Lexer yyl) { return new COLLISION_START_EVENT(yyl);} | ||
18342 | public static object JUMP_factory(Lexer yyl) { return new JUMP(yyl);} | ||
18343 | public static object RIGHT_BRACKET_factory(Lexer yyl) { return new RIGHT_BRACKET(yyl);} | ||
18344 | public static object LEFT_ANGLE_factory(Lexer yyl) { return new LEFT_ANGLE(yyl);} | ||
18345 | public static object IF_factory(Lexer yyl) { return new IF(yyl);} | ||
18346 | public static object LAND_COLLISION_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_EVENT(yyl);} | ||
18347 | public static object STATE_factory(Lexer yyl) { return new STATE(yyl);} | ||
18348 | public static object RIGHT_SHIFT_factory(Lexer yyl) { return new RIGHT_SHIFT(yyl);} | ||
18349 | public static object LIST_TYPE_factory(Lexer yyl) { return new LIST_TYPE(yyl);} | ||
18350 | public static object INCREMENT_factory(Lexer yyl) { return new INCREMENT(yyl);} | ||
18351 | public static object AT_factory(Lexer yyl) { return new AT(yyl);} | ||
18352 | public static object COLLISION_END_EVENT_factory(Lexer yyl) { return new COLLISION_END_EVENT(yyl);} | ||
18353 | public static object SENSOR_EVENT_factory(Lexer yyl) { return new SENSOR_EVENT(yyl);} | ||
18354 | public static object EQUALS_EQUALS_factory(Lexer yyl) { return new EQUALS_EQUALS(yyl);} | ||
18355 | public static object DECREMENT_factory(Lexer yyl) { return new DECREMENT(yyl);} | ||
18356 | public static object LESS_EQUALS_factory(Lexer yyl) { return new LESS_EQUALS(yyl);} | ||
18357 | public static object FLOAT_TYPE_factory(Lexer yyl) { return new FLOAT_TYPE(yyl);} | ||
18358 | public static object MOVING_START_EVENT_factory(Lexer yyl) { return new MOVING_START_EVENT(yyl);} | ||
18359 | public static object RUN_TIME_PERMISSIONS_EVENT_factory(Lexer yyl) { return new RUN_TIME_PERMISSIONS_EVENT(yyl);} | ||
18360 | public static object ON_REZ_EVENT_factory(Lexer yyl) { return new ON_REZ_EVENT(yyl);} | ||
18361 | public static object NO_SENSOR_EVENT_factory(Lexer yyl) { return new NO_SENSOR_EVENT(yyl);} | ||
18362 | public static object EXCLAMATION_EQUALS_factory(Lexer yyl) { return new EXCLAMATION_EQUALS(yyl);} | ||
18363 | public static object MINUS_EQUALS_factory(Lexer yyl) { return new MINUS_EQUALS(yyl);} | ||
18364 | public static object LISTEN_EVENT_factory(Lexer yyl) { return new LISTEN_EVENT(yyl);} | ||
18365 | public static object PERCENT_EQUALS_factory(Lexer yyl) { return new PERCENT_EQUALS(yyl);} | ||
18366 | public static object LEFT_BRACKET_factory(Lexer yyl) { return new LEFT_BRACKET(yyl);} | ||
18367 | public static object HEX_INTEGER_CONSTANT_factory(Lexer yyl) { return new HEX_INTEGER_CONSTANT(yyl);} | ||
18368 | public static object COMMA_factory(Lexer yyl) { return new COMMA(yyl);} | ||
18369 | public static object PERIOD_factory(Lexer yyl) { return new PERIOD(yyl);} | ||
18370 | public static object KEY_TYPE_factory(Lexer yyl) { return new KEY_TYPE(yyl);} | ||
18371 | public static object SLASH_EQUALS_factory(Lexer yyl) { return new SLASH_EQUALS(yyl);} | ||
18372 | public static object STATE_EXIT_EVENT_factory(Lexer yyl) { return new STATE_EXIT_EVENT(yyl);} | ||
18373 | public static object COLLISION_EVENT_factory(Lexer yyl) { return new COLLISION_EVENT(yyl);} | ||
18374 | public static object STRING_CONSTANT_factory(Lexer yyl) { return new STRING_CONSTANT(yyl);} | ||
18375 | public static object WHILE_factory(Lexer yyl) { return new WHILE(yyl);} | ||
18376 | public static object IDENT_factory(Lexer yyl) { return new IDENT(yyl);} | ||
18377 | public static object DATASERVER_EVENT_factory(Lexer yyl) { return new DATASERVER_EVENT(yyl);} | ||
18378 | public static object ROTATION_TYPE_factory(Lexer yyl) { return new ROTATION_TYPE(yyl);} | ||
18379 | public static object AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new AT_ROT_TARGET_EVENT(yyl);} | ||
18380 | public static object LEFT_BRACE_factory(Lexer yyl) { return new LEFT_BRACE(yyl);} | ||
18381 | public static object DO_factory(Lexer yyl) { return new DO(yyl);} | ||
18382 | public static object LEFT_SHIFT_factory(Lexer yyl) { return new LEFT_SHIFT(yyl);} | ||
18383 | public static object REMOTE_DATA_EVENT_factory(Lexer yyl) { return new REMOTE_DATA_EVENT(yyl);} | ||
18384 | public static object EMAIL_EVENT_factory(Lexer yyl) { return new EMAIL_EVENT(yyl);} | ||
18385 | public static object NOT_AT_ROT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_ROT_TARGET_EVENT(yyl);} | ||
18386 | public static object TILDE_factory(Lexer yyl) { return new TILDE(yyl);} | ||
18387 | public static object STROKE_factory(Lexer yyl) { return new STROKE(yyl);} | ||
18388 | public static object LAND_COLLISION_END_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_END_EVENT(yyl);} | ||
18389 | public static object TIMER_EVENT_factory(Lexer yyl) { return new TIMER_EVENT(yyl);} | ||
18390 | public static object MONEY_EVENT_factory(Lexer yyl) { return new MONEY_EVENT(yyl);} | ||
18391 | public static object RIGHT_ANGLE_factory(Lexer yyl) { return new RIGHT_ANGLE(yyl);} | ||
18392 | public static object AT_TARGET_EVENT_factory(Lexer yyl) { return new AT_TARGET_EVENT(yyl);} | ||
18393 | public static object AMP_factory(Lexer yyl) { return new AMP(yyl);} | ||
18394 | public static object SEMICOLON_factory(Lexer yyl) { return new SEMICOLON(yyl);} | ||
18395 | public static object AMP_AMP_factory(Lexer yyl) { return new AMP_AMP(yyl);} | ||
18396 | public static object CHANGED_EVENT_factory(Lexer yyl) { return new CHANGED_EVENT(yyl);} | ||
18397 | public static object LINK_MESSAGE_EVENT_factory(Lexer yyl) { return new LINK_MESSAGE_EVENT(yyl);} | ||
18398 | public static object TOUCH_END_EVENT_factory(Lexer yyl) { return new TOUCH_END_EVENT(yyl);} | ||
18399 | public static object EQUALS_factory(Lexer yyl) { return new EQUALS(yyl);} | ||
18400 | public static object NOT_AT_TARGET_EVENT_factory(Lexer yyl) { return new NOT_AT_TARGET_EVENT(yyl);} | ||
18401 | public static object STROKE_STROKE_factory(Lexer yyl) { return new STROKE_STROKE(yyl);} | ||
18402 | public static object GREATER_EQUALS_factory(Lexer yyl) { return new GREATER_EQUALS(yyl);} | ||
18403 | public static object TOUCH_START_EVENT_factory(Lexer yyl) { return new TOUCH_START_EVENT(yyl);} | ||
18404 | public static object ATTACH_EVENT_factory(Lexer yyl) { return new ATTACH_EVENT(yyl);} | ||
18405 | public static object VECTOR_TYPE_factory(Lexer yyl) { return new VECTOR_TYPE(yyl);} | ||
18406 | public static object RIGHT_BRACE_factory(Lexer yyl) { return new RIGHT_BRACE(yyl);} | ||
18407 | public static object STATE_ENTRY_EVENT_factory(Lexer yyl) { return new STATE_ENTRY_EVENT(yyl);} | ||
18408 | public static object PLUS_factory(Lexer yyl) { return new PLUS(yyl);} | ||
18409 | public static object STAR_EQUALS_factory(Lexer yyl) { return new STAR_EQUALS(yyl);} | ||
18410 | public static object LAND_COLLISION_START_EVENT_factory(Lexer yyl) { return new LAND_COLLISION_START_EVENT(yyl);} | ||
18411 | public static object CONTROL_EVENT_factory(Lexer yyl) { return new CONTROL_EVENT(yyl);} | ||
18412 | public override TOKEN OldAction(Lexer yym,ref string yytext,int action, ref bool reject) { | ||
18413 | switch(action) { | ||
18414 | case -1: break; | ||
18415 | case 977: { ((LSLTokens)yym).str += "\\\\"; } | ||
18416 | break; | ||
18417 | case 1003: ; | ||
18418 | break; | ||
18419 | case 925: { yym.yy_begin("STRING"); ((LSLTokens)yym).str = "";} | ||
18420 | break; | ||
18421 | case 930: { ((LSLTokens)yym).str += yytext; } | ||
18422 | break; | ||
18423 | case 936: { ((LSLTokens)yym).str += "\\n"; } | ||
18424 | break; | ||
18425 | case 941: { ((LSLTokens)yym).str += "\\n"; } | ||
18426 | break; | ||
18427 | case 953: { ((LSLTokens)yym).str += " "; } | ||
18428 | break; | ||
18429 | case 965: { ((LSLTokens)yym).str += "\\\""; } | ||
18430 | break; | ||
18431 | case 989: { ((LSLTokens)yym).str += '\\'; } | ||
18432 | break; | ||
18433 | case 994: { yym.yy_begin("YYINITIAL"); ((LSLTokens)yym).yytext = ((LSLTokens)yym).str; ((LSLTokens)yym).str = String.Empty; return new STRING_CONSTANT(yym); } | ||
18434 | case 999: ; | ||
18435 | break; | ||
18436 | } | ||
18437 | return null; | ||
18438 | }} | ||
18439 | public class LSLTokens:Lexer { | ||
18440 | public LSLTokens():base(new yyLSLTokens(new ErrorHandler(false))) {} | ||
18441 | public LSLTokens(ErrorHandler eh):base(new yyLSLTokens(eh)) {} | ||
18442 | public LSLTokens(YyLexer tks):base(tks){} | ||
18443 | |||
18444 | public string str; | ||
18445 | |||
18446 | } | ||
18447 | } | ||
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs deleted file mode 100644 index b09e959..0000000 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/Compiler/LSL/lsl.parser.cs +++ /dev/null | |||
@@ -1,11001 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using System;using Tools; | ||
29 | namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL { | ||
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 | protected 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 Assignment (Parser yyp, SimpleAssignment sa ):base(((LSLSyntax | ||
297 | )yyp)){ m_assignmentType = sa . AssignmentType ; | ||
298 | while (0< sa . kids . Count ) kids . Add ( sa . kids . Pop ()); | ||
299 | } | ||
300 | public string AssignmentType { get { return m_assignmentType ; | ||
301 | } | ||
302 | } | ||
303 | public override string ToString (){ return base . ToString ()+"<"+ m_assignmentType +">"; | ||
304 | } | ||
305 | |||
306 | public override string yyname { get { return "Assignment"; }} | ||
307 | public override int yynum { get { return 110; }} | ||
308 | public Assignment(Parser yyp):base(yyp){}} | ||
309 | //%+SimpleAssignment+111 | ||
310 | public class SimpleAssignment : Assignment{ | ||
311 | public SimpleAssignment (Parser yyp, SYMBOL lhs , SYMBOL rhs , string assignmentType ):base(((LSLSyntax | ||
312 | )yyp)){ m_assignmentType = assignmentType ; | ||
313 | kids . Add ( lhs ); | ||
314 | if ( rhs is ConstantExpression ) while (0< rhs . kids . Count ) kids . Add ( rhs . kids . Pop ()); | ||
315 | else kids . Add ( rhs ); | ||
316 | } | ||
317 | |||
318 | public override string yyname { get { return "SimpleAssignment"; }} | ||
319 | public override int yynum { get { return 111; }} | ||
320 | public SimpleAssignment(Parser yyp):base(yyp){}} | ||
321 | //%+ReturnStatement+112 | ||
322 | public class ReturnStatement : SYMBOL{ | ||
323 | public ReturnStatement (Parser yyp):base(((LSLSyntax | ||
324 | )yyp)){} | ||
325 | public ReturnStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
326 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
327 | else kids . Add ( e ); | ||
328 | } | ||
329 | |||
330 | public override string yyname { get { return "ReturnStatement"; }} | ||
331 | public override int yynum { get { return 112; }} | ||
332 | } | ||
333 | //%+JumpLabel+113 | ||
334 | public class JumpLabel : SYMBOL{ | ||
335 | private string m_labelName ; | ||
336 | public JumpLabel (Parser yyp, string labelName ):base(((LSLSyntax | ||
337 | )yyp)){ m_labelName = labelName ; | ||
338 | } | ||
339 | public string LabelName { get { return m_labelName ; | ||
340 | } | ||
341 | } | ||
342 | public override string ToString (){ return base . ToString ()+"<"+ m_labelName +">"; | ||
343 | } | ||
344 | |||
345 | public override string yyname { get { return "JumpLabel"; }} | ||
346 | public override int yynum { get { return 113; }} | ||
347 | public JumpLabel(Parser yyp):base(yyp){}} | ||
348 | //%+JumpStatement+114 | ||
349 | public class JumpStatement : SYMBOL{ | ||
350 | private string m_targetName ; | ||
351 | public JumpStatement (Parser yyp, string targetName ):base(((LSLSyntax | ||
352 | )yyp)){ m_targetName = targetName ; | ||
353 | } | ||
354 | public string TargetName { get { return m_targetName ; | ||
355 | } | ||
356 | } | ||
357 | public override string ToString (){ return base . ToString ()+"<"+ m_targetName +">"; | ||
358 | } | ||
359 | |||
360 | public override string yyname { get { return "JumpStatement"; }} | ||
361 | public override int yynum { get { return 114; }} | ||
362 | public JumpStatement(Parser yyp):base(yyp){}} | ||
363 | //%+StateChange+115 | ||
364 | public class StateChange : SYMBOL{ | ||
365 | private string m_newState ; | ||
366 | public StateChange (Parser yyp, string newState ):base(((LSLSyntax | ||
367 | )yyp)){ m_newState = newState ; | ||
368 | } | ||
369 | public string NewState { get { return m_newState ; | ||
370 | } | ||
371 | } | ||
372 | |||
373 | public override string yyname { get { return "StateChange"; }} | ||
374 | public override int yynum { get { return 115; }} | ||
375 | public StateChange(Parser yyp):base(yyp){}} | ||
376 | //%+IfStatement+116 | ||
377 | public class IfStatement : SYMBOL{ | ||
378 | private void AddStatement ( Statement s ){ if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
379 | else kids . Add ( s ); | ||
380 | } | ||
381 | public IfStatement (Parser yyp, SYMBOL s , Statement ifs ):base(((LSLSyntax | ||
382 | )yyp)){ kids . Add ( s ); | ||
383 | AddStatement ( ifs ); | ||
384 | } | ||
385 | public IfStatement (Parser yyp, SYMBOL s , Statement ifs , Statement es ):base(((LSLSyntax | ||
386 | )yyp)){ kids . Add ( s ); | ||
387 | AddStatement ( ifs ); | ||
388 | if (0< es . kids . Count && es . kids . Top is IfStatement ) kids . Add ( es . kids . Pop ()); | ||
389 | else AddStatement ( es ); | ||
390 | } | ||
391 | |||
392 | public override string yyname { get { return "IfStatement"; }} | ||
393 | public override int yynum { get { return 116; }} | ||
394 | public IfStatement(Parser yyp):base(yyp){}} | ||
395 | //%+WhileStatement+117 | ||
396 | public class WhileStatement : SYMBOL{ | ||
397 | public WhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax | ||
398 | )yyp)){ kids . Add ( s ); | ||
399 | if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); | ||
400 | else kids . Add ( st ); | ||
401 | } | ||
402 | |||
403 | public override string yyname { get { return "WhileStatement"; }} | ||
404 | public override int yynum { get { return 117; }} | ||
405 | public WhileStatement(Parser yyp):base(yyp){}} | ||
406 | //%+DoWhileStatement+118 | ||
407 | public class DoWhileStatement : SYMBOL{ | ||
408 | public DoWhileStatement (Parser yyp, SYMBOL s , Statement st ):base(((LSLSyntax | ||
409 | )yyp)){ if (0< st . kids . Count && st . kids . Top is CompoundStatement ) kids . Add ( st . kids . Pop ()); | ||
410 | else kids . Add ( st ); | ||
411 | kids . Add ( s ); | ||
412 | } | ||
413 | |||
414 | public override string yyname { get { return "DoWhileStatement"; }} | ||
415 | public override int yynum { get { return 118; }} | ||
416 | public DoWhileStatement(Parser yyp):base(yyp){}} | ||
417 | //%+ForLoop+119 | ||
418 | public class ForLoop : SYMBOL{ | ||
419 | public ForLoop (Parser yyp, ForLoopStatement flsa , Expression e , ForLoopStatement flsb , Statement s ):base(((LSLSyntax | ||
420 | )yyp)){ kids . Add ( flsa ); | ||
421 | kids . Add ( e ); | ||
422 | kids . Add ( flsb ); | ||
423 | if (0< s . kids . Count && s . kids . Top is CompoundStatement ) kids . Add ( s . kids . Pop ()); | ||
424 | else kids . Add ( s ); | ||
425 | } | ||
426 | |||
427 | public override string yyname { get { return "ForLoop"; }} | ||
428 | public override int yynum { get { return 119; }} | ||
429 | public ForLoop(Parser yyp):base(yyp){}} | ||
430 | //%+ForLoopStatement+120 | ||
431 | public class ForLoopStatement : SYMBOL{ | ||
432 | public ForLoopStatement (Parser yyp, Expression e ):base(((LSLSyntax | ||
433 | )yyp)){ kids . Add ( e ); | ||
434 | } | ||
435 | public ForLoopStatement (Parser yyp, SimpleAssignment sa ):base(((LSLSyntax | ||
436 | )yyp)){ kids . Add ( sa ); | ||
437 | } | ||
438 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , Expression e ):base(((LSLSyntax | ||
439 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
440 | kids . Add ( e ); | ||
441 | } | ||
442 | public ForLoopStatement (Parser yyp, ForLoopStatement fls , SimpleAssignment sa ):base(((LSLSyntax | ||
443 | )yyp)){ while (0< fls . kids . Count ) kids . Add ( fls . kids . Pop ()); | ||
444 | kids . Add ( sa ); | ||
445 | } | ||
446 | |||
447 | public override string yyname { get { return "ForLoopStatement"; }} | ||
448 | public override int yynum { get { return 120; }} | ||
449 | public ForLoopStatement(Parser yyp):base(yyp){}} | ||
450 | //%+FunctionCall+121 | ||
451 | public class FunctionCall : SYMBOL{ | ||
452 | private string m_id ; | ||
453 | public FunctionCall (Parser yyp, string id , ArgumentList al ):base(((LSLSyntax | ||
454 | )yyp)){ m_id = id ; | ||
455 | kids . Add ( al ); | ||
456 | } | ||
457 | public override string ToString (){ return base . ToString ()+"<"+ m_id +">"; | ||
458 | } | ||
459 | public string Id { get { return m_id ; | ||
460 | } | ||
461 | } | ||
462 | |||
463 | public override string yyname { get { return "FunctionCall"; }} | ||
464 | public override int yynum { get { return 121; }} | ||
465 | public FunctionCall(Parser yyp):base(yyp){}} | ||
466 | //%+ArgumentList+122 | ||
467 | public class ArgumentList : SYMBOL{ | ||
468 | public ArgumentList (Parser yyp, Argument a ):base(((LSLSyntax | ||
469 | )yyp)){ AddArgument ( a ); | ||
470 | } | ||
471 | public ArgumentList (Parser yyp, ArgumentList al , Argument a ):base(((LSLSyntax | ||
472 | )yyp)){ while (0< al . kids . Count ) kids . Add ( al . kids . Pop ()); | ||
473 | AddArgument ( a ); | ||
474 | } | ||
475 | private void AddArgument ( Argument a ){ if ( a is ExpressionArgument ) while (0< a . kids . Count ) kids . Add ( a . kids . Pop ()); | ||
476 | else kids . Add ( a ); | ||
477 | } | ||
478 | |||
479 | public override string yyname { get { return "ArgumentList"; }} | ||
480 | public override int yynum { get { return 122; }} | ||
481 | public ArgumentList(Parser yyp):base(yyp){}} | ||
482 | //%+Argument+123 | ||
483 | public class Argument : SYMBOL{ | ||
484 | public override string yyname { get { return "Argument"; }} | ||
485 | public override int yynum { get { return 123; }} | ||
486 | public Argument(Parser yyp):base(yyp){}} | ||
487 | //%+ExpressionArgument+124 | ||
488 | public class ExpressionArgument : Argument{ | ||
489 | public ExpressionArgument (Parser yyp, Expression e ):base(((LSLSyntax | ||
490 | )yyp)){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
491 | else kids . Add ( e ); | ||
492 | } | ||
493 | |||
494 | public override string yyname { get { return "ExpressionArgument"; }} | ||
495 | public override int yynum { get { return 124; }} | ||
496 | public ExpressionArgument(Parser yyp):base(yyp){}} | ||
497 | //%+Constant+125 | ||
498 | public class Constant : SYMBOL{ | ||
499 | private string m_type ; | ||
500 | private string m_val ; | ||
501 | public Constant (Parser yyp, string type , string val ):base(((LSLSyntax | ||
502 | )yyp)){ m_type = type ; | ||
503 | m_val = val ; | ||
504 | } | ||
505 | public override string ToString (){ return base . ToString ()+"<"+ m_type +":"+ m_val +">"; | ||
506 | } | ||
507 | public string Value { get { return m_val ; | ||
508 | } | ||
509 | set { m_val = value ; | ||
510 | } | ||
511 | } | ||
512 | public string Type { get { return m_type ; | ||
513 | } | ||
514 | set { m_type = value ; | ||
515 | } | ||
516 | } | ||
517 | |||
518 | public override string yyname { get { return "Constant"; }} | ||
519 | public override int yynum { get { return 125; }} | ||
520 | public Constant(Parser yyp):base(yyp){}} | ||
521 | //%+VectorConstant+126 | ||
522 | public class VectorConstant : Constant{ | ||
523 | public VectorConstant (Parser yyp, Expression valX , Expression valY , Expression valZ ):base(((LSLSyntax | ||
524 | )yyp),"vector", null ){ kids . Add ( valX ); | ||
525 | kids . Add ( valY ); | ||
526 | kids . Add ( valZ ); | ||
527 | } | ||
528 | |||
529 | public override string yyname { get { return "VectorConstant"; }} | ||
530 | public override int yynum { get { return 126; }} | ||
531 | public VectorConstant(Parser yyp):base(yyp){}} | ||
532 | //%+RotationConstant+127 | ||
533 | public class RotationConstant : Constant{ | ||
534 | public RotationConstant (Parser yyp, Expression valX , Expression valY , Expression valZ , Expression valS ):base(((LSLSyntax | ||
535 | )yyp),"rotation", null ){ kids . Add ( valX ); | ||
536 | kids . Add ( valY ); | ||
537 | kids . Add ( valZ ); | ||
538 | kids . Add ( valS ); | ||
539 | } | ||
540 | |||
541 | public override string yyname { get { return "RotationConstant"; }} | ||
542 | public override int yynum { get { return 127; }} | ||
543 | public RotationConstant(Parser yyp):base(yyp){}} | ||
544 | //%+ListConstant+128 | ||
545 | public class ListConstant : Constant{ | ||
546 | public ListConstant (Parser yyp, ArgumentList al ):base(((LSLSyntax | ||
547 | )yyp),"list", null ){ kids . Add ( al ); | ||
548 | } | ||
549 | |||
550 | public override string yyname { get { return "ListConstant"; }} | ||
551 | public override int yynum { get { return 128; }} | ||
552 | public ListConstant(Parser yyp):base(yyp){}} | ||
553 | //%+Expression+129 | ||
554 | public class Expression : SYMBOL{ | ||
555 | protected void AddExpression ( Expression e ){ if ( e is ConstantExpression ) while (0< e . kids . Count ) kids . Add ( e . kids . Pop ()); | ||
556 | else kids . Add ( e ); | ||
557 | } | ||
558 | |||
559 | public override string yyname { get { return "Expression"; }} | ||
560 | public override int yynum { get { return 129; }} | ||
561 | public Expression(Parser yyp):base(yyp){}} | ||
562 | //%+ConstantExpression+130 | ||
563 | public class ConstantExpression : Expression{ | ||
564 | public ConstantExpression (Parser yyp, Constant c ):base(((LSLSyntax | ||
565 | )yyp)){ kids . Add ( c ); | ||
566 | } | ||
567 | |||
568 | public override string yyname { get { return "ConstantExpression"; }} | ||
569 | public override int yynum { get { return 130; }} | ||
570 | public ConstantExpression(Parser yyp):base(yyp){}} | ||
571 | //%+IdentExpression+131 | ||
572 | public class IdentExpression : Expression{ | ||
573 | protected string m_name ; | ||
574 | public IdentExpression (Parser yyp, string name ):base(((LSLSyntax | ||
575 | )yyp)){ m_name = name ; | ||
576 | } | ||
577 | public override string ToString (){ return base . ToString ()+"<"+ m_name +">"; | ||
578 | } | ||
579 | public string Name { get { return m_name ; | ||
580 | } | ||
581 | } | ||
582 | |||
583 | public override string yyname { get { return "IdentExpression"; }} | ||
584 | public override int yynum { get { return 131; }} | ||
585 | public IdentExpression(Parser yyp):base(yyp){}} | ||
586 | //%+IdentDotExpression+132 | ||
587 | public class IdentDotExpression : IdentExpression{ | ||
588 | private string m_member ; | ||
589 | public IdentDotExpression (Parser yyp, string name , string member ):base(((LSLSyntax | ||
590 | )yyp), name ){ m_member = member ; | ||
591 | } | ||
592 | public override string ToString (){ string baseToString = base . ToString (); | ||
593 | return baseToString . Substring (0, baseToString . Length -1)+"."+ m_member +">"; | ||
594 | } | ||
595 | public string Member { get { return m_member ; | ||
596 | } | ||
597 | } | ||
598 | |||
599 | public override string yyname { get { return "IdentDotExpression"; }} | ||
600 | public override int yynum { get { return 132; }} | ||
601 | public IdentDotExpression(Parser yyp):base(yyp){}} | ||
602 | //%+FunctionCallExpression+133 | ||
603 | public class FunctionCallExpression : Expression{ | ||
604 | public FunctionCallExpression (Parser yyp, FunctionCall fc ):base(((LSLSyntax | ||
605 | )yyp)){ kids . Add ( fc ); | ||
606 | } | ||
607 | |||
608 | public override string yyname { get { return "FunctionCallExpression"; }} | ||
609 | public override int yynum { get { return 133; }} | ||
610 | public FunctionCallExpression(Parser yyp):base(yyp){}} | ||
611 | //%+BinaryExpression+134 | ||
612 | public class BinaryExpression : Expression{ | ||
613 | private string m_expressionSymbol ; | ||
614 | public BinaryExpression (Parser yyp, Expression lhs , Expression rhs , string expressionSymbol ):base(((LSLSyntax | ||
615 | )yyp)){ m_expressionSymbol = expressionSymbol ; | ||
616 | AddExpression ( lhs ); | ||
617 | AddExpression ( rhs ); | ||
618 | } | ||
619 | public string ExpressionSymbol { get { return m_expressionSymbol ; | ||
620 | } | ||
621 | } | ||
622 | public override string ToString (){ return base . ToString ()+"<"+ m_expressionSymbol +">"; | ||
623 | } | ||
624 | |||
625 | public override string yyname { get { return "BinaryExpression"; }} | ||
626 | public override int yynum { get { return 134; }} | ||
627 | public BinaryExpression(Parser yyp):base(yyp){}} | ||
628 | //%+UnaryExpression+135 | ||
629 | public class UnaryExpression : Expression{ | ||
630 | private string m_unarySymbol ; | ||
631 | public UnaryExpression (Parser yyp, string unarySymbol , Expression e ):base(((LSLSyntax | ||
632 | )yyp)){ m_unarySymbol = unarySymbol ; | ||
633 | AddExpression ( e ); | ||
634 | } | ||
635 | public string UnarySymbol { get { return m_unarySymbol ; | ||
636 | } | ||
637 | } | ||
638 | public override string ToString (){ return base . ToString ()+"<"+ m_unarySymbol +">"; | ||
639 | } | ||
640 | |||
641 | public override string yyname { get { return "UnaryExpression"; }} | ||
642 | public override int yynum { get { return 135; }} | ||
643 | public UnaryExpression(Parser yyp):base(yyp){}} | ||
644 | //%+TypecastExpression+136 | ||
645 | public class TypecastExpression : Expression{ | ||
646 | private string m_typecastType ; | ||
647 | public TypecastExpression (Parser yyp, string typecastType , SYMBOL rhs ):base(((LSLSyntax | ||
648 | )yyp)){ m_typecastType = typecastType ; | ||
649 | kids . Add ( rhs ); | ||
650 | } | ||
651 | public string TypecastType { get { return m_typecastType ; | ||
652 | } | ||
653 | set { m_typecastType = value ; | ||
654 | } | ||
655 | } | ||
656 | |||
657 | public override string yyname { get { return "TypecastExpression"; }} | ||
658 | public override int yynum { get { return 136; }} | ||
659 | public TypecastExpression(Parser yyp):base(yyp){}} | ||
660 | //%+ParenthesisExpression+137 | ||
661 | public class ParenthesisExpression : Expression{ | ||
662 | public ParenthesisExpression (Parser yyp, SYMBOL s ):base(((LSLSyntax | ||
663 | )yyp)){ kids . Add ( s ); | ||
664 | } | ||
665 | |||
666 | public override string yyname { get { return "ParenthesisExpression"; }} | ||
667 | public override int yynum { get { return 137; }} | ||
668 | public ParenthesisExpression(Parser yyp):base(yyp){}} | ||
669 | //%+IncrementDecrementExpression+138 | ||
670 | public class IncrementDecrementExpression : Expression{ | ||
671 | private string m_name ; | ||
672 | private string m_operation ; | ||
673 | private bool m_postOperation ; | ||
674 | public IncrementDecrementExpression (Parser yyp, string name , string operation , bool postOperation ):base(((LSLSyntax | ||
675 | )yyp)){ m_name = name ; | ||
676 | m_operation = operation ; | ||
677 | m_postOperation = postOperation ; | ||
678 | } | ||
679 | public IncrementDecrementExpression (Parser yyp, IdentDotExpression ide , string operation , bool postOperation ):base(((LSLSyntax | ||
680 | )yyp)){ m_operation = operation ; | ||
681 | m_postOperation = postOperation ; | ||
682 | kids . Add ( ide ); | ||
683 | } | ||
684 | public override string ToString (){ return base . ToString ()+"<"+( m_postOperation ? m_name + m_operation : m_operation + m_name )+">"; | ||
685 | } | ||
686 | public string Name { get { return m_name ; | ||
687 | } | ||
688 | } | ||
689 | public string Operation { get { return m_operation ; | ||
690 | } | ||
691 | } | ||
692 | public bool PostOperation { get { return m_postOperation ; | ||
693 | } | ||
694 | } | ||
695 | |||
696 | public override string yyname { get { return "IncrementDecrementExpression"; }} | ||
697 | public override int yynum { get { return 138; }} | ||
698 | public IncrementDecrementExpression(Parser yyp):base(yyp){}} | ||
699 | |||
700 | public class LSLProgramRoot_1 : LSLProgramRoot { | ||
701 | public LSLProgramRoot_1(Parser yyq):base(yyq, | ||
702 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
703 | , | ||
704 | ((States)(yyq.StackAt(0).m_value)) | ||
705 | ){}} | ||
706 | |||
707 | public class LSLProgramRoot_2 : LSLProgramRoot { | ||
708 | public LSLProgramRoot_2(Parser yyq):base(yyq, | ||
709 | ((States)(yyq.StackAt(0).m_value)) | ||
710 | ){}} | ||
711 | |||
712 | public class GlobalDefinitions_1 : GlobalDefinitions { | ||
713 | public GlobalDefinitions_1(Parser yyq):base(yyq, | ||
714 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
715 | ){}} | ||
716 | |||
717 | public class GlobalDefinitions_2 : GlobalDefinitions { | ||
718 | public GlobalDefinitions_2(Parser yyq):base(yyq, | ||
719 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
720 | , | ||
721 | ((GlobalVariableDeclaration)(yyq.StackAt(0).m_value)) | ||
722 | ){}} | ||
723 | |||
724 | public class GlobalDefinitions_3 : GlobalDefinitions { | ||
725 | public GlobalDefinitions_3(Parser yyq):base(yyq, | ||
726 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
727 | ){}} | ||
728 | |||
729 | public class GlobalDefinitions_4 : GlobalDefinitions { | ||
730 | public GlobalDefinitions_4(Parser yyq):base(yyq, | ||
731 | ((GlobalDefinitions)(yyq.StackAt(1).m_value)) | ||
732 | , | ||
733 | ((GlobalFunctionDefinition)(yyq.StackAt(0).m_value)) | ||
734 | ){}} | ||
735 | |||
736 | public class GlobalVariableDeclaration_1 : GlobalVariableDeclaration { | ||
737 | public GlobalVariableDeclaration_1(Parser yyq):base(yyq, | ||
738 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
739 | ){}} | ||
740 | |||
741 | public class GlobalVariableDeclaration_2 : GlobalVariableDeclaration { | ||
742 | public GlobalVariableDeclaration_2(Parser yyq):base(yyq,new Assignment(((LSLSyntax | ||
743 | )yyq), | ||
744 | ((Declaration)(yyq.StackAt(3).m_value)) | ||
745 | , | ||
746 | ((Expression)(yyq.StackAt(1).m_value)) | ||
747 | , | ||
748 | ((EQUALS)(yyq.StackAt(2).m_value)) | ||
749 | .yytext)){}} | ||
750 | |||
751 | public class GlobalFunctionDefinition_1 : GlobalFunctionDefinition { | ||
752 | public GlobalFunctionDefinition_1(Parser yyq):base(yyq,"void", | ||
753 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
754 | .yytext, | ||
755 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
756 | , | ||
757 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
758 | ){}} | ||
759 | |||
760 | public class GlobalFunctionDefinition_2 : GlobalFunctionDefinition { | ||
761 | public GlobalFunctionDefinition_2(Parser yyq):base(yyq, | ||
762 | ((Typename)(yyq.StackAt(5).m_value)) | ||
763 | .yytext, | ||
764 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
765 | .yytext, | ||
766 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
767 | , | ||
768 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
769 | ){}} | ||
770 | |||
771 | public class States_1 : States { | ||
772 | public States_1(Parser yyq):base(yyq, | ||
773 | ((State)(yyq.StackAt(0).m_value)) | ||
774 | ){}} | ||
775 | |||
776 | public class States_2 : States { | ||
777 | public States_2(Parser yyq):base(yyq, | ||
778 | ((States)(yyq.StackAt(1).m_value)) | ||
779 | , | ||
780 | ((State)(yyq.StackAt(0).m_value)) | ||
781 | ){}} | ||
782 | |||
783 | public class State_1 : State { | ||
784 | public State_1(Parser yyq):base(yyq, | ||
785 | ((DEFAULT_STATE)(yyq.StackAt(3).m_value)) | ||
786 | .yytext, | ||
787 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
788 | ){}} | ||
789 | |||
790 | public class State_2 : State { | ||
791 | public State_2(Parser yyq):base(yyq, | ||
792 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
793 | .yytext, | ||
794 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
795 | ){}} | ||
796 | |||
797 | public class StateBody_1 : StateBody { | ||
798 | public StateBody_1(Parser yyq):base(yyq, | ||
799 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
800 | ){}} | ||
801 | |||
802 | public class StateBody_2 : StateBody { | ||
803 | public StateBody_2(Parser yyq):base(yyq, | ||
804 | ((StateBody)(yyq.StackAt(1).m_value)) | ||
805 | , | ||
806 | ((StateEvent)(yyq.StackAt(0).m_value)) | ||
807 | ){}} | ||
808 | |||
809 | public class StateEvent_1 : StateEvent { | ||
810 | public StateEvent_1(Parser yyq):base(yyq, | ||
811 | ((Event)(yyq.StackAt(4).m_value)) | ||
812 | .yytext, | ||
813 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
814 | , | ||
815 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
816 | ){}} | ||
817 | |||
818 | public class ArgumentDeclarationList_1 : ArgumentDeclarationList { | ||
819 | public ArgumentDeclarationList_1(Parser yyq):base(yyq, | ||
820 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
821 | ){}} | ||
822 | |||
823 | public class ArgumentDeclarationList_2 : ArgumentDeclarationList { | ||
824 | public ArgumentDeclarationList_2(Parser yyq):base(yyq, | ||
825 | ((ArgumentDeclarationList)(yyq.StackAt(2).m_value)) | ||
826 | , | ||
827 | ((Declaration)(yyq.StackAt(0).m_value)) | ||
828 | ){}} | ||
829 | |||
830 | public class Declaration_1 : Declaration { | ||
831 | public Declaration_1(Parser yyq):base(yyq, | ||
832 | ((Typename)(yyq.StackAt(1).m_value)) | ||
833 | .yytext, | ||
834 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
835 | .yytext){}} | ||
836 | |||
837 | public class CompoundStatement_1 : CompoundStatement { | ||
838 | public CompoundStatement_1(Parser yyq):base(yyq){}} | ||
839 | |||
840 | public class CompoundStatement_2 : CompoundStatement { | ||
841 | public CompoundStatement_2(Parser yyq):base(yyq, | ||
842 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
843 | ){}} | ||
844 | |||
845 | public class StatementList_1 : StatementList { | ||
846 | public StatementList_1(Parser yyq):base(yyq, | ||
847 | ((Statement)(yyq.StackAt(0).m_value)) | ||
848 | ){}} | ||
849 | |||
850 | public class StatementList_2 : StatementList { | ||
851 | public StatementList_2(Parser yyq):base(yyq, | ||
852 | ((StatementList)(yyq.StackAt(1).m_value)) | ||
853 | , | ||
854 | ((Statement)(yyq.StackAt(0).m_value)) | ||
855 | ){}} | ||
856 | |||
857 | public class Statement_1 : Statement { | ||
858 | public Statement_1(Parser yyq):base(yyq, | ||
859 | ((Declaration)(yyq.StackAt(1).m_value)) | ||
860 | ){}} | ||
861 | |||
862 | public class Statement_2 : Statement { | ||
863 | public Statement_2(Parser yyq):base(yyq, | ||
864 | ((Assignment)(yyq.StackAt(1).m_value)) | ||
865 | ){}} | ||
866 | |||
867 | public class Statement_3 : Statement { | ||
868 | public Statement_3(Parser yyq):base(yyq, | ||
869 | ((Expression)(yyq.StackAt(1).m_value)) | ||
870 | ){}} | ||
871 | |||
872 | public class Statement_4 : Statement { | ||
873 | public Statement_4(Parser yyq):base(yyq, | ||
874 | ((ReturnStatement)(yyq.StackAt(1).m_value)) | ||
875 | ){}} | ||
876 | |||
877 | public class Statement_5 : Statement { | ||
878 | public Statement_5(Parser yyq):base(yyq, | ||
879 | ((JumpLabel)(yyq.StackAt(1).m_value)) | ||
880 | ){}} | ||
881 | |||
882 | public class Statement_6 : Statement { | ||
883 | public Statement_6(Parser yyq):base(yyq, | ||
884 | ((JumpStatement)(yyq.StackAt(1).m_value)) | ||
885 | ){}} | ||
886 | |||
887 | public class Statement_7 : Statement { | ||
888 | public Statement_7(Parser yyq):base(yyq, | ||
889 | ((StateChange)(yyq.StackAt(1).m_value)) | ||
890 | ){}} | ||
891 | |||
892 | public class Statement_8 : Statement { | ||
893 | public Statement_8(Parser yyq):base(yyq, | ||
894 | ((IfStatement)(yyq.StackAt(0).m_value)) | ||
895 | ){}} | ||
896 | |||
897 | public class Statement_9 : Statement { | ||
898 | public Statement_9(Parser yyq):base(yyq, | ||
899 | ((WhileStatement)(yyq.StackAt(0).m_value)) | ||
900 | ){}} | ||
901 | |||
902 | public class Statement_10 : Statement { | ||
903 | public Statement_10(Parser yyq):base(yyq, | ||
904 | ((DoWhileStatement)(yyq.StackAt(0).m_value)) | ||
905 | ){}} | ||
906 | |||
907 | public class Statement_11 : Statement { | ||
908 | public Statement_11(Parser yyq):base(yyq, | ||
909 | ((ForLoop)(yyq.StackAt(0).m_value)) | ||
910 | ){}} | ||
911 | |||
912 | public class Statement_12 : Statement { | ||
913 | public Statement_12(Parser yyq):base(yyq, | ||
914 | ((CompoundStatement)(yyq.StackAt(0).m_value)) | ||
915 | ){}} | ||
916 | |||
917 | public class JumpLabel_1 : JumpLabel { | ||
918 | public JumpLabel_1(Parser yyq):base(yyq, | ||
919 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
920 | .yytext){}} | ||
921 | |||
922 | public class JumpStatement_1 : JumpStatement { | ||
923 | public JumpStatement_1(Parser yyq):base(yyq, | ||
924 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
925 | .yytext){}} | ||
926 | |||
927 | public class StateChange_1 : StateChange { | ||
928 | public StateChange_1(Parser yyq):base(yyq, | ||
929 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
930 | .yytext){}} | ||
931 | |||
932 | public class StateChange_2 : StateChange { | ||
933 | public StateChange_2(Parser yyq):base(yyq, | ||
934 | ((DEFAULT_STATE)(yyq.StackAt(0).m_value)) | ||
935 | .yytext){}} | ||
936 | |||
937 | public class IfStatement_1 : IfStatement { | ||
938 | public IfStatement_1(Parser yyq):base(yyq, | ||
939 | ((Expression)(yyq.StackAt(2).m_value)) | ||
940 | , | ||
941 | ((Statement)(yyq.StackAt(0).m_value)) | ||
942 | ){}} | ||
943 | |||
944 | public class IfStatement_2 : IfStatement { | ||
945 | public IfStatement_2(Parser yyq):base(yyq, | ||
946 | ((Expression)(yyq.StackAt(4).m_value)) | ||
947 | , | ||
948 | ((Statement)(yyq.StackAt(2).m_value)) | ||
949 | , | ||
950 | ((Statement)(yyq.StackAt(0).m_value)) | ||
951 | ){}} | ||
952 | |||
953 | public class IfStatement_3 : IfStatement { | ||
954 | public IfStatement_3(Parser yyq):base(yyq, | ||
955 | ((SimpleAssignment)(yyq.StackAt(2).m_value)) | ||
956 | , | ||
957 | ((Statement)(yyq.StackAt(0).m_value)) | ||
958 | ){}} | ||
959 | |||
960 | public class IfStatement_4 : IfStatement { | ||
961 | public IfStatement_4(Parser yyq):base(yyq, | ||
962 | ((SimpleAssignment)(yyq.StackAt(4).m_value)) | ||
963 | , | ||
964 | ((Statement)(yyq.StackAt(2).m_value)) | ||
965 | , | ||
966 | ((Statement)(yyq.StackAt(0).m_value)) | ||
967 | ){}} | ||
968 | |||
969 | public class WhileStatement_1 : WhileStatement { | ||
970 | public WhileStatement_1(Parser yyq):base(yyq, | ||
971 | ((Expression)(yyq.StackAt(2).m_value)) | ||
972 | , | ||
973 | ((Statement)(yyq.StackAt(0).m_value)) | ||
974 | ){}} | ||
975 | |||
976 | public class WhileStatement_2 : WhileStatement { | ||
977 | public WhileStatement_2(Parser yyq):base(yyq, | ||
978 | ((SimpleAssignment)(yyq.StackAt(2).m_value)) | ||
979 | , | ||
980 | ((Statement)(yyq.StackAt(0).m_value)) | ||
981 | ){}} | ||
982 | |||
983 | public class DoWhileStatement_1 : DoWhileStatement { | ||
984 | public DoWhileStatement_1(Parser yyq):base(yyq, | ||
985 | ((Expression)(yyq.StackAt(2).m_value)) | ||
986 | , | ||
987 | ((Statement)(yyq.StackAt(5).m_value)) | ||
988 | ){}} | ||
989 | |||
990 | public class DoWhileStatement_2 : DoWhileStatement { | ||
991 | public DoWhileStatement_2(Parser yyq):base(yyq, | ||
992 | ((SimpleAssignment)(yyq.StackAt(2).m_value)) | ||
993 | , | ||
994 | ((Statement)(yyq.StackAt(5).m_value)) | ||
995 | ){}} | ||
996 | |||
997 | public class ForLoop_1 : ForLoop { | ||
998 | public ForLoop_1(Parser yyq):base(yyq, | ||
999 | ((ForLoopStatement)(yyq.StackAt(6).m_value)) | ||
1000 | , | ||
1001 | ((Expression)(yyq.StackAt(4).m_value)) | ||
1002 | , | ||
1003 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
1004 | , | ||
1005 | ((Statement)(yyq.StackAt(0).m_value)) | ||
1006 | ){}} | ||
1007 | |||
1008 | public class ForLoopStatement_1 : ForLoopStatement { | ||
1009 | public ForLoopStatement_1(Parser yyq):base(yyq, | ||
1010 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1011 | ){}} | ||
1012 | |||
1013 | public class ForLoopStatement_2 : ForLoopStatement { | ||
1014 | public ForLoopStatement_2(Parser yyq):base(yyq, | ||
1015 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1016 | ){}} | ||
1017 | |||
1018 | public class ForLoopStatement_3 : ForLoopStatement { | ||
1019 | public ForLoopStatement_3(Parser yyq):base(yyq, | ||
1020 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
1021 | , | ||
1022 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1023 | ){}} | ||
1024 | |||
1025 | public class ForLoopStatement_4 : ForLoopStatement { | ||
1026 | public ForLoopStatement_4(Parser yyq):base(yyq, | ||
1027 | ((ForLoopStatement)(yyq.StackAt(2).m_value)) | ||
1028 | , | ||
1029 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1030 | ){}} | ||
1031 | |||
1032 | public class Assignment_1 : Assignment { | ||
1033 | public Assignment_1(Parser yyq):base(yyq, | ||
1034 | ((Declaration)(yyq.StackAt(2).m_value)) | ||
1035 | , | ||
1036 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1037 | , | ||
1038 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1039 | .yytext){}} | ||
1040 | |||
1041 | public class Assignment_2 : Assignment { | ||
1042 | public Assignment_2(Parser yyq):base(yyq, | ||
1043 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1044 | ){}} | ||
1045 | |||
1046 | public class SimpleAssignment_1 : SimpleAssignment { | ||
1047 | public SimpleAssignment_1(Parser yyq):base(yyq, | ||
1048 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1049 | , | ||
1050 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1051 | , | ||
1052 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1053 | .yytext){}} | ||
1054 | |||
1055 | public class SimpleAssignment_2 : SimpleAssignment { | ||
1056 | public SimpleAssignment_2(Parser yyq):base(yyq, | ||
1057 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1058 | , | ||
1059 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1060 | , | ||
1061 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1062 | .yytext){}} | ||
1063 | |||
1064 | public class SimpleAssignment_3 : SimpleAssignment { | ||
1065 | public SimpleAssignment_3(Parser yyq):base(yyq, | ||
1066 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1067 | , | ||
1068 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1069 | , | ||
1070 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1071 | .yytext){}} | ||
1072 | |||
1073 | public class SimpleAssignment_4 : SimpleAssignment { | ||
1074 | public SimpleAssignment_4(Parser yyq):base(yyq, | ||
1075 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1076 | , | ||
1077 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1078 | , | ||
1079 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1080 | .yytext){}} | ||
1081 | |||
1082 | public class SimpleAssignment_5 : SimpleAssignment { | ||
1083 | public SimpleAssignment_5(Parser yyq):base(yyq, | ||
1084 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1085 | , | ||
1086 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1087 | , | ||
1088 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1089 | .yytext){}} | ||
1090 | |||
1091 | public class SimpleAssignment_6 : SimpleAssignment { | ||
1092 | public SimpleAssignment_6(Parser yyq):base(yyq, | ||
1093 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1094 | , | ||
1095 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1096 | , | ||
1097 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1098 | .yytext){}} | ||
1099 | |||
1100 | public class SimpleAssignment_7 : SimpleAssignment { | ||
1101 | public SimpleAssignment_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1102 | )yyq), | ||
1103 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1104 | .yytext, | ||
1105 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1106 | .yytext), | ||
1107 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1108 | , | ||
1109 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1110 | .yytext){}} | ||
1111 | |||
1112 | public class SimpleAssignment_8 : SimpleAssignment { | ||
1113 | public SimpleAssignment_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1114 | )yyq), | ||
1115 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1116 | .yytext, | ||
1117 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1118 | .yytext), | ||
1119 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1120 | , | ||
1121 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1122 | .yytext){}} | ||
1123 | |||
1124 | public class SimpleAssignment_9 : SimpleAssignment { | ||
1125 | public SimpleAssignment_9(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1126 | )yyq), | ||
1127 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1128 | .yytext, | ||
1129 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1130 | .yytext), | ||
1131 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1132 | , | ||
1133 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1134 | .yytext){}} | ||
1135 | |||
1136 | public class SimpleAssignment_10 : SimpleAssignment { | ||
1137 | public SimpleAssignment_10(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1138 | )yyq), | ||
1139 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1140 | .yytext, | ||
1141 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1142 | .yytext), | ||
1143 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1144 | , | ||
1145 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1146 | .yytext){}} | ||
1147 | |||
1148 | public class SimpleAssignment_11 : SimpleAssignment { | ||
1149 | public SimpleAssignment_11(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1150 | )yyq), | ||
1151 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1152 | .yytext, | ||
1153 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1154 | .yytext), | ||
1155 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1156 | , | ||
1157 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1158 | .yytext){}} | ||
1159 | |||
1160 | public class SimpleAssignment_12 : SimpleAssignment { | ||
1161 | public SimpleAssignment_12(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1162 | )yyq), | ||
1163 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1164 | .yytext, | ||
1165 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1166 | .yytext), | ||
1167 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1168 | , | ||
1169 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1170 | .yytext){}} | ||
1171 | |||
1172 | public class SimpleAssignment_13 : SimpleAssignment { | ||
1173 | public SimpleAssignment_13(Parser yyq):base(yyq, | ||
1174 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1175 | , | ||
1176 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1177 | , | ||
1178 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1179 | .yytext){}} | ||
1180 | |||
1181 | public class SimpleAssignment_14 : SimpleAssignment { | ||
1182 | public SimpleAssignment_14(Parser yyq):base(yyq, | ||
1183 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1184 | , | ||
1185 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1186 | , | ||
1187 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1188 | .yytext){}} | ||
1189 | |||
1190 | public class SimpleAssignment_15 : SimpleAssignment { | ||
1191 | public SimpleAssignment_15(Parser yyq):base(yyq, | ||
1192 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1193 | , | ||
1194 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1195 | , | ||
1196 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1197 | .yytext){}} | ||
1198 | |||
1199 | public class SimpleAssignment_16 : SimpleAssignment { | ||
1200 | public SimpleAssignment_16(Parser yyq):base(yyq, | ||
1201 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1202 | , | ||
1203 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1204 | , | ||
1205 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1206 | .yytext){}} | ||
1207 | |||
1208 | public class SimpleAssignment_17 : SimpleAssignment { | ||
1209 | public SimpleAssignment_17(Parser yyq):base(yyq, | ||
1210 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1211 | , | ||
1212 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1213 | , | ||
1214 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1215 | .yytext){}} | ||
1216 | |||
1217 | public class SimpleAssignment_18 : SimpleAssignment { | ||
1218 | public SimpleAssignment_18(Parser yyq):base(yyq, | ||
1219 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1220 | , | ||
1221 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1222 | , | ||
1223 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1224 | .yytext){}} | ||
1225 | |||
1226 | public class SimpleAssignment_19 : SimpleAssignment { | ||
1227 | public SimpleAssignment_19(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1228 | )yyq), | ||
1229 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1230 | .yytext, | ||
1231 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1232 | .yytext), | ||
1233 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1234 | , | ||
1235 | ((EQUALS)(yyq.StackAt(1).m_value)) | ||
1236 | .yytext){}} | ||
1237 | |||
1238 | public class SimpleAssignment_20 : SimpleAssignment { | ||
1239 | public SimpleAssignment_20(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1240 | )yyq), | ||
1241 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1242 | .yytext, | ||
1243 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1244 | .yytext), | ||
1245 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1246 | , | ||
1247 | ((PLUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1248 | .yytext){}} | ||
1249 | |||
1250 | public class SimpleAssignment_21 : SimpleAssignment { | ||
1251 | public SimpleAssignment_21(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1252 | )yyq), | ||
1253 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1254 | .yytext, | ||
1255 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1256 | .yytext), | ||
1257 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1258 | , | ||
1259 | ((MINUS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1260 | .yytext){}} | ||
1261 | |||
1262 | public class SimpleAssignment_22 : SimpleAssignment { | ||
1263 | public SimpleAssignment_22(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1264 | )yyq), | ||
1265 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1266 | .yytext, | ||
1267 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1268 | .yytext), | ||
1269 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1270 | , | ||
1271 | ((STAR_EQUALS)(yyq.StackAt(1).m_value)) | ||
1272 | .yytext){}} | ||
1273 | |||
1274 | public class SimpleAssignment_23 : SimpleAssignment { | ||
1275 | public SimpleAssignment_23(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1276 | )yyq), | ||
1277 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1278 | .yytext, | ||
1279 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1280 | .yytext), | ||
1281 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1282 | , | ||
1283 | ((SLASH_EQUALS)(yyq.StackAt(1).m_value)) | ||
1284 | .yytext){}} | ||
1285 | |||
1286 | public class SimpleAssignment_24 : SimpleAssignment { | ||
1287 | public SimpleAssignment_24(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1288 | )yyq), | ||
1289 | ((IDENT)(yyq.StackAt(4).m_value)) | ||
1290 | .yytext, | ||
1291 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1292 | .yytext), | ||
1293 | ((SimpleAssignment)(yyq.StackAt(0).m_value)) | ||
1294 | , | ||
1295 | ((PERCENT_EQUALS)(yyq.StackAt(1).m_value)) | ||
1296 | .yytext){}} | ||
1297 | |||
1298 | public class ReturnStatement_1 : ReturnStatement { | ||
1299 | public ReturnStatement_1(Parser yyq):base(yyq, | ||
1300 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1301 | ){}} | ||
1302 | |||
1303 | public class ReturnStatement_2 : ReturnStatement { | ||
1304 | public ReturnStatement_2(Parser yyq):base(yyq){}} | ||
1305 | |||
1306 | public class Constant_1 : Constant { | ||
1307 | public Constant_1(Parser yyq):base(yyq,"integer", | ||
1308 | ((INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1309 | .yytext){}} | ||
1310 | |||
1311 | public class Constant_2 : Constant { | ||
1312 | public Constant_2(Parser yyq):base(yyq,"integer", | ||
1313 | ((HEX_INTEGER_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1314 | .yytext){}} | ||
1315 | |||
1316 | public class Constant_3 : Constant { | ||
1317 | public Constant_3(Parser yyq):base(yyq,"float", | ||
1318 | ((FLOAT_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1319 | .yytext){}} | ||
1320 | |||
1321 | public class Constant_4 : Constant { | ||
1322 | public Constant_4(Parser yyq):base(yyq,"string", | ||
1323 | ((STRING_CONSTANT)(yyq.StackAt(0).m_value)) | ||
1324 | .yytext){}} | ||
1325 | |||
1326 | public class ListConstant_1 : ListConstant { | ||
1327 | public ListConstant_1(Parser yyq):base(yyq, | ||
1328 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1329 | ){}} | ||
1330 | |||
1331 | public class VectorConstant_1 : VectorConstant { | ||
1332 | public VectorConstant_1(Parser yyq):base(yyq, | ||
1333 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1334 | , | ||
1335 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1336 | , | ||
1337 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1338 | ){}} | ||
1339 | |||
1340 | public class RotationConstant_1 : RotationConstant { | ||
1341 | public RotationConstant_1(Parser yyq):base(yyq, | ||
1342 | ((Expression)(yyq.StackAt(7).m_value)) | ||
1343 | , | ||
1344 | ((Expression)(yyq.StackAt(5).m_value)) | ||
1345 | , | ||
1346 | ((Expression)(yyq.StackAt(3).m_value)) | ||
1347 | , | ||
1348 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1349 | ){}} | ||
1350 | |||
1351 | public class ConstantExpression_1 : ConstantExpression { | ||
1352 | public ConstantExpression_1(Parser yyq):base(yyq, | ||
1353 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1354 | ){}} | ||
1355 | |||
1356 | public class IdentExpression_1 : IdentExpression { | ||
1357 | public IdentExpression_1(Parser yyq):base(yyq, | ||
1358 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1359 | .yytext){}} | ||
1360 | |||
1361 | public class IdentDotExpression_1 : IdentDotExpression { | ||
1362 | public IdentDotExpression_1(Parser yyq):base(yyq, | ||
1363 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1364 | .yytext, | ||
1365 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1366 | .yytext){}} | ||
1367 | |||
1368 | public class IncrementDecrementExpression_1 : IncrementDecrementExpression { | ||
1369 | public IncrementDecrementExpression_1(Parser yyq):base(yyq, | ||
1370 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1371 | .yytext, | ||
1372 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1373 | .yytext, true){}} | ||
1374 | |||
1375 | public class IncrementDecrementExpression_2 : IncrementDecrementExpression { | ||
1376 | public IncrementDecrementExpression_2(Parser yyq):base(yyq, | ||
1377 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1378 | .yytext, | ||
1379 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1380 | .yytext, true){}} | ||
1381 | |||
1382 | public class IncrementDecrementExpression_3 : IncrementDecrementExpression { | ||
1383 | public IncrementDecrementExpression_3(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1384 | )yyq), | ||
1385 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1386 | .yytext, | ||
1387 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1388 | .yytext), | ||
1389 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1390 | .yytext, true){}} | ||
1391 | |||
1392 | public class IncrementDecrementExpression_4 : IncrementDecrementExpression { | ||
1393 | public IncrementDecrementExpression_4(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1394 | )yyq), | ||
1395 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1396 | .yytext, | ||
1397 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1398 | .yytext), | ||
1399 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1400 | .yytext, true){}} | ||
1401 | |||
1402 | public class IncrementDecrementExpression_5 : IncrementDecrementExpression { | ||
1403 | public IncrementDecrementExpression_5(Parser yyq):base(yyq, | ||
1404 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1405 | .yytext, | ||
1406 | ((INCREMENT)(yyq.StackAt(1).m_value)) | ||
1407 | .yytext, false){}} | ||
1408 | |||
1409 | public class IncrementDecrementExpression_6 : IncrementDecrementExpression { | ||
1410 | public IncrementDecrementExpression_6(Parser yyq):base(yyq, | ||
1411 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1412 | .yytext, | ||
1413 | ((DECREMENT)(yyq.StackAt(1).m_value)) | ||
1414 | .yytext, false){}} | ||
1415 | |||
1416 | public class IncrementDecrementExpression_7 : IncrementDecrementExpression { | ||
1417 | public IncrementDecrementExpression_7(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1418 | )yyq), | ||
1419 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1420 | .yytext, | ||
1421 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1422 | .yytext), | ||
1423 | ((INCREMENT)(yyq.StackAt(3).m_value)) | ||
1424 | .yytext, false){}} | ||
1425 | |||
1426 | public class IncrementDecrementExpression_8 : IncrementDecrementExpression { | ||
1427 | public IncrementDecrementExpression_8(Parser yyq):base(yyq,new IdentDotExpression(((LSLSyntax | ||
1428 | )yyq), | ||
1429 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1430 | .yytext, | ||
1431 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1432 | .yytext), | ||
1433 | ((DECREMENT)(yyq.StackAt(3).m_value)) | ||
1434 | .yytext, false){}} | ||
1435 | |||
1436 | public class FunctionCallExpression_1 : FunctionCallExpression { | ||
1437 | public FunctionCallExpression_1(Parser yyq):base(yyq, | ||
1438 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1439 | ){}} | ||
1440 | |||
1441 | public class BinaryExpression_1 : BinaryExpression { | ||
1442 | public BinaryExpression_1(Parser yyq):base(yyq, | ||
1443 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1444 | , | ||
1445 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1446 | , | ||
1447 | ((PLUS)(yyq.StackAt(1).m_value)) | ||
1448 | .yytext){}} | ||
1449 | |||
1450 | public class BinaryExpression_2 : BinaryExpression { | ||
1451 | public BinaryExpression_2(Parser yyq):base(yyq, | ||
1452 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1453 | , | ||
1454 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1455 | , | ||
1456 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1457 | .yytext){}} | ||
1458 | |||
1459 | public class BinaryExpression_3 : BinaryExpression { | ||
1460 | public BinaryExpression_3(Parser yyq):base(yyq, | ||
1461 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1462 | , | ||
1463 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1464 | , | ||
1465 | ((STAR)(yyq.StackAt(1).m_value)) | ||
1466 | .yytext){}} | ||
1467 | |||
1468 | public class BinaryExpression_4 : BinaryExpression { | ||
1469 | public BinaryExpression_4(Parser yyq):base(yyq, | ||
1470 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1471 | , | ||
1472 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1473 | , | ||
1474 | ((SLASH)(yyq.StackAt(1).m_value)) | ||
1475 | .yytext){}} | ||
1476 | |||
1477 | public class BinaryExpression_5 : BinaryExpression { | ||
1478 | public BinaryExpression_5(Parser yyq):base(yyq, | ||
1479 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1480 | , | ||
1481 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1482 | , | ||
1483 | ((PERCENT)(yyq.StackAt(1).m_value)) | ||
1484 | .yytext){}} | ||
1485 | |||
1486 | public class BinaryExpression_6 : BinaryExpression { | ||
1487 | public BinaryExpression_6(Parser yyq):base(yyq, | ||
1488 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1489 | , | ||
1490 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1491 | , | ||
1492 | ((AMP)(yyq.StackAt(1).m_value)) | ||
1493 | .yytext){}} | ||
1494 | |||
1495 | public class BinaryExpression_7 : BinaryExpression { | ||
1496 | public BinaryExpression_7(Parser yyq):base(yyq, | ||
1497 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1498 | , | ||
1499 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1500 | , | ||
1501 | ((STROKE)(yyq.StackAt(1).m_value)) | ||
1502 | .yytext){}} | ||
1503 | |||
1504 | public class BinaryExpression_8 : BinaryExpression { | ||
1505 | public BinaryExpression_8(Parser yyq):base(yyq, | ||
1506 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1507 | , | ||
1508 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1509 | , | ||
1510 | ((CARET)(yyq.StackAt(1).m_value)) | ||
1511 | .yytext){}} | ||
1512 | |||
1513 | public class BinaryExpression_9 : BinaryExpression { | ||
1514 | public BinaryExpression_9(Parser yyq):base(yyq, | ||
1515 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1516 | , | ||
1517 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1518 | , | ||
1519 | ((RIGHT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1520 | .yytext){}} | ||
1521 | |||
1522 | public class BinaryExpression_10 : BinaryExpression { | ||
1523 | public BinaryExpression_10(Parser yyq):base(yyq, | ||
1524 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1525 | , | ||
1526 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1527 | , | ||
1528 | ((LEFT_ANGLE)(yyq.StackAt(1).m_value)) | ||
1529 | .yytext){}} | ||
1530 | |||
1531 | public class BinaryExpression_11 : BinaryExpression { | ||
1532 | public BinaryExpression_11(Parser yyq):base(yyq, | ||
1533 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1534 | , | ||
1535 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1536 | , | ||
1537 | ((EQUALS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1538 | .yytext){}} | ||
1539 | |||
1540 | public class BinaryExpression_12 : BinaryExpression { | ||
1541 | public BinaryExpression_12(Parser yyq):base(yyq, | ||
1542 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1543 | , | ||
1544 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1545 | , | ||
1546 | ((EXCLAMATION_EQUALS)(yyq.StackAt(1).m_value)) | ||
1547 | .yytext){}} | ||
1548 | |||
1549 | public class BinaryExpression_13 : BinaryExpression { | ||
1550 | public BinaryExpression_13(Parser yyq):base(yyq, | ||
1551 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1552 | , | ||
1553 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1554 | , | ||
1555 | ((LESS_EQUALS)(yyq.StackAt(1).m_value)) | ||
1556 | .yytext){}} | ||
1557 | |||
1558 | public class BinaryExpression_14 : BinaryExpression { | ||
1559 | public BinaryExpression_14(Parser yyq):base(yyq, | ||
1560 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1561 | , | ||
1562 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1563 | , | ||
1564 | ((GREATER_EQUALS)(yyq.StackAt(1).m_value)) | ||
1565 | .yytext){}} | ||
1566 | |||
1567 | public class BinaryExpression_15 : BinaryExpression { | ||
1568 | public BinaryExpression_15(Parser yyq):base(yyq, | ||
1569 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1570 | , | ||
1571 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1572 | , | ||
1573 | ((AMP_AMP)(yyq.StackAt(1).m_value)) | ||
1574 | .yytext){}} | ||
1575 | |||
1576 | public class BinaryExpression_16 : BinaryExpression { | ||
1577 | public BinaryExpression_16(Parser yyq):base(yyq, | ||
1578 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1579 | , | ||
1580 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1581 | , | ||
1582 | ((STROKE_STROKE)(yyq.StackAt(1).m_value)) | ||
1583 | .yytext){}} | ||
1584 | |||
1585 | public class BinaryExpression_17 : BinaryExpression { | ||
1586 | public BinaryExpression_17(Parser yyq):base(yyq, | ||
1587 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1588 | , | ||
1589 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1590 | , | ||
1591 | ((LEFT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1592 | .yytext){}} | ||
1593 | |||
1594 | public class BinaryExpression_18 : BinaryExpression { | ||
1595 | public BinaryExpression_18(Parser yyq):base(yyq, | ||
1596 | ((Expression)(yyq.StackAt(2).m_value)) | ||
1597 | , | ||
1598 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1599 | , | ||
1600 | ((RIGHT_SHIFT)(yyq.StackAt(1).m_value)) | ||
1601 | .yytext){}} | ||
1602 | |||
1603 | public class UnaryExpression_1 : UnaryExpression { | ||
1604 | public UnaryExpression_1(Parser yyq):base(yyq, | ||
1605 | ((EXCLAMATION)(yyq.StackAt(1).m_value)) | ||
1606 | .yytext, | ||
1607 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1608 | ){}} | ||
1609 | |||
1610 | public class UnaryExpression_2 : UnaryExpression { | ||
1611 | public UnaryExpression_2(Parser yyq):base(yyq, | ||
1612 | ((MINUS)(yyq.StackAt(1).m_value)) | ||
1613 | .yytext, | ||
1614 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1615 | ){}} | ||
1616 | |||
1617 | public class UnaryExpression_3 : UnaryExpression { | ||
1618 | public UnaryExpression_3(Parser yyq):base(yyq, | ||
1619 | ((TILDE)(yyq.StackAt(1).m_value)) | ||
1620 | .yytext, | ||
1621 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1622 | ){}} | ||
1623 | |||
1624 | public class ParenthesisExpression_1 : ParenthesisExpression { | ||
1625 | public ParenthesisExpression_1(Parser yyq):base(yyq, | ||
1626 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1627 | ){}} | ||
1628 | |||
1629 | public class ParenthesisExpression_2 : ParenthesisExpression { | ||
1630 | public ParenthesisExpression_2(Parser yyq):base(yyq, | ||
1631 | ((SimpleAssignment)(yyq.StackAt(1).m_value)) | ||
1632 | ){}} | ||
1633 | |||
1634 | public class TypecastExpression_1 : TypecastExpression { | ||
1635 | public TypecastExpression_1(Parser yyq):base(yyq, | ||
1636 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1637 | .yytext, | ||
1638 | ((Constant)(yyq.StackAt(0).m_value)) | ||
1639 | ){}} | ||
1640 | |||
1641 | public class TypecastExpression_2 : TypecastExpression { | ||
1642 | public TypecastExpression_2(Parser yyq):base(yyq, | ||
1643 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1644 | .yytext, new IdentExpression(((LSLSyntax | ||
1645 | )yyq), | ||
1646 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1647 | .yytext)){}} | ||
1648 | |||
1649 | public class TypecastExpression_3 : TypecastExpression { | ||
1650 | public TypecastExpression_3(Parser yyq):base(yyq, | ||
1651 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1652 | .yytext, new IdentDotExpression(((LSLSyntax | ||
1653 | )yyq), | ||
1654 | ((IDENT)(yyq.StackAt(2).m_value)) | ||
1655 | .yytext, | ||
1656 | ((IDENT)(yyq.StackAt(0).m_value)) | ||
1657 | .yytext)){}} | ||
1658 | |||
1659 | public class TypecastExpression_4 : TypecastExpression { | ||
1660 | public TypecastExpression_4(Parser yyq):base(yyq, | ||
1661 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1662 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1663 | )yyq), | ||
1664 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1665 | .yytext, | ||
1666 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1667 | .yytext, true)){}} | ||
1668 | |||
1669 | public class TypecastExpression_5 : TypecastExpression { | ||
1670 | public TypecastExpression_5(Parser yyq):base(yyq, | ||
1671 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1672 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1673 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1674 | )yyq), | ||
1675 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1676 | .yytext, | ||
1677 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1678 | .yytext), | ||
1679 | ((INCREMENT)(yyq.StackAt(0).m_value)) | ||
1680 | .yytext, true)){}} | ||
1681 | |||
1682 | public class TypecastExpression_6 : TypecastExpression { | ||
1683 | public TypecastExpression_6(Parser yyq):base(yyq, | ||
1684 | ((Typename)(yyq.StackAt(3).m_value)) | ||
1685 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1686 | )yyq), | ||
1687 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1688 | .yytext, | ||
1689 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1690 | .yytext, true)){}} | ||
1691 | |||
1692 | public class TypecastExpression_7 : TypecastExpression { | ||
1693 | public TypecastExpression_7(Parser yyq):base(yyq, | ||
1694 | ((Typename)(yyq.StackAt(5).m_value)) | ||
1695 | .yytext, new IncrementDecrementExpression(((LSLSyntax | ||
1696 | )yyq), new IdentDotExpression(((LSLSyntax | ||
1697 | )yyq), | ||
1698 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1699 | .yytext, | ||
1700 | ((IDENT)(yyq.StackAt(1).m_value)) | ||
1701 | .yytext), | ||
1702 | ((DECREMENT)(yyq.StackAt(0).m_value)) | ||
1703 | .yytext, true)){}} | ||
1704 | |||
1705 | public class TypecastExpression_8 : TypecastExpression { | ||
1706 | public TypecastExpression_8(Parser yyq):base(yyq, | ||
1707 | ((Typename)(yyq.StackAt(2).m_value)) | ||
1708 | .yytext, | ||
1709 | ((FunctionCall)(yyq.StackAt(0).m_value)) | ||
1710 | ){}} | ||
1711 | |||
1712 | public class TypecastExpression_9 : TypecastExpression { | ||
1713 | public TypecastExpression_9(Parser yyq):base(yyq, | ||
1714 | ((Typename)(yyq.StackAt(4).m_value)) | ||
1715 | .yytext, | ||
1716 | ((Expression)(yyq.StackAt(1).m_value)) | ||
1717 | ){}} | ||
1718 | |||
1719 | public class FunctionCall_1 : FunctionCall { | ||
1720 | public FunctionCall_1(Parser yyq):base(yyq, | ||
1721 | ((IDENT)(yyq.StackAt(3).m_value)) | ||
1722 | .yytext, | ||
1723 | ((ArgumentList)(yyq.StackAt(1).m_value)) | ||
1724 | ){}} | ||
1725 | |||
1726 | public class ArgumentList_1 : ArgumentList { | ||
1727 | public ArgumentList_1(Parser yyq):base(yyq, | ||
1728 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1729 | ){}} | ||
1730 | |||
1731 | public class ArgumentList_2 : ArgumentList { | ||
1732 | public ArgumentList_2(Parser yyq):base(yyq, | ||
1733 | ((ArgumentList)(yyq.StackAt(2).m_value)) | ||
1734 | , | ||
1735 | ((Argument)(yyq.StackAt(0).m_value)) | ||
1736 | ){}} | ||
1737 | |||
1738 | public class ExpressionArgument_1 : ExpressionArgument { | ||
1739 | public ExpressionArgument_1(Parser yyq):base(yyq, | ||
1740 | ((Expression)(yyq.StackAt(0).m_value)) | ||
1741 | ){}} | ||
1742 | |||
1743 | public class Typename_1 : Typename { | ||
1744 | public Typename_1(Parser yyq):base(yyq, | ||
1745 | ((INTEGER_TYPE)(yyq.StackAt(0).m_value)) | ||
1746 | .yytext){}} | ||
1747 | |||
1748 | public class Typename_2 : Typename { | ||
1749 | public Typename_2(Parser yyq):base(yyq, | ||
1750 | ((FLOAT_TYPE)(yyq.StackAt(0).m_value)) | ||
1751 | .yytext){}} | ||
1752 | |||
1753 | public class Typename_3 : Typename { | ||
1754 | public Typename_3(Parser yyq):base(yyq, | ||
1755 | ((STRING_TYPE)(yyq.StackAt(0).m_value)) | ||
1756 | .yytext){}} | ||
1757 | |||
1758 | public class Typename_4 : Typename { | ||
1759 | public Typename_4(Parser yyq):base(yyq, | ||
1760 | ((KEY_TYPE)(yyq.StackAt(0).m_value)) | ||
1761 | .yytext){}} | ||
1762 | |||
1763 | public class Typename_5 : Typename { | ||
1764 | public Typename_5(Parser yyq):base(yyq, | ||
1765 | ((VECTOR_TYPE)(yyq.StackAt(0).m_value)) | ||
1766 | .yytext){}} | ||
1767 | |||
1768 | public class Typename_6 : Typename { | ||
1769 | public Typename_6(Parser yyq):base(yyq, | ||
1770 | ((ROTATION_TYPE)(yyq.StackAt(0).m_value)) | ||
1771 | .yytext){}} | ||
1772 | |||
1773 | public class Typename_7 : Typename { | ||
1774 | public Typename_7(Parser yyq):base(yyq, | ||
1775 | ((LIST_TYPE)(yyq.StackAt(0).m_value)) | ||
1776 | .yytext){}} | ||
1777 | |||
1778 | public class Event_1 : Event { | ||
1779 | public Event_1(Parser yyq):base(yyq, | ||
1780 | ((AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1781 | .yytext){}} | ||
1782 | |||
1783 | public class Event_2 : Event { | ||
1784 | public Event_2(Parser yyq):base(yyq, | ||
1785 | ((AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1786 | .yytext){}} | ||
1787 | |||
1788 | public class Event_3 : Event { | ||
1789 | public Event_3(Parser yyq):base(yyq, | ||
1790 | ((ATTACH_EVENT)(yyq.StackAt(0).m_value)) | ||
1791 | .yytext){}} | ||
1792 | |||
1793 | public class Event_4 : Event { | ||
1794 | public Event_4(Parser yyq):base(yyq, | ||
1795 | ((CHANGED_EVENT)(yyq.StackAt(0).m_value)) | ||
1796 | .yytext){}} | ||
1797 | |||
1798 | public class Event_5 : Event { | ||
1799 | public Event_5(Parser yyq):base(yyq, | ||
1800 | ((COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1801 | .yytext){}} | ||
1802 | |||
1803 | public class Event_6 : Event { | ||
1804 | public Event_6(Parser yyq):base(yyq, | ||
1805 | ((COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1806 | .yytext){}} | ||
1807 | |||
1808 | public class Event_7 : Event { | ||
1809 | public Event_7(Parser yyq):base(yyq, | ||
1810 | ((COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1811 | .yytext){}} | ||
1812 | |||
1813 | public class Event_8 : Event { | ||
1814 | public Event_8(Parser yyq):base(yyq, | ||
1815 | ((CONTROL_EVENT)(yyq.StackAt(0).m_value)) | ||
1816 | .yytext){}} | ||
1817 | |||
1818 | public class Event_9 : Event { | ||
1819 | public Event_9(Parser yyq):base(yyq, | ||
1820 | ((DATASERVER_EVENT)(yyq.StackAt(0).m_value)) | ||
1821 | .yytext){}} | ||
1822 | |||
1823 | public class Event_10 : Event { | ||
1824 | public Event_10(Parser yyq):base(yyq, | ||
1825 | ((EMAIL_EVENT)(yyq.StackAt(0).m_value)) | ||
1826 | .yytext){}} | ||
1827 | |||
1828 | public class Event_11 : Event { | ||
1829 | public Event_11(Parser yyq):base(yyq, | ||
1830 | ((HTTP_RESPONSE_EVENT)(yyq.StackAt(0).m_value)) | ||
1831 | .yytext){}} | ||
1832 | |||
1833 | public class Event_12 : Event { | ||
1834 | public Event_12(Parser yyq):base(yyq, | ||
1835 | ((LAND_COLLISION_EVENT)(yyq.StackAt(0).m_value)) | ||
1836 | .yytext){}} | ||
1837 | |||
1838 | public class Event_13 : Event { | ||
1839 | public Event_13(Parser yyq):base(yyq, | ||
1840 | ((LAND_COLLISION_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1841 | .yytext){}} | ||
1842 | |||
1843 | public class Event_14 : Event { | ||
1844 | public Event_14(Parser yyq):base(yyq, | ||
1845 | ((LAND_COLLISION_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1846 | .yytext){}} | ||
1847 | |||
1848 | public class Event_15 : Event { | ||
1849 | public Event_15(Parser yyq):base(yyq, | ||
1850 | ((LINK_MESSAGE_EVENT)(yyq.StackAt(0).m_value)) | ||
1851 | .yytext){}} | ||
1852 | |||
1853 | public class Event_16 : Event { | ||
1854 | public Event_16(Parser yyq):base(yyq, | ||
1855 | ((LISTEN_EVENT)(yyq.StackAt(0).m_value)) | ||
1856 | .yytext){}} | ||
1857 | |||
1858 | public class Event_17 : Event { | ||
1859 | public Event_17(Parser yyq):base(yyq, | ||
1860 | ((MONEY_EVENT)(yyq.StackAt(0).m_value)) | ||
1861 | .yytext){}} | ||
1862 | |||
1863 | public class Event_18 : Event { | ||
1864 | public Event_18(Parser yyq):base(yyq, | ||
1865 | ((MOVING_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1866 | .yytext){}} | ||
1867 | |||
1868 | public class Event_19 : Event { | ||
1869 | public Event_19(Parser yyq):base(yyq, | ||
1870 | ((MOVING_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1871 | .yytext){}} | ||
1872 | |||
1873 | public class Event_20 : Event { | ||
1874 | public Event_20(Parser yyq):base(yyq, | ||
1875 | ((NO_SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1876 | .yytext){}} | ||
1877 | |||
1878 | public class Event_21 : Event { | ||
1879 | public Event_21(Parser yyq):base(yyq, | ||
1880 | ((NOT_AT_ROT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1881 | .yytext){}} | ||
1882 | |||
1883 | public class Event_22 : Event { | ||
1884 | public Event_22(Parser yyq):base(yyq, | ||
1885 | ((NOT_AT_TARGET_EVENT)(yyq.StackAt(0).m_value)) | ||
1886 | .yytext){}} | ||
1887 | |||
1888 | public class Event_23 : Event { | ||
1889 | public Event_23(Parser yyq):base(yyq, | ||
1890 | ((OBJECT_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1891 | .yytext){}} | ||
1892 | |||
1893 | public class Event_24 : Event { | ||
1894 | public Event_24(Parser yyq):base(yyq, | ||
1895 | ((ON_REZ_EVENT)(yyq.StackAt(0).m_value)) | ||
1896 | .yytext){}} | ||
1897 | |||
1898 | public class Event_25 : Event { | ||
1899 | public Event_25(Parser yyq):base(yyq, | ||
1900 | ((REMOTE_DATA_EVENT)(yyq.StackAt(0).m_value)) | ||
1901 | .yytext){}} | ||
1902 | |||
1903 | public class Event_26 : Event { | ||
1904 | public Event_26(Parser yyq):base(yyq, | ||
1905 | ((RUN_TIME_PERMISSIONS_EVENT)(yyq.StackAt(0).m_value)) | ||
1906 | .yytext){}} | ||
1907 | |||
1908 | public class Event_27 : Event { | ||
1909 | public Event_27(Parser yyq):base(yyq, | ||
1910 | ((SENSOR_EVENT)(yyq.StackAt(0).m_value)) | ||
1911 | .yytext){}} | ||
1912 | |||
1913 | public class Event_28 : Event { | ||
1914 | public Event_28(Parser yyq):base(yyq, | ||
1915 | ((STATE_ENTRY_EVENT)(yyq.StackAt(0).m_value)) | ||
1916 | .yytext){}} | ||
1917 | |||
1918 | public class Event_29 : Event { | ||
1919 | public Event_29(Parser yyq):base(yyq, | ||
1920 | ((STATE_EXIT_EVENT)(yyq.StackAt(0).m_value)) | ||
1921 | .yytext){}} | ||
1922 | |||
1923 | public class Event_30 : Event { | ||
1924 | public Event_30(Parser yyq):base(yyq, | ||
1925 | ((TIMER_EVENT)(yyq.StackAt(0).m_value)) | ||
1926 | .yytext){}} | ||
1927 | |||
1928 | public class Event_31 : Event { | ||
1929 | public Event_31(Parser yyq):base(yyq, | ||
1930 | ((TOUCH_EVENT)(yyq.StackAt(0).m_value)) | ||
1931 | .yytext){}} | ||
1932 | |||
1933 | public class Event_32 : Event { | ||
1934 | public Event_32(Parser yyq):base(yyq, | ||
1935 | ((TOUCH_END_EVENT)(yyq.StackAt(0).m_value)) | ||
1936 | .yytext){}} | ||
1937 | |||
1938 | public class Event_33 : Event { | ||
1939 | public Event_33(Parser yyq):base(yyq, | ||
1940 | ((TOUCH_START_EVENT)(yyq.StackAt(0).m_value)) | ||
1941 | .yytext){}} | ||
1942 | public class yyLSLSyntax | ||
1943 | : YyParser { | ||
1944 | public override object Action(Parser yyq,SYMBOL yysym, int yyact) { | ||
1945 | switch(yyact) { | ||
1946 | case -1: break; //// keep compiler happy | ||
1947 | } return null; } | ||
1948 | |||
1949 | public class ArgumentDeclarationList_3 : ArgumentDeclarationList { | ||
1950 | public ArgumentDeclarationList_3(Parser yyq):base(yyq){}} | ||
1951 | |||
1952 | public class ArgumentList_3 : ArgumentList { | ||
1953 | public ArgumentList_3(Parser yyq):base(yyq){}} | ||
1954 | |||
1955 | public class ArgumentDeclarationList_4 : ArgumentDeclarationList { | ||
1956 | public ArgumentDeclarationList_4(Parser yyq):base(yyq){}} | ||
1957 | |||
1958 | public class ArgumentDeclarationList_5 : ArgumentDeclarationList { | ||
1959 | public ArgumentDeclarationList_5(Parser yyq):base(yyq){}} | ||
1960 | |||
1961 | public class Statement_13 : Statement { | ||
1962 | public Statement_13(Parser yyq):base(yyq){}} | ||
1963 | |||
1964 | public class ArgumentList_4 : ArgumentList { | ||
1965 | public ArgumentList_4(Parser yyq):base(yyq){}} | ||
1966 | public yyLSLSyntax | ||
1967 | ():base() { arr = new int[] { | ||
1968 | 101,4,6,52,0, | ||
1969 | 46,0,53,0,102, | ||
1970 | 20,103,4,28,76, | ||
1971 | 0,83,0,76,0, | ||
1972 | 80,0,114,0,111, | ||
1973 | 0,103,0,114,0, | ||
1974 | 97,0,109,0,82, | ||
1975 | 0,111,0,111,0, | ||
1976 | 116,0,1,95,1, | ||
1977 | 2,104,18,1,2609, | ||
1978 | 102,2,0,105,5, | ||
1979 | 312,1,0,106,18, | ||
1980 | 1,0,0,2,0, | ||
1981 | 1,1,107,18,1, | ||
1982 | 1,108,20,109,4, | ||
1983 | 18,76,0,73,0, | ||
1984 | 83,0,84,0,95, | ||
1985 | 0,84,0,89,0, | ||
1986 | 80,0,69,0,1, | ||
1987 | 57,1,1,2,0, | ||
1988 | 1,2,110,18,1, | ||
1989 | 2,111,20,112,4, | ||
1990 | 26,82,0,79,0, | ||
1991 | 84,0,65,0,84, | ||
1992 | 0,73,0,79,0, | ||
1993 | 78,0,95,0,84, | ||
1994 | 0,89,0,80,0, | ||
1995 | 69,0,1,56,1, | ||
1996 | 1,2,0,1,3, | ||
1997 | 113,18,1,3,114, | ||
1998 | 20,115,4,22,86, | ||
1999 | 0,69,0,67,0, | ||
2000 | 84,0,79,0,82, | ||
2001 | 0,95,0,84,0, | ||
2002 | 89,0,80,0,69, | ||
2003 | 0,1,55,1,1, | ||
2004 | 2,0,1,4,116, | ||
2005 | 18,1,4,117,20, | ||
2006 | 118,4,16,75,0, | ||
2007 | 69,0,89,0,95, | ||
2008 | 0,84,0,89,0, | ||
2009 | 80,0,69,0,1, | ||
2010 | 54,1,1,2,0, | ||
2011 | 1,5,119,18,1, | ||
2012 | 5,120,20,121,4, | ||
2013 | 22,83,0,84,0, | ||
2014 | 82,0,73,0,78, | ||
2015 | 0,71,0,95,0, | ||
2016 | 84,0,89,0,80, | ||
2017 | 0,69,0,1,53, | ||
2018 | 1,1,2,0,1, | ||
2019 | 6,122,18,1,6, | ||
2020 | 123,20,124,4,20, | ||
2021 | 70,0,76,0,79, | ||
2022 | 0,65,0,84,0, | ||
2023 | 95,0,84,0,89, | ||
2024 | 0,80,0,69,0, | ||
2025 | 1,52,1,1,2, | ||
2026 | 0,1,7,125,18, | ||
2027 | 1,7,126,20,127, | ||
2028 | 4,24,73,0,78, | ||
2029 | 0,84,0,69,0, | ||
2030 | 71,0,69,0,82, | ||
2031 | 0,95,0,84,0, | ||
2032 | 89,0,80,0,69, | ||
2033 | 0,1,51,1,1, | ||
2034 | 2,0,1,8,128, | ||
2035 | 18,1,8,129,20, | ||
2036 | 130,4,16,84,0, | ||
2037 | 121,0,112,0,101, | ||
2038 | 0,110,0,97,0, | ||
2039 | 109,0,101,0,1, | ||
2040 | 105,1,2,2,0, | ||
2041 | 1,9,131,18,1, | ||
2042 | 9,132,20,133,4, | ||
2043 | 10,73,0,68,0, | ||
2044 | 69,0,78,0,84, | ||
2045 | 0,1,91,1,1, | ||
2046 | 2,0,1,10,134, | ||
2047 | 18,1,10,135,20, | ||
2048 | 136,4,20,76,0, | ||
2049 | 69,0,70,0,84, | ||
2050 | 0,95,0,80,0, | ||
2051 | 65,0,82,0,69, | ||
2052 | 0,78,0,1,16, | ||
2053 | 1,1,2,0,1, | ||
2054 | 18,137,18,1,18, | ||
2055 | 129,2,0,1,19, | ||
2056 | 138,18,1,19,132, | ||
2057 | 2,0,1,20,139, | ||
2058 | 18,1,20,140,20, | ||
2059 | 141,4,46,65,0, | ||
2060 | 114,0,103,0,117, | ||
2061 | 0,109,0,101,0, | ||
2062 | 110,0,116,0,68, | ||
2063 | 0,101,0,99,0, | ||
2064 | 108,0,97,0,114, | ||
2065 | 0,97,0,116,0, | ||
2066 | 105,0,111,0,110, | ||
2067 | 0,76,0,105,0, | ||
2068 | 115,0,116,0,1, | ||
2069 | 103,1,2,2,0, | ||
2070 | 1,21,142,18,1, | ||
2071 | 21,143,20,144,4, | ||
2072 | 10,67,0,79,0, | ||
2073 | 77,0,77,0,65, | ||
2074 | 0,1,14,1,1, | ||
2075 | 2,0,1,1694,145, | ||
2076 | 18,1,1694,146,20, | ||
2077 | 147,4,32,70,0, | ||
2078 | 111,0,114,0,76, | ||
2079 | 0,111,0,111,0, | ||
2080 | 112,0,83,0,116, | ||
2081 | 0,97,0,116,0, | ||
2082 | 101,0,109,0,101, | ||
2083 | 0,110,0,116,0, | ||
2084 | 1,120,1,2,2, | ||
2085 | 0,1,1695,148,18, | ||
2086 | 1,1695,143,2,0, | ||
2087 | 1,30,149,18,1, | ||
2088 | 30,150,20,151,4, | ||
2089 | 22,68,0,101,0, | ||
2090 | 99,0,108,0,97, | ||
2091 | 0,114,0,97,0, | ||
2092 | 116,0,105,0,111, | ||
2093 | 0,110,0,1,104, | ||
2094 | 1,2,2,0,1, | ||
2095 | 31,152,18,1,31, | ||
2096 | 153,20,154,4,22, | ||
2097 | 82,0,73,0,71, | ||
2098 | 0,72,0,84,0, | ||
2099 | 95,0,80,0,65, | ||
2100 | 0,82,0,69,0, | ||
2101 | 78,0,1,17,1, | ||
2102 | 1,2,0,1,32, | ||
2103 | 155,18,1,32,156, | ||
2104 | 20,157,4,20,76, | ||
2105 | 0,69,0,70,0, | ||
2106 | 84,0,95,0,66, | ||
2107 | 0,82,0,65,0, | ||
2108 | 67,0,69,0,1, | ||
2109 | 12,1,1,2,0, | ||
2110 | 1,1114,158,18,1, | ||
2111 | 1114,132,2,0,1, | ||
2112 | 1152,159,18,1,1152, | ||
2113 | 160,20,161,4,32, | ||
2114 | 83,0,105,0,109, | ||
2115 | 0,112,0,108,0, | ||
2116 | 101,0,65,0,115, | ||
2117 | 0,115,0,105,0, | ||
2118 | 103,0,110,0,109, | ||
2119 | 0,101,0,110,0, | ||
2120 | 116,0,1,111,1, | ||
2121 | 2,2,0,1,1117, | ||
2122 | 162,18,1,1117,163, | ||
2123 | 20,164,4,28,80, | ||
2124 | 0,69,0,82,0, | ||
2125 | 67,0,69,0,78, | ||
2126 | 0,84,0,95,0, | ||
2127 | 69,0,81,0,85, | ||
2128 | 0,65,0,76,0, | ||
2129 | 83,0,1,10,1, | ||
2130 | 1,2,0,1,40, | ||
2131 | 165,18,1,40,132, | ||
2132 | 2,0,1,41,166, | ||
2133 | 18,1,41,135,2, | ||
2134 | 0,1,42,167,18, | ||
2135 | 1,42,168,20,169, | ||
2136 | 4,20,69,0,120, | ||
2137 | 0,112,0,114,0, | ||
2138 | 101,0,115,0,115, | ||
2139 | 0,105,0,111,0, | ||
2140 | 110,0,1,129,1, | ||
2141 | 2,2,0,1,43, | ||
2142 | 170,18,1,43,171, | ||
2143 | 20,172,4,22,82, | ||
2144 | 0,73,0,71,0, | ||
2145 | 72,0,84,0,95, | ||
2146 | 0,83,0,72,0, | ||
2147 | 73,0,70,0,84, | ||
2148 | 0,1,41,1,1, | ||
2149 | 2,0,1,44,173, | ||
2150 | 18,1,44,132,2, | ||
2151 | 0,1,1159,174,18, | ||
2152 | 1,1159,168,2,0, | ||
2153 | 1,46,175,18,1, | ||
2154 | 46,176,20,177,4, | ||
2155 | 12,80,0,69,0, | ||
2156 | 82,0,73,0,79, | ||
2157 | 0,68,0,1,24, | ||
2158 | 1,1,2,0,1, | ||
2159 | 47,178,18,1,47, | ||
2160 | 132,2,0,1,48, | ||
2161 | 179,18,1,48,180, | ||
2162 | 20,181,4,18,68, | ||
2163 | 0,69,0,67,0, | ||
2164 | 82,0,69,0,77, | ||
2165 | 0,69,0,78,0, | ||
2166 | 84,0,1,5,1, | ||
2167 | 1,2,0,1,49, | ||
2168 | 182,18,1,49,183, | ||
2169 | 20,184,4,18,73, | ||
2170 | 0,78,0,67,0, | ||
2171 | 82,0,69,0,77, | ||
2172 | 0,69,0,78,0, | ||
2173 | 84,0,1,4,1, | ||
2174 | 1,2,0,1,50, | ||
2175 | 185,18,1,50,180, | ||
2176 | 2,0,1,51,186, | ||
2177 | 18,1,51,183,2, | ||
2178 | 0,1,52,187,18, | ||
2179 | 1,52,135,2,0, | ||
2180 | 1,1730,188,18,1, | ||
2181 | 1730,160,2,0,1, | ||
2182 | 1731,189,18,1,1731, | ||
2183 | 190,20,191,4,18, | ||
2184 | 83,0,69,0,77, | ||
2185 | 0,73,0,67,0, | ||
2186 | 79,0,76,0,79, | ||
2187 | 0,78,0,1,11, | ||
2188 | 1,1,2,0,1, | ||
2189 | 61,192,18,1,61, | ||
2190 | 129,2,0,1,62, | ||
2191 | 193,18,1,62,153, | ||
2192 | 2,0,1,63,194, | ||
2193 | 18,1,63,132,2, | ||
2194 | 0,1,65,195,18, | ||
2195 | 1,65,176,2,0, | ||
2196 | 1,66,196,18,1, | ||
2197 | 66,132,2,0,1, | ||
2198 | 67,197,18,1,67, | ||
2199 | 180,2,0,1,68, | ||
2200 | 198,18,1,68,183, | ||
2201 | 2,0,1,69,199, | ||
2202 | 18,1,69,180,2, | ||
2203 | 0,1,70,200,18, | ||
2204 | 1,70,183,2,0, | ||
2205 | 1,71,201,18,1, | ||
2206 | 71,135,2,0,1, | ||
2207 | 73,202,18,1,73, | ||
2208 | 168,2,0,1,74, | ||
2209 | 203,18,1,74,153, | ||
2210 | 2,0,1,1189,204, | ||
2211 | 18,1,1189,205,20, | ||
2212 | 206,4,22,83,0, | ||
2213 | 84,0,65,0,82, | ||
2214 | 0,95,0,69,0, | ||
2215 | 81,0,85,0,65, | ||
2216 | 0,76,0,83,0, | ||
2217 | 1,8,1,1,2, | ||
2218 | 0,1,76,207,18, | ||
2219 | 1,76,208,20,209, | ||
2220 | 4,20,76,0,69, | ||
2221 | 0,70,0,84,0, | ||
2222 | 95,0,83,0,72, | ||
2223 | 0,73,0,70,0, | ||
2224 | 84,0,1,40,1, | ||
2225 | 1,2,0,1,1153, | ||
2226 | 210,18,1,1153,211, | ||
2227 | 20,212,4,24,83, | ||
2228 | 0,76,0,65,0, | ||
2229 | 83,0,72,0,95, | ||
2230 | 0,69,0,81,0, | ||
2231 | 85,0,65,0,76, | ||
2232 | 0,83,0,1,9, | ||
2233 | 1,1,2,0,1, | ||
2234 | 79,213,18,1,79, | ||
2235 | 214,20,215,4,10, | ||
2236 | 84,0,73,0,76, | ||
2237 | 0,68,0,69,0, | ||
2238 | 1,36,1,1,2, | ||
2239 | 0,1,1195,216,18, | ||
2240 | 1,1195,168,2,0, | ||
2241 | 1,82,217,18,1, | ||
2242 | 82,168,2,0,1, | ||
2243 | 1123,218,18,1,1123, | ||
2244 | 168,2,0,1,85, | ||
2245 | 219,18,1,85,220, | ||
2246 | 20,221,4,26,83, | ||
2247 | 0,84,0,82,0, | ||
2248 | 79,0,75,0,69, | ||
2249 | 0,95,0,83,0, | ||
2250 | 84,0,82,0,79, | ||
2251 | 0,75,0,69,0, | ||
2252 | 1,39,1,1,2, | ||
2253 | 0,1,2547,222,18, | ||
2254 | 1,2547,223,20,224, | ||
2255 | 4,34,67,0,111, | ||
2256 | 0,109,0,112,0, | ||
2257 | 111,0,117,0,110, | ||
2258 | 0,100,0,83,0, | ||
2259 | 116,0,97,0,116, | ||
2260 | 0,101,0,109,0, | ||
2261 | 101,0,110,0,116, | ||
2262 | 0,1,107,1,2, | ||
2263 | 2,0,1,89,225, | ||
2264 | 18,1,89,226,20, | ||
2265 | 227,4,10,77,0, | ||
2266 | 73,0,78,0,85, | ||
2267 | 0,83,0,1,19, | ||
2268 | 1,1,2,0,1, | ||
2269 | 93,228,18,1,93, | ||
2270 | 168,2,0,1,97, | ||
2271 | 229,18,1,97,230, | ||
2272 | 20,231,4,14,65, | ||
2273 | 0,77,0,80,0, | ||
2274 | 95,0,65,0,77, | ||
2275 | 0,80,0,1,38, | ||
2276 | 1,1,2,0,1, | ||
2277 | 102,232,18,1,102, | ||
2278 | 233,20,234,4,22, | ||
2279 | 69,0,88,0,67, | ||
2280 | 0,76,0,65,0, | ||
2281 | 77,0,65,0,84, | ||
2282 | 0,73,0,79,0, | ||
2283 | 78,0,1,37,1, | ||
2284 | 1,2,0,1,1775, | ||
2285 | 235,18,1,1775,153, | ||
2286 | 2,0,1,107,236, | ||
2287 | 18,1,107,168,2, | ||
2288 | 0,1,2196,237,18, | ||
2289 | 1,2196,160,2,0, | ||
2290 | 1,1224,238,18,1, | ||
2291 | 1224,160,2,0,1, | ||
2292 | 1225,239,18,1,1225, | ||
2293 | 240,20,241,4,24, | ||
2294 | 77,0,73,0,78, | ||
2295 | 0,85,0,83,0, | ||
2296 | 95,0,69,0,81, | ||
2297 | 0,85,0,65,0, | ||
2298 | 76,0,83,0,1, | ||
2299 | 7,1,1,2,0, | ||
2300 | 1,112,242,18,1, | ||
2301 | 112,243,20,244,4, | ||
2302 | 28,71,0,82,0, | ||
2303 | 69,0,65,0,84, | ||
2304 | 0,69,0,82,0, | ||
2305 | 95,0,69,0,81, | ||
2306 | 0,85,0,65,0, | ||
2307 | 76,0,83,0,1, | ||
2308 | 32,1,1,2,0, | ||
2309 | 1,1188,245,18,1, | ||
2310 | 1188,160,2,0,1, | ||
2311 | 1231,246,18,1,1231, | ||
2312 | 168,2,0,1,118, | ||
2313 | 247,18,1,118,168, | ||
2314 | 2,0,1,1737,248, | ||
2315 | 18,1,1737,168,2, | ||
2316 | 0,1,124,249,18, | ||
2317 | 1,124,250,20,251, | ||
2318 | 4,22,76,0,69, | ||
2319 | 0,83,0,83,0, | ||
2320 | 95,0,69,0,81, | ||
2321 | 0,85,0,65,0, | ||
2322 | 76,0,83,0,1, | ||
2323 | 31,1,1,2,0, | ||
2324 | 1,2280,252,18,1, | ||
2325 | 2280,160,2,0,1, | ||
2326 | 2354,253,18,1,2354, | ||
2327 | 254,20,255,4,18, | ||
2328 | 83,0,116,0,97, | ||
2329 | 0,116,0,101,0, | ||
2330 | 109,0,101,0,110, | ||
2331 | 0,116,0,1,109, | ||
2332 | 1,2,2,0,1, | ||
2333 | 2355,256,18,1,2355, | ||
2334 | 257,20,258,4,22, | ||
2335 | 82,0,73,0,71, | ||
2336 | 0,72,0,84,0, | ||
2337 | 95,0,66,0,82, | ||
2338 | 0,65,0,67,0, | ||
2339 | 69,0,1,13,1, | ||
2340 | 1,2,0,1,130, | ||
2341 | 259,18,1,130,168, | ||
2342 | 2,0,1,1802,260, | ||
2343 | 18,1,1802,254,2, | ||
2344 | 0,1,2360,261,18, | ||
2345 | 1,2360,257,2,0, | ||
2346 | 1,1804,262,18,1, | ||
2347 | 1804,263,20,264,4, | ||
2348 | 4,68,0,79,0, | ||
2349 | 1,44,1,1,2, | ||
2350 | 0,1,2362,265,18, | ||
2351 | 1,2362,223,2,0, | ||
2352 | 1,2363,266,18,1, | ||
2353 | 2363,150,2,0,1, | ||
2354 | 2364,267,18,1,2364, | ||
2355 | 268,20,269,4,10, | ||
2356 | 83,0,84,0,65, | ||
2357 | 0,84,0,69,0, | ||
2358 | 1,48,1,1,2, | ||
2359 | 0,1,137,270,18, | ||
2360 | 1,137,271,20,272, | ||
2361 | 4,36,69,0,88, | ||
2362 | 0,67,0,76,0, | ||
2363 | 65,0,77,0,65, | ||
2364 | 0,84,0,73,0, | ||
2365 | 79,0,78,0,95, | ||
2366 | 0,69,0,81,0, | ||
2367 | 85,0,65,0,76, | ||
2368 | 0,83,0,1,30, | ||
2369 | 1,1,2,0,1, | ||
2370 | 2366,273,18,1,2366, | ||
2371 | 156,2,0,1,2367, | ||
2372 | 274,18,1,2367,275, | ||
2373 | 20,276,4,34,84, | ||
2374 | 0,79,0,85,0, | ||
2375 | 67,0,72,0,95, | ||
2376 | 0,83,0,84,0, | ||
2377 | 65,0,82,0,84, | ||
2378 | 0,95,0,69,0, | ||
2379 | 86,0,69,0,78, | ||
2380 | 0,84,0,1,89, | ||
2381 | 1,1,2,0,1, | ||
2382 | 1701,277,18,1,1701, | ||
2383 | 168,2,0,1,1756, | ||
2384 | 278,18,1,1756,190, | ||
2385 | 2,0,1,2370,279, | ||
2386 | 18,1,2370,280,20, | ||
2387 | 281,4,22,84,0, | ||
2388 | 73,0,77,0,69, | ||
2389 | 0,82,0,95,0, | ||
2390 | 69,0,86,0,69, | ||
2391 | 0,78,0,84,0, | ||
2392 | 1,87,1,1,2, | ||
2393 | 0,1,143,282,18, | ||
2394 | 1,143,168,2,0, | ||
2395 | 1,2372,283,18,1, | ||
2396 | 2372,284,20,285,4, | ||
2397 | 34,83,0,84,0, | ||
2398 | 65,0,84,0,69, | ||
2399 | 0,95,0,69,0, | ||
2400 | 78,0,84,0,82, | ||
2401 | 0,89,0,95,0, | ||
2402 | 69,0,86,0,69, | ||
2403 | 0,78,0,84,0, | ||
2404 | 1,85,1,1,2, | ||
2405 | 0,1,2373,286,18, | ||
2406 | 1,2373,287,20,288, | ||
2407 | 4,24,83,0,69, | ||
2408 | 0,78,0,83,0, | ||
2409 | 79,0,82,0,95, | ||
2410 | 0,69,0,86,0, | ||
2411 | 69,0,78,0,84, | ||
2412 | 0,1,84,1,1, | ||
2413 | 2,0,1,1260,289, | ||
2414 | 18,1,1260,160,2, | ||
2415 | 0,1,1261,290,18, | ||
2416 | 1,1261,291,20,292, | ||
2417 | 4,22,80,0,76, | ||
2418 | 0,85,0,83,0, | ||
2419 | 95,0,69,0,81, | ||
2420 | 0,85,0,65,0, | ||
2421 | 76,0,83,0,1, | ||
2422 | 6,1,1,2,0, | ||
2423 | 1,2376,293,18,1, | ||
2424 | 2376,294,20,295,4, | ||
2425 | 24,79,0,78,0, | ||
2426 | 95,0,82,0,69, | ||
2427 | 0,90,0,95,0, | ||
2428 | 69,0,86,0,69, | ||
2429 | 0,78,0,84,0, | ||
2430 | 1,81,1,1,2, | ||
2431 | 0,1,2377,296,18, | ||
2432 | 1,2377,297,20,298, | ||
2433 | 4,32,79,0,66, | ||
2434 | 0,74,0,69,0, | ||
2435 | 67,0,84,0,95, | ||
2436 | 0,82,0,69,0, | ||
2437 | 90,0,95,0,69, | ||
2438 | 0,86,0,69,0, | ||
2439 | 78,0,84,0,1, | ||
2440 | 80,1,1,2,0, | ||
2441 | 1,2378,299,18,1, | ||
2442 | 2378,300,20,301,4, | ||
2443 | 38,78,0,79,0, | ||
2444 | 84,0,95,0,65, | ||
2445 | 0,84,0,95,0, | ||
2446 | 84,0,65,0,82, | ||
2447 | 0,71,0,69,0, | ||
2448 | 84,0,95,0,69, | ||
2449 | 0,86,0,69,0, | ||
2450 | 78,0,84,0,1, | ||
2451 | 79,1,1,2,0, | ||
2452 | 1,151,302,18,1, | ||
2453 | 151,303,20,304,4, | ||
2454 | 26,69,0,81,0, | ||
2455 | 85,0,65,0,76, | ||
2456 | 0,83,0,95,0, | ||
2457 | 69,0,81,0,85, | ||
2458 | 0,65,0,76,0, | ||
2459 | 83,0,1,29,1, | ||
2460 | 1,2,0,1,2380, | ||
2461 | 305,18,1,2380,306, | ||
2462 | 20,307,4,30,78, | ||
2463 | 0,79,0,95,0, | ||
2464 | 83,0,69,0,78, | ||
2465 | 0,83,0,79,0, | ||
2466 | 82,0,95,0,69, | ||
2467 | 0,86,0,69,0, | ||
2468 | 78,0,84,0,1, | ||
2469 | 77,1,1,2,0, | ||
2470 | 1,1267,308,18,1, | ||
2471 | 1267,168,2,0,1, | ||
2472 | 2382,309,18,1,2382, | ||
2473 | 310,20,311,4,32, | ||
2474 | 77,0,79,0,86, | ||
2475 | 0,73,0,78,0, | ||
2476 | 71,0,95,0,69, | ||
2477 | 0,78,0,68,0, | ||
2478 | 95,0,69,0,86, | ||
2479 | 0,69,0,78,0, | ||
2480 | 84,0,1,75,1, | ||
2481 | 1,2,0,1,2309, | ||
2482 | 312,18,1,2309,313, | ||
2483 | 20,314,4,26,83, | ||
2484 | 0,116,0,97,0, | ||
2485 | 116,0,101,0,109, | ||
2486 | 0,101,0,110,0, | ||
2487 | 116,0,76,0,105, | ||
2488 | 0,115,0,116,0, | ||
2489 | 1,108,1,2,2, | ||
2490 | 0,1,2384,315,18, | ||
2491 | 1,2384,316,20,317, | ||
2492 | 4,24,76,0,73, | ||
2493 | 0,83,0,84,0, | ||
2494 | 69,0,78,0,95, | ||
2495 | 0,69,0,86,0, | ||
2496 | 69,0,78,0,84, | ||
2497 | 0,1,73,1,1, | ||
2498 | 2,0,1,157,318, | ||
2499 | 18,1,157,168,2, | ||
2500 | 0,1,2386,319,18, | ||
2501 | 1,2386,320,20,321, | ||
2502 | 4,52,76,0,65, | ||
2503 | 0,78,0,68,0, | ||
2504 | 95,0,67,0,79, | ||
2505 | 0,76,0,76,0, | ||
2506 | 73,0,83,0,73, | ||
2507 | 0,79,0,78,0, | ||
2508 | 95,0,83,0,84, | ||
2509 | 0,65,0,82,0, | ||
2510 | 84,0,95,0,69, | ||
2511 | 0,86,0,69,0, | ||
2512 | 78,0,84,0,1, | ||
2513 | 71,1,1,2,0, | ||
2514 | 1,1773,322,18,1, | ||
2515 | 1773,146,2,0,1, | ||
2516 | 2388,323,18,1,2388, | ||
2517 | 324,20,325,4,40, | ||
2518 | 76,0,65,0,78, | ||
2519 | 0,68,0,95,0, | ||
2520 | 67,0,79,0,76, | ||
2521 | 0,76,0,73,0, | ||
2522 | 83,0,73,0,79, | ||
2523 | 0,78,0,95,0, | ||
2524 | 69,0,86,0,69, | ||
2525 | 0,78,0,84,0, | ||
2526 | 1,69,1,1,2, | ||
2527 | 0,1,1832,326,18, | ||
2528 | 1,1832,254,2,0, | ||
2529 | 1,1833,327,18,1, | ||
2530 | 1833,328,20,329,4, | ||
2531 | 10,87,0,72,0, | ||
2532 | 73,0,76,0,69, | ||
2533 | 0,1,45,1,1, | ||
2534 | 2,0,1,1834,330, | ||
2535 | 18,1,1834,135,2, | ||
2536 | 0,1,2392,331,18, | ||
2537 | 1,2392,332,20,333, | ||
2538 | 4,26,67,0,79, | ||
2539 | 0,78,0,84,0, | ||
2540 | 82,0,79,0,76, | ||
2541 | 0,95,0,69,0, | ||
2542 | 86,0,69,0,78, | ||
2543 | 0,84,0,1,65, | ||
2544 | 1,1,2,0,1, | ||
2545 | 2393,334,18,1,2393, | ||
2546 | 335,20,336,4,42, | ||
2547 | 67,0,79,0,76, | ||
2548 | 0,76,0,73,0, | ||
2549 | 83,0,73,0,79, | ||
2550 | 0,78,0,95,0, | ||
2551 | 83,0,84,0,65, | ||
2552 | 0,82,0,84,0, | ||
2553 | 95,0,69,0,86, | ||
2554 | 0,69,0,78,0, | ||
2555 | 84,0,1,64,1, | ||
2556 | 1,2,0,1,166, | ||
2557 | 337,18,1,166,338, | ||
2558 | 20,339,4,20,76, | ||
2559 | 0,69,0,70,0, | ||
2560 | 84,0,95,0,65, | ||
2561 | 0,78,0,71,0, | ||
2562 | 76,0,69,0,1, | ||
2563 | 25,1,1,2,0, | ||
2564 | 1,2395,340,18,1, | ||
2565 | 2395,341,20,342,4, | ||
2566 | 30,67,0,79,0, | ||
2567 | 76,0,76,0,73, | ||
2568 | 0,83,0,73,0, | ||
2569 | 79,0,78,0,95, | ||
2570 | 0,69,0,86,0, | ||
2571 | 69,0,78,0,84, | ||
2572 | 0,1,62,1,1, | ||
2573 | 2,0,1,2396,343, | ||
2574 | 18,1,2396,344,20, | ||
2575 | 345,4,26,67,0, | ||
2576 | 72,0,65,0,78, | ||
2577 | 0,71,0,69,0, | ||
2578 | 68,0,95,0,69, | ||
2579 | 0,86,0,69,0, | ||
2580 | 78,0,84,0,1, | ||
2581 | 61,1,1,2,0, | ||
2582 | 1,1840,346,18,1, | ||
2583 | 1840,168,2,0,1, | ||
2584 | 2398,347,18,1,2398, | ||
2585 | 348,20,349,4,30, | ||
2586 | 65,0,84,0,95, | ||
2587 | 0,84,0,65,0, | ||
2588 | 82,0,71,0,69, | ||
2589 | 0,84,0,95,0, | ||
2590 | 69,0,86,0,69, | ||
2591 | 0,78,0,84,0, | ||
2592 | 1,59,1,1,2, | ||
2593 | 0,1,2399,350,18, | ||
2594 | 1,2399,351,20,352, | ||
2595 | 4,38,65,0,84, | ||
2596 | 0,95,0,82,0, | ||
2597 | 79,0,84,0,95, | ||
2598 | 0,84,0,65,0, | ||
2599 | 82,0,71,0,69, | ||
2600 | 0,84,0,95,0, | ||
2601 | 69,0,86,0,69, | ||
2602 | 0,78,0,84,0, | ||
2603 | 1,58,1,1,2, | ||
2604 | 0,1,172,353,18, | ||
2605 | 1,172,168,2,0, | ||
2606 | 1,2401,354,18,1, | ||
2607 | 2401,135,2,0,1, | ||
2608 | 2605,355,18,1,2605, | ||
2609 | 356,20,357,4,48, | ||
2610 | 71,0,108,0,111, | ||
2611 | 0,98,0,97,0, | ||
2612 | 108,0,70,0,117, | ||
2613 | 0,110,0,99,0, | ||
2614 | 116,0,105,0,111, | ||
2615 | 0,110,0,68,0, | ||
2616 | 101,0,102,0,105, | ||
2617 | 0,110,0,105,0, | ||
2618 | 116,0,105,0,111, | ||
2619 | 0,110,0,1,98, | ||
2620 | 1,2,2,0,1, | ||
2621 | 1296,358,18,1,1296, | ||
2622 | 160,2,0,1,1297, | ||
2623 | 359,18,1,1297,360, | ||
2624 | 20,361,4,12,69, | ||
2625 | 0,81,0,85,0, | ||
2626 | 65,0,76,0,83, | ||
2627 | 0,1,15,1,1, | ||
2628 | 2,0,1,2412,362, | ||
2629 | 18,1,2412,153,2, | ||
2630 | 0,1,2414,363,18, | ||
2631 | 1,2414,223,2,0, | ||
2632 | 1,1859,364,18,1, | ||
2633 | 1859,153,2,0,1, | ||
2634 | 1860,365,18,1,1860, | ||
2635 | 190,2,0,1,188, | ||
2636 | 366,18,1,188,168, | ||
2637 | 2,0,1,182,367, | ||
2638 | 18,1,182,368,20, | ||
2639 | 369,4,22,82,0, | ||
2640 | 73,0,71,0,72, | ||
2641 | 0,84,0,95,0, | ||
2642 | 65,0,78,0,71, | ||
2643 | 0,76,0,69,0, | ||
2644 | 1,26,1,1,2, | ||
2645 | 0,1,199,370,18, | ||
2646 | 1,199,371,20,372, | ||
2647 | 4,10,67,0,65, | ||
2648 | 0,82,0,69,0, | ||
2649 | 84,0,1,35,1, | ||
2650 | 1,2,0,1,1871, | ||
2651 | 373,18,1,1871,160, | ||
2652 | 2,0,1,1872,374, | ||
2653 | 18,1,1872,153,2, | ||
2654 | 0,1,1873,375,18, | ||
2655 | 1,1873,190,2,0, | ||
2656 | 1,1875,376,18,1, | ||
2657 | 1875,328,2,0,1, | ||
2658 | 205,377,18,1,205, | ||
2659 | 168,2,0,1,1882, | ||
2660 | 378,18,1,1882,168, | ||
2661 | 2,0,1,2365,379, | ||
2662 | 18,1,2365,132,2, | ||
2663 | 0,1,2368,380,18, | ||
2664 | 1,2368,381,20,382, | ||
2665 | 4,30,84,0,79, | ||
2666 | 0,85,0,67,0, | ||
2667 | 72,0,95,0,69, | ||
2668 | 0,78,0,68,0, | ||
2669 | 95,0,69,0,86, | ||
2670 | 0,69,0,78,0, | ||
2671 | 84,0,1,90,1, | ||
2672 | 1,2,0,1,217, | ||
2673 | 383,18,1,217,384, | ||
2674 | 20,385,4,12,83, | ||
2675 | 0,84,0,82,0, | ||
2676 | 79,0,75,0,69, | ||
2677 | 0,1,34,1,1, | ||
2678 | 2,0,1,1332,386, | ||
2679 | 18,1,1332,160,2, | ||
2680 | 0,1,2371,387,18, | ||
2681 | 1,2371,388,20,389, | ||
2682 | 4,32,83,0,84, | ||
2683 | 0,65,0,84,0, | ||
2684 | 69,0,95,0,69, | ||
2685 | 0,88,0,73,0, | ||
2686 | 84,0,95,0,69, | ||
2687 | 0,86,0,69,0, | ||
2688 | 78,0,84,0,1, | ||
2689 | 86,1,1,2,0, | ||
2690 | 1,1335,390,18,1, | ||
2691 | 1335,163,2,0,1, | ||
2692 | 2374,391,18,1,2374, | ||
2693 | 392,20,393,4,52, | ||
2694 | 82,0,85,0,78, | ||
2695 | 0,95,0,84,0, | ||
2696 | 73,0,77,0,69, | ||
2697 | 0,95,0,80,0, | ||
2698 | 69,0,82,0,77, | ||
2699 | 0,73,0,83,0, | ||
2700 | 83,0,73,0,79, | ||
2701 | 0,78,0,83,0, | ||
2702 | 95,0,69,0,86, | ||
2703 | 0,69,0,78,0, | ||
2704 | 84,0,1,83,1, | ||
2705 | 1,2,0,1,223, | ||
2706 | 394,18,1,223,168, | ||
2707 | 2,0,1,2452,395, | ||
2708 | 18,1,2452,257,2, | ||
2709 | 0,1,2453,396,18, | ||
2710 | 1,2453,397,20,398, | ||
2711 | 4,20,83,0,116, | ||
2712 | 0,97,0,116,0, | ||
2713 | 101,0,69,0,118, | ||
2714 | 0,101,0,110,0, | ||
2715 | 116,0,1,102,1, | ||
2716 | 2,2,0,1,2454, | ||
2717 | 399,18,1,2454,400, | ||
2718 | 20,401,4,26,68, | ||
2719 | 0,69,0,70,0, | ||
2720 | 65,0,85,0,76, | ||
2721 | 0,84,0,95,0, | ||
2722 | 83,0,84,0,65, | ||
2723 | 0,84,0,69,0, | ||
2724 | 1,47,1,1,2, | ||
2725 | 0,1,1341,402,18, | ||
2726 | 1,1341,168,2,0, | ||
2727 | 1,2381,403,18,1, | ||
2728 | 2381,404,20,405,4, | ||
2729 | 36,77,0,79,0, | ||
2730 | 86,0,73,0,78, | ||
2731 | 0,71,0,95,0, | ||
2732 | 83,0,84,0,65, | ||
2733 | 0,82,0,84,0, | ||
2734 | 95,0,69,0,86, | ||
2735 | 0,69,0,78,0, | ||
2736 | 84,0,1,76,1, | ||
2737 | 1,2,0,1,1901, | ||
2738 | 406,18,1,1901,153, | ||
2739 | 2,0,1,1303,407, | ||
2740 | 18,1,1303,168,2, | ||
2741 | 0,1,2385,408,18, | ||
2742 | 1,2385,409,20,410, | ||
2743 | 4,36,76,0,73, | ||
2744 | 0,78,0,75,0, | ||
2745 | 95,0,77,0,69, | ||
2746 | 0,83,0,83,0, | ||
2747 | 65,0,71,0,69, | ||
2748 | 0,95,0,69,0, | ||
2749 | 86,0,69,0,78, | ||
2750 | 0,84,0,1,72, | ||
2751 | 1,1,2,0,1, | ||
2752 | 2387,411,18,1,2387, | ||
2753 | 412,20,413,4,48, | ||
2754 | 76,0,65,0,78, | ||
2755 | 0,68,0,95,0, | ||
2756 | 67,0,79,0,76, | ||
2757 | 0,76,0,73,0, | ||
2758 | 83,0,73,0,79, | ||
2759 | 0,78,0,95,0, | ||
2760 | 69,0,78,0,68, | ||
2761 | 0,95,0,69,0, | ||
2762 | 86,0,69,0,78, | ||
2763 | 0,84,0,1,70, | ||
2764 | 1,1,2,0,1, | ||
2765 | 236,414,18,1,236, | ||
2766 | 415,20,416,4,6, | ||
2767 | 65,0,77,0,80, | ||
2768 | 0,1,33,1,1, | ||
2769 | 2,0,1,2389,417, | ||
2770 | 18,1,2389,418,20, | ||
2771 | 419,4,38,72,0, | ||
2772 | 84,0,84,0,80, | ||
2773 | 0,95,0,82,0, | ||
2774 | 69,0,83,0,80, | ||
2775 | 0,79,0,78,0, | ||
2776 | 83,0,69,0,95, | ||
2777 | 0,69,0,86,0, | ||
2778 | 69,0,78,0,84, | ||
2779 | 0,1,68,1,1, | ||
2780 | 2,0,1,2390,420, | ||
2781 | 18,1,2390,421,20, | ||
2782 | 422,4,22,69,0, | ||
2783 | 77,0,65,0,73, | ||
2784 | 0,76,0,95,0, | ||
2785 | 69,0,86,0,69, | ||
2786 | 0,78,0,84,0, | ||
2787 | 1,67,1,1,2, | ||
2788 | 0,1,2391,423,18, | ||
2789 | 1,2391,424,20,425, | ||
2790 | 4,32,68,0,65, | ||
2791 | 0,84,0,65,0, | ||
2792 | 83,0,69,0,82, | ||
2793 | 0,86,0,69,0, | ||
2794 | 82,0,95,0,69, | ||
2795 | 0,86,0,69,0, | ||
2796 | 78,0,84,0,1, | ||
2797 | 66,1,1,2,0, | ||
2798 | 1,242,426,18,1, | ||
2799 | 242,168,2,0,1, | ||
2800 | 2397,427,18,1,2397, | ||
2801 | 428,20,429,4,24, | ||
2802 | 65,0,84,0,84, | ||
2803 | 0,65,0,67,0, | ||
2804 | 72,0,95,0,69, | ||
2805 | 0,86,0,69,0, | ||
2806 | 78,0,84,0,1, | ||
2807 | 60,1,1,2,0, | ||
2808 | 1,2400,430,18,1, | ||
2809 | 2400,431,20,432,4, | ||
2810 | 10,69,0,118,0, | ||
2811 | 101,0,110,0,116, | ||
2812 | 0,1,106,1,2, | ||
2813 | 2,0,1,256,433, | ||
2814 | 18,1,256,434,20, | ||
2815 | 435,4,14,80,0, | ||
2816 | 69,0,82,0,67, | ||
2817 | 0,69,0,78,0, | ||
2818 | 84,0,1,22,1, | ||
2819 | 1,2,0,1,1371, | ||
2820 | 436,18,1,1371,211, | ||
2821 | 2,0,1,2410,437, | ||
2822 | 18,1,2410,140,2, | ||
2823 | 0,1,1931,438,18, | ||
2824 | 1,1931,254,2,0, | ||
2825 | 1,1932,439,18,1, | ||
2826 | 1932,440,20,441,4, | ||
2827 | 4,73,0,70,0, | ||
2828 | 1,42,1,1,2, | ||
2829 | 0,1,262,442,18, | ||
2830 | 1,262,168,2,0, | ||
2831 | 1,1377,443,18,1, | ||
2832 | 1377,168,2,0,1, | ||
2833 | 1876,444,18,1,1876, | ||
2834 | 135,2,0,1,1939, | ||
2835 | 445,18,1,1939,168, | ||
2836 | 2,0,1,827,446, | ||
2837 | 18,1,827,168,2, | ||
2838 | 0,1,277,447,18, | ||
2839 | 1,277,448,20,449, | ||
2840 | 4,10,83,0,76, | ||
2841 | 0,65,0,83,0, | ||
2842 | 72,0,1,21,1, | ||
2843 | 1,2,0,1,2358, | ||
2844 | 450,18,1,2358,254, | ||
2845 | 2,0,1,283,451, | ||
2846 | 18,1,283,168,2, | ||
2847 | 0,1,1958,452,18, | ||
2848 | 1,1958,153,2,0, | ||
2849 | 1,1406,453,18,1, | ||
2850 | 1406,160,2,0,1, | ||
2851 | 1407,454,18,1,1407, | ||
2852 | 205,2,0,1,2526, | ||
2853 | 455,18,1,2526,257, | ||
2854 | 2,0,1,299,456, | ||
2855 | 18,1,299,457,20, | ||
2856 | 458,4,8,83,0, | ||
2857 | 84,0,65,0,82, | ||
2858 | 0,1,20,1,1, | ||
2859 | 2,0,1,1370,459, | ||
2860 | 18,1,1370,160,2, | ||
2861 | 0,1,2451,460,18, | ||
2862 | 1,2451,397,2,0, | ||
2863 | 1,2379,461,18,1, | ||
2864 | 2379,462,20,463,4, | ||
2865 | 46,78,0,79,0, | ||
2866 | 84,0,95,0,65, | ||
2867 | 0,84,0,95,0, | ||
2868 | 82,0,79,0,84, | ||
2869 | 0,95,0,84,0, | ||
2870 | 65,0,82,0,71, | ||
2871 | 0,69,0,84,0, | ||
2872 | 95,0,69,0,86, | ||
2873 | 0,69,0,78,0, | ||
2874 | 84,0,1,78,1, | ||
2875 | 1,2,0,1,2532, | ||
2876 | 464,18,1,2532,465, | ||
2877 | 20,466,4,10,83, | ||
2878 | 0,116,0,97,0, | ||
2879 | 116,0,101,0,1, | ||
2880 | 100,1,2,2,0, | ||
2881 | 1,305,467,18,1, | ||
2882 | 305,168,2,0,1, | ||
2883 | 2534,468,18,1,2534, | ||
2884 | 135,2,0,1,2383, | ||
2885 | 469,18,1,2383,470, | ||
2886 | 20,471,4,22,77, | ||
2887 | 0,79,0,78,0, | ||
2888 | 69,0,89,0,95, | ||
2889 | 0,69,0,86,0, | ||
2890 | 69,0,78,0,84, | ||
2891 | 0,1,74,1,1, | ||
2892 | 2,0,1,2528,472, | ||
2893 | 18,1,2528,473,20, | ||
2894 | 474,4,12,83,0, | ||
2895 | 116,0,97,0,116, | ||
2896 | 0,101,0,115,0, | ||
2897 | 1,99,1,2,2, | ||
2898 | 0,1,2543,475,18, | ||
2899 | 1,2543,140,2,0, | ||
2900 | 1,2545,476,18,1, | ||
2901 | 2545,153,2,0,1, | ||
2902 | 1989,477,18,1,1989, | ||
2903 | 254,2,0,1,1990, | ||
2904 | 478,18,1,1990,479, | ||
2905 | 20,480,4,8,69, | ||
2906 | 0,76,0,83,0, | ||
2907 | 69,0,1,43,1, | ||
2908 | 1,2,0,1,2607, | ||
2909 | 481,18,1,2607,356, | ||
2910 | 2,0,1,2549,482, | ||
2911 | 18,1,2549,150,2, | ||
2912 | 0,1,322,483,18, | ||
2913 | 1,322,226,2,0, | ||
2914 | 1,1933,484,18,1, | ||
2915 | 1933,135,2,0,1, | ||
2916 | 883,485,18,1,883, | ||
2917 | 168,2,0,1,328, | ||
2918 | 486,18,1,328,168, | ||
2919 | 2,0,1,1443,487, | ||
2920 | 18,1,1443,240,2, | ||
2921 | 0,1,1449,488,18, | ||
2922 | 1,1449,168,2,0, | ||
2923 | 1,2490,489,18,1, | ||
2924 | 2490,490,20,491,4, | ||
2925 | 18,83,0,116,0, | ||
2926 | 97,0,116,0,101, | ||
2927 | 0,66,0,111,0, | ||
2928 | 100,0,121,0,1, | ||
2929 | 101,1,2,2,0, | ||
2930 | 1,2416,492,18,1, | ||
2931 | 2416,490,2,0,1, | ||
2932 | 1413,493,18,1,1413, | ||
2933 | 168,2,0,1,346, | ||
2934 | 494,18,1,346,495, | ||
2935 | 20,496,4,8,80, | ||
2936 | 0,76,0,85,0, | ||
2937 | 83,0,1,18,1, | ||
2938 | 1,2,0,1,2575, | ||
2939 | 497,18,1,2575,190, | ||
2940 | 2,0,1,2021,498, | ||
2941 | 18,1,2021,254,2, | ||
2942 | 0,1,2022,499,18, | ||
2943 | 1,2022,268,2,0, | ||
2944 | 1,352,500,18,1, | ||
2945 | 352,168,2,0,1, | ||
2946 | 2024,501,18,1,2024, | ||
2947 | 132,2,0,1,2025, | ||
2948 | 502,18,1,2025,503, | ||
2949 | 20,504,4,8,74, | ||
2950 | 0,85,0,77,0, | ||
2951 | 80,0,1,49,1, | ||
2952 | 1,2,0,1,2026, | ||
2953 | 505,18,1,2026,132, | ||
2954 | 2,0,1,2027,506, | ||
2955 | 18,1,2027,507,20, | ||
2956 | 508,4,4,65,0, | ||
2957 | 84,0,1,23,1, | ||
2958 | 1,2,0,1,2028, | ||
2959 | 509,18,1,2028,132, | ||
2960 | 2,0,1,2029,510, | ||
2961 | 18,1,2029,223,2, | ||
2962 | 0,1,2030,511,18, | ||
2963 | 1,2030,512,20,513, | ||
2964 | 4,14,70,0,111, | ||
2965 | 0,114,0,76,0, | ||
2966 | 111,0,111,0,112, | ||
2967 | 0,1,119,1,2, | ||
2968 | 2,0,1,2031,514, | ||
2969 | 18,1,2031,515,20, | ||
2970 | 516,4,32,68,0, | ||
2971 | 111,0,87,0,104, | ||
2972 | 0,105,0,108,0, | ||
2973 | 101,0,83,0,116, | ||
2974 | 0,97,0,116,0, | ||
2975 | 101,0,109,0,101, | ||
2976 | 0,110,0,116,0, | ||
2977 | 1,118,1,2,2, | ||
2978 | 0,1,2032,517,18, | ||
2979 | 1,2032,518,20,519, | ||
2980 | 4,28,87,0,104, | ||
2981 | 0,105,0,108,0, | ||
2982 | 101,0,83,0,116, | ||
2983 | 0,97,0,116,0, | ||
2984 | 101,0,109,0,101, | ||
2985 | 0,110,0,116,0, | ||
2986 | 1,117,1,2,2, | ||
2987 | 0,1,2033,520,18, | ||
2988 | 1,2033,521,20,522, | ||
2989 | 4,22,73,0,102, | ||
2990 | 0,83,0,116,0, | ||
2991 | 97,0,116,0,101, | ||
2992 | 0,109,0,101,0, | ||
2993 | 110,0,116,0,1, | ||
2994 | 116,1,2,2,0, | ||
2995 | 1,2034,523,18,1, | ||
2996 | 2034,524,20,525,4, | ||
2997 | 22,83,0,116,0, | ||
2998 | 97,0,116,0,101, | ||
2999 | 0,67,0,104,0, | ||
3000 | 97,0,110,0,103, | ||
3001 | 0,101,0,1,115, | ||
3002 | 1,2,2,0,1, | ||
3003 | 1478,526,18,1,1478, | ||
3004 | 160,2,0,1,1479, | ||
3005 | 527,18,1,1479,291, | ||
3006 | 2,0,1,2037,528, | ||
3007 | 18,1,2037,190,2, | ||
3008 | 0,1,2038,529,18, | ||
3009 | 1,2038,530,20,531, | ||
3010 | 4,18,74,0,117, | ||
3011 | 0,109,0,112,0, | ||
3012 | 76,0,97,0,98, | ||
3013 | 0,101,0,108,0, | ||
3014 | 1,113,1,2,2, | ||
3015 | 0,1,2039,532,18, | ||
3016 | 1,2039,190,2,0, | ||
3017 | 1,2040,533,18,1, | ||
3018 | 2040,534,20,535,4, | ||
3019 | 30,82,0,101,0, | ||
3020 | 116,0,117,0,114, | ||
3021 | 0,110,0,83,0, | ||
3022 | 116,0,97,0,116, | ||
3023 | 0,101,0,109,0, | ||
3024 | 101,0,110,0,116, | ||
3025 | 0,1,112,1,2, | ||
3026 | 2,0,1,2041,536, | ||
3027 | 18,1,2041,190,2, | ||
3028 | 0,1,1485,537,18, | ||
3029 | 1,1485,168,2,0, | ||
3030 | 1,372,538,18,1, | ||
3031 | 372,180,2,0,1, | ||
3032 | 373,539,18,1,373, | ||
3033 | 132,2,0,1,374, | ||
3034 | 540,18,1,374,176, | ||
3035 | 2,0,1,375,541, | ||
3036 | 18,1,375,132,2, | ||
3037 | 0,1,376,542,18, | ||
3038 | 1,376,183,2,0, | ||
3039 | 1,377,543,18,1, | ||
3040 | 377,132,2,0,1, | ||
3041 | 378,544,18,1,378, | ||
3042 | 176,2,0,1,379, | ||
3043 | 545,18,1,379,132, | ||
3044 | 2,0,1,380,546, | ||
3045 | 18,1,380,547,20, | ||
3046 | 548,4,16,67,0, | ||
3047 | 111,0,110,0,115, | ||
3048 | 0,116,0,97,0, | ||
3049 | 110,0,116,0,1, | ||
3050 | 125,1,2,2,0, | ||
3051 | 1,381,549,18,1, | ||
3052 | 381,338,2,0,1, | ||
3053 | 2610,550,18,1,2610, | ||
3054 | 551,23,552,4,6, | ||
3055 | 69,0,79,0,70, | ||
3056 | 0,1,2,1,6, | ||
3057 | 2,0,1,2455,553, | ||
3058 | 18,1,2455,156,2, | ||
3059 | 0,1,371,554,18, | ||
3060 | 1,371,555,20,556, | ||
3061 | 4,24,70,0,117, | ||
3062 | 0,110,0,99,0, | ||
3063 | 116,0,105,0,111, | ||
3064 | 0,110,0,67,0, | ||
3065 | 97,0,108,0,108, | ||
3066 | 0,1,121,1,2, | ||
3067 | 2,0,1,942,557, | ||
3068 | 18,1,942,168,2, | ||
3069 | 0,1,2533,558,18, | ||
3070 | 1,2533,132,2,0, | ||
3071 | 1,387,559,18,1, | ||
3072 | 387,168,2,0,1, | ||
3073 | 2394,560,18,1,2394, | ||
3074 | 561,20,562,4,38, | ||
3075 | 67,0,79,0,76, | ||
3076 | 0,76,0,73,0, | ||
3077 | 83,0,73,0,79, | ||
3078 | 0,78,0,95,0, | ||
3079 | 69,0,78,0,68, | ||
3080 | 0,95,0,69,0, | ||
3081 | 86,0,69,0,78, | ||
3082 | 0,84,0,1,63, | ||
3083 | 1,1,2,0,1, | ||
3084 | 1514,563,18,1,1514, | ||
3085 | 160,2,0,1,1515, | ||
3086 | 564,18,1,1515,360, | ||
3087 | 2,0,1,2073,565, | ||
3088 | 18,1,2073,160,2, | ||
3089 | 0,1,2074,566,18, | ||
3090 | 1,2074,153,2,0, | ||
3091 | 1,406,567,18,1, | ||
3092 | 406,143,2,0,1, | ||
3093 | 1521,568,18,1,1521, | ||
3094 | 168,2,0,1,2556, | ||
3095 | 569,18,1,2556,168, | ||
3096 | 2,0,1,412,570, | ||
3097 | 18,1,412,168,2, | ||
3098 | 0,1,2023,571,18, | ||
3099 | 1,2023,400,2,0, | ||
3100 | 1,1442,572,18,1, | ||
3101 | 1442,160,2,0,1, | ||
3102 | 2035,573,18,1,2035, | ||
3103 | 190,2,0,1,2036, | ||
3104 | 574,18,1,2036,575, | ||
3105 | 20,576,4,26,74, | ||
3106 | 0,117,0,109,0, | ||
3107 | 112,0,83,0,116, | ||
3108 | 0,97,0,116,0, | ||
3109 | 101,0,109,0,101, | ||
3110 | 0,110,0,116,0, | ||
3111 | 1,114,1,2,2, | ||
3112 | 0,1,431,577,18, | ||
3113 | 1,431,143,2,0, | ||
3114 | 1,2104,578,18,1, | ||
3115 | 2104,254,2,0,1, | ||
3116 | 2105,579,18,1,2105, | ||
3117 | 479,2,0,1,1550, | ||
3118 | 580,18,1,1550,160, | ||
3119 | 2,0,1,437,581, | ||
3120 | 18,1,437,168,2, | ||
3121 | 0,1,2044,582,18, | ||
3122 | 1,2044,190,2,0, | ||
3123 | 1,2586,583,18,1, | ||
3124 | 2586,190,2,0,1, | ||
3125 | 1555,584,18,1,1555, | ||
3126 | 168,2,0,1,1001, | ||
3127 | 585,18,1,1001,555, | ||
3128 | 2,0,1,1002,586, | ||
3129 | 18,1,1002,547,2, | ||
3130 | 0,1,447,587,18, | ||
3131 | 1,447,368,2,0, | ||
3132 | 1,2375,588,18,1, | ||
3133 | 2375,589,20,590,4, | ||
3134 | 34,82,0,69,0, | ||
3135 | 77,0,79,0,84, | ||
3136 | 0,69,0,95,0, | ||
3137 | 68,0,65,0,84, | ||
3138 | 0,65,0,95,0, | ||
3139 | 69,0,86,0,69, | ||
3140 | 0,78,0,84,0, | ||
3141 | 1,82,1,1,2, | ||
3142 | 0,1,1010,591,18, | ||
3143 | 1,1010,160,2,0, | ||
3144 | 1,1011,592,18,1, | ||
3145 | 1011,153,2,0,1, | ||
3146 | 1012,593,18,1,1012, | ||
3147 | 168,2,0,1,1013, | ||
3148 | 594,18,1,1013,153, | ||
3149 | 2,0,1,459,595, | ||
3150 | 18,1,459,596,20, | ||
3151 | 597,4,24,76,0, | ||
3152 | 69,0,70,0,84, | ||
3153 | 0,95,0,66,0, | ||
3154 | 82,0,65,0,67, | ||
3155 | 0,75,0,69,0, | ||
3156 | 84,0,1,27,1, | ||
3157 | 1,2,0,1,1574, | ||
3158 | 598,18,1,1574,190, | ||
3159 | 2,0,1,461,599, | ||
3160 | 18,1,461,600,20, | ||
3161 | 601,4,24,65,0, | ||
3162 | 114,0,103,0,117, | ||
3163 | 0,109,0,101,0, | ||
3164 | 110,0,116,0,76, | ||
3165 | 0,105,0,115,0, | ||
3166 | 116,0,1,122,1, | ||
3167 | 2,2,0,1,462, | ||
3168 | 602,18,1,462,143, | ||
3169 | 2,0,1,2608,603, | ||
3170 | 18,1,2608,604,20, | ||
3171 | 605,4,50,71,0, | ||
3172 | 108,0,111,0,98, | ||
3173 | 0,97,0,108,0, | ||
3174 | 86,0,97,0,114, | ||
3175 | 0,105,0,97,0, | ||
3176 | 98,0,108,0,101, | ||
3177 | 0,68,0,101,0, | ||
3178 | 99,0,108,0,97, | ||
3179 | 0,114,0,97,0, | ||
3180 | 116,0,105,0,111, | ||
3181 | 0,110,0,1,97, | ||
3182 | 1,2,2,0,1, | ||
3183 | 464,606,18,1,464, | ||
3184 | 607,20,608,4,16, | ||
3185 | 65,0,114,0,103, | ||
3186 | 0,117,0,109,0, | ||
3187 | 101,0,110,0,116, | ||
3188 | 0,1,123,1,2, | ||
3189 | 2,0,1,2531,609, | ||
3190 | 18,1,2531,465,2, | ||
3191 | 0,1,1585,610,18, | ||
3192 | 1,1585,611,20,612, | ||
3193 | 4,12,82,0,69, | ||
3194 | 0,84,0,85,0, | ||
3195 | 82,0,78,0,1, | ||
3196 | 50,1,1,2,0, | ||
3197 | 1,476,613,18,1, | ||
3198 | 476,614,20,615,4, | ||
3199 | 30,83,0,84,0, | ||
3200 | 82,0,73,0,78, | ||
3201 | 0,71,0,95,0, | ||
3202 | 67,0,79,0,78, | ||
3203 | 0,83,0,84,0, | ||
3204 | 65,0,78,0,84, | ||
3205 | 0,1,3,1,1, | ||
3206 | 2,0,1,477,616, | ||
3207 | 18,1,477,617,20, | ||
3208 | 618,4,28,70,0, | ||
3209 | 76,0,79,0,65, | ||
3210 | 0,84,0,95,0, | ||
3211 | 67,0,79,0,78, | ||
3212 | 0,83,0,84,0, | ||
3213 | 65,0,78,0,84, | ||
3214 | 0,1,94,1,1, | ||
3215 | 2,0,1,478,619, | ||
3216 | 18,1,478,620,20, | ||
3217 | 621,4,40,72,0, | ||
3218 | 69,0,88,0,95, | ||
3219 | 0,73,0,78,0, | ||
3220 | 84,0,69,0,71, | ||
3221 | 0,69,0,82,0, | ||
3222 | 95,0,67,0,79, | ||
3223 | 0,78,0,83,0, | ||
3224 | 84,0,65,0,78, | ||
3225 | 0,84,0,1,93, | ||
3226 | 1,1,2,0,1, | ||
3227 | 479,622,18,1,479, | ||
3228 | 623,20,624,4,32, | ||
3229 | 73,0,78,0,84, | ||
3230 | 0,69,0,71,0, | ||
3231 | 69,0,82,0,95, | ||
3232 | 0,67,0,79,0, | ||
3233 | 78,0,83,0,84, | ||
3234 | 0,65,0,78,0, | ||
3235 | 84,0,1,92,1, | ||
3236 | 1,2,0,1,480, | ||
3237 | 625,18,1,480,626, | ||
3238 | 20,627,4,26,82, | ||
3239 | 0,73,0,71,0, | ||
3240 | 72,0,84,0,95, | ||
3241 | 0,66,0,82,0, | ||
3242 | 65,0,67,0,75, | ||
3243 | 0,69,0,84,0, | ||
3244 | 1,28,1,1,2, | ||
3245 | 0,1,481,628,18, | ||
3246 | 1,481,607,2,0, | ||
3247 | 1,2550,629,18,1, | ||
3248 | 2550,360,2,0,1, | ||
3249 | 2606,630,18,1,2606, | ||
3250 | 604,2,0,1,1048, | ||
3251 | 631,18,1,1048,168, | ||
3252 | 2,0,1,2042,632, | ||
3253 | 18,1,2042,633,20, | ||
3254 | 634,4,20,65,0, | ||
3255 | 115,0,115,0,105, | ||
3256 | 0,103,0,110,0, | ||
3257 | 109,0,101,0,110, | ||
3258 | 0,116,0,1,110, | ||
3259 | 1,2,2,0,1, | ||
3260 | 2043,635,18,1,2043, | ||
3261 | 190,2,0,1,1620, | ||
3262 | 636,18,1,1620,160, | ||
3263 | 2,0,1,1621,637, | ||
3264 | 18,1,1621,150,2, | ||
3265 | 0,1,1622,638,18, | ||
3266 | 1,1622,360,2,0, | ||
3267 | 1,509,639,18,1, | ||
3268 | 509,143,2,0,1, | ||
3269 | 1628,640,18,1,1628, | ||
3270 | 168,2,0,1,515, | ||
3271 | 641,18,1,515,168, | ||
3272 | 2,0,1,2369,642, | ||
3273 | 18,1,2369,643,20, | ||
3274 | 644,4,22,84,0, | ||
3275 | 79,0,85,0,67, | ||
3276 | 0,72,0,95,0, | ||
3277 | 69,0,86,0,69, | ||
3278 | 0,78,0,84,0, | ||
3279 | 1,88,1,1,2, | ||
3280 | 0,1,2587,645,18, | ||
3281 | 1,2587,646,20,647, | ||
3282 | 4,34,71,0,108, | ||
3283 | 0,111,0,98,0, | ||
3284 | 97,0,108,0,68, | ||
3285 | 0,101,0,102,0, | ||
3286 | 105,0,110,0,105, | ||
3287 | 0,116,0,105,0, | ||
3288 | 111,0,110,0,115, | ||
3289 | 0,1,96,1,2, | ||
3290 | 2,0,1,525,648, | ||
3291 | 18,1,525,368,2, | ||
3292 | 0,1,2197,649,18, | ||
3293 | 1,2197,153,2,0, | ||
3294 | 1,1591,650,18,1, | ||
3295 | 1591,168,2,0,1, | ||
3296 | 2135,651,18,1,2135, | ||
3297 | 254,2,0,1,2598, | ||
3298 | 652,18,1,2598,473, | ||
3299 | 2,0,1,1094,653, | ||
3300 | 18,1,1094,600,2, | ||
3301 | 0,1,1096,654,18, | ||
3302 | 1,1096,153,2,0, | ||
3303 | 1,1657,655,18,1, | ||
3304 | 1657,190,2,0,1, | ||
3305 | 1658,656,18,1,1658, | ||
3306 | 657,20,658,4,6, | ||
3307 | 70,0,79,0,82, | ||
3308 | 0,1,46,1,1, | ||
3309 | 2,0,1,1659,659, | ||
3310 | 18,1,1659,135,2, | ||
3311 | 0,1,2609,104,1, | ||
3312 | 1665,660,18,1,1665, | ||
3313 | 168,2,0,1,2226, | ||
3314 | 661,18,1,2226,254, | ||
3315 | 2,0,1,1113,662, | ||
3316 | 18,1,1113,176,2, | ||
3317 | 0,663,5,0,664, | ||
3318 | 5,319,1,2,665, | ||
3319 | 19,552,1,2,666, | ||
3320 | 5,6,1,2531,667, | ||
3321 | 17,668,15,669,4, | ||
3322 | 14,37,0,83,0, | ||
3323 | 116,0,97,0,116, | ||
3324 | 0,101,0,115,0, | ||
3325 | 1,-1,1,5,670, | ||
3326 | 20,671,4,16,83, | ||
3327 | 0,116,0,97,0, | ||
3328 | 116,0,101,0,115, | ||
3329 | 0,95,0,50,0, | ||
3330 | 1,151,1,3,1, | ||
3331 | 3,1,2,672,22, | ||
3332 | 1,12,1,2532,673, | ||
3333 | 17,674,15,669,1, | ||
3334 | -1,1,5,675,20, | ||
3335 | 676,4,16,83,0, | ||
3336 | 116,0,97,0,116, | ||
3337 | 0,101,0,115,0, | ||
3338 | 95,0,49,0,1, | ||
3339 | 150,1,3,1,2, | ||
3340 | 1,1,677,22,1, | ||
3341 | 11,1,2598,678,17, | ||
3342 | 679,15,680,4,30, | ||
3343 | 37,0,76,0,83, | ||
3344 | 0,76,0,80,0, | ||
3345 | 114,0,111,0,103, | ||
3346 | 0,114,0,97,0, | ||
3347 | 109,0,82,0,111, | ||
3348 | 0,111,0,116,0, | ||
3349 | 1,-1,1,5,681, | ||
3350 | 20,682,4,32,76, | ||
3351 | 0,83,0,76,0, | ||
3352 | 80,0,114,0,111, | ||
3353 | 0,103,0,114,0, | ||
3354 | 97,0,109,0,82, | ||
3355 | 0,111,0,111,0, | ||
3356 | 116,0,95,0,49, | ||
3357 | 0,1,140,1,3, | ||
3358 | 1,3,1,2,683, | ||
3359 | 22,1,1,1,2526, | ||
3360 | 684,17,685,15,686, | ||
3361 | 4,12,37,0,83, | ||
3362 | 0,116,0,97,0, | ||
3363 | 116,0,101,0,1, | ||
3364 | -1,1,5,687,20, | ||
3365 | 688,4,14,83,0, | ||
3366 | 116,0,97,0,116, | ||
3367 | 0,101,0,95,0, | ||
3368 | 49,0,1,152,1, | ||
3369 | 3,1,5,1,4, | ||
3370 | 689,22,1,13,1, | ||
3371 | 2528,690,17,691,15, | ||
3372 | 680,1,-1,1,5, | ||
3373 | 692,20,693,4,32, | ||
3374 | 76,0,83,0,76, | ||
3375 | 0,80,0,114,0, | ||
3376 | 111,0,103,0,114, | ||
3377 | 0,97,0,109,0, | ||
3378 | 82,0,111,0,111, | ||
3379 | 0,116,0,95,0, | ||
3380 | 50,0,1,141,1, | ||
3381 | 3,1,2,1,1, | ||
3382 | 694,22,1,2,1, | ||
3383 | 2452,695,17,696,15, | ||
3384 | 686,1,-1,1,5, | ||
3385 | 697,20,698,4,14, | ||
3386 | 83,0,116,0,97, | ||
3387 | 0,116,0,101,0, | ||
3388 | 95,0,50,0,1, | ||
3389 | 153,1,3,1,6, | ||
3390 | 1,5,699,22,1, | ||
3391 | 14,1,3,700,19, | ||
3392 | 615,1,3,701,5, | ||
3393 | 91,1,256,702,16, | ||
3394 | 0,613,1,1261,703, | ||
3395 | 16,0,613,1,509, | ||
3396 | 704,16,0,613,1, | ||
3397 | 2197,705,16,0,613, | ||
3398 | 1,1515,706,16,0, | ||
3399 | 613,1,2021,707,17, | ||
3400 | 708,15,709,4,24, | ||
3401 | 37,0,73,0,102, | ||
3402 | 0,83,0,116,0, | ||
3403 | 97,0,116,0,101, | ||
3404 | 0,109,0,101,0, | ||
3405 | 110,0,116,0,1, | ||
3406 | -1,1,5,710,20, | ||
3407 | 711,4,26,73,0, | ||
3408 | 102,0,83,0,116, | ||
3409 | 0,97,0,116,0, | ||
3410 | 101,0,109,0,101, | ||
3411 | 0,110,0,116,0, | ||
3412 | 95,0,50,0,1, | ||
3413 | 181,1,3,1,8, | ||
3414 | 1,7,712,22,1, | ||
3415 | 44,1,1775,713,16, | ||
3416 | 0,613,1,2029,714, | ||
3417 | 17,715,15,716,4, | ||
3418 | 20,37,0,83,0, | ||
3419 | 116,0,97,0,116, | ||
3420 | 0,101,0,109,0, | ||
3421 | 101,0,110,0,116, | ||
3422 | 0,1,-1,1,5, | ||
3423 | 717,20,718,4,24, | ||
3424 | 83,0,116,0,97, | ||
3425 | 0,116,0,101,0, | ||
3426 | 109,0,101,0,110, | ||
3427 | 0,116,0,95,0, | ||
3428 | 49,0,50,0,1, | ||
3429 | 175,1,3,1,2, | ||
3430 | 1,1,719,22,1, | ||
3431 | 38,1,2030,720,17, | ||
3432 | 721,15,716,1,-1, | ||
3433 | 1,5,722,20,723, | ||
3434 | 4,24,83,0,116, | ||
3435 | 0,97,0,116,0, | ||
3436 | 101,0,109,0,101, | ||
3437 | 0,110,0,116,0, | ||
3438 | 95,0,49,0,49, | ||
3439 | 0,1,174,1,3, | ||
3440 | 1,2,1,1,724, | ||
3441 | 22,1,37,1,2031, | ||
3442 | 725,17,726,15,716, | ||
3443 | 1,-1,1,5,727, | ||
3444 | 20,728,4,24,83, | ||
3445 | 0,116,0,97,0, | ||
3446 | 116,0,101,0,109, | ||
3447 | 0,101,0,110,0, | ||
3448 | 116,0,95,0,49, | ||
3449 | 0,48,0,1,173, | ||
3450 | 1,3,1,2,1, | ||
3451 | 1,729,22,1,36, | ||
3452 | 1,2032,730,17,731, | ||
3453 | 15,716,1,-1,1, | ||
3454 | 5,732,20,733,4, | ||
3455 | 22,83,0,116,0, | ||
3456 | 97,0,116,0,101, | ||
3457 | 0,109,0,101,0, | ||
3458 | 110,0,116,0,95, | ||
3459 | 0,57,0,1,172, | ||
3460 | 1,3,1,2,1, | ||
3461 | 1,734,22,1,35, | ||
3462 | 1,2033,735,17,736, | ||
3463 | 15,716,1,-1,1, | ||
3464 | 5,737,20,738,4, | ||
3465 | 22,83,0,116,0, | ||
3466 | 97,0,116,0,101, | ||
3467 | 0,109,0,101,0, | ||
3468 | 110,0,116,0,95, | ||
3469 | 0,56,0,1,171, | ||
3470 | 1,3,1,2,1, | ||
3471 | 1,739,22,1,34, | ||
3472 | 1,277,740,16,0, | ||
3473 | 613,1,2035,741,17, | ||
3474 | 742,15,716,1,-1, | ||
3475 | 1,5,743,20,744, | ||
3476 | 4,22,83,0,116, | ||
3477 | 0,97,0,116,0, | ||
3478 | 101,0,109,0,101, | ||
3479 | 0,110,0,116,0, | ||
3480 | 95,0,55,0,1, | ||
3481 | 170,1,3,1,3, | ||
3482 | 1,2,745,22,1, | ||
3483 | 33,1,2037,746,17, | ||
3484 | 747,15,716,1,-1, | ||
3485 | 1,5,748,20,749, | ||
3486 | 4,22,83,0,116, | ||
3487 | 0,97,0,116,0, | ||
3488 | 101,0,109,0,101, | ||
3489 | 0,110,0,116,0, | ||
3490 | 95,0,54,0,1, | ||
3491 | 169,1,3,1,3, | ||
3492 | 1,2,750,22,1, | ||
3493 | 32,1,2039,751,17, | ||
3494 | 752,15,716,1,-1, | ||
3495 | 1,5,753,20,754, | ||
3496 | 4,22,83,0,116, | ||
3497 | 0,97,0,116,0, | ||
3498 | 101,0,109,0,101, | ||
3499 | 0,110,0,116,0, | ||
3500 | 95,0,53,0,1, | ||
3501 | 168,1,3,1,3, | ||
3502 | 1,2,755,22,1, | ||
3503 | 31,1,32,756,16, | ||
3504 | 0,613,1,2041,757, | ||
3505 | 17,758,15,716,1, | ||
3506 | -1,1,5,759,20, | ||
3507 | 760,4,22,83,0, | ||
3508 | 116,0,97,0,116, | ||
3509 | 0,101,0,109,0, | ||
3510 | 101,0,110,0,116, | ||
3511 | 0,95,0,52,0, | ||
3512 | 1,167,1,3,1, | ||
3513 | 3,1,2,761,22, | ||
3514 | 1,30,1,2043,762, | ||
3515 | 17,763,15,716,1, | ||
3516 | -1,1,5,764,20, | ||
3517 | 765,4,22,83,0, | ||
3518 | 116,0,97,0,116, | ||
3519 | 0,101,0,109,0, | ||
3520 | 101,0,110,0,116, | ||
3521 | 0,95,0,50,0, | ||
3522 | 1,165,1,3,1, | ||
3523 | 3,1,2,766,22, | ||
3524 | 1,28,1,2044,767, | ||
3525 | 17,768,15,716,1, | ||
3526 | -1,1,5,254,1, | ||
3527 | 1,1,1,769,22, | ||
3528 | 1,26,1,2550,770, | ||
3529 | 16,0,613,1,41, | ||
3530 | 771,16,0,613,1, | ||
3531 | 1297,772,16,0,613, | ||
3532 | 1,43,773,16,0, | ||
3533 | 613,1,1802,774,17, | ||
3534 | 775,15,776,4,16, | ||
3535 | 37,0,70,0,111, | ||
3536 | 0,114,0,76,0, | ||
3537 | 111,0,111,0,112, | ||
3538 | 0,1,-1,1,5, | ||
3539 | 777,20,778,4,18, | ||
3540 | 70,0,111,0,114, | ||
3541 | 0,76,0,111,0, | ||
3542 | 111,0,112,0,95, | ||
3543 | 0,49,0,1,188, | ||
3544 | 1,3,1,10,1, | ||
3545 | 9,779,22,1,51, | ||
3546 | 1,1804,780,16,0, | ||
3547 | 613,1,299,781,16, | ||
3548 | 0,613,1,2309,782, | ||
3549 | 16,0,613,1,52, | ||
3550 | 783,16,0,613,1, | ||
3551 | 525,784,16,0,613, | ||
3552 | 1,62,785,16,0, | ||
3553 | 613,1,2074,786,16, | ||
3554 | 0,613,1,1574,787, | ||
3555 | 17,788,15,716,1, | ||
3556 | -1,1,5,789,20, | ||
3557 | 790,4,22,83,0, | ||
3558 | 116,0,97,0,116, | ||
3559 | 0,101,0,109,0, | ||
3560 | 101,0,110,0,116, | ||
3561 | 0,95,0,51,0, | ||
3562 | 1,166,1,3,1, | ||
3563 | 3,1,2,791,22, | ||
3564 | 1,29,1,71,792, | ||
3565 | 16,0,613,1,76, | ||
3566 | 793,16,0,613,1, | ||
3567 | 1834,794,16,0,613, | ||
3568 | 1,1585,795,16,0, | ||
3569 | 613,1,1335,796,16, | ||
3570 | 0,613,1,79,797, | ||
3571 | 16,0,613,1,85, | ||
3572 | 798,16,0,613,1, | ||
3573 | 89,799,16,0,613, | ||
3574 | 1,346,800,16,0, | ||
3575 | 613,1,2104,801,17, | ||
3576 | 802,15,709,1,-1, | ||
3577 | 1,5,803,20,804, | ||
3578 | 4,26,73,0,102, | ||
3579 | 0,83,0,116,0, | ||
3580 | 97,0,116,0,101, | ||
3581 | 0,109,0,101,0, | ||
3582 | 110,0,116,0,95, | ||
3583 | 0,51,0,1,182, | ||
3584 | 1,3,1,6,1, | ||
3585 | 5,805,22,1,45, | ||
3586 | 1,2105,806,16,0, | ||
3587 | 613,1,2358,807,17, | ||
3588 | 808,15,809,4,28, | ||
3589 | 37,0,83,0,116, | ||
3590 | 0,97,0,116,0, | ||
3591 | 101,0,109,0,101, | ||
3592 | 0,110,0,116,0, | ||
3593 | 76,0,105,0,115, | ||
3594 | 0,116,0,1,-1, | ||
3595 | 1,5,810,20,811, | ||
3596 | 4,30,83,0,116, | ||
3597 | 0,97,0,116,0, | ||
3598 | 101,0,109,0,101, | ||
3599 | 0,110,0,116,0, | ||
3600 | 76,0,105,0,115, | ||
3601 | 0,116,0,95,0, | ||
3602 | 49,0,1,162,1, | ||
3603 | 3,1,2,1,1, | ||
3604 | 812,22,1,24,1, | ||
3605 | 2360,813,17,814,15, | ||
3606 | 815,4,36,37,0, | ||
3607 | 67,0,111,0,109, | ||
3608 | 0,112,0,111,0, | ||
3609 | 117,0,110,0,100, | ||
3610 | 0,83,0,116,0, | ||
3611 | 97,0,116,0,101, | ||
3612 | 0,109,0,101,0, | ||
3613 | 110,0,116,0,1, | ||
3614 | -1,1,5,816,20, | ||
3615 | 817,4,38,67,0, | ||
3616 | 111,0,109,0,112, | ||
3617 | 0,111,0,117,0, | ||
3618 | 110,0,100,0,83, | ||
3619 | 0,116,0,97,0, | ||
3620 | 116,0,101,0,109, | ||
3621 | 0,101,0,110,0, | ||
3622 | 116,0,95,0,49, | ||
3623 | 0,1,160,1,3, | ||
3624 | 1,3,1,2,818, | ||
3625 | 22,1,22,1,97, | ||
3626 | 819,16,0,613,1, | ||
3627 | 1860,820,17,821,15, | ||
3628 | 822,4,34,37,0, | ||
3629 | 68,0,111,0,87, | ||
3630 | 0,104,0,105,0, | ||
3631 | 108,0,101,0,83, | ||
3632 | 0,116,0,97,0, | ||
3633 | 116,0,101,0,109, | ||
3634 | 0,101,0,110,0, | ||
3635 | 116,0,1,-1,1, | ||
3636 | 5,823,20,824,4, | ||
3637 | 36,68,0,111,0, | ||
3638 | 87,0,104,0,105, | ||
3639 | 0,108,0,101,0, | ||
3640 | 83,0,116,0,97, | ||
3641 | 0,116,0,101,0, | ||
3642 | 109,0,101,0,110, | ||
3643 | 0,116,0,95,0, | ||
3644 | 49,0,1,186,1, | ||
3645 | 3,1,8,1,7, | ||
3646 | 825,22,1,49,1, | ||
3647 | 102,826,16,0,613, | ||
3648 | 1,112,827,16,0, | ||
3649 | 613,1,1117,828,16, | ||
3650 | 0,613,1,1873,829, | ||
3651 | 17,830,15,822,1, | ||
3652 | -1,1,5,831,20, | ||
3653 | 832,4,36,68,0, | ||
3654 | 111,0,87,0,104, | ||
3655 | 0,105,0,108,0, | ||
3656 | 101,0,83,0,116, | ||
3657 | 0,97,0,116,0, | ||
3658 | 101,0,109,0,101, | ||
3659 | 0,110,0,116,0, | ||
3660 | 95,0,50,0,1, | ||
3661 | 187,1,3,1,8, | ||
3662 | 1,7,833,22,1, | ||
3663 | 50,1,1876,834,16, | ||
3664 | 0,613,1,124,835, | ||
3665 | 16,0,613,1,2135, | ||
3666 | 836,17,837,15,709, | ||
3667 | 1,-1,1,5,838, | ||
3668 | 20,839,4,26,73, | ||
3669 | 0,102,0,83,0, | ||
3670 | 116,0,97,0,116, | ||
3671 | 0,101,0,109,0, | ||
3672 | 101,0,110,0,116, | ||
3673 | 0,95,0,52,0, | ||
3674 | 1,183,1,3,1, | ||
3675 | 8,1,7,840,22, | ||
3676 | 1,46,1,381,841, | ||
3677 | 16,0,613,1,322, | ||
3678 | 842,16,0,613,1, | ||
3679 | 137,843,16,0,613, | ||
3680 | 1,1901,844,16,0, | ||
3681 | 613,1,1153,845,16, | ||
3682 | 0,613,1,151,846, | ||
3683 | 16,0,613,1,1407, | ||
3684 | 847,16,0,613,1, | ||
3685 | 1659,848,16,0,613, | ||
3686 | 1,406,849,16,0, | ||
3687 | 613,1,1371,850,16, | ||
3688 | 0,613,1,166,851, | ||
3689 | 16,0,613,1,1622, | ||
3690 | 852,16,0,613,1, | ||
3691 | 2354,853,17,854,15, | ||
3692 | 809,1,-1,1,5, | ||
3693 | 855,20,856,4,30, | ||
3694 | 83,0,116,0,97, | ||
3695 | 0,116,0,101,0, | ||
3696 | 109,0,101,0,110, | ||
3697 | 0,116,0,76,0, | ||
3698 | 105,0,115,0,116, | ||
3699 | 0,95,0,50,0, | ||
3700 | 1,163,1,3,1, | ||
3701 | 3,1,2,857,22, | ||
3702 | 1,25,1,2355,858, | ||
3703 | 17,859,15,815,1, | ||
3704 | -1,1,5,860,20, | ||
3705 | 861,4,38,67,0, | ||
3706 | 111,0,109,0,112, | ||
3707 | 0,111,0,117,0, | ||
3708 | 110,0,100,0,83, | ||
3709 | 0,116,0,97,0, | ||
3710 | 116,0,101,0,109, | ||
3711 | 0,101,0,110,0, | ||
3712 | 116,0,95,0,50, | ||
3713 | 0,1,161,1,3, | ||
3714 | 1,4,1,3,862, | ||
3715 | 22,1,23,1,1931, | ||
3716 | 863,17,864,15,865, | ||
3717 | 4,30,37,0,87, | ||
3718 | 0,104,0,105,0, | ||
3719 | 108,0,101,0,83, | ||
3720 | 0,116,0,97,0, | ||
3721 | 116,0,101,0,109, | ||
3722 | 0,101,0,110,0, | ||
3723 | 116,0,1,-1,1, | ||
3724 | 5,866,20,867,4, | ||
3725 | 32,87,0,104,0, | ||
3726 | 105,0,108,0,101, | ||
3727 | 0,83,0,116,0, | ||
3728 | 97,0,116,0,101, | ||
3729 | 0,109,0,101,0, | ||
3730 | 110,0,116,0,95, | ||
3731 | 0,49,0,1,184, | ||
3732 | 1,3,1,6,1, | ||
3733 | 5,868,22,1,47, | ||
3734 | 1,1933,869,16,0, | ||
3735 | 613,1,431,870,16, | ||
3736 | 0,613,1,182,871, | ||
3737 | 16,0,613,1,1189, | ||
3738 | 872,16,0,613,1, | ||
3739 | 1443,873,16,0,613, | ||
3740 | 1,1695,874,16,0, | ||
3741 | 613,1,447,875,16, | ||
3742 | 0,613,1,199,876, | ||
3743 | 16,0,613,1,1958, | ||
3744 | 877,16,0,613,1, | ||
3745 | 1657,878,17,879,15, | ||
3746 | 716,1,-1,1,5, | ||
3747 | 880,20,881,4,22, | ||
3748 | 83,0,116,0,97, | ||
3749 | 0,116,0,101,0, | ||
3750 | 109,0,101,0,110, | ||
3751 | 0,116,0,95,0, | ||
3752 | 49,0,1,164,1, | ||
3753 | 3,1,3,1,2, | ||
3754 | 882,22,1,27,1, | ||
3755 | 459,883,16,0,613, | ||
3756 | 1,462,884,16,0, | ||
3757 | 613,1,217,885,16, | ||
3758 | 0,613,1,2226,886, | ||
3759 | 17,887,15,865,1, | ||
3760 | -1,1,5,888,20, | ||
3761 | 889,4,32,87,0, | ||
3762 | 104,0,105,0,108, | ||
3763 | 0,101,0,83,0, | ||
3764 | 116,0,97,0,116, | ||
3765 | 0,101,0,109,0, | ||
3766 | 101,0,110,0,116, | ||
3767 | 0,95,0,50,0, | ||
3768 | 1,185,1,3,1, | ||
3769 | 6,1,5,890,22, | ||
3770 | 1,48,1,1225,891, | ||
3771 | 16,0,613,1,1479, | ||
3772 | 892,16,0,613,1, | ||
3773 | 1731,893,16,0,613, | ||
3774 | 1,1989,894,17,895, | ||
3775 | 15,709,1,-1,1, | ||
3776 | 5,896,20,897,4, | ||
3777 | 26,73,0,102,0, | ||
3778 | 83,0,116,0,97, | ||
3779 | 0,116,0,101,0, | ||
3780 | 109,0,101,0,110, | ||
3781 | 0,116,0,95,0, | ||
3782 | 49,0,1,180,1, | ||
3783 | 3,1,6,1,5, | ||
3784 | 898,22,1,43,1, | ||
3785 | 1990,899,16,0,613, | ||
3786 | 1,236,900,16,0, | ||
3787 | 613,1,1756,901,16, | ||
3788 | 0,613,1,4,902, | ||
3789 | 19,184,1,4,903, | ||
3790 | 5,96,1,256,904, | ||
3791 | 16,0,542,1,1261, | ||
3792 | 905,16,0,542,1, | ||
3793 | 509,906,16,0,542, | ||
3794 | 1,2197,907,16,0, | ||
3795 | 542,1,1515,908,16, | ||
3796 | 0,542,1,2021,707, | ||
3797 | 1,1775,909,16,0, | ||
3798 | 542,1,2029,714,1, | ||
3799 | 2030,720,1,2031,725, | ||
3800 | 1,2032,730,1,2033, | ||
3801 | 735,1,277,910,16, | ||
3802 | 0,542,1,2035,741, | ||
3803 | 1,2037,746,1,2039, | ||
3804 | 751,1,32,911,16, | ||
3805 | 0,542,1,2041,757, | ||
3806 | 1,2043,762,1,2044, | ||
3807 | 767,1,40,912,16, | ||
3808 | 0,186,1,41,913, | ||
3809 | 16,0,542,1,1297, | ||
3810 | 914,16,0,542,1, | ||
3811 | 43,915,16,0,542, | ||
3812 | 1,44,916,16,0, | ||
3813 | 186,1,1802,774,1, | ||
3814 | 1804,917,16,0,542, | ||
3815 | 1,299,918,16,0, | ||
3816 | 542,1,2309,919,16, | ||
3817 | 0,542,1,52,920, | ||
3818 | 16,0,542,1,47, | ||
3819 | 921,16,0,182,1, | ||
3820 | 525,922,16,0,542, | ||
3821 | 1,63,923,16,0, | ||
3822 | 200,1,2074,924,16, | ||
3823 | 0,542,1,1574,787, | ||
3824 | 1,66,925,16,0, | ||
3825 | 198,1,71,926,16, | ||
3826 | 0,542,1,76,927, | ||
3827 | 16,0,542,1,1834, | ||
3828 | 928,16,0,542,1, | ||
3829 | 79,929,16,0,542, | ||
3830 | 1,1335,930,16,0, | ||
3831 | 542,1,322,931,16, | ||
3832 | 0,542,1,85,932, | ||
3833 | 16,0,542,1,89, | ||
3834 | 933,16,0,542,1, | ||
3835 | 346,934,16,0,542, | ||
3836 | 1,2104,801,1,2105, | ||
3837 | 935,16,0,542,1, | ||
3838 | 2358,807,1,2360,813, | ||
3839 | 1,97,936,16,0, | ||
3840 | 542,1,1860,820,1, | ||
3841 | 102,937,16,0,542, | ||
3842 | 1,1114,938,16,0, | ||
3843 | 182,1,112,939,16, | ||
3844 | 0,542,1,1117,940, | ||
3845 | 16,0,542,1,1873, | ||
3846 | 829,1,1876,941,16, | ||
3847 | 0,542,1,2550,942, | ||
3848 | 16,0,542,1,124, | ||
3849 | 943,16,0,542,1, | ||
3850 | 2135,836,1,381,944, | ||
3851 | 16,0,542,1,137, | ||
3852 | 945,16,0,542,1, | ||
3853 | 1901,946,16,0,542, | ||
3854 | 1,1153,947,16,0, | ||
3855 | 542,1,151,948,16, | ||
3856 | 0,542,1,1407,949, | ||
3857 | 16,0,542,1,1659, | ||
3858 | 950,16,0,542,1, | ||
3859 | 406,951,16,0,542, | ||
3860 | 1,1371,952,16,0, | ||
3861 | 542,1,166,953,16, | ||
3862 | 0,542,1,1622,954, | ||
3863 | 16,0,542,1,2354, | ||
3864 | 853,1,2355,858,1, | ||
3865 | 1931,863,1,1933,955, | ||
3866 | 16,0,542,1,431, | ||
3867 | 956,16,0,542,1, | ||
3868 | 1585,957,16,0,542, | ||
3869 | 1,182,958,16,0, | ||
3870 | 542,1,1189,959,16, | ||
3871 | 0,542,1,1443,960, | ||
3872 | 16,0,542,1,1695, | ||
3873 | 961,16,0,542,1, | ||
3874 | 447,962,16,0,542, | ||
3875 | 1,199,963,16,0, | ||
3876 | 542,1,1958,964,16, | ||
3877 | 0,542,1,1657,878, | ||
3878 | 1,459,965,16,0, | ||
3879 | 542,1,462,966,16, | ||
3880 | 0,542,1,217,967, | ||
3881 | 16,0,542,1,2226, | ||
3882 | 886,1,1225,968,16, | ||
3883 | 0,542,1,1479,969, | ||
3884 | 16,0,542,1,1731, | ||
3885 | 970,16,0,542,1, | ||
3886 | 1989,894,1,1990,971, | ||
3887 | 16,0,542,1,236, | ||
3888 | 972,16,0,542,1, | ||
3889 | 1756,973,16,0,542, | ||
3890 | 1,5,974,19,181, | ||
3891 | 1,5,975,5,96, | ||
3892 | 1,256,976,16,0, | ||
3893 | 538,1,1261,977,16, | ||
3894 | 0,538,1,509,978, | ||
3895 | 16,0,538,1,2197, | ||
3896 | 979,16,0,538,1, | ||
3897 | 1515,980,16,0,538, | ||
3898 | 1,2021,707,1,1775, | ||
3899 | 981,16,0,538,1, | ||
3900 | 2029,714,1,2030,720, | ||
3901 | 1,2031,725,1,2032, | ||
3902 | 730,1,2033,735,1, | ||
3903 | 277,982,16,0,538, | ||
3904 | 1,2035,741,1,2037, | ||
3905 | 746,1,2039,751,1, | ||
3906 | 32,983,16,0,538, | ||
3907 | 1,2041,757,1,2043, | ||
3908 | 762,1,2044,767,1, | ||
3909 | 40,984,16,0,185, | ||
3910 | 1,41,985,16,0, | ||
3911 | 538,1,1297,986,16, | ||
3912 | 0,538,1,43,987, | ||
3913 | 16,0,538,1,44, | ||
3914 | 988,16,0,185,1, | ||
3915 | 1802,774,1,1804,989, | ||
3916 | 16,0,538,1,299, | ||
3917 | 990,16,0,538,1, | ||
3918 | 2309,991,16,0,538, | ||
3919 | 1,52,992,16,0, | ||
3920 | 538,1,47,993,16, | ||
3921 | 0,179,1,525,994, | ||
3922 | 16,0,538,1,63, | ||
3923 | 995,16,0,199,1, | ||
3924 | 2074,996,16,0,538, | ||
3925 | 1,1574,787,1,66, | ||
3926 | 997,16,0,197,1, | ||
3927 | 71,998,16,0,538, | ||
3928 | 1,76,999,16,0, | ||
3929 | 538,1,1834,1000,16, | ||
3930 | 0,538,1,79,1001, | ||
3931 | 16,0,538,1,1335, | ||
3932 | 1002,16,0,538,1, | ||
3933 | 322,1003,16,0,538, | ||
3934 | 1,85,1004,16,0, | ||
3935 | 538,1,89,1005,16, | ||
3936 | 0,538,1,346,1006, | ||
3937 | 16,0,538,1,2104, | ||
3938 | 801,1,2105,1007,16, | ||
3939 | 0,538,1,2358,807, | ||
3940 | 1,2360,813,1,97, | ||
3941 | 1008,16,0,538,1, | ||
3942 | 1860,820,1,102,1009, | ||
3943 | 16,0,538,1,1114, | ||
3944 | 1010,16,0,179,1, | ||
3945 | 112,1011,16,0,538, | ||
3946 | 1,1117,1012,16,0, | ||
3947 | 538,1,1873,829,1, | ||
3948 | 1876,1013,16,0,538, | ||
3949 | 1,2550,1014,16,0, | ||
3950 | 538,1,124,1015,16, | ||
3951 | 0,538,1,2135,836, | ||
3952 | 1,381,1016,16,0, | ||
3953 | 538,1,137,1017,16, | ||
3954 | 0,538,1,1901,1018, | ||
3955 | 16,0,538,1,1153, | ||
3956 | 1019,16,0,538,1, | ||
3957 | 151,1020,16,0,538, | ||
3958 | 1,1407,1021,16,0, | ||
3959 | 538,1,1659,1022,16, | ||
3960 | 0,538,1,406,1023, | ||
3961 | 16,0,538,1,1371, | ||
3962 | 1024,16,0,538,1, | ||
3963 | 166,1025,16,0,538, | ||
3964 | 1,1622,1026,16,0, | ||
3965 | 538,1,2354,853,1, | ||
3966 | 2355,858,1,1931,863, | ||
3967 | 1,1933,1027,16,0, | ||
3968 | 538,1,431,1028,16, | ||
3969 | 0,538,1,1585,1029, | ||
3970 | 16,0,538,1,182, | ||
3971 | 1030,16,0,538,1, | ||
3972 | 1189,1031,16,0,538, | ||
3973 | 1,1443,1032,16,0, | ||
3974 | 538,1,1695,1033,16, | ||
3975 | 0,538,1,447,1034, | ||
3976 | 16,0,538,1,199, | ||
3977 | 1035,16,0,538,1, | ||
3978 | 1958,1036,16,0,538, | ||
3979 | 1,1657,878,1,459, | ||
3980 | 1037,16,0,538,1, | ||
3981 | 462,1038,16,0,538, | ||
3982 | 1,217,1039,16,0, | ||
3983 | 538,1,2226,886,1, | ||
3984 | 1225,1040,16,0,538, | ||
3985 | 1,1479,1041,16,0, | ||
3986 | 538,1,1731,1042,16, | ||
3987 | 0,538,1,1989,894, | ||
3988 | 1,1990,1043,16,0, | ||
3989 | 538,1,236,1044,16, | ||
3990 | 0,538,1,1756,1045, | ||
3991 | 16,0,538,1,6, | ||
3992 | 1046,19,292,1,6, | ||
3993 | 1047,5,2,1,1114, | ||
3994 | 1048,16,0,290,1, | ||
3995 | 40,1049,16,0,527, | ||
3996 | 1,7,1050,19,241, | ||
3997 | 1,7,1051,5,2, | ||
3998 | 1,1114,1052,16,0, | ||
3999 | 239,1,40,1053,16, | ||
4000 | 0,487,1,8,1054, | ||
4001 | 19,206,1,8,1055, | ||
4002 | 5,2,1,1114,1056, | ||
4003 | 16,0,204,1,40, | ||
4004 | 1057,16,0,454,1, | ||
4005 | 9,1058,19,212,1, | ||
4006 | 9,1059,5,2,1, | ||
4007 | 1114,1060,16,0,210, | ||
4008 | 1,40,1061,16,0, | ||
4009 | 436,1,10,1062,19, | ||
4010 | 164,1,10,1063,5, | ||
4011 | 2,1,1114,1064,16, | ||
4012 | 0,162,1,40,1065, | ||
4013 | 16,0,390,1,11, | ||
4014 | 1066,19,191,1,11, | ||
4015 | 1067,5,141,1,1260, | ||
4016 | 1068,17,1069,15,1070, | ||
4017 | 4,34,37,0,83, | ||
4018 | 0,105,0,109,0, | ||
4019 | 112,0,108,0,101, | ||
4020 | 0,65,0,115,0, | ||
4021 | 115,0,105,0,103, | ||
4022 | 0,110,0,109,0, | ||
4023 | 101,0,110,0,116, | ||
4024 | 0,1,-1,1,5, | ||
4025 | 1071,20,1072,4,38, | ||
4026 | 83,0,105,0,109, | ||
4027 | 0,112,0,108,0, | ||
4028 | 101,0,65,0,115, | ||
4029 | 0,115,0,105,0, | ||
4030 | 103,0,110,0,109, | ||
4031 | 0,101,0,110,0, | ||
4032 | 116,0,95,0,50, | ||
4033 | 0,49,0,1,215, | ||
4034 | 1,3,1,6,1, | ||
4035 | 5,1073,22,1,78, | ||
4036 | 1,1011,1074,17,1075, | ||
4037 | 15,1076,4,44,37, | ||
4038 | 0,80,0,97,0, | ||
4039 | 114,0,101,0,110, | ||
4040 | 0,116,0,104,0, | ||
4041 | 101,0,115,0,105, | ||
4042 | 0,115,0,69,0, | ||
4043 | 120,0,112,0,114, | ||
4044 | 0,101,0,115,0, | ||
4045 | 115,0,105,0,111, | ||
4046 | 0,110,0,1,-1, | ||
4047 | 1,5,1077,20,1078, | ||
4048 | 4,46,80,0,97, | ||
4049 | 0,114,0,101,0, | ||
4050 | 110,0,116,0,104, | ||
4051 | 0,101,0,115,0, | ||
4052 | 105,0,115,0,69, | ||
4053 | 0,120,0,112,0, | ||
4054 | 114,0,101,0,115, | ||
4055 | 0,115,0,105,0, | ||
4056 | 111,0,110,0,95, | ||
4057 | 0,50,0,1,262, | ||
4058 | 1,3,1,4,1, | ||
4059 | 3,1079,22,1,125, | ||
4060 | 1,1514,1080,17,1081, | ||
4061 | 15,1070,1,-1,1, | ||
4062 | 5,1082,20,1083,4, | ||
4063 | 38,83,0,105,0, | ||
4064 | 109,0,112,0,108, | ||
4065 | 0,101,0,65,0, | ||
4066 | 115,0,115,0,105, | ||
4067 | 0,103,0,110,0, | ||
4068 | 109,0,101,0,110, | ||
4069 | 0,116,0,95,0, | ||
4070 | 49,0,52,0,1, | ||
4071 | 208,1,3,1,4, | ||
4072 | 1,3,1084,22,1, | ||
4073 | 71,1,9,1085,17, | ||
4074 | 1086,15,1087,4,24, | ||
4075 | 37,0,68,0,101, | ||
4076 | 0,99,0,108,0, | ||
4077 | 97,0,114,0,97, | ||
4078 | 0,116,0,105,0, | ||
4079 | 111,0,110,0,1, | ||
4080 | -1,1,5,1088,20, | ||
4081 | 1089,4,26,68,0, | ||
4082 | 101,0,99,0,108, | ||
4083 | 0,97,0,114,0, | ||
4084 | 97,0,116,0,105, | ||
4085 | 0,111,0,110,0, | ||
4086 | 95,0,49,0,1, | ||
4087 | 159,1,3,1,3, | ||
4088 | 1,2,1090,22,1, | ||
4089 | 21,1,262,1091,17, | ||
4090 | 1092,15,1093,4,34, | ||
4091 | 37,0,66,0,105, | ||
4092 | 0,110,0,97,0, | ||
4093 | 114,0,121,0,69, | ||
4094 | 0,120,0,112,0, | ||
4095 | 114,0,101,0,115, | ||
4096 | 0,115,0,105,0, | ||
4097 | 111,0,110,0,1, | ||
4098 | -1,1,5,1094,20, | ||
4099 | 1095,4,36,66,0, | ||
4100 | 105,0,110,0,97, | ||
4101 | 0,114,0,121,0, | ||
4102 | 69,0,120,0,112, | ||
4103 | 0,114,0,101,0, | ||
4104 | 115,0,115,0,105, | ||
4105 | 0,111,0,110,0, | ||
4106 | 95,0,53,0,1, | ||
4107 | 244,1,3,1,4, | ||
4108 | 1,3,1096,22,1, | ||
4109 | 107,1,1267,1097,17, | ||
4110 | 1098,15,1070,1,-1, | ||
4111 | 1,5,1099,20,1100, | ||
4112 | 4,36,83,0,105, | ||
4113 | 0,109,0,112,0, | ||
4114 | 108,0,101,0,65, | ||
4115 | 0,115,0,115,0, | ||
4116 | 105,0,103,0,110, | ||
4117 | 0,109,0,101,0, | ||
4118 | 110,0,116,0,95, | ||
4119 | 0,56,0,1,202, | ||
4120 | 1,3,1,6,1, | ||
4121 | 5,1101,22,1,65, | ||
4122 | 1,2021,707,1,1521, | ||
4123 | 1102,17,1103,15,1070, | ||
4124 | 1,-1,1,5,1104, | ||
4125 | 20,1105,4,36,83, | ||
4126 | 0,105,0,109,0, | ||
4127 | 112,0,108,0,101, | ||
4128 | 0,65,0,115,0, | ||
4129 | 115,0,105,0,103, | ||
4130 | 0,110,0,109,0, | ||
4131 | 101,0,110,0,116, | ||
4132 | 0,95,0,49,0, | ||
4133 | 1,195,1,3,1, | ||
4134 | 4,1,3,1106,22, | ||
4135 | 1,58,1,2024,1107, | ||
4136 | 17,1108,15,1109,4, | ||
4137 | 24,37,0,83,0, | ||
4138 | 116,0,97,0,116, | ||
4139 | 0,101,0,67,0, | ||
4140 | 104,0,97,0,110, | ||
4141 | 0,103,0,101,0, | ||
4142 | 1,-1,1,5,1110, | ||
4143 | 20,1111,4,26,83, | ||
4144 | 0,116,0,97,0, | ||
4145 | 116,0,101,0,67, | ||
4146 | 0,104,0,97,0, | ||
4147 | 110,0,103,0,101, | ||
4148 | 0,95,0,49,0, | ||
4149 | 1,178,1,3,1, | ||
4150 | 3,1,2,1112,22, | ||
4151 | 1,41,1,1775,1113, | ||
4152 | 16,0,582,1,19, | ||
4153 | 1114,17,1086,1,2, | ||
4154 | 1090,1,2028,1115,17, | ||
4155 | 1116,15,1117,4,20, | ||
4156 | 37,0,74,0,117, | ||
4157 | 0,109,0,112,0, | ||
4158 | 76,0,97,0,98, | ||
4159 | 0,101,0,108,0, | ||
4160 | 1,-1,1,5,1118, | ||
4161 | 20,1119,4,22,74, | ||
4162 | 0,117,0,109,0, | ||
4163 | 112,0,76,0,97, | ||
4164 | 0,98,0,101,0, | ||
4165 | 108,0,95,0,49, | ||
4166 | 0,1,176,1,3, | ||
4167 | 1,3,1,2,1120, | ||
4168 | 22,1,39,1,2280, | ||
4169 | 1121,17,1122,15,1123, | ||
4170 | 4,34,37,0,70, | ||
4171 | 0,111,0,114,0, | ||
4172 | 76,0,111,0,111, | ||
4173 | 0,112,0,83,0, | ||
4174 | 116,0,97,0,116, | ||
4175 | 0,101,0,109,0, | ||
4176 | 101,0,110,0,116, | ||
4177 | 0,1,-1,1,5, | ||
4178 | 1124,20,1125,4,36, | ||
4179 | 70,0,111,0,114, | ||
4180 | 0,76,0,111,0, | ||
4181 | 111,0,112,0,83, | ||
4182 | 0,116,0,97,0, | ||
4183 | 116,0,101,0,109, | ||
4184 | 0,101,0,110,0, | ||
4185 | 116,0,95,0,50, | ||
4186 | 0,1,190,1,3, | ||
4187 | 1,2,1,1,1126, | ||
4188 | 22,1,53,1,2030, | ||
4189 | 720,1,2031,725,1, | ||
4190 | 2032,730,1,2033,735, | ||
4191 | 1,2034,1127,16,0, | ||
4192 | 573,1,2035,741,1, | ||
4193 | 2036,1128,16,0,528, | ||
4194 | 1,2037,746,1,2038, | ||
4195 | 1129,16,0,532,1, | ||
4196 | 2039,751,1,32,1130, | ||
4197 | 16,0,582,1,2041, | ||
4198 | 757,1,2042,1131,16, | ||
4199 | 0,635,1,2043,762, | ||
4200 | 1,2044,767,1,2226, | ||
4201 | 886,1,2549,1132,16, | ||
4202 | 0,583,1,40,1133, | ||
4203 | 17,1134,15,1135,4, | ||
4204 | 32,37,0,73,0, | ||
4205 | 100,0,101,0,110, | ||
4206 | 0,116,0,69,0, | ||
4207 | 120,0,112,0,114, | ||
4208 | 0,101,0,115,0, | ||
4209 | 115,0,105,0,111, | ||
4210 | 0,110,0,1,-1, | ||
4211 | 1,5,1136,20,1137, | ||
4212 | 4,34,73,0,100, | ||
4213 | 0,101,0,110,0, | ||
4214 | 116,0,69,0,120, | ||
4215 | 0,112,0,114,0, | ||
4216 | 101,0,115,0,115, | ||
4217 | 0,105,0,111,0, | ||
4218 | 110,0,95,0,49, | ||
4219 | 0,1,229,1,3, | ||
4220 | 1,2,1,1,1138, | ||
4221 | 22,1,92,1,1296, | ||
4222 | 1139,17,1140,15,1070, | ||
4223 | 1,-1,1,5,1141, | ||
4224 | 20,1142,4,38,83, | ||
4225 | 0,105,0,109,0, | ||
4226 | 112,0,108,0,101, | ||
4227 | 0,65,0,115,0, | ||
4228 | 115,0,105,0,103, | ||
4229 | 0,110,0,109,0, | ||
4230 | 101,0,110,0,116, | ||
4231 | 0,95,0,50,0, | ||
4232 | 48,0,1,214,1, | ||
4233 | 3,1,6,1,5, | ||
4234 | 1143,22,1,77,1, | ||
4235 | 283,1144,17,1145,15, | ||
4236 | 1093,1,-1,1,5, | ||
4237 | 1146,20,1147,4,36, | ||
4238 | 66,0,105,0,110, | ||
4239 | 0,97,0,114,0, | ||
4240 | 121,0,69,0,120, | ||
4241 | 0,112,0,114,0, | ||
4242 | 101,0,115,0,115, | ||
4243 | 0,105,0,111,0, | ||
4244 | 110,0,95,0,52, | ||
4245 | 0,1,243,1,3, | ||
4246 | 1,4,1,3,1148, | ||
4247 | 22,1,106,1,44, | ||
4248 | 1149,17,1134,1,1, | ||
4249 | 1138,1,1802,774,1, | ||
4250 | 2556,1150,16,0,497, | ||
4251 | 1,47,1151,17,1152, | ||
4252 | 15,1153,4,38,37, | ||
4253 | 0,73,0,100,0, | ||
4254 | 101,0,110,0,116, | ||
4255 | 0,68,0,111,0, | ||
4256 | 116,0,69,0,120, | ||
4257 | 0,112,0,114,0, | ||
4258 | 101,0,115,0,115, | ||
4259 | 0,105,0,111,0, | ||
4260 | 110,0,1,-1,1, | ||
4261 | 5,1154,20,1155,4, | ||
4262 | 40,73,0,100,0, | ||
4263 | 101,0,110,0,116, | ||
4264 | 0,68,0,111,0, | ||
4265 | 116,0,69,0,120, | ||
4266 | 0,112,0,114,0, | ||
4267 | 101,0,115,0,115, | ||
4268 | 0,105,0,111,0, | ||
4269 | 110,0,95,0,49, | ||
4270 | 0,1,230,1,3, | ||
4271 | 1,4,1,3,1156, | ||
4272 | 22,1,93,1,48, | ||
4273 | 1157,17,1158,15,1159, | ||
4274 | 4,58,37,0,73, | ||
4275 | 0,110,0,99,0, | ||
4276 | 114,0,101,0,109, | ||
4277 | 0,101,0,110,0, | ||
4278 | 116,0,68,0,101, | ||
4279 | 0,99,0,114,0, | ||
4280 | 101,0,109,0,101, | ||
4281 | 0,110,0,116,0, | ||
4282 | 69,0,120,0,112, | ||
4283 | 0,114,0,101,0, | ||
4284 | 115,0,115,0,105, | ||
4285 | 0,111,0,110,0, | ||
4286 | 1,-1,1,5,1160, | ||
4287 | 20,1161,4,60,73, | ||
4288 | 0,110,0,99,0, | ||
4289 | 114,0,101,0,109, | ||
4290 | 0,101,0,110,0, | ||
4291 | 116,0,68,0,101, | ||
4292 | 0,99,0,114,0, | ||
4293 | 101,0,109,0,101, | ||
4294 | 0,110,0,116,0, | ||
4295 | 69,0,120,0,112, | ||
4296 | 0,114,0,101,0, | ||
4297 | 115,0,115,0,105, | ||
4298 | 0,111,0,110,0, | ||
4299 | 95,0,52,0,1, | ||
4300 | 234,1,3,1,5, | ||
4301 | 1,4,1162,22,1, | ||
4302 | 97,1,49,1163,17, | ||
4303 | 1164,15,1159,1,-1, | ||
4304 | 1,5,1165,20,1166, | ||
4305 | 4,60,73,0,110, | ||
4306 | 0,99,0,114,0, | ||
4307 | 101,0,109,0,101, | ||
4308 | 0,110,0,116,0, | ||
4309 | 68,0,101,0,99, | ||
4310 | 0,114,0,101,0, | ||
4311 | 109,0,101,0,110, | ||
4312 | 0,116,0,69,0, | ||
4313 | 120,0,112,0,114, | ||
4314 | 0,101,0,115,0, | ||
4315 | 115,0,105,0,111, | ||
4316 | 0,110,0,95,0, | ||
4317 | 51,0,1,233,1, | ||
4318 | 3,1,5,1,4, | ||
4319 | 1167,22,1,96,1, | ||
4320 | 2309,1168,16,0,582, | ||
4321 | 1,51,1169,17,1170, | ||
4322 | 15,1159,1,-1,1, | ||
4323 | 5,1171,20,1172,4, | ||
4324 | 60,73,0,110,0, | ||
4325 | 99,0,114,0,101, | ||
4326 | 0,109,0,101,0, | ||
4327 | 110,0,116,0,68, | ||
4328 | 0,101,0,99,0, | ||
4329 | 114,0,101,0,109, | ||
4330 | 0,101,0,110,0, | ||
4331 | 116,0,69,0,120, | ||
4332 | 0,112,0,114,0, | ||
4333 | 101,0,115,0,115, | ||
4334 | 0,105,0,111,0, | ||
4335 | 110,0,95,0,49, | ||
4336 | 0,1,231,1,3, | ||
4337 | 1,3,1,2,1173, | ||
4338 | 22,1,94,1,50, | ||
4339 | 1174,17,1175,15,1159, | ||
4340 | 1,-1,1,5,1176, | ||
4341 | 20,1177,4,60,73, | ||
4342 | 0,110,0,99,0, | ||
4343 | 114,0,101,0,109, | ||
4344 | 0,101,0,110,0, | ||
4345 | 116,0,68,0,101, | ||
4346 | 0,99,0,114,0, | ||
4347 | 101,0,109,0,101, | ||
4348 | 0,110,0,116,0, | ||
4349 | 69,0,120,0,112, | ||
4350 | 0,114,0,101,0, | ||
4351 | 115,0,115,0,105, | ||
4352 | 0,111,0,110,0, | ||
4353 | 95,0,50,0,1, | ||
4354 | 232,1,3,1,3, | ||
4355 | 1,2,1178,22,1, | ||
4356 | 95,1,305,1179,17, | ||
4357 | 1180,15,1093,1,-1, | ||
4358 | 1,5,1181,20,1182, | ||
4359 | 4,36,66,0,105, | ||
4360 | 0,110,0,97,0, | ||
4361 | 114,0,121,0,69, | ||
4362 | 0,120,0,112,0, | ||
4363 | 114,0,101,0,115, | ||
4364 | 0,115,0,105,0, | ||
4365 | 111,0,110,0,95, | ||
4366 | 0,51,0,1,242, | ||
4367 | 1,3,1,4,1, | ||
4368 | 3,1183,22,1,105, | ||
4369 | 1,525,1184,17,1185, | ||
4370 | 15,1186,4,34,37, | ||
4371 | 0,82,0,111,0, | ||
4372 | 116,0,97,0,116, | ||
4373 | 0,105,0,111,0, | ||
4374 | 110,0,67,0,111, | ||
4375 | 0,110,0,115,0, | ||
4376 | 116,0,97,0,110, | ||
4377 | 0,116,0,1,-1, | ||
4378 | 1,5,1187,20,1188, | ||
4379 | 4,36,82,0,111, | ||
4380 | 0,116,0,97,0, | ||
4381 | 116,0,105,0,111, | ||
4382 | 0,110,0,67,0, | ||
4383 | 111,0,110,0,115, | ||
4384 | 0,116,0,97,0, | ||
4385 | 110,0,116,0,95, | ||
4386 | 0,49,0,1,227, | ||
4387 | 1,3,1,10,1, | ||
4388 | 9,1189,22,1,90, | ||
4389 | 1,63,1190,17,1191, | ||
4390 | 15,1192,4,38,37, | ||
4391 | 0,84,0,121,0, | ||
4392 | 112,0,101,0,99, | ||
4393 | 0,97,0,115,0, | ||
4394 | 116,0,69,0,120, | ||
4395 | 0,112,0,114,0, | ||
4396 | 101,0,115,0,115, | ||
4397 | 0,105,0,111,0, | ||
4398 | 110,0,1,-1,1, | ||
4399 | 5,1193,20,1194,4, | ||
4400 | 40,84,0,121,0, | ||
4401 | 112,0,101,0,99, | ||
4402 | 0,97,0,115,0, | ||
4403 | 116,0,69,0,120, | ||
4404 | 0,112,0,114,0, | ||
4405 | 101,0,115,0,115, | ||
4406 | 0,105,0,111,0, | ||
4407 | 110,0,95,0,50, | ||
4408 | 0,1,264,1,3, | ||
4409 | 1,5,1,4,1195, | ||
4410 | 22,1,127,1,66, | ||
4411 | 1196,17,1197,15,1192, | ||
4412 | 1,-1,1,5,1198, | ||
4413 | 20,1199,4,40,84, | ||
4414 | 0,121,0,112,0, | ||
4415 | 101,0,99,0,97, | ||
4416 | 0,115,0,116,0, | ||
4417 | 69,0,120,0,112, | ||
4418 | 0,114,0,101,0, | ||
4419 | 115,0,115,0,105, | ||
4420 | 0,111,0,110,0, | ||
4421 | 95,0,51,0,1, | ||
4422 | 265,1,3,1,7, | ||
4423 | 1,6,1200,22,1, | ||
4424 | 128,1,67,1201,17, | ||
4425 | 1202,15,1192,1,-1, | ||
4426 | 1,5,1203,20,1204, | ||
4427 | 4,40,84,0,121, | ||
4428 | 0,112,0,101,0, | ||
4429 | 99,0,97,0,115, | ||
4430 | 0,116,0,69,0, | ||
4431 | 120,0,112,0,114, | ||
4432 | 0,101,0,115,0, | ||
4433 | 115,0,105,0,111, | ||
4434 | 0,110,0,95,0, | ||
4435 | 55,0,1,269,1, | ||
4436 | 3,1,8,1,7, | ||
4437 | 1205,22,1,132,1, | ||
4438 | 68,1206,17,1207,15, | ||
4439 | 1192,1,-1,1,5, | ||
4440 | 1208,20,1209,4,40, | ||
4441 | 84,0,121,0,112, | ||
4442 | 0,101,0,99,0, | ||
4443 | 97,0,115,0,116, | ||
4444 | 0,69,0,120,0, | ||
4445 | 112,0,114,0,101, | ||
4446 | 0,115,0,115,0, | ||
4447 | 105,0,111,0,110, | ||
4448 | 0,95,0,53,0, | ||
4449 | 1,267,1,3,1, | ||
4450 | 8,1,7,1210,22, | ||
4451 | 1,130,1,69,1211, | ||
4452 | 17,1212,15,1192,1, | ||
4453 | -1,1,5,1213,20, | ||
4454 | 1214,4,40,84,0, | ||
4455 | 121,0,112,0,101, | ||
4456 | 0,99,0,97,0, | ||
4457 | 115,0,116,0,69, | ||
4458 | 0,120,0,112,0, | ||
4459 | 114,0,101,0,115, | ||
4460 | 0,115,0,105,0, | ||
4461 | 111,0,110,0,95, | ||
4462 | 0,54,0,1,268, | ||
4463 | 1,3,1,6,1, | ||
4464 | 5,1215,22,1,131, | ||
4465 | 1,70,1216,17,1217, | ||
4466 | 15,1192,1,-1,1, | ||
4467 | 5,1218,20,1219,4, | ||
4468 | 40,84,0,121,0, | ||
4469 | 112,0,101,0,99, | ||
4470 | 0,97,0,115,0, | ||
4471 | 116,0,69,0,120, | ||
4472 | 0,112,0,114,0, | ||
4473 | 101,0,115,0,115, | ||
4474 | 0,105,0,111,0, | ||
4475 | 110,0,95,0,52, | ||
4476 | 0,1,266,1,3, | ||
4477 | 1,6,1,5,1220, | ||
4478 | 22,1,129,1,74, | ||
4479 | 1221,17,1222,15,1192, | ||
4480 | 1,-1,1,5,1223, | ||
4481 | 20,1224,4,40,84, | ||
4482 | 0,121,0,112,0, | ||
4483 | 101,0,99,0,97, | ||
4484 | 0,115,0,116,0, | ||
4485 | 69,0,120,0,112, | ||
4486 | 0,114,0,101,0, | ||
4487 | 115,0,115,0,105, | ||
4488 | 0,111,0,110,0, | ||
4489 | 95,0,57,0,1, | ||
4490 | 271,1,3,1,7, | ||
4491 | 1,6,1225,22,1, | ||
4492 | 134,1,1013,1226,17, | ||
4493 | 1227,15,1076,1,-1, | ||
4494 | 1,5,1228,20,1229, | ||
4495 | 4,46,80,0,97, | ||
4496 | 0,114,0,101,0, | ||
4497 | 110,0,116,0,104, | ||
4498 | 0,101,0,115,0, | ||
4499 | 105,0,115,0,69, | ||
4500 | 0,120,0,112,0, | ||
4501 | 114,0,101,0,115, | ||
4502 | 0,115,0,105,0, | ||
4503 | 111,0,110,0,95, | ||
4504 | 0,49,0,1,261, | ||
4505 | 1,3,1,4,1, | ||
4506 | 3,1230,22,1,124, | ||
4507 | 1,1332,1231,17,1232, | ||
4508 | 15,1070,1,-1,1, | ||
4509 | 5,1233,20,1234,4, | ||
4510 | 38,83,0,105,0, | ||
4511 | 109,0,112,0,108, | ||
4512 | 0,101,0,65,0, | ||
4513 | 115,0,115,0,105, | ||
4514 | 0,103,0,110,0, | ||
4515 | 109,0,101,0,110, | ||
4516 | 0,116,0,95,0, | ||
4517 | 49,0,57,0,1, | ||
4518 | 213,1,3,1,6, | ||
4519 | 1,5,1235,22,1, | ||
4520 | 76,1,1048,1236,17, | ||
4521 | 1237,15,1093,1,-1, | ||
4522 | 1,5,1238,20,1239, | ||
4523 | 4,38,66,0,105, | ||
4524 | 0,110,0,97,0, | ||
4525 | 114,0,121,0,69, | ||
4526 | 0,120,0,112,0, | ||
4527 | 114,0,101,0,115, | ||
4528 | 0,115,0,105,0, | ||
4529 | 111,0,110,0,95, | ||
4530 | 0,49,0,56,0, | ||
4531 | 1,257,1,3,1, | ||
4532 | 4,1,3,1240,22, | ||
4533 | 1,120,1,1585,1241, | ||
4534 | 17,1242,15,1243,4, | ||
4535 | 32,37,0,82,0, | ||
4536 | 101,0,116,0,117, | ||
4537 | 0,114,0,110,0, | ||
4538 | 83,0,116,0,97, | ||
4539 | 0,116,0,101,0, | ||
4540 | 109,0,101,0,110, | ||
4541 | 0,116,0,1,-1, | ||
4542 | 1,5,1244,20,1245, | ||
4543 | 4,34,82,0,101, | ||
4544 | 0,116,0,117,0, | ||
4545 | 114,0,110,0,83, | ||
4546 | 0,116,0,97,0, | ||
4547 | 116,0,101,0,109, | ||
4548 | 0,101,0,110,0, | ||
4549 | 116,0,95,0,50, | ||
4550 | 0,1,220,1,3, | ||
4551 | 1,2,1,1,1246, | ||
4552 | 22,1,83,1,2023, | ||
4553 | 1247,17,1248,15,1109, | ||
4554 | 1,-1,1,5,1249, | ||
4555 | 20,1250,4,26,83, | ||
4556 | 0,116,0,97,0, | ||
4557 | 116,0,101,0,67, | ||
4558 | 0,104,0,97,0, | ||
4559 | 110,0,103,0,101, | ||
4560 | 0,95,0,50,0, | ||
4561 | 1,179,1,3,1, | ||
4562 | 3,1,2,1251,22, | ||
4563 | 1,42,1,82,1252, | ||
4564 | 17,1253,15,1254,4, | ||
4565 | 32,37,0,85,0, | ||
4566 | 110,0,97,0,114, | ||
4567 | 0,121,0,69,0, | ||
4568 | 120,0,112,0,114, | ||
4569 | 0,101,0,115,0, | ||
4570 | 115,0,105,0,111, | ||
4571 | 0,110,0,1,-1, | ||
4572 | 1,5,1255,20,1256, | ||
4573 | 4,34,85,0,110, | ||
4574 | 0,97,0,114,0, | ||
4575 | 121,0,69,0,120, | ||
4576 | 0,112,0,114,0, | ||
4577 | 101,0,115,0,115, | ||
4578 | 0,105,0,111,0, | ||
4579 | 110,0,95,0,51, | ||
4580 | 0,1,260,1,3, | ||
4581 | 1,3,1,2,1257, | ||
4582 | 22,1,123,1,2026, | ||
4583 | 1258,17,1259,15,1260, | ||
4584 | 4,28,37,0,74, | ||
4585 | 0,117,0,109,0, | ||
4586 | 112,0,83,0,116, | ||
4587 | 0,97,0,116,0, | ||
4588 | 101,0,109,0,101, | ||
4589 | 0,110,0,116,0, | ||
4590 | 1,-1,1,5,1261, | ||
4591 | 20,1262,4,30,74, | ||
4592 | 0,117,0,109,0, | ||
4593 | 112,0,83,0,116, | ||
4594 | 0,97,0,116,0, | ||
4595 | 101,0,109,0,101, | ||
4596 | 0,110,0,116,0, | ||
4597 | 95,0,49,0,1, | ||
4598 | 177,1,3,1,3, | ||
4599 | 1,2,1263,22,1, | ||
4600 | 40,1,1591,1264,17, | ||
4601 | 1265,15,1243,1,-1, | ||
4602 | 1,5,1266,20,1267, | ||
4603 | 4,34,82,0,101, | ||
4604 | 0,116,0,117,0, | ||
4605 | 114,0,110,0,83, | ||
4606 | 0,116,0,97,0, | ||
4607 | 116,0,101,0,109, | ||
4608 | 0,101,0,110,0, | ||
4609 | 116,0,95,0,49, | ||
4610 | 0,1,219,1,3, | ||
4611 | 1,3,1,2,1268, | ||
4612 | 22,1,82,1,1341, | ||
4613 | 1269,17,1270,15,1070, | ||
4614 | 1,-1,1,5,1271, | ||
4615 | 20,1272,4,36,83, | ||
4616 | 0,105,0,109,0, | ||
4617 | 112,0,108,0,101, | ||
4618 | 0,65,0,115,0, | ||
4619 | 115,0,105,0,103, | ||
4620 | 0,110,0,109,0, | ||
4621 | 101,0,110,0,116, | ||
4622 | 0,95,0,54,0, | ||
4623 | 1,200,1,3,1, | ||
4624 | 4,1,3,1273,22, | ||
4625 | 1,63,1,328,1274, | ||
4626 | 17,1275,15,1093,1, | ||
4627 | -1,1,5,1276,20, | ||
4628 | 1277,4,36,66,0, | ||
4629 | 105,0,110,0,97, | ||
4630 | 0,114,0,121,0, | ||
4631 | 69,0,120,0,112, | ||
4632 | 0,114,0,101,0, | ||
4633 | 115,0,115,0,105, | ||
4634 | 0,111,0,110,0, | ||
4635 | 95,0,50,0,1, | ||
4636 | 241,1,3,1,4, | ||
4637 | 1,3,1278,22,1, | ||
4638 | 104,1,1303,1279,17, | ||
4639 | 1280,15,1070,1,-1, | ||
4640 | 1,5,1281,20,1282, | ||
4641 | 4,36,83,0,105, | ||
4642 | 0,109,0,112,0, | ||
4643 | 108,0,101,0,65, | ||
4644 | 0,115,0,115,0, | ||
4645 | 105,0,103,0,110, | ||
4646 | 0,109,0,101,0, | ||
4647 | 110,0,116,0,95, | ||
4648 | 0,55,0,1,201, | ||
4649 | 1,3,1,6,1, | ||
4650 | 5,1283,22,1,64, | ||
4651 | 1,1096,1284,17,1285, | ||
4652 | 15,1286,4,26,37, | ||
4653 | 0,70,0,117,0, | ||
4654 | 110,0,99,0,116, | ||
4655 | 0,105,0,111,0, | ||
4656 | 110,0,67,0,97, | ||
4657 | 0,108,0,108,0, | ||
4658 | 1,-1,1,5,1287, | ||
4659 | 20,1288,4,28,70, | ||
4660 | 0,117,0,110,0, | ||
4661 | 99,0,116,0,105, | ||
4662 | 0,111,0,110,0, | ||
4663 | 67,0,97,0,108, | ||
4664 | 0,108,0,95,0, | ||
4665 | 49,0,1,272,1, | ||
4666 | 3,1,5,1,4, | ||
4667 | 1289,22,1,135,1, | ||
4668 | 93,1290,17,1291,15, | ||
4669 | 1254,1,-1,1,5, | ||
4670 | 1292,20,1293,4,34, | ||
4671 | 85,0,110,0,97, | ||
4672 | 0,114,0,121,0, | ||
4673 | 69,0,120,0,112, | ||
4674 | 0,114,0,101,0, | ||
4675 | 115,0,115,0,105, | ||
4676 | 0,111,0,110,0, | ||
4677 | 95,0,50,0,1, | ||
4678 | 259,1,3,1,3, | ||
4679 | 1,2,1294,22,1, | ||
4680 | 122,1,1550,1295,17, | ||
4681 | 1296,15,1070,1,-1, | ||
4682 | 1,5,1297,20,1298, | ||
4683 | 4,38,83,0,105, | ||
4684 | 0,109,0,112,0, | ||
4685 | 108,0,101,0,65, | ||
4686 | 0,115,0,115,0, | ||
4687 | 105,0,103,0,110, | ||
4688 | 0,109,0,101,0, | ||
4689 | 110,0,116,0,95, | ||
4690 | 0,49,0,51,0, | ||
4691 | 1,207,1,3,1, | ||
4692 | 4,1,3,1299,22, | ||
4693 | 1,70,1,2354,853, | ||
4694 | 1,2355,858,1,2040, | ||
4695 | 1300,16,0,536,1, | ||
4696 | 2358,807,1,352,1301, | ||
4697 | 17,1302,15,1093,1, | ||
4698 | -1,1,5,1303,20, | ||
4699 | 1304,4,36,66,0, | ||
4700 | 105,0,110,0,97, | ||
4701 | 0,114,0,121,0, | ||
4702 | 69,0,120,0,112, | ||
4703 | 0,114,0,101,0, | ||
4704 | 115,0,115,0,105, | ||
4705 | 0,111,0,110,0, | ||
4706 | 95,0,49,0,1, | ||
4707 | 240,1,3,1,4, | ||
4708 | 1,3,1305,22,1, | ||
4709 | 103,1,1859,1306,16, | ||
4710 | 0,365,1,1860,820, | ||
4711 | 1,1804,1307,16,0, | ||
4712 | 582,1,107,1308,17, | ||
4713 | 1309,15,1254,1,-1, | ||
4714 | 1,5,1310,20,1311, | ||
4715 | 4,34,85,0,110, | ||
4716 | 0,97,0,114,0, | ||
4717 | 121,0,69,0,120, | ||
4718 | 0,112,0,114,0, | ||
4719 | 101,0,115,0,115, | ||
4720 | 0,105,0,111,0, | ||
4721 | 110,0,95,0,49, | ||
4722 | 0,1,258,1,3, | ||
4723 | 1,3,1,2,1312, | ||
4724 | 22,1,121,1,1114, | ||
4725 | 1313,17,1152,1,3, | ||
4726 | 1156,1,2105,1314,16, | ||
4727 | 0,582,1,1872,1315, | ||
4728 | 16,0,375,1,1873, | ||
4729 | 829,1,118,1316,17, | ||
4730 | 1317,15,1093,1,-1, | ||
4731 | 1,5,1318,20,1319, | ||
4732 | 4,38,66,0,105, | ||
4733 | 0,110,0,97,0, | ||
4734 | 114,0,121,0,69, | ||
4735 | 0,120,0,112,0, | ||
4736 | 114,0,101,0,115, | ||
4737 | 0,115,0,105,0, | ||
4738 | 111,0,110,0,95, | ||
4739 | 0,49,0,52,0, | ||
4740 | 1,253,1,3,1, | ||
4741 | 4,1,3,1320,22, | ||
4742 | 1,116,1,1123,1321, | ||
4743 | 17,1322,15,1070,1, | ||
4744 | -1,1,5,1323,20, | ||
4745 | 1324,4,38,83,0, | ||
4746 | 105,0,109,0,112, | ||
4747 | 0,108,0,101,0, | ||
4748 | 65,0,115,0,115, | ||
4749 | 0,105,0,103,0, | ||
4750 | 110,0,109,0,101, | ||
4751 | 0,110,0,116,0, | ||
4752 | 95,0,49,0,50, | ||
4753 | 0,1,206,1,3, | ||
4754 | 1,6,1,5,1325, | ||
4755 | 22,1,69,1,371, | ||
4756 | 1326,17,1327,15,1328, | ||
4757 | 4,46,37,0,70, | ||
4758 | 0,117,0,110,0, | ||
4759 | 99,0,116,0,105, | ||
4760 | 0,111,0,110,0, | ||
4761 | 67,0,97,0,108, | ||
4762 | 0,108,0,69,0, | ||
4763 | 120,0,112,0,114, | ||
4764 | 0,101,0,115,0, | ||
4765 | 115,0,105,0,111, | ||
4766 | 0,110,0,1,-1, | ||
4767 | 1,5,1329,20,1330, | ||
4768 | 4,48,70,0,117, | ||
4769 | 0,110,0,99,0, | ||
4770 | 116,0,105,0,111, | ||
4771 | 0,110,0,67,0, | ||
4772 | 97,0,108,0,108, | ||
4773 | 0,69,0,120,0, | ||
4774 | 112,0,114,0,101, | ||
4775 | 0,115,0,115,0, | ||
4776 | 105,0,111,0,110, | ||
4777 | 0,95,0,49,0, | ||
4778 | 1,239,1,3,1, | ||
4779 | 2,1,1,1331,22, | ||
4780 | 1,102,1,1377,1332, | ||
4781 | 17,1333,15,1070,1, | ||
4782 | -1,1,5,1334,20, | ||
4783 | 1335,4,36,83,0, | ||
4784 | 105,0,109,0,112, | ||
4785 | 0,108,0,101,0, | ||
4786 | 65,0,115,0,115, | ||
4787 | 0,105,0,103,0, | ||
4788 | 110,0,109,0,101, | ||
4789 | 0,110,0,116,0, | ||
4790 | 95,0,53,0,1, | ||
4791 | 199,1,3,1,4, | ||
4792 | 1,3,1336,22,1, | ||
4793 | 62,1,375,1337,17, | ||
4794 | 1338,15,1159,1,-1, | ||
4795 | 1,5,1339,20,1340, | ||
4796 | 4,60,73,0,110, | ||
4797 | 0,99,0,114,0, | ||
4798 | 101,0,109,0,101, | ||
4799 | 0,110,0,116,0, | ||
4800 | 68,0,101,0,99, | ||
4801 | 0,114,0,101,0, | ||
4802 | 109,0,101,0,110, | ||
4803 | 0,116,0,69,0, | ||
4804 | 120,0,112,0,114, | ||
4805 | 0,101,0,115,0, | ||
4806 | 115,0,105,0,111, | ||
4807 | 0,110,0,95,0, | ||
4808 | 56,0,1,238,1, | ||
4809 | 3,1,5,1,4, | ||
4810 | 1341,22,1,101,1, | ||
4811 | 377,1342,17,1343,15, | ||
4812 | 1159,1,-1,1,5, | ||
4813 | 1344,20,1345,4,60, | ||
4814 | 73,0,110,0,99, | ||
4815 | 0,114,0,101,0, | ||
4816 | 109,0,101,0,110, | ||
4817 | 0,116,0,68,0, | ||
4818 | 101,0,99,0,114, | ||
4819 | 0,101,0,109,0, | ||
4820 | 101,0,110,0,116, | ||
4821 | 0,69,0,120,0, | ||
4822 | 112,0,114,0,101, | ||
4823 | 0,115,0,115,0, | ||
4824 | 105,0,111,0,110, | ||
4825 | 0,95,0,53,0, | ||
4826 | 1,235,1,3,1, | ||
4827 | 3,1,2,1346,22, | ||
4828 | 1,98,1,2135,836, | ||
4829 | 1,827,1347,17,1348, | ||
4830 | 15,1093,1,-1,1, | ||
4831 | 5,1349,20,1350,4, | ||
4832 | 38,66,0,105,0, | ||
4833 | 110,0,97,0,114, | ||
4834 | 0,121,0,69,0, | ||
4835 | 120,0,112,0,114, | ||
4836 | 0,101,0,115,0, | ||
4837 | 115,0,105,0,111, | ||
4838 | 0,110,0,95,0, | ||
4839 | 49,0,53,0,1, | ||
4840 | 254,1,3,1,4, | ||
4841 | 1,3,1351,22,1, | ||
4842 | 117,1,380,1352,17, | ||
4843 | 1353,15,1354,4,38, | ||
4844 | 37,0,67,0,111, | ||
4845 | 0,110,0,115,0, | ||
4846 | 116,0,97,0,110, | ||
4847 | 0,116,0,69,0, | ||
4848 | 120,0,112,0,114, | ||
4849 | 0,101,0,115,0, | ||
4850 | 115,0,105,0,111, | ||
4851 | 0,110,0,1,-1, | ||
4852 | 1,5,1355,20,1356, | ||
4853 | 4,40,67,0,111, | ||
4854 | 0,110,0,115,0, | ||
4855 | 116,0,97,0,110, | ||
4856 | 0,116,0,69,0, | ||
4857 | 120,0,112,0,114, | ||
4858 | 0,101,0,115,0, | ||
4859 | 115,0,105,0,111, | ||
4860 | 0,110,0,95,0, | ||
4861 | 49,0,1,228,1, | ||
4862 | 3,1,2,1,1, | ||
4863 | 1357,22,1,91,1, | ||
4864 | 130,1358,17,1359,15, | ||
4865 | 1093,1,-1,1,5, | ||
4866 | 1360,20,1361,4,38, | ||
4867 | 66,0,105,0,110, | ||
4868 | 0,97,0,114,0, | ||
4869 | 121,0,69,0,120, | ||
4870 | 0,112,0,114,0, | ||
4871 | 101,0,115,0,115, | ||
4872 | 0,105,0,111,0, | ||
4873 | 110,0,95,0,49, | ||
4874 | 0,51,0,1,252, | ||
4875 | 1,3,1,4,1, | ||
4876 | 3,1362,22,1,115, | ||
4877 | 1,1628,1363,17,1364, | ||
4878 | 15,1365,4,22,37, | ||
4879 | 0,65,0,115,0, | ||
4880 | 115,0,105,0,103, | ||
4881 | 0,110,0,109,0, | ||
4882 | 101,0,110,0,116, | ||
4883 | 0,1,-1,1,5, | ||
4884 | 1366,20,1367,4,24, | ||
4885 | 65,0,115,0,115, | ||
4886 | 0,105,0,103,0, | ||
4887 | 110,0,109,0,101, | ||
4888 | 0,110,0,116,0, | ||
4889 | 95,0,49,0,1, | ||
4890 | 193,1,3,1,4, | ||
4891 | 1,3,1368,22,1, | ||
4892 | 56,1,2074,1369,16, | ||
4893 | 0,582,1,373,1370, | ||
4894 | 17,1371,15,1159,1, | ||
4895 | -1,1,5,1372,20, | ||
4896 | 1373,4,60,73,0, | ||
4897 | 110,0,99,0,114, | ||
4898 | 0,101,0,109,0, | ||
4899 | 101,0,110,0,116, | ||
4900 | 0,68,0,101,0, | ||
4901 | 99,0,114,0,101, | ||
4902 | 0,109,0,101,0, | ||
4903 | 110,0,116,0,69, | ||
4904 | 0,120,0,112,0, | ||
4905 | 114,0,101,0,115, | ||
4906 | 0,115,0,105,0, | ||
4907 | 111,0,110,0,95, | ||
4908 | 0,54,0,1,236, | ||
4909 | 1,3,1,3,1, | ||
4910 | 2,1374,22,1,99, | ||
4911 | 1,379,1375,17,1376, | ||
4912 | 15,1159,1,-1,1, | ||
4913 | 5,1377,20,1378,4, | ||
4914 | 60,73,0,110,0, | ||
4915 | 99,0,114,0,101, | ||
4916 | 0,109,0,101,0, | ||
4917 | 110,0,116,0,68, | ||
4918 | 0,101,0,99,0, | ||
4919 | 114,0,101,0,109, | ||
4920 | 0,101,0,110,0, | ||
4921 | 116,0,69,0,120, | ||
4922 | 0,112,0,114,0, | ||
4923 | 101,0,115,0,115, | ||
4924 | 0,105,0,111,0, | ||
4925 | 110,0,95,0,55, | ||
4926 | 0,1,237,1,3, | ||
4927 | 1,5,1,4,1379, | ||
4928 | 22,1,100,1,143, | ||
4929 | 1380,17,1381,15,1093, | ||
4930 | 1,-1,1,5,1382, | ||
4931 | 20,1383,4,38,66, | ||
4932 | 0,105,0,110,0, | ||
4933 | 97,0,114,0,121, | ||
4934 | 0,69,0,120,0, | ||
4935 | 112,0,114,0,101, | ||
4936 | 0,115,0,115,0, | ||
4937 | 105,0,111,0,110, | ||
4938 | 0,95,0,49,0, | ||
4939 | 50,0,1,251,1, | ||
4940 | 3,1,4,1,3, | ||
4941 | 1384,22,1,114,1, | ||
4942 | 1901,1385,16,0,582, | ||
4943 | 1,1152,1386,17,1387, | ||
4944 | 15,1070,1,-1,1, | ||
4945 | 5,1388,20,1389,4, | ||
4946 | 38,83,0,105,0, | ||
4947 | 109,0,112,0,108, | ||
4948 | 0,101,0,65,0, | ||
4949 | 115,0,115,0,105, | ||
4950 | 0,103,0,110,0, | ||
4951 | 109,0,101,0,110, | ||
4952 | 0,116,0,95,0, | ||
4953 | 50,0,52,0,1, | ||
4954 | 218,1,3,1,6, | ||
4955 | 1,5,1390,22,1, | ||
4956 | 81,1,1555,1391,16, | ||
4957 | 0,598,1,1406,1392, | ||
4958 | 17,1393,15,1070,1, | ||
4959 | -1,1,5,1394,20, | ||
4960 | 1395,4,38,83,0, | ||
4961 | 105,0,109,0,112, | ||
4962 | 0,108,0,101,0, | ||
4963 | 65,0,115,0,115, | ||
4964 | 0,105,0,103,0, | ||
4965 | 110,0,109,0,101, | ||
4966 | 0,110,0,116,0, | ||
4967 | 95,0,49,0,55, | ||
4968 | 0,1,211,1,3, | ||
4969 | 1,4,1,3,1396, | ||
4970 | 22,1,74,1,1159, | ||
4971 | 1397,17,1398,15,1070, | ||
4972 | 1,-1,1,5,1399, | ||
4973 | 20,1400,4,38,83, | ||
4974 | 0,105,0,109,0, | ||
4975 | 112,0,108,0,101, | ||
4976 | 0,65,0,115,0, | ||
4977 | 115,0,105,0,103, | ||
4978 | 0,110,0,109,0, | ||
4979 | 101,0,110,0,116, | ||
4980 | 0,95,0,49,0, | ||
4981 | 49,0,1,205,1, | ||
4982 | 3,1,6,1,5, | ||
4983 | 1401,22,1,68,1, | ||
4984 | 157,1402,17,1403,15, | ||
4985 | 1093,1,-1,1,5, | ||
4986 | 1404,20,1405,4,38, | ||
4987 | 66,0,105,0,110, | ||
4988 | 0,97,0,114,0, | ||
4989 | 121,0,69,0,120, | ||
4990 | 0,112,0,114,0, | ||
4991 | 101,0,115,0,115, | ||
4992 | 0,105,0,111,0, | ||
4993 | 110,0,95,0,49, | ||
4994 | 0,49,0,1,250, | ||
4995 | 1,3,1,4,1, | ||
4996 | 3,1406,22,1,113, | ||
4997 | 1,1413,1407,17,1408, | ||
4998 | 15,1070,1,-1,1, | ||
4999 | 5,1409,20,1410,4, | ||
5000 | 36,83,0,105,0, | ||
5001 | 109,0,112,0,108, | ||
5002 | 0,101,0,65,0, | ||
5003 | 115,0,115,0,105, | ||
5004 | 0,103,0,110,0, | ||
5005 | 109,0,101,0,110, | ||
5006 | 0,116,0,95,0, | ||
5007 | 52,0,1,198,1, | ||
5008 | 3,1,4,1,3, | ||
5009 | 1411,22,1,61,1, | ||
5010 | 883,1412,17,1413,15, | ||
5011 | 1093,1,-1,1,5, | ||
5012 | 1414,20,1415,4,38, | ||
5013 | 66,0,105,0,110, | ||
5014 | 0,97,0,114,0, | ||
5015 | 121,0,69,0,120, | ||
5016 | 0,112,0,114,0, | ||
5017 | 101,0,115,0,115, | ||
5018 | 0,105,0,111,0, | ||
5019 | 110,0,95,0,49, | ||
5020 | 0,54,0,1,255, | ||
5021 | 1,3,1,4,1, | ||
5022 | 3,1416,22,1,118, | ||
5023 | 1,2104,801,1,1478, | ||
5024 | 1417,17,1418,15,1070, | ||
5025 | 1,-1,1,5,1419, | ||
5026 | 20,1420,4,38,83, | ||
5027 | 0,105,0,109,0, | ||
5028 | 112,0,108,0,101, | ||
5029 | 0,65,0,115,0, | ||
5030 | 115,0,105,0,103, | ||
5031 | 0,110,0,109,0, | ||
5032 | 101,0,110,0,116, | ||
5033 | 0,95,0,49,0, | ||
5034 | 53,0,1,209,1, | ||
5035 | 3,1,4,1,3, | ||
5036 | 1421,22,1,72,1, | ||
5037 | 1620,1422,17,1423,15, | ||
5038 | 1365,1,-1,1,5, | ||
5039 | 1424,20,1425,4,24, | ||
5040 | 65,0,115,0,115, | ||
5041 | 0,105,0,103,0, | ||
5042 | 110,0,109,0,101, | ||
5043 | 0,110,0,116,0, | ||
5044 | 95,0,50,0,1, | ||
5045 | 194,1,3,1,2, | ||
5046 | 1,1,1426,22,1, | ||
5047 | 57,1,1621,1427,16, | ||
5048 | 0,655,1,1574,787, | ||
5049 | 1,172,1428,17,1429, | ||
5050 | 15,1093,1,-1,1, | ||
5051 | 5,1430,20,1431,4, | ||
5052 | 38,66,0,105,0, | ||
5053 | 110,0,97,0,114, | ||
5054 | 0,121,0,69,0, | ||
5055 | 120,0,112,0,114, | ||
5056 | 0,101,0,115,0, | ||
5057 | 115,0,105,0,111, | ||
5058 | 0,110,0,95,0, | ||
5059 | 49,0,48,0,1, | ||
5060 | 249,1,3,1,4, | ||
5061 | 1,3,1432,22,1, | ||
5062 | 112,1,1931,863,1, | ||
5063 | 2360,813,1,1188,1433, | ||
5064 | 17,1434,15,1070,1, | ||
5065 | -1,1,5,1435,20, | ||
5066 | 1436,4,38,83,0, | ||
5067 | 105,0,109,0,112, | ||
5068 | 0,108,0,101,0, | ||
5069 | 65,0,115,0,115, | ||
5070 | 0,105,0,103,0, | ||
5071 | 110,0,109,0,101, | ||
5072 | 0,110,0,116,0, | ||
5073 | 95,0,50,0,51, | ||
5074 | 0,1,217,1,3, | ||
5075 | 1,6,1,5,1437, | ||
5076 | 22,1,80,1,1442, | ||
5077 | 1438,17,1439,15,1070, | ||
5078 | 1,-1,1,5,1440, | ||
5079 | 20,1441,4,38,83, | ||
5080 | 0,105,0,109,0, | ||
5081 | 112,0,108,0,101, | ||
5082 | 0,65,0,115,0, | ||
5083 | 115,0,105,0,103, | ||
5084 | 0,110,0,109,0, | ||
5085 | 101,0,110,0,116, | ||
5086 | 0,95,0,49,0, | ||
5087 | 54,0,1,210,1, | ||
5088 | 3,1,4,1,3, | ||
5089 | 1442,22,1,73,1, | ||
5090 | 1694,1443,16,0,189, | ||
5091 | 1,942,1444,17,1445, | ||
5092 | 15,1093,1,-1,1, | ||
5093 | 5,1446,20,1447,4, | ||
5094 | 38,66,0,105,0, | ||
5095 | 110,0,97,0,114, | ||
5096 | 0,121,0,69,0, | ||
5097 | 120,0,112,0,114, | ||
5098 | 0,101,0,115,0, | ||
5099 | 115,0,105,0,111, | ||
5100 | 0,110,0,95,0, | ||
5101 | 49,0,55,0,1, | ||
5102 | 256,1,3,1,4, | ||
5103 | 1,3,1448,22,1, | ||
5104 | 119,1,1195,1449,17, | ||
5105 | 1450,15,1070,1,-1, | ||
5106 | 1,5,1451,20,1452, | ||
5107 | 4,38,83,0,105, | ||
5108 | 0,109,0,112,0, | ||
5109 | 108,0,101,0,65, | ||
5110 | 0,115,0,115,0, | ||
5111 | 105,0,103,0,110, | ||
5112 | 0,109,0,101,0, | ||
5113 | 110,0,116,0,95, | ||
5114 | 0,49,0,48,0, | ||
5115 | 1,204,1,3,1, | ||
5116 | 6,1,5,1453,22, | ||
5117 | 1,67,1,1449,1454, | ||
5118 | 17,1455,15,1070,1, | ||
5119 | -1,1,5,1456,20, | ||
5120 | 1457,4,36,83,0, | ||
5121 | 105,0,109,0,112, | ||
5122 | 0,108,0,101,0, | ||
5123 | 65,0,115,0,115, | ||
5124 | 0,105,0,103,0, | ||
5125 | 110,0,109,0,101, | ||
5126 | 0,110,0,116,0, | ||
5127 | 95,0,51,0,1, | ||
5128 | 197,1,3,1,4, | ||
5129 | 1,3,1458,22,1, | ||
5130 | 60,1,1701,1459,17, | ||
5131 | 1460,15,1123,1,-1, | ||
5132 | 1,5,1461,20,1462, | ||
5133 | 4,36,70,0,111, | ||
5134 | 0,114,0,76,0, | ||
5135 | 111,0,111,0,112, | ||
5136 | 0,83,0,116,0, | ||
5137 | 97,0,116,0,101, | ||
5138 | 0,109,0,101,0, | ||
5139 | 110,0,116,0,95, | ||
5140 | 0,51,0,1,191, | ||
5141 | 1,3,1,4,1, | ||
5142 | 3,1463,22,1,54, | ||
5143 | 1,447,1464,17,1465, | ||
5144 | 15,1466,4,30,37, | ||
5145 | 0,86,0,101,0, | ||
5146 | 99,0,116,0,111, | ||
5147 | 0,114,0,67,0, | ||
5148 | 111,0,110,0,115, | ||
5149 | 0,116,0,97,0, | ||
5150 | 110,0,116,0,1, | ||
5151 | -1,1,5,1467,20, | ||
5152 | 1468,4,32,86,0, | ||
5153 | 101,0,99,0,116, | ||
5154 | 0,111,0,114,0, | ||
5155 | 67,0,111,0,110, | ||
5156 | 0,115,0,116,0, | ||
5157 | 97,0,110,0,116, | ||
5158 | 0,95,0,49,0, | ||
5159 | 1,226,1,3,1, | ||
5160 | 8,1,7,1469,22, | ||
5161 | 1,89,1,1958,1470, | ||
5162 | 16,0,582,1,188, | ||
5163 | 1471,17,1472,15,1093, | ||
5164 | 1,-1,1,5,1473, | ||
5165 | 20,1474,4,36,66, | ||
5166 | 0,105,0,110,0, | ||
5167 | 97,0,114,0,121, | ||
5168 | 0,69,0,120,0, | ||
5169 | 112,0,114,0,101, | ||
5170 | 0,115,0,115,0, | ||
5171 | 105,0,111,0,110, | ||
5172 | 0,95,0,57,0, | ||
5173 | 1,248,1,3,1, | ||
5174 | 4,1,3,1475,22, | ||
5175 | 1,111,1,1370,1476, | ||
5176 | 17,1477,15,1070,1, | ||
5177 | -1,1,5,1478,20, | ||
5178 | 1479,4,38,83,0, | ||
5179 | 105,0,109,0,112, | ||
5180 | 0,108,0,101,0, | ||
5181 | 65,0,115,0,115, | ||
5182 | 0,105,0,103,0, | ||
5183 | 110,0,109,0,101, | ||
5184 | 0,110,0,116,0, | ||
5185 | 95,0,49,0,56, | ||
5186 | 0,1,212,1,3, | ||
5187 | 1,4,1,3,1480, | ||
5188 | 22,1,75,1,1657, | ||
5189 | 878,1,205,1481,17, | ||
5190 | 1482,15,1093,1,-1, | ||
5191 | 1,5,1483,20,1484, | ||
5192 | 4,36,66,0,105, | ||
5193 | 0,110,0,97,0, | ||
5194 | 114,0,121,0,69, | ||
5195 | 0,120,0,112,0, | ||
5196 | 114,0,101,0,115, | ||
5197 | 0,115,0,105,0, | ||
5198 | 111,0,110,0,95, | ||
5199 | 0,56,0,1,247, | ||
5200 | 1,3,1,4,1, | ||
5201 | 3,1485,22,1,110, | ||
5202 | 1,1665,1486,17,1487, | ||
5203 | 15,1123,1,-1,1, | ||
5204 | 5,1488,20,1489,4, | ||
5205 | 36,70,0,111,0, | ||
5206 | 114,0,76,0,111, | ||
5207 | 0,111,0,112,0, | ||
5208 | 83,0,116,0,97, | ||
5209 | 0,116,0,101,0, | ||
5210 | 109,0,101,0,110, | ||
5211 | 0,116,0,95,0, | ||
5212 | 49,0,1,189,1, | ||
5213 | 3,1,2,1,1, | ||
5214 | 1490,22,1,52,1, | ||
5215 | 2029,714,1,2197,1491, | ||
5216 | 16,0,582,1,1224, | ||
5217 | 1492,17,1493,15,1070, | ||
5218 | 1,-1,1,5,1494, | ||
5219 | 20,1495,4,38,83, | ||
5220 | 0,105,0,109,0, | ||
5221 | 112,0,108,0,101, | ||
5222 | 0,65,0,115,0, | ||
5223 | 115,0,105,0,103, | ||
5224 | 0,110,0,109,0, | ||
5225 | 101,0,110,0,116, | ||
5226 | 0,95,0,50,0, | ||
5227 | 50,0,1,216,1, | ||
5228 | 3,1,6,1,5, | ||
5229 | 1496,22,1,79,1, | ||
5230 | 223,1497,17,1498,15, | ||
5231 | 1093,1,-1,1,5, | ||
5232 | 1499,20,1500,4,36, | ||
5233 | 66,0,105,0,110, | ||
5234 | 0,97,0,114,0, | ||
5235 | 121,0,69,0,120, | ||
5236 | 0,112,0,114,0, | ||
5237 | 101,0,115,0,115, | ||
5238 | 0,105,0,111,0, | ||
5239 | 110,0,95,0,55, | ||
5240 | 0,1,246,1,3, | ||
5241 | 1,4,1,3,1501, | ||
5242 | 22,1,109,1,1730, | ||
5243 | 1502,17,1503,15,1123, | ||
5244 | 1,-1,1,5,1504, | ||
5245 | 20,1505,4,36,70, | ||
5246 | 0,111,0,114,0, | ||
5247 | 76,0,111,0,111, | ||
5248 | 0,112,0,83,0, | ||
5249 | 116,0,97,0,116, | ||
5250 | 0,101,0,109,0, | ||
5251 | 101,0,110,0,116, | ||
5252 | 0,95,0,52,0, | ||
5253 | 1,192,1,3,1, | ||
5254 | 4,1,3,1506,22, | ||
5255 | 1,55,1,476,1507, | ||
5256 | 17,1508,15,1509,4, | ||
5257 | 18,37,0,67,0, | ||
5258 | 111,0,110,0,115, | ||
5259 | 0,116,0,97,0, | ||
5260 | 110,0,116,0,1, | ||
5261 | -1,1,5,1510,20, | ||
5262 | 1511,4,20,67,0, | ||
5263 | 111,0,110,0,115, | ||
5264 | 0,116,0,97,0, | ||
5265 | 110,0,116,0,95, | ||
5266 | 0,52,0,1,224, | ||
5267 | 1,3,1,2,1, | ||
5268 | 1,1512,22,1,87, | ||
5269 | 1,477,1513,17,1514, | ||
5270 | 15,1509,1,-1,1, | ||
5271 | 5,1515,20,1516,4, | ||
5272 | 20,67,0,111,0, | ||
5273 | 110,0,115,0,116, | ||
5274 | 0,97,0,110,0, | ||
5275 | 116,0,95,0,51, | ||
5276 | 0,1,223,1,3, | ||
5277 | 1,2,1,1,1517, | ||
5278 | 22,1,86,1,1231, | ||
5279 | 1518,17,1519,15,1070, | ||
5280 | 1,-1,1,5,1520, | ||
5281 | 20,1521,4,36,83, | ||
5282 | 0,105,0,109,0, | ||
5283 | 112,0,108,0,101, | ||
5284 | 0,65,0,115,0, | ||
5285 | 115,0,105,0,103, | ||
5286 | 0,110,0,109,0, | ||
5287 | 101,0,110,0,116, | ||
5288 | 0,95,0,57,0, | ||
5289 | 1,203,1,3,1, | ||
5290 | 6,1,5,1522,22, | ||
5291 | 1,66,1,479,1523, | ||
5292 | 17,1524,15,1509,1, | ||
5293 | -1,1,5,1525,20, | ||
5294 | 1526,4,20,67,0, | ||
5295 | 111,0,110,0,115, | ||
5296 | 0,116,0,97,0, | ||
5297 | 110,0,116,0,95, | ||
5298 | 0,49,0,1,221, | ||
5299 | 1,3,1,2,1, | ||
5300 | 1,1527,22,1,84, | ||
5301 | 1,480,1528,17,1529, | ||
5302 | 15,1530,4,26,37, | ||
5303 | 0,76,0,105,0, | ||
5304 | 115,0,116,0,67, | ||
5305 | 0,111,0,110,0, | ||
5306 | 115,0,116,0,97, | ||
5307 | 0,110,0,116,0, | ||
5308 | 1,-1,1,5,1531, | ||
5309 | 20,1532,4,28,76, | ||
5310 | 0,105,0,115,0, | ||
5311 | 116,0,67,0,111, | ||
5312 | 0,110,0,115,0, | ||
5313 | 116,0,97,0,110, | ||
5314 | 0,116,0,95,0, | ||
5315 | 49,0,1,225,1, | ||
5316 | 3,1,4,1,3, | ||
5317 | 1533,22,1,88,1, | ||
5318 | 1485,1534,17,1535,15, | ||
5319 | 1070,1,-1,1,5, | ||
5320 | 1536,20,1537,4,36, | ||
5321 | 83,0,105,0,109, | ||
5322 | 0,112,0,108,0, | ||
5323 | 101,0,65,0,115, | ||
5324 | 0,115,0,105,0, | ||
5325 | 103,0,110,0,109, | ||
5326 | 0,101,0,110,0, | ||
5327 | 116,0,95,0,50, | ||
5328 | 0,1,196,1,3, | ||
5329 | 1,4,1,3,1538, | ||
5330 | 22,1,59,1,1737, | ||
5331 | 1539,16,0,278,1, | ||
5332 | 1989,894,1,1990,1540, | ||
5333 | 16,0,582,1,242, | ||
5334 | 1541,17,1542,15,1093, | ||
5335 | 1,-1,1,5,1543, | ||
5336 | 20,1544,4,36,66, | ||
5337 | 0,105,0,110,0, | ||
5338 | 97,0,114,0,121, | ||
5339 | 0,69,0,120,0, | ||
5340 | 112,0,114,0,101, | ||
5341 | 0,115,0,115,0, | ||
5342 | 105,0,111,0,110, | ||
5343 | 0,95,0,54,0, | ||
5344 | 1,245,1,3,1, | ||
5345 | 4,1,3,1545,22, | ||
5346 | 1,108,1,478,1546, | ||
5347 | 17,1547,15,1509,1, | ||
5348 | -1,1,5,1548,20, | ||
5349 | 1549,4,20,67,0, | ||
5350 | 111,0,110,0,115, | ||
5351 | 0,116,0,97,0, | ||
5352 | 110,0,116,0,95, | ||
5353 | 0,50,0,1,222, | ||
5354 | 1,3,1,2,1, | ||
5355 | 1,1550,22,1,85, | ||
5356 | 1,1001,1551,17,1552, | ||
5357 | 15,1192,1,-1,1, | ||
5358 | 5,1553,20,1554,4, | ||
5359 | 40,84,0,121,0, | ||
5360 | 112,0,101,0,99, | ||
5361 | 0,97,0,115,0, | ||
5362 | 116,0,69,0,120, | ||
5363 | 0,112,0,114,0, | ||
5364 | 101,0,115,0,115, | ||
5365 | 0,105,0,111,0, | ||
5366 | 110,0,95,0,56, | ||
5367 | 0,1,270,1,3, | ||
5368 | 1,5,1,4,1555, | ||
5369 | 22,1,133,1,1002, | ||
5370 | 1556,17,1557,15,1192, | ||
5371 | 1,-1,1,5,1558, | ||
5372 | 20,1559,4,40,84, | ||
5373 | 0,121,0,112,0, | ||
5374 | 101,0,99,0,97, | ||
5375 | 0,115,0,116,0, | ||
5376 | 69,0,120,0,112, | ||
5377 | 0,114,0,101,0, | ||
5378 | 115,0,115,0,105, | ||
5379 | 0,111,0,110,0, | ||
5380 | 95,0,49,0,1, | ||
5381 | 263,1,3,1,5, | ||
5382 | 1,4,1560,22,1, | ||
5383 | 126,1,12,1561,19, | ||
5384 | 157,1,12,1562,5, | ||
5385 | 41,1,2074,1563,16, | ||
5386 | 0,155,1,1860,820, | ||
5387 | 1,2412,1564,16,0, | ||
5388 | 155,1,2197,1565,16, | ||
5389 | 0,155,1,2309,1566, | ||
5390 | 16,0,155,1,1657, | ||
5391 | 878,1,1989,894,1, | ||
5392 | 1990,1567,16,0,155, | ||
5393 | 1,31,1568,16,0, | ||
5394 | 155,1,32,1569,16, | ||
5395 | 0,155,1,2104,801, | ||
5396 | 1,2105,1570,16,0, | ||
5397 | 155,1,2358,807,1, | ||
5398 | 2545,1571,16,0,155, | ||
5399 | 1,2226,886,1,1901, | ||
5400 | 1572,16,0,155,1, | ||
5401 | 2454,1573,16,0,553, | ||
5402 | 1,1802,774,1,2021, | ||
5403 | 707,1,1804,1574,16, | ||
5404 | 0,155,1,2135,836, | ||
5405 | 1,2354,853,1,2355, | ||
5406 | 858,1,2029,714,1, | ||
5407 | 2030,720,1,2031,725, | ||
5408 | 1,2032,730,1,2360, | ||
5409 | 813,1,2035,741,1, | ||
5410 | 2037,746,1,2365,1575, | ||
5411 | 16,0,273,1,2039, | ||
5412 | 751,1,1931,863,1, | ||
5413 | 2041,757,1,1873,829, | ||
5414 | 1,2043,762,1,2044, | ||
5415 | 767,1,1775,1576,16, | ||
5416 | 0,155,1,2033,735, | ||
5417 | 1,1574,787,1,1958, | ||
5418 | 1577,16,0,155,1, | ||
5419 | 13,1578,19,258,1, | ||
5420 | 13,1579,5,33,1, | ||
5421 | 1860,820,1,2414,1580, | ||
5422 | 17,1581,15,1582,4, | ||
5423 | 22,37,0,83,0, | ||
5424 | 116,0,97,0,116, | ||
5425 | 0,101,0,69,0, | ||
5426 | 118,0,101,0,110, | ||
5427 | 0,116,0,1,-1, | ||
5428 | 1,5,1583,20,1584, | ||
5429 | 4,24,83,0,116, | ||
5430 | 0,97,0,116,0, | ||
5431 | 101,0,69,0,118, | ||
5432 | 0,101,0,110,0, | ||
5433 | 116,0,95,0,49, | ||
5434 | 0,1,156,1,3, | ||
5435 | 1,6,1,5,1585, | ||
5436 | 22,1,17,1,2416, | ||
5437 | 1586,16,0,395,1, | ||
5438 | 2309,1587,16,0,256, | ||
5439 | 1,1657,878,1,2031, | ||
5440 | 725,1,1989,894,1, | ||
5441 | 32,1588,16,0,261, | ||
5442 | 1,2104,801,1,2226, | ||
5443 | 886,1,2033,735,1, | ||
5444 | 2451,1589,17,1590,15, | ||
5445 | 1591,4,20,37,0, | ||
5446 | 83,0,116,0,97, | ||
5447 | 0,116,0,101,0, | ||
5448 | 66,0,111,0,100, | ||
5449 | 0,121,0,1,-1, | ||
5450 | 1,5,1592,20,1593, | ||
5451 | 4,22,83,0,116, | ||
5452 | 0,97,0,116,0, | ||
5453 | 101,0,66,0,111, | ||
5454 | 0,100,0,121,0, | ||
5455 | 95,0,50,0,1, | ||
5456 | 155,1,3,1,3, | ||
5457 | 1,2,1594,22,1, | ||
5458 | 16,1,2453,1595,17, | ||
5459 | 1596,15,1591,1,-1, | ||
5460 | 1,5,1597,20,1598, | ||
5461 | 4,22,83,0,116, | ||
5462 | 0,97,0,116,0, | ||
5463 | 101,0,66,0,111, | ||
5464 | 0,100,0,121,0, | ||
5465 | 95,0,49,0,1, | ||
5466 | 154,1,3,1,2, | ||
5467 | 1,1,1599,22,1, | ||
5468 | 15,1,1802,774,1, | ||
5469 | 2021,707,1,2135,836, | ||
5470 | 1,2354,853,1,2355, | ||
5471 | 858,1,2029,714,1, | ||
5472 | 2030,720,1,2358,807, | ||
5473 | 1,2032,730,1,2360, | ||
5474 | 813,1,2035,741,1, | ||
5475 | 2037,746,1,2039,751, | ||
5476 | 1,1931,863,1,2041, | ||
5477 | 757,1,1873,829,1, | ||
5478 | 2043,762,1,2044,767, | ||
5479 | 1,2490,1600,16,0, | ||
5480 | 455,1,1574,787,1, | ||
5481 | 14,1601,19,144,1, | ||
5482 | 14,1602,5,104,1, | ||
5483 | 1260,1068,1,1011,1074, | ||
5484 | 1,1514,1080,1,9, | ||
5485 | 1085,1,10,1603,17, | ||
5486 | 1604,15,1605,4,48, | ||
5487 | 37,0,65,0,114, | ||
5488 | 0,103,0,117,0, | ||
5489 | 109,0,101,0,110, | ||
5490 | 0,116,0,68,0, | ||
5491 | 101,0,99,0,108, | ||
5492 | 0,97,0,114,0, | ||
5493 | 97,0,116,0,105, | ||
5494 | 0,111,0,110,0, | ||
5495 | 76,0,105,0,115, | ||
5496 | 0,116,0,1,-1, | ||
5497 | 1,5,140,1,0, | ||
5498 | 1,0,1606,22,1, | ||
5499 | 18,1,262,1091,1, | ||
5500 | 1267,1097,1,1521,1102, | ||
5501 | 1,1773,1607,16,0, | ||
5502 | 148,1,19,1114,1, | ||
5503 | 20,1608,16,0,142, | ||
5504 | 1,2280,1121,1,525, | ||
5505 | 1184,1,2534,1609,17, | ||
5506 | 1610,15,1605,1,-1, | ||
5507 | 1,5,140,1,0, | ||
5508 | 1,0,1606,1,30, | ||
5509 | 1611,17,1612,15,1605, | ||
5510 | 1,-1,1,5,1613, | ||
5511 | 20,1614,4,50,65, | ||
5512 | 0,114,0,103,0, | ||
5513 | 117,0,109,0,101, | ||
5514 | 0,110,0,116,0, | ||
5515 | 68,0,101,0,99, | ||
5516 | 0,108,0,97,0, | ||
5517 | 114,0,97,0,116, | ||
5518 | 0,105,0,111,0, | ||
5519 | 110,0,76,0,105, | ||
5520 | 0,115,0,116,0, | ||
5521 | 95,0,50,0,1, | ||
5522 | 158,1,3,1,4, | ||
5523 | 1,3,1615,22,1, | ||
5524 | 20,1,283,1144,1, | ||
5525 | 2543,1616,16,0,142, | ||
5526 | 1,40,1133,1,41, | ||
5527 | 1617,17,1618,15,1619, | ||
5528 | 4,26,37,0,65, | ||
5529 | 0,114,0,103,0, | ||
5530 | 117,0,109,0,101, | ||
5531 | 0,110,0,116,0, | ||
5532 | 76,0,105,0,115, | ||
5533 | 0,116,0,1,-1, | ||
5534 | 1,5,600,1,0, | ||
5535 | 1,0,1620,22,1, | ||
5536 | 136,1,42,1621,17, | ||
5537 | 1622,15,1623,4,38, | ||
5538 | 37,0,69,0,120, | ||
5539 | 0,112,0,114,0, | ||
5540 | 101,0,115,0,115, | ||
5541 | 0,105,0,111,0, | ||
5542 | 110,0,65,0,114, | ||
5543 | 0,103,0,117,0, | ||
5544 | 109,0,101,0,110, | ||
5545 | 0,116,0,1,-1, | ||
5546 | 1,5,1624,20,1625, | ||
5547 | 4,40,69,0,120, | ||
5548 | 0,112,0,114,0, | ||
5549 | 101,0,115,0,115, | ||
5550 | 0,105,0,111,0, | ||
5551 | 110,0,65,0,114, | ||
5552 | 0,103,0,117,0, | ||
5553 | 109,0,101,0,110, | ||
5554 | 0,116,0,95,0, | ||
5555 | 49,0,1,275,1, | ||
5556 | 3,1,2,1,1, | ||
5557 | 1626,22,1,139,1, | ||
5558 | 44,1149,1,47,1151, | ||
5559 | 1,48,1157,1,49, | ||
5560 | 1163,1,50,1174,1, | ||
5561 | 51,1169,1,305,1179, | ||
5562 | 1,63,1190,1,66, | ||
5563 | 1196,1,67,1201,1, | ||
5564 | 1478,1417,1,69,1211, | ||
5565 | 1,70,1216,1,68, | ||
5566 | 1206,1,74,1221,1, | ||
5567 | 1013,1226,1,1332,1231, | ||
5568 | 1,1048,1236,1,82, | ||
5569 | 1252,1,1296,1139,1, | ||
5570 | 1341,1269,1,328,1274, | ||
5571 | 1,1303,1279,1,1096, | ||
5572 | 1284,1,93,1290,1, | ||
5573 | 1550,1295,1,352,1301, | ||
5574 | 1,2363,1627,17,1628, | ||
5575 | 15,1605,1,-1,1, | ||
5576 | 5,1629,20,1630,4, | ||
5577 | 50,65,0,114,0, | ||
5578 | 103,0,117,0,109, | ||
5579 | 0,101,0,110,0, | ||
5580 | 116,0,68,0,101, | ||
5581 | 0,99,0,108,0, | ||
5582 | 97,0,114,0,97, | ||
5583 | 0,116,0,105,0, | ||
5584 | 111,0,110,0,76, | ||
5585 | 0,105,0,115,0, | ||
5586 | 116,0,95,0,49, | ||
5587 | 0,1,157,1,3, | ||
5588 | 1,2,1,1,1631, | ||
5589 | 22,1,19,1,107, | ||
5590 | 1308,1,1114,1313,1, | ||
5591 | 1370,1476,1,118,1316, | ||
5592 | 1,1123,1321,1,371, | ||
5593 | 1326,1,1377,1332,1, | ||
5594 | 375,1337,1,377,1342, | ||
5595 | 1,379,1375,1,380, | ||
5596 | 1352,1,883,1412,1, | ||
5597 | 373,1370,1,130,1358, | ||
5598 | 1,2401,1632,17,1633, | ||
5599 | 15,1605,1,-1,1, | ||
5600 | 5,140,1,0,1, | ||
5601 | 0,1606,1,143,1380, | ||
5602 | 1,1152,1386,1,387, | ||
5603 | 1634,16,0,567,1, | ||
5604 | 1406,1392,1,1159,1397, | ||
5605 | 1,157,1402,1,1413, | ||
5606 | 1407,1,1665,1486,1, | ||
5607 | 412,1635,16,0,577, | ||
5608 | 1,1094,1636,16,0, | ||
5609 | 602,1,172,1428,1, | ||
5610 | 827,1347,1,1188,1433, | ||
5611 | 1,437,1637,16,0, | ||
5612 | 639,1,1442,1438,1, | ||
5613 | 1694,1638,16,0,148, | ||
5614 | 1,942,1444,1,1195, | ||
5615 | 1449,1,1449,1454,1, | ||
5616 | 1701,1459,1,447,1464, | ||
5617 | 1,188,1471,1,205, | ||
5618 | 1481,1,459,1639,17, | ||
5619 | 1640,15,1619,1,-1, | ||
5620 | 1,5,600,1,0, | ||
5621 | 1,0,1620,1,461, | ||
5622 | 1641,16,0,602,1, | ||
5623 | 464,1642,17,1643,15, | ||
5624 | 1619,1,-1,1,5, | ||
5625 | 1644,20,1645,4,28, | ||
5626 | 65,0,114,0,103, | ||
5627 | 0,117,0,109,0, | ||
5628 | 101,0,110,0,116, | ||
5629 | 0,76,0,105,0, | ||
5630 | 115,0,116,0,95, | ||
5631 | 0,50,0,1,274, | ||
5632 | 1,3,1,4,1, | ||
5633 | 3,1646,22,1,138, | ||
5634 | 1,1224,1492,1,223, | ||
5635 | 1497,1,1730,1502,1, | ||
5636 | 476,1507,1,477,1513, | ||
5637 | 1,1231,1518,1,2410, | ||
5638 | 1647,16,0,142,1, | ||
5639 | 480,1528,1,1485,1534, | ||
5640 | 1,242,1541,1,478, | ||
5641 | 1546,1,479,1523,1, | ||
5642 | 481,1648,17,1649,15, | ||
5643 | 1619,1,-1,1,5, | ||
5644 | 1650,20,1651,4,28, | ||
5645 | 65,0,114,0,103, | ||
5646 | 0,117,0,109,0, | ||
5647 | 101,0,110,0,116, | ||
5648 | 0,76,0,105,0, | ||
5649 | 115,0,116,0,95, | ||
5650 | 0,49,0,1,273, | ||
5651 | 1,3,1,2,1, | ||
5652 | 1,1652,22,1,137, | ||
5653 | 1,1001,1551,1,1002, | ||
5654 | 1556,1,15,1653,19, | ||
5655 | 361,1,15,1654,5, | ||
5656 | 6,1,1114,1655,16, | ||
5657 | 0,359,1,1621,1656, | ||
5658 | 16,0,638,1,40, | ||
5659 | 1657,16,0,564,1, | ||
5660 | 19,1114,1,9,1085, | ||
5661 | 1,2549,1658,16,0, | ||
5662 | 629,1,16,1659,19, | ||
5663 | 136,1,16,1660,5, | ||
5664 | 134,1,256,1661,16, | ||
5665 | 0,187,1,1261,1662, | ||
5666 | 16,0,187,1,509, | ||
5667 | 1663,16,0,187,1, | ||
5668 | 2197,1664,16,0,187, | ||
5669 | 1,9,1665,16,0, | ||
5670 | 134,1,2021,707,1, | ||
5671 | 2372,1666,17,1667,15, | ||
5672 | 1668,4,12,37,0, | ||
5673 | 69,0,118,0,101, | ||
5674 | 0,110,0,116,0, | ||
5675 | 1,-1,1,5,1669, | ||
5676 | 20,1670,4,16,69, | ||
5677 | 0,118,0,101,0, | ||
5678 | 110,0,116,0,95, | ||
5679 | 0,50,0,56,0, | ||
5680 | 1,310,1,3,1, | ||
5681 | 2,1,1,1671,22, | ||
5682 | 1,174,1,1775,1672, | ||
5683 | 16,0,187,1,2029, | ||
5684 | 714,1,2030,720,1, | ||
5685 | 2031,725,1,2032,730, | ||
5686 | 1,2033,735,1,277, | ||
5687 | 1673,16,0,187,1, | ||
5688 | 2035,741,1,2037,746, | ||
5689 | 1,2039,751,1,32, | ||
5690 | 1674,16,0,187,1, | ||
5691 | 2041,757,1,2043,762, | ||
5692 | 1,2044,767,1,40, | ||
5693 | 1675,16,0,166,1, | ||
5694 | 41,1676,16,0,187, | ||
5695 | 1,1297,1677,16,0, | ||
5696 | 187,1,43,1678,16, | ||
5697 | 0,187,1,44,1679, | ||
5698 | 16,0,166,1,1802, | ||
5699 | 774,1,1804,1680,16, | ||
5700 | 0,187,1,299,1681, | ||
5701 | 16,0,187,1,2309, | ||
5702 | 1682,16,0,187,1, | ||
5703 | 52,1683,16,0,187, | ||
5704 | 1,1515,1684,16,0, | ||
5705 | 187,1,525,1685,16, | ||
5706 | 0,187,1,62,1686, | ||
5707 | 16,0,201,1,63, | ||
5708 | 1687,16,0,166,1, | ||
5709 | 2074,1688,16,0,187, | ||
5710 | 1,1574,787,1,71, | ||
5711 | 1689,16,0,187,1, | ||
5712 | 1833,1690,16,0,330, | ||
5713 | 1,1834,1691,16,0, | ||
5714 | 187,1,79,1692,16, | ||
5715 | 0,187,1,1335,1693, | ||
5716 | 16,0,187,1,322, | ||
5717 | 1694,16,0,187,1, | ||
5718 | 76,1695,16,0,187, | ||
5719 | 1,85,1696,16,0, | ||
5720 | 187,1,89,1697,16, | ||
5721 | 0,187,1,2354,853, | ||
5722 | 1,2355,858,1,97, | ||
5723 | 1698,16,0,187,1, | ||
5724 | 2358,807,1,2360,813, | ||
5725 | 1,102,1699,16,0, | ||
5726 | 187,1,1860,820,1, | ||
5727 | 2533,1700,16,0,468, | ||
5728 | 1,346,1701,16,0, | ||
5729 | 187,1,2367,1702,17, | ||
5730 | 1703,15,1668,1,-1, | ||
5731 | 1,5,1704,20,1705, | ||
5732 | 4,16,69,0,118, | ||
5733 | 0,101,0,110,0, | ||
5734 | 116,0,95,0,51, | ||
5735 | 0,51,0,1,315, | ||
5736 | 1,3,1,2,1, | ||
5737 | 1,1706,22,1,179, | ||
5738 | 1,2368,1707,17,1708, | ||
5739 | 15,1668,1,-1,1, | ||
5740 | 5,1709,20,1710,4, | ||
5741 | 16,69,0,118,0, | ||
5742 | 101,0,110,0,116, | ||
5743 | 0,95,0,51,0, | ||
5744 | 50,0,1,314,1, | ||
5745 | 3,1,2,1,1, | ||
5746 | 1711,22,1,178,1, | ||
5747 | 2369,1712,17,1713,15, | ||
5748 | 1668,1,-1,1,5, | ||
5749 | 1714,20,1715,4,16, | ||
5750 | 69,0,118,0,101, | ||
5751 | 0,110,0,116,0, | ||
5752 | 95,0,51,0,49, | ||
5753 | 0,1,313,1,3, | ||
5754 | 1,2,1,1,1716, | ||
5755 | 22,1,177,1,2370, | ||
5756 | 1717,17,1718,15,1668, | ||
5757 | 1,-1,1,5,1719, | ||
5758 | 20,1720,4,16,69, | ||
5759 | 0,118,0,101,0, | ||
5760 | 110,0,116,0,95, | ||
5761 | 0,51,0,48,0, | ||
5762 | 1,312,1,3,1, | ||
5763 | 2,1,1,1721,22, | ||
5764 | 1,176,1,112,1722, | ||
5765 | 16,0,187,1,1117, | ||
5766 | 1723,16,0,187,1, | ||
5767 | 2373,1724,17,1725,15, | ||
5768 | 1668,1,-1,1,5, | ||
5769 | 1726,20,1727,4,16, | ||
5770 | 69,0,118,0,101, | ||
5771 | 0,110,0,116,0, | ||
5772 | 95,0,50,0,55, | ||
5773 | 0,1,309,1,3, | ||
5774 | 1,2,1,1,1728, | ||
5775 | 22,1,173,1,2374, | ||
5776 | 1729,17,1730,15,1668, | ||
5777 | 1,-1,1,5,1731, | ||
5778 | 20,1732,4,16,69, | ||
5779 | 0,118,0,101,0, | ||
5780 | 110,0,116,0,95, | ||
5781 | 0,50,0,54,0, | ||
5782 | 1,308,1,3,1, | ||
5783 | 2,1,1,1733,22, | ||
5784 | 1,172,1,1873,829, | ||
5785 | 1,2376,1734,17,1735, | ||
5786 | 15,1668,1,-1,1, | ||
5787 | 5,1736,20,1737,4, | ||
5788 | 16,69,0,118,0, | ||
5789 | 101,0,110,0,116, | ||
5790 | 0,95,0,50,0, | ||
5791 | 52,0,1,306,1, | ||
5792 | 3,1,2,1,1, | ||
5793 | 1738,22,1,170,1, | ||
5794 | 1875,1739,16,0,444, | ||
5795 | 1,2378,1740,17,1741, | ||
5796 | 15,1668,1,-1,1, | ||
5797 | 5,1742,20,1743,4, | ||
5798 | 16,69,0,118,0, | ||
5799 | 101,0,110,0,116, | ||
5800 | 0,95,0,50,0, | ||
5801 | 50,0,1,304,1, | ||
5802 | 3,1,2,1,1, | ||
5803 | 1744,22,1,168,1, | ||
5804 | 2379,1745,17,1746,15, | ||
5805 | 1668,1,-1,1,5, | ||
5806 | 1747,20,1748,4,16, | ||
5807 | 69,0,118,0,101, | ||
5808 | 0,110,0,116,0, | ||
5809 | 95,0,50,0,49, | ||
5810 | 0,1,303,1,3, | ||
5811 | 1,2,1,1,1749, | ||
5812 | 22,1,167,1,2380, | ||
5813 | 1750,17,1751,15,1668, | ||
5814 | 1,-1,1,5,1752, | ||
5815 | 20,1753,4,16,69, | ||
5816 | 0,118,0,101,0, | ||
5817 | 110,0,116,0,95, | ||
5818 | 0,50,0,48,0, | ||
5819 | 1,302,1,3,1, | ||
5820 | 2,1,1,1754,22, | ||
5821 | 1,166,1,2381,1755, | ||
5822 | 17,1756,15,1668,1, | ||
5823 | -1,1,5,1757,20, | ||
5824 | 1758,4,16,69,0, | ||
5825 | 118,0,101,0,110, | ||
5826 | 0,116,0,95,0, | ||
5827 | 49,0,57,0,1, | ||
5828 | 301,1,3,1,2, | ||
5829 | 1,1,1759,22,1, | ||
5830 | 165,1,2382,1760,17, | ||
5831 | 1761,15,1668,1,-1, | ||
5832 | 1,5,1762,20,1763, | ||
5833 | 4,16,69,0,118, | ||
5834 | 0,101,0,110,0, | ||
5835 | 116,0,95,0,49, | ||
5836 | 0,56,0,1,300, | ||
5837 | 1,3,1,2,1, | ||
5838 | 1,1764,22,1,164, | ||
5839 | 1,124,1765,16,0, | ||
5840 | 187,1,2384,1766,17, | ||
5841 | 1767,15,1668,1,-1, | ||
5842 | 1,5,1768,20,1769, | ||
5843 | 4,16,69,0,118, | ||
5844 | 0,101,0,110,0, | ||
5845 | 116,0,95,0,49, | ||
5846 | 0,54,0,1,298, | ||
5847 | 1,3,1,2,1, | ||
5848 | 1,1770,22,1,162, | ||
5849 | 1,2385,1771,17,1772, | ||
5850 | 15,1668,1,-1,1, | ||
5851 | 5,1773,20,1774,4, | ||
5852 | 16,69,0,118,0, | ||
5853 | 101,0,110,0,116, | ||
5854 | 0,95,0,49,0, | ||
5855 | 53,0,1,297,1, | ||
5856 | 3,1,2,1,1, | ||
5857 | 1775,22,1,161,1, | ||
5858 | 2386,1776,17,1777,15, | ||
5859 | 1668,1,-1,1,5, | ||
5860 | 1778,20,1779,4,16, | ||
5861 | 69,0,118,0,101, | ||
5862 | 0,110,0,116,0, | ||
5863 | 95,0,49,0,52, | ||
5864 | 0,1,296,1,3, | ||
5865 | 1,2,1,1,1780, | ||
5866 | 22,1,160,1,2387, | ||
5867 | 1781,17,1782,15,1668, | ||
5868 | 1,-1,1,5,1783, | ||
5869 | 20,1784,4,16,69, | ||
5870 | 0,118,0,101,0, | ||
5871 | 110,0,116,0,95, | ||
5872 | 0,49,0,51,0, | ||
5873 | 1,295,1,3,1, | ||
5874 | 2,1,1,1785,22, | ||
5875 | 1,159,1,2388,1786, | ||
5876 | 17,1787,15,1668,1, | ||
5877 | -1,1,5,1788,20, | ||
5878 | 1789,4,16,69,0, | ||
5879 | 118,0,101,0,110, | ||
5880 | 0,116,0,95,0, | ||
5881 | 49,0,50,0,1, | ||
5882 | 294,1,3,1,2, | ||
5883 | 1,1,1790,22,1, | ||
5884 | 158,1,2389,1791,17, | ||
5885 | 1792,15,1668,1,-1, | ||
5886 | 1,5,1793,20,1794, | ||
5887 | 4,16,69,0,118, | ||
5888 | 0,101,0,110,0, | ||
5889 | 116,0,95,0,49, | ||
5890 | 0,49,0,1,293, | ||
5891 | 1,3,1,2,1, | ||
5892 | 1,1795,22,1,157, | ||
5893 | 1,2390,1796,17,1797, | ||
5894 | 15,1668,1,-1,1, | ||
5895 | 5,1798,20,1799,4, | ||
5896 | 16,69,0,118,0, | ||
5897 | 101,0,110,0,116, | ||
5898 | 0,95,0,49,0, | ||
5899 | 48,0,1,292,1, | ||
5900 | 3,1,2,1,1, | ||
5901 | 1800,22,1,156,1, | ||
5902 | 2391,1801,17,1802,15, | ||
5903 | 1668,1,-1,1,5, | ||
5904 | 1803,20,1804,4,14, | ||
5905 | 69,0,118,0,101, | ||
5906 | 0,110,0,116,0, | ||
5907 | 95,0,57,0,1, | ||
5908 | 291,1,3,1,2, | ||
5909 | 1,1,1805,22,1, | ||
5910 | 155,1,2392,1806,17, | ||
5911 | 1807,15,1668,1,-1, | ||
5912 | 1,5,1808,20,1809, | ||
5913 | 4,14,69,0,118, | ||
5914 | 0,101,0,110,0, | ||
5915 | 116,0,95,0,56, | ||
5916 | 0,1,290,1,3, | ||
5917 | 1,2,1,1,1810, | ||
5918 | 22,1,154,1,2393, | ||
5919 | 1811,17,1812,15,1668, | ||
5920 | 1,-1,1,5,1813, | ||
5921 | 20,1814,4,14,69, | ||
5922 | 0,118,0,101,0, | ||
5923 | 110,0,116,0,95, | ||
5924 | 0,55,0,1,289, | ||
5925 | 1,3,1,2,1, | ||
5926 | 1,1815,22,1,153, | ||
5927 | 1,2394,1816,17,1817, | ||
5928 | 15,1668,1,-1,1, | ||
5929 | 5,1818,20,1819,4, | ||
5930 | 14,69,0,118,0, | ||
5931 | 101,0,110,0,116, | ||
5932 | 0,95,0,54,0, | ||
5933 | 1,288,1,3,1, | ||
5934 | 2,1,1,1820,22, | ||
5935 | 1,152,1,2395,1821, | ||
5936 | 17,1822,15,1668,1, | ||
5937 | -1,1,5,1823,20, | ||
5938 | 1824,4,14,69,0, | ||
5939 | 118,0,101,0,110, | ||
5940 | 0,116,0,95,0, | ||
5941 | 53,0,1,287,1, | ||
5942 | 3,1,2,1,1, | ||
5943 | 1825,22,1,151,1, | ||
5944 | 137,1826,16,0,187, | ||
5945 | 1,2397,1827,17,1828, | ||
5946 | 15,1668,1,-1,1, | ||
5947 | 5,1829,20,1830,4, | ||
5948 | 14,69,0,118,0, | ||
5949 | 101,0,110,0,116, | ||
5950 | 0,95,0,51,0, | ||
5951 | 1,285,1,3,1, | ||
5952 | 2,1,1,1831,22, | ||
5953 | 1,149,1,2398,1832, | ||
5954 | 17,1833,15,1668,1, | ||
5955 | -1,1,5,1834,20, | ||
5956 | 1835,4,14,69,0, | ||
5957 | 118,0,101,0,110, | ||
5958 | 0,116,0,95,0, | ||
5959 | 50,0,1,284,1, | ||
5960 | 3,1,2,1,1, | ||
5961 | 1836,22,1,148,1, | ||
5962 | 2399,1837,17,1838,15, | ||
5963 | 1668,1,-1,1,5, | ||
5964 | 1839,20,1840,4,14, | ||
5965 | 69,0,118,0,101, | ||
5966 | 0,110,0,116,0, | ||
5967 | 95,0,49,0,1, | ||
5968 | 283,1,3,1,2, | ||
5969 | 1,1,1841,22,1, | ||
5970 | 147,1,2400,1842,16, | ||
5971 | 0,354,1,381,1843, | ||
5972 | 16,0,187,1,1901, | ||
5973 | 1844,16,0,187,1, | ||
5974 | 1153,1845,16,0,187, | ||
5975 | 1,151,1846,16,0, | ||
5976 | 187,1,1407,1847,16, | ||
5977 | 0,187,1,1659,1848, | ||
5978 | 16,0,187,1,406, | ||
5979 | 1849,16,0,187,1, | ||
5980 | 1371,1850,16,0,187, | ||
5981 | 1,2104,801,1,2105, | ||
5982 | 1851,16,0,187,1, | ||
5983 | 166,1852,16,0,187, | ||
5984 | 1,1622,1853,16,0, | ||
5985 | 187,1,1931,863,1, | ||
5986 | 1932,1854,16,0,484, | ||
5987 | 1,1933,1855,16,0, | ||
5988 | 187,1,1876,1856,16, | ||
5989 | 0,187,1,431,1857, | ||
5990 | 16,0,187,1,1585, | ||
5991 | 1858,16,0,187,1, | ||
5992 | 182,1859,16,0,187, | ||
5993 | 1,1189,1860,16,0, | ||
5994 | 187,1,2371,1861,17, | ||
5995 | 1862,15,1668,1,-1, | ||
5996 | 1,5,1863,20,1864, | ||
5997 | 4,16,69,0,118, | ||
5998 | 0,101,0,110,0, | ||
5999 | 116,0,95,0,50, | ||
6000 | 0,57,0,1,311, | ||
6001 | 1,3,1,2,1, | ||
6002 | 1,1865,22,1,175, | ||
6003 | 1,1695,1866,16,0, | ||
6004 | 187,1,2375,1867,17, | ||
6005 | 1868,15,1668,1,-1, | ||
6006 | 1,5,1869,20,1870, | ||
6007 | 4,16,69,0,118, | ||
6008 | 0,101,0,110,0, | ||
6009 | 116,0,95,0,50, | ||
6010 | 0,53,0,1,307, | ||
6011 | 1,3,1,2,1, | ||
6012 | 1,1871,22,1,171, | ||
6013 | 1,2377,1872,17,1873, | ||
6014 | 15,1668,1,-1,1, | ||
6015 | 5,1874,20,1875,4, | ||
6016 | 16,69,0,118,0, | ||
6017 | 101,0,110,0,116, | ||
6018 | 0,95,0,50,0, | ||
6019 | 51,0,1,305,1, | ||
6020 | 3,1,2,1,1, | ||
6021 | 1876,22,1,169,1, | ||
6022 | 2135,836,1,447,1877, | ||
6023 | 16,0,187,1,199, | ||
6024 | 1878,16,0,187,1, | ||
6025 | 2383,1879,17,1880,15, | ||
6026 | 1668,1,-1,1,5, | ||
6027 | 1881,20,1882,4,16, | ||
6028 | 69,0,118,0,101, | ||
6029 | 0,110,0,116,0, | ||
6030 | 95,0,49,0,55, | ||
6031 | 0,1,299,1,3, | ||
6032 | 1,2,1,1,1883, | ||
6033 | 22,1,163,1,1958, | ||
6034 | 1884,16,0,187,1, | ||
6035 | 2550,1885,16,0,187, | ||
6036 | 1,1657,878,1,1658, | ||
6037 | 1886,16,0,659,1, | ||
6038 | 459,1887,16,0,187, | ||
6039 | 1,462,1888,16,0, | ||
6040 | 187,1,2396,1889,17, | ||
6041 | 1890,15,1668,1,-1, | ||
6042 | 1,5,1891,20,1892, | ||
6043 | 4,14,69,0,118, | ||
6044 | 0,101,0,110,0, | ||
6045 | 116,0,95,0,52, | ||
6046 | 0,1,286,1,3, | ||
6047 | 1,2,1,1,1893, | ||
6048 | 22,1,150,1,217, | ||
6049 | 1894,16,0,187,1, | ||
6050 | 2226,886,1,1225,1895, | ||
6051 | 16,0,187,1,1479, | ||
6052 | 1896,16,0,187,1, | ||
6053 | 1731,1897,16,0,187, | ||
6054 | 1,1989,894,1,1990, | ||
6055 | 1898,16,0,187,1, | ||
6056 | 1443,1899,16,0,187, | ||
6057 | 1,236,1900,16,0, | ||
6058 | 187,1,1756,1901,16, | ||
6059 | 0,187,1,17,1902, | ||
6060 | 19,154,1,17,1903, | ||
6061 | 5,116,1,1,1904, | ||
6062 | 17,1905,15,1906,4, | ||
6063 | 18,37,0,84,0, | ||
6064 | 121,0,112,0,101, | ||
6065 | 0,110,0,97,0, | ||
6066 | 109,0,101,0,1, | ||
6067 | -1,1,5,1907,20, | ||
6068 | 1908,4,20,84,0, | ||
6069 | 121,0,112,0,101, | ||
6070 | 0,110,0,97,0, | ||
6071 | 109,0,101,0,95, | ||
6072 | 0,55,0,1,282, | ||
6073 | 1,3,1,2,1, | ||
6074 | 1,1909,22,1,146, | ||
6075 | 1,2,1910,17,1911, | ||
6076 | 15,1906,1,-1,1, | ||
6077 | 5,1912,20,1913,4, | ||
6078 | 20,84,0,121,0, | ||
6079 | 112,0,101,0,110, | ||
6080 | 0,97,0,109,0, | ||
6081 | 101,0,95,0,54, | ||
6082 | 0,1,281,1,3, | ||
6083 | 1,2,1,1,1914, | ||
6084 | 22,1,145,1,3, | ||
6085 | 1915,17,1916,15,1906, | ||
6086 | 1,-1,1,5,1917, | ||
6087 | 20,1918,4,20,84, | ||
6088 | 0,121,0,112,0, | ||
6089 | 101,0,110,0,97, | ||
6090 | 0,109,0,101,0, | ||
6091 | 95,0,53,0,1, | ||
6092 | 280,1,3,1,2, | ||
6093 | 1,1,1919,22,1, | ||
6094 | 144,1,4,1920,17, | ||
6095 | 1921,15,1906,1,-1, | ||
6096 | 1,5,1922,20,1923, | ||
6097 | 4,20,84,0,121, | ||
6098 | 0,112,0,101,0, | ||
6099 | 110,0,97,0,109, | ||
6100 | 0,101,0,95,0, | ||
6101 | 52,0,1,279,1, | ||
6102 | 3,1,2,1,1, | ||
6103 | 1924,22,1,143,1, | ||
6104 | 5,1925,17,1926,15, | ||
6105 | 1906,1,-1,1,5, | ||
6106 | 1927,20,1928,4,20, | ||
6107 | 84,0,121,0,112, | ||
6108 | 0,101,0,110,0, | ||
6109 | 97,0,109,0,101, | ||
6110 | 0,95,0,51,0, | ||
6111 | 1,278,1,3,1, | ||
6112 | 2,1,1,1929,22, | ||
6113 | 1,142,1,6,1930, | ||
6114 | 17,1931,15,1906,1, | ||
6115 | -1,1,5,1932,20, | ||
6116 | 1933,4,20,84,0, | ||
6117 | 121,0,112,0,101, | ||
6118 | 0,110,0,97,0, | ||
6119 | 109,0,101,0,95, | ||
6120 | 0,50,0,1,277, | ||
6121 | 1,3,1,2,1, | ||
6122 | 1,1934,22,1,141, | ||
6123 | 1,7,1935,17,1936, | ||
6124 | 15,1906,1,-1,1, | ||
6125 | 5,1937,20,1938,4, | ||
6126 | 20,84,0,121,0, | ||
6127 | 112,0,101,0,110, | ||
6128 | 0,97,0,109,0, | ||
6129 | 101,0,95,0,49, | ||
6130 | 0,1,276,1,3, | ||
6131 | 1,2,1,1,1939, | ||
6132 | 22,1,140,1,1514, | ||
6133 | 1080,1,9,1085,1, | ||
6134 | 10,1603,1,262,1091, | ||
6135 | 1,1267,1097,1,1521, | ||
6136 | 1102,1,1773,1940,16, | ||
6137 | 0,235,1,19,1114, | ||
6138 | 1,20,1941,16,0, | ||
6139 | 152,1,2280,1121,1, | ||
6140 | 525,1184,1,2534,1609, | ||
6141 | 1,30,1611,1,283, | ||
6142 | 1144,1,2543,1942,16, | ||
6143 | 0,476,1,1010,1943, | ||
6144 | 16,0,592,1,40, | ||
6145 | 1133,1,41,1617,1, | ||
6146 | 42,1621,1,44,1149, | ||
6147 | 1,1260,1068,1,47, | ||
6148 | 1151,1,1303,1279,1, | ||
6149 | 49,1163,1,50,1174, | ||
6150 | 1,48,1157,1,305, | ||
6151 | 1179,1,51,1169,1, | ||
6152 | 61,1944,16,0,193, | ||
6153 | 1,63,1190,1,2073, | ||
6154 | 1945,16,0,566,1, | ||
6155 | 66,1196,1,67,1201, | ||
6156 | 1,68,1206,1,69, | ||
6157 | 1211,1,70,1216,1, | ||
6158 | 73,1946,16,0,203, | ||
6159 | 1,74,1221,1,1013, | ||
6160 | 1226,1,328,1274,1, | ||
6161 | 1048,1236,1,82,1252, | ||
6162 | 1,1840,1947,16,0, | ||
6163 | 364,1,1341,1269,1, | ||
6164 | 1094,1948,16,0,654, | ||
6165 | 1,1096,1284,1,93, | ||
6166 | 1290,1,1550,1295,1, | ||
6167 | 827,1347,1,2363,1627, | ||
6168 | 1,1011,1074,1,107, | ||
6169 | 1308,1,1114,1313,1, | ||
6170 | 1871,1949,16,0,374, | ||
6171 | 1,1370,1476,1,1478, | ||
6172 | 1417,1,118,1316,1, | ||
6173 | 1123,1321,1,1332,1231, | ||
6174 | 1,1377,1332,1,375, | ||
6175 | 1337,1,1882,1950,16, | ||
6176 | 0,406,1,377,1342, | ||
6177 | 1,352,1301,1,379, | ||
6178 | 1375,1,380,1352,1, | ||
6179 | 130,1358,1,371,1326, | ||
6180 | 1,373,1370,1,1012, | ||
6181 | 1951,16,0,594,1, | ||
6182 | 2401,1632,1,143,1380, | ||
6183 | 1,1152,1386,1,1406, | ||
6184 | 1392,1,1159,1397,1, | ||
6185 | 157,1402,1,1413,1407, | ||
6186 | 1,883,1412,1,1296, | ||
6187 | 1139,1,172,1428,1, | ||
6188 | 1665,1486,1,1939,1952, | ||
6189 | 16,0,452,1,1188, | ||
6190 | 1433,1,1442,1438,1, | ||
6191 | 2196,1953,16,0,649, | ||
6192 | 1,942,1444,1,1195, | ||
6193 | 1449,1,1449,1454,1, | ||
6194 | 1701,1459,1,447,1464, | ||
6195 | 1,188,1471,1,205, | ||
6196 | 1481,1,459,1639,1, | ||
6197 | 464,1642,1,1224,1492, | ||
6198 | 1,223,1497,1,1730, | ||
6199 | 1502,1,476,1507,1, | ||
6200 | 477,1513,1,1231,1518, | ||
6201 | 1,2410,1954,16,0, | ||
6202 | 362,1,480,1528,1, | ||
6203 | 1485,1534,1,242,1541, | ||
6204 | 1,478,1546,1,479, | ||
6205 | 1523,1,481,1648,1, | ||
6206 | 1001,1551,1,1002,1556, | ||
6207 | 1,18,1955,19,496, | ||
6208 | 1,18,1956,5,83, | ||
6209 | 1,1011,1074,1,1012, | ||
6210 | 1957,16,0,494,1, | ||
6211 | 1013,1226,1,262,1091, | ||
6212 | 1,1267,1958,16,0, | ||
6213 | 494,1,515,1959,16, | ||
6214 | 0,494,1,1521,1960, | ||
6215 | 16,0,494,1,525, | ||
6216 | 1184,1,283,1144,1, | ||
6217 | 40,1133,1,42,1961, | ||
6218 | 16,0,494,1,44, | ||
6219 | 1149,1,2556,1962,16, | ||
6220 | 0,494,1,47,1151, | ||
6221 | 1,1303,1963,16,0, | ||
6222 | 494,1,1555,1964,16, | ||
6223 | 0,494,1,50,1174, | ||
6224 | 1,48,1157,1,49, | ||
6225 | 1163,1,51,1169,1, | ||
6226 | 63,1190,1,305,1179, | ||
6227 | 1,66,1196,1,67, | ||
6228 | 1201,1,68,1206,1, | ||
6229 | 69,1211,1,70,1216, | ||
6230 | 1,73,1965,16,0, | ||
6231 | 494,1,74,1221,1, | ||
6232 | 328,1274,1,1048,1966, | ||
6233 | 16,0,494,1,82, | ||
6234 | 1967,16,0,494,1, | ||
6235 | 1840,1968,16,0,494, | ||
6236 | 1,1591,1969,16,0, | ||
6237 | 494,1,1341,1970,16, | ||
6238 | 0,494,1,1096,1284, | ||
6239 | 1,93,1290,1,352, | ||
6240 | 1301,1,107,1971,16, | ||
6241 | 0,494,1,1114,1313, | ||
6242 | 1,118,1972,16,0, | ||
6243 | 494,1,1123,1973,16, | ||
6244 | 0,494,1,371,1326, | ||
6245 | 1,1628,1974,16,0, | ||
6246 | 494,1,375,1337,1, | ||
6247 | 1882,1975,16,0,494, | ||
6248 | 1,377,1342,1,379, | ||
6249 | 1375,1,380,1352,1, | ||
6250 | 883,1976,16,0,494, | ||
6251 | 1,373,1370,1,130, | ||
6252 | 1977,16,0,494,1, | ||
6253 | 143,1978,16,0,494, | ||
6254 | 1,387,1979,16,0, | ||
6255 | 494,1,1159,1980,16, | ||
6256 | 0,494,1,157,1981, | ||
6257 | 16,0,494,1,1413, | ||
6258 | 1982,16,0,494,1, | ||
6259 | 1665,1983,16,0,494, | ||
6260 | 1,412,1984,16,0, | ||
6261 | 494,1,1377,1985,16, | ||
6262 | 0,494,1,172,1986, | ||
6263 | 16,0,494,1,1939, | ||
6264 | 1987,16,0,494,1, | ||
6265 | 437,1988,16,0,494, | ||
6266 | 1,188,1989,16,0, | ||
6267 | 494,1,942,1990,16, | ||
6268 | 0,494,1,1195,1991, | ||
6269 | 16,0,494,1,1449, | ||
6270 | 1992,16,0,494,1, | ||
6271 | 1701,1993,16,0,494, | ||
6272 | 1,447,1464,1,205, | ||
6273 | 1994,16,0,494,1, | ||
6274 | 827,1995,16,0,494, | ||
6275 | 1,223,1996,16,0, | ||
6276 | 494,1,476,1507,1, | ||
6277 | 477,1513,1,1231,1997, | ||
6278 | 16,0,494,1,479, | ||
6279 | 1523,1,480,1528,1, | ||
6280 | 1485,1998,16,0,494, | ||
6281 | 1,1737,1999,16,0, | ||
6282 | 494,1,242,2000,16, | ||
6283 | 0,494,1,478,1546, | ||
6284 | 1,1001,1551,1,1002, | ||
6285 | 1556,1,19,2001,19, | ||
6286 | 227,1,19,2002,5, | ||
6287 | 171,1,256,2003,16, | ||
6288 | 0,225,1,1261,2004, | ||
6289 | 16,0,225,1,1011, | ||
6290 | 1074,1,1012,2005,16, | ||
6291 | 0,483,1,1515,2006, | ||
6292 | 16,0,225,1,262, | ||
6293 | 1091,1,1267,2007,16, | ||
6294 | 0,483,1,2021,707, | ||
6295 | 1,1521,2008,16,0, | ||
6296 | 483,1,1775,2009,16, | ||
6297 | 0,225,1,2029,714, | ||
6298 | 1,2030,720,1,2031, | ||
6299 | 725,1,2032,730,1, | ||
6300 | 2033,735,1,277,2010, | ||
6301 | 16,0,225,1,2035, | ||
6302 | 741,1,2037,746,1, | ||
6303 | 2039,751,1,32,2011, | ||
6304 | 16,0,225,1,2041, | ||
6305 | 757,1,2043,762,1, | ||
6306 | 2044,767,1,40,1133, | ||
6307 | 1,41,2012,16,0, | ||
6308 | 225,1,42,2013,16, | ||
6309 | 0,483,1,43,2014, | ||
6310 | 16,0,225,1,44, | ||
6311 | 1149,1,1802,774,1, | ||
6312 | 2556,2015,16,0,483, | ||
6313 | 1,1804,2016,16,0, | ||
6314 | 225,1,48,1157,1, | ||
6315 | 49,1163,1,2309,2017, | ||
6316 | 16,0,225,1,51, | ||
6317 | 1169,1,52,2018,16, | ||
6318 | 0,225,1,47,1151, | ||
6319 | 1,305,1179,1,50, | ||
6320 | 1174,1,509,2019,16, | ||
6321 | 0,225,1,299,2020, | ||
6322 | 16,0,225,1,283, | ||
6323 | 1144,1,63,1190,1, | ||
6324 | 1002,1556,1,66,1196, | ||
6325 | 1,67,1201,1,68, | ||
6326 | 1206,1,69,1211,1, | ||
6327 | 70,1216,1,71,2021, | ||
6328 | 16,0,225,1,73, | ||
6329 | 2022,16,0,483,1, | ||
6330 | 74,1221,1,1013,1226, | ||
6331 | 1,76,2023,16,0, | ||
6332 | 225,1,1834,2024,16, | ||
6333 | 0,225,1,1048,2025, | ||
6334 | 16,0,483,1,79, | ||
6335 | 2026,16,0,225,1, | ||
6336 | 1335,2027,16,0,225, | ||
6337 | 1,82,2028,16,0, | ||
6338 | 483,1,1840,2029,16, | ||
6339 | 0,483,1,1297,2030, | ||
6340 | 16,0,225,1,85, | ||
6341 | 2031,16,0,225,1, | ||
6342 | 1341,2032,16,0,483, | ||
6343 | 1,89,2033,16,0, | ||
6344 | 225,1,1303,2034,16, | ||
6345 | 0,483,1,1096,1284, | ||
6346 | 1,93,1290,1,2354, | ||
6347 | 853,1,2355,858,1, | ||
6348 | 97,2035,16,0,225, | ||
6349 | 1,2358,807,1,2360, | ||
6350 | 813,1,102,2036,16, | ||
6351 | 0,225,1,1860,820, | ||
6352 | 1,107,2037,16,0, | ||
6353 | 483,1,1114,1313,1, | ||
6354 | 112,2038,16,0,225, | ||
6355 | 1,1117,2039,16,0, | ||
6356 | 225,1,352,1301,1, | ||
6357 | 1873,829,1,118,2040, | ||
6358 | 16,0,483,1,1123, | ||
6359 | 2041,16,0,483,1, | ||
6360 | 371,1326,1,2550,2042, | ||
6361 | 16,0,225,1,1377, | ||
6362 | 2043,16,0,483,1, | ||
6363 | 124,2044,16,0,225, | ||
6364 | 1,1882,2045,16,0, | ||
6365 | 483,1,377,1342,1, | ||
6366 | 2135,836,1,827,2046, | ||
6367 | 16,0,483,1,380, | ||
6368 | 1352,1,130,2047,16, | ||
6369 | 0,483,1,322,2048, | ||
6370 | 16,0,225,1,2074, | ||
6371 | 2049,16,0,225,1, | ||
6372 | 373,1370,1,387,2050, | ||
6373 | 16,0,483,1,137, | ||
6374 | 2051,16,0,225,1, | ||
6375 | 515,2052,16,0,483, | ||
6376 | 1,379,1375,1,143, | ||
6377 | 2053,16,0,483,1, | ||
6378 | 1901,2054,16,0,225, | ||
6379 | 1,2197,2055,16,0, | ||
6380 | 225,1,1153,2056,16, | ||
6381 | 0,225,1,375,1337, | ||
6382 | 1,151,2057,16,0, | ||
6383 | 225,1,1407,2058,16, | ||
6384 | 0,225,1,1659,2059, | ||
6385 | 16,0,225,1,1159, | ||
6386 | 2060,16,0,483,1, | ||
6387 | 381,2061,16,0,225, | ||
6388 | 1,157,2062,16,0, | ||
6389 | 483,1,1413,2063,16, | ||
6390 | 0,483,1,883,2064, | ||
6391 | 16,0,483,1,1371, | ||
6392 | 2065,16,0,225,1, | ||
6393 | 328,1274,1,2104,801, | ||
6394 | 1,2105,2066,16,0, | ||
6395 | 225,1,166,2067,16, | ||
6396 | 0,225,1,346,2068, | ||
6397 | 16,0,225,1,1622, | ||
6398 | 2069,16,0,225,1, | ||
6399 | 406,2070,16,0,225, | ||
6400 | 1,1574,787,1,172, | ||
6401 | 2071,16,0,483,1, | ||
6402 | 1931,863,1,412,2072, | ||
6403 | 16,0,483,1,1933, | ||
6404 | 2073,16,0,225,1, | ||
6405 | 1876,2074,16,0,225, | ||
6406 | 1,431,2075,16,0, | ||
6407 | 225,1,1585,2076,16, | ||
6408 | 0,225,1,182,2077, | ||
6409 | 16,0,225,1,1628, | ||
6410 | 2078,16,0,483,1, | ||
6411 | 1189,2079,16,0,225, | ||
6412 | 1,437,2080,16,0, | ||
6413 | 483,1,1591,2081,16, | ||
6414 | 0,483,1,188,2082, | ||
6415 | 16,0,483,1,1695, | ||
6416 | 2083,16,0,225,1, | ||
6417 | 1195,2084,16,0,483, | ||
6418 | 1,1449,2085,16,0, | ||
6419 | 483,1,1701,2086,16, | ||
6420 | 0,483,1,447,2087, | ||
6421 | 16,0,225,1,199, | ||
6422 | 2088,16,0,225,1, | ||
6423 | 1958,2089,16,0,225, | ||
6424 | 1,525,2090,16,0, | ||
6425 | 225,1,1657,878,1, | ||
6426 | 205,2091,16,0,483, | ||
6427 | 1,459,2092,16,0, | ||
6428 | 225,1,462,2093,16, | ||
6429 | 0,225,1,1665,2094, | ||
6430 | 16,0,483,1,217, | ||
6431 | 2095,16,0,225,1, | ||
6432 | 2226,886,1,942,2096, | ||
6433 | 16,0,483,1,1225, | ||
6434 | 2097,16,0,225,1, | ||
6435 | 223,2098,16,0,483, | ||
6436 | 1,1479,2099,16,0, | ||
6437 | 225,1,1731,2100,16, | ||
6438 | 0,225,1,477,1513, | ||
6439 | 1,1231,2101,16,0, | ||
6440 | 483,1,479,1523,1, | ||
6441 | 480,1528,1,1485,2102, | ||
6442 | 16,0,483,1,1737, | ||
6443 | 2103,16,0,483,1, | ||
6444 | 1989,894,1,1990,2104, | ||
6445 | 16,0,225,1,1443, | ||
6446 | 2105,16,0,225,1, | ||
6447 | 236,2106,16,0,225, | ||
6448 | 1,476,1507,1,242, | ||
6449 | 2107,16,0,483,1, | ||
6450 | 478,1546,1,1939,2108, | ||
6451 | 16,0,483,1,1001, | ||
6452 | 1551,1,1555,2109,16, | ||
6453 | 0,483,1,1756,2110, | ||
6454 | 16,0,225,1,20, | ||
6455 | 2111,19,458,1,20, | ||
6456 | 2112,5,83,1,1011, | ||
6457 | 1074,1,1012,2113,16, | ||
6458 | 0,456,1,1013,1226, | ||
6459 | 1,262,1091,1,1267, | ||
6460 | 2114,16,0,456,1, | ||
6461 | 515,2115,16,0,456, | ||
6462 | 1,1521,2116,16,0, | ||
6463 | 456,1,525,1184,1, | ||
6464 | 283,1144,1,40,1133, | ||
6465 | 1,42,2117,16,0, | ||
6466 | 456,1,44,1149,1, | ||
6467 | 2556,2118,16,0,456, | ||
6468 | 1,47,1151,1,1303, | ||
6469 | 2119,16,0,456,1, | ||
6470 | 1555,2120,16,0,456, | ||
6471 | 1,50,1174,1,48, | ||
6472 | 1157,1,49,1163,1, | ||
6473 | 51,1169,1,63,1190, | ||
6474 | 1,305,1179,1,66, | ||
6475 | 1196,1,67,1201,1, | ||
6476 | 68,1206,1,69,1211, | ||
6477 | 1,70,1216,1,73, | ||
6478 | 2121,16,0,456,1, | ||
6479 | 74,1221,1,328,2122, | ||
6480 | 16,0,456,1,1048, | ||
6481 | 2123,16,0,456,1, | ||
6482 | 82,2124,16,0,456, | ||
6483 | 1,1840,2125,16,0, | ||
6484 | 456,1,1591,2126,16, | ||
6485 | 0,456,1,1341,2127, | ||
6486 | 16,0,456,1,1096, | ||
6487 | 1284,1,93,1290,1, | ||
6488 | 352,2128,16,0,456, | ||
6489 | 1,107,2129,16,0, | ||
6490 | 456,1,1114,1313,1, | ||
6491 | 118,2130,16,0,456, | ||
6492 | 1,1123,2131,16,0, | ||
6493 | 456,1,371,1326,1, | ||
6494 | 1628,2132,16,0,456, | ||
6495 | 1,375,1337,1,1882, | ||
6496 | 2133,16,0,456,1, | ||
6497 | 377,1342,1,379,1375, | ||
6498 | 1,380,1352,1,883, | ||
6499 | 2134,16,0,456,1, | ||
6500 | 373,1370,1,130,2135, | ||
6501 | 16,0,456,1,143, | ||
6502 | 2136,16,0,456,1, | ||
6503 | 387,2137,16,0,456, | ||
6504 | 1,1159,2138,16,0, | ||
6505 | 456,1,157,2139,16, | ||
6506 | 0,456,1,1413,2140, | ||
6507 | 16,0,456,1,1665, | ||
6508 | 2141,16,0,456,1, | ||
6509 | 412,2142,16,0,456, | ||
6510 | 1,1377,2143,16,0, | ||
6511 | 456,1,172,2144,16, | ||
6512 | 0,456,1,1939,2145, | ||
6513 | 16,0,456,1,437, | ||
6514 | 2146,16,0,456,1, | ||
6515 | 188,2147,16,0,456, | ||
6516 | 1,942,2148,16,0, | ||
6517 | 456,1,1195,2149,16, | ||
6518 | 0,456,1,1449,2150, | ||
6519 | 16,0,456,1,1701, | ||
6520 | 2151,16,0,456,1, | ||
6521 | 447,1464,1,205,2152, | ||
6522 | 16,0,456,1,827, | ||
6523 | 2153,16,0,456,1, | ||
6524 | 223,2154,16,0,456, | ||
6525 | 1,476,1507,1,477, | ||
6526 | 1513,1,1231,2155,16, | ||
6527 | 0,456,1,479,1523, | ||
6528 | 1,480,1528,1,1485, | ||
6529 | 2156,16,0,456,1, | ||
6530 | 1737,2157,16,0,456, | ||
6531 | 1,242,2158,16,0, | ||
6532 | 456,1,478,1546,1, | ||
6533 | 1001,1551,1,1002,1556, | ||
6534 | 1,21,2159,19,449, | ||
6535 | 1,21,2160,5,83, | ||
6536 | 1,1011,1074,1,1012, | ||
6537 | 2161,16,0,447,1, | ||
6538 | 1013,1226,1,262,1091, | ||
6539 | 1,1267,2162,16,0, | ||
6540 | 447,1,515,2163,16, | ||
6541 | 0,447,1,1521,2164, | ||
6542 | 16,0,447,1,525, | ||
6543 | 1184,1,283,1144,1, | ||
6544 | 40,1133,1,42,2165, | ||
6545 | 16,0,447,1,44, | ||
6546 | 1149,1,2556,2166,16, | ||
6547 | 0,447,1,47,1151, | ||
6548 | 1,1303,2167,16,0, | ||
6549 | 447,1,1555,2168,16, | ||
6550 | 0,447,1,50,1174, | ||
6551 | 1,48,1157,1,49, | ||
6552 | 1163,1,51,1169,1, | ||
6553 | 63,1190,1,305,1179, | ||
6554 | 1,66,1196,1,67, | ||
6555 | 1201,1,68,1206,1, | ||
6556 | 69,1211,1,70,1216, | ||
6557 | 1,73,2169,16,0, | ||
6558 | 447,1,74,1221,1, | ||
6559 | 328,2170,16,0,447, | ||
6560 | 1,1048,2171,16,0, | ||
6561 | 447,1,82,2172,16, | ||
6562 | 0,447,1,1840,2173, | ||
6563 | 16,0,447,1,1591, | ||
6564 | 2174,16,0,447,1, | ||
6565 | 1341,2175,16,0,447, | ||
6566 | 1,1096,1284,1,93, | ||
6567 | 1290,1,352,2176,16, | ||
6568 | 0,447,1,107,2177, | ||
6569 | 16,0,447,1,1114, | ||
6570 | 1313,1,118,2178,16, | ||
6571 | 0,447,1,1123,2179, | ||
6572 | 16,0,447,1,371, | ||
6573 | 1326,1,1628,2180,16, | ||
6574 | 0,447,1,375,1337, | ||
6575 | 1,1882,2181,16,0, | ||
6576 | 447,1,377,1342,1, | ||
6577 | 379,1375,1,380,1352, | ||
6578 | 1,883,2182,16,0, | ||
6579 | 447,1,373,1370,1, | ||
6580 | 130,2183,16,0,447, | ||
6581 | 1,143,2184,16,0, | ||
6582 | 447,1,387,2185,16, | ||
6583 | 0,447,1,1159,2186, | ||
6584 | 16,0,447,1,157, | ||
6585 | 2187,16,0,447,1, | ||
6586 | 1413,2188,16,0,447, | ||
6587 | 1,1665,2189,16,0, | ||
6588 | 447,1,412,2190,16, | ||
6589 | 0,447,1,1377,2191, | ||
6590 | 16,0,447,1,172, | ||
6591 | 2192,16,0,447,1, | ||
6592 | 1939,2193,16,0,447, | ||
6593 | 1,437,2194,16,0, | ||
6594 | 447,1,188,2195,16, | ||
6595 | 0,447,1,942,2196, | ||
6596 | 16,0,447,1,1195, | ||
6597 | 2197,16,0,447,1, | ||
6598 | 1449,2198,16,0,447, | ||
6599 | 1,1701,2199,16,0, | ||
6600 | 447,1,447,1464,1, | ||
6601 | 205,2200,16,0,447, | ||
6602 | 1,827,2201,16,0, | ||
6603 | 447,1,223,2202,16, | ||
6604 | 0,447,1,476,1507, | ||
6605 | 1,477,1513,1,1231, | ||
6606 | 2203,16,0,447,1, | ||
6607 | 479,1523,1,480,1528, | ||
6608 | 1,1485,2204,16,0, | ||
6609 | 447,1,1737,2205,16, | ||
6610 | 0,447,1,242,2206, | ||
6611 | 16,0,447,1,478, | ||
6612 | 1546,1,1001,1551,1, | ||
6613 | 1002,1556,1,22,2207, | ||
6614 | 19,435,1,22,2208, | ||
6615 | 5,83,1,1011,1074, | ||
6616 | 1,1012,2209,16,0, | ||
6617 | 433,1,1013,1226,1, | ||
6618 | 262,1091,1,1267,2210, | ||
6619 | 16,0,433,1,515, | ||
6620 | 2211,16,0,433,1, | ||
6621 | 1521,2212,16,0,433, | ||
6622 | 1,525,1184,1,283, | ||
6623 | 1144,1,40,1133,1, | ||
6624 | 42,2213,16,0,433, | ||
6625 | 1,44,1149,1,2556, | ||
6626 | 2214,16,0,433,1, | ||
6627 | 47,1151,1,1303,2215, | ||
6628 | 16,0,433,1,1555, | ||
6629 | 2216,16,0,433,1, | ||
6630 | 50,1174,1,48,1157, | ||
6631 | 1,49,1163,1,51, | ||
6632 | 1169,1,63,1190,1, | ||
6633 | 305,1179,1,66,1196, | ||
6634 | 1,67,1201,1,68, | ||
6635 | 1206,1,69,1211,1, | ||
6636 | 70,1216,1,73,2217, | ||
6637 | 16,0,433,1,74, | ||
6638 | 1221,1,328,2218,16, | ||
6639 | 0,433,1,1048,2219, | ||
6640 | 16,0,433,1,82, | ||
6641 | 2220,16,0,433,1, | ||
6642 | 1840,2221,16,0,433, | ||
6643 | 1,1591,2222,16,0, | ||
6644 | 433,1,1341,2223,16, | ||
6645 | 0,433,1,1096,1284, | ||
6646 | 1,93,1290,1,352, | ||
6647 | 2224,16,0,433,1, | ||
6648 | 107,2225,16,0,433, | ||
6649 | 1,1114,1313,1,118, | ||
6650 | 2226,16,0,433,1, | ||
6651 | 1123,2227,16,0,433, | ||
6652 | 1,371,1326,1,1628, | ||
6653 | 2228,16,0,433,1, | ||
6654 | 375,1337,1,1882,2229, | ||
6655 | 16,0,433,1,377, | ||
6656 | 1342,1,379,1375,1, | ||
6657 | 380,1352,1,883,2230, | ||
6658 | 16,0,433,1,373, | ||
6659 | 1370,1,130,2231,16, | ||
6660 | 0,433,1,143,2232, | ||
6661 | 16,0,433,1,387, | ||
6662 | 2233,16,0,433,1, | ||
6663 | 1159,2234,16,0,433, | ||
6664 | 1,157,2235,16,0, | ||
6665 | 433,1,1413,2236,16, | ||
6666 | 0,433,1,1665,2237, | ||
6667 | 16,0,433,1,412, | ||
6668 | 2238,16,0,433,1, | ||
6669 | 1377,2239,16,0,433, | ||
6670 | 1,172,2240,16,0, | ||
6671 | 433,1,1939,2241,16, | ||
6672 | 0,433,1,437,2242, | ||
6673 | 16,0,433,1,188, | ||
6674 | 2243,16,0,433,1, | ||
6675 | 942,2244,16,0,433, | ||
6676 | 1,1195,2245,16,0, | ||
6677 | 433,1,1449,2246,16, | ||
6678 | 0,433,1,1701,2247, | ||
6679 | 16,0,433,1,447, | ||
6680 | 1464,1,205,2248,16, | ||
6681 | 0,433,1,827,2249, | ||
6682 | 16,0,433,1,223, | ||
6683 | 2250,16,0,433,1, | ||
6684 | 476,1507,1,477,1513, | ||
6685 | 1,1231,2251,16,0, | ||
6686 | 433,1,479,1523,1, | ||
6687 | 480,1528,1,1485,2252, | ||
6688 | 16,0,433,1,1737, | ||
6689 | 2253,16,0,433,1, | ||
6690 | 242,2254,16,0,433, | ||
6691 | 1,478,1546,1,1001, | ||
6692 | 1551,1,1002,1556,1, | ||
6693 | 23,2255,19,508,1, | ||
6694 | 23,2256,5,36,1, | ||
6695 | 2074,2257,16,0,506, | ||
6696 | 1,1860,820,1,2197, | ||
6697 | 2258,16,0,506,1, | ||
6698 | 2309,2259,16,0,506, | ||
6699 | 1,1657,878,1,2031, | ||
6700 | 725,1,1989,894,1, | ||
6701 | 1990,2260,16,0,506, | ||
6702 | 1,1775,2261,16,0, | ||
6703 | 506,1,32,2262,16, | ||
6704 | 0,506,1,2104,801, | ||
6705 | 1,2105,2263,16,0, | ||
6706 | 506,1,2226,886,1, | ||
6707 | 1901,2264,16,0,506, | ||
6708 | 1,1802,774,1,2021, | ||
6709 | 707,1,1804,2265,16, | ||
6710 | 0,506,1,2135,836, | ||
6711 | 1,2354,853,1,2355, | ||
6712 | 858,1,2029,714,1, | ||
6713 | 2030,720,1,2358,807, | ||
6714 | 1,2032,730,1,2360, | ||
6715 | 813,1,2035,741,1, | ||
6716 | 2037,746,1,2039,751, | ||
6717 | 1,1931,863,1,2041, | ||
6718 | 757,1,1873,829,1, | ||
6719 | 2043,762,1,2044,767, | ||
6720 | 1,2033,735,1,1574, | ||
6721 | 787,1,1958,2266,16, | ||
6722 | 0,506,1,24,2267, | ||
6723 | 19,177,1,24,2268, | ||
6724 | 5,5,1,44,2269, | ||
6725 | 16,0,175,1,377, | ||
6726 | 2270,16,0,544,1, | ||
6727 | 40,2271,16,0,662, | ||
6728 | 1,63,2272,16,0, | ||
6729 | 195,1,373,2273,16, | ||
6730 | 0,540,1,25,2274, | ||
6731 | 19,339,1,25,2275, | ||
6732 | 5,172,1,256,2276, | ||
6733 | 16,0,549,1,1261, | ||
6734 | 2277,16,0,549,1, | ||
6735 | 1011,1074,1,1012,2278, | ||
6736 | 16,0,337,1,1515, | ||
6737 | 2279,16,0,549,1, | ||
6738 | 262,1091,1,1267,2280, | ||
6739 | 16,0,337,1,2021, | ||
6740 | 707,1,1521,2281,16, | ||
6741 | 0,337,1,1775,2282, | ||
6742 | 16,0,549,1,2029, | ||
6743 | 714,1,2030,720,1, | ||
6744 | 2031,725,1,2032,730, | ||
6745 | 1,2033,735,1,277, | ||
6746 | 2283,16,0,549,1, | ||
6747 | 2035,741,1,2037,746, | ||
6748 | 1,2039,751,1,32, | ||
6749 | 2284,16,0,549,1, | ||
6750 | 2041,757,1,2043,762, | ||
6751 | 1,2044,767,1,40, | ||
6752 | 1133,1,41,2285,16, | ||
6753 | 0,549,1,42,2286, | ||
6754 | 16,0,337,1,43, | ||
6755 | 2287,16,0,549,1, | ||
6756 | 44,1149,1,1802,774, | ||
6757 | 1,2556,2288,16,0, | ||
6758 | 337,1,1804,2289,16, | ||
6759 | 0,549,1,48,1157, | ||
6760 | 1,49,1163,1,2309, | ||
6761 | 2290,16,0,549,1, | ||
6762 | 51,1169,1,52,2291, | ||
6763 | 16,0,549,1,47, | ||
6764 | 1151,1,305,1179,1, | ||
6765 | 50,1174,1,509,2292, | ||
6766 | 16,0,549,1,299, | ||
6767 | 2293,16,0,549,1, | ||
6768 | 62,2294,16,0,549, | ||
6769 | 1,63,1190,1,1002, | ||
6770 | 1556,1,66,1196,1, | ||
6771 | 67,1201,1,68,1206, | ||
6772 | 1,69,1211,1,70, | ||
6773 | 1216,1,71,2295,16, | ||
6774 | 0,549,1,283,1144, | ||
6775 | 1,73,2296,16,0, | ||
6776 | 337,1,74,1221,1, | ||
6777 | 1013,1226,1,76,2297, | ||
6778 | 16,0,549,1,1834, | ||
6779 | 2298,16,0,549,1, | ||
6780 | 1048,1236,1,79,2299, | ||
6781 | 16,0,549,1,1335, | ||
6782 | 2300,16,0,549,1, | ||
6783 | 82,2301,16,0,337, | ||
6784 | 1,1840,2302,16,0, | ||
6785 | 337,1,1297,2303,16, | ||
6786 | 0,549,1,85,2304, | ||
6787 | 16,0,549,1,1341, | ||
6788 | 2305,16,0,337,1, | ||
6789 | 89,2306,16,0,549, | ||
6790 | 1,1303,2307,16,0, | ||
6791 | 337,1,1096,1284,1, | ||
6792 | 93,1290,1,2354,853, | ||
6793 | 1,2355,858,1,97, | ||
6794 | 2308,16,0,549,1, | ||
6795 | 2358,807,1,2360,813, | ||
6796 | 1,102,2309,16,0, | ||
6797 | 549,1,1860,820,1, | ||
6798 | 107,2310,16,0,337, | ||
6799 | 1,1114,1313,1,112, | ||
6800 | 2311,16,0,549,1, | ||
6801 | 1117,2312,16,0,549, | ||
6802 | 1,352,1301,1,1873, | ||
6803 | 829,1,118,1316,1, | ||
6804 | 1123,2313,16,0,337, | ||
6805 | 1,371,1326,1,2550, | ||
6806 | 2314,16,0,549,1, | ||
6807 | 1377,2315,16,0,337, | ||
6808 | 1,124,2316,16,0, | ||
6809 | 549,1,1882,2317,16, | ||
6810 | 0,337,1,377,1342, | ||
6811 | 1,2135,836,1,827, | ||
6812 | 2318,16,0,337,1, | ||
6813 | 380,1352,1,130,1358, | ||
6814 | 1,322,2319,16,0, | ||
6815 | 549,1,2074,2320,16, | ||
6816 | 0,549,1,373,1370, | ||
6817 | 1,387,2321,16,0, | ||
6818 | 337,1,137,2322,16, | ||
6819 | 0,549,1,515,2323, | ||
6820 | 16,0,337,1,379, | ||
6821 | 1375,1,143,2324,16, | ||
6822 | 0,337,1,1901,2325, | ||
6823 | 16,0,549,1,2197, | ||
6824 | 2326,16,0,549,1, | ||
6825 | 1153,2327,16,0,549, | ||
6826 | 1,375,1337,1,151, | ||
6827 | 2328,16,0,549,1, | ||
6828 | 1407,2329,16,0,549, | ||
6829 | 1,1659,2330,16,0, | ||
6830 | 549,1,1159,2331,16, | ||
6831 | 0,337,1,381,2332, | ||
6832 | 16,0,549,1,157, | ||
6833 | 2333,16,0,337,1, | ||
6834 | 1413,2334,16,0,337, | ||
6835 | 1,883,2335,16,0, | ||
6836 | 337,1,1371,2336,16, | ||
6837 | 0,549,1,328,1274, | ||
6838 | 1,2104,801,1,2105, | ||
6839 | 2337,16,0,549,1, | ||
6840 | 166,2338,16,0,549, | ||
6841 | 1,346,2339,16,0, | ||
6842 | 549,1,1622,2340,16, | ||
6843 | 0,549,1,406,2341, | ||
6844 | 16,0,549,1,1574, | ||
6845 | 787,1,172,1428,1, | ||
6846 | 1931,863,1,412,2342, | ||
6847 | 16,0,337,1,1933, | ||
6848 | 2343,16,0,549,1, | ||
6849 | 1876,2344,16,0,549, | ||
6850 | 1,431,2345,16,0, | ||
6851 | 549,1,1585,2346,16, | ||
6852 | 0,549,1,182,2347, | ||
6853 | 16,0,549,1,1628, | ||
6854 | 2348,16,0,337,1, | ||
6855 | 1189,2349,16,0,549, | ||
6856 | 1,437,2350,16,0, | ||
6857 | 337,1,1591,2351,16, | ||
6858 | 0,337,1,188,1471, | ||
6859 | 1,1695,2352,16,0, | ||
6860 | 549,1,1195,2353,16, | ||
6861 | 0,337,1,1449,2354, | ||
6862 | 16,0,337,1,1701, | ||
6863 | 2355,16,0,337,1, | ||
6864 | 447,2356,16,0,549, | ||
6865 | 1,199,2357,16,0, | ||
6866 | 549,1,1958,2358,16, | ||
6867 | 0,549,1,525,2359, | ||
6868 | 16,0,549,1,1657, | ||
6869 | 878,1,205,2360,16, | ||
6870 | 0,337,1,459,2361, | ||
6871 | 16,0,549,1,462, | ||
6872 | 2362,16,0,549,1, | ||
6873 | 1665,2363,16,0,337, | ||
6874 | 1,217,2364,16,0, | ||
6875 | 549,1,2226,886,1, | ||
6876 | 942,1444,1,1225,2365, | ||
6877 | 16,0,549,1,223, | ||
6878 | 2366,16,0,337,1, | ||
6879 | 1479,2367,16,0,549, | ||
6880 | 1,1731,2368,16,0, | ||
6881 | 549,1,477,1513,1, | ||
6882 | 1231,2369,16,0,337, | ||
6883 | 1,479,1523,1,480, | ||
6884 | 1528,1,1485,2370,16, | ||
6885 | 0,337,1,1737,2371, | ||
6886 | 16,0,337,1,1989, | ||
6887 | 894,1,1990,2372,16, | ||
6888 | 0,549,1,1443,2373, | ||
6889 | 16,0,549,1,236, | ||
6890 | 2374,16,0,549,1, | ||
6891 | 476,1507,1,242,2375, | ||
6892 | 16,0,337,1,478, | ||
6893 | 1546,1,1939,2376,16, | ||
6894 | 0,337,1,1001,1551, | ||
6895 | 1,1555,2377,16,0, | ||
6896 | 337,1,1756,2378,16, | ||
6897 | 0,549,1,26,2379, | ||
6898 | 19,369,1,26,2380, | ||
6899 | 5,83,1,1011,1074, | ||
6900 | 1,1012,2381,16,0, | ||
6901 | 367,1,1013,1226,1, | ||
6902 | 262,1091,1,1267,2382, | ||
6903 | 16,0,367,1,515, | ||
6904 | 2383,16,0,648,1, | ||
6905 | 1521,2384,16,0,367, | ||
6906 | 1,525,1184,1,283, | ||
6907 | 1144,1,40,1133,1, | ||
6908 | 42,2385,16,0,367, | ||
6909 | 1,44,1149,1,2556, | ||
6910 | 2386,16,0,367,1, | ||
6911 | 47,1151,1,1303,2387, | ||
6912 | 16,0,367,1,1555, | ||
6913 | 2388,16,0,367,1, | ||
6914 | 50,1174,1,48,1157, | ||
6915 | 1,49,1163,1,51, | ||
6916 | 1169,1,63,1190,1, | ||
6917 | 305,1179,1,66,1196, | ||
6918 | 1,67,1201,1,68, | ||
6919 | 1206,1,69,1211,1, | ||
6920 | 70,1216,1,73,2389, | ||
6921 | 16,0,367,1,74, | ||
6922 | 1221,1,328,1274,1, | ||
6923 | 1048,1236,1,82,2390, | ||
6924 | 16,0,367,1,1840, | ||
6925 | 2391,16,0,367,1, | ||
6926 | 1591,2392,16,0,367, | ||
6927 | 1,1341,2393,16,0, | ||
6928 | 367,1,1096,1284,1, | ||
6929 | 93,1290,1,352,1301, | ||
6930 | 1,107,2394,16,0, | ||
6931 | 367,1,1114,1313,1, | ||
6932 | 118,1316,1,1123,2395, | ||
6933 | 16,0,367,1,371, | ||
6934 | 1326,1,1628,2396,16, | ||
6935 | 0,367,1,375,1337, | ||
6936 | 1,1882,2397,16,0, | ||
6937 | 367,1,377,1342,1, | ||
6938 | 379,1375,1,380,1352, | ||
6939 | 1,883,2398,16,0, | ||
6940 | 367,1,373,1370,1, | ||
6941 | 130,1358,1,143,2399, | ||
6942 | 16,0,367,1,387, | ||
6943 | 2400,16,0,367,1, | ||
6944 | 1159,2401,16,0,367, | ||
6945 | 1,157,2402,16,0, | ||
6946 | 367,1,1413,2403,16, | ||
6947 | 0,367,1,1665,2404, | ||
6948 | 16,0,367,1,412, | ||
6949 | 2405,16,0,367,1, | ||
6950 | 1377,2406,16,0,367, | ||
6951 | 1,172,1428,1,1939, | ||
6952 | 2407,16,0,367,1, | ||
6953 | 437,2408,16,0,587, | ||
6954 | 1,188,1471,1,942, | ||
6955 | 1444,1,1195,2409,16, | ||
6956 | 0,367,1,1449,2410, | ||
6957 | 16,0,367,1,1701, | ||
6958 | 2411,16,0,367,1, | ||
6959 | 447,1464,1,205,2412, | ||
6960 | 16,0,367,1,827, | ||
6961 | 2413,16,0,367,1, | ||
6962 | 223,2414,16,0,367, | ||
6963 | 1,476,1507,1,477, | ||
6964 | 1513,1,1231,2415,16, | ||
6965 | 0,367,1,479,1523, | ||
6966 | 1,480,1528,1,1485, | ||
6967 | 2416,16,0,367,1, | ||
6968 | 1737,2417,16,0,367, | ||
6969 | 1,242,2418,16,0, | ||
6970 | 367,1,478,1546,1, | ||
6971 | 1001,1551,1,1002,1556, | ||
6972 | 1,27,2419,19,597, | ||
6973 | 1,27,2420,5,91, | ||
6974 | 1,256,2421,16,0, | ||
6975 | 595,1,1261,2422,16, | ||
6976 | 0,595,1,509,2423, | ||
6977 | 16,0,595,1,2197, | ||
6978 | 2424,16,0,595,1, | ||
6979 | 1515,2425,16,0,595, | ||
6980 | 1,2021,707,1,1775, | ||
6981 | 2426,16,0,595,1, | ||
6982 | 2029,714,1,2030,720, | ||
6983 | 1,2031,725,1,2032, | ||
6984 | 730,1,2033,735,1, | ||
6985 | 277,2427,16,0,595, | ||
6986 | 1,2035,741,1,2037, | ||
6987 | 746,1,2039,751,1, | ||
6988 | 32,2428,16,0,595, | ||
6989 | 1,2041,757,1,2043, | ||
6990 | 762,1,2044,767,1, | ||
6991 | 2550,2429,16,0,595, | ||
6992 | 1,41,2430,16,0, | ||
6993 | 595,1,1297,2431,16, | ||
6994 | 0,595,1,43,2432, | ||
6995 | 16,0,595,1,1802, | ||
6996 | 774,1,1804,2433,16, | ||
6997 | 0,595,1,299,2434, | ||
6998 | 16,0,595,1,2309, | ||
6999 | 2435,16,0,595,1, | ||
7000 | 52,2436,16,0,595, | ||
7001 | 1,525,2437,16,0, | ||
7002 | 595,1,62,2438,16, | ||
7003 | 0,595,1,2074,2439, | ||
7004 | 16,0,595,1,1574, | ||
7005 | 787,1,71,2440,16, | ||
7006 | 0,595,1,76,2441, | ||
7007 | 16,0,595,1,1834, | ||
7008 | 2442,16,0,595,1, | ||
7009 | 1585,2443,16,0,595, | ||
7010 | 1,1335,2444,16,0, | ||
7011 | 595,1,79,2445,16, | ||
7012 | 0,595,1,85,2446, | ||
7013 | 16,0,595,1,89, | ||
7014 | 2447,16,0,595,1, | ||
7015 | 346,2448,16,0,595, | ||
7016 | 1,2104,801,1,2105, | ||
7017 | 2449,16,0,595,1, | ||
7018 | 2358,807,1,2360,813, | ||
7019 | 1,97,2450,16,0, | ||
7020 | 595,1,1860,820,1, | ||
7021 | 102,2451,16,0,595, | ||
7022 | 1,112,2452,16,0, | ||
7023 | 595,1,1117,2453,16, | ||
7024 | 0,595,1,1873,829, | ||
7025 | 1,1876,2454,16,0, | ||
7026 | 595,1,124,2455,16, | ||
7027 | 0,595,1,2135,836, | ||
7028 | 1,381,2456,16,0, | ||
7029 | 595,1,322,2457,16, | ||
7030 | 0,595,1,137,2458, | ||
7031 | 16,0,595,1,1901, | ||
7032 | 2459,16,0,595,1, | ||
7033 | 1153,2460,16,0,595, | ||
7034 | 1,151,2461,16,0, | ||
7035 | 595,1,1407,2462,16, | ||
7036 | 0,595,1,1659,2463, | ||
7037 | 16,0,595,1,406, | ||
7038 | 2464,16,0,595,1, | ||
7039 | 1371,2465,16,0,595, | ||
7040 | 1,166,2466,16,0, | ||
7041 | 595,1,1622,2467,16, | ||
7042 | 0,595,1,2354,853, | ||
7043 | 1,2355,858,1,1931, | ||
7044 | 863,1,1933,2468,16, | ||
7045 | 0,595,1,431,2469, | ||
7046 | 16,0,595,1,182, | ||
7047 | 2470,16,0,595,1, | ||
7048 | 1189,2471,16,0,595, | ||
7049 | 1,1443,2472,16,0, | ||
7050 | 595,1,1695,2473,16, | ||
7051 | 0,595,1,447,2474, | ||
7052 | 16,0,595,1,199, | ||
7053 | 2475,16,0,595,1, | ||
7054 | 1958,2476,16,0,595, | ||
7055 | 1,1657,878,1,459, | ||
7056 | 2477,16,0,595,1, | ||
7057 | 462,2478,16,0,595, | ||
7058 | 1,217,2479,16,0, | ||
7059 | 595,1,2226,886,1, | ||
7060 | 1225,2480,16,0,595, | ||
7061 | 1,1479,2481,16,0, | ||
7062 | 595,1,1731,2482,16, | ||
7063 | 0,595,1,1989,894, | ||
7064 | 1,1990,2483,16,0, | ||
7065 | 595,1,236,2484,16, | ||
7066 | 0,595,1,1756,2485, | ||
7067 | 16,0,595,1,28, | ||
7068 | 2486,19,627,1,28, | ||
7069 | 2487,5,60,1,328, | ||
7070 | 1274,1,223,1497,1, | ||
7071 | 1096,1284,1,118,1316, | ||
7072 | 1,883,1412,1,525, | ||
7073 | 1184,1,1001,1551,1, | ||
7074 | 130,1358,1,459,1639, | ||
7075 | 1,1114,1313,1,352, | ||
7076 | 1301,1,447,1464,1, | ||
7077 | 464,1642,1,1011,1074, | ||
7078 | 1,1013,1226,1,242, | ||
7079 | 1541,1,143,1380,1, | ||
7080 | 40,1133,1,41,1617, | ||
7081 | 1,42,1621,1,479, | ||
7082 | 1523,1,44,1149,1, | ||
7083 | 481,1648,1,373,1370, | ||
7084 | 1,47,1151,1,157, | ||
7085 | 1402,1,49,1163,1, | ||
7086 | 50,1174,1,48,1157, | ||
7087 | 1,379,1375,1,380, | ||
7088 | 1352,1,51,1169,1, | ||
7089 | 476,1507,1,371,1326, | ||
7090 | 1,478,1546,1,1048, | ||
7091 | 1236,1,375,1337,1, | ||
7092 | 172,1428,1,262,1091, | ||
7093 | 1,283,1144,1,63, | ||
7094 | 1190,1,67,1201,1, | ||
7095 | 68,1206,1,69,1211, | ||
7096 | 1,66,1196,1,461, | ||
7097 | 2488,16,0,625,1, | ||
7098 | 74,1221,1,377,1342, | ||
7099 | 1,1002,1556,1,70, | ||
7100 | 1216,1,188,1471,1, | ||
7101 | 82,1252,1,305,1179, | ||
7102 | 1,477,1513,1,827, | ||
7103 | 1347,1,93,1290,1, | ||
7104 | 480,1528,1,205,1481, | ||
7105 | 1,942,1444,1,107, | ||
7106 | 1308,1,29,2489,19, | ||
7107 | 304,1,29,2490,5, | ||
7108 | 83,1,1011,1074,1, | ||
7109 | 1012,2491,16,0,302, | ||
7110 | 1,1013,1226,1,262, | ||
7111 | 1091,1,1267,2492,16, | ||
7112 | 0,302,1,515,2493, | ||
7113 | 16,0,302,1,1521, | ||
7114 | 2494,16,0,302,1, | ||
7115 | 525,1184,1,283,1144, | ||
7116 | 1,40,1133,1,42, | ||
7117 | 2495,16,0,302,1, | ||
7118 | 44,1149,1,2556,2496, | ||
7119 | 16,0,302,1,47, | ||
7120 | 1151,1,1303,2497,16, | ||
7121 | 0,302,1,1555,2498, | ||
7122 | 16,0,302,1,50, | ||
7123 | 1174,1,48,1157,1, | ||
7124 | 49,1163,1,51,1169, | ||
7125 | 1,63,1190,1,305, | ||
7126 | 1179,1,66,1196,1, | ||
7127 | 67,1201,1,68,1206, | ||
7128 | 1,69,1211,1,70, | ||
7129 | 1216,1,73,2499,16, | ||
7130 | 0,302,1,74,1221, | ||
7131 | 1,328,1274,1,1048, | ||
7132 | 1236,1,82,2500,16, | ||
7133 | 0,302,1,1840,2501, | ||
7134 | 16,0,302,1,1591, | ||
7135 | 2502,16,0,302,1, | ||
7136 | 1341,2503,16,0,302, | ||
7137 | 1,1096,1284,1,93, | ||
7138 | 1290,1,352,1301,1, | ||
7139 | 107,2504,16,0,302, | ||
7140 | 1,1114,1313,1,118, | ||
7141 | 1316,1,1123,2505,16, | ||
7142 | 0,302,1,371,1326, | ||
7143 | 1,1628,2506,16,0, | ||
7144 | 302,1,375,1337,1, | ||
7145 | 1882,2507,16,0,302, | ||
7146 | 1,377,1342,1,379, | ||
7147 | 1375,1,380,1352,1, | ||
7148 | 883,2508,16,0,302, | ||
7149 | 1,373,1370,1,130, | ||
7150 | 1358,1,143,1380,1, | ||
7151 | 387,2509,16,0,302, | ||
7152 | 1,1159,2510,16,0, | ||
7153 | 302,1,157,1402,1, | ||
7154 | 1413,2511,16,0,302, | ||
7155 | 1,1665,2512,16,0, | ||
7156 | 302,1,412,2513,16, | ||
7157 | 0,302,1,1377,2514, | ||
7158 | 16,0,302,1,172, | ||
7159 | 1428,1,1939,2515,16, | ||
7160 | 0,302,1,437,2516, | ||
7161 | 16,0,302,1,188, | ||
7162 | 1471,1,942,1444,1, | ||
7163 | 1195,2517,16,0,302, | ||
7164 | 1,1449,2518,16,0, | ||
7165 | 302,1,1701,2519,16, | ||
7166 | 0,302,1,447,1464, | ||
7167 | 1,205,2520,16,0, | ||
7168 | 302,1,827,2521,16, | ||
7169 | 0,302,1,223,2522, | ||
7170 | 16,0,302,1,476, | ||
7171 | 1507,1,477,1513,1, | ||
7172 | 1231,2523,16,0,302, | ||
7173 | 1,479,1523,1,480, | ||
7174 | 1528,1,1485,2524,16, | ||
7175 | 0,302,1,1737,2525, | ||
7176 | 16,0,302,1,242, | ||
7177 | 2526,16,0,302,1, | ||
7178 | 478,1546,1,1001,1551, | ||
7179 | 1,1002,1556,1,30, | ||
7180 | 2527,19,272,1,30, | ||
7181 | 2528,5,83,1,1011, | ||
7182 | 1074,1,1012,2529,16, | ||
7183 | 0,270,1,1013,1226, | ||
7184 | 1,262,1091,1,1267, | ||
7185 | 2530,16,0,270,1, | ||
7186 | 515,2531,16,0,270, | ||
7187 | 1,1521,2532,16,0, | ||
7188 | 270,1,525,1184,1, | ||
7189 | 283,1144,1,40,1133, | ||
7190 | 1,42,2533,16,0, | ||
7191 | 270,1,44,1149,1, | ||
7192 | 2556,2534,16,0,270, | ||
7193 | 1,47,1151,1,1303, | ||
7194 | 2535,16,0,270,1, | ||
7195 | 1555,2536,16,0,270, | ||
7196 | 1,50,1174,1,48, | ||
7197 | 1157,1,49,1163,1, | ||
7198 | 51,1169,1,63,1190, | ||
7199 | 1,305,1179,1,66, | ||
7200 | 1196,1,67,1201,1, | ||
7201 | 68,1206,1,69,1211, | ||
7202 | 1,70,1216,1,73, | ||
7203 | 2537,16,0,270,1, | ||
7204 | 74,1221,1,328,1274, | ||
7205 | 1,1048,1236,1,82, | ||
7206 | 2538,16,0,270,1, | ||
7207 | 1840,2539,16,0,270, | ||
7208 | 1,1591,2540,16,0, | ||
7209 | 270,1,1341,2541,16, | ||
7210 | 0,270,1,1096,1284, | ||
7211 | 1,93,1290,1,352, | ||
7212 | 1301,1,107,2542,16, | ||
7213 | 0,270,1,1114,1313, | ||
7214 | 1,118,1316,1,1123, | ||
7215 | 2543,16,0,270,1, | ||
7216 | 371,1326,1,1628,2544, | ||
7217 | 16,0,270,1,375, | ||
7218 | 1337,1,1882,2545,16, | ||
7219 | 0,270,1,377,1342, | ||
7220 | 1,379,1375,1,380, | ||
7221 | 1352,1,883,2546,16, | ||
7222 | 0,270,1,373,1370, | ||
7223 | 1,130,1358,1,143, | ||
7224 | 1380,1,387,2547,16, | ||
7225 | 0,270,1,1159,2548, | ||
7226 | 16,0,270,1,157, | ||
7227 | 1402,1,1413,2549,16, | ||
7228 | 0,270,1,1665,2550, | ||
7229 | 16,0,270,1,412, | ||
7230 | 2551,16,0,270,1, | ||
7231 | 1377,2552,16,0,270, | ||
7232 | 1,172,1428,1,1939, | ||
7233 | 2553,16,0,270,1, | ||
7234 | 437,2554,16,0,270, | ||
7235 | 1,188,1471,1,942, | ||
7236 | 1444,1,1195,2555,16, | ||
7237 | 0,270,1,1449,2556, | ||
7238 | 16,0,270,1,1701, | ||
7239 | 2557,16,0,270,1, | ||
7240 | 447,1464,1,205,2558, | ||
7241 | 16,0,270,1,827, | ||
7242 | 2559,16,0,270,1, | ||
7243 | 223,2560,16,0,270, | ||
7244 | 1,476,1507,1,477, | ||
7245 | 1513,1,1231,2561,16, | ||
7246 | 0,270,1,479,1523, | ||
7247 | 1,480,1528,1,1485, | ||
7248 | 2562,16,0,270,1, | ||
7249 | 1737,2563,16,0,270, | ||
7250 | 1,242,2564,16,0, | ||
7251 | 270,1,478,1546,1, | ||
7252 | 1001,1551,1,1002,1556, | ||
7253 | 1,31,2565,19,251, | ||
7254 | 1,31,2566,5,83, | ||
7255 | 1,1011,1074,1,1012, | ||
7256 | 2567,16,0,249,1, | ||
7257 | 1013,1226,1,262,1091, | ||
7258 | 1,1267,2568,16,0, | ||
7259 | 249,1,515,2569,16, | ||
7260 | 0,249,1,1521,2570, | ||
7261 | 16,0,249,1,525, | ||
7262 | 1184,1,283,1144,1, | ||
7263 | 40,1133,1,42,2571, | ||
7264 | 16,0,249,1,44, | ||
7265 | 1149,1,2556,2572,16, | ||
7266 | 0,249,1,47,1151, | ||
7267 | 1,1303,2573,16,0, | ||
7268 | 249,1,1555,2574,16, | ||
7269 | 0,249,1,50,1174, | ||
7270 | 1,48,1157,1,49, | ||
7271 | 1163,1,51,1169,1, | ||
7272 | 63,1190,1,305,1179, | ||
7273 | 1,66,1196,1,67, | ||
7274 | 1201,1,68,1206,1, | ||
7275 | 69,1211,1,70,1216, | ||
7276 | 1,73,2575,16,0, | ||
7277 | 249,1,74,1221,1, | ||
7278 | 328,1274,1,1048,1236, | ||
7279 | 1,82,2576,16,0, | ||
7280 | 249,1,1840,2577,16, | ||
7281 | 0,249,1,1591,2578, | ||
7282 | 16,0,249,1,1341, | ||
7283 | 2579,16,0,249,1, | ||
7284 | 1096,1284,1,93,1290, | ||
7285 | 1,352,1301,1,107, | ||
7286 | 2580,16,0,249,1, | ||
7287 | 1114,1313,1,118,1316, | ||
7288 | 1,1123,2581,16,0, | ||
7289 | 249,1,371,1326,1, | ||
7290 | 1628,2582,16,0,249, | ||
7291 | 1,375,1337,1,1882, | ||
7292 | 2583,16,0,249,1, | ||
7293 | 377,1342,1,379,1375, | ||
7294 | 1,380,1352,1,883, | ||
7295 | 2584,16,0,249,1, | ||
7296 | 373,1370,1,130,1358, | ||
7297 | 1,143,2585,16,0, | ||
7298 | 249,1,387,2586,16, | ||
7299 | 0,249,1,1159,2587, | ||
7300 | 16,0,249,1,157, | ||
7301 | 2588,16,0,249,1, | ||
7302 | 1413,2589,16,0,249, | ||
7303 | 1,1665,2590,16,0, | ||
7304 | 249,1,412,2591,16, | ||
7305 | 0,249,1,1377,2592, | ||
7306 | 16,0,249,1,172, | ||
7307 | 1428,1,1939,2593,16, | ||
7308 | 0,249,1,437,2594, | ||
7309 | 16,0,249,1,188, | ||
7310 | 1471,1,942,1444,1, | ||
7311 | 1195,2595,16,0,249, | ||
7312 | 1,1449,2596,16,0, | ||
7313 | 249,1,1701,2597,16, | ||
7314 | 0,249,1,447,1464, | ||
7315 | 1,205,2598,16,0, | ||
7316 | 249,1,827,2599,16, | ||
7317 | 0,249,1,223,2600, | ||
7318 | 16,0,249,1,476, | ||
7319 | 1507,1,477,1513,1, | ||
7320 | 1231,2601,16,0,249, | ||
7321 | 1,479,1523,1,480, | ||
7322 | 1528,1,1485,2602,16, | ||
7323 | 0,249,1,1737,2603, | ||
7324 | 16,0,249,1,242, | ||
7325 | 2604,16,0,249,1, | ||
7326 | 478,1546,1,1001,1551, | ||
7327 | 1,1002,1556,1,32, | ||
7328 | 2605,19,244,1,32, | ||
7329 | 2606,5,83,1,1011, | ||
7330 | 1074,1,1012,2607,16, | ||
7331 | 0,242,1,1013,1226, | ||
7332 | 1,262,1091,1,1267, | ||
7333 | 2608,16,0,242,1, | ||
7334 | 515,2609,16,0,242, | ||
7335 | 1,1521,2610,16,0, | ||
7336 | 242,1,525,1184,1, | ||
7337 | 283,1144,1,40,1133, | ||
7338 | 1,42,2611,16,0, | ||
7339 | 242,1,44,1149,1, | ||
7340 | 2556,2612,16,0,242, | ||
7341 | 1,47,1151,1,1303, | ||
7342 | 2613,16,0,242,1, | ||
7343 | 1555,2614,16,0,242, | ||
7344 | 1,50,1174,1,48, | ||
7345 | 1157,1,49,1163,1, | ||
7346 | 51,1169,1,63,1190, | ||
7347 | 1,305,1179,1,66, | ||
7348 | 1196,1,67,1201,1, | ||
7349 | 68,1206,1,69,1211, | ||
7350 | 1,70,1216,1,73, | ||
7351 | 2615,16,0,242,1, | ||
7352 | 74,1221,1,328,1274, | ||
7353 | 1,1048,1236,1,82, | ||
7354 | 2616,16,0,242,1, | ||
7355 | 1840,2617,16,0,242, | ||
7356 | 1,1591,2618,16,0, | ||
7357 | 242,1,1341,2619,16, | ||
7358 | 0,242,1,1096,1284, | ||
7359 | 1,93,1290,1,352, | ||
7360 | 1301,1,107,2620,16, | ||
7361 | 0,242,1,1114,1313, | ||
7362 | 1,118,1316,1,1123, | ||
7363 | 2621,16,0,242,1, | ||
7364 | 371,1326,1,1628,2622, | ||
7365 | 16,0,242,1,375, | ||
7366 | 1337,1,1882,2623,16, | ||
7367 | 0,242,1,377,1342, | ||
7368 | 1,379,1375,1,380, | ||
7369 | 1352,1,883,2624,16, | ||
7370 | 0,242,1,373,1370, | ||
7371 | 1,130,1358,1,143, | ||
7372 | 2625,16,0,242,1, | ||
7373 | 387,2626,16,0,242, | ||
7374 | 1,1159,2627,16,0, | ||
7375 | 242,1,157,2628,16, | ||
7376 | 0,242,1,1413,2629, | ||
7377 | 16,0,242,1,1665, | ||
7378 | 2630,16,0,242,1, | ||
7379 | 412,2631,16,0,242, | ||
7380 | 1,1377,2632,16,0, | ||
7381 | 242,1,172,1428,1, | ||
7382 | 1939,2633,16,0,242, | ||
7383 | 1,437,2634,16,0, | ||
7384 | 242,1,188,1471,1, | ||
7385 | 942,1444,1,1195,2635, | ||
7386 | 16,0,242,1,1449, | ||
7387 | 2636,16,0,242,1, | ||
7388 | 1701,2637,16,0,242, | ||
7389 | 1,447,1464,1,205, | ||
7390 | 2638,16,0,242,1, | ||
7391 | 827,2639,16,0,242, | ||
7392 | 1,223,2640,16,0, | ||
7393 | 242,1,476,1507,1, | ||
7394 | 477,1513,1,1231,2641, | ||
7395 | 16,0,242,1,479, | ||
7396 | 1523,1,480,1528,1, | ||
7397 | 1485,2642,16,0,242, | ||
7398 | 1,1737,2643,16,0, | ||
7399 | 242,1,242,2644,16, | ||
7400 | 0,242,1,478,1546, | ||
7401 | 1,1001,1551,1,1002, | ||
7402 | 1556,1,33,2645,19, | ||
7403 | 416,1,33,2646,5, | ||
7404 | 83,1,1011,1074,1, | ||
7405 | 1012,2647,16,0,414, | ||
7406 | 1,1013,1226,1,262, | ||
7407 | 1091,1,1267,2648,16, | ||
7408 | 0,414,1,515,2649, | ||
7409 | 16,0,414,1,1521, | ||
7410 | 2650,16,0,414,1, | ||
7411 | 525,1184,1,283,1144, | ||
7412 | 1,40,1133,1,42, | ||
7413 | 2651,16,0,414,1, | ||
7414 | 44,1149,1,2556,2652, | ||
7415 | 16,0,414,1,47, | ||
7416 | 1151,1,1303,2653,16, | ||
7417 | 0,414,1,1555,2654, | ||
7418 | 16,0,414,1,50, | ||
7419 | 1174,1,48,1157,1, | ||
7420 | 49,1163,1,51,1169, | ||
7421 | 1,63,1190,1,305, | ||
7422 | 1179,1,66,1196,1, | ||
7423 | 67,1201,1,68,1206, | ||
7424 | 1,69,1211,1,70, | ||
7425 | 1216,1,73,2655,16, | ||
7426 | 0,414,1,74,1221, | ||
7427 | 1,328,1274,1,1048, | ||
7428 | 1236,1,82,2656,16, | ||
7429 | 0,414,1,1840,2657, | ||
7430 | 16,0,414,1,1591, | ||
7431 | 2658,16,0,414,1, | ||
7432 | 1341,2659,16,0,414, | ||
7433 | 1,1096,1284,1,93, | ||
7434 | 1290,1,352,1301,1, | ||
7435 | 107,2660,16,0,414, | ||
7436 | 1,1114,1313,1,118, | ||
7437 | 1316,1,1123,2661,16, | ||
7438 | 0,414,1,371,1326, | ||
7439 | 1,1628,2662,16,0, | ||
7440 | 414,1,375,1337,1, | ||
7441 | 1882,2663,16,0,414, | ||
7442 | 1,377,1342,1,379, | ||
7443 | 1375,1,380,1352,1, | ||
7444 | 883,2664,16,0,414, | ||
7445 | 1,373,1370,1,130, | ||
7446 | 1358,1,143,1380,1, | ||
7447 | 387,2665,16,0,414, | ||
7448 | 1,1159,2666,16,0, | ||
7449 | 414,1,157,1402,1, | ||
7450 | 1413,2667,16,0,414, | ||
7451 | 1,1665,2668,16,0, | ||
7452 | 414,1,412,2669,16, | ||
7453 | 0,414,1,1377,2670, | ||
7454 | 16,0,414,1,172, | ||
7455 | 1428,1,1939,2671,16, | ||
7456 | 0,414,1,437,2672, | ||
7457 | 16,0,414,1,188, | ||
7458 | 1471,1,942,1444,1, | ||
7459 | 1195,2673,16,0,414, | ||
7460 | 1,1449,2674,16,0, | ||
7461 | 414,1,1701,2675,16, | ||
7462 | 0,414,1,447,1464, | ||
7463 | 1,205,2676,16,0, | ||
7464 | 414,1,827,2677,16, | ||
7465 | 0,414,1,223,2678, | ||
7466 | 16,0,414,1,476, | ||
7467 | 1507,1,477,1513,1, | ||
7468 | 1231,2679,16,0,414, | ||
7469 | 1,479,1523,1,480, | ||
7470 | 1528,1,1485,2680,16, | ||
7471 | 0,414,1,1737,2681, | ||
7472 | 16,0,414,1,242, | ||
7473 | 1541,1,478,1546,1, | ||
7474 | 1001,1551,1,1002,1556, | ||
7475 | 1,34,2682,19,385, | ||
7476 | 1,34,2683,5,83, | ||
7477 | 1,1011,1074,1,1012, | ||
7478 | 2684,16,0,383,1, | ||
7479 | 1013,1226,1,262,1091, | ||
7480 | 1,1267,2685,16,0, | ||
7481 | 383,1,515,2686,16, | ||
7482 | 0,383,1,1521,2687, | ||
7483 | 16,0,383,1,525, | ||
7484 | 1184,1,283,1144,1, | ||
7485 | 40,1133,1,42,2688, | ||
7486 | 16,0,383,1,44, | ||
7487 | 1149,1,2556,2689,16, | ||
7488 | 0,383,1,47,1151, | ||
7489 | 1,1303,2690,16,0, | ||
7490 | 383,1,1555,2691,16, | ||
7491 | 0,383,1,50,1174, | ||
7492 | 1,48,1157,1,49, | ||
7493 | 1163,1,51,1169,1, | ||
7494 | 63,1190,1,305,1179, | ||
7495 | 1,66,1196,1,67, | ||
7496 | 1201,1,68,1206,1, | ||
7497 | 69,1211,1,70,1216, | ||
7498 | 1,73,2692,16,0, | ||
7499 | 383,1,74,1221,1, | ||
7500 | 328,1274,1,1048,1236, | ||
7501 | 1,82,2693,16,0, | ||
7502 | 383,1,1840,2694,16, | ||
7503 | 0,383,1,1591,2695, | ||
7504 | 16,0,383,1,1341, | ||
7505 | 2696,16,0,383,1, | ||
7506 | 1096,1284,1,93,1290, | ||
7507 | 1,352,1301,1,107, | ||
7508 | 2697,16,0,383,1, | ||
7509 | 1114,1313,1,118,1316, | ||
7510 | 1,1123,2698,16,0, | ||
7511 | 383,1,371,1326,1, | ||
7512 | 1628,2699,16,0,383, | ||
7513 | 1,375,1337,1,1882, | ||
7514 | 2700,16,0,383,1, | ||
7515 | 377,1342,1,379,1375, | ||
7516 | 1,380,1352,1,883, | ||
7517 | 2701,16,0,383,1, | ||
7518 | 373,1370,1,130,1358, | ||
7519 | 1,143,1380,1,387, | ||
7520 | 2702,16,0,383,1, | ||
7521 | 1159,2703,16,0,383, | ||
7522 | 1,157,1402,1,1413, | ||
7523 | 2704,16,0,383,1, | ||
7524 | 1665,2705,16,0,383, | ||
7525 | 1,412,2706,16,0, | ||
7526 | 383,1,1377,2707,16, | ||
7527 | 0,383,1,172,1428, | ||
7528 | 1,1939,2708,16,0, | ||
7529 | 383,1,437,2709,16, | ||
7530 | 0,383,1,188,1471, | ||
7531 | 1,942,1444,1,1195, | ||
7532 | 2710,16,0,383,1, | ||
7533 | 1449,2711,16,0,383, | ||
7534 | 1,1701,2712,16,0, | ||
7535 | 383,1,447,1464,1, | ||
7536 | 205,1481,1,827,2713, | ||
7537 | 16,0,383,1,223, | ||
7538 | 1497,1,476,1507,1, | ||
7539 | 477,1513,1,1231,2714, | ||
7540 | 16,0,383,1,479, | ||
7541 | 1523,1,480,1528,1, | ||
7542 | 1485,2715,16,0,383, | ||
7543 | 1,1737,2716,16,0, | ||
7544 | 383,1,242,1541,1, | ||
7545 | 478,1546,1,1001,1551, | ||
7546 | 1,1002,1556,1,35, | ||
7547 | 2717,19,372,1,35, | ||
7548 | 2718,5,83,1,1011, | ||
7549 | 1074,1,1012,2719,16, | ||
7550 | 0,370,1,1013,1226, | ||
7551 | 1,262,1091,1,1267, | ||
7552 | 2720,16,0,370,1, | ||
7553 | 515,2721,16,0,370, | ||
7554 | 1,1521,2722,16,0, | ||
7555 | 370,1,525,1184,1, | ||
7556 | 283,1144,1,40,1133, | ||
7557 | 1,42,2723,16,0, | ||
7558 | 370,1,44,1149,1, | ||
7559 | 2556,2724,16,0,370, | ||
7560 | 1,47,1151,1,1303, | ||
7561 | 2725,16,0,370,1, | ||
7562 | 1555,2726,16,0,370, | ||
7563 | 1,50,1174,1,48, | ||
7564 | 1157,1,49,1163,1, | ||
7565 | 51,1169,1,63,1190, | ||
7566 | 1,305,1179,1,66, | ||
7567 | 1196,1,67,1201,1, | ||
7568 | 68,1206,1,69,1211, | ||
7569 | 1,70,1216,1,73, | ||
7570 | 2727,16,0,370,1, | ||
7571 | 74,1221,1,328,1274, | ||
7572 | 1,1048,1236,1,82, | ||
7573 | 2728,16,0,370,1, | ||
7574 | 1840,2729,16,0,370, | ||
7575 | 1,1591,2730,16,0, | ||
7576 | 370,1,1341,2731,16, | ||
7577 | 0,370,1,1096,1284, | ||
7578 | 1,93,1290,1,352, | ||
7579 | 1301,1,107,2732,16, | ||
7580 | 0,370,1,1114,1313, | ||
7581 | 1,118,1316,1,1123, | ||
7582 | 2733,16,0,370,1, | ||
7583 | 371,1326,1,1628,2734, | ||
7584 | 16,0,370,1,375, | ||
7585 | 1337,1,1882,2735,16, | ||
7586 | 0,370,1,377,1342, | ||
7587 | 1,379,1375,1,380, | ||
7588 | 1352,1,883,2736,16, | ||
7589 | 0,370,1,373,1370, | ||
7590 | 1,130,1358,1,143, | ||
7591 | 1380,1,387,2737,16, | ||
7592 | 0,370,1,1159,2738, | ||
7593 | 16,0,370,1,157, | ||
7594 | 1402,1,1413,2739,16, | ||
7595 | 0,370,1,1665,2740, | ||
7596 | 16,0,370,1,412, | ||
7597 | 2741,16,0,370,1, | ||
7598 | 1377,2742,16,0,370, | ||
7599 | 1,172,1428,1,1939, | ||
7600 | 2743,16,0,370,1, | ||
7601 | 437,2744,16,0,370, | ||
7602 | 1,188,1471,1,942, | ||
7603 | 1444,1,1195,2745,16, | ||
7604 | 0,370,1,1449,2746, | ||
7605 | 16,0,370,1,1701, | ||
7606 | 2747,16,0,370,1, | ||
7607 | 447,1464,1,205,1481, | ||
7608 | 1,827,2748,16,0, | ||
7609 | 370,1,223,2749,16, | ||
7610 | 0,370,1,476,1507, | ||
7611 | 1,477,1513,1,1231, | ||
7612 | 2750,16,0,370,1, | ||
7613 | 479,1523,1,480,1528, | ||
7614 | 1,1485,2751,16,0, | ||
7615 | 370,1,1737,2752,16, | ||
7616 | 0,370,1,242,1541, | ||
7617 | 1,478,1546,1,1001, | ||
7618 | 1551,1,1002,1556,1, | ||
7619 | 36,2753,19,215,1, | ||
7620 | 36,2754,5,90,1, | ||
7621 | 256,2755,16,0,213, | ||
7622 | 1,1261,2756,16,0, | ||
7623 | 213,1,509,2757,16, | ||
7624 | 0,213,1,2197,2758, | ||
7625 | 16,0,213,1,1515, | ||
7626 | 2759,16,0,213,1, | ||
7627 | 2021,707,1,1775,2760, | ||
7628 | 16,0,213,1,2029, | ||
7629 | 714,1,2030,720,1, | ||
7630 | 2031,725,1,2032,730, | ||
7631 | 1,2033,735,1,277, | ||
7632 | 2761,16,0,213,1, | ||
7633 | 2035,741,1,2037,746, | ||
7634 | 1,2039,751,1,32, | ||
7635 | 2762,16,0,213,1, | ||
7636 | 2041,757,1,2043,762, | ||
7637 | 1,2044,767,1,2550, | ||
7638 | 2763,16,0,213,1, | ||
7639 | 41,2764,16,0,213, | ||
7640 | 1,1297,2765,16,0, | ||
7641 | 213,1,43,2766,16, | ||
7642 | 0,213,1,1802,774, | ||
7643 | 1,1804,2767,16,0, | ||
7644 | 213,1,299,2768,16, | ||
7645 | 0,213,1,2309,2769, | ||
7646 | 16,0,213,1,52, | ||
7647 | 2770,16,0,213,1, | ||
7648 | 525,2771,16,0,213, | ||
7649 | 1,2074,2772,16,0, | ||
7650 | 213,1,1574,787,1, | ||
7651 | 71,2773,16,0,213, | ||
7652 | 1,76,2774,16,0, | ||
7653 | 213,1,1834,2775,16, | ||
7654 | 0,213,1,79,2776, | ||
7655 | 16,0,213,1,1335, | ||
7656 | 2777,16,0,213,1, | ||
7657 | 322,2778,16,0,213, | ||
7658 | 1,85,2779,16,0, | ||
7659 | 213,1,89,2780,16, | ||
7660 | 0,213,1,346,2781, | ||
7661 | 16,0,213,1,2104, | ||
7662 | 801,1,2105,2782,16, | ||
7663 | 0,213,1,2358,807, | ||
7664 | 1,2360,813,1,97, | ||
7665 | 2783,16,0,213,1, | ||
7666 | 1860,820,1,102,2784, | ||
7667 | 16,0,213,1,112, | ||
7668 | 2785,16,0,213,1, | ||
7669 | 1117,2786,16,0,213, | ||
7670 | 1,1873,829,1,1876, | ||
7671 | 2787,16,0,213,1, | ||
7672 | 124,2788,16,0,213, | ||
7673 | 1,2135,836,1,381, | ||
7674 | 2789,16,0,213,1, | ||
7675 | 137,2790,16,0,213, | ||
7676 | 1,1901,2791,16,0, | ||
7677 | 213,1,1153,2792,16, | ||
7678 | 0,213,1,151,2793, | ||
7679 | 16,0,213,1,1407, | ||
7680 | 2794,16,0,213,1, | ||
7681 | 1659,2795,16,0,213, | ||
7682 | 1,406,2796,16,0, | ||
7683 | 213,1,1371,2797,16, | ||
7684 | 0,213,1,166,2798, | ||
7685 | 16,0,213,1,1622, | ||
7686 | 2799,16,0,213,1, | ||
7687 | 2354,853,1,2355,858, | ||
7688 | 1,1931,863,1,1933, | ||
7689 | 2800,16,0,213,1, | ||
7690 | 431,2801,16,0,213, | ||
7691 | 1,1585,2802,16,0, | ||
7692 | 213,1,182,2803,16, | ||
7693 | 0,213,1,1189,2804, | ||
7694 | 16,0,213,1,1443, | ||
7695 | 2805,16,0,213,1, | ||
7696 | 1695,2806,16,0,213, | ||
7697 | 1,447,2807,16,0, | ||
7698 | 213,1,199,2808,16, | ||
7699 | 0,213,1,1958,2809, | ||
7700 | 16,0,213,1,1657, | ||
7701 | 878,1,459,2810,16, | ||
7702 | 0,213,1,462,2811, | ||
7703 | 16,0,213,1,217, | ||
7704 | 2812,16,0,213,1, | ||
7705 | 2226,886,1,1225,2813, | ||
7706 | 16,0,213,1,1479, | ||
7707 | 2814,16,0,213,1, | ||
7708 | 1731,2815,16,0,213, | ||
7709 | 1,1989,894,1,1990, | ||
7710 | 2816,16,0,213,1, | ||
7711 | 236,2817,16,0,213, | ||
7712 | 1,1756,2818,16,0, | ||
7713 | 213,1,37,2819,19, | ||
7714 | 234,1,37,2820,5, | ||
7715 | 90,1,256,2821,16, | ||
7716 | 0,232,1,1261,2822, | ||
7717 | 16,0,232,1,509, | ||
7718 | 2823,16,0,232,1, | ||
7719 | 2197,2824,16,0,232, | ||
7720 | 1,1515,2825,16,0, | ||
7721 | 232,1,2021,707,1, | ||
7722 | 1775,2826,16,0,232, | ||
7723 | 1,2029,714,1,2030, | ||
7724 | 720,1,2031,725,1, | ||
7725 | 2032,730,1,2033,735, | ||
7726 | 1,277,2827,16,0, | ||
7727 | 232,1,2035,741,1, | ||
7728 | 2037,746,1,2039,751, | ||
7729 | 1,32,2828,16,0, | ||
7730 | 232,1,2041,757,1, | ||
7731 | 2043,762,1,2044,767, | ||
7732 | 1,2550,2829,16,0, | ||
7733 | 232,1,41,2830,16, | ||
7734 | 0,232,1,1297,2831, | ||
7735 | 16,0,232,1,43, | ||
7736 | 2832,16,0,232,1, | ||
7737 | 1802,774,1,1804,2833, | ||
7738 | 16,0,232,1,299, | ||
7739 | 2834,16,0,232,1, | ||
7740 | 2309,2835,16,0,232, | ||
7741 | 1,52,2836,16,0, | ||
7742 | 232,1,525,2837,16, | ||
7743 | 0,232,1,2074,2838, | ||
7744 | 16,0,232,1,1574, | ||
7745 | 787,1,71,2839,16, | ||
7746 | 0,232,1,76,2840, | ||
7747 | 16,0,232,1,1834, | ||
7748 | 2841,16,0,232,1, | ||
7749 | 79,2842,16,0,232, | ||
7750 | 1,1335,2843,16,0, | ||
7751 | 232,1,322,2844,16, | ||
7752 | 0,232,1,85,2845, | ||
7753 | 16,0,232,1,89, | ||
7754 | 2846,16,0,232,1, | ||
7755 | 346,2847,16,0,232, | ||
7756 | 1,2104,801,1,2105, | ||
7757 | 2848,16,0,232,1, | ||
7758 | 2358,807,1,2360,813, | ||
7759 | 1,97,2849,16,0, | ||
7760 | 232,1,1860,820,1, | ||
7761 | 102,2850,16,0,232, | ||
7762 | 1,112,2851,16,0, | ||
7763 | 232,1,1117,2852,16, | ||
7764 | 0,232,1,1873,829, | ||
7765 | 1,1876,2853,16,0, | ||
7766 | 232,1,124,2854,16, | ||
7767 | 0,232,1,2135,836, | ||
7768 | 1,381,2855,16,0, | ||
7769 | 232,1,137,2856,16, | ||
7770 | 0,232,1,1901,2857, | ||
7771 | 16,0,232,1,1153, | ||
7772 | 2858,16,0,232,1, | ||
7773 | 151,2859,16,0,232, | ||
7774 | 1,1407,2860,16,0, | ||
7775 | 232,1,1659,2861,16, | ||
7776 | 0,232,1,406,2862, | ||
7777 | 16,0,232,1,1371, | ||
7778 | 2863,16,0,232,1, | ||
7779 | 166,2864,16,0,232, | ||
7780 | 1,1622,2865,16,0, | ||
7781 | 232,1,2354,853,1, | ||
7782 | 2355,858,1,1931,863, | ||
7783 | 1,1933,2866,16,0, | ||
7784 | 232,1,431,2867,16, | ||
7785 | 0,232,1,1585,2868, | ||
7786 | 16,0,232,1,182, | ||
7787 | 2869,16,0,232,1, | ||
7788 | 1189,2870,16,0,232, | ||
7789 | 1,1443,2871,16,0, | ||
7790 | 232,1,1695,2872,16, | ||
7791 | 0,232,1,447,2873, | ||
7792 | 16,0,232,1,199, | ||
7793 | 2874,16,0,232,1, | ||
7794 | 1958,2875,16,0,232, | ||
7795 | 1,1657,878,1,459, | ||
7796 | 2876,16,0,232,1, | ||
7797 | 462,2877,16,0,232, | ||
7798 | 1,217,2878,16,0, | ||
7799 | 232,1,2226,886,1, | ||
7800 | 1225,2879,16,0,232, | ||
7801 | 1,1479,2880,16,0, | ||
7802 | 232,1,1731,2881,16, | ||
7803 | 0,232,1,1989,894, | ||
7804 | 1,1990,2882,16,0, | ||
7805 | 232,1,236,2883,16, | ||
7806 | 0,232,1,1756,2884, | ||
7807 | 16,0,232,1,38, | ||
7808 | 2885,19,231,1,38, | ||
7809 | 2886,5,83,1,1011, | ||
7810 | 1074,1,1012,2887,16, | ||
7811 | 0,229,1,1013,1226, | ||
7812 | 1,262,1091,1,1267, | ||
7813 | 2888,16,0,229,1, | ||
7814 | 515,2889,16,0,229, | ||
7815 | 1,1521,2890,16,0, | ||
7816 | 229,1,525,1184,1, | ||
7817 | 283,1144,1,40,1133, | ||
7818 | 1,42,2891,16,0, | ||
7819 | 229,1,44,1149,1, | ||
7820 | 2556,2892,16,0,229, | ||
7821 | 1,47,1151,1,1303, | ||
7822 | 2893,16,0,229,1, | ||
7823 | 1555,2894,16,0,229, | ||
7824 | 1,50,1174,1,48, | ||
7825 | 1157,1,49,1163,1, | ||
7826 | 51,1169,1,63,1190, | ||
7827 | 1,305,1179,1,66, | ||
7828 | 1196,1,67,1201,1, | ||
7829 | 68,1206,1,69,1211, | ||
7830 | 1,70,1216,1,73, | ||
7831 | 2895,16,0,229,1, | ||
7832 | 74,1221,1,328,1274, | ||
7833 | 1,1048,1236,1,82, | ||
7834 | 2896,16,0,229,1, | ||
7835 | 1840,2897,16,0,229, | ||
7836 | 1,1591,2898,16,0, | ||
7837 | 229,1,1341,2899,16, | ||
7838 | 0,229,1,1096,1284, | ||
7839 | 1,93,1290,1,352, | ||
7840 | 1301,1,107,2900,16, | ||
7841 | 0,229,1,1114,1313, | ||
7842 | 1,118,1316,1,1123, | ||
7843 | 2901,16,0,229,1, | ||
7844 | 371,1326,1,1628,2902, | ||
7845 | 16,0,229,1,375, | ||
7846 | 1337,1,1882,2903,16, | ||
7847 | 0,229,1,377,1342, | ||
7848 | 1,379,1375,1,380, | ||
7849 | 1352,1,883,1412,1, | ||
7850 | 373,1370,1,130,1358, | ||
7851 | 1,143,1380,1,387, | ||
7852 | 2904,16,0,229,1, | ||
7853 | 1159,2905,16,0,229, | ||
7854 | 1,157,1402,1,1413, | ||
7855 | 2906,16,0,229,1, | ||
7856 | 1665,2907,16,0,229, | ||
7857 | 1,412,2908,16,0, | ||
7858 | 229,1,1377,2909,16, | ||
7859 | 0,229,1,172,1428, | ||
7860 | 1,1939,2910,16,0, | ||
7861 | 229,1,437,2911,16, | ||
7862 | 0,229,1,188,1471, | ||
7863 | 1,942,1444,1,1195, | ||
7864 | 2912,16,0,229,1, | ||
7865 | 1449,2913,16,0,229, | ||
7866 | 1,1701,2914,16,0, | ||
7867 | 229,1,447,1464,1, | ||
7868 | 205,1481,1,827,1347, | ||
7869 | 1,223,1497,1,476, | ||
7870 | 1507,1,477,1513,1, | ||
7871 | 1231,2915,16,0,229, | ||
7872 | 1,479,1523,1,480, | ||
7873 | 1528,1,1485,2916,16, | ||
7874 | 0,229,1,1737,2917, | ||
7875 | 16,0,229,1,242, | ||
7876 | 1541,1,478,1546,1, | ||
7877 | 1001,1551,1,1002,1556, | ||
7878 | 1,39,2918,19,221, | ||
7879 | 1,39,2919,5,83, | ||
7880 | 1,1011,1074,1,1012, | ||
7881 | 2920,16,0,219,1, | ||
7882 | 1013,1226,1,262,1091, | ||
7883 | 1,1267,2921,16,0, | ||
7884 | 219,1,515,2922,16, | ||
7885 | 0,219,1,1521,2923, | ||
7886 | 16,0,219,1,525, | ||
7887 | 1184,1,283,1144,1, | ||
7888 | 40,1133,1,42,2924, | ||
7889 | 16,0,219,1,44, | ||
7890 | 1149,1,2556,2925,16, | ||
7891 | 0,219,1,47,1151, | ||
7892 | 1,1303,2926,16,0, | ||
7893 | 219,1,1555,2927,16, | ||
7894 | 0,219,1,50,1174, | ||
7895 | 1,48,1157,1,49, | ||
7896 | 1163,1,51,1169,1, | ||
7897 | 63,1190,1,305,1179, | ||
7898 | 1,66,1196,1,67, | ||
7899 | 1201,1,68,1206,1, | ||
7900 | 69,1211,1,70,1216, | ||
7901 | 1,73,2928,16,0, | ||
7902 | 219,1,74,1221,1, | ||
7903 | 328,1274,1,1048,1236, | ||
7904 | 1,82,2929,16,0, | ||
7905 | 219,1,1840,2930,16, | ||
7906 | 0,219,1,1591,2931, | ||
7907 | 16,0,219,1,1341, | ||
7908 | 2932,16,0,219,1, | ||
7909 | 1096,1284,1,93,1290, | ||
7910 | 1,352,1301,1,107, | ||
7911 | 2933,16,0,219,1, | ||
7912 | 1114,1313,1,118,1316, | ||
7913 | 1,1123,2934,16,0, | ||
7914 | 219,1,371,1326,1, | ||
7915 | 1628,2935,16,0,219, | ||
7916 | 1,375,1337,1,1882, | ||
7917 | 2936,16,0,219,1, | ||
7918 | 377,1342,1,379,1375, | ||
7919 | 1,380,1352,1,883, | ||
7920 | 1412,1,373,1370,1, | ||
7921 | 130,1358,1,143,1380, | ||
7922 | 1,387,2937,16,0, | ||
7923 | 219,1,1159,2938,16, | ||
7924 | 0,219,1,157,1402, | ||
7925 | 1,1413,2939,16,0, | ||
7926 | 219,1,1665,2940,16, | ||
7927 | 0,219,1,412,2941, | ||
7928 | 16,0,219,1,1377, | ||
7929 | 2942,16,0,219,1, | ||
7930 | 172,1428,1,1939,2943, | ||
7931 | 16,0,219,1,437, | ||
7932 | 2944,16,0,219,1, | ||
7933 | 188,1471,1,942,1444, | ||
7934 | 1,1195,2945,16,0, | ||
7935 | 219,1,1449,2946,16, | ||
7936 | 0,219,1,1701,2947, | ||
7937 | 16,0,219,1,447, | ||
7938 | 1464,1,205,1481,1, | ||
7939 | 827,1347,1,223,1497, | ||
7940 | 1,476,1507,1,477, | ||
7941 | 1513,1,1231,2948,16, | ||
7942 | 0,219,1,479,1523, | ||
7943 | 1,480,1528,1,1485, | ||
7944 | 2949,16,0,219,1, | ||
7945 | 1737,2950,16,0,219, | ||
7946 | 1,242,1541,1,478, | ||
7947 | 1546,1,1001,1551,1, | ||
7948 | 1002,1556,1,40,2951, | ||
7949 | 19,209,1,40,2952, | ||
7950 | 5,83,1,1011,1074, | ||
7951 | 1,1012,2953,16,0, | ||
7952 | 207,1,1013,1226,1, | ||
7953 | 262,1091,1,1267,2954, | ||
7954 | 16,0,207,1,515, | ||
7955 | 2955,16,0,207,1, | ||
7956 | 1521,2956,16,0,207, | ||
7957 | 1,525,1184,1,283, | ||
7958 | 1144,1,40,1133,1, | ||
7959 | 42,2957,16,0,207, | ||
7960 | 1,44,1149,1,2556, | ||
7961 | 2958,16,0,207,1, | ||
7962 | 47,1151,1,1303,2959, | ||
7963 | 16,0,207,1,1555, | ||
7964 | 2960,16,0,207,1, | ||
7965 | 50,1174,1,48,1157, | ||
7966 | 1,49,1163,1,51, | ||
7967 | 1169,1,63,1190,1, | ||
7968 | 305,1179,1,66,1196, | ||
7969 | 1,67,1201,1,68, | ||
7970 | 1206,1,69,1211,1, | ||
7971 | 70,1216,1,73,2961, | ||
7972 | 16,0,207,1,74, | ||
7973 | 1221,1,328,1274,1, | ||
7974 | 1048,1236,1,82,2962, | ||
7975 | 16,0,207,1,1840, | ||
7976 | 2963,16,0,207,1, | ||
7977 | 1591,2964,16,0,207, | ||
7978 | 1,1341,2965,16,0, | ||
7979 | 207,1,1096,1284,1, | ||
7980 | 93,1290,1,352,1301, | ||
7981 | 1,107,2966,16,0, | ||
7982 | 207,1,1114,1313,1, | ||
7983 | 118,2967,16,0,207, | ||
7984 | 1,1123,2968,16,0, | ||
7985 | 207,1,371,1326,1, | ||
7986 | 1628,2969,16,0,207, | ||
7987 | 1,375,1337,1,1882, | ||
7988 | 2970,16,0,207,1, | ||
7989 | 377,1342,1,379,1375, | ||
7990 | 1,380,1352,1,883, | ||
7991 | 2971,16,0,207,1, | ||
7992 | 373,1370,1,130,2972, | ||
7993 | 16,0,207,1,143, | ||
7994 | 2973,16,0,207,1, | ||
7995 | 387,2974,16,0,207, | ||
7996 | 1,1159,2975,16,0, | ||
7997 | 207,1,157,2976,16, | ||
7998 | 0,207,1,1413,2977, | ||
7999 | 16,0,207,1,1665, | ||
8000 | 2978,16,0,207,1, | ||
8001 | 412,2979,16,0,207, | ||
8002 | 1,1377,2980,16,0, | ||
8003 | 207,1,172,2981,16, | ||
8004 | 0,207,1,1939,2982, | ||
8005 | 16,0,207,1,437, | ||
8006 | 2983,16,0,207,1, | ||
8007 | 188,2984,16,0,207, | ||
8008 | 1,942,1444,1,1195, | ||
8009 | 2985,16,0,207,1, | ||
8010 | 1449,2986,16,0,207, | ||
8011 | 1,1701,2987,16,0, | ||
8012 | 207,1,447,1464,1, | ||
8013 | 205,2988,16,0,207, | ||
8014 | 1,827,2989,16,0, | ||
8015 | 207,1,223,2990,16, | ||
8016 | 0,207,1,476,1507, | ||
8017 | 1,477,1513,1,1231, | ||
8018 | 2991,16,0,207,1, | ||
8019 | 479,1523,1,480,1528, | ||
8020 | 1,1485,2992,16,0, | ||
8021 | 207,1,1737,2993,16, | ||
8022 | 0,207,1,242,2994, | ||
8023 | 16,0,207,1,478, | ||
8024 | 1546,1,1001,1551,1, | ||
8025 | 1002,1556,1,41,2995, | ||
8026 | 19,172,1,41,2996, | ||
8027 | 5,83,1,1011,1074, | ||
8028 | 1,1012,2997,16,0, | ||
8029 | 170,1,1013,1226,1, | ||
8030 | 262,1091,1,1267,2998, | ||
8031 | 16,0,170,1,515, | ||
8032 | 2999,16,0,170,1, | ||
8033 | 1521,3000,16,0,170, | ||
8034 | 1,525,1184,1,283, | ||
8035 | 1144,1,40,1133,1, | ||
8036 | 42,3001,16,0,170, | ||
8037 | 1,44,1149,1,2556, | ||
8038 | 3002,16,0,170,1, | ||
8039 | 47,1151,1,1303,3003, | ||
8040 | 16,0,170,1,1555, | ||
8041 | 3004,16,0,170,1, | ||
8042 | 50,1174,1,48,1157, | ||
8043 | 1,49,1163,1,51, | ||
8044 | 1169,1,63,1190,1, | ||
8045 | 305,1179,1,66,1196, | ||
8046 | 1,67,1201,1,68, | ||
8047 | 1206,1,69,1211,1, | ||
8048 | 70,1216,1,73,3005, | ||
8049 | 16,0,170,1,74, | ||
8050 | 1221,1,328,1274,1, | ||
8051 | 1048,1236,1,82,3006, | ||
8052 | 16,0,170,1,1840, | ||
8053 | 3007,16,0,170,1, | ||
8054 | 1591,3008,16,0,170, | ||
8055 | 1,1341,3009,16,0, | ||
8056 | 170,1,1096,1284,1, | ||
8057 | 93,1290,1,352,1301, | ||
8058 | 1,107,3010,16,0, | ||
8059 | 170,1,1114,1313,1, | ||
8060 | 118,3011,16,0,170, | ||
8061 | 1,1123,3012,16,0, | ||
8062 | 170,1,371,1326,1, | ||
8063 | 1628,3013,16,0,170, | ||
8064 | 1,375,1337,1,1882, | ||
8065 | 3014,16,0,170,1, | ||
8066 | 377,1342,1,379,1375, | ||
8067 | 1,380,1352,1,883, | ||
8068 | 3015,16,0,170,1, | ||
8069 | 373,1370,1,130,3016, | ||
8070 | 16,0,170,1,143, | ||
8071 | 3017,16,0,170,1, | ||
8072 | 387,3018,16,0,170, | ||
8073 | 1,1159,3019,16,0, | ||
8074 | 170,1,157,3020,16, | ||
8075 | 0,170,1,1413,3021, | ||
8076 | 16,0,170,1,1665, | ||
8077 | 3022,16,0,170,1, | ||
8078 | 412,3023,16,0,170, | ||
8079 | 1,1377,3024,16,0, | ||
8080 | 170,1,172,3025,16, | ||
8081 | 0,170,1,1939,3026, | ||
8082 | 16,0,170,1,437, | ||
8083 | 3027,16,0,170,1, | ||
8084 | 188,3028,16,0,170, | ||
8085 | 1,942,1444,1,1195, | ||
8086 | 3029,16,0,170,1, | ||
8087 | 1449,3030,16,0,170, | ||
8088 | 1,1701,3031,16,0, | ||
8089 | 170,1,447,1464,1, | ||
8090 | 205,3032,16,0,170, | ||
8091 | 1,827,3033,16,0, | ||
8092 | 170,1,223,3034,16, | ||
8093 | 0,170,1,476,1507, | ||
8094 | 1,477,1513,1,1231, | ||
8095 | 3035,16,0,170,1, | ||
8096 | 479,1523,1,480,1528, | ||
8097 | 1,1485,3036,16,0, | ||
8098 | 170,1,1737,3037,16, | ||
8099 | 0,170,1,242,3038, | ||
8100 | 16,0,170,1,478, | ||
8101 | 1546,1,1001,1551,1, | ||
8102 | 1002,1556,1,42,3039, | ||
8103 | 19,441,1,42,3040, | ||
8104 | 5,36,1,2074,3041, | ||
8105 | 16,0,439,1,1860, | ||
8106 | 820,1,2197,3042,16, | ||
8107 | 0,439,1,2309,3043, | ||
8108 | 16,0,439,1,1657, | ||
8109 | 878,1,2031,725,1, | ||
8110 | 1989,894,1,1990,3044, | ||
8111 | 16,0,439,1,1775, | ||
8112 | 3045,16,0,439,1, | ||
8113 | 32,3046,16,0,439, | ||
8114 | 1,2104,801,1,2105, | ||
8115 | 3047,16,0,439,1, | ||
8116 | 2226,886,1,1901,3048, | ||
8117 | 16,0,439,1,1802, | ||
8118 | 774,1,2021,707,1, | ||
8119 | 1804,3049,16,0,439, | ||
8120 | 1,2135,836,1,2354, | ||
8121 | 853,1,2355,858,1, | ||
8122 | 2029,714,1,2030,720, | ||
8123 | 1,2358,807,1,2032, | ||
8124 | 730,1,2360,813,1, | ||
8125 | 2035,741,1,2037,746, | ||
8126 | 1,2039,751,1,1931, | ||
8127 | 863,1,2041,757,1, | ||
8128 | 1873,829,1,2043,762, | ||
8129 | 1,2044,767,1,2033, | ||
8130 | 735,1,1574,787,1, | ||
8131 | 1958,3050,16,0,439, | ||
8132 | 1,43,3051,19,480, | ||
8133 | 1,43,3052,5,24, | ||
8134 | 1,2035,741,1,2037, | ||
8135 | 746,1,1657,878,1, | ||
8136 | 2039,751,1,2041,757, | ||
8137 | 1,1931,863,1,2043, | ||
8138 | 762,1,2044,767,1, | ||
8139 | 1860,820,1,1574,787, | ||
8140 | 1,2021,707,1,2104, | ||
8141 | 3053,16,0,579,1, | ||
8142 | 2135,836,1,1873,829, | ||
8143 | 1,2355,858,1,1802, | ||
8144 | 774,1,2226,886,1, | ||
8145 | 1989,3054,16,0,478, | ||
8146 | 1,2360,813,1,2029, | ||
8147 | 714,1,2030,720,1, | ||
8148 | 2031,725,1,2032,730, | ||
8149 | 1,2033,735,1,44, | ||
8150 | 3055,19,264,1,44, | ||
8151 | 3056,5,36,1,2074, | ||
8152 | 3057,16,0,262,1, | ||
8153 | 1860,820,1,2197,3058, | ||
8154 | 16,0,262,1,2309, | ||
8155 | 3059,16,0,262,1, | ||
8156 | 1657,878,1,2031,725, | ||
8157 | 1,1989,894,1,1990, | ||
8158 | 3060,16,0,262,1, | ||
8159 | 1775,3061,16,0,262, | ||
8160 | 1,32,3062,16,0, | ||
8161 | 262,1,2104,801,1, | ||
8162 | 2105,3063,16,0,262, | ||
8163 | 1,2226,886,1,1901, | ||
8164 | 3064,16,0,262,1, | ||
8165 | 1802,774,1,2021,707, | ||
8166 | 1,1804,3065,16,0, | ||
8167 | 262,1,2135,836,1, | ||
8168 | 2354,853,1,2355,858, | ||
8169 | 1,2029,714,1,2030, | ||
8170 | 720,1,2358,807,1, | ||
8171 | 2032,730,1,2360,813, | ||
8172 | 1,2035,741,1,2037, | ||
8173 | 746,1,2039,751,1, | ||
8174 | 1931,863,1,2041,757, | ||
8175 | 1,1873,829,1,2043, | ||
8176 | 762,1,2044,767,1, | ||
8177 | 2033,735,1,1574,787, | ||
8178 | 1,1958,3066,16,0, | ||
8179 | 262,1,45,3067,19, | ||
8180 | 329,1,45,3068,5, | ||
8181 | 37,1,2074,3069,16, | ||
8182 | 0,376,1,1860,820, | ||
8183 | 1,2197,3070,16,0, | ||
8184 | 376,1,2309,3071,16, | ||
8185 | 0,376,1,1657,878, | ||
8186 | 1,2031,725,1,1989, | ||
8187 | 894,1,1990,3072,16, | ||
8188 | 0,376,1,1775,3073, | ||
8189 | 16,0,376,1,32, | ||
8190 | 3074,16,0,376,1, | ||
8191 | 2104,801,1,2105,3075, | ||
8192 | 16,0,376,1,2226, | ||
8193 | 886,1,1901,3076,16, | ||
8194 | 0,376,1,1802,774, | ||
8195 | 1,2021,707,1,1804, | ||
8196 | 3077,16,0,376,1, | ||
8197 | 2135,836,1,2354,853, | ||
8198 | 1,2355,858,1,2029, | ||
8199 | 714,1,2030,720,1, | ||
8200 | 2358,807,1,2032,730, | ||
8201 | 1,2360,813,1,2035, | ||
8202 | 741,1,2037,746,1, | ||
8203 | 2039,751,1,1931,863, | ||
8204 | 1,2041,757,1,1873, | ||
8205 | 829,1,2043,762,1, | ||
8206 | 2044,767,1,1832,3078, | ||
8207 | 16,0,327,1,2033, | ||
8208 | 735,1,1574,787,1, | ||
8209 | 1958,3079,16,0,376, | ||
8210 | 1,46,3080,19,658, | ||
8211 | 1,46,3081,5,36, | ||
8212 | 1,2074,3082,16,0, | ||
8213 | 656,1,1860,820,1, | ||
8214 | 2197,3083,16,0,656, | ||
8215 | 1,2309,3084,16,0, | ||
8216 | 656,1,1657,878,1, | ||
8217 | 2031,725,1,1989,894, | ||
8218 | 1,1990,3085,16,0, | ||
8219 | 656,1,1775,3086,16, | ||
8220 | 0,656,1,32,3087, | ||
8221 | 16,0,656,1,2104, | ||
8222 | 801,1,2105,3088,16, | ||
8223 | 0,656,1,2226,886, | ||
8224 | 1,1901,3089,16,0, | ||
8225 | 656,1,1802,774,1, | ||
8226 | 2021,707,1,1804,3090, | ||
8227 | 16,0,656,1,2135, | ||
8228 | 836,1,2354,853,1, | ||
8229 | 2355,858,1,2029,714, | ||
8230 | 1,2030,720,1,2358, | ||
8231 | 807,1,2032,730,1, | ||
8232 | 2360,813,1,2035,741, | ||
8233 | 1,2037,746,1,2039, | ||
8234 | 751,1,1931,863,1, | ||
8235 | 2041,757,1,1873,829, | ||
8236 | 1,2043,762,1,2044, | ||
8237 | 767,1,2033,735,1, | ||
8238 | 1574,787,1,1958,3091, | ||
8239 | 16,0,656,1,47, | ||
8240 | 3092,19,401,1,47, | ||
8241 | 3093,5,19,1,0, | ||
8242 | 3094,16,0,399,1, | ||
8243 | 2531,667,1,2587,3095, | ||
8244 | 16,0,399,1,2022, | ||
8245 | 3096,16,0,571,1, | ||
8246 | 2526,684,1,2528,3097, | ||
8247 | 16,0,399,1,2605, | ||
8248 | 3098,17,3099,15,3100, | ||
8249 | 4,36,37,0,71, | ||
8250 | 0,108,0,111,0, | ||
8251 | 98,0,97,0,108, | ||
8252 | 0,68,0,101,0, | ||
8253 | 102,0,105,0,110, | ||
8254 | 0,105,0,116,0, | ||
8255 | 105,0,111,0,110, | ||
8256 | 0,115,0,1,-1, | ||
8257 | 1,5,3101,20,3102, | ||
8258 | 4,38,71,0,108, | ||
8259 | 0,111,0,98,0, | ||
8260 | 97,0,108,0,68, | ||
8261 | 0,101,0,102,0, | ||
8262 | 105,0,110,0,105, | ||
8263 | 0,116,0,105,0, | ||
8264 | 111,0,110,0,115, | ||
8265 | 0,95,0,52,0, | ||
8266 | 1,145,1,3,1, | ||
8267 | 3,1,2,3103,22, | ||
8268 | 1,6,1,2452,695, | ||
8269 | 1,2607,3104,17,3105, | ||
8270 | 15,3100,1,-1,1, | ||
8271 | 5,3106,20,3107,4, | ||
8272 | 38,71,0,108,0, | ||
8273 | 111,0,98,0,97, | ||
8274 | 0,108,0,68,0, | ||
8275 | 101,0,102,0,105, | ||
8276 | 0,110,0,105,0, | ||
8277 | 116,0,105,0,111, | ||
8278 | 0,110,0,115,0, | ||
8279 | 95,0,51,0,1, | ||
8280 | 144,1,3,1,2, | ||
8281 | 1,1,3108,22,1, | ||
8282 | 5,1,2608,3109,17, | ||
8283 | 3110,15,3100,1,-1, | ||
8284 | 1,5,3111,20,3112, | ||
8285 | 4,38,71,0,108, | ||
8286 | 0,111,0,98,0, | ||
8287 | 97,0,108,0,68, | ||
8288 | 0,101,0,102,0, | ||
8289 | 105,0,110,0,105, | ||
8290 | 0,116,0,105,0, | ||
8291 | 111,0,110,0,115, | ||
8292 | 0,95,0,49,0, | ||
8293 | 1,142,1,3,1, | ||
8294 | 2,1,1,3113,22, | ||
8295 | 1,3,1,2598,3114, | ||
8296 | 16,0,399,1,2575, | ||
8297 | 3115,17,3116,15,3117, | ||
8298 | 4,52,37,0,71, | ||
8299 | 0,108,0,111,0, | ||
8300 | 98,0,97,0,108, | ||
8301 | 0,86,0,97,0, | ||
8302 | 114,0,105,0,97, | ||
8303 | 0,98,0,108,0, | ||
8304 | 101,0,68,0,101, | ||
8305 | 0,99,0,108,0, | ||
8306 | 97,0,114,0,97, | ||
8307 | 0,116,0,105,0, | ||
8308 | 111,0,110,0,1, | ||
8309 | -1,1,5,3118,20, | ||
8310 | 3119,4,54,71,0, | ||
8311 | 108,0,111,0,98, | ||
8312 | 0,97,0,108,0, | ||
8313 | 86,0,97,0,114, | ||
8314 | 0,105,0,97,0, | ||
8315 | 98,0,108,0,101, | ||
8316 | 0,68,0,101,0, | ||
8317 | 99,0,108,0,97, | ||
8318 | 0,114,0,97,0, | ||
8319 | 116,0,105,0,111, | ||
8320 | 0,110,0,95,0, | ||
8321 | 50,0,1,147,1, | ||
8322 | 3,1,5,1,4, | ||
8323 | 3120,22,1,8,1, | ||
8324 | 2355,858,1,2532,673, | ||
8325 | 1,2606,3121,17,3122, | ||
8326 | 15,3100,1,-1,1, | ||
8327 | 5,3123,20,3124,4, | ||
8328 | 38,71,0,108,0, | ||
8329 | 111,0,98,0,97, | ||
8330 | 0,108,0,68,0, | ||
8331 | 101,0,102,0,105, | ||
8332 | 0,110,0,105,0, | ||
8333 | 116,0,105,0,111, | ||
8334 | 0,110,0,115,0, | ||
8335 | 95,0,50,0,1, | ||
8336 | 143,1,3,1,3, | ||
8337 | 1,2,3125,22,1, | ||
8338 | 4,1,2360,813,1, | ||
8339 | 2547,3126,17,3127,15, | ||
8340 | 3128,4,50,37,0, | ||
8341 | 71,0,108,0,111, | ||
8342 | 0,98,0,97,0, | ||
8343 | 108,0,70,0,117, | ||
8344 | 0,110,0,99,0, | ||
8345 | 116,0,105,0,111, | ||
8346 | 0,110,0,68,0, | ||
8347 | 101,0,102,0,105, | ||
8348 | 0,110,0,105,0, | ||
8349 | 116,0,105,0,111, | ||
8350 | 0,110,0,1,-1, | ||
8351 | 1,5,3129,20,3130, | ||
8352 | 4,52,71,0,108, | ||
8353 | 0,111,0,98,0, | ||
8354 | 97,0,108,0,70, | ||
8355 | 0,117,0,110,0, | ||
8356 | 99,0,116,0,105, | ||
8357 | 0,111,0,110,0, | ||
8358 | 68,0,101,0,102, | ||
8359 | 0,105,0,110,0, | ||
8360 | 105,0,116,0,105, | ||
8361 | 0,111,0,110,0, | ||
8362 | 95,0,49,0,1, | ||
8363 | 148,1,3,1,6, | ||
8364 | 1,5,3131,22,1, | ||
8365 | 9,1,2586,3132,17, | ||
8366 | 3133,15,3117,1,-1, | ||
8367 | 1,5,3134,20,3135, | ||
8368 | 4,54,71,0,108, | ||
8369 | 0,111,0,98,0, | ||
8370 | 97,0,108,0,86, | ||
8371 | 0,97,0,114,0, | ||
8372 | 105,0,97,0,98, | ||
8373 | 0,108,0,101,0, | ||
8374 | 68,0,101,0,99, | ||
8375 | 0,108,0,97,0, | ||
8376 | 114,0,97,0,116, | ||
8377 | 0,105,0,111,0, | ||
8378 | 110,0,95,0,49, | ||
8379 | 0,1,146,1,3, | ||
8380 | 1,3,1,2,3136, | ||
8381 | 22,1,7,1,2362, | ||
8382 | 3137,17,3138,15,3128, | ||
8383 | 1,-1,1,5,3139, | ||
8384 | 20,3140,4,52,71, | ||
8385 | 0,108,0,111,0, | ||
8386 | 98,0,97,0,108, | ||
8387 | 0,70,0,117,0, | ||
8388 | 110,0,99,0,116, | ||
8389 | 0,105,0,111,0, | ||
8390 | 110,0,68,0,101, | ||
8391 | 0,102,0,105,0, | ||
8392 | 110,0,105,0,116, | ||
8393 | 0,105,0,111,0, | ||
8394 | 110,0,95,0,50, | ||
8395 | 0,1,149,1,3, | ||
8396 | 1,7,1,6,3141, | ||
8397 | 22,1,10,1,48, | ||
8398 | 3142,19,269,1,48, | ||
8399 | 3143,5,52,1,0, | ||
8400 | 3144,16,0,267,1, | ||
8401 | 2074,3145,16,0,499, | ||
8402 | 1,1860,820,1,2197, | ||
8403 | 3146,16,0,499,1, | ||
8404 | 2526,684,1,2309,3147, | ||
8405 | 16,0,499,1,2528, | ||
8406 | 3148,16,0,267,1, | ||
8407 | 1657,878,1,2030,720, | ||
8408 | 1,2532,673,1,1989, | ||
8409 | 894,1,1990,3149,16, | ||
8410 | 0,499,1,2035,741, | ||
8411 | 1,1775,3150,16,0, | ||
8412 | 499,1,32,3151,16, | ||
8413 | 0,499,1,2104,801, | ||
8414 | 1,2105,3152,16,0, | ||
8415 | 499,1,2547,3126,1, | ||
8416 | 2226,886,1,2606,3121, | ||
8417 | 1,1901,3153,16,0, | ||
8418 | 499,1,2531,667,1, | ||
8419 | 2586,3132,1,2587,3154, | ||
8420 | 16,0,267,1,2452, | ||
8421 | 695,1,1802,774,1, | ||
8422 | 2021,707,1,1804,3155, | ||
8423 | 16,0,499,1,2135, | ||
8424 | 836,1,2354,853,1, | ||
8425 | 2355,858,1,2029,714, | ||
8426 | 1,2575,3115,1,2358, | ||
8427 | 807,1,2032,730,1, | ||
8428 | 2360,813,1,2362,3137, | ||
8429 | 1,2037,746,1,2039, | ||
8430 | 751,1,1931,863,1, | ||
8431 | 2041,757,1,1873,829, | ||
8432 | 1,2043,762,1,2044, | ||
8433 | 767,1,2031,725,1, | ||
8434 | 2598,3156,16,0,267, | ||
8435 | 1,2033,735,1,2605, | ||
8436 | 3098,1,1574,787,1, | ||
8437 | 2607,3104,1,2608,3109, | ||
8438 | 1,1958,3157,16,0, | ||
8439 | 499,1,49,3158,19, | ||
8440 | 504,1,49,3159,5, | ||
8441 | 36,1,2074,3160,16, | ||
8442 | 0,502,1,1860,820, | ||
8443 | 1,2197,3161,16,0, | ||
8444 | 502,1,2309,3162,16, | ||
8445 | 0,502,1,1657,878, | ||
8446 | 1,2031,725,1,1989, | ||
8447 | 894,1,1990,3163,16, | ||
8448 | 0,502,1,1775,3164, | ||
8449 | 16,0,502,1,32, | ||
8450 | 3165,16,0,502,1, | ||
8451 | 2104,801,1,2105,3166, | ||
8452 | 16,0,502,1,2226, | ||
8453 | 886,1,1901,3167,16, | ||
8454 | 0,502,1,1802,774, | ||
8455 | 1,2021,707,1,1804, | ||
8456 | 3168,16,0,502,1, | ||
8457 | 2135,836,1,2354,853, | ||
8458 | 1,2355,858,1,2029, | ||
8459 | 714,1,2030,720,1, | ||
8460 | 2358,807,1,2032,730, | ||
8461 | 1,2360,813,1,2035, | ||
8462 | 741,1,2037,746,1, | ||
8463 | 2039,751,1,1931,863, | ||
8464 | 1,2041,757,1,1873, | ||
8465 | 829,1,2043,762,1, | ||
8466 | 2044,767,1,2033,735, | ||
8467 | 1,1574,787,1,1958, | ||
8468 | 3169,16,0,502,1, | ||
8469 | 50,3170,19,612,1, | ||
8470 | 50,3171,5,36,1, | ||
8471 | 2074,3172,16,0,610, | ||
8472 | 1,1860,820,1,2197, | ||
8473 | 3173,16,0,610,1, | ||
8474 | 2309,3174,16,0,610, | ||
8475 | 1,1657,878,1,2031, | ||
8476 | 725,1,1989,894,1, | ||
8477 | 1990,3175,16,0,610, | ||
8478 | 1,1775,3176,16,0, | ||
8479 | 610,1,32,3177,16, | ||
8480 | 0,610,1,2104,801, | ||
8481 | 1,2105,3178,16,0, | ||
8482 | 610,1,2226,886,1, | ||
8483 | 1901,3179,16,0,610, | ||
8484 | 1,1802,774,1,2021, | ||
8485 | 707,1,1804,3180,16, | ||
8486 | 0,610,1,2135,836, | ||
8487 | 1,2354,853,1,2355, | ||
8488 | 858,1,2029,714,1, | ||
8489 | 2030,720,1,2358,807, | ||
8490 | 1,2032,730,1,2360, | ||
8491 | 813,1,2035,741,1, | ||
8492 | 2037,746,1,2039,751, | ||
8493 | 1,1931,863,1,2041, | ||
8494 | 757,1,1873,829,1, | ||
8495 | 2043,762,1,2044,767, | ||
8496 | 1,2033,735,1,1574, | ||
8497 | 787,1,1958,3181,16, | ||
8498 | 0,610,1,51,3182, | ||
8499 | 19,127,1,51,3183, | ||
8500 | 5,51,1,0,3184, | ||
8501 | 16,0,125,1,2401, | ||
8502 | 3185,16,0,125,1, | ||
8503 | 1860,820,1,10,3186, | ||
8504 | 16,0,125,1,2197, | ||
8505 | 3187,16,0,125,1, | ||
8506 | 2309,3188,16,0,125, | ||
8507 | 1,21,3189,16,0, | ||
8508 | 125,1,1657,878,1, | ||
8509 | 2030,720,1,2031,725, | ||
8510 | 1,2074,3190,16,0, | ||
8511 | 125,1,1989,894,1, | ||
8512 | 1990,3191,16,0,125, | ||
8513 | 1,2035,741,1,1775, | ||
8514 | 3192,16,0,125,1, | ||
8515 | 32,3193,16,0,125, | ||
8516 | 1,2104,801,1,2105, | ||
8517 | 3194,16,0,125,1, | ||
8518 | 2547,3126,1,2226,886, | ||
8519 | 1,2606,3121,1,1901, | ||
8520 | 3195,16,0,125,1, | ||
8521 | 52,3196,16,0,125, | ||
8522 | 1,2587,3197,16,0, | ||
8523 | 125,1,1802,774,1, | ||
8524 | 2021,707,1,1804,3198, | ||
8525 | 16,0,125,1,2135, | ||
8526 | 836,1,2354,853,1, | ||
8527 | 2355,858,1,2029,714, | ||
8528 | 1,2575,3115,1,2358, | ||
8529 | 807,1,2032,730,1, | ||
8530 | 2360,813,1,2362,3137, | ||
8531 | 1,2037,746,1,2039, | ||
8532 | 751,1,1931,863,1, | ||
8533 | 2041,757,1,1873,829, | ||
8534 | 1,2043,762,1,2044, | ||
8535 | 767,1,2033,735,1, | ||
8536 | 2605,3098,1,1574,787, | ||
8537 | 1,2607,3104,1,2608, | ||
8538 | 3109,1,1958,3199,16, | ||
8539 | 0,125,1,2586,3132, | ||
8540 | 1,2534,3200,16,0, | ||
8541 | 125,1,52,3201,19, | ||
8542 | 124,1,52,3202,5, | ||
8543 | 51,1,0,3203,16, | ||
8544 | 0,122,1,2401,3204, | ||
8545 | 16,0,122,1,1860, | ||
8546 | 820,1,10,3205,16, | ||
8547 | 0,122,1,2197,3206, | ||
8548 | 16,0,122,1,2309, | ||
8549 | 3207,16,0,122,1, | ||
8550 | 21,3208,16,0,122, | ||
8551 | 1,1657,878,1,2030, | ||
8552 | 720,1,2031,725,1, | ||
8553 | 2074,3209,16,0,122, | ||
8554 | 1,1989,894,1,1990, | ||
8555 | 3210,16,0,122,1, | ||
8556 | 2035,741,1,1775,3211, | ||
8557 | 16,0,122,1,32, | ||
8558 | 3212,16,0,122,1, | ||
8559 | 2104,801,1,2105,3213, | ||
8560 | 16,0,122,1,2547, | ||
8561 | 3126,1,2226,886,1, | ||
8562 | 2606,3121,1,1901,3214, | ||
8563 | 16,0,122,1,52, | ||
8564 | 3215,16,0,122,1, | ||
8565 | 2587,3216,16,0,122, | ||
8566 | 1,1802,774,1,2021, | ||
8567 | 707,1,1804,3217,16, | ||
8568 | 0,122,1,2135,836, | ||
8569 | 1,2354,853,1,2355, | ||
8570 | 858,1,2029,714,1, | ||
8571 | 2575,3115,1,2358,807, | ||
8572 | 1,2032,730,1,2360, | ||
8573 | 813,1,2362,3137,1, | ||
8574 | 2037,746,1,2039,751, | ||
8575 | 1,1931,863,1,2041, | ||
8576 | 757,1,1873,829,1, | ||
8577 | 2043,762,1,2044,767, | ||
8578 | 1,2033,735,1,2605, | ||
8579 | 3098,1,1574,787,1, | ||
8580 | 2607,3104,1,2608,3109, | ||
8581 | 1,1958,3218,16,0, | ||
8582 | 122,1,2586,3132,1, | ||
8583 | 2534,3219,16,0,122, | ||
8584 | 1,53,3220,19,121, | ||
8585 | 1,53,3221,5,51, | ||
8586 | 1,0,3222,16,0, | ||
8587 | 119,1,2401,3223,16, | ||
8588 | 0,119,1,1860,820, | ||
8589 | 1,10,3224,16,0, | ||
8590 | 119,1,2197,3225,16, | ||
8591 | 0,119,1,2309,3226, | ||
8592 | 16,0,119,1,21, | ||
8593 | 3227,16,0,119,1, | ||
8594 | 1657,878,1,2030,720, | ||
8595 | 1,2031,725,1,2074, | ||
8596 | 3228,16,0,119,1, | ||
8597 | 1989,894,1,1990,3229, | ||
8598 | 16,0,119,1,2035, | ||
8599 | 741,1,1775,3230,16, | ||
8600 | 0,119,1,32,3231, | ||
8601 | 16,0,119,1,2104, | ||
8602 | 801,1,2105,3232,16, | ||
8603 | 0,119,1,2547,3126, | ||
8604 | 1,2226,886,1,2606, | ||
8605 | 3121,1,1901,3233,16, | ||
8606 | 0,119,1,52,3234, | ||
8607 | 16,0,119,1,2587, | ||
8608 | 3235,16,0,119,1, | ||
8609 | 1802,774,1,2021,707, | ||
8610 | 1,1804,3236,16,0, | ||
8611 | 119,1,2135,836,1, | ||
8612 | 2354,853,1,2355,858, | ||
8613 | 1,2029,714,1,2575, | ||
8614 | 3115,1,2358,807,1, | ||
8615 | 2032,730,1,2360,813, | ||
8616 | 1,2362,3137,1,2037, | ||
8617 | 746,1,2039,751,1, | ||
8618 | 1931,863,1,2041,757, | ||
8619 | 1,1873,829,1,2043, | ||
8620 | 762,1,2044,767,1, | ||
8621 | 2033,735,1,2605,3098, | ||
8622 | 1,1574,787,1,2607, | ||
8623 | 3104,1,2608,3109,1, | ||
8624 | 1958,3237,16,0,119, | ||
8625 | 1,2586,3132,1,2534, | ||
8626 | 3238,16,0,119,1, | ||
8627 | 54,3239,19,118,1, | ||
8628 | 54,3240,5,51,1, | ||
8629 | 0,3241,16,0,116, | ||
8630 | 1,2401,3242,16,0, | ||
8631 | 116,1,1860,820,1, | ||
8632 | 10,3243,16,0,116, | ||
8633 | 1,2197,3244,16,0, | ||
8634 | 116,1,2309,3245,16, | ||
8635 | 0,116,1,21,3246, | ||
8636 | 16,0,116,1,1657, | ||
8637 | 878,1,2030,720,1, | ||
8638 | 2031,725,1,2074,3247, | ||
8639 | 16,0,116,1,1989, | ||
8640 | 894,1,1990,3248,16, | ||
8641 | 0,116,1,2035,741, | ||
8642 | 1,1775,3249,16,0, | ||
8643 | 116,1,32,3250,16, | ||
8644 | 0,116,1,2104,801, | ||
8645 | 1,2105,3251,16,0, | ||
8646 | 116,1,2547,3126,1, | ||
8647 | 2226,886,1,2606,3121, | ||
8648 | 1,1901,3252,16,0, | ||
8649 | 116,1,52,3253,16, | ||
8650 | 0,116,1,2587,3254, | ||
8651 | 16,0,116,1,1802, | ||
8652 | 774,1,2021,707,1, | ||
8653 | 1804,3255,16,0,116, | ||
8654 | 1,2135,836,1,2354, | ||
8655 | 853,1,2355,858,1, | ||
8656 | 2029,714,1,2575,3115, | ||
8657 | 1,2358,807,1,2032, | ||
8658 | 730,1,2360,813,1, | ||
8659 | 2362,3137,1,2037,746, | ||
8660 | 1,2039,751,1,1931, | ||
8661 | 863,1,2041,757,1, | ||
8662 | 1873,829,1,2043,762, | ||
8663 | 1,2044,767,1,2033, | ||
8664 | 735,1,2605,3098,1, | ||
8665 | 1574,787,1,2607,3104, | ||
8666 | 1,2608,3109,1,1958, | ||
8667 | 3256,16,0,116,1, | ||
8668 | 2586,3132,1,2534,3257, | ||
8669 | 16,0,116,1,55, | ||
8670 | 3258,19,115,1,55, | ||
8671 | 3259,5,51,1,0, | ||
8672 | 3260,16,0,113,1, | ||
8673 | 2401,3261,16,0,113, | ||
8674 | 1,1860,820,1,10, | ||
8675 | 3262,16,0,113,1, | ||
8676 | 2197,3263,16,0,113, | ||
8677 | 1,2309,3264,16,0, | ||
8678 | 113,1,21,3265,16, | ||
8679 | 0,113,1,1657,878, | ||
8680 | 1,2030,720,1,2031, | ||
8681 | 725,1,2074,3266,16, | ||
8682 | 0,113,1,1989,894, | ||
8683 | 1,1990,3267,16,0, | ||
8684 | 113,1,2035,741,1, | ||
8685 | 1775,3268,16,0,113, | ||
8686 | 1,32,3269,16,0, | ||
8687 | 113,1,2104,801,1, | ||
8688 | 2105,3270,16,0,113, | ||
8689 | 1,2547,3126,1,2226, | ||
8690 | 886,1,2606,3121,1, | ||
8691 | 1901,3271,16,0,113, | ||
8692 | 1,52,3272,16,0, | ||
8693 | 113,1,2587,3273,16, | ||
8694 | 0,113,1,1802,774, | ||
8695 | 1,2021,707,1,1804, | ||
8696 | 3274,16,0,113,1, | ||
8697 | 2135,836,1,2354,853, | ||
8698 | 1,2355,858,1,2029, | ||
8699 | 714,1,2575,3115,1, | ||
8700 | 2358,807,1,2032,730, | ||
8701 | 1,2360,813,1,2362, | ||
8702 | 3137,1,2037,746,1, | ||
8703 | 2039,751,1,1931,863, | ||
8704 | 1,2041,757,1,1873, | ||
8705 | 829,1,2043,762,1, | ||
8706 | 2044,767,1,2033,735, | ||
8707 | 1,2605,3098,1,1574, | ||
8708 | 787,1,2607,3104,1, | ||
8709 | 2608,3109,1,1958,3275, | ||
8710 | 16,0,113,1,2586, | ||
8711 | 3132,1,2534,3276,16, | ||
8712 | 0,113,1,56,3277, | ||
8713 | 19,112,1,56,3278, | ||
8714 | 5,51,1,0,3279, | ||
8715 | 16,0,110,1,2401, | ||
8716 | 3280,16,0,110,1, | ||
8717 | 1860,820,1,10,3281, | ||
8718 | 16,0,110,1,2197, | ||
8719 | 3282,16,0,110,1, | ||
8720 | 2309,3283,16,0,110, | ||
8721 | 1,21,3284,16,0, | ||
8722 | 110,1,1657,878,1, | ||
8723 | 2030,720,1,2031,725, | ||
8724 | 1,2074,3285,16,0, | ||
8725 | 110,1,1989,894,1, | ||
8726 | 1990,3286,16,0,110, | ||
8727 | 1,2035,741,1,1775, | ||
8728 | 3287,16,0,110,1, | ||
8729 | 32,3288,16,0,110, | ||
8730 | 1,2104,801,1,2105, | ||
8731 | 3289,16,0,110,1, | ||
8732 | 2547,3126,1,2226,886, | ||
8733 | 1,2606,3121,1,1901, | ||
8734 | 3290,16,0,110,1, | ||
8735 | 52,3291,16,0,110, | ||
8736 | 1,2587,3292,16,0, | ||
8737 | 110,1,1802,774,1, | ||
8738 | 2021,707,1,1804,3293, | ||
8739 | 16,0,110,1,2135, | ||
8740 | 836,1,2354,853,1, | ||
8741 | 2355,858,1,2029,714, | ||
8742 | 1,2575,3115,1,2358, | ||
8743 | 807,1,2032,730,1, | ||
8744 | 2360,813,1,2362,3137, | ||
8745 | 1,2037,746,1,2039, | ||
8746 | 751,1,1931,863,1, | ||
8747 | 2041,757,1,1873,829, | ||
8748 | 1,2043,762,1,2044, | ||
8749 | 767,1,2033,735,1, | ||
8750 | 2605,3098,1,1574,787, | ||
8751 | 1,2607,3104,1,2608, | ||
8752 | 3109,1,1958,3294,16, | ||
8753 | 0,110,1,2586,3132, | ||
8754 | 1,2534,3295,16,0, | ||
8755 | 110,1,57,3296,19, | ||
8756 | 109,1,57,3297,5, | ||
8757 | 51,1,0,3298,16, | ||
8758 | 0,107,1,2401,3299, | ||
8759 | 16,0,107,1,1860, | ||
8760 | 820,1,10,3300,16, | ||
8761 | 0,107,1,2197,3301, | ||
8762 | 16,0,107,1,2309, | ||
8763 | 3302,16,0,107,1, | ||
8764 | 21,3303,16,0,107, | ||
8765 | 1,1657,878,1,2030, | ||
8766 | 720,1,2031,725,1, | ||
8767 | 2074,3304,16,0,107, | ||
8768 | 1,1989,894,1,1990, | ||
8769 | 3305,16,0,107,1, | ||
8770 | 2035,741,1,1775,3306, | ||
8771 | 16,0,107,1,32, | ||
8772 | 3307,16,0,107,1, | ||
8773 | 2104,801,1,2105,3308, | ||
8774 | 16,0,107,1,2547, | ||
8775 | 3126,1,2226,886,1, | ||
8776 | 2606,3121,1,1901,3309, | ||
8777 | 16,0,107,1,52, | ||
8778 | 3310,16,0,107,1, | ||
8779 | 2587,3311,16,0,107, | ||
8780 | 1,1802,774,1,2021, | ||
8781 | 707,1,1804,3312,16, | ||
8782 | 0,107,1,2135,836, | ||
8783 | 1,2354,853,1,2355, | ||
8784 | 858,1,2029,714,1, | ||
8785 | 2575,3115,1,2358,807, | ||
8786 | 1,2032,730,1,2360, | ||
8787 | 813,1,2362,3137,1, | ||
8788 | 2037,746,1,2039,751, | ||
8789 | 1,1931,863,1,2041, | ||
8790 | 757,1,1873,829,1, | ||
8791 | 2043,762,1,2044,767, | ||
8792 | 1,2033,735,1,2605, | ||
8793 | 3098,1,1574,787,1, | ||
8794 | 2607,3104,1,2608,3109, | ||
8795 | 1,1958,3313,16,0, | ||
8796 | 107,1,2586,3132,1, | ||
8797 | 2534,3314,16,0,107, | ||
8798 | 1,58,3315,19,352, | ||
8799 | 1,58,3316,5,9, | ||
8800 | 1,2414,1580,1,2490, | ||
8801 | 3317,16,0,350,1, | ||
8802 | 2455,3318,16,0,350, | ||
8803 | 1,2451,1589,1,2416, | ||
8804 | 3319,16,0,350,1, | ||
8805 | 2453,1595,1,2355,858, | ||
8806 | 1,2360,813,1,2366, | ||
8807 | 3320,16,0,350,1, | ||
8808 | 59,3321,19,349,1, | ||
8809 | 59,3322,5,9,1, | ||
8810 | 2414,1580,1,2490,3323, | ||
8811 | 16,0,347,1,2455, | ||
8812 | 3324,16,0,347,1, | ||
8813 | 2451,1589,1,2416,3325, | ||
8814 | 16,0,347,1,2453, | ||
8815 | 1595,1,2355,858,1, | ||
8816 | 2360,813,1,2366,3326, | ||
8817 | 16,0,347,1,60, | ||
8818 | 3327,19,429,1,60, | ||
8819 | 3328,5,9,1,2414, | ||
8820 | 1580,1,2490,3329,16, | ||
8821 | 0,427,1,2455,3330, | ||
8822 | 16,0,427,1,2451, | ||
8823 | 1589,1,2416,3331,16, | ||
8824 | 0,427,1,2453,1595, | ||
8825 | 1,2355,858,1,2360, | ||
8826 | 813,1,2366,3332,16, | ||
8827 | 0,427,1,61,3333, | ||
8828 | 19,345,1,61,3334, | ||
8829 | 5,9,1,2414,1580, | ||
8830 | 1,2490,3335,16,0, | ||
8831 | 343,1,2455,3336,16, | ||
8832 | 0,343,1,2451,1589, | ||
8833 | 1,2416,3337,16,0, | ||
8834 | 343,1,2453,1595,1, | ||
8835 | 2355,858,1,2360,813, | ||
8836 | 1,2366,3338,16,0, | ||
8837 | 343,1,62,3339,19, | ||
8838 | 342,1,62,3340,5, | ||
8839 | 9,1,2414,1580,1, | ||
8840 | 2490,3341,16,0,340, | ||
8841 | 1,2455,3342,16,0, | ||
8842 | 340,1,2451,1589,1, | ||
8843 | 2416,3343,16,0,340, | ||
8844 | 1,2453,1595,1,2355, | ||
8845 | 858,1,2360,813,1, | ||
8846 | 2366,3344,16,0,340, | ||
8847 | 1,63,3345,19,562, | ||
8848 | 1,63,3346,5,9, | ||
8849 | 1,2414,1580,1,2490, | ||
8850 | 3347,16,0,560,1, | ||
8851 | 2455,3348,16,0,560, | ||
8852 | 1,2451,1589,1,2416, | ||
8853 | 3349,16,0,560,1, | ||
8854 | 2453,1595,1,2355,858, | ||
8855 | 1,2360,813,1,2366, | ||
8856 | 3350,16,0,560,1, | ||
8857 | 64,3351,19,336,1, | ||
8858 | 64,3352,5,9,1, | ||
8859 | 2414,1580,1,2490,3353, | ||
8860 | 16,0,334,1,2455, | ||
8861 | 3354,16,0,334,1, | ||
8862 | 2451,1589,1,2416,3355, | ||
8863 | 16,0,334,1,2453, | ||
8864 | 1595,1,2355,858,1, | ||
8865 | 2360,813,1,2366,3356, | ||
8866 | 16,0,334,1,65, | ||
8867 | 3357,19,333,1,65, | ||
8868 | 3358,5,9,1,2414, | ||
8869 | 1580,1,2490,3359,16, | ||
8870 | 0,331,1,2455,3360, | ||
8871 | 16,0,331,1,2451, | ||
8872 | 1589,1,2416,3361,16, | ||
8873 | 0,331,1,2453,1595, | ||
8874 | 1,2355,858,1,2360, | ||
8875 | 813,1,2366,3362,16, | ||
8876 | 0,331,1,66,3363, | ||
8877 | 19,425,1,66,3364, | ||
8878 | 5,9,1,2414,1580, | ||
8879 | 1,2490,3365,16,0, | ||
8880 | 423,1,2455,3366,16, | ||
8881 | 0,423,1,2451,1589, | ||
8882 | 1,2416,3367,16,0, | ||
8883 | 423,1,2453,1595,1, | ||
8884 | 2355,858,1,2360,813, | ||
8885 | 1,2366,3368,16,0, | ||
8886 | 423,1,67,3369,19, | ||
8887 | 422,1,67,3370,5, | ||
8888 | 9,1,2414,1580,1, | ||
8889 | 2490,3371,16,0,420, | ||
8890 | 1,2455,3372,16,0, | ||
8891 | 420,1,2451,1589,1, | ||
8892 | 2416,3373,16,0,420, | ||
8893 | 1,2453,1595,1,2355, | ||
8894 | 858,1,2360,813,1, | ||
8895 | 2366,3374,16,0,420, | ||
8896 | 1,68,3375,19,419, | ||
8897 | 1,68,3376,5,9, | ||
8898 | 1,2414,1580,1,2490, | ||
8899 | 3377,16,0,417,1, | ||
8900 | 2455,3378,16,0,417, | ||
8901 | 1,2451,1589,1,2416, | ||
8902 | 3379,16,0,417,1, | ||
8903 | 2453,1595,1,2355,858, | ||
8904 | 1,2360,813,1,2366, | ||
8905 | 3380,16,0,417,1, | ||
8906 | 69,3381,19,325,1, | ||
8907 | 69,3382,5,9,1, | ||
8908 | 2414,1580,1,2490,3383, | ||
8909 | 16,0,323,1,2455, | ||
8910 | 3384,16,0,323,1, | ||
8911 | 2451,1589,1,2416,3385, | ||
8912 | 16,0,323,1,2453, | ||
8913 | 1595,1,2355,858,1, | ||
8914 | 2360,813,1,2366,3386, | ||
8915 | 16,0,323,1,70, | ||
8916 | 3387,19,413,1,70, | ||
8917 | 3388,5,9,1,2414, | ||
8918 | 1580,1,2490,3389,16, | ||
8919 | 0,411,1,2455,3390, | ||
8920 | 16,0,411,1,2451, | ||
8921 | 1589,1,2416,3391,16, | ||
8922 | 0,411,1,2453,1595, | ||
8923 | 1,2355,858,1,2360, | ||
8924 | 813,1,2366,3392,16, | ||
8925 | 0,411,1,71,3393, | ||
8926 | 19,321,1,71,3394, | ||
8927 | 5,9,1,2414,1580, | ||
8928 | 1,2490,3395,16,0, | ||
8929 | 319,1,2455,3396,16, | ||
8930 | 0,319,1,2451,1589, | ||
8931 | 1,2416,3397,16,0, | ||
8932 | 319,1,2453,1595,1, | ||
8933 | 2355,858,1,2360,813, | ||
8934 | 1,2366,3398,16,0, | ||
8935 | 319,1,72,3399,19, | ||
8936 | 410,1,72,3400,5, | ||
8937 | 9,1,2414,1580,1, | ||
8938 | 2490,3401,16,0,408, | ||
8939 | 1,2455,3402,16,0, | ||
8940 | 408,1,2451,1589,1, | ||
8941 | 2416,3403,16,0,408, | ||
8942 | 1,2453,1595,1,2355, | ||
8943 | 858,1,2360,813,1, | ||
8944 | 2366,3404,16,0,408, | ||
8945 | 1,73,3405,19,317, | ||
8946 | 1,73,3406,5,9, | ||
8947 | 1,2414,1580,1,2490, | ||
8948 | 3407,16,0,315,1, | ||
8949 | 2455,3408,16,0,315, | ||
8950 | 1,2451,1589,1,2416, | ||
8951 | 3409,16,0,315,1, | ||
8952 | 2453,1595,1,2355,858, | ||
8953 | 1,2360,813,1,2366, | ||
8954 | 3410,16,0,315,1, | ||
8955 | 74,3411,19,471,1, | ||
8956 | 74,3412,5,9,1, | ||
8957 | 2414,1580,1,2490,3413, | ||
8958 | 16,0,469,1,2455, | ||
8959 | 3414,16,0,469,1, | ||
8960 | 2451,1589,1,2416,3415, | ||
8961 | 16,0,469,1,2453, | ||
8962 | 1595,1,2355,858,1, | ||
8963 | 2360,813,1,2366,3416, | ||
8964 | 16,0,469,1,75, | ||
8965 | 3417,19,311,1,75, | ||
8966 | 3418,5,9,1,2414, | ||
8967 | 1580,1,2490,3419,16, | ||
8968 | 0,309,1,2455,3420, | ||
8969 | 16,0,309,1,2451, | ||
8970 | 1589,1,2416,3421,16, | ||
8971 | 0,309,1,2453,1595, | ||
8972 | 1,2355,858,1,2360, | ||
8973 | 813,1,2366,3422,16, | ||
8974 | 0,309,1,76,3423, | ||
8975 | 19,405,1,76,3424, | ||
8976 | 5,9,1,2414,1580, | ||
8977 | 1,2490,3425,16,0, | ||
8978 | 403,1,2455,3426,16, | ||
8979 | 0,403,1,2451,1589, | ||
8980 | 1,2416,3427,16,0, | ||
8981 | 403,1,2453,1595,1, | ||
8982 | 2355,858,1,2360,813, | ||
8983 | 1,2366,3428,16,0, | ||
8984 | 403,1,77,3429,19, | ||
8985 | 307,1,77,3430,5, | ||
8986 | 9,1,2414,1580,1, | ||
8987 | 2490,3431,16,0,305, | ||
8988 | 1,2455,3432,16,0, | ||
8989 | 305,1,2451,1589,1, | ||
8990 | 2416,3433,16,0,305, | ||
8991 | 1,2453,1595,1,2355, | ||
8992 | 858,1,2360,813,1, | ||
8993 | 2366,3434,16,0,305, | ||
8994 | 1,78,3435,19,463, | ||
8995 | 1,78,3436,5,9, | ||
8996 | 1,2414,1580,1,2490, | ||
8997 | 3437,16,0,461,1, | ||
8998 | 2455,3438,16,0,461, | ||
8999 | 1,2451,1589,1,2416, | ||
9000 | 3439,16,0,461,1, | ||
9001 | 2453,1595,1,2355,858, | ||
9002 | 1,2360,813,1,2366, | ||
9003 | 3440,16,0,461,1, | ||
9004 | 79,3441,19,301,1, | ||
9005 | 79,3442,5,9,1, | ||
9006 | 2414,1580,1,2490,3443, | ||
9007 | 16,0,299,1,2455, | ||
9008 | 3444,16,0,299,1, | ||
9009 | 2451,1589,1,2416,3445, | ||
9010 | 16,0,299,1,2453, | ||
9011 | 1595,1,2355,858,1, | ||
9012 | 2360,813,1,2366,3446, | ||
9013 | 16,0,299,1,80, | ||
9014 | 3447,19,298,1,80, | ||
9015 | 3448,5,9,1,2414, | ||
9016 | 1580,1,2490,3449,16, | ||
9017 | 0,296,1,2455,3450, | ||
9018 | 16,0,296,1,2451, | ||
9019 | 1589,1,2416,3451,16, | ||
9020 | 0,296,1,2453,1595, | ||
9021 | 1,2355,858,1,2360, | ||
9022 | 813,1,2366,3452,16, | ||
9023 | 0,296,1,81,3453, | ||
9024 | 19,295,1,81,3454, | ||
9025 | 5,9,1,2414,1580, | ||
9026 | 1,2490,3455,16,0, | ||
9027 | 293,1,2455,3456,16, | ||
9028 | 0,293,1,2451,1589, | ||
9029 | 1,2416,3457,16,0, | ||
9030 | 293,1,2453,1595,1, | ||
9031 | 2355,858,1,2360,813, | ||
9032 | 1,2366,3458,16,0, | ||
9033 | 293,1,82,3459,19, | ||
9034 | 590,1,82,3460,5, | ||
9035 | 9,1,2414,1580,1, | ||
9036 | 2490,3461,16,0,588, | ||
9037 | 1,2455,3462,16,0, | ||
9038 | 588,1,2451,1589,1, | ||
9039 | 2416,3463,16,0,588, | ||
9040 | 1,2453,1595,1,2355, | ||
9041 | 858,1,2360,813,1, | ||
9042 | 2366,3464,16,0,588, | ||
9043 | 1,83,3465,19,393, | ||
9044 | 1,83,3466,5,9, | ||
9045 | 1,2414,1580,1,2490, | ||
9046 | 3467,16,0,391,1, | ||
9047 | 2455,3468,16,0,391, | ||
9048 | 1,2451,1589,1,2416, | ||
9049 | 3469,16,0,391,1, | ||
9050 | 2453,1595,1,2355,858, | ||
9051 | 1,2360,813,1,2366, | ||
9052 | 3470,16,0,391,1, | ||
9053 | 84,3471,19,288,1, | ||
9054 | 84,3472,5,9,1, | ||
9055 | 2414,1580,1,2490,3473, | ||
9056 | 16,0,286,1,2455, | ||
9057 | 3474,16,0,286,1, | ||
9058 | 2451,1589,1,2416,3475, | ||
9059 | 16,0,286,1,2453, | ||
9060 | 1595,1,2355,858,1, | ||
9061 | 2360,813,1,2366,3476, | ||
9062 | 16,0,286,1,85, | ||
9063 | 3477,19,285,1,85, | ||
9064 | 3478,5,9,1,2414, | ||
9065 | 1580,1,2490,3479,16, | ||
9066 | 0,283,1,2455,3480, | ||
9067 | 16,0,283,1,2451, | ||
9068 | 1589,1,2416,3481,16, | ||
9069 | 0,283,1,2453,1595, | ||
9070 | 1,2355,858,1,2360, | ||
9071 | 813,1,2366,3482,16, | ||
9072 | 0,283,1,86,3483, | ||
9073 | 19,389,1,86,3484, | ||
9074 | 5,9,1,2414,1580, | ||
9075 | 1,2490,3485,16,0, | ||
9076 | 387,1,2455,3486,16, | ||
9077 | 0,387,1,2451,1589, | ||
9078 | 1,2416,3487,16,0, | ||
9079 | 387,1,2453,1595,1, | ||
9080 | 2355,858,1,2360,813, | ||
9081 | 1,2366,3488,16,0, | ||
9082 | 387,1,87,3489,19, | ||
9083 | 281,1,87,3490,5, | ||
9084 | 9,1,2414,1580,1, | ||
9085 | 2490,3491,16,0,279, | ||
9086 | 1,2455,3492,16,0, | ||
9087 | 279,1,2451,1589,1, | ||
9088 | 2416,3493,16,0,279, | ||
9089 | 1,2453,1595,1,2355, | ||
9090 | 858,1,2360,813,1, | ||
9091 | 2366,3494,16,0,279, | ||
9092 | 1,88,3495,19,644, | ||
9093 | 1,88,3496,5,9, | ||
9094 | 1,2414,1580,1,2490, | ||
9095 | 3497,16,0,642,1, | ||
9096 | 2455,3498,16,0,642, | ||
9097 | 1,2451,1589,1,2416, | ||
9098 | 3499,16,0,642,1, | ||
9099 | 2453,1595,1,2355,858, | ||
9100 | 1,2360,813,1,2366, | ||
9101 | 3500,16,0,642,1, | ||
9102 | 89,3501,19,276,1, | ||
9103 | 89,3502,5,9,1, | ||
9104 | 2414,1580,1,2490,3503, | ||
9105 | 16,0,274,1,2455, | ||
9106 | 3504,16,0,274,1, | ||
9107 | 2451,1589,1,2416,3505, | ||
9108 | 16,0,274,1,2453, | ||
9109 | 1595,1,2355,858,1, | ||
9110 | 2360,813,1,2366,3506, | ||
9111 | 16,0,274,1,90, | ||
9112 | 3507,19,382,1,90, | ||
9113 | 3508,5,9,1,2414, | ||
9114 | 1580,1,2490,3509,16, | ||
9115 | 0,380,1,2455,3510, | ||
9116 | 16,0,380,1,2451, | ||
9117 | 1589,1,2416,3511,16, | ||
9118 | 0,380,1,2453,1595, | ||
9119 | 1,2355,858,1,2360, | ||
9120 | 813,1,2366,3512,16, | ||
9121 | 0,380,1,91,3513, | ||
9122 | 19,133,1,91,3514, | ||
9123 | 5,121,1,0,3515, | ||
9124 | 16,0,558,1,1, | ||
9125 | 1904,1,2,1910,1, | ||
9126 | 3,1915,1,4,1920, | ||
9127 | 1,5,1925,1,6, | ||
9128 | 1930,1,7,1935,1, | ||
9129 | 8,3516,16,0,131, | ||
9130 | 1,1515,3517,16,0, | ||
9131 | 165,1,2605,3098,1, | ||
9132 | 2135,836,1,2021,707, | ||
9133 | 1,2022,3518,16,0, | ||
9134 | 501,1,256,3519,16, | ||
9135 | 0,173,1,2025,3520, | ||
9136 | 16,0,505,1,18, | ||
9137 | 3521,16,0,138,1, | ||
9138 | 2027,3522,16,0,509, | ||
9139 | 1,2029,714,1,2030, | ||
9140 | 720,1,2031,725,1, | ||
9141 | 2032,730,1,2033,735, | ||
9142 | 1,277,3523,16,0, | ||
9143 | 173,1,2035,741,1, | ||
9144 | 2037,746,1,2039,751, | ||
9145 | 1,32,3524,16,0, | ||
9146 | 165,1,2041,757,1, | ||
9147 | 2043,762,1,2044,767, | ||
9148 | 1,2547,3126,1,2550, | ||
9149 | 3525,16,0,173,1, | ||
9150 | 41,3526,16,0,173, | ||
9151 | 1,1297,3527,16,0, | ||
9152 | 165,1,43,3528,16, | ||
9153 | 0,173,1,1802,774, | ||
9154 | 1,46,3529,16,0, | ||
9155 | 178,1,1804,3530,16, | ||
9156 | 0,165,1,299,3531, | ||
9157 | 16,0,173,1,2309, | ||
9158 | 3532,16,0,165,1, | ||
9159 | 52,3533,16,0,165, | ||
9160 | 1,509,3534,16,0, | ||
9161 | 173,1,525,3535,16, | ||
9162 | 0,173,1,62,3536, | ||
9163 | 16,0,194,1,65, | ||
9164 | 3537,16,0,196,1, | ||
9165 | 2074,3538,16,0,165, | ||
9166 | 1,1574,787,1,71, | ||
9167 | 3539,16,0,173,1, | ||
9168 | 1775,3540,16,0,165, | ||
9169 | 1,76,3541,16,0, | ||
9170 | 173,1,1834,3542,16, | ||
9171 | 0,165,1,2197,3543, | ||
9172 | 16,0,165,1,79, | ||
9173 | 3544,16,0,173,1, | ||
9174 | 1335,3545,16,0,165, | ||
9175 | 1,322,3546,16,0, | ||
9176 | 173,1,85,3547,16, | ||
9177 | 0,173,1,1261,3548, | ||
9178 | 16,0,165,1,89, | ||
9179 | 3549,16,0,173,1, | ||
9180 | 346,3550,16,0,173, | ||
9181 | 1,2355,858,1,97, | ||
9182 | 3551,16,0,173,1, | ||
9183 | 2608,3109,1,2358,807, | ||
9184 | 1,2360,813,1,102, | ||
9185 | 3552,16,0,173,1, | ||
9186 | 1860,820,1,2364,3553, | ||
9187 | 16,0,379,1,1113, | ||
9188 | 3554,16,0,158,1, | ||
9189 | 112,3555,16,0,173, | ||
9190 | 1,1117,3556,16,0, | ||
9191 | 165,1,1873,829,1, | ||
9192 | 1876,3557,16,0,165, | ||
9193 | 1,372,3558,16,0, | ||
9194 | 539,1,374,3559,16, | ||
9195 | 0,541,1,124,3560, | ||
9196 | 16,0,173,1,376, | ||
9197 | 3561,16,0,543,1, | ||
9198 | 378,3562,16,0,545, | ||
9199 | 1,381,3563,16,0, | ||
9200 | 173,1,137,3564,16, | ||
9201 | 0,173,1,1901,3565, | ||
9202 | 16,0,165,1,2575, | ||
9203 | 3115,1,1153,3566,16, | ||
9204 | 0,165,1,151,3567, | ||
9205 | 16,0,173,1,1407, | ||
9206 | 3568,16,0,165,1, | ||
9207 | 1659,3569,16,0,165, | ||
9208 | 1,406,3570,16,0, | ||
9209 | 173,1,2586,3132,1, | ||
9210 | 2587,3571,16,0,558, | ||
9211 | 1,1371,3572,16,0, | ||
9212 | 165,1,2104,801,1, | ||
9213 | 2105,3573,16,0,165, | ||
9214 | 1,166,3574,16,0, | ||
9215 | 173,1,1622,3575,16, | ||
9216 | 0,173,1,2354,853, | ||
9217 | 1,1931,863,1,1933, | ||
9218 | 3576,16,0,165,1, | ||
9219 | 2362,3137,1,2606,3121, | ||
9220 | 1,2607,3104,1,1585, | ||
9221 | 3577,16,0,173,1, | ||
9222 | 182,3578,16,0,173, | ||
9223 | 1,1189,3579,16,0, | ||
9224 | 165,1,1443,3580,16, | ||
9225 | 0,165,1,1695,3581, | ||
9226 | 16,0,165,1,431, | ||
9227 | 3582,16,0,173,1, | ||
9228 | 447,3583,16,0,173, | ||
9229 | 1,199,3584,16,0, | ||
9230 | 173,1,1958,3585,16, | ||
9231 | 0,165,1,1657,878, | ||
9232 | 1,459,3586,16,0, | ||
9233 | 173,1,462,3587,16, | ||
9234 | 0,173,1,217,3588, | ||
9235 | 16,0,173,1,2226, | ||
9236 | 886,1,1225,3589,16, | ||
9237 | 0,165,1,1479,3590, | ||
9238 | 16,0,165,1,1731, | ||
9239 | 3591,16,0,173,1, | ||
9240 | 1989,894,1,1990,3592, | ||
9241 | 16,0,165,1,236, | ||
9242 | 3593,16,0,173,1, | ||
9243 | 1756,3594,16,0,165, | ||
9244 | 1,92,3595,19,624, | ||
9245 | 1,92,3596,5,91, | ||
9246 | 1,256,3597,16,0, | ||
9247 | 622,1,1261,3598,16, | ||
9248 | 0,622,1,509,3599, | ||
9249 | 16,0,622,1,2197, | ||
9250 | 3600,16,0,622,1, | ||
9251 | 1515,3601,16,0,622, | ||
9252 | 1,2021,707,1,1775, | ||
9253 | 3602,16,0,622,1, | ||
9254 | 2029,714,1,2030,720, | ||
9255 | 1,2031,725,1,2032, | ||
9256 | 730,1,2033,735,1, | ||
9257 | 277,3603,16,0,622, | ||
9258 | 1,2035,741,1,2037, | ||
9259 | 746,1,2039,751,1, | ||
9260 | 32,3604,16,0,622, | ||
9261 | 1,2041,757,1,2043, | ||
9262 | 762,1,2044,767,1, | ||
9263 | 2550,3605,16,0,622, | ||
9264 | 1,41,3606,16,0, | ||
9265 | 622,1,1297,3607,16, | ||
9266 | 0,622,1,43,3608, | ||
9267 | 16,0,622,1,1802, | ||
9268 | 774,1,1804,3609,16, | ||
9269 | 0,622,1,299,3610, | ||
9270 | 16,0,622,1,2309, | ||
9271 | 3611,16,0,622,1, | ||
9272 | 52,3612,16,0,622, | ||
9273 | 1,525,3613,16,0, | ||
9274 | 622,1,62,3614,16, | ||
9275 | 0,622,1,2074,3615, | ||
9276 | 16,0,622,1,1574, | ||
9277 | 787,1,71,3616,16, | ||
9278 | 0,622,1,76,3617, | ||
9279 | 16,0,622,1,1834, | ||
9280 | 3618,16,0,622,1, | ||
9281 | 1585,3619,16,0,622, | ||
9282 | 1,1335,3620,16,0, | ||
9283 | 622,1,79,3621,16, | ||
9284 | 0,622,1,85,3622, | ||
9285 | 16,0,622,1,89, | ||
9286 | 3623,16,0,622,1, | ||
9287 | 346,3624,16,0,622, | ||
9288 | 1,2104,801,1,2105, | ||
9289 | 3625,16,0,622,1, | ||
9290 | 2358,807,1,2360,813, | ||
9291 | 1,97,3626,16,0, | ||
9292 | 622,1,1860,820,1, | ||
9293 | 102,3627,16,0,622, | ||
9294 | 1,112,3628,16,0, | ||
9295 | 622,1,1117,3629,16, | ||
9296 | 0,622,1,1873,829, | ||
9297 | 1,1876,3630,16,0, | ||
9298 | 622,1,124,3631,16, | ||
9299 | 0,622,1,2135,836, | ||
9300 | 1,381,3632,16,0, | ||
9301 | 622,1,322,3633,16, | ||
9302 | 0,622,1,137,3634, | ||
9303 | 16,0,622,1,1901, | ||
9304 | 3635,16,0,622,1, | ||
9305 | 1153,3636,16,0,622, | ||
9306 | 1,151,3637,16,0, | ||
9307 | 622,1,1407,3638,16, | ||
9308 | 0,622,1,1659,3639, | ||
9309 | 16,0,622,1,406, | ||
9310 | 3640,16,0,622,1, | ||
9311 | 1371,3641,16,0,622, | ||
9312 | 1,166,3642,16,0, | ||
9313 | 622,1,1622,3643,16, | ||
9314 | 0,622,1,2354,853, | ||
9315 | 1,2355,858,1,1931, | ||
9316 | 863,1,1933,3644,16, | ||
9317 | 0,622,1,431,3645, | ||
9318 | 16,0,622,1,182, | ||
9319 | 3646,16,0,622,1, | ||
9320 | 1189,3647,16,0,622, | ||
9321 | 1,1443,3648,16,0, | ||
9322 | 622,1,1695,3649,16, | ||
9323 | 0,622,1,447,3650, | ||
9324 | 16,0,622,1,199, | ||
9325 | 3651,16,0,622,1, | ||
9326 | 1958,3652,16,0,622, | ||
9327 | 1,1657,878,1,459, | ||
9328 | 3653,16,0,622,1, | ||
9329 | 462,3654,16,0,622, | ||
9330 | 1,217,3655,16,0, | ||
9331 | 622,1,2226,886,1, | ||
9332 | 1225,3656,16,0,622, | ||
9333 | 1,1479,3657,16,0, | ||
9334 | 622,1,1731,3658,16, | ||
9335 | 0,622,1,1989,894, | ||
9336 | 1,1990,3659,16,0, | ||
9337 | 622,1,236,3660,16, | ||
9338 | 0,622,1,1756,3661, | ||
9339 | 16,0,622,1,93, | ||
9340 | 3662,19,621,1,93, | ||
9341 | 3663,5,91,1,256, | ||
9342 | 3664,16,0,619,1, | ||
9343 | 1261,3665,16,0,619, | ||
9344 | 1,509,3666,16,0, | ||
9345 | 619,1,2197,3667,16, | ||
9346 | 0,619,1,1515,3668, | ||
9347 | 16,0,619,1,2021, | ||
9348 | 707,1,1775,3669,16, | ||
9349 | 0,619,1,2029,714, | ||
9350 | 1,2030,720,1,2031, | ||
9351 | 725,1,2032,730,1, | ||
9352 | 2033,735,1,277,3670, | ||
9353 | 16,0,619,1,2035, | ||
9354 | 741,1,2037,746,1, | ||
9355 | 2039,751,1,32,3671, | ||
9356 | 16,0,619,1,2041, | ||
9357 | 757,1,2043,762,1, | ||
9358 | 2044,767,1,2550,3672, | ||
9359 | 16,0,619,1,41, | ||
9360 | 3673,16,0,619,1, | ||
9361 | 1297,3674,16,0,619, | ||
9362 | 1,43,3675,16,0, | ||
9363 | 619,1,1802,774,1, | ||
9364 | 1804,3676,16,0,619, | ||
9365 | 1,299,3677,16,0, | ||
9366 | 619,1,2309,3678,16, | ||
9367 | 0,619,1,52,3679, | ||
9368 | 16,0,619,1,525, | ||
9369 | 3680,16,0,619,1, | ||
9370 | 62,3681,16,0,619, | ||
9371 | 1,2074,3682,16,0, | ||
9372 | 619,1,1574,787,1, | ||
9373 | 71,3683,16,0,619, | ||
9374 | 1,76,3684,16,0, | ||
9375 | 619,1,1834,3685,16, | ||
9376 | 0,619,1,1585,3686, | ||
9377 | 16,0,619,1,1335, | ||
9378 | 3687,16,0,619,1, | ||
9379 | 79,3688,16,0,619, | ||
9380 | 1,85,3689,16,0, | ||
9381 | 619,1,89,3690,16, | ||
9382 | 0,619,1,346,3691, | ||
9383 | 16,0,619,1,2104, | ||
9384 | 801,1,2105,3692,16, | ||
9385 | 0,619,1,2358,807, | ||
9386 | 1,2360,813,1,97, | ||
9387 | 3693,16,0,619,1, | ||
9388 | 1860,820,1,102,3694, | ||
9389 | 16,0,619,1,112, | ||
9390 | 3695,16,0,619,1, | ||
9391 | 1117,3696,16,0,619, | ||
9392 | 1,1873,829,1,1876, | ||
9393 | 3697,16,0,619,1, | ||
9394 | 124,3698,16,0,619, | ||
9395 | 1,2135,836,1,381, | ||
9396 | 3699,16,0,619,1, | ||
9397 | 322,3700,16,0,619, | ||
9398 | 1,137,3701,16,0, | ||
9399 | 619,1,1901,3702,16, | ||
9400 | 0,619,1,1153,3703, | ||
9401 | 16,0,619,1,151, | ||
9402 | 3704,16,0,619,1, | ||
9403 | 1407,3705,16,0,619, | ||
9404 | 1,1659,3706,16,0, | ||
9405 | 619,1,406,3707,16, | ||
9406 | 0,619,1,1371,3708, | ||
9407 | 16,0,619,1,166, | ||
9408 | 3709,16,0,619,1, | ||
9409 | 1622,3710,16,0,619, | ||
9410 | 1,2354,853,1,2355, | ||
9411 | 858,1,1931,863,1, | ||
9412 | 1933,3711,16,0,619, | ||
9413 | 1,431,3712,16,0, | ||
9414 | 619,1,182,3713,16, | ||
9415 | 0,619,1,1189,3714, | ||
9416 | 16,0,619,1,1443, | ||
9417 | 3715,16,0,619,1, | ||
9418 | 1695,3716,16,0,619, | ||
9419 | 1,447,3717,16,0, | ||
9420 | 619,1,199,3718,16, | ||
9421 | 0,619,1,1958,3719, | ||
9422 | 16,0,619,1,1657, | ||
9423 | 878,1,459,3720,16, | ||
9424 | 0,619,1,462,3721, | ||
9425 | 16,0,619,1,217, | ||
9426 | 3722,16,0,619,1, | ||
9427 | 2226,886,1,1225,3723, | ||
9428 | 16,0,619,1,1479, | ||
9429 | 3724,16,0,619,1, | ||
9430 | 1731,3725,16,0,619, | ||
9431 | 1,1989,894,1,1990, | ||
9432 | 3726,16,0,619,1, | ||
9433 | 236,3727,16,0,619, | ||
9434 | 1,1756,3728,16,0, | ||
9435 | 619,1,94,3729,19, | ||
9436 | 618,1,94,3730,5, | ||
9437 | 91,1,256,3731,16, | ||
9438 | 0,616,1,1261,3732, | ||
9439 | 16,0,616,1,509, | ||
9440 | 3733,16,0,616,1, | ||
9441 | 2197,3734,16,0,616, | ||
9442 | 1,1515,3735,16,0, | ||
9443 | 616,1,2021,707,1, | ||
9444 | 1775,3736,16,0,616, | ||
9445 | 1,2029,714,1,2030, | ||
9446 | 720,1,2031,725,1, | ||
9447 | 2032,730,1,2033,735, | ||
9448 | 1,277,3737,16,0, | ||
9449 | 616,1,2035,741,1, | ||
9450 | 2037,746,1,2039,751, | ||
9451 | 1,32,3738,16,0, | ||
9452 | 616,1,2041,757,1, | ||
9453 | 2043,762,1,2044,767, | ||
9454 | 1,2550,3739,16,0, | ||
9455 | 616,1,41,3740,16, | ||
9456 | 0,616,1,1297,3741, | ||
9457 | 16,0,616,1,43, | ||
9458 | 3742,16,0,616,1, | ||
9459 | 1802,774,1,1804,3743, | ||
9460 | 16,0,616,1,299, | ||
9461 | 3744,16,0,616,1, | ||
9462 | 2309,3745,16,0,616, | ||
9463 | 1,52,3746,16,0, | ||
9464 | 616,1,525,3747,16, | ||
9465 | 0,616,1,62,3748, | ||
9466 | 16,0,616,1,2074, | ||
9467 | 3749,16,0,616,1, | ||
9468 | 1574,787,1,71,3750, | ||
9469 | 16,0,616,1,76, | ||
9470 | 3751,16,0,616,1, | ||
9471 | 1834,3752,16,0,616, | ||
9472 | 1,1585,3753,16,0, | ||
9473 | 616,1,1335,3754,16, | ||
9474 | 0,616,1,79,3755, | ||
9475 | 16,0,616,1,85, | ||
9476 | 3756,16,0,616,1, | ||
9477 | 89,3757,16,0,616, | ||
9478 | 1,346,3758,16,0, | ||
9479 | 616,1,2104,801,1, | ||
9480 | 2105,3759,16,0,616, | ||
9481 | 1,2358,807,1,2360, | ||
9482 | 813,1,97,3760,16, | ||
9483 | 0,616,1,1860,820, | ||
9484 | 1,102,3761,16,0, | ||
9485 | 616,1,112,3762,16, | ||
9486 | 0,616,1,1117,3763, | ||
9487 | 16,0,616,1,1873, | ||
9488 | 829,1,1876,3764,16, | ||
9489 | 0,616,1,124,3765, | ||
9490 | 16,0,616,1,2135, | ||
9491 | 836,1,381,3766,16, | ||
9492 | 0,616,1,322,3767, | ||
9493 | 16,0,616,1,137, | ||
9494 | 3768,16,0,616,1, | ||
9495 | 1901,3769,16,0,616, | ||
9496 | 1,1153,3770,16,0, | ||
9497 | 616,1,151,3771,16, | ||
9498 | 0,616,1,1407,3772, | ||
9499 | 16,0,616,1,1659, | ||
9500 | 3773,16,0,616,1, | ||
9501 | 406,3774,16,0,616, | ||
9502 | 1,1371,3775,16,0, | ||
9503 | 616,1,166,3776,16, | ||
9504 | 0,616,1,1622,3777, | ||
9505 | 16,0,616,1,2354, | ||
9506 | 853,1,2355,858,1, | ||
9507 | 1931,863,1,1933,3778, | ||
9508 | 16,0,616,1,431, | ||
9509 | 3779,16,0,616,1, | ||
9510 | 182,3780,16,0,616, | ||
9511 | 1,1189,3781,16,0, | ||
9512 | 616,1,1443,3782,16, | ||
9513 | 0,616,1,1695,3783, | ||
9514 | 16,0,616,1,447, | ||
9515 | 3784,16,0,616,1, | ||
9516 | 199,3785,16,0,616, | ||
9517 | 1,1958,3786,16,0, | ||
9518 | 616,1,1657,878,1, | ||
9519 | 459,3787,16,0,616, | ||
9520 | 1,462,3788,16,0, | ||
9521 | 616,1,217,3789,16, | ||
9522 | 0,616,1,2226,886, | ||
9523 | 1,1225,3790,16,0, | ||
9524 | 616,1,1479,3791,16, | ||
9525 | 0,616,1,1731,3792, | ||
9526 | 16,0,616,1,1989, | ||
9527 | 894,1,1990,3793,16, | ||
9528 | 0,616,1,236,3794, | ||
9529 | 16,0,616,1,1756, | ||
9530 | 3795,16,0,616,1, | ||
9531 | 95,3796,19,103,1, | ||
9532 | 95,3797,5,1,1, | ||
9533 | 0,3798,16,0,104, | ||
9534 | 1,96,3799,19,647, | ||
9535 | 1,96,3800,5,1, | ||
9536 | 1,0,3801,16,0, | ||
9537 | 645,1,97,3802,19, | ||
9538 | 605,1,97,3803,5, | ||
9539 | 2,1,0,3804,16, | ||
9540 | 0,603,1,2587,3805, | ||
9541 | 16,0,630,1,98, | ||
9542 | 3806,19,357,1,98, | ||
9543 | 3807,5,2,1,0, | ||
9544 | 3808,16,0,481,1, | ||
9545 | 2587,3809,16,0,355, | ||
9546 | 1,99,3810,19,474, | ||
9547 | 1,99,3811,5,2, | ||
9548 | 1,0,3812,16,0, | ||
9549 | 472,1,2587,3813,16, | ||
9550 | 0,652,1,100,3814, | ||
9551 | 19,466,1,100,3815, | ||
9552 | 5,4,1,0,3816, | ||
9553 | 16,0,464,1,2587, | ||
9554 | 3817,16,0,464,1, | ||
9555 | 2598,3818,16,0,609, | ||
9556 | 1,2528,3819,16,0, | ||
9557 | 609,1,101,3820,19, | ||
9558 | 491,1,101,3821,5, | ||
9559 | 2,1,2366,3822,16, | ||
9560 | 0,492,1,2455,3823, | ||
9561 | 16,0,489,1,102, | ||
9562 | 3824,19,398,1,102, | ||
9563 | 3825,5,4,1,2366, | ||
9564 | 3826,16,0,396,1, | ||
9565 | 2455,3827,16,0,396, | ||
9566 | 1,2490,3828,16,0, | ||
9567 | 460,1,2416,3829,16, | ||
9568 | 0,460,1,103,3830, | ||
9569 | 19,141,1,103,3831, | ||
9570 | 5,3,1,2401,3832, | ||
9571 | 16,0,437,1,2534, | ||
9572 | 3833,16,0,475,1, | ||
9573 | 10,3834,16,0,139, | ||
9574 | 1,104,3835,19,151, | ||
9575 | 1,104,3836,5,16, | ||
9576 | 1,0,3837,16,0, | ||
9577 | 482,1,2074,3838,16, | ||
9578 | 0,637,1,2587,3839, | ||
9579 | 16,0,482,1,10, | ||
9580 | 3840,16,0,266,1, | ||
9581 | 2197,3841,16,0,637, | ||
9582 | 1,1901,3842,16,0, | ||
9583 | 637,1,2309,3843,16, | ||
9584 | 0,637,1,2534,3844, | ||
9585 | 16,0,266,1,21, | ||
9586 | 3845,16,0,149,1, | ||
9587 | 2105,3846,16,0,637, | ||
9588 | 1,1804,3847,16,0, | ||
9589 | 637,1,1990,3848,16, | ||
9590 | 0,637,1,32,3849, | ||
9591 | 16,0,637,1,2401, | ||
9592 | 3850,16,0,266,1, | ||
9593 | 1958,3851,16,0,637, | ||
9594 | 1,1775,3852,16,0, | ||
9595 | 637,1,105,3853,19, | ||
9596 | 130,1,105,3854,5, | ||
9597 | 17,1,0,3855,16, | ||
9598 | 0,128,1,2074,3856, | ||
9599 | 16,0,137,1,2587, | ||
9600 | 3857,16,0,128,1, | ||
9601 | 2105,3858,16,0,137, | ||
9602 | 1,10,3859,16,0, | ||
9603 | 137,1,2197,3860,16, | ||
9604 | 0,137,1,1901,3861, | ||
9605 | 16,0,137,1,2309, | ||
9606 | 3862,16,0,137,1, | ||
9607 | 52,3863,16,0,192, | ||
9608 | 1,21,3864,16,0, | ||
9609 | 137,1,2534,3865,16, | ||
9610 | 0,137,1,1804,3866, | ||
9611 | 16,0,137,1,1990, | ||
9612 | 3867,16,0,137,1, | ||
9613 | 32,3868,16,0,137, | ||
9614 | 1,2401,3869,16,0, | ||
9615 | 137,1,1958,3870,16, | ||
9616 | 0,137,1,1775,3871, | ||
9617 | 16,0,137,1,106, | ||
9618 | 3872,19,432,1,106, | ||
9619 | 3873,5,4,1,2366, | ||
9620 | 3874,16,0,430,1, | ||
9621 | 2455,3875,16,0,430, | ||
9622 | 1,2490,3876,16,0, | ||
9623 | 430,1,2416,3877,16, | ||
9624 | 0,430,1,107,3878, | ||
9625 | 19,224,1,107,3879, | ||
9626 | 5,13,1,2074,3880, | ||
9627 | 16,0,510,1,2412, | ||
9628 | 3881,16,0,363,1, | ||
9629 | 2197,3882,16,0,510, | ||
9630 | 1,1901,3883,16,0, | ||
9631 | 510,1,2309,3884,16, | ||
9632 | 0,510,1,1990,3885, | ||
9633 | 16,0,510,1,1804, | ||
9634 | 3886,16,0,510,1, | ||
9635 | 2545,3887,16,0,222, | ||
9636 | 1,31,3888,16,0, | ||
9637 | 265,1,32,3889,16, | ||
9638 | 0,510,1,2105,3890, | ||
9639 | 16,0,510,1,1958, | ||
9640 | 3891,16,0,510,1, | ||
9641 | 1775,3892,16,0,510, | ||
9642 | 1,108,3893,19,314, | ||
9643 | 1,108,3894,5,1, | ||
9644 | 1,32,3895,16,0, | ||
9645 | 312,1,109,3896,19, | ||
9646 | 255,1,109,3897,5, | ||
9647 | 10,1,2074,3898,16, | ||
9648 | 0,578,1,2197,3899, | ||
9649 | 16,0,661,1,1901, | ||
9650 | 3900,16,0,438,1, | ||
9651 | 2309,3901,16,0,253, | ||
9652 | 1,1804,3902,16,0, | ||
9653 | 326,1,1990,3903,16, | ||
9654 | 0,498,1,32,3904, | ||
9655 | 16,0,450,1,2105, | ||
9656 | 3905,16,0,651,1, | ||
9657 | 1958,3906,16,0,477, | ||
9658 | 1,1775,3907,16,0, | ||
9659 | 260,1,110,3908,19, | ||
9660 | 634,1,110,3909,5, | ||
9661 | 10,1,2074,3910,16, | ||
9662 | 0,632,1,2197,3911, | ||
9663 | 16,0,632,1,1901, | ||
9664 | 3912,16,0,632,1, | ||
9665 | 2309,3913,16,0,632, | ||
9666 | 1,1804,3914,16,0, | ||
9667 | 632,1,1990,3915,16, | ||
9668 | 0,632,1,32,3916, | ||
9669 | 16,0,632,1,2105, | ||
9670 | 3917,16,0,632,1, | ||
9671 | 1958,3918,16,0,632, | ||
9672 | 1,1775,3919,16,0, | ||
9673 | 632,1,111,3920,19, | ||
9674 | 161,1,111,3921,5, | ||
9675 | 29,1,1479,3922,16, | ||
9676 | 0,563,1,2074,3923, | ||
9677 | 16,0,636,1,1695, | ||
9678 | 3924,16,0,188,1, | ||
9679 | 1756,3925,16,0,252, | ||
9680 | 1,2197,3926,16,0, | ||
9681 | 636,1,2309,3927,16, | ||
9682 | 0,636,1,1876,3928, | ||
9683 | 16,0,237,1,1659, | ||
9684 | 3929,16,0,252,1, | ||
9685 | 1443,3930,16,0,526, | ||
9686 | 1,1117,3931,16,0, | ||
9687 | 159,1,1990,3932,16, | ||
9688 | 0,636,1,1189,3933, | ||
9689 | 16,0,238,1,1775, | ||
9690 | 3934,16,0,636,1, | ||
9691 | 32,3935,16,0,636, | ||
9692 | 1,2105,3936,16,0, | ||
9693 | 636,1,1515,3937,16, | ||
9694 | 0,580,1,1901,3938, | ||
9695 | 16,0,636,1,52, | ||
9696 | 3939,16,0,591,1, | ||
9697 | 1804,3940,16,0,636, | ||
9698 | 1,1261,3941,16,0, | ||
9699 | 358,1,1153,3942,16, | ||
9700 | 0,245,1,1225,3943, | ||
9701 | 16,0,289,1,1335, | ||
9702 | 3944,16,0,459,1, | ||
9703 | 1933,3945,16,0,565, | ||
9704 | 1,1834,3946,16,0, | ||
9705 | 373,1,1297,3947,16, | ||
9706 | 0,386,1,1407,3948, | ||
9707 | 16,0,572,1,1958, | ||
9708 | 3949,16,0,636,1, | ||
9709 | 1371,3950,16,0,453, | ||
9710 | 1,112,3951,19,535, | ||
9711 | 1,112,3952,5,10, | ||
9712 | 1,2074,3953,16,0, | ||
9713 | 533,1,2197,3954,16, | ||
9714 | 0,533,1,1901,3955, | ||
9715 | 16,0,533,1,2309, | ||
9716 | 3956,16,0,533,1, | ||
9717 | 1804,3957,16,0,533, | ||
9718 | 1,1990,3958,16,0, | ||
9719 | 533,1,32,3959,16, | ||
9720 | 0,533,1,2105,3960, | ||
9721 | 16,0,533,1,1958, | ||
9722 | 3961,16,0,533,1, | ||
9723 | 1775,3962,16,0,533, | ||
9724 | 1,113,3963,19,531, | ||
9725 | 1,113,3964,5,10, | ||
9726 | 1,2074,3965,16,0, | ||
9727 | 529,1,2197,3966,16, | ||
9728 | 0,529,1,1901,3967, | ||
9729 | 16,0,529,1,2309, | ||
9730 | 3968,16,0,529,1, | ||
9731 | 1804,3969,16,0,529, | ||
9732 | 1,1990,3970,16,0, | ||
9733 | 529,1,32,3971,16, | ||
9734 | 0,529,1,2105,3972, | ||
9735 | 16,0,529,1,1958, | ||
9736 | 3973,16,0,529,1, | ||
9737 | 1775,3974,16,0,529, | ||
9738 | 1,114,3975,19,576, | ||
9739 | 1,114,3976,5,10, | ||
9740 | 1,2074,3977,16,0, | ||
9741 | 574,1,2197,3978,16, | ||
9742 | 0,574,1,1901,3979, | ||
9743 | 16,0,574,1,2309, | ||
9744 | 3980,16,0,574,1, | ||
9745 | 1804,3981,16,0,574, | ||
9746 | 1,1990,3982,16,0, | ||
9747 | 574,1,32,3983,16, | ||
9748 | 0,574,1,2105,3984, | ||
9749 | 16,0,574,1,1958, | ||
9750 | 3985,16,0,574,1, | ||
9751 | 1775,3986,16,0,574, | ||
9752 | 1,115,3987,19,525, | ||
9753 | 1,115,3988,5,10, | ||
9754 | 1,2074,3989,16,0, | ||
9755 | 523,1,2197,3990,16, | ||
9756 | 0,523,1,1901,3991, | ||
9757 | 16,0,523,1,2309, | ||
9758 | 3992,16,0,523,1, | ||
9759 | 1804,3993,16,0,523, | ||
9760 | 1,1990,3994,16,0, | ||
9761 | 523,1,32,3995,16, | ||
9762 | 0,523,1,2105,3996, | ||
9763 | 16,0,523,1,1958, | ||
9764 | 3997,16,0,523,1, | ||
9765 | 1775,3998,16,0,523, | ||
9766 | 1,116,3999,19,522, | ||
9767 | 1,116,4000,5,10, | ||
9768 | 1,2074,4001,16,0, | ||
9769 | 520,1,2197,4002,16, | ||
9770 | 0,520,1,1901,4003, | ||
9771 | 16,0,520,1,2309, | ||
9772 | 4004,16,0,520,1, | ||
9773 | 1804,4005,16,0,520, | ||
9774 | 1,1990,4006,16,0, | ||
9775 | 520,1,32,4007,16, | ||
9776 | 0,520,1,2105,4008, | ||
9777 | 16,0,520,1,1958, | ||
9778 | 4009,16,0,520,1, | ||
9779 | 1775,4010,16,0,520, | ||
9780 | 1,117,4011,19,519, | ||
9781 | 1,117,4012,5,10, | ||
9782 | 1,2074,4013,16,0, | ||
9783 | 517,1,2197,4014,16, | ||
9784 | 0,517,1,1901,4015, | ||
9785 | 16,0,517,1,2309, | ||
9786 | 4016,16,0,517,1, | ||
9787 | 1804,4017,16,0,517, | ||
9788 | 1,1990,4018,16,0, | ||
9789 | 517,1,32,4019,16, | ||
9790 | 0,517,1,2105,4020, | ||
9791 | 16,0,517,1,1958, | ||
9792 | 4021,16,0,517,1, | ||
9793 | 1775,4022,16,0,517, | ||
9794 | 1,118,4023,19,516, | ||
9795 | 1,118,4024,5,10, | ||
9796 | 1,2074,4025,16,0, | ||
9797 | 514,1,2197,4026,16, | ||
9798 | 0,514,1,1901,4027, | ||
9799 | 16,0,514,1,2309, | ||
9800 | 4028,16,0,514,1, | ||
9801 | 1804,4029,16,0,514, | ||
9802 | 1,1990,4030,16,0, | ||
9803 | 514,1,32,4031,16, | ||
9804 | 0,514,1,2105,4032, | ||
9805 | 16,0,514,1,1958, | ||
9806 | 4033,16,0,514,1, | ||
9807 | 1775,4034,16,0,514, | ||
9808 | 1,119,4035,19,513, | ||
9809 | 1,119,4036,5,10, | ||
9810 | 1,2074,4037,16,0, | ||
9811 | 511,1,2197,4038,16, | ||
9812 | 0,511,1,1901,4039, | ||
9813 | 16,0,511,1,2309, | ||
9814 | 4040,16,0,511,1, | ||
9815 | 1804,4041,16,0,511, | ||
9816 | 1,1990,4042,16,0, | ||
9817 | 511,1,32,4043,16, | ||
9818 | 0,511,1,2105,4044, | ||
9819 | 16,0,511,1,1958, | ||
9820 | 4045,16,0,511,1, | ||
9821 | 1775,4046,16,0,511, | ||
9822 | 1,120,4047,19,147, | ||
9823 | 1,120,4048,5,2, | ||
9824 | 1,1756,4049,16,0, | ||
9825 | 322,1,1659,4050,16, | ||
9826 | 0,145,1,121,4051, | ||
9827 | 19,556,1,121,4052, | ||
9828 | 5,65,1,1479,4053, | ||
9829 | 16,0,554,1,112, | ||
9830 | 4054,16,0,554,1, | ||
9831 | 1804,4055,16,0,554, | ||
9832 | 1,431,4056,16,0, | ||
9833 | 554,1,1443,4057,16, | ||
9834 | 0,554,1,1756,4058, | ||
9835 | 16,0,554,1,124, | ||
9836 | 4059,16,0,554,1, | ||
9837 | 525,4060,16,0,554, | ||
9838 | 1,2197,4061,16,0, | ||
9839 | 554,1,236,4062,16, | ||
9840 | 0,554,1,346,4063, | ||
9841 | 16,0,554,1,2309, | ||
9842 | 4064,16,0,554,1, | ||
9843 | 1876,4065,16,0,554, | ||
9844 | 1,1659,4066,16,0, | ||
9845 | 554,1,1225,4067,16, | ||
9846 | 0,554,1,1117,4068, | ||
9847 | 16,0,554,1,137, | ||
9848 | 4069,16,0,554,1, | ||
9849 | 1775,4070,16,0,554, | ||
9850 | 1,32,4071,16,0, | ||
9851 | 554,1,2105,4072,16, | ||
9852 | 0,554,1,1407,4073, | ||
9853 | 16,0,554,1,256, | ||
9854 | 4074,16,0,554,1, | ||
9855 | 459,4075,16,0,554, | ||
9856 | 1,41,4076,16,0, | ||
9857 | 554,1,151,4077,16, | ||
9858 | 0,554,1,43,4078, | ||
9859 | 16,0,554,1,1901, | ||
9860 | 4079,16,0,554,1, | ||
9861 | 509,4080,16,0,554, | ||
9862 | 1,52,4081,16,0, | ||
9863 | 554,1,381,4082,16, | ||
9864 | 0,554,1,447,4083, | ||
9865 | 16,0,554,1,166, | ||
9866 | 4084,16,0,554,1, | ||
9867 | 462,4085,16,0,554, | ||
9868 | 1,277,4086,16,0, | ||
9869 | 554,1,1695,4087,16, | ||
9870 | 0,554,1,1261,4088, | ||
9871 | 16,0,554,1,1153, | ||
9872 | 4089,16,0,554,1, | ||
9873 | 62,4090,16,0,585, | ||
9874 | 1,2550,4091,16,0, | ||
9875 | 554,1,2074,4092,16, | ||
9876 | 0,554,1,1335,4093, | ||
9877 | 16,0,554,1,71, | ||
9878 | 4094,16,0,554,1, | ||
9879 | 182,4095,16,0,554, | ||
9880 | 1,76,4096,16,0, | ||
9881 | 554,1,79,4097,16, | ||
9882 | 0,554,1,1933,4098, | ||
9883 | 16,0,554,1,299, | ||
9884 | 4099,16,0,554,1, | ||
9885 | 85,4100,16,0,554, | ||
9886 | 1,1515,4101,16,0, | ||
9887 | 554,1,89,4102,16, | ||
9888 | 0,554,1,1834,4103, | ||
9889 | 16,0,554,1,1622, | ||
9890 | 4104,16,0,554,1, | ||
9891 | 1990,4105,16,0,554, | ||
9892 | 1,406,4106,16,0, | ||
9893 | 554,1,1731,4107,16, | ||
9894 | 0,554,1,97,4108, | ||
9895 | 16,0,554,1,1297, | ||
9896 | 4109,16,0,554,1, | ||
9897 | 1189,4110,16,0,554, | ||
9898 | 1,102,4111,16,0, | ||
9899 | 554,1,1585,4112,16, | ||
9900 | 0,554,1,322,4113, | ||
9901 | 16,0,554,1,1958, | ||
9902 | 4114,16,0,554,1, | ||
9903 | 199,4115,16,0,554, | ||
9904 | 1,1371,4116,16,0, | ||
9905 | 554,1,217,4117,16, | ||
9906 | 0,554,1,122,4118, | ||
9907 | 19,601,1,122,4119, | ||
9908 | 5,2,1,459,4120, | ||
9909 | 16,0,599,1,41, | ||
9910 | 4121,16,0,653,1, | ||
9911 | 123,4122,19,608,1, | ||
9912 | 123,4123,5,3,1, | ||
9913 | 462,4124,16,0,606, | ||
9914 | 1,459,4125,16,0, | ||
9915 | 628,1,41,4126,16, | ||
9916 | 0,628,1,124,4127, | ||
9917 | 19,4128,4,36,69, | ||
9918 | 0,120,0,112,0, | ||
9919 | 114,0,101,0,115, | ||
9920 | 0,115,0,105,0, | ||
9921 | 111,0,110,0,65, | ||
9922 | 0,114,0,103,0, | ||
9923 | 117,0,109,0,101, | ||
9924 | 0,110,0,116,0, | ||
9925 | 1,124,4123,1,125, | ||
9926 | 4129,19,548,1,125, | ||
9927 | 4130,5,65,1,1479, | ||
9928 | 4131,16,0,546,1, | ||
9929 | 112,4132,16,0,546, | ||
9930 | 1,1804,4133,16,0, | ||
9931 | 546,1,431,4134,16, | ||
9932 | 0,546,1,1443,4135, | ||
9933 | 16,0,546,1,1756, | ||
9934 | 4136,16,0,546,1, | ||
9935 | 124,4137,16,0,546, | ||
9936 | 1,525,4138,16,0, | ||
9937 | 546,1,2197,4139,16, | ||
9938 | 0,546,1,236,4140, | ||
9939 | 16,0,546,1,346, | ||
9940 | 4141,16,0,546,1, | ||
9941 | 2309,4142,16,0,546, | ||
9942 | 1,1876,4143,16,0, | ||
9943 | 546,1,1659,4144,16, | ||
9944 | 0,546,1,1225,4145, | ||
9945 | 16,0,546,1,1117, | ||
9946 | 4146,16,0,546,1, | ||
9947 | 137,4147,16,0,546, | ||
9948 | 1,1775,4148,16,0, | ||
9949 | 546,1,32,4149,16, | ||
9950 | 0,546,1,2105,4150, | ||
9951 | 16,0,546,1,1407, | ||
9952 | 4151,16,0,546,1, | ||
9953 | 256,4152,16,0,546, | ||
9954 | 1,459,4153,16,0, | ||
9955 | 546,1,41,4154,16, | ||
9956 | 0,546,1,151,4155, | ||
9957 | 16,0,546,1,43, | ||
9958 | 4156,16,0,546,1, | ||
9959 | 1901,4157,16,0,546, | ||
9960 | 1,509,4158,16,0, | ||
9961 | 546,1,52,4159,16, | ||
9962 | 0,546,1,381,4160, | ||
9963 | 16,0,546,1,447, | ||
9964 | 4161,16,0,546,1, | ||
9965 | 166,4162,16,0,546, | ||
9966 | 1,462,4163,16,0, | ||
9967 | 546,1,277,4164,16, | ||
9968 | 0,546,1,1695,4165, | ||
9969 | 16,0,546,1,1261, | ||
9970 | 4166,16,0,546,1, | ||
9971 | 1153,4167,16,0,546, | ||
9972 | 1,62,4168,16,0, | ||
9973 | 586,1,2550,4169,16, | ||
9974 | 0,546,1,2074,4170, | ||
9975 | 16,0,546,1,1335, | ||
9976 | 4171,16,0,546,1, | ||
9977 | 71,4172,16,0,546, | ||
9978 | 1,182,4173,16,0, | ||
9979 | 546,1,76,4174,16, | ||
9980 | 0,546,1,79,4175, | ||
9981 | 16,0,546,1,1933, | ||
9982 | 4176,16,0,546,1, | ||
9983 | 299,4177,16,0,546, | ||
9984 | 1,85,4178,16,0, | ||
9985 | 546,1,1515,4179,16, | ||
9986 | 0,546,1,89,4180, | ||
9987 | 16,0,546,1,1834, | ||
9988 | 4181,16,0,546,1, | ||
9989 | 1622,4182,16,0,546, | ||
9990 | 1,1990,4183,16,0, | ||
9991 | 546,1,406,4184,16, | ||
9992 | 0,546,1,1731,4185, | ||
9993 | 16,0,546,1,97, | ||
9994 | 4186,16,0,546,1, | ||
9995 | 1297,4187,16,0,546, | ||
9996 | 1,1189,4188,16,0, | ||
9997 | 546,1,102,4189,16, | ||
9998 | 0,546,1,1585,4190, | ||
9999 | 16,0,546,1,322, | ||
10000 | 4191,16,0,546,1, | ||
10001 | 1958,4192,16,0,546, | ||
10002 | 1,199,4193,16,0, | ||
10003 | 546,1,1371,4194,16, | ||
10004 | 0,546,1,217,4195, | ||
10005 | 16,0,546,1,126, | ||
10006 | 4196,19,4197,4,28, | ||
10007 | 86,0,101,0,99, | ||
10008 | 0,116,0,111,0, | ||
10009 | 114,0,67,0,111, | ||
10010 | 0,110,0,115,0, | ||
10011 | 116,0,97,0,110, | ||
10012 | 0,116,0,1,126, | ||
10013 | 4130,1,127,4198,19, | ||
10014 | 4199,4,32,82,0, | ||
10015 | 111,0,116,0,97, | ||
10016 | 0,116,0,105,0, | ||
10017 | 111,0,110,0,67, | ||
10018 | 0,111,0,110,0, | ||
10019 | 115,0,116,0,97, | ||
10020 | 0,110,0,116,0, | ||
10021 | 1,127,4130,1,128, | ||
10022 | 4200,19,4201,4,24, | ||
10023 | 76,0,105,0,115, | ||
10024 | 0,116,0,67,0, | ||
10025 | 111,0,110,0,115, | ||
10026 | 0,116,0,97,0, | ||
10027 | 110,0,116,0,1, | ||
10028 | 128,4130,1,129,4202, | ||
10029 | 19,169,1,129,4203, | ||
10030 | 5,64,1,1479,4204, | ||
10031 | 16,0,537,1,112, | ||
10032 | 4205,16,0,247,1, | ||
10033 | 1804,4206,16,0,584, | ||
10034 | 1,431,4207,16,0, | ||
10035 | 581,1,1443,4208,16, | ||
10036 | 0,488,1,1756,4209, | ||
10037 | 16,0,660,1,124, | ||
10038 | 4210,16,0,259,1, | ||
10039 | 525,4211,16,0,366, | ||
10040 | 1,2197,4212,16,0, | ||
10041 | 584,1,236,4213,16, | ||
10042 | 0,426,1,346,4214, | ||
10043 | 16,0,500,1,2309, | ||
10044 | 4215,16,0,584,1, | ||
10045 | 1876,4216,16,0,378, | ||
10046 | 1,1659,4217,16,0, | ||
10047 | 660,1,1225,4218,16, | ||
10048 | 0,246,1,1117,4219, | ||
10049 | 16,0,218,1,137, | ||
10050 | 4220,16,0,282,1, | ||
10051 | 1775,4221,16,0,584, | ||
10052 | 1,32,4222,16,0, | ||
10053 | 584,1,2105,4223,16, | ||
10054 | 0,584,1,1407,4224, | ||
10055 | 16,0,493,1,256, | ||
10056 | 4225,16,0,442,1, | ||
10057 | 459,4226,16,0,167, | ||
10058 | 1,41,4227,16,0, | ||
10059 | 167,1,151,4228,16, | ||
10060 | 0,318,1,43,4229, | ||
10061 | 16,0,631,1,1901, | ||
10062 | 4230,16,0,584,1, | ||
10063 | 509,4231,16,0,641, | ||
10064 | 1,52,4232,16,0, | ||
10065 | 593,1,381,4233,16, | ||
10066 | 0,559,1,447,4234, | ||
10067 | 16,0,366,1,166, | ||
10068 | 4235,16,0,353,1, | ||
10069 | 462,4236,16,0,167, | ||
10070 | 1,277,4237,16,0, | ||
10071 | 451,1,1695,4238,16, | ||
10072 | 0,277,1,1261,4239, | ||
10073 | 16,0,308,1,1153, | ||
10074 | 4240,16,0,174,1, | ||
10075 | 2550,4241,16,0,569, | ||
10076 | 1,2074,4242,16,0, | ||
10077 | 584,1,1335,4243,16, | ||
10078 | 0,402,1,71,4244, | ||
10079 | 16,0,202,1,182, | ||
10080 | 4245,16,0,366,1, | ||
10081 | 76,4246,16,0,557, | ||
10082 | 1,79,4247,16,0, | ||
10083 | 217,1,1933,4248,16, | ||
10084 | 0,445,1,299,4249, | ||
10085 | 16,0,467,1,85, | ||
10086 | 4250,16,0,485,1, | ||
10087 | 1515,4251,16,0,568, | ||
10088 | 1,89,4252,16,0, | ||
10089 | 228,1,1834,4253,16, | ||
10090 | 0,346,1,1622,4254, | ||
10091 | 16,0,640,1,1990, | ||
10092 | 4255,16,0,584,1, | ||
10093 | 406,4256,16,0,570, | ||
10094 | 1,1731,4257,16,0, | ||
10095 | 248,1,97,4258,16, | ||
10096 | 0,446,1,1297,4259, | ||
10097 | 16,0,407,1,1189, | ||
10098 | 4260,16,0,216,1, | ||
10099 | 102,4261,16,0,236, | ||
10100 | 1,1585,4262,16,0, | ||
10101 | 650,1,322,4263,16, | ||
10102 | 0,486,1,1958,4264, | ||
10103 | 16,0,584,1,199, | ||
10104 | 4265,16,0,377,1, | ||
10105 | 1371,4266,16,0,443, | ||
10106 | 1,217,4267,16,0, | ||
10107 | 394,1,130,4268,19, | ||
10108 | 4269,4,36,67,0, | ||
10109 | 111,0,110,0,115, | ||
10110 | 0,116,0,97,0, | ||
10111 | 110,0,116,0,69, | ||
10112 | 0,120,0,112,0, | ||
10113 | 114,0,101,0,115, | ||
10114 | 0,115,0,105,0, | ||
10115 | 111,0,110,0,1, | ||
10116 | 130,4203,1,131,4270, | ||
10117 | 19,4271,4,30,73, | ||
10118 | 0,100,0,101,0, | ||
10119 | 110,0,116,0,69, | ||
10120 | 0,120,0,112,0, | ||
10121 | 114,0,101,0,115, | ||
10122 | 0,115,0,105,0, | ||
10123 | 111,0,110,0,1, | ||
10124 | 131,4203,1,132,4272, | ||
10125 | 19,4273,4,36,73, | ||
10126 | 0,100,0,101,0, | ||
10127 | 110,0,116,0,68, | ||
10128 | 0,111,0,116,0, | ||
10129 | 69,0,120,0,112, | ||
10130 | 0,114,0,101,0, | ||
10131 | 115,0,115,0,105, | ||
10132 | 0,111,0,110,0, | ||
10133 | 1,132,4203,1,133, | ||
10134 | 4274,19,4275,4,44, | ||
10135 | 70,0,117,0,110, | ||
10136 | 0,99,0,116,0, | ||
10137 | 105,0,111,0,110, | ||
10138 | 0,67,0,97,0, | ||
10139 | 108,0,108,0,69, | ||
10140 | 0,120,0,112,0, | ||
10141 | 114,0,101,0,115, | ||
10142 | 0,115,0,105,0, | ||
10143 | 111,0,110,0,1, | ||
10144 | 133,4203,1,134,4276, | ||
10145 | 19,4277,4,32,66, | ||
10146 | 0,105,0,110,0, | ||
10147 | 97,0,114,0,121, | ||
10148 | 0,69,0,120,0, | ||
10149 | 112,0,114,0,101, | ||
10150 | 0,115,0,115,0, | ||
10151 | 105,0,111,0,110, | ||
10152 | 0,1,134,4203,1, | ||
10153 | 135,4278,19,4279,4, | ||
10154 | 30,85,0,110,0, | ||
10155 | 97,0,114,0,121, | ||
10156 | 0,69,0,120,0, | ||
10157 | 112,0,114,0,101, | ||
10158 | 0,115,0,115,0, | ||
10159 | 105,0,111,0,110, | ||
10160 | 0,1,135,4203,1, | ||
10161 | 136,4280,19,4281,4, | ||
10162 | 36,84,0,121,0, | ||
10163 | 112,0,101,0,99, | ||
10164 | 0,97,0,115,0, | ||
10165 | 116,0,69,0,120, | ||
10166 | 0,112,0,114,0, | ||
10167 | 101,0,115,0,115, | ||
10168 | 0,105,0,111,0, | ||
10169 | 110,0,1,136,4203, | ||
10170 | 1,137,4282,19,4283, | ||
10171 | 4,42,80,0,97, | ||
10172 | 0,114,0,101,0, | ||
10173 | 110,0,116,0,104, | ||
10174 | 0,101,0,115,0, | ||
10175 | 105,0,115,0,69, | ||
10176 | 0,120,0,112,0, | ||
10177 | 114,0,101,0,115, | ||
10178 | 0,115,0,105,0, | ||
10179 | 111,0,110,0,1, | ||
10180 | 137,4203,1,138,4284, | ||
10181 | 19,4285,4,56,73, | ||
10182 | 0,110,0,99,0, | ||
10183 | 114,0,101,0,109, | ||
10184 | 0,101,0,110,0, | ||
10185 | 116,0,68,0,101, | ||
10186 | 0,99,0,114,0, | ||
10187 | 101,0,109,0,101, | ||
10188 | 0,110,0,116,0, | ||
10189 | 69,0,120,0,112, | ||
10190 | 0,114,0,101,0, | ||
10191 | 115,0,115,0,105, | ||
10192 | 0,111,0,110,0, | ||
10193 | 1,138,4203,1,140, | ||
10194 | 4286,19,682,1,140, | ||
10195 | 3797,1,141,4287,19, | ||
10196 | 693,1,141,3797,1, | ||
10197 | 142,4288,19,3112,1, | ||
10198 | 142,3800,1,143,4289, | ||
10199 | 19,3124,1,143,3800, | ||
10200 | 1,144,4290,19,3107, | ||
10201 | 1,144,3800,1,145, | ||
10202 | 4291,19,3102,1,145, | ||
10203 | 3800,1,146,4292,19, | ||
10204 | 3135,1,146,3803,1, | ||
10205 | 147,4293,19,3119,1, | ||
10206 | 147,3803,1,148,4294, | ||
10207 | 19,3130,1,148,3807, | ||
10208 | 1,149,4295,19,3140, | ||
10209 | 1,149,3807,1,150, | ||
10210 | 4296,19,676,1,150, | ||
10211 | 3811,1,151,4297,19, | ||
10212 | 671,1,151,3811,1, | ||
10213 | 152,4298,19,688,1, | ||
10214 | 152,3815,1,153,4299, | ||
10215 | 19,698,1,153,3815, | ||
10216 | 1,154,4300,19,1598, | ||
10217 | 1,154,3821,1,155, | ||
10218 | 4301,19,1593,1,155, | ||
10219 | 3821,1,156,4302,19, | ||
10220 | 1584,1,156,3825,1, | ||
10221 | 157,4303,19,1630,1, | ||
10222 | 157,3831,1,158,4304, | ||
10223 | 19,1614,1,158,3831, | ||
10224 | 1,159,4305,19,1089, | ||
10225 | 1,159,3836,1,160, | ||
10226 | 4306,19,817,1,160, | ||
10227 | 3879,1,161,4307,19, | ||
10228 | 861,1,161,3879,1, | ||
10229 | 162,4308,19,811,1, | ||
10230 | 162,3894,1,163,4309, | ||
10231 | 19,856,1,163,3894, | ||
10232 | 1,164,4310,19,881, | ||
10233 | 1,164,3897,1,165, | ||
10234 | 4311,19,765,1,165, | ||
10235 | 3897,1,166,4312,19, | ||
10236 | 790,1,166,3897,1, | ||
10237 | 167,4313,19,760,1, | ||
10238 | 167,3897,1,168,4314, | ||
10239 | 19,754,1,168,3897, | ||
10240 | 1,169,4315,19,749, | ||
10241 | 1,169,3897,1,170, | ||
10242 | 4316,19,744,1,170, | ||
10243 | 3897,1,171,4317,19, | ||
10244 | 738,1,171,3897,1, | ||
10245 | 172,4318,19,733,1, | ||
10246 | 172,3897,1,173,4319, | ||
10247 | 19,728,1,173,3897, | ||
10248 | 1,174,4320,19,723, | ||
10249 | 1,174,3897,1,175, | ||
10250 | 4321,19,718,1,175, | ||
10251 | 3897,1,176,4322,19, | ||
10252 | 1119,1,176,3964,1, | ||
10253 | 177,4323,19,1262,1, | ||
10254 | 177,3976,1,178,4324, | ||
10255 | 19,1111,1,178,3988, | ||
10256 | 1,179,4325,19,1250, | ||
10257 | 1,179,3988,1,180, | ||
10258 | 4326,19,897,1,180, | ||
10259 | 4000,1,181,4327,19, | ||
10260 | 711,1,181,4000,1, | ||
10261 | 182,4328,19,804,1, | ||
10262 | 182,4000,1,183,4329, | ||
10263 | 19,839,1,183,4000, | ||
10264 | 1,184,4330,19,867, | ||
10265 | 1,184,4012,1,185, | ||
10266 | 4331,19,889,1,185, | ||
10267 | 4012,1,186,4332,19, | ||
10268 | 824,1,186,4024,1, | ||
10269 | 187,4333,19,832,1, | ||
10270 | 187,4024,1,188,4334, | ||
10271 | 19,778,1,188,4036, | ||
10272 | 1,189,4335,19,1489, | ||
10273 | 1,189,4048,1,190, | ||
10274 | 4336,19,1125,1,190, | ||
10275 | 4048,1,191,4337,19, | ||
10276 | 1462,1,191,4048,1, | ||
10277 | 192,4338,19,1505,1, | ||
10278 | 192,4048,1,193,4339, | ||
10279 | 19,1367,1,193,3909, | ||
10280 | 1,194,4340,19,1425, | ||
10281 | 1,194,3909,1,195, | ||
10282 | 4341,19,1105,1,195, | ||
10283 | 3921,1,196,4342,19, | ||
10284 | 1537,1,196,3921,1, | ||
10285 | 197,4343,19,1457,1, | ||
10286 | 197,3921,1,198,4344, | ||
10287 | 19,1410,1,198,3921, | ||
10288 | 1,199,4345,19,1335, | ||
10289 | 1,199,3921,1,200, | ||
10290 | 4346,19,1272,1,200, | ||
10291 | 3921,1,201,4347,19, | ||
10292 | 1282,1,201,3921,1, | ||
10293 | 202,4348,19,1100,1, | ||
10294 | 202,3921,1,203,4349, | ||
10295 | 19,1521,1,203,3921, | ||
10296 | 1,204,4350,19,1452, | ||
10297 | 1,204,3921,1,205, | ||
10298 | 4351,19,1400,1,205, | ||
10299 | 3921,1,206,4352,19, | ||
10300 | 1324,1,206,3921,1, | ||
10301 | 207,4353,19,1298,1, | ||
10302 | 207,3921,1,208,4354, | ||
10303 | 19,1083,1,208,3921, | ||
10304 | 1,209,4355,19,1420, | ||
10305 | 1,209,3921,1,210, | ||
10306 | 4356,19,1441,1,210, | ||
10307 | 3921,1,211,4357,19, | ||
10308 | 1395,1,211,3921,1, | ||
10309 | 212,4358,19,1479,1, | ||
10310 | 212,3921,1,213,4359, | ||
10311 | 19,1234,1,213,3921, | ||
10312 | 1,214,4360,19,1142, | ||
10313 | 1,214,3921,1,215, | ||
10314 | 4361,19,1072,1,215, | ||
10315 | 3921,1,216,4362,19, | ||
10316 | 1495,1,216,3921,1, | ||
10317 | 217,4363,19,1436,1, | ||
10318 | 217,3921,1,218,4364, | ||
10319 | 19,1389,1,218,3921, | ||
10320 | 1,219,4365,19,1267, | ||
10321 | 1,219,3952,1,220, | ||
10322 | 4366,19,1245,1,220, | ||
10323 | 3952,1,221,4367,19, | ||
10324 | 1526,1,221,4130,1, | ||
10325 | 222,4368,19,1549,1, | ||
10326 | 222,4130,1,223,4369, | ||
10327 | 19,1516,1,223,4130, | ||
10328 | 1,224,4370,19,1511, | ||
10329 | 1,224,4130,1,225, | ||
10330 | 4371,19,1532,1,225, | ||
10331 | 4130,1,226,4372,19, | ||
10332 | 1468,1,226,4130,1, | ||
10333 | 227,4373,19,1188,1, | ||
10334 | 227,4130,1,228,4374, | ||
10335 | 19,1356,1,228,4203, | ||
10336 | 1,229,4375,19,1137, | ||
10337 | 1,229,4203,1,230, | ||
10338 | 4376,19,1155,1,230, | ||
10339 | 4203,1,231,4377,19, | ||
10340 | 1172,1,231,4203,1, | ||
10341 | 232,4378,19,1177,1, | ||
10342 | 232,4203,1,233,4379, | ||
10343 | 19,1166,1,233,4203, | ||
10344 | 1,234,4380,19,1161, | ||
10345 | 1,234,4203,1,235, | ||
10346 | 4381,19,1345,1,235, | ||
10347 | 4203,1,236,4382,19, | ||
10348 | 1373,1,236,4203,1, | ||
10349 | 237,4383,19,1378,1, | ||
10350 | 237,4203,1,238,4384, | ||
10351 | 19,1340,1,238,4203, | ||
10352 | 1,239,4385,19,1330, | ||
10353 | 1,239,4203,1,240, | ||
10354 | 4386,19,1304,1,240, | ||
10355 | 4203,1,241,4387,19, | ||
10356 | 1277,1,241,4203,1, | ||
10357 | 242,4388,19,1182,1, | ||
10358 | 242,4203,1,243,4389, | ||
10359 | 19,1147,1,243,4203, | ||
10360 | 1,244,4390,19,1095, | ||
10361 | 1,244,4203,1,245, | ||
10362 | 4391,19,1544,1,245, | ||
10363 | 4203,1,246,4392,19, | ||
10364 | 1500,1,246,4203,1, | ||
10365 | 247,4393,19,1484,1, | ||
10366 | 247,4203,1,248,4394, | ||
10367 | 19,1474,1,248,4203, | ||
10368 | 1,249,4395,19,1431, | ||
10369 | 1,249,4203,1,250, | ||
10370 | 4396,19,1405,1,250, | ||
10371 | 4203,1,251,4397,19, | ||
10372 | 1383,1,251,4203,1, | ||
10373 | 252,4398,19,1361,1, | ||
10374 | 252,4203,1,253,4399, | ||
10375 | 19,1319,1,253,4203, | ||
10376 | 1,254,4400,19,1350, | ||
10377 | 1,254,4203,1,255, | ||
10378 | 4401,19,1415,1,255, | ||
10379 | 4203,1,256,4402,19, | ||
10380 | 1447,1,256,4203,1, | ||
10381 | 257,4403,19,1239,1, | ||
10382 | 257,4203,1,258,4404, | ||
10383 | 19,1311,1,258,4203, | ||
10384 | 1,259,4405,19,1293, | ||
10385 | 1,259,4203,1,260, | ||
10386 | 4406,19,1256,1,260, | ||
10387 | 4203,1,261,4407,19, | ||
10388 | 1229,1,261,4203,1, | ||
10389 | 262,4408,19,1078,1, | ||
10390 | 262,4203,1,263,4409, | ||
10391 | 19,1559,1,263,4203, | ||
10392 | 1,264,4410,19,1194, | ||
10393 | 1,264,4203,1,265, | ||
10394 | 4411,19,1199,1,265, | ||
10395 | 4203,1,266,4412,19, | ||
10396 | 1219,1,266,4203,1, | ||
10397 | 267,4413,19,1209,1, | ||
10398 | 267,4203,1,268,4414, | ||
10399 | 19,1214,1,268,4203, | ||
10400 | 1,269,4415,19,1204, | ||
10401 | 1,269,4203,1,270, | ||
10402 | 4416,19,1554,1,270, | ||
10403 | 4203,1,271,4417,19, | ||
10404 | 1224,1,271,4203,1, | ||
10405 | 272,4418,19,1288,1, | ||
10406 | 272,4052,1,273,4419, | ||
10407 | 19,1651,1,273,4119, | ||
10408 | 1,274,4420,19,1645, | ||
10409 | 1,274,4119,1,275, | ||
10410 | 4421,19,1625,1,275, | ||
10411 | 4123,1,276,4422,19, | ||
10412 | 1938,1,276,3854,1, | ||
10413 | 277,4423,19,1933,1, | ||
10414 | 277,3854,1,278,4424, | ||
10415 | 19,1928,1,278,3854, | ||
10416 | 1,279,4425,19,1923, | ||
10417 | 1,279,3854,1,280, | ||
10418 | 4426,19,1918,1,280, | ||
10419 | 3854,1,281,4427,19, | ||
10420 | 1913,1,281,3854,1, | ||
10421 | 282,4428,19,1908,1, | ||
10422 | 282,3854,1,283,4429, | ||
10423 | 19,1840,1,283,3873, | ||
10424 | 1,284,4430,19,1835, | ||
10425 | 1,284,3873,1,285, | ||
10426 | 4431,19,1830,1,285, | ||
10427 | 3873,1,286,4432,19, | ||
10428 | 1892,1,286,3873,1, | ||
10429 | 287,4433,19,1824,1, | ||
10430 | 287,3873,1,288,4434, | ||
10431 | 19,1819,1,288,3873, | ||
10432 | 1,289,4435,19,1814, | ||
10433 | 1,289,3873,1,290, | ||
10434 | 4436,19,1809,1,290, | ||
10435 | 3873,1,291,4437,19, | ||
10436 | 1804,1,291,3873,1, | ||
10437 | 292,4438,19,1799,1, | ||
10438 | 292,3873,1,293,4439, | ||
10439 | 19,1794,1,293,3873, | ||
10440 | 1,294,4440,19,1789, | ||
10441 | 1,294,3873,1,295, | ||
10442 | 4441,19,1784,1,295, | ||
10443 | 3873,1,296,4442,19, | ||
10444 | 1779,1,296,3873,1, | ||
10445 | 297,4443,19,1774,1, | ||
10446 | 297,3873,1,298,4444, | ||
10447 | 19,1769,1,298,3873, | ||
10448 | 1,299,4445,19,1882, | ||
10449 | 1,299,3873,1,300, | ||
10450 | 4446,19,1763,1,300, | ||
10451 | 3873,1,301,4447,19, | ||
10452 | 1758,1,301,3873,1, | ||
10453 | 302,4448,19,1753,1, | ||
10454 | 302,3873,1,303,4449, | ||
10455 | 19,1748,1,303,3873, | ||
10456 | 1,304,4450,19,1743, | ||
10457 | 1,304,3873,1,305, | ||
10458 | 4451,19,1875,1,305, | ||
10459 | 3873,1,306,4452,19, | ||
10460 | 1737,1,306,3873,1, | ||
10461 | 307,4453,19,1870,1, | ||
10462 | 307,3873,1,308,4454, | ||
10463 | 19,1732,1,308,3873, | ||
10464 | 1,309,4455,19,1727, | ||
10465 | 1,309,3873,1,310, | ||
10466 | 4456,19,1670,1,310, | ||
10467 | 3873,1,311,4457,19, | ||
10468 | 1864,1,311,3873,1, | ||
10469 | 312,4458,19,1720,1, | ||
10470 | 312,3873,1,313,4459, | ||
10471 | 19,1715,1,313,3873, | ||
10472 | 1,314,4460,19,1710, | ||
10473 | 1,314,3873,1,315, | ||
10474 | 4461,19,1705,1,315, | ||
10475 | 3873,1,316,4462,19, | ||
10476 | 4463,4,50,65,0, | ||
10477 | 114,0,103,0,117, | ||
10478 | 0,109,0,101,0, | ||
10479 | 110,0,116,0,68, | ||
10480 | 0,101,0,99,0, | ||
10481 | 108,0,97,0,114, | ||
10482 | 0,97,0,116,0, | ||
10483 | 105,0,111,0,110, | ||
10484 | 0,76,0,105,0, | ||
10485 | 115,0,116,0,95, | ||
10486 | 0,51,0,1,316, | ||
10487 | 3831,1,317,4464,19, | ||
10488 | 4465,4,28,65,0, | ||
10489 | 114,0,103,0,117, | ||
10490 | 0,109,0,101,0, | ||
10491 | 110,0,116,0,76, | ||
10492 | 0,105,0,115,0, | ||
10493 | 116,0,95,0,51, | ||
10494 | 0,1,317,4119,1, | ||
10495 | 318,4466,19,4467,4, | ||
10496 | 50,65,0,114,0, | ||
10497 | 103,0,117,0,109, | ||
10498 | 0,101,0,110,0, | ||
10499 | 116,0,68,0,101, | ||
10500 | 0,99,0,108,0, | ||
10501 | 97,0,114,0,97, | ||
10502 | 0,116,0,105,0, | ||
10503 | 111,0,110,0,76, | ||
10504 | 0,105,0,115,0, | ||
10505 | 116,0,95,0,52, | ||
10506 | 0,1,318,3831,1, | ||
10507 | 319,4468,19,4469,4, | ||
10508 | 50,65,0,114,0, | ||
10509 | 103,0,117,0,109, | ||
10510 | 0,101,0,110,0, | ||
10511 | 116,0,68,0,101, | ||
10512 | 0,99,0,108,0, | ||
10513 | 97,0,114,0,97, | ||
10514 | 0,116,0,105,0, | ||
10515 | 111,0,110,0,76, | ||
10516 | 0,105,0,115,0, | ||
10517 | 116,0,95,0,53, | ||
10518 | 0,1,319,3831,1, | ||
10519 | 320,4470,19,4471,4, | ||
10520 | 24,83,0,116,0, | ||
10521 | 97,0,116,0,101, | ||
10522 | 0,109,0,101,0, | ||
10523 | 110,0,116,0,95, | ||
10524 | 0,49,0,51,0, | ||
10525 | 1,320,3897,1,321, | ||
10526 | 4472,19,4473,4,28, | ||
10527 | 65,0,114,0,103, | ||
10528 | 0,117,0,109,0, | ||
10529 | 101,0,110,0,116, | ||
10530 | 0,76,0,105,0, | ||
10531 | 115,0,116,0,95, | ||
10532 | 0,52,0,1,321, | ||
10533 | 4119,2,0,0}; | ||
10534 | new Sfactory(this,"ExpressionArgument_1",new SCreator(ExpressionArgument_1_factory)); | ||
10535 | new Sfactory(this,"SimpleAssignment_8",new SCreator(SimpleAssignment_8_factory)); | ||
10536 | new Sfactory(this,"StatementList_1",new SCreator(StatementList_1_factory)); | ||
10537 | new Sfactory(this,"StateChange_1",new SCreator(StateChange_1_factory)); | ||
10538 | new Sfactory(this,"StateChange_2",new SCreator(StateChange_2_factory)); | ||
10539 | new Sfactory(this,"Declaration",new SCreator(Declaration_factory)); | ||
10540 | new Sfactory(this,"IdentExpression",new SCreator(IdentExpression_factory)); | ||
10541 | new Sfactory(this,"error",new SCreator(error_factory)); | ||
10542 | new Sfactory(this,"BinaryExpression_2",new SCreator(BinaryExpression_2_factory)); | ||
10543 | new Sfactory(this,"BinaryExpression_3",new SCreator(BinaryExpression_3_factory)); | ||
10544 | new Sfactory(this,"BinaryExpression_4",new SCreator(BinaryExpression_4_factory)); | ||
10545 | new Sfactory(this,"BinaryExpression_5",new SCreator(BinaryExpression_5_factory)); | ||
10546 | new Sfactory(this,"ReturnStatement_2",new SCreator(ReturnStatement_2_factory)); | ||
10547 | new Sfactory(this,"SimpleAssignment_19",new SCreator(SimpleAssignment_19_factory)); | ||
10548 | new Sfactory(this,"BinaryExpression_9",new SCreator(BinaryExpression_9_factory)); | ||
10549 | new Sfactory(this,"VectorConstant_1",new SCreator(VectorConstant_1_factory)); | ||
10550 | new Sfactory(this,"ParenthesisExpression",new SCreator(ParenthesisExpression_factory)); | ||
10551 | new Sfactory(this,"UnaryExpression",new SCreator(UnaryExpression_factory)); | ||
10552 | new Sfactory(this,"IdentDotExpression_1",new SCreator(IdentDotExpression_1_factory)); | ||
10553 | new Sfactory(this,"ArgumentList_4",new SCreator(ArgumentList_4_factory)); | ||
10554 | new Sfactory(this,"Typename",new SCreator(Typename_factory)); | ||
10555 | new Sfactory(this,"IfStatement_1",new SCreator(IfStatement_1_factory)); | ||
10556 | new Sfactory(this,"Assignment",new SCreator(Assignment_factory)); | ||
10557 | new Sfactory(this,"CompoundStatement_1",new SCreator(CompoundStatement_1_factory)); | ||
10558 | new Sfactory(this,"CompoundStatement_2",new SCreator(CompoundStatement_2_factory)); | ||
10559 | new Sfactory(this,"ReturnStatement_1",new SCreator(ReturnStatement_1_factory)); | ||
10560 | new Sfactory(this,"IdentDotExpression",new SCreator(IdentDotExpression_factory)); | ||
10561 | new Sfactory(this,"Argument",new SCreator(Argument_factory)); | ||
10562 | new Sfactory(this,"State_2",new SCreator(State_2_factory)); | ||
10563 | new Sfactory(this,"WhileStatement_1",new SCreator(WhileStatement_1_factory)); | ||
10564 | new Sfactory(this,"GlobalDefinitions_3",new SCreator(GlobalDefinitions_3_factory)); | ||
10565 | new Sfactory(this,"GlobalDefinitions_4",new SCreator(GlobalDefinitions_4_factory)); | ||
10566 | new Sfactory(this,"Event_1",new SCreator(Event_1_factory)); | ||
10567 | new Sfactory(this,"ListConstant",new SCreator(ListConstant_factory)); | ||
10568 | new Sfactory(this,"Event_3",new SCreator(Event_3_factory)); | ||
10569 | new Sfactory(this,"Event_4",new SCreator(Event_4_factory)); | ||
10570 | new Sfactory(this,"Event_5",new SCreator(Event_5_factory)); | ||
10571 | new Sfactory(this,"SimpleAssignment_5",new SCreator(SimpleAssignment_5_factory)); | ||
10572 | new Sfactory(this,"Typename_1",new SCreator(Typename_1_factory)); | ||
10573 | new Sfactory(this,"Typename_2",new SCreator(Typename_2_factory)); | ||
10574 | new Sfactory(this,"Typename_3",new SCreator(Typename_3_factory)); | ||
10575 | new Sfactory(this,"Typename_4",new SCreator(Typename_4_factory)); | ||
10576 | new Sfactory(this,"Typename_5",new SCreator(Typename_5_factory)); | ||
10577 | new Sfactory(this,"Typename_6",new SCreator(Typename_6_factory)); | ||
10578 | new Sfactory(this,"Typename_7",new SCreator(Typename_7_factory)); | ||
10579 | new Sfactory(this,"ArgumentDeclarationList",new SCreator(ArgumentDeclarationList_factory)); | ||
10580 | new Sfactory(this,"ConstantExpression",new SCreator(ConstantExpression_factory)); | ||
10581 | new Sfactory(this,"LSLProgramRoot_1",new SCreator(LSLProgramRoot_1_factory)); | ||
10582 | new Sfactory(this,"LSLProgramRoot_2",new SCreator(LSLProgramRoot_2_factory)); | ||
10583 | new Sfactory(this,"States_1",new SCreator(States_1_factory)); | ||
10584 | new Sfactory(this,"States_2",new SCreator(States_2_factory)); | ||
10585 | new Sfactory(this,"FunctionCallExpression_1",new SCreator(FunctionCallExpression_1_factory)); | ||
10586 | new Sfactory(this,"ForLoopStatement",new SCreator(ForLoopStatement_factory)); | ||
10587 | new Sfactory(this,"DoWhileStatement_1",new SCreator(DoWhileStatement_1_factory)); | ||
10588 | new Sfactory(this,"DoWhileStatement_2",new SCreator(DoWhileStatement_2_factory)); | ||
10589 | new Sfactory(this,"ForLoopStatement_4",new SCreator(ForLoopStatement_4_factory)); | ||
10590 | new Sfactory(this,"SimpleAssignment_11",new SCreator(SimpleAssignment_11_factory)); | ||
10591 | new Sfactory(this,"SimpleAssignment_12",new SCreator(SimpleAssignment_12_factory)); | ||
10592 | new Sfactory(this,"SimpleAssignment_13",new SCreator(SimpleAssignment_13_factory)); | ||
10593 | new Sfactory(this,"JumpLabel",new SCreator(JumpLabel_factory)); | ||
10594 | new Sfactory(this,"SimpleAssignment_15",new SCreator(SimpleAssignment_15_factory)); | ||
10595 | new Sfactory(this,"SimpleAssignment_17",new SCreator(SimpleAssignment_17_factory)); | ||
10596 | new Sfactory(this,"SimpleAssignment_18",new SCreator(SimpleAssignment_18_factory)); | ||
10597 | new Sfactory(this,"JumpStatement_1",new SCreator(JumpStatement_1_factory)); | ||
10598 | new Sfactory(this,"GlobalDefinitions",new SCreator(GlobalDefinitions_factory)); | ||
10599 | new Sfactory(this,"FunctionCall_1",new SCreator(FunctionCall_1_factory)); | ||
10600 | new Sfactory(this,"ArgumentList_3",new SCreator(ArgumentList_3_factory)); | ||
10601 | new Sfactory(this,"Assignment_2",new SCreator(Assignment_2_factory)); | ||
10602 | new Sfactory(this,"TypecastExpression_1",new SCreator(TypecastExpression_1_factory)); | ||
10603 | new Sfactory(this,"SimpleAssignment_21",new SCreator(SimpleAssignment_21_factory)); | ||
10604 | new Sfactory(this,"SimpleAssignment_22",new SCreator(SimpleAssignment_22_factory)); | ||
10605 | new Sfactory(this,"SimpleAssignment_23",new SCreator(SimpleAssignment_23_factory)); | ||
10606 | new Sfactory(this,"TypecastExpression_9",new SCreator(TypecastExpression_9_factory)); | ||
10607 | new Sfactory(this,"ArgumentDeclarationList_1",new SCreator(ArgumentDeclarationList_1_factory)); | ||
10608 | new Sfactory(this,"ArgumentDeclarationList_2",new SCreator(ArgumentDeclarationList_2_factory)); | ||
10609 | new Sfactory(this,"ArgumentDeclarationList_3",new SCreator(ArgumentDeclarationList_3_factory)); | ||
10610 | new Sfactory(this,"GlobalDefinitions_1",new SCreator(GlobalDefinitions_1_factory)); | ||
10611 | new Sfactory(this,"GlobalDefinitions_2",new SCreator(GlobalDefinitions_2_factory)); | ||
10612 | new Sfactory(this,"IncrementDecrementExpression",new SCreator(IncrementDecrementExpression_factory)); | ||
10613 | new Sfactory(this,"GlobalVariableDeclaration",new SCreator(GlobalVariableDeclaration_factory)); | ||
10614 | new Sfactory(this,"Event_11",new SCreator(Event_11_factory)); | ||
10615 | new Sfactory(this,"TypecastExpression_2",new SCreator(TypecastExpression_2_factory)); | ||
10616 | new Sfactory(this,"TypecastExpression_3",new SCreator(TypecastExpression_3_factory)); | ||
10617 | new Sfactory(this,"TypecastExpression_5",new SCreator(TypecastExpression_5_factory)); | ||
10618 | new Sfactory(this,"TypecastExpression_8",new SCreator(TypecastExpression_8_factory)); | ||
10619 | new Sfactory(this,"Constant_1",new SCreator(Constant_1_factory)); | ||
10620 | new Sfactory(this,"Expression",new SCreator(Expression_factory)); | ||
10621 | new Sfactory(this,"Constant_3",new SCreator(Constant_3_factory)); | ||
10622 | new Sfactory(this,"Constant_4",new SCreator(Constant_4_factory)); | ||
10623 | new Sfactory(this,"BinaryExpression_1",new SCreator(BinaryExpression_1_factory)); | ||
10624 | new Sfactory(this,"IfStatement_2",new SCreator(IfStatement_2_factory)); | ||
10625 | new Sfactory(this,"IfStatement_3",new SCreator(IfStatement_3_factory)); | ||
10626 | new Sfactory(this,"IfStatement_4",new SCreator(IfStatement_4_factory)); | ||
10627 | new Sfactory(this,"ReturnStatement",new SCreator(ReturnStatement_factory)); | ||
10628 | new Sfactory(this,"Event_2",new SCreator(Event_2_factory)); | ||
10629 | new Sfactory(this,"RotationConstant",new SCreator(RotationConstant_factory)); | ||
10630 | new Sfactory(this,"Statement_12",new SCreator(Statement_12_factory)); | ||
10631 | new Sfactory(this,"Statement_13",new SCreator(Statement_13_factory)); | ||
10632 | new Sfactory(this,"UnaryExpression_1",new SCreator(UnaryExpression_1_factory)); | ||
10633 | new Sfactory(this,"UnaryExpression_2",new SCreator(UnaryExpression_2_factory)); | ||
10634 | new Sfactory(this,"UnaryExpression_3",new SCreator(UnaryExpression_3_factory)); | ||
10635 | new Sfactory(this,"ArgumentList_1",new SCreator(ArgumentList_1_factory)); | ||
10636 | new Sfactory(this,"ArgumentList_2",new SCreator(ArgumentList_2_factory)); | ||
10637 | new Sfactory(this,"Constant",new SCreator(Constant_factory)); | ||
10638 | new Sfactory(this,"State",new SCreator(State_factory)); | ||
10639 | new Sfactory(this,"Event_13",new SCreator(Event_13_factory)); | ||
10640 | new Sfactory(this,"LSLProgramRoot",new SCreator(LSLProgramRoot_factory)); | ||
10641 | new Sfactory(this,"StateChange",new SCreator(StateChange_factory)); | ||
10642 | new Sfactory(this,"IncrementDecrementExpression_2",new SCreator(IncrementDecrementExpression_2_factory)); | ||
10643 | new Sfactory(this,"GlobalVariableDeclaration_1",new SCreator(GlobalVariableDeclaration_1_factory)); | ||
10644 | new Sfactory(this,"GlobalVariableDeclaration_2",new SCreator(GlobalVariableDeclaration_2_factory)); | ||
10645 | new Sfactory(this,"IncrementDecrementExpression_5",new SCreator(IncrementDecrementExpression_5_factory)); | ||
10646 | new Sfactory(this,"GlobalFunctionDefinition_2",new SCreator(GlobalFunctionDefinition_2_factory)); | ||
10647 | new Sfactory(this,"IncrementDecrementExpression_7",new SCreator(IncrementDecrementExpression_7_factory)); | ||
10648 | new Sfactory(this,"IncrementDecrementExpression_8",new SCreator(IncrementDecrementExpression_8_factory)); | ||
10649 | new Sfactory(this,"Assignment_1",new SCreator(Assignment_1_factory)); | ||
10650 | new Sfactory(this,"Event_21",new SCreator(Event_21_factory)); | ||
10651 | new Sfactory(this,"Event_22",new SCreator(Event_22_factory)); | ||
10652 | new Sfactory(this,"CompoundStatement",new SCreator(CompoundStatement_factory)); | ||
10653 | new Sfactory(this,"RotationConstant_1",new SCreator(RotationConstant_1_factory)); | ||
10654 | new Sfactory(this,"SimpleAssignment_3",new SCreator(SimpleAssignment_3_factory)); | ||
10655 | new Sfactory(this,"SimpleAssignment_4",new SCreator(SimpleAssignment_4_factory)); | ||
10656 | new Sfactory(this,"Statement_1",new SCreator(Statement_1_factory)); | ||
10657 | new Sfactory(this,"Statement_2",new SCreator(Statement_2_factory)); | ||
10658 | new Sfactory(this,"Statement_3",new SCreator(Statement_3_factory)); | ||
10659 | new Sfactory(this,"Statement_4",new SCreator(Statement_4_factory)); | ||
10660 | new Sfactory(this,"Statement_5",new SCreator(Statement_5_factory)); | ||
10661 | new Sfactory(this,"Statement_6",new SCreator(Statement_6_factory)); | ||
10662 | new Sfactory(this,"Statement_7",new SCreator(Statement_7_factory)); | ||
10663 | new Sfactory(this,"Statement_8",new SCreator(Statement_8_factory)); | ||
10664 | new Sfactory(this,"Statement_9",new SCreator(Statement_9_factory)); | ||
10665 | new Sfactory(this,"ExpressionArgument",new SCreator(ExpressionArgument_factory)); | ||
10666 | new Sfactory(this,"GlobalFunctionDefinition",new SCreator(GlobalFunctionDefinition_factory)); | ||
10667 | new Sfactory(this,"State_1",new SCreator(State_1_factory)); | ||
10668 | new Sfactory(this,"DoWhileStatement",new SCreator(DoWhileStatement_factory)); | ||
10669 | new Sfactory(this,"ParenthesisExpression_1",new SCreator(ParenthesisExpression_1_factory)); | ||
10670 | new Sfactory(this,"ParenthesisExpression_2",new SCreator(ParenthesisExpression_2_factory)); | ||
10671 | new Sfactory(this,"StateBody",new SCreator(StateBody_factory)); | ||
10672 | new Sfactory(this,"Event_7",new SCreator(Event_7_factory)); | ||
10673 | new Sfactory(this,"Event_8",new SCreator(Event_8_factory)); | ||
10674 | new Sfactory(this,"IncrementDecrementExpression_1",new SCreator(IncrementDecrementExpression_1_factory)); | ||
10675 | new Sfactory(this,"IncrementDecrementExpression_3",new SCreator(IncrementDecrementExpression_3_factory)); | ||
10676 | new Sfactory(this,"IncrementDecrementExpression_4",new SCreator(IncrementDecrementExpression_4_factory)); | ||
10677 | new Sfactory(this,"IncrementDecrementExpression_6",new SCreator(IncrementDecrementExpression_6_factory)); | ||
10678 | new Sfactory(this,"StateEvent",new SCreator(StateEvent_factory)); | ||
10679 | new Sfactory(this,"Event_20",new SCreator(Event_20_factory)); | ||
10680 | new Sfactory(this,"Event_23",new SCreator(Event_23_factory)); | ||
10681 | new Sfactory(this,"Event_24",new SCreator(Event_24_factory)); | ||
10682 | new Sfactory(this,"Event_26",new SCreator(Event_26_factory)); | ||
10683 | new Sfactory(this,"SimpleAssignment_10",new SCreator(SimpleAssignment_10_factory)); | ||
10684 | new Sfactory(this,"Event",new SCreator(Event_factory)); | ||
10685 | new Sfactory(this,"SimpleAssignment_14",new SCreator(SimpleAssignment_14_factory)); | ||
10686 | new Sfactory(this,"SimpleAssignment_16",new SCreator(SimpleAssignment_16_factory)); | ||
10687 | new Sfactory(this,"Statement_10",new SCreator(Statement_10_factory)); | ||
10688 | new Sfactory(this,"Statement_11",new SCreator(Statement_11_factory)); | ||
10689 | new Sfactory(this,"SimpleAssignment",new SCreator(SimpleAssignment_factory)); | ||
10690 | new Sfactory(this,"TypecastExpression",new SCreator(TypecastExpression_factory)); | ||
10691 | new Sfactory(this,"Event_15",new SCreator(Event_15_factory)); | ||
10692 | new Sfactory(this,"Event_16",new SCreator(Event_16_factory)); | ||
10693 | new Sfactory(this,"Event_32",new SCreator(Event_32_factory)); | ||
10694 | new Sfactory(this,"SimpleAssignment_20",new SCreator(SimpleAssignment_20_factory)); | ||
10695 | new Sfactory(this,"SimpleAssignment_24",new SCreator(SimpleAssignment_24_factory)); | ||
10696 | new Sfactory(this,"SimpleAssignment_1",new SCreator(SimpleAssignment_1_factory)); | ||
10697 | new Sfactory(this,"SimpleAssignment_2",new SCreator(SimpleAssignment_2_factory)); | ||
10698 | new Sfactory(this,"BinaryExpression",new SCreator(BinaryExpression_factory)); | ||
10699 | new Sfactory(this,"FunctionCallExpression",new SCreator(FunctionCallExpression_factory)); | ||
10700 | new Sfactory(this,"SimpleAssignment_6",new SCreator(SimpleAssignment_6_factory)); | ||
10701 | new Sfactory(this,"StateBody_1",new SCreator(StateBody_1_factory)); | ||
10702 | new Sfactory(this,"StatementList_2",new SCreator(StatementList_2_factory)); | ||
10703 | new Sfactory(this,"SimpleAssignment_9",new SCreator(SimpleAssignment_9_factory)); | ||
10704 | new Sfactory(this,"BinaryExpression_15",new SCreator(BinaryExpression_15_factory)); | ||
10705 | new Sfactory(this,"BinaryExpression_16",new SCreator(BinaryExpression_16_factory)); | ||
10706 | new Sfactory(this,"BinaryExpression_17",new SCreator(BinaryExpression_17_factory)); | ||
10707 | new Sfactory(this,"BinaryExpression_18",new SCreator(BinaryExpression_18_factory)); | ||
10708 | new Sfactory(this,"Event_25",new SCreator(Event_25_factory)); | ||
10709 | new Sfactory(this,"Event_9",new SCreator(Event_9_factory)); | ||
10710 | new Sfactory(this,"Statement",new SCreator(Statement_factory)); | ||
10711 | new Sfactory(this,"JumpStatement",new SCreator(JumpStatement_factory)); | ||
10712 | new Sfactory(this,"BinaryExpression_11",new SCreator(BinaryExpression_11_factory)); | ||
10713 | new Sfactory(this,"BinaryExpression_12",new SCreator(BinaryExpression_12_factory)); | ||
10714 | new Sfactory(this,"BinaryExpression_13",new SCreator(BinaryExpression_13_factory)); | ||
10715 | new Sfactory(this,"BinaryExpression_14",new SCreator(BinaryExpression_14_factory)); | ||
10716 | new Sfactory(this,"BinaryExpression_6",new SCreator(BinaryExpression_6_factory)); | ||
10717 | new Sfactory(this,"BinaryExpression_7",new SCreator(BinaryExpression_7_factory)); | ||
10718 | new Sfactory(this,"BinaryExpression_8",new SCreator(BinaryExpression_8_factory)); | ||
10719 | new Sfactory(this,"ArgumentList",new SCreator(ArgumentList_factory)); | ||
10720 | new Sfactory(this,"Event_10",new SCreator(Event_10_factory)); | ||
10721 | new Sfactory(this,"ConstantExpression_1",new SCreator(ConstantExpression_1_factory)); | ||
10722 | new Sfactory(this,"Event_12",new SCreator(Event_12_factory)); | ||
10723 | new Sfactory(this,"Event_14",new SCreator(Event_14_factory)); | ||
10724 | new Sfactory(this,"Event_17",new SCreator(Event_17_factory)); | ||
10725 | new Sfactory(this,"Event_18",new SCreator(Event_18_factory)); | ||
10726 | new Sfactory(this,"Event_19",new SCreator(Event_19_factory)); | ||
10727 | new Sfactory(this,"BinaryExpression_10",new SCreator(BinaryExpression_10_factory)); | ||
10728 | new Sfactory(this,"StateEvent_1",new SCreator(StateEvent_1_factory)); | ||
10729 | new Sfactory(this,"VectorConstant",new SCreator(VectorConstant_factory)); | ||
10730 | new Sfactory(this,"TypecastExpression_4",new SCreator(TypecastExpression_4_factory)); | ||
10731 | new Sfactory(this,"TypecastExpression_6",new SCreator(TypecastExpression_6_factory)); | ||
10732 | new Sfactory(this,"TypecastExpression_7",new SCreator(TypecastExpression_7_factory)); | ||
10733 | new Sfactory(this,"FunctionCall",new SCreator(FunctionCall_factory)); | ||
10734 | new Sfactory(this,"Event_27",new SCreator(Event_27_factory)); | ||
10735 | new Sfactory(this,"Event_28",new SCreator(Event_28_factory)); | ||
10736 | new Sfactory(this,"Event_29",new SCreator(Event_29_factory)); | ||
10737 | new Sfactory(this,"ListConstant_1",new SCreator(ListConstant_1_factory)); | ||
10738 | new Sfactory(this,"Event_6",new SCreator(Event_6_factory)); | ||
10739 | new Sfactory(this,"Declaration_1",new SCreator(Declaration_1_factory)); | ||
10740 | new Sfactory(this,"SimpleAssignment_7",new SCreator(SimpleAssignment_7_factory)); | ||
10741 | new Sfactory(this,"ForLoop",new SCreator(ForLoop_factory)); | ||
10742 | new Sfactory(this,"Event_30",new SCreator(Event_30_factory)); | ||
10743 | new Sfactory(this,"Event_31",new SCreator(Event_31_factory)); | ||
10744 | new Sfactory(this,"Event_33",new SCreator(Event_33_factory)); | ||
10745 | new Sfactory(this,"GlobalFunctionDefinition_1",new SCreator(GlobalFunctionDefinition_1_factory)); | ||
10746 | new Sfactory(this,"JumpLabel_1",new SCreator(JumpLabel_1_factory)); | ||
10747 | new Sfactory(this,"IfStatement",new SCreator(IfStatement_factory)); | ||
10748 | new Sfactory(this,"ForLoopStatement_1",new SCreator(ForLoopStatement_1_factory)); | ||
10749 | new Sfactory(this,"ForLoopStatement_2",new SCreator(ForLoopStatement_2_factory)); | ||
10750 | new Sfactory(this,"ForLoopStatement_3",new SCreator(ForLoopStatement_3_factory)); | ||
10751 | new Sfactory(this,"ArgumentDeclarationList_4",new SCreator(ArgumentDeclarationList_4_factory)); | ||
10752 | new Sfactory(this,"ArgumentDeclarationList_5",new SCreator(ArgumentDeclarationList_5_factory)); | ||
10753 | new Sfactory(this,"WhileStatement",new SCreator(WhileStatement_factory)); | ||
10754 | new Sfactory(this,"ForLoop_1",new SCreator(ForLoop_1_factory)); | ||
10755 | new Sfactory(this,"Constant_2",new SCreator(Constant_2_factory)); | ||
10756 | new Sfactory(this,"StatementList",new SCreator(StatementList_factory)); | ||
10757 | new Sfactory(this,"StateBody_2",new SCreator(StateBody_2_factory)); | ||
10758 | new Sfactory(this,"WhileStatement_2",new SCreator(WhileStatement_2_factory)); | ||
10759 | new Sfactory(this,"IdentExpression_1",new SCreator(IdentExpression_1_factory)); | ||
10760 | new Sfactory(this,"States",new SCreator(States_factory)); | ||
10761 | } | ||
10762 | public static object ExpressionArgument_1_factory(Parser yyp) { return new ExpressionArgument_1(yyp); } | ||
10763 | public static object SimpleAssignment_8_factory(Parser yyp) { return new SimpleAssignment_8(yyp); } | ||
10764 | public static object StatementList_1_factory(Parser yyp) { return new StatementList_1(yyp); } | ||
10765 | public static object StateChange_1_factory(Parser yyp) { return new StateChange_1(yyp); } | ||
10766 | public static object StateChange_2_factory(Parser yyp) { return new StateChange_2(yyp); } | ||
10767 | public static object Declaration_factory(Parser yyp) { return new Declaration(yyp); } | ||
10768 | public static object IdentExpression_factory(Parser yyp) { return new IdentExpression(yyp); } | ||
10769 | public static object error_factory(Parser yyp) { return new error(yyp); } | ||
10770 | public static object BinaryExpression_2_factory(Parser yyp) { return new BinaryExpression_2(yyp); } | ||
10771 | public static object BinaryExpression_3_factory(Parser yyp) { return new BinaryExpression_3(yyp); } | ||
10772 | public static object BinaryExpression_4_factory(Parser yyp) { return new BinaryExpression_4(yyp); } | ||
10773 | public static object BinaryExpression_5_factory(Parser yyp) { return new BinaryExpression_5(yyp); } | ||
10774 | public static object ReturnStatement_2_factory(Parser yyp) { return new ReturnStatement_2(yyp); } | ||
10775 | public static object SimpleAssignment_19_factory(Parser yyp) { return new SimpleAssignment_19(yyp); } | ||
10776 | public static object BinaryExpression_9_factory(Parser yyp) { return new BinaryExpression_9(yyp); } | ||
10777 | public static object VectorConstant_1_factory(Parser yyp) { return new VectorConstant_1(yyp); } | ||
10778 | public static object ParenthesisExpression_factory(Parser yyp) { return new ParenthesisExpression(yyp); } | ||
10779 | public static object UnaryExpression_factory(Parser yyp) { return new UnaryExpression(yyp); } | ||
10780 | public static object IdentDotExpression_1_factory(Parser yyp) { return new IdentDotExpression_1(yyp); } | ||
10781 | public static object ArgumentList_4_factory(Parser yyp) { return new ArgumentList_4(yyp); } | ||
10782 | public static object Typename_factory(Parser yyp) { return new Typename(yyp); } | ||
10783 | public static object IfStatement_1_factory(Parser yyp) { return new IfStatement_1(yyp); } | ||
10784 | public static object Assignment_factory(Parser yyp) { return new Assignment(yyp); } | ||
10785 | public static object CompoundStatement_1_factory(Parser yyp) { return new CompoundStatement_1(yyp); } | ||
10786 | public static object CompoundStatement_2_factory(Parser yyp) { return new CompoundStatement_2(yyp); } | ||
10787 | public static object ReturnStatement_1_factory(Parser yyp) { return new ReturnStatement_1(yyp); } | ||
10788 | public static object IdentDotExpression_factory(Parser yyp) { return new IdentDotExpression(yyp); } | ||
10789 | public static object Argument_factory(Parser yyp) { return new Argument(yyp); } | ||
10790 | public static object State_2_factory(Parser yyp) { return new State_2(yyp); } | ||
10791 | public static object WhileStatement_1_factory(Parser yyp) { return new WhileStatement_1(yyp); } | ||
10792 | public static object GlobalDefinitions_3_factory(Parser yyp) { return new GlobalDefinitions_3(yyp); } | ||
10793 | public static object GlobalDefinitions_4_factory(Parser yyp) { return new GlobalDefinitions_4(yyp); } | ||
10794 | public static object Event_1_factory(Parser yyp) { return new Event_1(yyp); } | ||
10795 | public static object ListConstant_factory(Parser yyp) { return new ListConstant(yyp); } | ||
10796 | public static object Event_3_factory(Parser yyp) { return new Event_3(yyp); } | ||
10797 | public static object Event_4_factory(Parser yyp) { return new Event_4(yyp); } | ||
10798 | public static object Event_5_factory(Parser yyp) { return new Event_5(yyp); } | ||
10799 | public static object SimpleAssignment_5_factory(Parser yyp) { return new SimpleAssignment_5(yyp); } | ||
10800 | public static object Typename_1_factory(Parser yyp) { return new Typename_1(yyp); } | ||
10801 | public static object Typename_2_factory(Parser yyp) { return new Typename_2(yyp); } | ||
10802 | public static object Typename_3_factory(Parser yyp) { return new Typename_3(yyp); } | ||
10803 | public static object Typename_4_factory(Parser yyp) { return new Typename_4(yyp); } | ||
10804 | public static object Typename_5_factory(Parser yyp) { return new Typename_5(yyp); } | ||
10805 | public static object Typename_6_factory(Parser yyp) { return new Typename_6(yyp); } | ||
10806 | public static object Typename_7_factory(Parser yyp) { return new Typename_7(yyp); } | ||
10807 | public static object ArgumentDeclarationList_factory(Parser yyp) { return new ArgumentDeclarationList(yyp); } | ||
10808 | public static object ConstantExpression_factory(Parser yyp) { return new ConstantExpression(yyp); } | ||
10809 | public static object LSLProgramRoot_1_factory(Parser yyp) { return new LSLProgramRoot_1(yyp); } | ||
10810 | public static object LSLProgramRoot_2_factory(Parser yyp) { return new LSLProgramRoot_2(yyp); } | ||
10811 | public static object States_1_factory(Parser yyp) { return new States_1(yyp); } | ||
10812 | public static object States_2_factory(Parser yyp) { return new States_2(yyp); } | ||
10813 | public static object FunctionCallExpression_1_factory(Parser yyp) { return new FunctionCallExpression_1(yyp); } | ||
10814 | public static object ForLoopStatement_factory(Parser yyp) { return new ForLoopStatement(yyp); } | ||
10815 | public static object DoWhileStatement_1_factory(Parser yyp) { return new DoWhileStatement_1(yyp); } | ||
10816 | public static object DoWhileStatement_2_factory(Parser yyp) { return new DoWhileStatement_2(yyp); } | ||
10817 | public static object ForLoopStatement_4_factory(Parser yyp) { return new ForLoopStatement_4(yyp); } | ||
10818 | public static object SimpleAssignment_11_factory(Parser yyp) { return new SimpleAssignment_11(yyp); } | ||
10819 | public static object SimpleAssignment_12_factory(Parser yyp) { return new SimpleAssignment_12(yyp); } | ||
10820 | public static object SimpleAssignment_13_factory(Parser yyp) { return new SimpleAssignment_13(yyp); } | ||
10821 | public static object JumpLabel_factory(Parser yyp) { return new JumpLabel(yyp); } | ||
10822 | public static object SimpleAssignment_15_factory(Parser yyp) { return new SimpleAssignment_15(yyp); } | ||
10823 | public static object SimpleAssignment_17_factory(Parser yyp) { return new SimpleAssignment_17(yyp); } | ||
10824 | public static object SimpleAssignment_18_factory(Parser yyp) { return new SimpleAssignment_18(yyp); } | ||
10825 | public static object JumpStatement_1_factory(Parser yyp) { return new JumpStatement_1(yyp); } | ||
10826 | public static object GlobalDefinitions_factory(Parser yyp) { return new GlobalDefinitions(yyp); } | ||
10827 | public static object FunctionCall_1_factory(Parser yyp) { return new FunctionCall_1(yyp); } | ||
10828 | public static object ArgumentList_3_factory(Parser yyp) { return new ArgumentList_3(yyp); } | ||
10829 | public static object Assignment_2_factory(Parser yyp) { return new Assignment_2(yyp); } | ||
10830 | public static object TypecastExpression_1_factory(Parser yyp) { return new TypecastExpression_1(yyp); } | ||
10831 | public static object SimpleAssignment_21_factory(Parser yyp) { return new SimpleAssignment_21(yyp); } | ||
10832 | public static object SimpleAssignment_22_factory(Parser yyp) { return new SimpleAssignment_22(yyp); } | ||
10833 | public static object SimpleAssignment_23_factory(Parser yyp) { return new SimpleAssignment_23(yyp); } | ||
10834 | public static object TypecastExpression_9_factory(Parser yyp) { return new TypecastExpression_9(yyp); } | ||
10835 | public static object ArgumentDeclarationList_1_factory(Parser yyp) { return new ArgumentDeclarationList_1(yyp); } | ||
10836 | public static object ArgumentDeclarationList_2_factory(Parser yyp) { return new ArgumentDeclarationList_2(yyp); } | ||
10837 | public static object ArgumentDeclarationList_3_factory(Parser yyp) { return new ArgumentDeclarationList_3(yyp); } | ||
10838 | public static object GlobalDefinitions_1_factory(Parser yyp) { return new GlobalDefinitions_1(yyp); } | ||
10839 | public static object GlobalDefinitions_2_factory(Parser yyp) { return new GlobalDefinitions_2(yyp); } | ||
10840 | public static object IncrementDecrementExpression_factory(Parser yyp) { return new IncrementDecrementExpression(yyp); } | ||
10841 | public static object GlobalVariableDeclaration_factory(Parser yyp) { return new GlobalVariableDeclaration(yyp); } | ||
10842 | public static object Event_11_factory(Parser yyp) { return new Event_11(yyp); } | ||
10843 | public static object TypecastExpression_2_factory(Parser yyp) { return new TypecastExpression_2(yyp); } | ||
10844 | public static object TypecastExpression_3_factory(Parser yyp) { return new TypecastExpression_3(yyp); } | ||
10845 | public static object TypecastExpression_5_factory(Parser yyp) { return new TypecastExpression_5(yyp); } | ||
10846 | public static object TypecastExpression_8_factory(Parser yyp) { return new TypecastExpression_8(yyp); } | ||
10847 | public static object Constant_1_factory(Parser yyp) { return new Constant_1(yyp); } | ||
10848 | public static object Expression_factory(Parser yyp) { return new Expression(yyp); } | ||
10849 | public static object Constant_3_factory(Parser yyp) { return new Constant_3(yyp); } | ||
10850 | public static object Constant_4_factory(Parser yyp) { return new Constant_4(yyp); } | ||
10851 | public static object BinaryExpression_1_factory(Parser yyp) { return new BinaryExpression_1(yyp); } | ||
10852 | public static object IfStatement_2_factory(Parser yyp) { return new IfStatement_2(yyp); } | ||
10853 | public static object IfStatement_3_factory(Parser yyp) { return new IfStatement_3(yyp); } | ||
10854 | public static object IfStatement_4_factory(Parser yyp) { return new IfStatement_4(yyp); } | ||
10855 | public static object ReturnStatement_factory(Parser yyp) { return new ReturnStatement(yyp); } | ||
10856 | public static object Event_2_factory(Parser yyp) { return new Event_2(yyp); } | ||
10857 | public static object RotationConstant_factory(Parser yyp) { return new RotationConstant(yyp); } | ||
10858 | public static object Statement_12_factory(Parser yyp) { return new Statement_12(yyp); } | ||
10859 | public static object Statement_13_factory(Parser yyp) { return new Statement_13(yyp); } | ||
10860 | public static object UnaryExpression_1_factory(Parser yyp) { return new UnaryExpression_1(yyp); } | ||
10861 | public static object UnaryExpression_2_factory(Parser yyp) { return new UnaryExpression_2(yyp); } | ||
10862 | public static object UnaryExpression_3_factory(Parser yyp) { return new UnaryExpression_3(yyp); } | ||
10863 | public static object ArgumentList_1_factory(Parser yyp) { return new ArgumentList_1(yyp); } | ||
10864 | public static object ArgumentList_2_factory(Parser yyp) { return new ArgumentList_2(yyp); } | ||
10865 | public static object Constant_factory(Parser yyp) { return new Constant(yyp); } | ||
10866 | public static object State_factory(Parser yyp) { return new State(yyp); } | ||
10867 | public static object Event_13_factory(Parser yyp) { return new Event_13(yyp); } | ||
10868 | public static object LSLProgramRoot_factory(Parser yyp) { return new LSLProgramRoot(yyp); } | ||
10869 | public static object StateChange_factory(Parser yyp) { return new StateChange(yyp); } | ||
10870 | public static object IncrementDecrementExpression_2_factory(Parser yyp) { return new IncrementDecrementExpression_2(yyp); } | ||
10871 | public static object GlobalVariableDeclaration_1_factory(Parser yyp) { return new GlobalVariableDeclaration_1(yyp); } | ||
10872 | public static object GlobalVariableDeclaration_2_factory(Parser yyp) { return new GlobalVariableDeclaration_2(yyp); } | ||
10873 | public static object IncrementDecrementExpression_5_factory(Parser yyp) { return new IncrementDecrementExpression_5(yyp); } | ||
10874 | public static object GlobalFunctionDefinition_2_factory(Parser yyp) { return new GlobalFunctionDefinition_2(yyp); } | ||
10875 | public static object IncrementDecrementExpression_7_factory(Parser yyp) { return new IncrementDecrementExpression_7(yyp); } | ||
10876 | public static object IncrementDecrementExpression_8_factory(Parser yyp) { return new IncrementDecrementExpression_8(yyp); } | ||
10877 | public static object Assignment_1_factory(Parser yyp) { return new Assignment_1(yyp); } | ||
10878 | public static object Event_21_factory(Parser yyp) { return new Event_21(yyp); } | ||
10879 | public static object Event_22_factory(Parser yyp) { return new Event_22(yyp); } | ||
10880 | public static object CompoundStatement_factory(Parser yyp) { return new CompoundStatement(yyp); } | ||
10881 | public static object RotationConstant_1_factory(Parser yyp) { return new RotationConstant_1(yyp); } | ||
10882 | public static object SimpleAssignment_3_factory(Parser yyp) { return new SimpleAssignment_3(yyp); } | ||
10883 | public static object SimpleAssignment_4_factory(Parser yyp) { return new SimpleAssignment_4(yyp); } | ||
10884 | public static object Statement_1_factory(Parser yyp) { return new Statement_1(yyp); } | ||
10885 | public static object Statement_2_factory(Parser yyp) { return new Statement_2(yyp); } | ||
10886 | public static object Statement_3_factory(Parser yyp) { return new Statement_3(yyp); } | ||
10887 | public static object Statement_4_factory(Parser yyp) { return new Statement_4(yyp); } | ||
10888 | public static object Statement_5_factory(Parser yyp) { return new Statement_5(yyp); } | ||
10889 | public static object Statement_6_factory(Parser yyp) { return new Statement_6(yyp); } | ||
10890 | public static object Statement_7_factory(Parser yyp) { return new Statement_7(yyp); } | ||
10891 | public static object Statement_8_factory(Parser yyp) { return new Statement_8(yyp); } | ||
10892 | public static object Statement_9_factory(Parser yyp) { return new Statement_9(yyp); } | ||
10893 | public static object ExpressionArgument_factory(Parser yyp) { return new ExpressionArgument(yyp); } | ||
10894 | public static object GlobalFunctionDefinition_factory(Parser yyp) { return new GlobalFunctionDefinition(yyp); } | ||
10895 | public static object State_1_factory(Parser yyp) { return new State_1(yyp); } | ||
10896 | public static object DoWhileStatement_factory(Parser yyp) { return new DoWhileStatement(yyp); } | ||
10897 | public static object ParenthesisExpression_1_factory(Parser yyp) { return new ParenthesisExpression_1(yyp); } | ||
10898 | public static object ParenthesisExpression_2_factory(Parser yyp) { return new ParenthesisExpression_2(yyp); } | ||
10899 | public static object StateBody_factory(Parser yyp) { return new StateBody(yyp); } | ||
10900 | public static object Event_7_factory(Parser yyp) { return new Event_7(yyp); } | ||
10901 | public static object Event_8_factory(Parser yyp) { return new Event_8(yyp); } | ||
10902 | public static object IncrementDecrementExpression_1_factory(Parser yyp) { return new IncrementDecrementExpression_1(yyp); } | ||
10903 | public static object IncrementDecrementExpression_3_factory(Parser yyp) { return new IncrementDecrementExpression_3(yyp); } | ||
10904 | public static object IncrementDecrementExpression_4_factory(Parser yyp) { return new IncrementDecrementExpression_4(yyp); } | ||
10905 | public static object IncrementDecrementExpression_6_factory(Parser yyp) { return new IncrementDecrementExpression_6(yyp); } | ||
10906 | public static object StateEvent_factory(Parser yyp) { return new StateEvent(yyp); } | ||
10907 | public static object Event_20_factory(Parser yyp) { return new Event_20(yyp); } | ||
10908 | public static object Event_23_factory(Parser yyp) { return new Event_23(yyp); } | ||
10909 | public static object Event_24_factory(Parser yyp) { return new Event_24(yyp); } | ||
10910 | public static object Event_26_factory(Parser yyp) { return new Event_26(yyp); } | ||
10911 | public static object SimpleAssignment_10_factory(Parser yyp) { return new SimpleAssignment_10(yyp); } | ||
10912 | public static object Event_factory(Parser yyp) { return new Event(yyp); } | ||
10913 | public static object SimpleAssignment_14_factory(Parser yyp) { return new SimpleAssignment_14(yyp); } | ||
10914 | public static object SimpleAssignment_16_factory(Parser yyp) { return new SimpleAssignment_16(yyp); } | ||
10915 | public static object Statement_10_factory(Parser yyp) { return new Statement_10(yyp); } | ||
10916 | public static object Statement_11_factory(Parser yyp) { return new Statement_11(yyp); } | ||
10917 | public static object SimpleAssignment_factory(Parser yyp) { return new SimpleAssignment(yyp); } | ||
10918 | public static object TypecastExpression_factory(Parser yyp) { return new TypecastExpression(yyp); } | ||
10919 | public static object Event_15_factory(Parser yyp) { return new Event_15(yyp); } | ||
10920 | public static object Event_16_factory(Parser yyp) { return new Event_16(yyp); } | ||
10921 | public static object Event_32_factory(Parser yyp) { return new Event_32(yyp); } | ||
10922 | public static object SimpleAssignment_20_factory(Parser yyp) { return new SimpleAssignment_20(yyp); } | ||
10923 | public static object SimpleAssignment_24_factory(Parser yyp) { return new SimpleAssignment_24(yyp); } | ||
10924 | public static object SimpleAssignment_1_factory(Parser yyp) { return new SimpleAssignment_1(yyp); } | ||
10925 | public static object SimpleAssignment_2_factory(Parser yyp) { return new SimpleAssignment_2(yyp); } | ||
10926 | public static object BinaryExpression_factory(Parser yyp) { return new BinaryExpression(yyp); } | ||
10927 | public static object FunctionCallExpression_factory(Parser yyp) { return new FunctionCallExpression(yyp); } | ||
10928 | public static object SimpleAssignment_6_factory(Parser yyp) { return new SimpleAssignment_6(yyp); } | ||
10929 | public static object StateBody_1_factory(Parser yyp) { return new StateBody_1(yyp); } | ||
10930 | public static object StatementList_2_factory(Parser yyp) { return new StatementList_2(yyp); } | ||
10931 | public static object SimpleAssignment_9_factory(Parser yyp) { return new SimpleAssignment_9(yyp); } | ||
10932 | public static object BinaryExpression_15_factory(Parser yyp) { return new BinaryExpression_15(yyp); } | ||
10933 | public static object BinaryExpression_16_factory(Parser yyp) { return new BinaryExpression_16(yyp); } | ||
10934 | public static object BinaryExpression_17_factory(Parser yyp) { return new BinaryExpression_17(yyp); } | ||
10935 | public static object BinaryExpression_18_factory(Parser yyp) { return new BinaryExpression_18(yyp); } | ||
10936 | public static object Event_25_factory(Parser yyp) { return new Event_25(yyp); } | ||
10937 | public static object Event_9_factory(Parser yyp) { return new Event_9(yyp); } | ||
10938 | public static object Statement_factory(Parser yyp) { return new Statement(yyp); } | ||
10939 | public static object JumpStatement_factory(Parser yyp) { return new JumpStatement(yyp); } | ||
10940 | public static object BinaryExpression_11_factory(Parser yyp) { return new BinaryExpression_11(yyp); } | ||
10941 | public static object BinaryExpression_12_factory(Parser yyp) { return new BinaryExpression_12(yyp); } | ||
10942 | public static object BinaryExpression_13_factory(Parser yyp) { return new BinaryExpression_13(yyp); } | ||
10943 | public static object BinaryExpression_14_factory(Parser yyp) { return new BinaryExpression_14(yyp); } | ||
10944 | public static object BinaryExpression_6_factory(Parser yyp) { return new BinaryExpression_6(yyp); } | ||
10945 | public static object BinaryExpression_7_factory(Parser yyp) { return new BinaryExpression_7(yyp); } | ||
10946 | public static object BinaryExpression_8_factory(Parser yyp) { return new BinaryExpression_8(yyp); } | ||
10947 | public static object ArgumentList_factory(Parser yyp) { return new ArgumentList(yyp); } | ||
10948 | public static object Event_10_factory(Parser yyp) { return new Event_10(yyp); } | ||
10949 | public static object ConstantExpression_1_factory(Parser yyp) { return new ConstantExpression_1(yyp); } | ||
10950 | public static object Event_12_factory(Parser yyp) { return new Event_12(yyp); } | ||
10951 | public static object Event_14_factory(Parser yyp) { return new Event_14(yyp); } | ||
10952 | public static object Event_17_factory(Parser yyp) { return new Event_17(yyp); } | ||
10953 | public static object Event_18_factory(Parser yyp) { return new Event_18(yyp); } | ||
10954 | public static object Event_19_factory(Parser yyp) { return new Event_19(yyp); } | ||
10955 | public static object BinaryExpression_10_factory(Parser yyp) { return new BinaryExpression_10(yyp); } | ||
10956 | public static object StateEvent_1_factory(Parser yyp) { return new StateEvent_1(yyp); } | ||
10957 | public static object VectorConstant_factory(Parser yyp) { return new VectorConstant(yyp); } | ||
10958 | public static object TypecastExpression_4_factory(Parser yyp) { return new TypecastExpression_4(yyp); } | ||
10959 | public static object TypecastExpression_6_factory(Parser yyp) { return new TypecastExpression_6(yyp); } | ||
10960 | public static object TypecastExpression_7_factory(Parser yyp) { return new TypecastExpression_7(yyp); } | ||
10961 | public static object FunctionCall_factory(Parser yyp) { return new FunctionCall(yyp); } | ||
10962 | public static object Event_27_factory(Parser yyp) { return new Event_27(yyp); } | ||
10963 | public static object Event_28_factory(Parser yyp) { return new Event_28(yyp); } | ||
10964 | public static object Event_29_factory(Parser yyp) { return new Event_29(yyp); } | ||
10965 | public static object ListConstant_1_factory(Parser yyp) { return new ListConstant_1(yyp); } | ||
10966 | public static object Event_6_factory(Parser yyp) { return new Event_6(yyp); } | ||
10967 | public static object Declaration_1_factory(Parser yyp) { return new Declaration_1(yyp); } | ||
10968 | public static object SimpleAssignment_7_factory(Parser yyp) { return new SimpleAssignment_7(yyp); } | ||
10969 | public static object ForLoop_factory(Parser yyp) { return new ForLoop(yyp); } | ||
10970 | public static object Event_30_factory(Parser yyp) { return new Event_30(yyp); } | ||
10971 | public static object Event_31_factory(Parser yyp) { return new Event_31(yyp); } | ||
10972 | public static object Event_33_factory(Parser yyp) { return new Event_33(yyp); } | ||
10973 | public static object GlobalFunctionDefinition_1_factory(Parser yyp) { return new GlobalFunctionDefinition_1(yyp); } | ||
10974 | public static object JumpLabel_1_factory(Parser yyp) { return new JumpLabel_1(yyp); } | ||
10975 | public static object IfStatement_factory(Parser yyp) { return new IfStatement(yyp); } | ||
10976 | public static object ForLoopStatement_1_factory(Parser yyp) { return new ForLoopStatement_1(yyp); } | ||
10977 | public static object ForLoopStatement_2_factory(Parser yyp) { return new ForLoopStatement_2(yyp); } | ||
10978 | public static object ForLoopStatement_3_factory(Parser yyp) { return new ForLoopStatement_3(yyp); } | ||
10979 | public static object ArgumentDeclarationList_4_factory(Parser yyp) { return new ArgumentDeclarationList_4(yyp); } | ||
10980 | public static object ArgumentDeclarationList_5_factory(Parser yyp) { return new ArgumentDeclarationList_5(yyp); } | ||
10981 | public static object WhileStatement_factory(Parser yyp) { return new WhileStatement(yyp); } | ||
10982 | public static object ForLoop_1_factory(Parser yyp) { return new ForLoop_1(yyp); } | ||
10983 | public static object Constant_2_factory(Parser yyp) { return new Constant_2(yyp); } | ||
10984 | public static object StatementList_factory(Parser yyp) { return new StatementList(yyp); } | ||
10985 | public static object StateBody_2_factory(Parser yyp) { return new StateBody_2(yyp); } | ||
10986 | public static object WhileStatement_2_factory(Parser yyp) { return new WhileStatement_2(yyp); } | ||
10987 | public static object IdentExpression_1_factory(Parser yyp) { return new IdentExpression_1(yyp); } | ||
10988 | public static object States_factory(Parser yyp) { return new States(yyp); } | ||
10989 | } | ||
10990 | public class LSLSyntax | ||
10991 | : Parser { | ||
10992 | public LSLSyntax | ||
10993 | ():base(new yyLSLSyntax | ||
10994 | (),new LSLTokens()) {} | ||
10995 | public LSLSyntax | ||
10996 | (YyParser syms):base(syms,new LSLTokens()) {} | ||
10997 | public LSLSyntax | ||
10998 | (YyParser syms,ErrorHandler erh):base(syms,new LSLTokens(erh)) {} | ||
10999 | |||
11000 | } | ||
11001 | } | ||